blob: 45e87f7631855385cbaf9dadd4aa36f151aae265 [file] [log] [blame]
Stefan Roese887e2ec2006-09-07 11:51:23 +02001/*
Stefan Roese51321062009-04-08 10:36:22 +02002 * (C) Copyright 2006-2009
Stefan Roese887e2ec2006-09-07 11:51:23 +02003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * (C) Copyright 2006
6 * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com
Wolfgang Denk865f0f92008-01-23 14:31:17 +01007 * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com
Stefan Roese887e2ec2006-09-07 11:51:23 +02008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
Stefan Roese13628882007-12-13 14:52:53 +010026#include <libfdt.h>
27#include <fdt_support.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020028#include <asm/ppc4xx.h>
Stefan Roese09887762010-09-16 14:30:37 +020029#include <asm/ppc4xx-gpio.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +020030#include <asm/processor.h>
Stefan Roese5a5958b2007-10-15 11:29:33 +020031#include <asm/io.h>
Matthias Fuchs83a49c82008-01-16 10:33:46 +010032#include <asm/bitops.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +020033
34DECLARE_GLOBAL_DATA_PTR;
35
Stefan Roesed8731332009-05-11 13:46:14 +020036#if !defined(CONFIG_SYS_NO_FLASH)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020037extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
Stefan Roesed8731332009-05-11 13:46:14 +020038#endif
Stefan Roese887e2ec2006-09-07 11:51:23 +020039
Stefan Roese51321062009-04-08 10:36:22 +020040extern void __ft_board_setup(void *blob, bd_t *bd);
41ulong flash_get_size(ulong base, int banknum);
Stefan Roese1b3c3602006-12-22 14:29:40 +010042
Stefan Roese23c51a22009-10-19 14:10:50 +020043static inline u32 get_async_pci_freq(void)
44{
45 if (in_8((void *)(CONFIG_SYS_BCSR_BASE + 5)) &
46 CONFIG_SYS_BCSR5_PCI66EN)
47 return 66666666;
48 else
49 return 33333333;
50}
51
Stefan Roese887e2ec2006-09-07 11:51:23 +020052int board_early_init_f(void)
53{
Stefan Roesea78bc442007-01-05 10:40:36 +010054 u32 sdr0_cust0;
55 u32 sdr0_pfc1, sdr0_pfc2;
56 u32 reg;
Stefan Roese887e2ec2006-09-07 11:51:23 +020057
Stefan Roesed1c3b272009-09-09 16:25:29 +020058 mtdcr(EBC0_CFGADDR, EBC0_CFG);
59 mtdcr(EBC0_CFGDATA, 0xb8400000);
Stefan Roese887e2ec2006-09-07 11:51:23 +020060
Matthias Fuchs83a49c82008-01-16 10:33:46 +010061 /*
Stefan Roese887e2ec2006-09-07 11:51:23 +020062 * Setup the interrupt controller polarities, triggers, etc.
Matthias Fuchs83a49c82008-01-16 10:33:46 +010063 */
Stefan Roese952e7762009-09-24 09:55:50 +020064 mtdcr(UIC0SR, 0xffffffff); /* clear all */
65 mtdcr(UIC0ER, 0x00000000); /* disable all */
66 mtdcr(UIC0CR, 0x00000005); /* ATI & UIC1 crit are critical */
67 mtdcr(UIC0PR, 0xfffff7ff); /* per ref-board manual */
68 mtdcr(UIC0TR, 0x00000000); /* per ref-board manual */
69 mtdcr(UIC0VR, 0x00000000); /* int31 highest, base=0x000 */
70 mtdcr(UIC0SR, 0xffffffff); /* clear all */
Stefan Roese887e2ec2006-09-07 11:51:23 +020071
Stefan Roese952e7762009-09-24 09:55:50 +020072 mtdcr(UIC1SR, 0xffffffff); /* clear all */
73 mtdcr(UIC1ER, 0x00000000); /* disable all */
74 mtdcr(UIC1CR, 0x00000000); /* all non-critical */
75 mtdcr(UIC1PR, 0xffffffff); /* per ref-board manual */
76 mtdcr(UIC1TR, 0x00000000); /* per ref-board manual */
77 mtdcr(UIC1VR, 0x00000000); /* int31 highest, base=0x000 */
78 mtdcr(UIC1SR, 0xffffffff); /* clear all */
Stefan Roese887e2ec2006-09-07 11:51:23 +020079
Stefan Roese952e7762009-09-24 09:55:50 +020080 mtdcr(UIC2SR, 0xffffffff); /* clear all */
81 mtdcr(UIC2ER, 0x00000000); /* disable all */
82 mtdcr(UIC2CR, 0x00000000); /* all non-critical */
83 mtdcr(UIC2PR, 0xffffffff); /* per ref-board manual */
84 mtdcr(UIC2TR, 0x00000000); /* per ref-board manual */
85 mtdcr(UIC2VR, 0x00000000); /* int31 highest, base=0x000 */
86 mtdcr(UIC2SR, 0xffffffff); /* clear all */
Stefan Roese887e2ec2006-09-07 11:51:23 +020087
Stefan Roese23c51a22009-10-19 14:10:50 +020088 /* Check and reconfigure the PCI sync clock if necessary */
89 ppc4xx_pci_sync_clock_config(get_async_pci_freq());
90
Stefan Roese887e2ec2006-09-07 11:51:23 +020091 /* 50MHz tmrclk */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092 out_8((u8 *) CONFIG_SYS_BCSR_BASE + 0x04, 0x00);
Stefan Roese887e2ec2006-09-07 11:51:23 +020093
94 /* clear write protects */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 out_8((u8 *) CONFIG_SYS_BCSR_BASE + 0x07, 0x00);
Stefan Roese887e2ec2006-09-07 11:51:23 +020096
97 /* enable Ethernet */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098 out_8((u8 *) CONFIG_SYS_BCSR_BASE + 0x08, 0x00);
Stefan Roese887e2ec2006-09-07 11:51:23 +020099
100 /* enable USB device */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200101 out_8((u8 *) CONFIG_SYS_BCSR_BASE + 0x09, 0x20);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200102
Mike Nussb7386542008-02-06 11:10:11 -0500103 /* select Ethernet (and optionally IIC1) pins */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200104 mfsdr(SDR0_PFC1, sdr0_pfc1);
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100105 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SELECT_MASK) |
106 SDR0_PFC1_SELECT_CONFIG_4;
Mike Nussb7386542008-02-06 11:10:11 -0500107#ifdef CONFIG_I2C_MULTI_BUS
108 sdr0_pfc1 |= ((sdr0_pfc1 & ~SDR0_PFC1_SIS_MASK) | SDR0_PFC1_SIS_IIC1_SEL);
109#endif
Steven A. Falcoeab10072008-08-06 15:42:52 -0400110 /* Two UARTs, so we need 4-pin mode. Also, we want CTS/RTS mode. */
111 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_U0IM_MASK) | SDR0_PFC1_U0IM_4PINS;
112 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_U0ME_MASK) | SDR0_PFC1_U0ME_CTS_RTS;
113 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_U1ME_MASK) | SDR0_PFC1_U1ME_CTS_RTS;
114
Stefan Roese887e2ec2006-09-07 11:51:23 +0200115 mfsdr(SDR0_PFC2, sdr0_pfc2);
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100116 sdr0_pfc2 = (sdr0_pfc2 & ~SDR0_PFC2_SELECT_MASK) |
117 SDR0_PFC2_SELECT_CONFIG_4;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200118 mtsdr(SDR0_PFC2, sdr0_pfc2);
119 mtsdr(SDR0_PFC1, sdr0_pfc1);
120
121 /* PCI arbiter enabled */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200122 mfsdr(SDR0_PCI0, reg);
123 mtsdr(SDR0_PCI0, 0x80000000 | reg);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200124
125 /* setup NAND FLASH */
126 mfsdr(SDR0_CUST0, sdr0_cust0);
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200127 sdr0_cust0 = SDR0_CUST0_MUX_NDFC_SEL |
Stefan Roese887e2ec2006-09-07 11:51:23 +0200128 SDR0_CUST0_NDFC_ENABLE |
129 SDR0_CUST0_NDFC_BW_8_BIT |
130 SDR0_CUST0_NDFC_ARE_MASK |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131 (0x80000000 >> (28 + CONFIG_SYS_NAND_CS));
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200132 mtsdr(SDR0_CUST0, sdr0_cust0);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200133
134 return 0;
135}
136
Stefan Roese887e2ec2006-09-07 11:51:23 +0200137int misc_init_r(void)
138{
Stefan Roesed8731332009-05-11 13:46:14 +0200139#if !defined(CONFIG_SYS_NO_FLASH)
Stefan Roese887e2ec2006-09-07 11:51:23 +0200140 uint pbcr;
141 int size_val = 0;
Stefan Roesed8731332009-05-11 13:46:14 +0200142#endif
Stefan Roese854bc8d2006-09-13 13:51:58 +0200143#ifdef CONFIG_440EPX
Stefan Roese887e2ec2006-09-07 11:51:23 +0200144 unsigned long usb2d0cr = 0;
145 unsigned long usb2phy0cr, usb2h0cr = 0;
146 unsigned long sdr0_pfc1;
147 char *act = getenv("usbact");
Stefan Roese854bc8d2006-09-13 13:51:58 +0200148#endif
Stefan Roesed8731332009-05-11 13:46:14 +0200149 u32 reg;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200150
Stefan Roesed8731332009-05-11 13:46:14 +0200151#if !defined(CONFIG_SYS_NO_FLASH)
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100152 /* Re-do flash sizing to get full correct info */
Stefan Roese1b3c3602006-12-22 14:29:40 +0100153
154 /* adjust flash start and offset */
155 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
156 gd->bd->bi_flashoffset = 0;
157
Stefan Roese4adcbdc2010-10-11 15:50:10 +0200158#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL) || \
159 defined(CONFIG_SYS_RAMBOOT)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200160 mtdcr(EBC0_CFGADDR, PB3CR);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200161#else
Stefan Roesed1c3b272009-09-09 16:25:29 +0200162 mtdcr(EBC0_CFGADDR, PB0CR);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200163#endif
Stefan Roesed1c3b272009-09-09 16:25:29 +0200164 pbcr = mfdcr(EBC0_CFGDATA);
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100165 size_val = ffs(gd->bd->bi_flashsize) - 21;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200166 pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
Stefan Roese4adcbdc2010-10-11 15:50:10 +0200167#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL) || \
168 defined(CONFIG_SYS_RAMBOOT)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200169 mtdcr(EBC0_CFGADDR, PB3CR);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200170#else
Stefan Roesed1c3b272009-09-09 16:25:29 +0200171 mtdcr(EBC0_CFGADDR, PB0CR);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200172#endif
Stefan Roesed1c3b272009-09-09 16:25:29 +0200173 mtdcr(EBC0_CFGDATA, pbcr);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200174
Stefan Roese1b3c3602006-12-22 14:29:40 +0100175 /*
176 * Re-check to get correct base address
177 */
178 flash_get_size(gd->bd->bi_flashstart, 0);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200179
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200180#ifdef CONFIG_ENV_IS_IN_FLASH
Stefan Roese887e2ec2006-09-07 11:51:23 +0200181 /* Monitor protection ON by default */
182 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200183 -CONFIG_SYS_MONITOR_LEN,
Stefan Roese887e2ec2006-09-07 11:51:23 +0200184 0xffffffff,
185 &flash_info[0]);
186
187 /* Env protection ON by default */
188 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200189 CONFIG_ENV_ADDR_REDUND,
190 CONFIG_ENV_ADDR_REDUND + 2*CONFIG_ENV_SECT_SIZE - 1,
Stefan Roese887e2ec2006-09-07 11:51:23 +0200191 &flash_info[0]);
192#endif
Stefan Roesed8731332009-05-11 13:46:14 +0200193#endif /* CONFIG_SYS_NO_FLASH */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200194
195 /*
196 * USB suff...
197 */
Stefan Roese854bc8d2006-09-13 13:51:58 +0200198#ifdef CONFIG_440EPX
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100199 if (act == NULL || strcmp(act, "hostdev") == 0) {
Stefan Roese887e2ec2006-09-07 11:51:23 +0200200 /* SDR Setting */
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200201 mfsdr(SDR0_PFC1, sdr0_pfc1);
Niklaus Gigerf780b832007-06-27 18:11:38 +0200202 mfsdr(SDR0_USB2D0CR, usb2d0cr);
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200203 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
204 mfsdr(SDR0_USB2H0CR, usb2h0cr);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200205
206 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100207 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200208 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100209 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_16BIT_30MHZ;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200210 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100211 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200212 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100213 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200214 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100215 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200216
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100217 /*
218 * An 8-bit/60MHz interface is the only possible alternative
219 * when connecting the Device to the PHY
220 */
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200221 usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100222 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_16BIT_30MHZ;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200223
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100224 /*
225 * To enable the USB 2.0 Device function
226 * through the UTMI interface
227 */
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200228 usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100229 usb2d0cr = usb2d0cr | SDR0_USB2D0CR_USB2DEV_SELECTION;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200230
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200231 sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100232 sdr0_pfc1 = sdr0_pfc1 | SDR0_PFC1_UES_USB2D_SEL;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200233
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200234 mtsdr(SDR0_PFC1, sdr0_pfc1);
Niklaus Gigerf780b832007-06-27 18:11:38 +0200235 mtsdr(SDR0_USB2D0CR, usb2d0cr);
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200236 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
237 mtsdr(SDR0_USB2H0CR, usb2h0cr);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200238
239 /*clear resets*/
240 udelay (1000);
241 mtsdr(SDR0_SRST1, 0x00000000);
242 udelay (1000);
243 mtsdr(SDR0_SRST0, 0x00000000);
244
245 printf("USB: Host(int phy) Device(ext phy)\n");
246
247 } else if (strcmp(act, "dev") == 0) {
248 /*-------------------PATCH-------------------------------*/
249 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
250
251 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100252 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200253 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100254 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200255 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100256 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200257 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100258 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200259 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
260
261 udelay (1000);
262 mtsdr(SDR0_SRST1, 0x672c6000);
263
264 udelay (1000);
265 mtsdr(SDR0_SRST0, 0x00000080);
266
267 udelay (1000);
268 mtsdr(SDR0_SRST1, 0x60206000);
269
270 *(unsigned int *)(0xe0000350) = 0x00000001;
271
272 udelay (1000);
273 mtsdr(SDR0_SRST1, 0x60306000);
274 /*-------------------PATCH-------------------------------*/
275
276 /* SDR Setting */
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200277 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200278 mfsdr(SDR0_USB2H0CR, usb2h0cr);
Niklaus Gigerf780b832007-06-27 18:11:38 +0200279 mfsdr(SDR0_USB2D0CR, usb2d0cr);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200280 mfsdr(SDR0_PFC1, sdr0_pfc1);
281
282 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100283 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200284 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100285 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_8BIT_60MHZ;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200286 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100287 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PUREN;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200288 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100289 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_DEV;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200290 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100291 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_DEV;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200292
293 usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100294 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_8BIT_60MHZ;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200295
296 usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100297 usb2d0cr = usb2d0cr | SDR0_USB2D0CR_EBC_SELECTION;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200298
299 sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK;
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100300 sdr0_pfc1 = sdr0_pfc1 | SDR0_PFC1_UES_EBCHR_SEL;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200301
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200302 mtsdr(SDR0_USB2H0CR, usb2h0cr);
303 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
Niklaus Gigerf780b832007-06-27 18:11:38 +0200304 mtsdr(SDR0_USB2D0CR, usb2d0cr);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200305 mtsdr(SDR0_PFC1, sdr0_pfc1);
306
Matthias Fuchs83a49c82008-01-16 10:33:46 +0100307 /* clear resets */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200308 udelay (1000);
309 mtsdr(SDR0_SRST1, 0x00000000);
310 udelay (1000);
311 mtsdr(SDR0_SRST0, 0x00000000);
312
313 printf("USB: Device(int phy)\n");
314 }
Stefan Roese854bc8d2006-09-13 13:51:58 +0200315#endif /* CONFIG_440EPX */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200316
John Otken john@softadvances.com8ce16f52007-03-08 09:39:48 -0600317 mfsdr(SDR0_SRST1, reg); /* enable security/kasumi engines */
318 reg &= ~(SDR0_SRST1_CRYP0 | SDR0_SRST1_KASU0);
319 mtsdr(SDR0_SRST1, reg);
320
Stefan Roesea78bc442007-01-05 10:40:36 +0100321 /*
322 * Clear PLB4A0_ACR[WRP]
323 * This fix will make the MAL burst disabling patch for the Linux
324 * EMAC driver obsolete.
325 */
Stefan Roese5e7abce2010-09-11 09:31:43 +0200326 reg = mfdcr(PLB4A0_ACR) & ~PLB4Ax_ACR_WRP_MASK;
327 mtdcr(PLB4A0_ACR, reg);
Stefan Roesea78bc442007-01-05 10:40:36 +0100328
Stefan Roese887e2ec2006-09-07 11:51:23 +0200329 return 0;
330}
331
332int checkboard(void)
333{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000334 char buf[64];
335 int i = getenv_f("serial#", buf, sizeof(buf));
Stefan Roesee0b9ea82007-01-13 07:57:51 +0100336 u8 rev;
Stefan Roese23c51a22009-10-19 14:10:50 +0200337 u32 clock = get_async_pci_freq();
Stefan Roese887e2ec2006-09-07 11:51:23 +0200338
Stefan Roese854bc8d2006-09-13 13:51:58 +0200339#ifdef CONFIG_440EPX
Stefan Roese887e2ec2006-09-07 11:51:23 +0200340 printf("Board: Sequoia - AMCC PPC440EPx Evaluation Board");
Stefan Roese854bc8d2006-09-13 13:51:58 +0200341#else
342 printf("Board: Rainier - AMCC PPC440GRx Evaluation Board");
343#endif
Stefan Roesee0b9ea82007-01-13 07:57:51 +0100344
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200345 rev = in_8((void *)(CONFIG_SYS_BCSR_BASE + 0));
Stefan Roese23c51a22009-10-19 14:10:50 +0200346 printf(", Rev. %X, PCI-Async=%d MHz", rev, clock / 1000000);
Stefan Roesee0b9ea82007-01-13 07:57:51 +0100347
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000348 if (i > 0) {
Stefan Roese887e2ec2006-09-07 11:51:23 +0200349 puts(", serial# ");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000350 puts(buf);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200351 }
352 putc('\n');
353
Stefan Roese23c51a22009-10-19 14:10:50 +0200354 /*
355 * Reconfiguration of the PCI sync clock is already done,
356 * now check again if everything is in range:
357 */
358 if (ppc4xx_pci_sync_clock_config(clock)) {
359 printf("ERROR: PCI clocking incorrect (async=%d "
360 "sync=%ld)!\n", clock, get_PCI_freq());
361 }
362
Stefan Roese887e2ec2006-09-07 11:51:23 +0200363 return (0);
364}
365
Matthias Fuchs1f840212008-01-08 15:40:09 +0100366#if defined(CONFIG_PCI) && defined(CONFIG_PCI_PNP)
367/*
368 * Assign interrupts to PCI devices.
369 */
Stefan Roesea760b022009-11-12 16:41:09 +0100370void board_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
Matthias Fuchs1f840212008-01-08 15:40:09 +0100371{
Stefan Roesed1631fe2008-06-26 13:40:57 +0200372 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, VECNUM_EIRQ2);
Matthias Fuchs1f840212008-01-08 15:40:09 +0100373}
374#endif
375
Stefan Roesed8731332009-05-11 13:46:14 +0200376#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_SYS_RAMBOOT)
Stefan Roese51321062009-04-08 10:36:22 +0200377/*
378 * On NAND-booting sequoia, we need to patch the chips select numbers
379 * in the dtb (CS0 - NAND, CS3 - NOR)
380 */
381void ft_board_setup(void *blob, bd_t *bd)
382{
383 int rc;
384 int len;
385 int nodeoffset;
386 struct fdt_property *prop;
387 u32 *reg;
388 char path[32];
389
390 /* First do common fdt setup */
391 __ft_board_setup(blob, bd);
392
393 /* And now configure NOR chip select to 3 instead of 0 */
394 strcpy(path, "/plb/opb/ebc/nor_flash@0,0");
395 nodeoffset = fdt_path_offset(blob, path);
396 prop = fdt_get_property_w(blob, nodeoffset, "reg", &len);
397 if (prop == NULL) {
398 printf("Unable to update NOR chip select for NAND booting\n");
399 return;
400 }
401 reg = (u32 *)&prop->data[0];
402 reg[0] = 3;
403 rc = fdt_find_and_setprop(blob, path, "reg", reg, 3 * sizeof(u32), 1);
404 if (rc) {
405 printf("Unable to update property NOR mappings, err=%s\n",
406 fdt_strerror(rc));
407 return;
408 }
409
410 /* And now configure NAND chip select to 0 instead of 3 */
411 strcpy(path, "/plb/opb/ebc/ndfc@3,0");
412 nodeoffset = fdt_path_offset(blob, path);
413 prop = fdt_get_property_w(blob, nodeoffset, "reg", &len);
414 if (prop == NULL) {
415 printf("Unable to update NDFC chip select for NAND booting\n");
416 return;
417 }
418 reg = (u32 *)&prop->data[0];
419 reg[0] = 0;
420 rc = fdt_find_and_setprop(blob, path, "reg", reg, 3 * sizeof(u32), 1);
421 if (rc) {
422 printf("Unable to update property NDFC mappings, err=%s\n",
423 fdt_strerror(rc));
424 return;
425 }
426}
427#endif /* CONFIG_NAND_U_BOOT */