blob: 982d8571e7b55f7accc97ed7e6217da76f518f31 [file] [log] [blame]
Stefan Roesec157d8e2005-08-01 16:41:48 +02001/*
2 *
3 * See file CREDITS for list of people who contributed to this
4 * project.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 * MA 02111-1307 USA
20 */
21
22#include <common.h>
Stefan Roese34c0a5e2005-09-15 11:34:07 +020023#include <ppc4xx.h>
Stefan Roesec157d8e2005-08-01 16:41:48 +020024#include <asm/processor.h>
25#include <spd_sdram.h>
26
Stefan Roese34c0a5e2005-09-15 11:34:07 +020027extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
28
Stefan Roesec157d8e2005-08-01 16:41:48 +020029int board_early_init_f(void)
30{
31 register uint reg;
32
33 /*--------------------------------------------------------------------
34 * Setup the external bus controller/chip selects
35 *-------------------------------------------------------------------*/
36 mtdcr(ebccfga, xbcfg);
37 reg = mfdcr(ebccfgd);
38 mtdcr(ebccfgd, reg | 0x04000000); /* Set ATC */
39
40 mtebc(pb0ap, 0x03017300); /* FLASH/SRAM */
Stefan Roese34c0a5e2005-09-15 11:34:07 +020041 mtebc(pb0cr, 0xfc0da000); /* BAS=0xfc0 64MB r/w 16-bit */
Stefan Roesec157d8e2005-08-01 16:41:48 +020042
43 mtebc(pb1ap, 0x00000000);
44 mtebc(pb1cr, 0x00000000);
45
46 mtebc(pb2ap, 0x04814500);
47 /*CPLD*/ mtebc(pb2cr, 0x80018000); /*BAS=0x800 1MB r/w 8-bit */
48
49 mtebc(pb3ap, 0x00000000);
50 mtebc(pb3cr, 0x00000000);
51
52 mtebc(pb4ap, 0x00000000);
53 mtebc(pb4cr, 0x00000000);
54
55 mtebc(pb5ap, 0x00000000);
56 mtebc(pb5cr, 0x00000000);
57
58 /*--------------------------------------------------------------------
59 * Setup the interrupt controller polarities, triggers, etc.
60 *-------------------------------------------------------------------*/
61 mtdcr(uic0sr, 0xffffffff); /* clear all */
62 mtdcr(uic0er, 0x00000000); /* disable all */
63 mtdcr(uic0cr, 0x00000009); /* ATI & UIC1 crit are critical */
64 mtdcr(uic0pr, 0xfffffe13); /* per ref-board manual */
65 mtdcr(uic0tr, 0x01c00008); /* per ref-board manual */
66 mtdcr(uic0vr, 0x00000001); /* int31 highest, base=0x000 */
67 mtdcr(uic0sr, 0xffffffff); /* clear all */
68
69 mtdcr(uic1sr, 0xffffffff); /* clear all */
70 mtdcr(uic1er, 0x00000000); /* disable all */
71 mtdcr(uic1cr, 0x00000000); /* all non-critical */
72 mtdcr(uic1pr, 0xffffe0ff); /* per ref-board manual */
73 mtdcr(uic1tr, 0x00ffc000); /* per ref-board manual */
74 mtdcr(uic1vr, 0x00000001); /* int31 highest, base=0x000 */
75 mtdcr(uic1sr, 0xffffffff); /* clear all */
76
77 /*--------------------------------------------------------------------
78 * Setup the GPIO pins
79 *-------------------------------------------------------------------*/
80 /*CPLD cs */
81 /*setup Address lines for flash sizes larger than 16Meg. */
82 out32(GPIO0_OSRL, in32(GPIO0_OSRL) | 0x40010000);
83 out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40010000);
84 out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x40000000);
85
86 /*setup emac */
87 out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xC080);
88 out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40);
89 out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x55);
90 out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0x50004000);
91 out32(GPIO0_ISR1H, in32(GPIO0_ISR1H) | 0x00440000);
92
93 /*UART1 */
94 out32(GPIO1_TCR, in32(GPIO1_TCR) | 0x02000000);
95 out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x00080000);
96 out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x00010000);
97
Stefan Roese34c0a5e2005-09-15 11:34:07 +020098#if 0 /* test-only */
Stefan Roesec157d8e2005-08-01 16:41:48 +020099 /*setup USB 2.0 */
100 out32(GPIO1_TCR, in32(GPIO1_TCR) | 0xc0000000);
101 out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x50000000);
102 out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xf);
103 out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0xaa);
104 out32(GPIO0_ISR2H, in32(GPIO0_ISR2H) | 0x00000500);
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200105#endif
Stefan Roesec157d8e2005-08-01 16:41:48 +0200106
107 /*--------------------------------------------------------------------
108 * Setup other serial configuration
109 *-------------------------------------------------------------------*/
110 mfsdr(sdr_pci0, reg);
111 mtsdr(sdr_pci0, 0x80000000 | reg); /* PCI arbiter enabled */
112 mtsdr(sdr_pfc0, 0x00003e00); /* Pin function */
113 mtsdr(sdr_pfc1, 0x00048000); /* Pin function: UART0 has 4 pins */
114
115 /*clear tmrclk divisor */
116 *(unsigned char *)(CFG_BCSR_BASE | 0x04) = 0x00;
117
118 /*enable ethernet */
119 *(unsigned char *)(CFG_BCSR_BASE | 0x08) = 0xf0;
120
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200121#if 0 /* test-only */
Stefan Roesec157d8e2005-08-01 16:41:48 +0200122 /*enable usb 1.1 fs device and remove usb 2.0 reset */
123 *(unsigned char *)(CFG_BCSR_BASE | 0x09) = 0x00;
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200124#endif
Stefan Roesec157d8e2005-08-01 16:41:48 +0200125
126 /*get rid of flash write protect */
127 *(unsigned char *)(CFG_BCSR_BASE | 0x07) = 0x40;
128
129 return 0;
130}
131
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200132int misc_init_r (void)
133{
134 DECLARE_GLOBAL_DATA_PTR;
135 uint pbcr;
136 int size_val = 0;
137
138 /* Re-do sizing to get full correct info */
139 mtdcr(ebccfga, pb0cr);
140 pbcr = mfdcr(ebccfgd);
141 switch (gd->bd->bi_flashsize) {
142 case 1 << 20:
143 size_val = 0;
144 break;
145 case 2 << 20:
146 size_val = 1;
147 break;
148 case 4 << 20:
149 size_val = 2;
150 break;
151 case 8 << 20:
152 size_val = 3;
153 break;
154 case 16 << 20:
155 size_val = 4;
156 break;
157 case 32 << 20:
158 size_val = 5;
159 break;
160 case 64 << 20:
161 size_val = 6;
162 break;
163 case 128 << 20:
164 size_val = 7;
165 break;
166 }
167 pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
168 mtdcr(ebccfga, pb0cr);
169 mtdcr(ebccfgd, pbcr);
170
171 /* Monitor protection ON by default */
172 (void)flash_protect(FLAG_PROTECT_SET,
173 -CFG_MONITOR_LEN,
174 0xffffffff,
175 &flash_info[0]);
176
177 return 0;
178}
179
Stefan Roesec157d8e2005-08-01 16:41:48 +0200180int checkboard(void)
181{
182 sys_info_t sysinfo;
183
184 get_sys_info(&sysinfo);
185
186 printf("Board: AMCC YELLOWSTONE\n");
187 printf("\tVCO: %lu MHz\n", sysinfo.freqVCOMhz / 1000000);
188 printf("\tCPU: %lu MHz\n", sysinfo.freqProcessor / 1000000);
189 printf("\tPLB: %lu MHz\n", sysinfo.freqPLB / 1000000);
190 printf("\tOPB: %lu MHz\n", sysinfo.freqOPB / 1000000);
191 printf("\tPER: %lu MHz\n", sysinfo.freqEPB / 1000000);
192 printf("\tPCI: %lu MHz\n", sysinfo.freqPCI / 1000000);
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200193
194
Stefan Roesec157d8e2005-08-01 16:41:48 +0200195 return (0);
196}
197
198/*************************************************************************
199 * sdram_init -- doesn't use serial presence detect.
200 *
201 * Assumes: 256 MB, ECC, non-registered
202 * PLB @ 133 MHz
203 *
204 ************************************************************************/
205void sdram_init(void)
206{
207 register uint reg;
208
209 /*--------------------------------------------------------------------
210 * Setup some default
211 *------------------------------------------------------------------*/
212 mtsdram(mem_uabba, 0x00000000); /* ubba=0 (default) */
213 mtsdram(mem_slio, 0x00000000); /* rdre=0 wrre=0 rarw=0 */
214 mtsdram(mem_devopt, 0x00000000); /* dll=0 ds=0 (normal) */
215 mtsdram(mem_clktr, 0x40000000); /* ?? */
216 mtsdram(mem_wddctr, 0x40000000); /* ?? */
217
218 /*clear this first, if the DDR is enabled by a debugger
219 then you can not make changes. */
220 mtsdram(mem_cfg0, 0x00000000); /* Disable EEC */
221
222 /*--------------------------------------------------------------------
223 * Setup for board-specific specific mem
224 *------------------------------------------------------------------*/
225 /*
226 * Following for CAS Latency = 2.5 @ 133 MHz PLB
227 */
228 mtsdram(mem_b0cr, 0x000a4001); /* SDBA=0x000 128MB, Mode 3, enabled */
229 mtsdram(mem_b1cr, 0x080a4001); /* SDBA=0x080 128MB, Mode 3, enabled */
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200230
Stefan Roesec157d8e2005-08-01 16:41:48 +0200231 mtsdram(mem_tr0, 0x410a4012); /* ?? */
232 mtsdram(mem_tr1, 0x8080080b); /* ?? */
233 mtsdram(mem_rtr, 0x04080000); /* ?? */
234 mtsdram(mem_cfg1, 0x00000000); /* Self-refresh exit, disable PM */
235 mtsdram(mem_cfg0, 0x34000000); /* Disable EEC */
236 udelay(400); /* Delay 200 usecs (min) */
237
238 /*--------------------------------------------------------------------
239 * Enable the controller, then wait for DCEN to complete
240 *------------------------------------------------------------------*/
241 mtsdram(mem_cfg0, 0x84000000); /* Enable */
242
243 for (;;) {
244 mfsdram(mem_mcsts, reg);
245 if (reg & 0x80000000)
246 break;
247 }
248}
249
250/*************************************************************************
251 * long int initdram
252 *
253 ************************************************************************/
254long int initdram(int board)
255{
256 sdram_init();
257 return CFG_SDRAM_BANKS * (CFG_KBYTES_SDRAM * 1024); /* return bytes */
258}
259
260#if defined(CFG_DRAM_TEST)
261int testdram(void)
262{
263 unsigned long *mem = (unsigned long *)0;
264 const unsigned long kend = (1024 / sizeof(unsigned long));
265 unsigned long k, n;
266
267 mtmsr(0);
268
269 for (k = 0; k < CFG_KBYTES_SDRAM;
270 ++k, mem += (1024 / sizeof(unsigned long))) {
271 if ((k & 1023) == 0) {
272 printf("%3d MB\r", k / 1024);
273 }
274
275 memset(mem, 0xaaaaaaaa, 1024);
276 for (n = 0; n < kend; ++n) {
277 if (mem[n] != 0xaaaaaaaa) {
278 printf("SDRAM test fails at: %08x\n",
279 (uint) & mem[n]);
280 return 1;
281 }
282 }
283
284 memset(mem, 0x55555555, 1024);
285 for (n = 0; n < kend; ++n) {
286 if (mem[n] != 0x55555555) {
287 printf("SDRAM test fails at: %08x\n",
288 (uint) & mem[n]);
289 return 1;
290 }
291 }
292 }
293 printf("SDRAM test passes\n");
294 return 0;
295}
296#endif
297
298/*************************************************************************
299 * pci_pre_init
300 *
301 * This routine is called just prior to registering the hose and gives
302 * the board the opportunity to check things. Returning a value of zero
303 * indicates that things are bad & PCI initialization should be aborted.
304 *
305 * Different boards may wish to customize the pci controller structure
306 * (add regions, override default access routines, etc) or perform
307 * certain pre-initialization actions.
308 *
309 ************************************************************************/
310#if defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT)
311int pci_pre_init(struct pci_controller *hose)
312{
313 unsigned long strap;
314 unsigned long addr;
315
316 /*--------------------------------------------------------------------------+
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200317 * Bamboo is always configured as the host & requires the
318 * PCI arbiter to be enabled.
Stefan Roesec157d8e2005-08-01 16:41:48 +0200319 *--------------------------------------------------------------------------*/
320 mfsdr(sdr_sdstp1, strap);
321 if ((strap & SDR0_SDSTP1_PAE_MASK) == 0) {
322 printf("PCI: SDR0_STRP1[PAE] not set.\n");
323 printf("PCI: Configuration aborted.\n");
324 return 0;
325 }
326
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200327 /*-------------------------------------------------------------------------+
328 | Set priority for all PLB3 devices to 0.
329 | Set PLB3 arbiter to fair mode.
330 +-------------------------------------------------------------------------*/
Stefan Roesec157d8e2005-08-01 16:41:48 +0200331 mfsdr(sdr_amp1, addr);
332 mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00);
333 addr = mfdcr(plb3_acr);
334 mtdcr(plb3_acr, addr | 0x80000000);
335
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200336 /*-------------------------------------------------------------------------+
337 | Set priority for all PLB4 devices to 0.
338 +-------------------------------------------------------------------------*/
Stefan Roesec157d8e2005-08-01 16:41:48 +0200339 mfsdr(sdr_amp0, addr);
340 mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00);
341 addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */
342 mtdcr(plb4_acr, addr);
343
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200344 /*-------------------------------------------------------------------------+
345 | Set Nebula PLB4 arbiter to fair mode.
346 +-------------------------------------------------------------------------*/
347 /* Segment0 */
Stefan Roesec157d8e2005-08-01 16:41:48 +0200348 addr = (mfdcr(plb0_acr) & ~plb0_acr_ppm_mask) | plb0_acr_ppm_fair;
349 addr = (addr & ~plb0_acr_hbu_mask) | plb0_acr_hbu_enabled;
350 addr = (addr & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
351 addr = (addr & ~plb0_acr_wrp_mask) | plb0_acr_wrp_2deep;
352 mtdcr(plb0_acr, addr);
353
354 /* Segment1 */
355 addr = (mfdcr(plb1_acr) & ~plb1_acr_ppm_mask) | plb1_acr_ppm_fair;
356 addr = (addr & ~plb1_acr_hbu_mask) | plb1_acr_hbu_enabled;
357 addr = (addr & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
358 addr = (addr & ~plb1_acr_wrp_mask) | plb1_acr_wrp_2deep;
359 mtdcr(plb1_acr, addr);
360
361 return 1;
362}
363#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT) */
364
365/*************************************************************************
366 * pci_target_init
367 *
368 * The bootstrap configuration provides default settings for the pci
369 * inbound map (PIM). But the bootstrap config choices are limited and
370 * may not be sufficient for a given board.
371 *
372 ************************************************************************/
373#if defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT)
374void pci_target_init(struct pci_controller *hose)
375{
Stefan Roesec157d8e2005-08-01 16:41:48 +0200376 /*--------------------------------------------------------------------------+
377 * Set up Direct MMIO registers
378 *--------------------------------------------------------------------------*/
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200379 /*--------------------------------------------------------------------------+
380 | PowerPC440 EP PCI Master configuration.
381 | Map one 1Gig range of PLB/processor addresses to PCI memory space.
382 | PLB address 0xA0000000-0xDFFFFFFF ==> PCI address 0xA0000000-0xDFFFFFFF
383 | Use byte reversed out routines to handle endianess.
384 | Make this region non-prefetchable.
385 +--------------------------------------------------------------------------*/
Stefan Roesec157d8e2005-08-01 16:41:48 +0200386 out32r(PCIX0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
387 out32r(PCIX0_PMM0LA, CFG_PCI_MEMBASE); /* PMM0 Local Address */
388 out32r(PCIX0_PMM0PCILA, CFG_PCI_MEMBASE); /* PMM0 PCI Low Address */
389 out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
390 out32r(PCIX0_PMM0MA, 0xE0000001); /* 512M + No prefetching, and enable region */
391
392 out32r(PCIX0_PMM1MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
393 out32r(PCIX0_PMM1LA, CFG_PCI_MEMBASE2); /* PMM0 Local Address */
394 out32r(PCIX0_PMM1PCILA, CFG_PCI_MEMBASE2); /* PMM0 PCI Low Address */
395 out32r(PCIX0_PMM1PCIHA, 0x00000000); /* PMM0 PCI High Address */
396 out32r(PCIX0_PMM1MA, 0xE0000001); /* 512M + No prefetching, and enable region */
397
398 out32r(PCIX0_PTM1MS, 0x00000001); /* Memory Size/Attribute */
399 out32r(PCIX0_PTM1LA, 0); /* Local Addr. Reg */
400 out32r(PCIX0_PTM2MS, 0); /* Memory Size/Attribute */
401 out32r(PCIX0_PTM2LA, 0); /* Local Addr. Reg */
402
403 /*--------------------------------------------------------------------------+
404 * Set up Configuration registers
405 *--------------------------------------------------------------------------*/
406
407 /* Program the board's subsystem id/vendor id */
408 pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID,
409 CFG_PCI_SUBSYS_VENDORID);
410 pci_write_config_word(0, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_ID);
411
412 /* Configure command register as bus master */
413 pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER);
414
415 /* 240nS PCI clock */
416 pci_write_config_word(0, PCI_LATENCY_TIMER, 1);
417
418 /* No error reporting */
419 pci_write_config_word(0, PCI_ERREN, 0);
420
421 pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101);
422
423}
424#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT) */
425
426/*************************************************************************
427 * pci_master_init
428 *
429 ************************************************************************/
430#if defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT)
431void pci_master_init(struct pci_controller *hose)
432{
433 unsigned short temp_short;
434
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200435 /*--------------------------------------------------------------------------+
436 | Write the PowerPC440 EP PCI Configuration regs.
437 | Enable PowerPC440 EP to be a master on the PCI bus (PMM).
438 | Enable PowerPC440 EP to act as a PCI memory target (PTM).
439 +--------------------------------------------------------------------------*/
Stefan Roesec157d8e2005-08-01 16:41:48 +0200440 pci_read_config_word(0, PCI_COMMAND, &temp_short);
441 pci_write_config_word(0, PCI_COMMAND,
442 temp_short | PCI_COMMAND_MASTER |
443 PCI_COMMAND_MEMORY);
444}
445#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT) */
446
447/*************************************************************************
448 * is_pci_host
449 *
450 * This routine is called to determine if a pci scan should be
451 * performed. With various hardware environments (especially cPCI and
452 * PPMC) it's insufficient to depend on the state of the arbiter enable
453 * bit in the strap register, or generic host/adapter assumptions.
454 *
455 * Rather than hard-code a bad assumption in the general 440 code, the
456 * 440 pci code requires the board to decide at runtime.
457 *
458 * Return 0 for adapter mode, non-zero for host (monarch) mode.
459 *
460 *
461 ************************************************************************/
462#if defined(CONFIG_PCI)
463int is_pci_host(struct pci_controller *hose)
464{
465 /* Bamboo is always configured as host. */
466 return (1);
467}
468#endif /* defined(CONFIG_PCI) */
469
470/*************************************************************************
471 * hw_watchdog_reset
472 *
473 * This routine is called to reset (keep alive) the watchdog timer
474 *
475 ************************************************************************/
476#if defined(CONFIG_HW_WATCHDOG)
477void hw_watchdog_reset(void)
478{
Stefan Roese34c0a5e2005-09-15 11:34:07 +0200479
Stefan Roesec157d8e2005-08-01 16:41:48 +0200480}
481#endif