blob: 369f76a82f39a9ce917474758cbb616e3dfee0c8 [file] [log] [blame]
wdenk544e9732004-02-06 23:19:44 +00001/*
Peter Tyser68e27f42009-07-17 19:01:07 -05002 * Copyright (C) 2003 Travis B. Sawyer <travis.sawyer@sandburst.com>
wdenk544e9732004-02-06 23:19:44 +00003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Peter Tyser68e27f42009-07-17 19:01:07 -050014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk544e9732004-02-06 23:19:44 +000015 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
wdenk544e9732004-02-06 23:19:44 +000023#include <common.h>
24#include <asm/processor.h>
25#include <spd_sdram.h>
26#include <i2c.h>
Wolfgang Denkffcf5992009-03-28 20:16:16 +010027#include <net.h>
wdenk544e9732004-02-06 23:19:44 +000028
Wolfgang Denk6405a152006-03-31 18:32:53 +020029DECLARE_GLOBAL_DATA_PTR;
30
wdenk56ed43e2004-02-22 23:46:08 +000031int board_early_init_f(void)
wdenk544e9732004-02-06 23:19:44 +000032{
33 unsigned long sdrreg;
Peter Tyser68e27f42009-07-17 19:01:07 -050034
35 /* TBS: Setup the GPIO access for the user LEDs */
wdenk544e9732004-02-06 23:19:44 +000036 mfsdr(sdr_pfc0, sdrreg);
37 mtsdr(sdr_pfc0, (sdrreg & ~0x00000100) | 0x00000E00);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020038 out32(CONFIG_SYS_GPIO_BASE + 0x018, (USR_LED0 | USR_LED1 | USR_LED2 | USR_LED3));
wdenk544e9732004-02-06 23:19:44 +000039 LED0_OFF();
40 LED1_OFF();
41 LED2_OFF();
42 LED3_OFF();
43
Peter Tyser68e27f42009-07-17 19:01:07 -050044 /* Setup the external bus controller/chip selects */
45 mtebc(pb0ap, 0x04055200); /* 16MB Strata FLASH */
46 mtebc(pb0cr, 0xff098000); /* BAS=0xff0 16MB R/W 8-bit */
47 mtebc(pb1ap, 0x04055200); /* 512KB Socketed AMD FLASH */
48 mtebc(pb1cr, 0xfe018000); /* BAS=0xfe0 1MB R/W 8-bit */
wdenk544e9732004-02-06 23:19:44 +000049
Stefan Roese51d6d5d2008-06-26 17:36:39 +020050 /*
Peter Tyser68e27f42009-07-17 19:01:07 -050051 * Setup the interrupt controller polarities, triggers, etc.
52 *
Stefan Roese51d6d5d2008-06-26 17:36:39 +020053 * Because of the interrupt handling rework to handle 440GX interrupts
54 * with the common code, we needed to change names of the UIC registers.
55 * Here the new relationship:
56 *
57 * U-Boot name 440GX name
58 * -----------------------
59 * UIC0 UICB0
60 * UIC1 UIC0
61 * UIC2 UIC1
62 * UIC3 UIC2
63 */
Peter Tyser68e27f42009-07-17 19:01:07 -050064 mtdcr(uic1sr, 0xffffffff); /* clear all */
65 mtdcr(uic1er, 0x00000000); /* disable all */
66 mtdcr(uic1cr, 0x00000003); /* SMI & UIC1 crit are critical */
67 mtdcr(uic1pr, 0xfffffe00); /* per ref-board manual */
68 mtdcr(uic1tr, 0x01c00000); /* per ref-board manual */
69 mtdcr(uic1vr, 0x00000001); /* int31 highest, base=0x000 */
70 mtdcr(uic1sr, 0xffffffff); /* clear all */
wdenk544e9732004-02-06 23:19:44 +000071
Peter Tyser68e27f42009-07-17 19:01:07 -050072 mtdcr(uic2sr, 0xffffffff); /* clear all */
73 mtdcr(uic2er, 0x00000000); /* disable all */
74 mtdcr(uic2cr, 0x00000000); /* all non-critical */
75 mtdcr(uic2pr, 0xffffc0ff); /* per ref-board manual */
76 mtdcr(uic2tr, 0x00ff8000); /* per ref-board manual */
77 mtdcr(uic2vr, 0x00000001); /* int31 highest, base=0x000 */
78 mtdcr(uic2sr, 0xffffffff); /* clear all */
wdenk544e9732004-02-06 23:19:44 +000079
Peter Tyser68e27f42009-07-17 19:01:07 -050080 mtdcr(uic3sr, 0xffffffff); /* clear all */
81 mtdcr(uic3er, 0x00000000); /* disable all */
82 mtdcr(uic3cr, 0x00000000); /* all non-critical */
83 mtdcr(uic3pr, 0xffffffff); /* per ref-board manual */
84 mtdcr(uic3tr, 0x00ff8c0f); /* per ref-board manual */
85 mtdcr(uic3vr, 0x00000001); /* int31 highest, base=0x000 */
86 mtdcr(uic3sr, 0xffffffff); /* clear all */
Stefan Roese51d6d5d2008-06-26 17:36:39 +020087
Peter Tyser68e27f42009-07-17 19:01:07 -050088 mtdcr(uic0sr, 0xfc000000); /* clear all */
89 mtdcr(uic0er, 0x00000000); /* disable all */
90 mtdcr(uic0cr, 0x00000000); /* all non-critical */
91 mtdcr(uic0pr, 0xfc000000); /* */
92 mtdcr(uic0tr, 0x00000000); /* */
93 mtdcr(uic0vr, 0x00000001); /* */
wdenk544e9732004-02-06 23:19:44 +000094
95 LED0_ON();
96
wdenk544e9732004-02-06 23:19:44 +000097 return 0;
98}
99
Peter Tyser68e27f42009-07-17 19:01:07 -0500100int checkboard(void)
wdenk544e9732004-02-06 23:19:44 +0000101{
Peter Tyser68e27f42009-07-17 19:01:07 -0500102 printf("Board: XES XPedite1000 440GX\n");
wdenk544e9732004-02-06 23:19:44 +0000103
Peter Tyser68e27f42009-07-17 19:01:07 -0500104 return 0;
wdenk544e9732004-02-06 23:19:44 +0000105}
106
Peter Tyser68e27f42009-07-17 19:01:07 -0500107phys_size_t initdram(int board_type)
wdenk544e9732004-02-06 23:19:44 +0000108{
Peter Tyserc95a8e92009-07-17 19:01:05 -0500109 return spd_sdram();
wdenk544e9732004-02-06 23:19:44 +0000110}
wdenk544e9732004-02-06 23:19:44 +0000111
Peter Tyser68e27f42009-07-17 19:01:07 -0500112/*
113 * This routine is called just prior to registering the hose and gives
114 * the board the opportunity to check things. Returning a value of zero
115 * indicates that things are bad & PCI initialization should be aborted.
wdenk544e9732004-02-06 23:19:44 +0000116 *
Peter Tyser68e27f42009-07-17 19:01:07 -0500117 * Different boards may wish to customize the pci controller structure
118 * (add regions, override default access routines, etc) or perform
119 * certain pre-initialization actions.
120 */
121
Stefan Roese54ef7fd2007-06-25 15:57:39 +0200122#if defined(CONFIG_PCI)
Peter Tyser68e27f42009-07-17 19:01:07 -0500123int pci_pre_init(struct pci_controller * hose)
wdenk544e9732004-02-06 23:19:44 +0000124{
125 unsigned long strap;
Peter Tyser68e27f42009-07-17 19:01:07 -0500126
wdenk56ed43e2004-02-22 23:46:08 +0000127 /* See if we're supposed to setup the pci */
128 mfsdr(sdr_sdstp1, strap);
Peter Tyser68e27f42009-07-17 19:01:07 -0500129 if ((strap & 0x00010000) == 0)
130 return 0;
wdenk544e9732004-02-06 23:19:44 +0000131
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200132#if defined(CONFIG_SYS_PCI_FORCE_PCI_CONV)
wdenk56ed43e2004-02-22 23:46:08 +0000133 /* Setup System Device Register PCIX0_XCR */
134 mfsdr(sdr_xcr, strap);
135 strap &= 0x0f000000;
136 mtsdr(sdr_xcr, strap);
137#endif
Peter Tyser68e27f42009-07-17 19:01:07 -0500138
wdenk544e9732004-02-06 23:19:44 +0000139 return 1;
140}
Stefan Roese54ef7fd2007-06-25 15:57:39 +0200141#endif /* defined(CONFIG_PCI) */
wdenk544e9732004-02-06 23:19:44 +0000142
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT)
Peter Tyser68e27f42009-07-17 19:01:07 -0500144/*
145 * The bootstrap configuration provides default settings for the pci
146 * inbound map (PIM). But the bootstrap config choices are limited and
147 * may not be sufficient for a given board.
148 */
149void pci_target_init(struct pci_controller * hose)
wdenk544e9732004-02-06 23:19:44 +0000150{
Peter Tyser68e27f42009-07-17 19:01:07 -0500151 /* Disable everything */
152 out32r(PCIX0_PIM0SA, 0);
153 out32r(PCIX0_PIM1SA, 0);
154 out32r(PCIX0_PIM2SA, 0);
155 out32r(PCIX0_EROMBA, 0); /* disable expansion rom */
wdenk544e9732004-02-06 23:19:44 +0000156
Peter Tyser68e27f42009-07-17 19:01:07 -0500157 /*
wdenk544e9732004-02-06 23:19:44 +0000158 * Map all of SDRAM to PCI address 0x0000_0000. Note that the 440 strapping
159 * options to not support sizes such as 128/256 MB.
Peter Tyser68e27f42009-07-17 19:01:07 -0500160 */
161 out32r(PCIX0_PIM0LAL, CONFIG_SYS_SDRAM_BASE);
162 out32r(PCIX0_PIM0LAH, 0);
163 out32r(PCIX0_PIM0SA, ~(gd->ram_size - 1) | 1);
wdenk544e9732004-02-06 23:19:44 +0000164
Peter Tyser68e27f42009-07-17 19:01:07 -0500165 out32r(PCIX0_BAR0, 0);
wdenk544e9732004-02-06 23:19:44 +0000166
Peter Tyser68e27f42009-07-17 19:01:07 -0500167 /* Program the board's subsystem id/vendor id */
168 out16r(PCIX0_SBSYSVID, CONFIG_SYS_PCI_SUBSYS_VENDORID);
169 out16r(PCIX0_SBSYSID, CONFIG_SYS_PCI_SUBSYS_DEVICEID);
wdenk544e9732004-02-06 23:19:44 +0000170
Peter Tyser68e27f42009-07-17 19:01:07 -0500171 out16r(PCIX0_CMD, in16r(PCIX0_CMD) | PCI_COMMAND_MEMORY);
wdenk544e9732004-02-06 23:19:44 +0000172}
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200173#endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT) */
wdenk544e9732004-02-06 23:19:44 +0000174
Peter Tyser68e27f42009-07-17 19:01:07 -0500175#if defined(CONFIG_PCI)
176/*
177 * This routine is called to determine if a pci scan should be
178 * performed. With various hardware environments (especially cPCI and
179 * PPMC) it's insufficient to depend on the state of the arbiter enable
180 * bit in the strap register, or generic host/adapter assumptions.
wdenk544e9732004-02-06 23:19:44 +0000181 *
Peter Tyser68e27f42009-07-17 19:01:07 -0500182 * Rather than hard-code a bad assumption in the general 440 code, the
183 * 440 pci code requires the board to decide at runtime.
wdenk544e9732004-02-06 23:19:44 +0000184 *
Peter Tyser68e27f42009-07-17 19:01:07 -0500185 * Return 0 for adapter mode, non-zero for host (monarch) mode.
186 */
wdenk544e9732004-02-06 23:19:44 +0000187int is_pci_host(struct pci_controller *hose)
188{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200189 return ((in32(CONFIG_SYS_GPIO_BASE + 0x1C) & 0x00000800) == 0);
wdenk544e9732004-02-06 23:19:44 +0000190}
191#endif /* defined(CONFIG_PCI) */
192
193#ifdef CONFIG_POST
194/*
195 * Returns 1 if keys pressed to start the power-on long-running tests
196 * Called from board_init_f().
197 */
198int post_hotkeys_pressed(void)
199{
Peter Tyser68e27f42009-07-17 19:01:07 -0500200 return ctrlc();
wdenk544e9732004-02-06 23:19:44 +0000201}
202
Peter Tyser68e27f42009-07-17 19:01:07 -0500203void post_word_store(ulong a)
wdenk544e9732004-02-06 23:19:44 +0000204{
205 volatile ulong *save_addr =
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200206 (volatile ulong *)(CONFIG_SYS_POST_WORD_ADDR);
wdenk544e9732004-02-06 23:19:44 +0000207
208 *save_addr = a;
209}
210
Peter Tyser68e27f42009-07-17 19:01:07 -0500211ulong post_word_load(void)
wdenk544e9732004-02-06 23:19:44 +0000212{
213 volatile ulong *save_addr =
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200214 (volatile ulong *)(CONFIG_SYS_POST_WORD_ADDR);
wdenk544e9732004-02-06 23:19:44 +0000215
216 return *save_addr;
217}
Peter Tyser68e27f42009-07-17 19:01:07 -0500218#endif