blob: 549b3b73ce1bd66a0d2d8f216571815c69b9a9a1 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020013 * SPDX-License-Identifier: GPL-2.0+
Matthias Fuchs72c5d522007-12-28 17:07:14 +010014 */
15
16#include <common.h>
17#include <libfdt.h>
18#include <fdt_support.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020019#include <asm/ppc440.h>
Matthias Fuchs72c5d522007-12-28 17:07:14 +010020#include <asm/processor.h>
21#include <asm/io.h>
Matthias Fuchs034394a2008-03-30 18:52:44 +020022#include <asm/bitops.h>
Matthias Fuchs72c5d522007-12-28 17:07:14 +010023#include <command.h>
24#include <i2c.h>
25#ifdef CONFIG_RESET_PHY_R
26#include <miiphy.h>
27#endif
28#include <serial.h>
Stefan Roese6c700492009-11-12 17:19:37 +010029#include <asm/4xx_pci.h>
30
Matthias Fuchs72c5d522007-12-28 17:07:14 +010031#include "fpga.h"
32#include "pmc440.h"
33
34DECLARE_GLOBAL_DATA_PTR;
35
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020036extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
Matthias Fuchsbe270792008-10-28 13:37:00 +010037extern void __ft_board_setup(void *blob, bd_t *bd);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010038
39ulong flash_get_size(ulong base, int banknum);
40int pci_is_66mhz(void);
Matthias Fuchsbe270792008-10-28 13:37:00 +010041int is_monarch(void);
Matthias Fuchs034394a2008-03-30 18:52:44 +020042int bootstrap_eeprom_read(unsigned dev_addr, unsigned offset,
43 uchar *buffer, unsigned cnt);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010044
45struct serial_device *default_serial_console(void)
46{
47 uchar buf[4];
48 ulong delay;
49 int i;
50 ulong val;
51
52 /*
53 * Use default console on P4 when strapping jumper
54 * is installed (bootstrap option != 'H').
55 */
Stefan Roesed1c3b272009-09-09 16:25:29 +020056 mfsdr(SDR0_PINSTP, val);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010057 if (((val & 0xf0000000) >> 29) != 7)
Stefan Roese550650d2010-09-20 16:05:31 +020058 return &eserial2_device;
Matthias Fuchs72c5d522007-12-28 17:07:14 +010059
60 ulong scratchreg = in_be32((void*)GPIO0_ISR3L);
61 if (!(scratchreg & 0x80)) {
62 /* mark scratchreg valid */
63 scratchreg = (scratchreg & 0xffffff00) | 0x80;
64
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 i = bootstrap_eeprom_read(CONFIG_SYS_I2C_BOOT_EEPROM_ADDR,
Matthias Fuchs034394a2008-03-30 18:52:44 +020066 0x10, buf, 4);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010067 if ((i != -1) && (buf[0] == 0x19) && (buf[1] == 0x75)) {
68 scratchreg |= buf[2];
69
70 /* bringup delay for console */
71 for (delay=0; delay<(1000 * (ulong)buf[3]); delay++) {
72 udelay(1000);
73 }
74 } else
75 scratchreg |= 0x01;
76 out_be32((void*)GPIO0_ISR3L, scratchreg);
77 }
78
79 if (scratchreg & 0x01)
Stefan Roese550650d2010-09-20 16:05:31 +020080 return &eserial2_device;
Matthias Fuchs72c5d522007-12-28 17:07:14 +010081 else
Stefan Roese550650d2010-09-20 16:05:31 +020082 return &eserial1_device;
Matthias Fuchs72c5d522007-12-28 17:07:14 +010083}
84
85int board_early_init_f(void)
86{
87 u32 sdr0_cust0;
88 u32 sdr0_pfc1, sdr0_pfc2;
89 u32 reg;
90
91 /* general EBC configuration (disable EBC timeouts) */
Stefan Roesed1c3b272009-09-09 16:25:29 +020092 mtdcr(EBC0_CFGADDR, EBC0_CFG);
93 mtdcr(EBC0_CFGDATA, 0xf8400000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +010094
Matthias Fuchs034394a2008-03-30 18:52:44 +020095 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +010096 * Setup the GPIO pins
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097 * TODO: setup GPIOs via CONFIG_SYS_4xx_GPIO_TABLE in board's config file
Matthias Fuchs034394a2008-03-30 18:52:44 +020098 */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +010099 out_be32((void *)GPIO0_OR, 0x40000102);
100 out_be32((void *)GPIO0_TCR, 0x4c90011f);
101 out_be32((void *)GPIO0_OSRL, 0x28051400);
102 out_be32((void *)GPIO0_OSRH, 0x55005000);
103 out_be32((void *)GPIO0_TSRL, 0x08051400);
104 out_be32((void *)GPIO0_TSRH, 0x55005000);
105 out_be32((void *)GPIO0_ISR1L, 0x54000000);
106 out_be32((void *)GPIO0_ISR1H, 0x00000000);
107 out_be32((void *)GPIO0_ISR2L, 0x44000000);
108 out_be32((void *)GPIO0_ISR2H, 0x00000100);
109 out_be32((void *)GPIO0_ISR3L, 0x00000000);
110 out_be32((void *)GPIO0_ISR3H, 0x00000000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100111
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100112 out_be32((void *)GPIO1_OR, 0x80002408);
113 out_be32((void *)GPIO1_TCR, 0xd6003c08);
114 out_be32((void *)GPIO1_OSRL, 0x0a5a0000);
115 out_be32((void *)GPIO1_OSRH, 0x00000000);
116 out_be32((void *)GPIO1_TSRL, 0x00000000);
117 out_be32((void *)GPIO1_TSRH, 0x00000000);
118 out_be32((void *)GPIO1_ISR1L, 0x00005555);
119 out_be32((void *)GPIO1_ISR1H, 0x40000000);
120 out_be32((void *)GPIO1_ISR2L, 0x04010000);
121 out_be32((void *)GPIO1_ISR2H, 0x00000000);
122 out_be32((void *)GPIO1_ISR3L, 0x01400000);
123 out_be32((void *)GPIO1_ISR3H, 0x00000000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100124
125 /* patch PLB:PCI divider for 66MHz PCI */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200126 mfcpr(CPR0_SPCID, reg);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100127 if (pci_is_66mhz() && (reg != 0x02000000)) {
Stefan Roesed1c3b272009-09-09 16:25:29 +0200128 mtcpr(CPR0_SPCID, 0x02000000); /* 133MHZ : 2 for 66MHz PCI */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100129
Stefan Roesed1c3b272009-09-09 16:25:29 +0200130 mfcpr(CPR0_ICFG, reg);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100131 reg |= CPR0_ICFG_RLI_MASK;
Stefan Roesed1c3b272009-09-09 16:25:29 +0200132 mtcpr(CPR0_ICFG, reg);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100133
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200134 mtspr(SPRN_DBCR0, 0x20000000); /* do chip reset */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100135 }
136
Matthias Fuchs034394a2008-03-30 18:52:44 +0200137 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100138 * Setup the interrupt controller polarities, triggers, etc.
Matthias Fuchs034394a2008-03-30 18:52:44 +0200139 */
Stefan Roese952e7762009-09-24 09:55:50 +0200140 mtdcr(UIC0SR, 0xffffffff); /* clear all */
141 mtdcr(UIC0ER, 0x00000000); /* disable all */
142 mtdcr(UIC0CR, 0x00000005); /* ATI & UIC1 crit are critical */
143 mtdcr(UIC0PR, 0xfffff7ef);
144 mtdcr(UIC0TR, 0x00000000);
145 mtdcr(UIC0VR, 0x00000000); /* int31 highest, base=0x000 */
146 mtdcr(UIC0SR, 0xffffffff); /* clear all */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100147
Stefan Roese952e7762009-09-24 09:55:50 +0200148 mtdcr(UIC1SR, 0xffffffff); /* clear all */
149 mtdcr(UIC1ER, 0x00000000); /* disable all */
150 mtdcr(UIC1CR, 0x00000000); /* all non-critical */
151 mtdcr(UIC1PR, 0xffffc7f5);
152 mtdcr(UIC1TR, 0x00000000);
153 mtdcr(UIC1VR, 0x00000000); /* int31 highest, base=0x000 */
154 mtdcr(UIC1SR, 0xffffffff); /* clear all */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100155
Stefan Roese952e7762009-09-24 09:55:50 +0200156 mtdcr(UIC2SR, 0xffffffff); /* clear all */
157 mtdcr(UIC2ER, 0x00000000); /* disable all */
158 mtdcr(UIC2CR, 0x00000000); /* all non-critical */
159 mtdcr(UIC2PR, 0x27ffffff);
160 mtdcr(UIC2TR, 0x00000000);
161 mtdcr(UIC2VR, 0x00000000); /* int31 highest, base=0x000 */
162 mtdcr(UIC2SR, 0xffffffff); /* clear all */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100163
164 /* select Ethernet pins */
165 mfsdr(SDR0_PFC1, sdr0_pfc1);
Matthias Fuchs034394a2008-03-30 18:52:44 +0200166 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SELECT_MASK) |
167 SDR0_PFC1_SELECT_CONFIG_4;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100168 mfsdr(SDR0_PFC2, sdr0_pfc2);
Matthias Fuchs034394a2008-03-30 18:52:44 +0200169 sdr0_pfc2 = (sdr0_pfc2 & ~SDR0_PFC2_SELECT_MASK) |
170 SDR0_PFC2_SELECT_CONFIG_4;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100171
172 /* enable 2nd IIC */
173 sdr0_pfc1 = (sdr0_pfc1 & ~SDR0_PFC1_SIS_MASK) | SDR0_PFC1_SIS_IIC1_SEL;
174
175 mtsdr(SDR0_PFC2, sdr0_pfc2);
176 mtsdr(SDR0_PFC1, sdr0_pfc1);
177
178 /* setup NAND FLASH */
179 mfsdr(SDR0_CUST0, sdr0_cust0);
180 sdr0_cust0 = SDR0_CUST0_MUX_NDFC_SEL |
181 SDR0_CUST0_NDFC_ENABLE |
182 SDR0_CUST0_NDFC_BW_8_BIT |
183 SDR0_CUST0_NDFC_ARE_MASK |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184 (0x80000000 >> (28 + CONFIG_SYS_NAND_CS));
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100185 mtsdr(SDR0_CUST0, sdr0_cust0);
186
187 return 0;
188}
189
Matthias Fuchsbe270792008-10-28 13:37:00 +0100190#if defined(CONFIG_MISC_INIT_F)
191int misc_init_f(void)
192{
193 struct pci_controller hose;
194 hose.first_busno = 0;
195 hose.last_busno = 0;
196 hose.region_count = 0;
197
198 if (getenv("pciearly") && (!is_monarch())) {
199 printf("PCI: early target init\n");
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200200 pci_setup_indirect(&hose, PCIL0_CFGADR, PCIL0_CFGDATA);
Matthias Fuchsbe270792008-10-28 13:37:00 +0100201 pci_target_init(&hose);
202 }
203 return 0;
204}
205#endif
206
Matthias Fuchs034394a2008-03-30 18:52:44 +0200207/*
208 * misc_init_r.
209 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100210int misc_init_r(void)
211{
212 uint pbcr;
213 int size_val = 0;
214 u32 reg;
215 unsigned long usb2d0cr = 0;
216 unsigned long usb2phy0cr, usb2h0cr = 0;
217 unsigned long sdr0_pfc1;
Matthias Fuchsbe270792008-10-28 13:37:00 +0100218 unsigned long sdr0_srst0, sdr0_srst1;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100219 char *act = getenv("usbact");
220
221 /*
222 * FLASH stuff...
223 */
224
225 /* Re-do sizing to get full correct info */
226
227 /* adjust flash start and offset */
228 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
229 gd->bd->bi_flashoffset = 0;
230
231#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200232 mtdcr(EBC0_CFGADDR, PB2CR);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100233#else
Stefan Roesed1c3b272009-09-09 16:25:29 +0200234 mtdcr(EBC0_CFGADDR, PB0CR);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100235#endif
Stefan Roesed1c3b272009-09-09 16:25:29 +0200236 pbcr = mfdcr(EBC0_CFGDATA);
Matthias Fuchs034394a2008-03-30 18:52:44 +0200237 size_val = ffs(gd->bd->bi_flashsize) - 21;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100238 pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
239#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200240 mtdcr(EBC0_CFGADDR, PB2CR);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100241#else
Stefan Roesed1c3b272009-09-09 16:25:29 +0200242 mtdcr(EBC0_CFGADDR, PB0CR);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100243#endif
Stefan Roesed1c3b272009-09-09 16:25:29 +0200244 mtdcr(EBC0_CFGDATA, pbcr);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100245
246 /*
247 * Re-check to get correct base address
248 */
249 flash_get_size(gd->bd->bi_flashstart, 0);
250
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200251#ifdef CONFIG_ENV_IS_IN_FLASH
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100252 /* Monitor protection ON by default */
253 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200254 -CONFIG_SYS_MONITOR_LEN,
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100255 0xffffffff,
256 &flash_info[0]);
257
258 /* Env protection ON by default */
259 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200260 CONFIG_ENV_ADDR_REDUND,
261 CONFIG_ENV_ADDR_REDUND + 2*CONFIG_ENV_SECT_SIZE - 1,
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100262 &flash_info[0]);
263#endif
264
265 /*
266 * USB suff...
267 */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100268 if ((act == NULL || strcmp(act, "host") == 0) &&
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100269 !(in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT)){
270 /* SDR Setting */
271 mfsdr(SDR0_PFC1, sdr0_pfc1);
272 mfsdr(SDR0_USB2D0CR, usb2d0cr);
273 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
274 mfsdr(SDR0_USB2H0CR, usb2h0cr);
275
276 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200277 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100278 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200279 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_16BIT_30MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100280 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200281 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100282 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200283 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100284 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200285 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100286
Matthias Fuchs034394a2008-03-30 18:52:44 +0200287 /*
288 * An 8-bit/60MHz interface is the only possible alternative
289 * when connecting the Device to the PHY
290 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100291 usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200292 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_16BIT_30MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100293
294 usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK;
295 sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK;
296
297 mtsdr(SDR0_PFC1, sdr0_pfc1);
298 mtsdr(SDR0_USB2D0CR, usb2d0cr);
299 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
300 mtsdr(SDR0_USB2H0CR, usb2h0cr);
301
Matthias Fuchsbe270792008-10-28 13:37:00 +0100302 /*
303 * Take USB out of reset:
304 * -Initial status = all cores are in reset
305 * -deassert reset to OPB1, P4OPB0, OPB2, PLB42OPB1 OPB2PLB40 cores
306 * -wait 1 ms
307 * -deassert reset to PHY
308 * -wait 1 ms
309 * -deassert reset to HOST
310 * -wait 4 ms
311 * -deassert all other resets
312 */
313 mfsdr(SDR0_SRST1, sdr0_srst1);
314 sdr0_srst1 &= ~(SDR0_SRST1_OPBA1 | \
315 SDR0_SRST1_P4OPB0 | \
316 SDR0_SRST1_OPBA2 | \
317 SDR0_SRST1_PLB42OPB1 | \
318 SDR0_SRST1_OPB2PLB40);
319 mtsdr(SDR0_SRST1, sdr0_srst1);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100320 udelay(1000);
Matthias Fuchsbe270792008-10-28 13:37:00 +0100321
322 mfsdr(SDR0_SRST1, sdr0_srst1);
323 sdr0_srst1 &= ~SDR0_SRST1_USB20PHY;
324 mtsdr(SDR0_SRST1, sdr0_srst1);
325 udelay(1000);
326
327 mfsdr(SDR0_SRST0, sdr0_srst0);
328 sdr0_srst0 &= ~SDR0_SRST0_USB2H;
329 mtsdr(SDR0_SRST0, sdr0_srst0);
330 udelay(4000);
331
332 /* finally all the other resets */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100333 mtsdr(SDR0_SRST1, 0x00000000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100334 mtsdr(SDR0_SRST0, 0x00000000);
335
Matthias Fuchsbe270792008-10-28 13:37:00 +0100336 if (!(in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT)) {
337 /* enable power on USB socket */
338 out_be32((void*)GPIO1_OR,
339 in_be32((void*)GPIO1_OR) & ~GPIO1_USB_PWR_N);
340 }
341
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100342 printf("USB: Host\n");
343
Matthias Fuchs034394a2008-03-30 18:52:44 +0200344 } else if ((strcmp(act, "dev") == 0) ||
345 (in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT)) {
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100346 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
347
348 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200349 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100350 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200351 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100352 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200353 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100354 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200355 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100356 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
357
358 udelay (1000);
359 mtsdr(SDR0_SRST1, 0x672c6000);
360
361 udelay (1000);
362 mtsdr(SDR0_SRST0, 0x00000080);
363
364 udelay (1000);
365 mtsdr(SDR0_SRST1, 0x60206000);
366
367 *(unsigned int *)(0xe0000350) = 0x00000001;
368
369 udelay (1000);
370 mtsdr(SDR0_SRST1, 0x60306000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100371
372 /* SDR Setting */
373 mfsdr(SDR0_USB2PHY0CR, usb2phy0cr);
374 mfsdr(SDR0_USB2H0CR, usb2h0cr);
375 mfsdr(SDR0_USB2D0CR, usb2d0cr);
376 mfsdr(SDR0_PFC1, sdr0_pfc1);
377
378 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200379 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100380 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200381 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_8BIT_60MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100382 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200383 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PUREN;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100384 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200385 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_DEV;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100386 usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200387 usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_DEV;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100388
389 usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200390 usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_8BIT_60MHZ;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100391
392 usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK;
393
394 sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK;
Matthias Fuchs034394a2008-03-30 18:52:44 +0200395 sdr0_pfc1 = sdr0_pfc1 | SDR0_PFC1_UES_EBCHR_SEL;
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100396
397 mtsdr(SDR0_USB2H0CR, usb2h0cr);
398 mtsdr(SDR0_USB2PHY0CR, usb2phy0cr);
399 mtsdr(SDR0_USB2D0CR, usb2d0cr);
400 mtsdr(SDR0_PFC1, sdr0_pfc1);
401
402 /*clear resets*/
403 udelay(1000);
404 mtsdr(SDR0_SRST1, 0x00000000);
405 udelay(1000);
406 mtsdr(SDR0_SRST0, 0x00000000);
407
408 printf("USB: Device\n");
409 }
410
411 /*
412 * Clear PLB4A0_ACR[WRP]
413 * This fix will make the MAL burst disabling patch for the Linux
414 * EMAC driver obsolete.
415 */
Stefan Roese5e7abce2010-09-11 09:31:43 +0200416 reg = mfdcr(PLB4A0_ACR) & ~PLB4Ax_ACR_WRP_MASK;
417 mtdcr(PLB4A0_ACR, reg);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100418
419#ifdef CONFIG_FPGA
420 pmc440_init_fpga();
421#endif
422
423 /* turn off POST LED */
424 out_be32((void*)GPIO1_OR, in_be32((void*)GPIO1_OR) & ~GPIO1_POST_N);
425 /* turn on RUN LED */
426 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~GPIO0_LED_RUN_N);
427 return 0;
428}
429
430int is_monarch(void)
431{
432 if (in_be32((void*)GPIO1_IR) & GPIO1_NONMONARCH)
433 return 0;
434
435 return 1;
436}
437
438int pci_is_66mhz(void)
439{
440 if (in_be32((void*)GPIO1_IR) & GPIO1_M66EN)
441 return 1;
442 return 0;
443}
444
445int board_revision(void)
446{
447 return (int)((in_be32((void*)GPIO1_IR) & GPIO1_HWID_MASK) >> 4);
448}
449
450int checkboard(void)
451{
452 puts("Board: esd GmbH - PMC440");
453
454 gd->board_type = board_revision();
455 printf(", Rev 1.%ld, ", gd->board_type);
456
457 if (!is_monarch()) {
458 puts("non-");
459 }
460
461 printf("monarch, PCI=%s MHz\n", pci_is_66mhz() ? "66" : "33");
462 return (0);
463}
464
465
466#if defined(CONFIG_PCI) && defined(CONFIG_PCI_PNP)
467/*
468 * Assign interrupts to PCI devices. Some OSs rely on this.
469 */
Stefan Roesea760b022009-11-12 16:41:09 +0100470void board_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100471{
472 unsigned char int_line[] = {IRQ_PCIC, IRQ_PCID, IRQ_PCIA, IRQ_PCIB};
473
474 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
475 int_line[PCI_DEV(dev) & 0x03]);
476}
477#endif
478
Matthias Fuchs034394a2008-03-30 18:52:44 +0200479/*
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200480 * pci_target_init
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100481 *
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200482 * The bootstrap configuration provides default settings for the pci
483 * inbound map (PIM). But the bootstrap config choices are limited and
484 * may not be sufficient for a given board.
485 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200486#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100487void pci_target_init(struct pci_controller *hose)
488{
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200489 char *ptmla_str, *ptmms_str;
490
491 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100492 * Set up Direct MMIO registers
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200493 */
494 /*
495 * PowerPC440EPX PCI Master configuration.
496 * Map one 1Gig range of PLB/processor addresses to PCI memory space.
497 * PLB address 0x80000000-0xBFFFFFFF
498 * ==> PCI address 0x80000000-0xBFFFFFFF
499 * Use byte reversed out routines to handle endianess.
500 * Make this region non-prefetchable.
501 */
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200502 out32r(PCIL0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200503 /* - disabled b4 setting */
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200504 out32r(PCIL0_PMM0LA, CONFIG_SYS_PCI_MEMBASE); /* PMM0 Local Address */
505 out32r(PCIL0_PMM0PCILA, CONFIG_SYS_PCI_MEMBASE); /* PMM0 PCI Low Address */
506 out32r(PCIL0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
507 out32r(PCIL0_PMM0MA, 0xc0000001); /* 1G + No prefetching, */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200508 /* and enable region */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100509
510 if (!is_monarch()) {
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200511 ptmla_str = getenv("ptm1la");
512 ptmms_str = getenv("ptm1ms");
513 if(NULL != ptmla_str && NULL != ptmms_str ) {
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200514 out32r(PCIL0_PTM1MS,
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200515 simple_strtoul(ptmms_str, NULL, 16));
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200516 out32r(PCIL0_PTM1LA,
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200517 simple_strtoul(ptmla_str, NULL, 16));
518 } else {
519 /* BAR1: default top 64MB of RAM */
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200520 out32r(PCIL0_PTM1MS, 0xfc000001);
521 out32r(PCIL0_PTM1LA, 0x0c000000);
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200522 }
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100523 } else {
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200524 /* BAR1: default: complete 256MB RAM */
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200525 out32r(PCIL0_PTM1MS, 0xf0000001);
526 out32r(PCIL0_PTM1LA, 0x00000000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100527 }
528
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200529 ptmla_str = getenv("ptm2la"); /* Local Addr. Reg */
530 ptmms_str = getenv("ptm2ms"); /* Memory Size/Attribute */
531 if(NULL != ptmla_str && NULL != ptmms_str ) {
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200532 out32r(PCIL0_PTM2MS, simple_strtoul(ptmms_str, NULL, 16));
533 out32r(PCIL0_PTM2LA, simple_strtoul(ptmla_str, NULL, 16));
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200534 } else {
Matthias Fuchsbe270792008-10-28 13:37:00 +0100535 /* BAR2: default: 4MB FPGA */
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200536 out32r(PCIL0_PTM2MS, 0xffc00001); /* Memory Size/Attribute */
537 out32r(PCIL0_PTM2LA, 0xef000000); /* Local Addr. Reg */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200538 }
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100539
540 if (is_monarch()) {
541 /* BAR2: map FPGA registers behind system memory at 1GB */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100542 pci_hose_write_config_dword(hose, 0, PCI_BASE_ADDRESS_2, 0x40000008);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100543 }
544
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200545 /*
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100546 * Set up Configuration registers
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200547 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100548
549 /* Program the board's vendor id */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100550 pci_hose_write_config_word(hose, 0, PCI_SUBSYSTEM_VENDOR_ID,
551 CONFIG_SYS_PCI_SUBSYS_VENDORID);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100552
Stefan Roese02e38922008-03-31 12:20:48 +0200553 /* disabled for PMC405 backward compatibility */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100554 /* Configure command register as bus master */
Matthias Fuchs034394a2008-03-30 18:52:44 +0200555 /* pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER); */
556
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100557
558 /* 240nS PCI clock */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100559 pci_hose_write_config_word(hose, 0, PCI_LATENCY_TIMER, 1);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100560
561 /* No error reporting */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100562 pci_hose_write_config_word(hose, 0, PCI_ERREN, 0);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100563
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100564 if (!is_monarch()) {
565 /* Program the board's subsystem id/classcode */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100566 pci_hose_write_config_word(hose, 0, PCI_SUBSYSTEM_ID,
567 CONFIG_SYS_PCI_SUBSYS_ID_NONMONARCH);
568 pci_hose_write_config_word(hose, 0, PCI_CLASS_SUB_CODE,
569 CONFIG_SYS_PCI_CLASSCODE_NONMONARCH);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100570
571 /* PCI configuration done: release ERREADY */
Matthias Fuchsa6cc6c32008-03-30 18:52:06 +0200572 out_be32((void*)GPIO1_OR,
573 in_be32((void*)GPIO1_OR) | GPIO1_PPC_EREADY);
574 out_be32((void*)GPIO1_TCR,
575 in_be32((void*)GPIO1_TCR) | GPIO1_PPC_EREADY);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100576 } else {
577 /* Program the board's subsystem id/classcode */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100578 pci_hose_write_config_word(hose, 0, PCI_SUBSYSTEM_ID,
579 CONFIG_SYS_PCI_SUBSYS_ID_MONARCH);
580 pci_hose_write_config_word(hose, 0, PCI_CLASS_SUB_CODE,
581 CONFIG_SYS_PCI_CLASSCODE_MONARCH);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100582 }
Matthias Fuchsbe270792008-10-28 13:37:00 +0100583
584 /* enable host configuration */
585 pci_hose_write_config_dword(hose, 0, PCI_BRDGOPT2, 0x00000101);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100586}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200587#endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT) */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100588
Matthias Fuchs034394a2008-03-30 18:52:44 +0200589/*
Stefan Roese6c700492009-11-12 17:19:37 +0100590 * Override weak default pci_master_init()
Matthias Fuchs034394a2008-03-30 18:52:44 +0200591 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200592#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100593void pci_master_init(struct pci_controller *hose)
594{
Matthias Fuchs034394a2008-03-30 18:52:44 +0200595 /*
Stefan Roese6c700492009-11-12 17:19:37 +0100596 * Only configure the master in monach mode
Matthias Fuchs034394a2008-03-30 18:52:44 +0200597 */
Stefan Roese6c700492009-11-12 17:19:37 +0100598 if (is_monarch())
599 __pci_master_init(hose);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100600}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200601#endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT) */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100602
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100603static void wait_for_pci_ready(void)
604{
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100605 if (!(in_be32((void*)GPIO1_IR) & GPIO1_PPC_EREADY)) {
606 printf("PCI: Waiting for EREADY (CTRL-C to skip) ... ");
607 while (1) {
608 if (ctrlc()) {
609 puts("abort\n");
610 break;
611 }
612 if (in_be32((void*)GPIO1_IR) & GPIO1_PPC_EREADY) {
613 printf("done\n");
614 break;
615 }
616 }
617 }
618}
619
Matthias Fuchs034394a2008-03-30 18:52:44 +0200620/*
Stefan Roese9a81c612009-10-29 16:54:52 +0100621 * Override weak is_pci_host()
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100622 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200623 * This routine is called to determine if a pci scan should be
624 * performed. With various hardware environments (especially cPCI and
625 * PPMC) it's insufficient to depend on the state of the arbiter enable
626 * bit in the strap register, or generic host/adapter assumptions.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100627 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200628 * Rather than hard-code a bad assumption in the general 440 code, the
629 * 440 pci code requires the board to decide at runtime.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100630 *
Matthias Fuchs034394a2008-03-30 18:52:44 +0200631 * Return 0 for adapter mode, non-zero for host (monarch) mode.
632 */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100633#if defined(CONFIG_PCI)
634int is_pci_host(struct pci_controller *hose)
635{
636 char *s = getenv("pciscan");
637 if (s == NULL)
638 if (is_monarch()) {
639 wait_for_pci_ready();
640 return 1;
641 } else
642 return 0;
643 else if (!strcmp(s, "yes"))
644 return 1;
645
646 return 0;
647}
648#endif /* defined(CONFIG_PCI) */
Matthias Fuchs034394a2008-03-30 18:52:44 +0200649
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100650#ifdef CONFIG_RESET_PHY_R
651void reset_phy(void)
652{
Matthias Fuchs5b67a142008-12-10 15:12:56 +0100653 char *s;
654 unsigned short val_method, val_behavior;
655
656 /* special LED setup for NGCC/CANDES */
657 if ((s = getenv("bd_type")) &&
658 ((!strcmp(s, "ngcc")) || (!strcmp(s, "candes")))) {
659 val_method = 0x0e0a;
660 val_behavior = 0x0cf2;
661 } else {
662 /* PMC440 standard type */
663 val_method = 0x0e10;
664 val_behavior = 0x0cf0;
665 }
666
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100667 if (miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x1f, 0x0001) == 0) {
668 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x11, 0x0010);
Matthias Fuchs5b67a142008-12-10 15:12:56 +0100669 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x11, val_behavior);
670 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x10, val_method);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100671 miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x1f, 0x0000);
672 }
673
674 if (miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x1f, 0x0001) == 0) {
675 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x11, 0x0010);
Matthias Fuchs5b67a142008-12-10 15:12:56 +0100676 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x11, val_behavior);
677 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x10, val_method);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100678 miiphy_write("ppc_4xx_eth1", CONFIG_PHY1_ADDR, 0x1f, 0x0000);
679 }
680}
681#endif
682
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200683#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs034394a2008-03-30 18:52:44 +0200684/*
685 * Input: <dev_addr> I2C address of EEPROM device to enable.
686 * <state> -1: deliver current state
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100687 * 0: disable write
688 * 1: enable write
Matthias Fuchs034394a2008-03-30 18:52:44 +0200689 * Returns: -1: wrong device address
690 * 0: dis-/en- able done
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100691 * 0/1: current state if <state> was -1.
692 */
693int eeprom_write_enable(unsigned dev_addr, int state)
694{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200695 if ((CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) &&
696 (CONFIG_SYS_I2C_BOOT_EEPROM_ADDR != dev_addr)) {
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100697 return -1;
698 } else {
699 switch (state) {
700 case 1:
701 /* Enable write access, clear bit GPIO_SINT2. */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100702 out_be32((void *)GPIO0_OR,
703 in_be32((void *)GPIO0_OR) & ~GPIO0_EP_EEP);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100704 state = 0;
705 break;
706 case 0:
707 /* Disable write access, set bit GPIO_SINT2. */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100708 out_be32((void *)GPIO0_OR,
709 in_be32((void *)GPIO0_OR) | GPIO0_EP_EEP);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100710 state = 0;
711 break;
712 default:
713 /* Read current status back. */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100714 state = (0 == (in_be32((void *)GPIO0_OR)
715 & GPIO0_EP_EEP));
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100716 break;
717 }
718 }
719 return state;
720}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200721#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100722
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200723#define CONFIG_SYS_BOOT_EEPROM_PAGE_WRITE_BITS 3
Matthias Fuchs034394a2008-03-30 18:52:44 +0200724int bootstrap_eeprom_write(unsigned dev_addr, unsigned offset,
725 uchar *buffer, unsigned cnt)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100726{
727 unsigned end = offset + cnt;
728 unsigned blk_off;
729 int rcode = 0;
730
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200731#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100732 eeprom_write_enable(dev_addr, 1);
733#endif
Matthias Fuchs034394a2008-03-30 18:52:44 +0200734 /*
735 * Write data until done or would cross a write page boundary.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100736 * We must write the address again when changing pages
737 * because the address counter only increments within a page.
738 */
739
740 while (offset < end) {
741 unsigned alen, len;
742 unsigned maxlen;
743 uchar addr[2];
744
745 blk_off = offset & 0xFF; /* block offset */
746
747 addr[0] = offset >> 8; /* block number */
748 addr[1] = blk_off; /* block offset */
749 alen = 2;
750 addr[0] |= dev_addr; /* insert device address */
751
752 len = end - offset;
753
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200754#define BOOT_EEPROM_PAGE_SIZE (1 << CONFIG_SYS_BOOT_EEPROM_PAGE_WRITE_BITS)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100755#define BOOT_EEPROM_PAGE_OFFSET(x) ((x) & (BOOT_EEPROM_PAGE_SIZE - 1))
756
Matthias Fuchs034394a2008-03-30 18:52:44 +0200757 maxlen = BOOT_EEPROM_PAGE_SIZE -
758 BOOT_EEPROM_PAGE_OFFSET(blk_off);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100759 if (maxlen > I2C_RXTX_LEN)
760 maxlen = I2C_RXTX_LEN;
761
762 if (len > maxlen)
763 len = maxlen;
764
765 if (i2c_write (addr[0], offset, alen-1, buffer, len) != 0)
766 rcode = 1;
767
768 buffer += len;
769 offset += len;
770
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200771#if defined(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
772 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100773#endif
774 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200775#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100776 eeprom_write_enable(dev_addr, 0);
777#endif
778 return rcode;
779}
780
Matthias Fuchs034394a2008-03-30 18:52:44 +0200781int bootstrap_eeprom_read (unsigned dev_addr, unsigned offset,
782 uchar *buffer, unsigned cnt)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100783{
784 unsigned end = offset + cnt;
785 unsigned blk_off;
786 int rcode = 0;
787
Matthias Fuchs034394a2008-03-30 18:52:44 +0200788 /*
789 * Read data until done or would cross a page boundary.
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100790 * We must write the address again when changing pages
791 * because the next page may be in a different device.
792 */
793 while (offset < end) {
794 unsigned alen, len;
795 unsigned maxlen;
796 uchar addr[2];
797
798 blk_off = offset & 0xFF; /* block offset */
799
800 addr[0] = offset >> 8; /* block number */
801 addr[1] = blk_off; /* block offset */
802 alen = 2;
803
804 addr[0] |= dev_addr; /* insert device address */
805
806 len = end - offset;
807
808 maxlen = 0x100 - blk_off;
809 if (maxlen > I2C_RXTX_LEN)
810 maxlen = I2C_RXTX_LEN;
811 if (len > maxlen)
812 len = maxlen;
813
814 if (i2c_read (addr[0], offset, alen-1, buffer, len) != 0)
815 rcode = 1;
816 buffer += len;
817 offset += len;
818 }
819
820 return rcode;
821}
822
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200823#if defined(CONFIG_USB_OHCI_NEW) && defined(CONFIG_SYS_USB_OHCI_BOARD_INIT)
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100824int usb_board_init(void)
825{
826 char *act = getenv("usbact");
827 int i;
828
Matthias Fuchsbe270792008-10-28 13:37:00 +0100829 if ((act == NULL || strcmp(act, "host") == 0) &&
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100830 !(in_be32((void*)GPIO0_IR) & GPIO0_USB_PRSNT))
831 /* enable power on USB socket */
Matthias Fuchs034394a2008-03-30 18:52:44 +0200832 out_be32((void*)GPIO1_OR,
833 in_be32((void*)GPIO1_OR) & ~GPIO1_USB_PWR_N);
Matthias Fuchs72c5d522007-12-28 17:07:14 +0100834
835 for (i=0; i<1000; i++)
836 udelay(1000);
837
838 return 0;
839}
840
841int usb_board_stop(void)
842{
843 /* disable power on USB socket */
844 out_be32((void*)GPIO1_OR, in_be32((void*)GPIO1_OR) | GPIO1_USB_PWR_N);
845 return 0;
846}
847
848int usb_board_init_fail(void)
849{
850 usb_board_stop();
851 return 0;
852}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200853#endif /* defined(CONFIG_USB_OHCI) && defined(CONFIG_SYS_USB_OHCI_BOARD_INIT) */
Matthias Fuchsbe270792008-10-28 13:37:00 +0100854
855#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
856void ft_board_setup(void *blob, bd_t *bd)
857{
858 int rc;
859
860 __ft_board_setup(blob, bd);
861
862 /*
863 * Disable PCI in non-monarch mode.
864 */
865 if (!is_monarch()) {
866 rc = fdt_find_and_setprop(blob, "/plb/pci@1ec000000", "status",
867 "disabled", sizeof("disabled"), 1);
868 if (rc) {
869 printf("Unable to update property status in PCI node, err=%s\n",
870 fdt_strerror(rc));
871 }
872 }
873}
874#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */