1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#undef DEBUG
17
18#include <common.h>
19#include <asm/processor.h>
20#include <asm/io.h>
21#include <asm/ppc440.h>
22
23
24
25
26extern int denali_wait_for_dlllock(void);
27extern void denali_core_search_data_eye(void);
28
29
30
31
32
33
34phys_size_t initdram (int board_type)
35{
36#if !defined(CONFIG_SYS_RAMBOOT)
37 ulong speed = get_bus_freq(0);
38
39 mtsdram(DDR0_02, 0x00000000);
40
41 mtsdram(DDR0_00, 0x0000190A);
42 mtsdram(DDR0_01, 0x01000000);
43 mtsdram(DDR0_03, 0x02030602);
44 mtsdram(DDR0_04, 0x0A020200);
45 mtsdram(DDR0_05, 0x02020308);
46 mtsdram(DDR0_06, 0x0102C812);
47 mtsdram(DDR0_07, 0x000D0100);
48 mtsdram(DDR0_08, 0x02430001);
49 mtsdram(DDR0_09, 0x00011D5F);
50 mtsdram(DDR0_10, 0x00000100);
51 mtsdram(DDR0_11, 0x0027C800);
52 mtsdram(DDR0_12, 0x00000003);
53 mtsdram(DDR0_14, 0x00000000);
54 mtsdram(DDR0_17, 0x19000000);
55 mtsdram(DDR0_18, 0x19191919);
56 mtsdram(DDR0_19, 0x19191919);
57 mtsdram(DDR0_20, 0x0B0B0B0B);
58 mtsdram(DDR0_21, 0x0B0B0B0B);
59 mtsdram(DDR0_22, 0x00267F0B);
60 mtsdram(DDR0_23, 0x00000000);
61 mtsdram(DDR0_24, 0x01010002);
62 if (speed > 133333334)
63 mtsdram(DDR0_26, 0x5B26050C);
64 else
65 mtsdram(DDR0_26, 0x5B260408);
66 mtsdram(DDR0_27, 0x0000682B);
67 mtsdram(DDR0_28, 0x00000000);
68 mtsdram(DDR0_31, 0x00000000);
69 mtsdram(DDR0_42, 0x01000006);
70 mtsdram(DDR0_43, 0x030A0200);
71 mtsdram(DDR0_44, 0x00000003);
72 mtsdram(DDR0_02, 0x00000001);
73
74 denali_wait_for_dlllock();
75#endif
76
77#ifdef CONFIG_DDR_DATA_EYE
78
79
80
81 denali_core_search_data_eye();
82#endif
83
84
85
86
87
88
89 set_mcsr(get_mcsr());
90
91 return (CONFIG_SYS_MBYTES_SDRAM << 20);
92}
93