2 * Copyright (C) 2004 PaulReynolds@lhsolutions.com
5 * Stefan Roese, DENX Software Engineering, sr@denx.de.
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #include <asm/processor.h>
28 #include <spd_sdram.h>
29 #include <ppc4xx_enet.h>
31 #ifdef CFG_INIT_SHOW_RESET_REG
32 void show_reset_reg(void);
35 DECLARE_GLOBAL_DATA_PTR;
39 int board_early_init_f (void)
42 volatile unsigned int *GpioOdr;
43 volatile unsigned int *GpioTcr;
44 volatile unsigned int *GpioOr;
46 /*-------------------------------------------------------------------------+
47 | Initialize EBC CONFIG
48 +-------------------------------------------------------------------------*/
49 mtebc(xbcfg, EBC_CFG_LE_UNLOCK |
50 EBC_CFG_PTD_ENABLE | EBC_CFG_RTC_64PERCLK |
51 EBC_CFG_ATC_PREVIOUS | EBC_CFG_DTC_PREVIOUS |
52 EBC_CFG_CTC_PREVIOUS | EBC_CFG_EMC_DEFAULT |
53 EBC_CFG_PME_DISABLE | EBC_CFG_PR_32);
55 /*-------------------------------------------------------------------------+
56 | 64MB FLASH. Initialize bank 0 with default values.
57 +-------------------------------------------------------------------------*/
58 mtebc(pb0ap, EBC_BXAP_BME_DISABLED|EBC_BXAP_TWT_ENCODE(15) |
59 EBC_BXAP_BCE_DISABLE |
60 EBC_BXAP_CSN_ENCODE(1) | EBC_BXAP_OEN_ENCODE(1) |
61 EBC_BXAP_WBN_ENCODE(1) | EBC_BXAP_WBF_ENCODE(1) |
62 EBC_BXAP_TH_ENCODE(3) | EBC_BXAP_RE_DISABLED |
63 EBC_BXAP_BEM_WRITEONLY |
64 EBC_BXAP_PEN_DISABLED);
65 mtebc(pb0cr, EBC_BXCR_BAS_ENCODE(CFG_FLASH_BASE) |
66 EBC_BXCR_BS_64MB | EBC_BXCR_BU_RW|EBC_BXCR_BW_32BIT);
68 /*-------------------------------------------------------------------------+
69 | FPGA. Initialize bank 1 with default values.
70 +-------------------------------------------------------------------------*/
71 mtebc(pb1ap, EBC_BXAP_BME_DISABLED|EBC_BXAP_TWT_ENCODE(5) |
72 EBC_BXAP_BCE_DISABLE |
73 EBC_BXAP_CSN_ENCODE(1) | EBC_BXAP_OEN_ENCODE(1) |
74 EBC_BXAP_WBN_ENCODE(1) | EBC_BXAP_WBF_ENCODE(1) |
75 EBC_BXAP_TH_ENCODE(3) | EBC_BXAP_RE_DISABLED |
76 EBC_BXAP_BEM_WRITEONLY |
77 EBC_BXAP_PEN_DISABLED);
78 mtebc(pb1cr, EBC_BXCR_BAS_ENCODE(0x41000000) |
79 EBC_BXCR_BS_1MB | EBC_BXCR_BU_RW | EBC_BXCR_BW_8BIT);
81 /*-------------------------------------------------------------------------+
82 | LCM. Initialize bank 2 with default values.
83 +-------------------------------------------------------------------------*/
84 mtebc(pb2ap, EBC_BXAP_BME_DISABLED | EBC_BXAP_TWT_ENCODE(64) |
85 EBC_BXAP_BCE_DISABLE |
86 EBC_BXAP_CSN_ENCODE(3) | EBC_BXAP_OEN_ENCODE(3) |
87 EBC_BXAP_WBN_ENCODE(3) | EBC_BXAP_WBF_ENCODE(3) |
88 EBC_BXAP_TH_ENCODE(7) | EBC_BXAP_RE_DISABLED |
89 EBC_BXAP_BEM_WRITEONLY |
90 EBC_BXAP_PEN_DISABLED);
91 mtebc(pb2cr, EBC_BXCR_BAS_ENCODE(0x42000000) |
92 EBC_BXCR_BS_1MB | EBC_BXCR_BU_RW|EBC_BXCR_BW_8BIT);
94 /*-------------------------------------------------------------------------+
95 | TMP. Initialize bank 3 with default values.
96 +-------------------------------------------------------------------------*/
97 mtebc(pb3ap, EBC_BXAP_BME_DISABLED | EBC_BXAP_TWT_ENCODE(128) |
98 EBC_BXAP_BCE_DISABLE |
99 EBC_BXAP_CSN_ENCODE(3) | EBC_BXAP_OEN_ENCODE(3) |
100 EBC_BXAP_WBN_ENCODE(3) | EBC_BXAP_WBF_ENCODE(3) |
101 EBC_BXAP_TH_ENCODE(7) | EBC_BXAP_RE_DISABLED |
102 EBC_BXAP_BEM_WRITEONLY |
103 EBC_BXAP_PEN_DISABLED);
104 mtebc(pb3cr, EBC_BXCR_BAS_ENCODE(0x48000000) |
105 EBC_BXCR_BS_64MB | EBC_BXCR_BU_RW | EBC_BXCR_BW_32BIT);
107 /*-------------------------------------------------------------------------+
108 | Connector 4~7. Initialize bank 3~ 7 with default values.
109 +-------------------------------------------------------------------------*/
119 /*--------------------------------------------------------------------
120 * Setup the interrupt controller polarities, triggers, etc.
121 *-------------------------------------------------------------------*/
122 mtdcr (uic0sr, 0xffffffff); /* clear all */
123 mtdcr (uic0er, 0x00000000); /* disable all */
124 mtdcr (uic0cr, 0x00000009); /* SMI & UIC1 crit are critical */
125 mtdcr (uic0pr, 0xfffffe13); /* per ref-board manual */
126 mtdcr (uic0tr, 0x01c00008); /* per ref-board manual */
127 mtdcr (uic0vr, 0x00000001); /* int31 highest, base=0x000 */
128 mtdcr (uic0sr, 0xffffffff); /* clear all */
130 mtdcr (uic1sr, 0xffffffff); /* clear all */
131 mtdcr (uic1er, 0x00000000); /* disable all */
132 mtdcr (uic1cr, 0x00000000); /* all non-critical */
133 mtdcr (uic1pr, 0xffffe0ff); /* per ref-board manual */
134 mtdcr (uic1tr, 0x00ffc000); /* per ref-board manual */
135 mtdcr (uic1vr, 0x00000001); /* int31 highest, base=0x000 */
136 mtdcr (uic1sr, 0xffffffff); /* clear all */
138 mtdcr (uic2sr, 0xffffffff); /* clear all */
139 mtdcr (uic2er, 0x00000000); /* disable all */
140 mtdcr (uic2cr, 0x00000000); /* all non-critical */
141 mtdcr (uic2pr, 0xffffffff); /* per ref-board manual */
142 mtdcr (uic2tr, 0x00ff8c0f); /* per ref-board manual */
143 mtdcr (uic2vr, 0x00000001); /* int31 highest, base=0x000 */
144 mtdcr (uic2sr, 0xffffffff); /* clear all */
146 mtdcr (uicb0sr, 0xfc000000); /* clear all */
147 mtdcr (uicb0er, 0x00000000); /* disable all */
148 mtdcr (uicb0cr, 0x00000000); /* all non-critical */
149 mtdcr (uicb0pr, 0xfc000000); /* */
150 mtdcr (uicb0tr, 0x00000000); /* */
151 mtdcr (uicb0vr, 0x00000001); /* */
153 /* Enable two GPIO 10~11 and TraceA signal */
162 /* Set GPIO 10 and 11 as output */
163 GpioOdr = (volatile unsigned int*)(CFG_PERIPHERAL_BASE+0x718);
164 GpioTcr = (volatile unsigned int*)(CFG_PERIPHERAL_BASE+0x704);
165 GpioOr = (volatile unsigned int*)(CFG_PERIPHERAL_BASE+0x700);
167 *GpioOdr &= ~(0x00300000);
168 *GpioTcr |= 0x00300000;
169 *GpioOr |= 0x00300000;
174 int misc_init_r(void)
181 int checkboard (void)
183 char *s = getenv ("serial#");
185 printf ("Board: Taishan - AMCC PPC440GX Evaluation Board");
192 #ifdef CFG_INIT_SHOW_RESET_REG
199 #if defined(CFG_DRAM_TEST)
202 uint *pstart = (uint *) 0x04000000;
203 uint *pend = (uint *) 0x0fc00000;
206 for (p = pstart; p < pend; p++)
209 for (p = pstart; p < pend; p++) {
210 if (*p != 0xaaaaaaaa) {
211 printf ("SDRAM test fails at: %08x\n", (uint) p);
216 for (p = pstart; p < pend; p++)
219 for (p = pstart; p < pend; p++) {
220 if (*p != 0x55555555) {
221 printf ("SDRAM test fails at: %08x\n", (uint) p);
229 /*************************************************************************
232 * This routine is called just prior to registering the hose and gives
233 * the board the opportunity to check things. Returning a value of zero
234 * indicates that things are bad & PCI initialization should be aborted.
236 * Different boards may wish to customize the pci controller structure
237 * (add regions, override default access routines, etc) or perform
238 * certain pre-initialization actions.
240 ************************************************************************/
241 #if defined(CONFIG_PCI)
242 int pci_pre_init(struct pci_controller * hose )
246 /*--------------------------------------------------------------------------+
247 * The ocotea board is always configured as the host & requires the
248 * PCI arbiter to be enabled.
249 *--------------------------------------------------------------------------*/
250 mfsdr(sdr_sdstp1, strap);
251 if( (strap & SDR0_SDSTP1_PAE_MASK) == 0 ){
252 printf("PCI: SDR0_STRP1[%08lX] - PCI Arbiter disabled.\n",strap);
258 #endif /* defined(CONFIG_PCI) */
260 /*************************************************************************
263 * The bootstrap configuration provides default settings for the pci
264 * inbound map (PIM). But the bootstrap config choices are limited and
265 * may not be sufficient for a given board.
267 ************************************************************************/
268 #if defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT)
269 void pci_target_init(struct pci_controller * hose )
271 /*--------------------------------------------------------------------------+
273 *--------------------------------------------------------------------------*/
274 out32r( PCIX0_PIM0SA, 0 ); /* disable */
275 out32r( PCIX0_PIM1SA, 0 ); /* disable */
276 out32r( PCIX0_PIM2SA, 0 ); /* disable */
277 out32r( PCIX0_EROMBA, 0 ); /* disable expansion rom */
279 /*--------------------------------------------------------------------------+
280 * Map all of SDRAM to PCI address 0x0000_0000. Note that the 440 strapping
281 * options to not support sizes such as 128/256 MB.
282 *--------------------------------------------------------------------------*/
283 out32r( PCIX0_PIM0LAL, CFG_SDRAM_BASE );
284 out32r( PCIX0_PIM0LAH, 0 );
285 out32r( PCIX0_PIM0SA, ~(gd->ram_size - 1) | 1 );
287 out32r( PCIX0_BAR0, 0 );
289 /*--------------------------------------------------------------------------+
290 * Program the board's subsystem id/vendor id
291 *--------------------------------------------------------------------------*/
292 out16r( PCIX0_SBSYSVID, CFG_PCI_SUBSYS_VENDORID );
293 out16r( PCIX0_SBSYSID, CFG_PCI_SUBSYS_DEVICEID );
295 out16r( PCIX0_CMD, in16r(PCIX0_CMD) | PCI_COMMAND_MEMORY );
297 #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT) */
299 /*************************************************************************
302 * This routine is called to determine if a pci scan should be
303 * performed. With various hardware environments (especially cPCI and
304 * PPMC) it's insufficient to depend on the state of the arbiter enable
305 * bit in the strap register, or generic host/adapter assumptions.
307 * Rather than hard-code a bad assumption in the general 440 code, the
308 * 440 pci code requires the board to decide at runtime.
310 * Return 0 for adapter mode, non-zero for host (monarch) mode.
313 ************************************************************************/
314 #if defined(CONFIG_PCI)
315 int is_pci_host(struct pci_controller *hose)
317 /* The ocotea board is always configured as host. */
320 #endif /* defined(CONFIG_PCI) */
324 * Returns 1 if keys pressed to start the power-on long-running tests
325 * Called from board_init_f().
327 int post_hotkeys_pressed(void)