blob: 38241053427bbfc7d4f93d592300e947af8cd3d9 [file] [log] [blame]
Matthias Fuchs72c5d522007-12-28 17:07:14 +01001/*
Matthias Fuchsbe270792008-10-28 13:37:00 +01002 * (Cg) Copyright 2007-2008
Matthias Fuchs72c5d522007-12-28 17:07:14 +01003 * Matthias Fuchs, esd gmbh, matthias.fuchs@esd-electronics.com.
4 * Based on board/amcc/sequoia/sequoia.c
5 *
6 * (C) Copyright 2006
7 * Stefan Roese, DENX Software Engineering, sr@denx.de.
8 *
9 * (C) Copyright 2006
10 * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com
11 * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29#include <common.h>
30#include <libfdt.h>
31#include <fdt_support.h>
32#include <ppc440.h>
33#include <asm/processor.h>
34#include <asm/io.h>
Matthias Fuchs034394a2008-03-30 18:52:44 +020035#include <asm/bitops.h>
Matthias Fuchs72c5d522007-12-28 17:07:14 +010036#include <command.h>
37#include <i2c.h>
38#ifdef CONFIG_RESET_PHY_R
39#include <miiphy.h>
40#endif
41#include <serial.h>
42#include "fpga.h"
43#include "pmc440.h"
44
45DECLARE_GLOBAL_DATA_PTR;
46
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
Matthias Fuchsbe270792008-10-28 13:37:00 +010048extern void __ft_board_setup(void *blob, bd_t *bd);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010049
50ulong flash_get_size(ulong base, int banknum);
51int pci_is_66mhz(void);
Matthias Fuchsbe270792008-10-28 13:37:00 +010052int is_monarch(void);
Matthias Fuchs034394a2008-03-30 18:52:44 +020053int bootstrap_eeprom_read(unsigned dev_addr, unsigned offset,
54 uchar *buffer, unsigned cnt);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010055
56struct serial_device *default_serial_console(void)
57{
58 uchar buf[4];
59 ulong delay;
60 int i;
61 ulong val;
62
63 /*
64 * Use default console on P4 when strapping jumper
65 * is installed (bootstrap option != 'H').
66 */
67 mfsdr(SDR_PINSTP, val);
68 if (((val & 0xf0000000) >> 29) != 7)
69 return &serial1_device;
70
71 ulong scratchreg = in_be32((void*)GPIO0_ISR3L);
72 if (!(scratchreg & 0x80)) {
73 /* mark scratchreg valid */
74 scratchreg = (scratchreg & 0xffffff00) | 0x80;
75
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076 i = bootstrap_eeprom_read(CONFIG_SYS_I2C_BOOT_EEPROM_ADDR,
Matthias Fuchs034394a2008-03-30 18:52:44 +020077 0x10, buf, 4);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010078 if ((i != -1) && (buf[0] == 0x19) && (buf[1] == 0x75)) {
79 scratchreg |= buf[2];
80
81 /* bringup delay for console */
82 for (delay=0; delay<(1000 * (ulong)buf[3]); delay++) {
83 udelay(1000);
84 }
85 } else
86 scratchreg |= 0x01;
87 out_be32((void*)GPIO0_ISR3L, scratchreg);
88 }
89
90 if (scratchreg & 0x01)
91 return &serial1_device;
92 else
93 return &serial0_device;
94}
95
96int board_early_init_f(void)
97{
98 u32 sdr0_cust0;
99 u32 sdr0_pfc1, sdr0_pfc2;
100 u32 reg;
101
102 /* general EBC configuration (disable EBC timeouts) */
103 mtdcr(ebccfga, xbcfg);
104 mtdcr(ebccfgd, 0xf8400000);
105
Matthias Fuchs034394a2008-03-30 18:52:44 +0200106 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100107 * Setup the GPIO pins
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108 * TODO: setup GPIOs via CONFIG_SYS_4xx_GPIO_TABLE in board's config file
Matthias Fuchs034394a2008-03-30 18:52:44 +0200109 */
Matthias Fuchs19ef4f72008-12-10 15:13:32 +0100110 out32(GPIO0_OR, 0x40000102);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100111 out32(GPIO0_TCR, 0x4c90011f);
Matthias Fuchsbe270792008-10-28 13:37:00 +0100112 out32(GPIO0_OSRL, 0x28051400);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100113 out32(GPIO0_OSRH, 0x55005000);
Matthias Fuchsbe270792008-10-28 13:37:00 +0100114 out32(GPIO0_TSRL, 0x08051400);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100115 out32(GPIO0_TSRH, 0x55005000);
116 out32(GPIO0_ISR1L, 0x54000000);
117 out32(GPIO0_ISR1H, 0x00000000);
118 out32(GPIO0_ISR2L, 0x44000000);
119 out32(GPIO0_ISR2H, 0x00000100);
120 out32(GPIO0_ISR3L, 0x00000000);
121 out32(GPIO0_ISR3H, 0x00000000);
122
123 out32(GPIO1_OR, 0x80002408);
124 out32(GPIO1_TCR, 0xd6003c08);
125 out32(GPIO1_OSRL, 0x0a5a0000);
126 out32(GPIO1_OSRH, 0x00000000);
127 out32(GPIO1_TSRL, 0x00000000);
128 out32(GPIO1_TSRH, 0x00000000);
129 out32(GPIO1_ISR1L, 0x00005555);
130 out32(GPIO1_ISR1H, 0x40000000);
131 out32(GPIO1_ISR2L, 0x04010000);
132 out32(GPIO1_ISR2H, 0x00000000);
133 out32(GPIO1_ISR3L, 0x01400000);
134 out32(GPIO1_ISR3H, 0x00000000);
135
136 /* patch PLB:PCI divider for 66MHz PCI */
137 mfcpr(clk_spcid, reg);
138 if (pci_is_66mhz() && (reg != 0x02000000)) {
139 mtcpr(clk_spcid, 0x02000000); /* 133MHZ : 2 for 66MHz PCI */
140
141 mfcpr(clk_icfg, reg);
142 reg |= CPR0_ICFG_RLI_MASK;
143 mtcpr(clk_icfg, reg);
144
145 mtspr(dbcr0, 0x20000000); /* do chip reset */
146 }
147
Matthias Fuchs034394a2008-03-30 18:52:44 +0200148 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100149 * Setup the interrupt controller polarities, triggers, etc.
Matthias Fuchs034394a2008-03-30 18:52:44 +0200150 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100151 mtdcr(uic0sr, 0xffffffff); /* clear all */
152 mtdcr(uic0er, 0x00000000); /* disable all */
153 mtdcr(uic0cr, 0x00000005); /* ATI & UIC1 crit are critical */
154 mtdcr(uic0pr, 0xfffff7ef);
155 mtdcr(uic0tr, 0x00000000);
156 mtdcr(uic0vr, 0x00000000); /* int31 highest, base=0x000 */
157 mtdcr(uic0sr, 0xffffffff); /* clear all */
158
159 mtdcr(uic1sr, 0xffffffff); /* clear all */
160 mtdcr(uic1er, 0x00000000); /* disable all */
161 mtdcr(uic1cr, 0x00000000); /* all non-critical */
162 mtdcr(uic1pr, 0xffffc7f5);
163 mtdcr(uic1tr, 0x00000000);
164 mtdcr(uic1vr, 0x00000000); /* int31 highest, base=0x000 */
165 mtdcr(uic1sr, 0xffffffff); /* clear all */
166
167 mtdcr(uic2sr, 0xffffffff); /* clear all */
168 mtdcr(uic2er, 0x00000000); /* disable all */
169 mtdcr(uic2cr, 0x00000000); /* all non-critical */
170 mtdcr(uic2pr, 0x27ffffff);
171 mtdcr(uic2tr, 0x00000000);
172 mtdcr(uic2vr, 0x00000000); /* int31 highest, base=0x000 */
173 mtdcr(uic2sr, 0xffffffff); /* clear all */
174
175 /* select Ethernet pins */
176 mfsdr(SDR0_PFC1, sdr0_pfc1);
Matthias Fuchs034394a2008-03-30 18:52:44 +0200177 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SELECT_MASK) |
178 SDR0_PFC1_SELECT_CONFIG_4;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100179 mfsdr(SDR0_PFC2, sdr0_pfc2);
Matthias Fuchs034394a2008-03-30 18:52:44 +0200180 sdr0_pfc2 = (sdr0_pfc2 & ~SDR0_PFC2_SELECT_MASK) |
181 SDR0_PFC2_SELECT_CONFIG_4;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100182
183 /* enable 2nd IIC */
184 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SIS_MASK) | SDR0_PFC1_SIS_IIC1_SEL;
185
186 mtsdr(SDR0_PFC2, sdr0_pfc2);
187 mtsdr(SDR0_PFC1, sdr0_pfc1);
188
189 /* setup NAND FLASH */
190 mfsdr(SDR0_CUST0, sdr0_cust0);
191 sdr0_cust0 = SDR0_CUST0_MUX_NDFC_SEL |
192 SDR0_CUST0_NDFC_ENABLE |
193 SDR0_CUST0_NDFC_BW_8_BIT |
194 SDR0_CUST0_NDFC_ARE_MASK |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195 (0x80000000 >> (28 + CONFIG_SYS_NAND_CS));
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100196 mtsdr(SDR0_CUST0, sdr0_cust0);
197
198 return 0;
199}
200
Matthias Fuchsbe270792008-10-28 13:37:00 +0100201#if defined(CONFIG_MISC_INIT_F)
202int misc_init_f(void)
203{
204 struct pci_controller hose;
205 hose.first_busno = 0;
206 hose.last_busno = 0;
207 hose.region_count = 0;
208
209 if (getenv("pciearly") && (!is_monarch())) {
210 printf("PCI: early target init\n");
211 pci_setup_indirect(&hose, PCIX0_CFGADR, PCIX0_CFGDATA);
212 pci_target_init(&hose);
213 }
214 return 0;
215}
216#endif
217
Matthias Fuchs034394a2008-03-30 18:52:44 +0200218/*
219 * misc_init_r.
220 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100221int misc_init_r(void)
222{
223 uint pbcr;
224 int size_val = 0;
225 u32 reg;
226 unsigned long usb2d0cr = 0;
227 unsigned long usb2phy0cr, usb2h0cr = 0;
228 unsigned long sdr0_pfc1;
Matthias Fuchsbe270792008-10-28 13:37:00 +0100229 unsigned long sdr0_srst0, sdr0_srst1;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100230 char *act = getenv("usbact");
231
232 /*
233 * FLASH stuff...
234 */
235
236 /* Re-do sizing to get full correct info */
237
238 /* adjust flash start and offset */
239 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
240 gd->bd->bi_flashoffset = 0;
241
242#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
243 mtdcr(ebccfga, pb2cr);
244#else
245 mtdcr(ebccfga, pb0cr);
246#endif
247 pbcr = mfdcr(ebccfgd);
Matthias Fuchs034394a2008-03-30 18:52:44 +0200248 size_val = ffs(gd->bd->bi_flashsize) - 21;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100249 pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
250#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
251 mtdcr(ebccfga, pb2cr);
252#else
253 mtdcr(ebccfga, pb0cr);
254#endif
255 mtdcr(ebccfgd, pbcr);
256
257 /*
258 * Re-check to get correct base address
259 */
260 flash_get_size(gd->bd->bi_flashstart, 0);
261
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200262#ifdef CONFIG_ENV_IS_IN_FLASH
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100263 /* Monitor protection ON by default */
264 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200265 -CONFIG_SYS_MONITOR_LEN,
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100266 0xffffffff,
267 &flash_info[0]);
268
269 /* Env protection ON by default */
270 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200271 CONFIG_ENV_ADDR_REDUND,
272 CONFIG_ENV_ADDR_REDUND + 2*CONFIG_ENV_SECT_SIZE - 1,
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100273 &flash_info[0]);
274#endif
275
276 /*
277 * USB suff...
278 */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100279 if ((act == NULL || strcmp(act, "host") == 0) &&
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100280 !(in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT)){
281 /* SDR Setting */
282 mfsdr(SDR0_PFC1, sdr0_pfc1);
283 mfsdr(SDR0_USB2D0CR, usb2d0cr);
284 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
285 mfsdr(SDR0_USB2H0CR, usb2h0cr);
286
287 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200288 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100289 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200290 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_16BIT_30MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100291 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200292 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100293 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200294 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100295 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200296 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100297
Matthias Fuchs034394a2008-03-30 18:52:44 +0200298 /*
299 * An 8-bit/60MHz interface is the only possible alternative
300 * when connecting the Device to the PHY
301 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100302 usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200303 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_16BIT_30MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100304
305 usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK;
306 sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK;
307
308 mtsdr(SDR0_PFC1, sdr0_pfc1);
309 mtsdr(SDR0_USB2D0CR, usb2d0cr);
310 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
311 mtsdr(SDR0_USB2H0CR, usb2h0cr);
312
Matthias Fuchsbe270792008-10-28 13:37:00 +0100313 /*
314 * Take USB out of reset:
315 * -Initial status = all cores are in reset
316 * -deassert reset to OPB1, P4OPB0, OPB2, PLB42OPB1 OPB2PLB40 cores
317 * -wait 1 ms
318 * -deassert reset to PHY
319 * -wait 1 ms
320 * -deassert reset to HOST
321 * -wait 4 ms
322 * -deassert all other resets
323 */
324 mfsdr(SDR0_SRST1, sdr0_srst1);
325 sdr0_srst1 &= ~(SDR0_SRST1_OPBA1 | \
326 SDR0_SRST1_P4OPB0 | \
327 SDR0_SRST1_OPBA2 | \
328 SDR0_SRST1_PLB42OPB1 | \
329 SDR0_SRST1_OPB2PLB40);
330 mtsdr(SDR0_SRST1, sdr0_srst1);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100331 udelay(1000);
Matthias Fuchsbe270792008-10-28 13:37:00 +0100332
333 mfsdr(SDR0_SRST1, sdr0_srst1);
334 sdr0_srst1 &= ~SDR0_SRST1_USB20PHY;
335 mtsdr(SDR0_SRST1, sdr0_srst1);
336 udelay(1000);
337
338 mfsdr(SDR0_SRST0, sdr0_srst0);
339 sdr0_srst0 &= ~SDR0_SRST0_USB2H;
340 mtsdr(SDR0_SRST0, sdr0_srst0);
341 udelay(4000);
342
343 /* finally all the other resets */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100344 mtsdr(SDR0_SRST1, 0x00000000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100345 mtsdr(SDR0_SRST0, 0x00000000);
346
Matthias Fuchsbe270792008-10-28 13:37:00 +0100347 if (!(in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT)) {
348 /* enable power on USB socket */
349 out_be32((void*)GPIO1_OR,
350 in_be32((void*)GPIO1_OR) & ~GPIO1_USB_PWR_N);
351 }
352
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100353 printf("USB: Host\n");
354
Matthias Fuchs034394a2008-03-30 18:52:44 +0200355 } else if ((strcmp(act, "dev") == 0) ||
356 (in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT)) {
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100357 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
358
359 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200360 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100361 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200362 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100363 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200364 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100365 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200366 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100367 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
368
369 udelay (1000);
370 mtsdr(SDR0_SRST1, 0x672c6000);
371
372 udelay (1000);
373 mtsdr(SDR0_SRST0, 0x00000080);
374
375 udelay (1000);
376 mtsdr(SDR0_SRST1, 0x60206000);
377
378 *(unsigned int *)(0xe0000350) = 0x00000001;
379
380 udelay (1000);
381 mtsdr(SDR0_SRST1, 0x60306000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100382
383 /* SDR Setting */
384 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
385 mfsdr(SDR0_USB2H0CR, usb2h0cr);
386 mfsdr(SDR0_USB2D0CR, usb2d0cr);
387 mfsdr(SDR0_PFC1, sdr0_pfc1);
388
389 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200390 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100391 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200392 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_8BIT_60MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100393 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200394 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PUREN;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100395 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200396 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_DEV;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100397 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200398 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_DEV;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100399
400 usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200401 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_8BIT_60MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100402
403 usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK;
404
405 sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200406 sdr0_pfc1 = sdr0_pfc1 | SDR0_PFC1_UES_EBCHR_SEL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100407
408 mtsdr(SDR0_USB2H0CR, usb2h0cr);
409 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
410 mtsdr(SDR0_USB2D0CR, usb2d0cr);
411 mtsdr(SDR0_PFC1, sdr0_pfc1);
412
413 /*clear resets*/
414 udelay(1000);
415 mtsdr(SDR0_SRST1, 0x00000000);
416 udelay(1000);
417 mtsdr(SDR0_SRST0, 0x00000000);
418
419 printf("USB: Device\n");
420 }
421
422 /*
423 * Clear PLB4A0_ACR[WRP]
424 * This fix will make the MAL burst disabling patch for the Linux
425 * EMAC driver obsolete.
426 */
427 reg = mfdcr(plb4_acr) & ~PLB4_ACR_WRP;
428 mtdcr(plb4_acr, reg);
429
430#ifdef CONFIG_FPGA
431 pmc440_init_fpga();
432#endif
433
434 /* turn off POST LED */
435 out_be32((void*)GPIO1_OR, in_be32((void*)GPIO1_OR) & ~GPIO1_POST_N);
436 /* turn on RUN LED */
437 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~GPIO0_LED_RUN_N);
438 return 0;
439}
440
441int is_monarch(void)
442{
443 if (in_be32((void*)GPIO1_IR) & GPIO1_NONMONARCH)
444 return 0;
445
446 return 1;
447}
448
449int pci_is_66mhz(void)
450{
451 if (in_be32((void*)GPIO1_IR) & GPIO1_M66EN)
452 return 1;
453 return 0;
454}
455
456int board_revision(void)
457{
458 return (int)((in_be32((void*)GPIO1_IR) & GPIO1_HWID_MASK) >> 4);
459}
460
461int checkboard(void)
462{
463 puts("Board: esd GmbH - PMC440");
464
465 gd->board_type = board_revision();
466 printf(", Rev 1.%ld, ", gd->board_type);
467
468 if (!is_monarch()) {
469 puts("non-");
470 }
471
472 printf("monarch, PCI=%s MHz\n", pci_is_66mhz() ? "66" : "33");
473 return (0);
474}
475
476
477#if defined(CONFIG_PCI) && defined(CONFIG_PCI_PNP)
478/*
479 * Assign interrupts to PCI devices. Some OSs rely on this.
480 */
481void pmc440_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
482{
483 unsigned char int_line[] = {IRQ_PCIC, IRQ_PCID, IRQ_PCIA, IRQ_PCIB};
484
485 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
486 int_line[PCI_DEV(dev) & 0x03]);
487}
488#endif
489
Matthias Fuchs034394a2008-03-30 18:52:44 +0200490/*
491 * pci_pre_init
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100492 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200493 * This routine is called just prior to registering the hose and gives
494 * the board the opportunity to check things. Returning a value of zero
495 * indicates that things are bad & PCI initialization should be aborted.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100496 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200497 * Different boards may wish to customize the pci controller structure
498 * (add regions, override default access routines, etc) or perform
499 * certain pre-initialization actions.
500 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100501#if defined(CONFIG_PCI)
502int pci_pre_init(struct pci_controller *hose)
503{
504 unsigned long addr;
505
Matthias Fuchs034394a2008-03-30 18:52:44 +0200506 /*
507 * Set priority for all PLB3 devices to 0.
508 * Set PLB3 arbiter to fair mode.
509 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100510 mfsdr(sdr_amp1, addr);
511 mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00);
512 addr = mfdcr(plb3_acr);
513 mtdcr(plb3_acr, addr | 0x80000000);
514
Matthias Fuchs034394a2008-03-30 18:52:44 +0200515 /*
516 * Set priority for all PLB4 devices to 0.
517 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100518 mfsdr(sdr_amp0, addr);
519 mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00);
520 addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */
521 mtdcr(plb4_acr, addr);
522
Matthias Fuchs034394a2008-03-30 18:52:44 +0200523 /*
524 * Set Nebula PLB4 arbiter to fair mode.
525 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100526 /* Segment0 */
527 addr = (mfdcr(plb0_acr) & ~plb0_acr_ppm_mask) | plb0_acr_ppm_fair;
528 addr = (addr & ~plb0_acr_hbu_mask) | plb0_acr_hbu_enabled;
529 addr = (addr & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
530 addr = (addr & ~plb0_acr_wrp_mask) | plb0_acr_wrp_2deep;
531 mtdcr(plb0_acr, addr);
532
533 /* Segment1 */
534 addr = (mfdcr(plb1_acr) & ~plb1_acr_ppm_mask) | plb1_acr_ppm_fair;
535 addr = (addr & ~plb1_acr_hbu_mask) | plb1_acr_hbu_enabled;
536 addr = (addr & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
537 addr = (addr & ~plb1_acr_wrp_mask) | plb1_acr_wrp_2deep;
538 mtdcr(plb1_acr, addr);
539
540#ifdef CONFIG_PCI_PNP
541 hose->fixup_irq = pmc440_pci_fixup_irq;
542#endif
543
544 return 1;
545}
546#endif /* defined(CONFIG_PCI) */
547
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200548/*
549 * pci_target_init
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100550 *
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200551 * The bootstrap configuration provides default settings for the pci
552 * inbound map (PIM). But the bootstrap config choices are limited and
553 * may not be sufficient for a given board.
554 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200555#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100556void pci_target_init(struct pci_controller *hose)
557{
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200558 char *ptmla_str, *ptmms_str;
559
560 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100561 * Set up Direct MMIO registers
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200562 */
563 /*
564 * PowerPC440EPX PCI Master configuration.
565 * Map one 1Gig range of PLB/processor addresses to PCI memory space.
566 * PLB address 0x80000000-0xBFFFFFFF
567 * ==> PCI address 0x80000000-0xBFFFFFFF
568 * Use byte reversed out routines to handle endianess.
569 * Make this region non-prefetchable.
570 */
571 out32r(PCIX0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute */
572 /* - disabled b4 setting */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200573 out32r(PCIX0_PMM0LA, CONFIG_SYS_PCI_MEMBASE); /* PMM0 Local Address */
574 out32r(PCIX0_PMM0PCILA, CONFIG_SYS_PCI_MEMBASE); /* PMM0 PCI Low Address */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100575 out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200576 out32r(PCIX0_PMM0MA, 0xc0000001); /* 1G + No prefetching, */
577 /* and enable region */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100578
579 if (!is_monarch()) {
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200580 ptmla_str = getenv("ptm1la");
581 ptmms_str = getenv("ptm1ms");
582 if(NULL != ptmla_str && NULL != ptmms_str ) {
583 out32r(PCIX0_PTM1MS,
584 simple_strtoul(ptmms_str, NULL, 16));
585 out32r(PCIX0_PTM1LA,
586 simple_strtoul(ptmla_str, NULL, 16));
587 } else {
588 /* BAR1: default top 64MB of RAM */
589 out32r(PCIX0_PTM1MS, 0xfc000001);
590 out32r(PCIX0_PTM1LA, 0x0c000000);
591 }
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100592 } else {
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200593 /* BAR1: default: complete 256MB RAM */
594 out32r(PCIX0_PTM1MS, 0xf0000001);
595 out32r(PCIX0_PTM1LA, 0x00000000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100596 }
597
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200598 ptmla_str = getenv("ptm2la"); /* Local Addr. Reg */
599 ptmms_str = getenv("ptm2ms"); /* Memory Size/Attribute */
600 if(NULL != ptmla_str && NULL != ptmms_str ) {
601 out32r(PCIX0_PTM2MS, simple_strtoul(ptmms_str, NULL, 16));
602 out32r(PCIX0_PTM2LA, simple_strtoul(ptmla_str, NULL, 16));
603 } else {
Matthias Fuchsbe270792008-10-28 13:37:00 +0100604 /* BAR2: default: 4MB FPGA */
605 out32r(PCIX0_PTM2MS, 0xffc00001); /* Memory Size/Attribute */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200606 out32r(PCIX0_PTM2LA, 0xef000000); /* Local Addr. Reg */
607 }
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100608
609 if (is_monarch()) {
610 /* BAR2: map FPGA registers behind system memory at 1GB */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100611 pci_hose_write_config_dword(hose, 0, PCI_BASE_ADDRESS_2, 0x40000008);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100612 }
613
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200614 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100615 * Set up Configuration registers
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200616 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100617
618 /* Program the board's vendor id */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100619 pci_hose_write_config_word(hose, 0, PCI_SUBSYSTEM_VENDOR_ID,
620 CONFIG_SYS_PCI_SUBSYS_VENDORID);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100621
Stefan Roese02e38922008-03-31 12:20:48 +0200622 /* disabled for PMC405 backward compatibility */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100623 /* Configure command register as bus master */
Matthias Fuchs034394a2008-03-30 18:52:44 +0200624 /* pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER); */
625
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100626
627 /* 240nS PCI clock */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100628 pci_hose_write_config_word(hose, 0, PCI_LATENCY_TIMER, 1);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100629
630 /* No error reporting */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100631 pci_hose_write_config_word(hose, 0, PCI_ERREN, 0);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100632
633 pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101);
634
635 if (!is_monarch()) {
636 /* Program the board's subsystem id/classcode */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100637 pci_hose_write_config_word(hose, 0, PCI_SUBSYSTEM_ID,
638 CONFIG_SYS_PCI_SUBSYS_ID_NONMONARCH);
639 pci_hose_write_config_word(hose, 0, PCI_CLASS_SUB_CODE,
640 CONFIG_SYS_PCI_CLASSCODE_NONMONARCH);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100641
642 /* PCI configuration done: release ERREADY */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200643 out_be32((void*)GPIO1_OR,
644 in_be32((void*)GPIO1_OR) | GPIO1_PPC_EREADY);
645 out_be32((void*)GPIO1_TCR,
646 in_be32((void*)GPIO1_TCR) | GPIO1_PPC_EREADY);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100647 } else {
648 /* Program the board's subsystem id/classcode */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100649 pci_hose_write_config_word(hose, 0, PCI_SUBSYSTEM_ID,
650 CONFIG_SYS_PCI_SUBSYS_ID_MONARCH);
651 pci_hose_write_config_word(hose, 0, PCI_CLASS_SUB_CODE,
652 CONFIG_SYS_PCI_CLASSCODE_MONARCH);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100653 }
Matthias Fuchsbe270792008-10-28 13:37:00 +0100654
655 /* enable host configuration */
656 pci_hose_write_config_dword(hose, 0, PCI_BRDGOPT2, 0x00000101);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100657}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200658#endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT) */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100659
Matthias Fuchs034394a2008-03-30 18:52:44 +0200660/*
661 * pci_master_init
662 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200663#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100664void pci_master_init(struct pci_controller *hose)
665{
666 unsigned short temp_short;
667
Matthias Fuchs034394a2008-03-30 18:52:44 +0200668 /*
669 * Write the PowerPC440 EP PCI Configuration regs.
670 * Enable PowerPC440 EP to be a master on the PCI bus (PMM).
671 * Enable PowerPC440 EP to act as a PCI memory target (PTM).
672 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100673 if (is_monarch()) {
674 pci_read_config_word(0, PCI_COMMAND, &temp_short);
675 pci_write_config_word(0, PCI_COMMAND,
676 temp_short | PCI_COMMAND_MASTER |
677 PCI_COMMAND_MEMORY);
678 }
679}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200680#endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT) */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100681
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100682static void wait_for_pci_ready(void)
683{
684 int i;
685 char *s = getenv("pcidelay");
Matthias Fuchsbe270792008-10-28 13:37:00 +0100686 /*
687 * We have our own handling of the pcidelay variable.
688 * Using CONFIG_PCI_BOOTDELAY enables pausing for host
689 * and adapter devices. For adapter devices we do not
690 * want this.
691 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100692 if (s) {
693 int ms = simple_strtoul(s, NULL, 10);
694 printf("PCI: Waiting for %d ms\n", ms);
695 for (i=0; i<ms; i++)
696 udelay(1000);
697 }
698
699 if (!(in_be32((void*)GPIO1_IR) & GPIO1_PPC_EREADY)) {
700 printf("PCI: Waiting for EREADY (CTRL-C to skip) ... ");
701 while (1) {
702 if (ctrlc()) {
703 puts("abort\n");
704 break;
705 }
706 if (in_be32((void*)GPIO1_IR) & GPIO1_PPC_EREADY) {
707 printf("done\n");
708 break;
709 }
710 }
711 }
712}
713
Matthias Fuchs034394a2008-03-30 18:52:44 +0200714/*
715 * is_pci_host
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100716 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200717 * This routine is called to determine if a pci scan should be
718 * performed. With various hardware environments (especially cPCI and
719 * PPMC) it's insufficient to depend on the state of the arbiter enable
720 * bit in the strap register, or generic host/adapter assumptions.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100721 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200722 * Rather than hard-code a bad assumption in the general 440 code, the
723 * 440 pci code requires the board to decide at runtime.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100724 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200725 * Return 0 for adapter mode, non-zero for host (monarch) mode.
726 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100727#if defined(CONFIG_PCI)
728int is_pci_host(struct pci_controller *hose)
729{
730 char *s = getenv("pciscan");
731 if (s == NULL)
732 if (is_monarch()) {
733 wait_for_pci_ready();
734 return 1;
735 } else
736 return 0;
737 else if (!strcmp(s, "yes"))
738 return 1;
739
740 return 0;
741}
742#endif /* defined(CONFIG_PCI) */
Matthias Fuchs034394a2008-03-30 18:52:44 +0200743
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100744#if defined(CONFIG_POST)
745/*
746 * Returns 1 if keys pressed to start the power-on long-running tests
747 * Called from board_init_f().
748 */
749int post_hotkeys_pressed(void)
750{
751 return 0; /* No hotkeys supported */
752}
753#endif /* CONFIG_POST */
754
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100755#ifdef CONFIG_RESET_PHY_R
756void reset_phy(void)
757{
Matthias Fuchs5b67a142008-12-10 15:12:56 +0100758 char *s;
759 unsigned short val_method, val_behavior;
760
761 /* special LED setup for NGCC/CANDES */
762 if ((s = getenv("bd_type")) &&
763 ((!strcmp(s, "ngcc")) || (!strcmp(s, "candes")))) {
764 val_method = 0x0e0a;
765 val_behavior = 0x0cf2;
766 } else {
767 /* PMC440 standard type */
768 val_method = 0x0e10;
769 val_behavior = 0x0cf0;
770 }
771
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100772 if (miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x1f, 0x0001) == 0) {
773 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x11, 0x0010);
Matthias Fuchs5b67a142008-12-10 15:12:56 +0100774 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x11, val_behavior);
775 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x10, val_method);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100776 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x1f, 0x0000);
777 }
778
779 if (miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x1f, 0x0001) == 0) {
780 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x11, 0x0010);
Matthias Fuchs5b67a142008-12-10 15:12:56 +0100781 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x11, val_behavior);
782 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x10, val_method);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100783 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x1f, 0x0000);
784 }
785}
786#endif
787
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200788#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs034394a2008-03-30 18:52:44 +0200789/*
790 * Input: <dev_addr> I2C address of EEPROM device to enable.
791 * <state> -1: deliver current state
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100792 * 0: disable write
793 * 1: enable write
Matthias Fuchs034394a2008-03-30 18:52:44 +0200794 * Returns: -1: wrong device address
795 * 0: dis-/en- able done
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100796 * 0/1: current state if <state> was -1.
797 */
798int eeprom_write_enable(unsigned dev_addr, int state)
799{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200800 if ((CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) &&
801 (CONFIG_SYS_I2C_BOOT_EEPROM_ADDR != dev_addr)) {
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100802 return -1;
803 } else {
804 switch (state) {
805 case 1:
806 /* Enable write access, clear bit GPIO_SINT2. */
807 out32(GPIO0_OR, in32(GPIO0_OR) & ~GPIO0_EP_EEP);
808 state = 0;
809 break;
810 case 0:
811 /* Disable write access, set bit GPIO_SINT2. */
812 out32(GPIO0_OR, in32(GPIO0_OR) | GPIO0_EP_EEP);
813 state = 0;
814 break;
815 default:
816 /* Read current status back. */
817 state = (0 == (in32(GPIO0_OR) & GPIO0_EP_EEP));
818 break;
819 }
820 }
821 return state;
822}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200823#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100824
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200825#define CONFIG_SYS_BOOT_EEPROM_PAGE_WRITE_BITS 3
Matthias Fuchs034394a2008-03-30 18:52:44 +0200826int bootstrap_eeprom_write(unsigned dev_addr, unsigned offset,
827 uchar *buffer, unsigned cnt)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100828{
829 unsigned end = offset + cnt;
830 unsigned blk_off;
831 int rcode = 0;
832
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200833#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100834 eeprom_write_enable(dev_addr, 1);
835#endif
Matthias Fuchs034394a2008-03-30 18:52:44 +0200836 /*
837 * Write data until done or would cross a write page boundary.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100838 * We must write the address again when changing pages
839 * because the address counter only increments within a page.
840 */
841
842 while (offset < end) {
843 unsigned alen, len;
844 unsigned maxlen;
845 uchar addr[2];
846
847 blk_off = offset & 0xFF; /* block offset */
848
849 addr[0] = offset >> 8; /* block number */
850 addr[1] = blk_off; /* block offset */
851 alen = 2;
852 addr[0] |= dev_addr; /* insert device address */
853
854 len = end - offset;
855
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200856#define BOOT_EEPROM_PAGE_SIZE (1 << CONFIG_SYS_BOOT_EEPROM_PAGE_WRITE_BITS)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100857#define BOOT_EEPROM_PAGE_OFFSET(x) ((x) & (BOOT_EEPROM_PAGE_SIZE - 1))
858
Matthias Fuchs034394a2008-03-30 18:52:44 +0200859 maxlen = BOOT_EEPROM_PAGE_SIZE -
860 BOOT_EEPROM_PAGE_OFFSET(blk_off);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100861 if (maxlen > I2C_RXTX_LEN)
862 maxlen = I2C_RXTX_LEN;
863
864 if (len > maxlen)
865 len = maxlen;
866
867 if (i2c_write (addr[0], offset, alen-1, buffer, len) != 0)
868 rcode = 1;
869
870 buffer += len;
871 offset += len;
872
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200873#if defined(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
874 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100875#endif
876 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200877#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100878 eeprom_write_enable(dev_addr, 0);
879#endif
880 return rcode;
881}
882
Matthias Fuchs034394a2008-03-30 18:52:44 +0200883int bootstrap_eeprom_read (unsigned dev_addr, unsigned offset,
884 uchar *buffer, unsigned cnt)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100885{
886 unsigned end = offset + cnt;
887 unsigned blk_off;
888 int rcode = 0;
889
Matthias Fuchs034394a2008-03-30 18:52:44 +0200890 /*
891 * Read data until done or would cross a page boundary.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100892 * We must write the address again when changing pages
893 * because the next page may be in a different device.
894 */
895 while (offset < end) {
896 unsigned alen, len;
897 unsigned maxlen;
898 uchar addr[2];
899
900 blk_off = offset & 0xFF; /* block offset */
901
902 addr[0] = offset >> 8; /* block number */
903 addr[1] = blk_off; /* block offset */
904 alen = 2;
905
906 addr[0] |= dev_addr; /* insert device address */
907
908 len = end - offset;
909
910 maxlen = 0x100 - blk_off;
911 if (maxlen > I2C_RXTX_LEN)
912 maxlen = I2C_RXTX_LEN;
913 if (len > maxlen)
914 len = maxlen;
915
916 if (i2c_read (addr[0], offset, alen-1, buffer, len) != 0)
917 rcode = 1;
918 buffer += len;
919 offset += len;
920 }
921
922 return rcode;
923}
924
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200925#if defined(CONFIG_USB_OHCI_NEW) && defined(CONFIG_SYS_USB_OHCI_BOARD_INIT)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100926int usb_board_init(void)
927{
928 char *act = getenv("usbact");
929 int i;
930
Matthias Fuchsbe270792008-10-28 13:37:00 +0100931 if ((act == NULL || strcmp(act, "host") == 0) &&
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100932 !(in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT))
933 /* enable power on USB socket */
Matthias Fuchs034394a2008-03-30 18:52:44 +0200934 out_be32((void*)GPIO1_OR,
935 in_be32((void*)GPIO1_OR) & ~GPIO1_USB_PWR_N);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100936
937 for (i=0; i<1000; i++)
938 udelay(1000);
939
940 return 0;
941}
942
943int usb_board_stop(void)
944{
945 /* disable power on USB socket */
946 out_be32((void*)GPIO1_OR, in_be32((void*)GPIO1_OR) | GPIO1_USB_PWR_N);
947 return 0;
948}
949
950int usb_board_init_fail(void)
951{
952 usb_board_stop();
953 return 0;
954}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200955#endif /* defined(CONFIG_USB_OHCI) && defined(CONFIG_SYS_USB_OHCI_BOARD_INIT) */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100956
957#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
958void ft_board_setup(void *blob, bd_t *bd)
959{
960 int rc;
961
962 __ft_board_setup(blob, bd);
963
964 /*
965 * Disable PCI in non-monarch mode.
966 */
967 if (!is_monarch()) {
968 rc = fdt_find_and_setprop(blob, "/plb/pci@1ec000000", "status",
969 "disabled", sizeof("disabled"), 1);
970 if (rc) {
971 printf("Unable to update property status in PCI node, err=%s\n",
972 fdt_strerror(rc));
973 }
974 }
975}
976#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */