1
2
3
4
5
6
7
8
9
10#include <common.h>
11#include <asm/processor.h>
12#include <spd_sdram.h>
13#include <asm/ppc4xx-emac.h>
14#include <netdev.h>
15
16#ifdef CONFIG_SYS_INIT_SHOW_RESET_REG
17void show_reset_reg(void);
18#endif
19
20DECLARE_GLOBAL_DATA_PTR;
21
22int lcd_init(void);
23
24int board_early_init_f (void)
25{
26 unsigned long reg;
27 volatile unsigned int *GpioOdr;
28 volatile unsigned int *GpioTcr;
29 volatile unsigned int *GpioOr;
30
31
32
33
34 mtebc(EBC0_CFG, EBC_CFG_LE_UNLOCK |
35 EBC_CFG_PTD_ENABLE | EBC_CFG_RTC_64PERCLK |
36 EBC_CFG_ATC_PREVIOUS | EBC_CFG_DTC_PREVIOUS |
37 EBC_CFG_CTC_PREVIOUS | EBC_CFG_EMC_DEFAULT |
38 EBC_CFG_PME_DISABLE | EBC_CFG_PR_32);
39
40
41
42
43 mtebc(PB0AP, EBC_BXAP_BME_DISABLED|EBC_BXAP_TWT_ENCODE(15) |
44 EBC_BXAP_BCE_DISABLE |
45 EBC_BXAP_CSN_ENCODE(1) | EBC_BXAP_OEN_ENCODE(1) |
46 EBC_BXAP_WBN_ENCODE(1) | EBC_BXAP_WBF_ENCODE(1) |
47 EBC_BXAP_TH_ENCODE(3) | EBC_BXAP_RE_DISABLED |
48 EBC_BXAP_BEM_WRITEONLY |
49 EBC_BXAP_PEN_DISABLED);
50 mtebc(PB0CR, EBC_BXCR_BAS_ENCODE(CONFIG_SYS_FLASH_BASE) |
51 EBC_BXCR_BS_64MB | EBC_BXCR_BU_RW|EBC_BXCR_BW_32BIT);
52
53
54
55
56 mtebc(PB1AP, EBC_BXAP_BME_DISABLED|EBC_BXAP_TWT_ENCODE(5) |
57 EBC_BXAP_BCE_DISABLE |
58 EBC_BXAP_CSN_ENCODE(1) | EBC_BXAP_OEN_ENCODE(1) |
59 EBC_BXAP_WBN_ENCODE(1) | EBC_BXAP_WBF_ENCODE(1) |
60 EBC_BXAP_TH_ENCODE(3) | EBC_BXAP_RE_DISABLED |
61 EBC_BXAP_BEM_WRITEONLY |
62 EBC_BXAP_PEN_DISABLED);
63 mtebc(PB1CR, EBC_BXCR_BAS_ENCODE(0x41000000) |
64 EBC_BXCR_BS_1MB | EBC_BXCR_BU_RW | EBC_BXCR_BW_8BIT);
65
66
67
68
69 mtebc(PB2AP, EBC_BXAP_BME_DISABLED | EBC_BXAP_TWT_ENCODE(64) |
70 EBC_BXAP_BCE_DISABLE |
71 EBC_BXAP_CSN_ENCODE(3) | EBC_BXAP_OEN_ENCODE(3) |
72 EBC_BXAP_WBN_ENCODE(3) | EBC_BXAP_WBF_ENCODE(3) |
73 EBC_BXAP_TH_ENCODE(7) | EBC_BXAP_RE_DISABLED |
74 EBC_BXAP_BEM_WRITEONLY |
75 EBC_BXAP_PEN_DISABLED);
76 mtebc(PB2CR, EBC_BXCR_BAS_ENCODE(0x42000000) |
77 EBC_BXCR_BS_1MB | EBC_BXCR_BU_RW|EBC_BXCR_BW_8BIT);
78
79
80
81
82 mtebc(PB3AP, EBC_BXAP_BME_DISABLED | EBC_BXAP_TWT_ENCODE(128) |
83 EBC_BXAP_BCE_DISABLE |
84 EBC_BXAP_CSN_ENCODE(3) | EBC_BXAP_OEN_ENCODE(3) |
85 EBC_BXAP_WBN_ENCODE(3) | EBC_BXAP_WBF_ENCODE(3) |
86 EBC_BXAP_TH_ENCODE(7) | EBC_BXAP_RE_DISABLED |
87 EBC_BXAP_BEM_WRITEONLY |
88 EBC_BXAP_PEN_DISABLED);
89 mtebc(PB3CR, EBC_BXCR_BAS_ENCODE(0x48000000) |
90 EBC_BXCR_BS_64MB | EBC_BXCR_BU_RW | EBC_BXCR_BW_32BIT);
91
92
93
94
95 mtebc(PB4AP,0);
96 mtebc(PB4CR,0);
97 mtebc(PB5AP,0);
98 mtebc(PB5CR,0);
99 mtebc(PB6AP,0);
100 mtebc(PB6CR,0);
101 mtebc(PB7AP,0);
102 mtebc(PB7CR,0);
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119 mtdcr (UIC1SR, 0xffffffff);
120 mtdcr (UIC1ER, 0x00000000);
121 mtdcr (UIC1CR, 0x00000009);
122 mtdcr (UIC1PR, 0xfffffe13);
123 mtdcr (UIC1TR, 0x01c00008);
124 mtdcr (UIC1VR, 0x00000001);
125 mtdcr (UIC1SR, 0xffffffff);
126
127 mtdcr (UIC2SR, 0xffffffff);
128 mtdcr (UIC2ER, 0x00000000);
129 mtdcr (UIC2CR, 0x00000000);
130 mtdcr (UIC2PR, 0xffffe0ff);
131 mtdcr (UIC2TR, 0x00ffc000);
132 mtdcr (UIC2VR, 0x00000001);
133 mtdcr (UIC2SR, 0xffffffff);
134
135 mtdcr (UIC3SR, 0xffffffff);
136 mtdcr (UIC3ER, 0x00000000);
137 mtdcr (UIC3CR, 0x00000000);
138 mtdcr (UIC3PR, 0xffffffff);
139 mtdcr (UIC3TR, 0x00ff8c0f);
140 mtdcr (UIC3VR, 0x00000001);
141 mtdcr (UIC3SR, 0xffffffff);
142
143 mtdcr (UIC0SR, 0xfc000000);
144 mtdcr (UIC0ER, 0x00000000);
145 mtdcr (UIC0CR, 0x00000000);
146 mtdcr (UIC0PR, 0xfc000000);
147 mtdcr (UIC0TR, 0x00000000);
148 mtdcr (UIC0VR, 0x00000001);
149
150
151 mfsdr(SDR0_PFC0,reg);
152 reg |= 0x00300000;
153 mtsdr(SDR0_PFC0,reg);
154
155 mfsdr(SDR0_PFC1,reg);
156 reg |= 0x00100000;
157 mtsdr(SDR0_PFC1,reg);
158
159
160 GpioOdr = (volatile unsigned int*)(CONFIG_SYS_PERIPHERAL_BASE+0x718);
161 GpioTcr = (volatile unsigned int*)(CONFIG_SYS_PERIPHERAL_BASE+0x704);
162 GpioOr = (volatile unsigned int*)(CONFIG_SYS_PERIPHERAL_BASE+0x700);
163
164 *GpioOdr &= ~(0x00300000);
165 *GpioTcr |= 0x00300000;
166 *GpioOr |= 0x00300000;
167
168 return 0;
169}
170
171int misc_init_r(void)
172{
173 lcd_init();
174
175 return 0;
176}
177
178int checkboard (void)
179{
180 char buf[64];
181 int i = getenv_f("serial#", buf, sizeof(buf));
182
183 printf ("Board: Taishan - AMCC PPC440GX Evaluation Board");
184 if (i > 0) {
185 puts(", serial# ");
186 puts(buf);
187 }
188 putc ('\n');
189
190#ifdef CONFIG_SYS_INIT_SHOW_RESET_REG
191 show_reset_reg();
192#endif
193
194 return (0);
195}
196
197int board_eth_init(bd_t *bis)
198{
199 cpu_eth_init(bis);
200 return pci_eth_init(bis);
201}
202