blob: cc36f4587caaed13ab38b06c08098282d77b9e8a [file] [log] [blame]
Stefan Roese8e1a3fe2008-03-11 16:51:17 +01001/*
2 * (C) Copyright 2008
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese8e1a3fe2008-03-11 16:51:17 +01006 */
7
8#include <common.h>
Stefan Roeseb36df562010-09-09 19:18:00 +02009#include <asm/ppc440.h>
Stefan Roese8e1a3fe2008-03-11 16:51:17 +010010#include <libfdt.h>
11#include <fdt_support.h>
Stefan Roese212ed902008-06-10 15:34:11 +020012#include <i2c.h>
Stefan Roese8e1a3fe2008-03-11 16:51:17 +010013#include <asm/processor.h>
14#include <asm/io.h>
15#include <asm/mmu.h>
16#include <asm/4xx_pcie.h>
Stefan Roese09887762010-09-16 14:30:37 +020017#include <asm/ppc4xx-gpio.h>
Stefan Roese06dfaee2009-10-02 14:35:16 +020018#include <asm/errno.h>
Stefan Roese8e1a3fe2008-03-11 16:51:17 +010019
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020020extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
Stefan Roese8e1a3fe2008-03-11 16:51:17 +010021
22DECLARE_GLOBAL_DATA_PTR;
23
Stefan Roese98303292010-09-28 08:06:06 +020024struct board_bcsr {
25 u8 board_id;
26 u8 cpld_rev;
27 u8 led_user;
28 u8 board_status;
29 u8 reset_ctrl;
30 u8 flash_ctrl;
31 u8 eth_ctrl;
32 u8 usb_ctrl;
33 u8 irq_ctrl;
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +053034};
Stefan Roesecc8e8392008-03-28 14:09:04 +010035
36#define BOARD_CANYONLANDS_PCIE 1
37#define BOARD_CANYONLANDS_SATA 2
38#define BOARD_GLACIER 3
Adam Grahamf09f09d2008-10-08 10:12:53 -070039#define BOARD_ARCHES 4
40
Stefan Roesef3ed3c92009-07-27 10:53:43 +020041/*
Stefan Roesea47a12b2010-04-15 16:07:28 +020042 * Override the default functions in arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c with
Stefan Roesef3ed3c92009-07-27 10:53:43 +020043 * board specific values.
44 */
45#if defined(CONFIG_ARCHES)
46u32 ddr_wrdtr(u32 default_val) {
47 return (SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_0_DEG | 0x823);
48}
49#else
50u32 ddr_wrdtr(u32 default_val) {
51 return (SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_180_DEG_ADV | 0x823);
52}
53
54u32 ddr_clktr(u32 default_val) {
55 return (SDRAM_CLKTR_CLKP_90_DEG_ADV);
56}
57#endif
58
Adam Grahamf09f09d2008-10-08 10:12:53 -070059#if defined(CONFIG_ARCHES)
60/*
61 * FPGA read/write helper macros
62 */
63static inline int board_fpga_read(int offset)
64{
65 int data;
66
67 data = in_8((void *)(CONFIG_SYS_FPGA_BASE + offset));
68
69 return data;
70}
71
72static inline void board_fpga_write(int offset, int data)
73{
74 out_8((void *)(CONFIG_SYS_FPGA_BASE + offset), data);
75}
76
77/*
78 * CPLD read/write helper macros
79 */
80static inline int board_cpld_read(int offset)
81{
82 int data;
83
84 out_8((void *)(CONFIG_SYS_CPLD_ADDR), offset);
85 data = in_8((void *)(CONFIG_SYS_CPLD_DATA));
86
87 return data;
88}
89
90static inline void board_cpld_write(int offset, int data)
91{
92 out_8((void *)(CONFIG_SYS_CPLD_ADDR), offset);
93 out_8((void *)(CONFIG_SYS_CPLD_DATA), data);
94}
Stefan Roesec3fa4f02009-07-29 08:46:10 +020095#else
96static int pvr_460ex(void)
97{
98 u32 pvr = get_pvr();
99
100 if ((pvr == PVR_460EX_RA) || (pvr == PVR_460EX_SE_RA) ||
101 (pvr == PVR_460EX_RB))
102 return 1;
103
104 return 0;
105}
Adam Grahamf09f09d2008-10-08 10:12:53 -0700106#endif /* defined(CONFIG_ARCHES) */
Stefan Roesecc8e8392008-03-28 14:09:04 +0100107
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100108int board_early_init_f(void)
109{
Adam Grahamf09f09d2008-10-08 10:12:53 -0700110#if !defined(CONFIG_ARCHES)
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100111 u32 sdr0_cust0;
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530112 struct board_bcsr *bcsr_data =
113 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
114
Adam Grahamf09f09d2008-10-08 10:12:53 -0700115#endif
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100116
Stefan Roese1c2926a2008-04-02 08:39:33 +0200117 /*
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100118 * Setup the interrupt controller polarities, triggers, etc.
Stefan Roese1c2926a2008-04-02 08:39:33 +0200119 */
Stefan Roese952e7762009-09-24 09:55:50 +0200120 mtdcr(UIC0SR, 0xffffffff); /* clear all */
121 mtdcr(UIC0ER, 0x00000000); /* disable all */
122 mtdcr(UIC0CR, 0x00000005); /* ATI & UIC1 crit are critical */
123 mtdcr(UIC0PR, 0xffffffff); /* per ref-board manual */
124 mtdcr(UIC0TR, 0x00000000); /* per ref-board manual */
125 mtdcr(UIC0VR, 0x00000000); /* int31 highest, base=0x000 */
126 mtdcr(UIC0SR, 0xffffffff); /* clear all */
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100127
Stefan Roese952e7762009-09-24 09:55:50 +0200128 mtdcr(UIC1SR, 0xffffffff); /* clear all */
129 mtdcr(UIC1ER, 0x00000000); /* disable all */
130 mtdcr(UIC1CR, 0x00000000); /* all non-critical */
131 mtdcr(UIC1PR, 0xffffffff); /* per ref-board manual */
132 mtdcr(UIC1TR, 0x00000000); /* per ref-board manual */
133 mtdcr(UIC1VR, 0x00000000); /* int31 highest, base=0x000 */
134 mtdcr(UIC1SR, 0xffffffff); /* clear all */
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100135
Stefan Roese952e7762009-09-24 09:55:50 +0200136 mtdcr(UIC2SR, 0xffffffff); /* clear all */
137 mtdcr(UIC2ER, 0x00000000); /* disable all */
138 mtdcr(UIC2CR, 0x00000000); /* all non-critical */
139 mtdcr(UIC2PR, 0xffffffff); /* per ref-board manual */
140 mtdcr(UIC2TR, 0x00000000); /* per ref-board manual */
141 mtdcr(UIC2VR, 0x00000000); /* int31 highest, base=0x000 */
142 mtdcr(UIC2SR, 0xffffffff); /* clear all */
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100143
Stefan Roese952e7762009-09-24 09:55:50 +0200144 mtdcr(UIC3SR, 0xffffffff); /* clear all */
145 mtdcr(UIC3ER, 0x00000000); /* disable all */
146 mtdcr(UIC3CR, 0x00000000); /* all non-critical */
147 mtdcr(UIC3PR, 0xffffffff); /* per ref-board manual */
148 mtdcr(UIC3TR, 0x00000000); /* per ref-board manual */
149 mtdcr(UIC3VR, 0x00000000); /* int31 highest, base=0x000 */
150 mtdcr(UIC3SR, 0xffffffff); /* clear all */
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100151
Adam Grahamf09f09d2008-10-08 10:12:53 -0700152#if !defined(CONFIG_ARCHES)
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100153 /* SDR Setting - enable NDFC */
154 mfsdr(SDR0_CUST0, sdr0_cust0);
155 sdr0_cust0 = SDR0_CUST0_MUX_NDFC_SEL |
156 SDR0_CUST0_NDFC_ENABLE |
157 SDR0_CUST0_NDFC_BW_8_BIT |
158 SDR0_CUST0_NDFC_ARE_MASK |
159 SDR0_CUST0_NDFC_BAC_ENCODE(3) |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160 (0x80000000 >> (28 + CONFIG_SYS_NAND_CS));
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100161 mtsdr(SDR0_CUST0, sdr0_cust0);
Adam Grahamf09f09d2008-10-08 10:12:53 -0700162#endif
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100163
164 /*
165 * Configure PFC (Pin Function Control) registers
166 * UART0: 4 pins
167 */
168 mtsdr(SDR0_PFC1, 0x00040000);
169
170 /* Enable PCI host functionality in SDR0_PCI0 */
171 mtsdr(SDR0_PCI0, 0xe0000000);
172
Adam Grahamf09f09d2008-10-08 10:12:53 -0700173#if !defined(CONFIG_ARCHES)
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100174 /* Enable ethernet and take out of reset */
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530175 out_8(&bcsr_data->eth_ctrl, 0) ;
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100176
177 /* Remove NOR-FLASH, NAND-FLASH & EEPROM hardware write protection */
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530178 out_8(&bcsr_data->flash_ctrl, 0) ;
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100179 mtsdr(SDR0_SRST1, 0); /* Pull AHB out of reset default=1 */
180
Stefan Roese41712b42008-03-05 12:31:53 +0100181 /* Setup PLB4-AHB bridge based on the system address map */
182 mtdcr(AHB_TOP, 0x8000004B);
183 mtdcr(AHB_BOT, 0x8000004B);
184
Adam Grahamf09f09d2008-10-08 10:12:53 -0700185#endif
Stefan Roese41712b42008-03-05 12:31:53 +0100186
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100187 return 0;
188}
189
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530190#if defined(CONFIG_USB_OHCI_NEW) && defined(CONFIG_SYS_USB_OHCI_BOARD_INIT)
191int usb_board_init(void)
192{
193 struct board_bcsr *bcsr_data =
194 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
195 u8 val;
196
197 /* Enable USB host & USB-OTG */
198 val = in_8(&bcsr_data->usb_ctrl);
199 val &= ~(BCSR_USBCTRL_OTG_RST | BCSR_USBCTRL_HOST_RST);
200 out_8(&bcsr_data->usb_ctrl, val);
201
Rupjyoti Sarmah709d9482010-10-01 14:31:28 +0530202 /*
203 * Configure USB-STP pins as alternate and not GPIO
204 * It seems to be neccessary to configure the STP pins as GPIO
205 * input at powerup (perhaps while USB reset is asserted). So
206 * we configure those pins to their "real" function now.
207 */
208 gpio_config(16, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1);
209 gpio_config(19, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1);
210
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530211 return 0;
212}
213
214int usb_board_stop(void)
215{
216 struct board_bcsr *bcsr_data =
217 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
218 u8 val;
219
220 /* Disable USB host & USB-OTG */
221 val = in_8(&bcsr_data->usb_ctrl);
222 val |= (BCSR_USBCTRL_OTG_RST | BCSR_USBCTRL_HOST_RST);
223 out_8(&bcsr_data->usb_ctrl, val);
224
Rupjyoti Sarmah709d9482010-10-01 14:31:28 +0530225 /* Reconfigure USB-STP pins as input */
226 gpio_config(16, GPIO_IN , GPIO_SEL, GPIO_OUT_0);
227 gpio_config(19, GPIO_IN , GPIO_SEL, GPIO_OUT_0);
228
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530229 return 0;
230}
231
232int usb_board_init_fail(void)
233{
234 return usb_board_stop();
235}
236#endif /* CONFIG_USB_OHCI_NEW && CONFIG_SYS_USB_OHCI_BOARD_INIT */
237
Adam Grahamf09f09d2008-10-08 10:12:53 -0700238#if !defined(CONFIG_ARCHES)
Stefan Roese1c2926a2008-04-02 08:39:33 +0200239static void canyonlands_sata_init(int board_type)
240{
241 u32 reg;
242
243 if (board_type == BOARD_CANYONLANDS_SATA) {
244 /* Put SATA in reset */
245 SDR_WRITE(SDR0_SRST1, 0x00020001);
246
247 /* Set the phy for SATA, not PCI-E port 0 */
248 reg = SDR_READ(PESDR0_PHY_CTL_RST);
249 SDR_WRITE(PESDR0_PHY_CTL_RST, (reg & 0xeffffffc) | 0x00000001);
250 reg = SDR_READ(PESDR0_L0CLK);
251 SDR_WRITE(PESDR0_L0CLK, (reg & 0xfffffff8) | 0x00000007);
252 SDR_WRITE(PESDR0_L0CDRCTL, 0x00003111);
253 SDR_WRITE(PESDR0_L0DRV, 0x00000104);
254
255 /* Bring SATA out of reset */
256 SDR_WRITE(SDR0_SRST1, 0x00000000);
257 }
258}
Adam Grahamf09f09d2008-10-08 10:12:53 -0700259#endif /* !defined(CONFIG_ARCHES) */
Stefan Roese1c2926a2008-04-02 08:39:33 +0200260
Adam Grahamf09f09d2008-10-08 10:12:53 -0700261int get_cpu_num(void)
262{
263 int cpu = NA_OR_UNKNOWN_CPU;
264
265#if defined(CONFIG_ARCHES)
266 int cpu_num;
267
268 cpu_num = board_fpga_read(0x3);
269
270 /* sanity check; assume cpu numbering starts and increments from 0 */
271 if ((cpu_num >= 0) && (cpu_num < CONFIG_BD_NUM_CPUS))
272 cpu = cpu_num;
273#endif
274
275 return cpu;
276}
277
278#if !defined(CONFIG_ARCHES)
Stefan Roese1c2926a2008-04-02 08:39:33 +0200279int checkboard(void)
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100280{
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530281 struct board_bcsr *bcsr_data =
282 (struct board_bcsr *)CONFIG_SYS_BCSR_BASE;
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000283 char buf[64];
284 int i = getenv_f("serial#", buf, sizeof(buf));
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100285
Stefan Roesec3fa4f02009-07-29 08:46:10 +0200286 if (pvr_460ex()) {
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100287 printf("Board: Canyonlands - AMCC PPC460EX Evaluation Board");
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530288 if (in_8(&bcsr_data->board_status) & BCSR_SELECT_PCIE)
Stefan Roesecc8e8392008-03-28 14:09:04 +0100289 gd->board_type = BOARD_CANYONLANDS_PCIE;
290 else
291 gd->board_type = BOARD_CANYONLANDS_SATA;
Stefan Roesec3fa4f02009-07-29 08:46:10 +0200292 } else {
293 printf("Board: Glacier - AMCC PPC460GT Evaluation Board");
294 gd->board_type = BOARD_GLACIER;
Stefan Roesecc8e8392008-03-28 14:09:04 +0100295 }
296
297 switch (gd->board_type) {
298 case BOARD_CANYONLANDS_PCIE:
299 case BOARD_GLACIER:
300 puts(", 2*PCIe");
301 break;
302
303 case BOARD_CANYONLANDS_SATA:
304 puts(", 1*PCIe/1*SATA");
305 break;
306 }
307
Rupjyoti Sarmah17a68442010-07-07 18:14:48 +0530308 printf(", Rev. %X", in_8(&bcsr_data->cpld_rev));
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100309
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000310 if (i > 0) {
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100311 puts(", serial# ");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000312 puts(buf);
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100313 }
314 putc('\n');
315
Stefan Roese1c2926a2008-04-02 08:39:33 +0200316 canyonlands_sata_init(gd->board_type);
317
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100318 return (0);
319}
320
Adam Grahamf09f09d2008-10-08 10:12:53 -0700321#else /* defined(CONFIG_ARCHES) */
322
323int checkboard(void)
324{
325 char *s = getenv("serial#");
326
327 printf("Board: Arches - AMCC DUAL PPC460GT Reference Design\n");
328 printf(" Revision %02x.%02x ",
329 board_fpga_read(0x0), board_fpga_read(0x1));
330
331 gd->board_type = BOARD_ARCHES;
332
333 /* Only CPU0 has access to CPLD registers */
334 if (get_cpu_num() == 0) {
335 u8 cfg_sw = board_cpld_read(0x1);
336 printf("(FPGA=%02x, CPLD=%02x)\n",
337 board_fpga_read(0x2), board_cpld_read(0x0));
338 printf(" Configuration Switch %d%d%d%d\n",
339 ((cfg_sw >> 3) & 0x01),
340 ((cfg_sw >> 2) & 0x01),
341 ((cfg_sw >> 1) & 0x01),
342 ((cfg_sw >> 0) & 0x01));
343 } else
344 printf("(FPGA=%02x, CPLD=xx)\n", board_fpga_read(0x2));
345
346
347 if (s != NULL)
348 printf(" Serial# %s\n", s);
349
350 return 0;
351}
352#endif /* !defined(CONFIG_ARCHES) */
353
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100354#if defined(CONFIG_PCI)
Stefan Roeseb0b86742009-10-29 15:04:35 +0100355int board_pcie_first(void)
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100356{
Stefan Roesecc8e8392008-03-28 14:09:04 +0100357 /*
358 * Canyonlands with SATA enabled has only one PCIe slot
359 * (2nd one).
360 */
361 if (gd->board_type == BOARD_CANYONLANDS_SATA)
Stefan Roeseb0b86742009-10-29 15:04:35 +0100362 return 1;
Stefan Roesecc8e8392008-03-28 14:09:04 +0100363
Stefan Roeseb0b86742009-10-29 15:04:35 +0100364 return 0;
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100365}
366#endif /* CONFIG_PCI */
367
368int board_early_init_r (void)
369{
370 /*
371 * Canyonlands has 64MBytes of NOR FLASH (Spansion 29GL512), but the
372 * boot EBC mapping only supports a maximum of 16MBytes
373 * (4.ff00.0000 - 4.ffff.ffff).
374 * To solve this problem, the FLASH has to get remapped to another
375 * EBC address which accepts bigger regions:
376 *
377 * 0xfc00.0000 -> 4.cc00.0000
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100378 */
379
380 /* Remap the NOR FLASH to 0xcc00.0000 ... 0xcfff.ffff */
Stefan Roese71665eb2008-03-03 17:27:02 +0100381#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200382 mtebc(PB3CR, CONFIG_SYS_FLASH_BASE_PHYS_L | 0xda000);
Stefan Roese71665eb2008-03-03 17:27:02 +0100383#else
Stefan Roesed1c3b272009-09-09 16:25:29 +0200384 mtebc(PB0CR, CONFIG_SYS_FLASH_BASE_PHYS_L | 0xda000);
Stefan Roese71665eb2008-03-03 17:27:02 +0100385#endif
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100386
387 /* Remove TLB entry of boot EBC mapping */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200388 remove_tlb(CONFIG_SYS_BOOT_BASE_ADDR, 16 << 20);
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100389
390 /* Add TLB entry for 0xfc00.0000 -> 0x4.cc00.0000 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200391 program_tlb(CONFIG_SYS_FLASH_BASE_PHYS, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_SIZE,
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100392 TLB_WORD2_I_ENABLE);
393
394 /*
395 * Now accessing of the whole 64Mbytes of NOR FLASH at virtual address
396 * 0xfc00.0000 is possible
397 */
398
Stefan Roese71665eb2008-03-03 17:27:02 +0100399 /*
400 * Clear potential errors resulting from auto-calibration.
401 * If not done, then we could get an interrupt later on when
402 * exceptions are enabled.
403 */
404 set_mcsr(get_mcsr());
405
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100406 return 0;
407}
408
Adam Grahamf09f09d2008-10-08 10:12:53 -0700409#if !defined(CONFIG_ARCHES)
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100410int misc_init_r(void)
411{
412 u32 sdr0_srst1 = 0;
413 u32 eth_cfg;
Stefan Roese212ed902008-06-10 15:34:11 +0200414 u8 val;
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100415
416 /*
417 * Set EMAC mode/configuration (GMII, SGMII, RGMII...).
418 * This is board specific, so let's do it here.
419 */
420 mfsdr(SDR0_ETH_CFG, eth_cfg);
421 /* disable SGMII mode */
422 eth_cfg &= ~(SDR0_ETH_CFG_SGMII2_ENABLE |
423 SDR0_ETH_CFG_SGMII1_ENABLE |
424 SDR0_ETH_CFG_SGMII0_ENABLE);
425 /* Set the for 2 RGMII mode */
426 /* GMC0 EMAC4_0, GMC0 EMAC4_1, RGMII Bridge 0 */
427 eth_cfg &= ~SDR0_ETH_CFG_GMC0_BRIDGE_SEL;
Stefan Roesec3fa4f02009-07-29 08:46:10 +0200428 if (pvr_460ex())
Stefan Roese4c9e8552008-03-19 16:20:49 +0100429 eth_cfg |= SDR0_ETH_CFG_GMC1_BRIDGE_SEL;
430 else
431 eth_cfg &= ~SDR0_ETH_CFG_GMC1_BRIDGE_SEL;
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100432 mtsdr(SDR0_ETH_CFG, eth_cfg);
433
434 /*
435 * The AHB Bridge core is held in reset after power-on or reset
436 * so enable it now
437 */
438 mfsdr(SDR0_SRST1, sdr0_srst1);
439 sdr0_srst1 &= ~SDR0_SRST1_AHB;
440 mtsdr(SDR0_SRST1, sdr0_srst1);
441
Stefan Roese212ed902008-06-10 15:34:11 +0200442 /*
443 * RTC/M41T62:
444 * Disable square wave output: Batterie will be drained
445 * quickly, when this output is not disabled
446 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200447 val = i2c_reg_read(CONFIG_SYS_I2C_RTC_ADDR, 0xa);
Stefan Roese212ed902008-06-10 15:34:11 +0200448 val &= ~0x40;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200449 i2c_reg_write(CONFIG_SYS_I2C_RTC_ADDR, 0xa, val);
Stefan Roese212ed902008-06-10 15:34:11 +0200450
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100451 return 0;
452}
453
Adam Grahamf09f09d2008-10-08 10:12:53 -0700454#else /* defined(CONFIG_ARCHES) */
455
456int misc_init_r(void)
457{
458 u32 eth_cfg = 0;
459 u32 eth_pll;
460 u32 reg;
461
462 /*
463 * Set EMAC mode/configuration (GMII, SGMII, RGMII...).
464 * This is board specific, so let's do it here.
465 */
466
467 /* enable SGMII mode */
468 eth_cfg |= (SDR0_ETH_CFG_SGMII0_ENABLE |
469 SDR0_ETH_CFG_SGMII1_ENABLE |
470 SDR0_ETH_CFG_SGMII2_ENABLE);
471
472 /* Set EMAC for MDIO */
473 eth_cfg |= SDR0_ETH_CFG_MDIO_SEL_EMAC0;
474
475 /* bypass the TAHOE0/TAHOE1 cores for U-Boot */
476 eth_cfg |= (SDR0_ETH_CFG_TAHOE0_BYPASS | SDR0_ETH_CFG_TAHOE1_BYPASS);
477
478 mtsdr(SDR0_ETH_CFG, eth_cfg);
479
480 /* reset all SGMII interfaces */
481 mfsdr(SDR0_SRST1, reg);
482 reg |= (SDR0_SRST1_SGMII0 | SDR0_SRST1_SGMII1 | SDR0_SRST1_SGMII2);
483 mtsdr(SDR0_SRST1, reg);
484 mtsdr(SDR0_ETH_STS, 0xFFFFFFFF);
485 mtsdr(SDR0_SRST1, 0x00000000);
486
487 do {
488 mfsdr(SDR0_ETH_PLL, eth_pll);
489 } while (!(eth_pll & SDR0_ETH_PLL_PLLLOCK));
490
491 return 0;
492}
493#endif /* !defined(CONFIG_ARCHES) */
494
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100495#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Felix Radensky26d37f02009-06-22 15:30:42 +0300496extern void __ft_board_setup(void *blob, bd_t *bd);
497
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100498void ft_board_setup(void *blob, bd_t *bd)
499{
Felix Radensky26d37f02009-06-22 15:30:42 +0300500 __ft_board_setup(blob, bd);
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100501
Stefan Roese16bedc62008-05-19 07:14:38 +0200502 if (gd->board_type == BOARD_CANYONLANDS_SATA) {
503 /*
504 * When SATA is selected we need to disable the first PCIe
505 * node in the device tree, so that Linux doesn't initialize
506 * it.
507 */
Stefan Roese8fd41662008-09-22 16:10:43 +0200508 fdt_find_and_setprop(blob, "/plb/pciex@d00000000", "status",
509 "disabled", sizeof("disabled"), 1);
Stefan Roese16bedc62008-05-19 07:14:38 +0200510 }
511
512 if (gd->board_type == BOARD_CANYONLANDS_PCIE) {
513 /*
514 * When PCIe is selected we need to disable the SATA
515 * node in the device tree, so that Linux doesn't initialize
516 * it.
517 */
Stefan Roese8fd41662008-09-22 16:10:43 +0200518 fdt_find_and_setprop(blob, "/plb/sata@bffd1000", "status",
519 "disabled", sizeof("disabled"), 1);
Stefan Roese16bedc62008-05-19 07:14:38 +0200520 }
Stefan Roese8e1a3fe2008-03-11 16:51:17 +0100521}
522#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */