1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <common.h>
22#include <asm/ppc440.h>
23#include <libfdt.h>
24#include <fdt_support.h>
25#include <i2c.h>
26#include <asm/processor.h>
27#include <asm/io.h>
28#include <asm/mmu.h>
29#include <asm/4xx_pcie.h>
30#include <asm/ppc4xx-gpio.h>
31#include <asm/errno.h>
32
33extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
34
35DECLARE_GLOBAL_DATA_PTR;
36
37struct board_bcsr {
38 u8 board_id;
39 u8 cpld_rev;
40 u8 led_user;
41 u8 board_status;
42 u8 reset_ctrl;
43 u8 flash_ctrl;
44 u8 eth_ctrl;
45 u8 usb_ctrl;
46 u8 irq_ctrl;
47};
48
49#define BOARD_CANYONLANDS_PCIE 1
50#define BOARD_CANYONLANDS_SATA 2
51#define BOARD_GLACIER 3
52#define BOARD_ARCHES 4
53
54
55
56
57
58#if defined(CONFIG_ARCHES)
59u32 ddr_wrdtr(u32 default_val) {
60 return (SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_0_DEG | 0x823);
61}
62#else
63u32 ddr_wrdtr(u32 default_val) {
64 return (SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_180_DEG_ADV | 0x823);
65}
66
67u32 ddr_clktr(u32 default_val) {
68 return (SDRAM_CLKTR_CLKP_90_DEG_ADV);
69}
70#endif
71
72#if defined(CONFIG_ARCHES)
73
74
75
76static inline int board_fpga_read(int offset)
77{
78 int data;
79
80 data = in_8((void *)(CONFIG_SYS_FPGA_BASE + offset));
81
82 return data;
83}
84
85static inline void board_fpga_write(int offset, int data)
86{
87 out_8((void *)(CONFIG_SYS_FPGA_BASE + offset), data);
88}
89
90
91
92
93static inline int board_cpld_read(int offset)
94{
95 int data;
96
97 out_8((void *)(CONFIG_SYS_CPLD_ADDR), offset);
98 data = in_8((void *)(CONFIG_SYS_CPLD_DATA));
99
100 return data;
101}
102
103static inline void board_cpld_write(int offset, int data)
104{
105 out_8((void *)(CONFIG_SYS_CPLD_ADDR), offset);
106 out_8((void *)(CONFIG_SYS_CPLD_DATA), data);
107}
108#else
109static int pvr_460ex(void)
110{
111 u32 pvr = get_pvr();
112
113 if ((pvr == PVR_460EX_RA) || (pvr == PVR_460EX_SE_RA) ||
114 (pvr == PVR_460EX_RB))
115 return 1;
116
117 return 0;
118}
119#endif
120
121int board_early_init_f(void)
122{
123#if !defined(CONFIG_ARCHES)
124 u32 sdr0_cust0;
125 struct board_bcsr *bcsr_data =
126 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
127
128#endif
129
130
131
132
133 mtdcr(UIC0SR, 0xffffffff);
134 mtdcr(UIC0ER, 0x00000000);
135 mtdcr(UIC0CR, 0x00000005);
136 mtdcr(UIC0PR, 0xffffffff);
137 mtdcr(UIC0TR, 0x00000000);
138 mtdcr(UIC0VR, 0x00000000);
139 mtdcr(UIC0SR, 0xffffffff);
140
141 mtdcr(UIC1SR, 0xffffffff);
142 mtdcr(UIC1ER, 0x00000000);
143 mtdcr(UIC1CR, 0x00000000);
144 mtdcr(UIC1PR, 0xffffffff);
145 mtdcr(UIC1TR, 0x00000000);
146 mtdcr(UIC1VR, 0x00000000);
147 mtdcr(UIC1SR, 0xffffffff);
148
149 mtdcr(UIC2SR, 0xffffffff);
150 mtdcr(UIC2ER, 0x00000000);
151 mtdcr(UIC2CR, 0x00000000);
152 mtdcr(UIC2PR, 0xffffffff);
153 mtdcr(UIC2TR, 0x00000000);
154 mtdcr(UIC2VR, 0x00000000);
155 mtdcr(UIC2SR, 0xffffffff);
156
157 mtdcr(UIC3SR, 0xffffffff);
158 mtdcr(UIC3ER, 0x00000000);
159 mtdcr(UIC3CR, 0x00000000);
160 mtdcr(UIC3PR, 0xffffffff);
161 mtdcr(UIC3TR, 0x00000000);
162 mtdcr(UIC3VR, 0x00000000);
163 mtdcr(UIC3SR, 0xffffffff);
164
165#if !defined(CONFIG_ARCHES)
166
167 mfsdr(SDR0_CUST0, sdr0_cust0);
168 sdr0_cust0 = SDR0_CUST0_MUX_NDFC_SEL |
169 SDR0_CUST0_NDFC_ENABLE |
170 SDR0_CUST0_NDFC_BW_8_BIT |
171 SDR0_CUST0_NDFC_ARE_MASK |
172 SDR0_CUST0_NDFC_BAC_ENCODE(3) |
173 (0x80000000 >> (28 + CONFIG_SYS_NAND_CS));
174 mtsdr(SDR0_CUST0, sdr0_cust0);
175#endif
176
177
178
179
180
181 mtsdr(SDR0_PFC1, 0x00040000);
182
183
184 mtsdr(SDR0_PCI0, 0xe0000000);
185
186#if !defined(CONFIG_ARCHES)
187
188 out_8(&bcsr_data->eth_ctrl, 0) ;
189
190
191 out_8(&bcsr_data->flash_ctrl, 0) ;
192 mtsdr(SDR0_SRST1, 0);
193
194
195 mtdcr(AHB_TOP, 0x8000004B);
196 mtdcr(AHB_BOT, 0x8000004B);
197
198#endif
199
200 return 0;
201}
202
203#if defined(CONFIG_USB_OHCI_NEW) && defined(CONFIG_SYS_USB_OHCI_BOARD_INIT)
204int usb_board_init(void)
205{
206 struct board_bcsr *bcsr_data =
207 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
208 u8 val;
209
210
211 val = in_8(&bcsr_data->usb_ctrl);
212 val &= ~(BCSR_USBCTRL_OTG_RST | BCSR_USBCTRL_HOST_RST);
213 out_8(&bcsr_data->usb_ctrl, val);
214
215
216
217
218
219
220
221 gpio_config(16, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1);
222 gpio_config(19, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1);
223
224 return 0;
225}
226
227int usb_board_stop(void)
228{
229 struct board_bcsr *bcsr_data =
230 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
231 u8 val;
232
233
234 val = in_8(&bcsr_data->usb_ctrl);
235 val |= (BCSR_USBCTRL_OTG_RST | BCSR_USBCTRL_HOST_RST);
236 out_8(&bcsr_data->usb_ctrl, val);
237
238
239 gpio_config(16, GPIO_IN , GPIO_SEL, GPIO_OUT_0);
240 gpio_config(19, GPIO_IN , GPIO_SEL, GPIO_OUT_0);
241
242 return 0;
243}
244
245int usb_board_init_fail(void)
246{
247 return usb_board_stop();
248}
249#endif
250
251#if !defined(CONFIG_ARCHES)
252static void canyonlands_sata_init(int board_type)
253{
254 u32 reg;
255
256 if (board_type == BOARD_CANYONLANDS_SATA) {
257
258 SDR_WRITE(SDR0_SRST1, 0x00020001);
259
260
261 reg = SDR_READ(PESDR0_PHY_CTL_RST);
262 SDR_WRITE(PESDR0_PHY_CTL_RST, (reg & 0xeffffffc) | 0x00000001);
263 reg = SDR_READ(PESDR0_L0CLK);
264 SDR_WRITE(PESDR0_L0CLK, (reg & 0xfffffff8) | 0x00000007);
265 SDR_WRITE(PESDR0_L0CDRCTL, 0x00003111);
266 SDR_WRITE(PESDR0_L0DRV, 0x00000104);
267
268
269 SDR_WRITE(SDR0_SRST1, 0x00000000);
270 }
271}
272#endif
273
274int get_cpu_num(void)
275{
276 int cpu = NA_OR_UNKNOWN_CPU;
277
278#if defined(CONFIG_ARCHES)
279 int cpu_num;
280
281 cpu_num = board_fpga_read(0x3);
282
283
284 if ((cpu_num >= 0) && (cpu_num < CONFIG_BD_NUM_CPUS))
285 cpu = cpu_num;
286#endif
287
288 return cpu;
289}
290
291#if !defined(CONFIG_ARCHES)
292int checkboard(void)
293{
294 struct board_bcsr *bcsr_data =
295 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
296 char buf[64];
297 int i = getenv_f("serial#", buf, sizeof(buf));
298
299 if (pvr_460ex()) {
300 printf("Board: Canyonlands - AMCC PPC460EX Evaluation Board");
301 if (in_8(&bcsr_data->board_status) & BCSR_SELECT_PCIE)
302 gd->board_type = BOARD_CANYONLANDS_PCIE;
303 else
304 gd->board_type = BOARD_CANYONLANDS_SATA;
305 } else {
306 printf("Board: Glacier - AMCC PPC460GT Evaluation Board");
307 gd->board_type = BOARD_GLACIER;
308 }
309
310 switch (gd->board_type) {
311 case BOARD_CANYONLANDS_PCIE:
312 case BOARD_GLACIER:
313 puts(", 2*PCIe");
314 break;
315
316 case BOARD_CANYONLANDS_SATA:
317 puts(", 1*PCIe/1*SATA");
318 break;
319 }
320
321 printf(", Rev. %X", in_8(&bcsr_data->cpld_rev));
322
323 if (i > 0) {
324 puts(", serial# ");
325 puts(buf);
326 }
327 putc('\n');
328
329 canyonlands_sata_init(gd->board_type);
330
331 return (0);
332}
333
334#else
335
336int checkboard(void)
337{
338 char *s = getenv("serial#");
339
340 printf("Board: Arches - AMCC DUAL PPC460GT Reference Design\n");
341 printf(" Revision %02x.%02x ",
342 board_fpga_read(0x0), board_fpga_read(0x1));
343
344 gd->board_type = BOARD_ARCHES;
345
346
347 if (get_cpu_num() == 0) {
348 u8 cfg_sw = board_cpld_read(0x1);
349 printf("(FPGA=%02x, CPLD=%02x)\n",
350 board_fpga_read(0x2), board_cpld_read(0x0));
351 printf(" Configuration Switch %d%d%d%d\n",
352 ((cfg_sw >> 3) & 0x01),
353 ((cfg_sw >> 2) & 0x01),
354 ((cfg_sw >> 1) & 0x01),
355 ((cfg_sw >> 0) & 0x01));
356 } else
357 printf("(FPGA=%02x, CPLD=xx)\n", board_fpga_read(0x2));
358
359
360 if (s != NULL)
361 printf(" Serial# %s\n", s);
362
363 return 0;
364}
365#endif
366
367#if defined(CONFIG_PCI)
368int board_pcie_first(void)
369{
370
371
372
373
374 if (gd->board_type == BOARD_CANYONLANDS_SATA)
375 return 1;
376
377 return 0;
378}
379#endif
380
381int board_early_init_r (void)
382{
383
384
385
386
387
388
389
390
391
392
393
394#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
395 mtebc(PB3CR, CONFIG_SYS_FLASH_BASE_PHYS_L | 0xda000);
396#else
397 mtebc(PB0CR, CONFIG_SYS_FLASH_BASE_PHYS_L | 0xda000);
398#endif
399
400
401 remove_tlb(CONFIG_SYS_BOOT_BASE_ADDR, 16 << 20);
402
403
404 program_tlb(CONFIG_SYS_FLASH_BASE_PHYS, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_SIZE,
405 TLB_WORD2_I_ENABLE);
406
407
408
409
410
411
412
413
414
415
416
417 set_mcsr(get_mcsr());
418
419 return 0;
420}
421
422#if !defined(CONFIG_ARCHES)
423int misc_init_r(void)
424{
425 u32 sdr0_srst1 = 0;
426 u32 eth_cfg;
427 u8 val;
428
429
430
431
432
433 mfsdr(SDR0_ETH_CFG, eth_cfg);
434
435 eth_cfg &= ~(SDR0_ETH_CFG_SGMII2_ENABLE |
436 SDR0_ETH_CFG_SGMII1_ENABLE |
437 SDR0_ETH_CFG_SGMII0_ENABLE);
438
439
440 eth_cfg &= ~SDR0_ETH_CFG_GMC0_BRIDGE_SEL;
441 if (pvr_460ex())
442 eth_cfg |= SDR0_ETH_CFG_GMC1_BRIDGE_SEL;
443 else
444 eth_cfg &= ~SDR0_ETH_CFG_GMC1_BRIDGE_SEL;
445 mtsdr(SDR0_ETH_CFG, eth_cfg);
446
447
448
449
450
451 mfsdr(SDR0_SRST1, sdr0_srst1);
452 sdr0_srst1 &= ~SDR0_SRST1_AHB;
453 mtsdr(SDR0_SRST1, sdr0_srst1);
454
455
456
457
458
459
460 val = i2c_reg_read(CONFIG_SYS_I2C_RTC_ADDR, 0xa);
461 val &= ~0x40;
462 i2c_reg_write(CONFIG_SYS_I2C_RTC_ADDR, 0xa, val);
463
464 return 0;
465}
466
467#else
468
469int misc_init_r(void)
470{
471 u32 eth_cfg = 0;
472 u32 eth_pll;
473 u32 reg;
474
475
476
477
478
479
480
481 eth_cfg |= (SDR0_ETH_CFG_SGMII0_ENABLE |
482 SDR0_ETH_CFG_SGMII1_ENABLE |
483 SDR0_ETH_CFG_SGMII2_ENABLE);
484
485
486 eth_cfg |= SDR0_ETH_CFG_MDIO_SEL_EMAC0;
487
488
489 eth_cfg |= (SDR0_ETH_CFG_TAHOE0_BYPASS | SDR0_ETH_CFG_TAHOE1_BYPASS);
490
491 mtsdr(SDR0_ETH_CFG, eth_cfg);
492
493
494 mfsdr(SDR0_SRST1, reg);
495 reg |= (SDR0_SRST1_SGMII0 | SDR0_SRST1_SGMII1 | SDR0_SRST1_SGMII2);
496 mtsdr(SDR0_SRST1, reg);
497 mtsdr(SDR0_ETH_STS, 0xFFFFFFFF);
498 mtsdr(SDR0_SRST1, 0x00000000);
499
500 do {
501 mfsdr(SDR0_ETH_PLL, eth_pll);
502 } while (!(eth_pll & SDR0_ETH_PLL_PLLLOCK));
503
504 return 0;
505}
506#endif
507
508#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
509extern void __ft_board_setup(void *blob, bd_t *bd);
510
511void ft_board_setup(void *blob, bd_t *bd)
512{
513 __ft_board_setup(blob, bd);
514
515 if (gd->board_type == BOARD_CANYONLANDS_SATA) {
516
517
518
519
520
521 fdt_find_and_setprop(blob, "/plb/pciex@d00000000", "status",
522 "disabled", sizeof("disabled"), 1);
523 }
524
525 if (gd->board_type == BOARD_CANYONLANDS_PCIE) {
526
527
528
529
530
531 fdt_find_and_setprop(blob, "/plb/sata@bffd1000", "status",
532 "disabled", sizeof("disabled"), 1);
533 }
534}
535#endif
536