8a3503dd4f0c847d88e0a3742f408bf340e58230
[platform/kernel/u-boot.git] / board / xpedite1k / xpedite1k.c
1 /*
2  * Copyright (C) 2003 Travis B. Sawyer <travis.sawyer@sandburst.com>
3  *
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
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * 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
23 #include <common.h>
24 #include <asm/processor.h>
25 #include <spd_sdram.h>
26 #include <i2c.h>
27 #include <net.h>
28
29 DECLARE_GLOBAL_DATA_PTR;
30
31 int board_early_init_f(void)
32 {
33         unsigned long sdrreg;
34
35         /* TBS: Setup the GPIO access for the user LEDs */
36         mfsdr(sdr_pfc0, sdrreg);
37         mtsdr(sdr_pfc0, (sdrreg & ~0x00000100) | 0x00000E00);
38         out32(CONFIG_SYS_GPIO_BASE + 0x018, (USR_LED0 | USR_LED1 | USR_LED2 | USR_LED3));
39         LED0_OFF();
40         LED1_OFF();
41         LED2_OFF();
42         LED3_OFF();
43
44         /* 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 */
49         mtebc(pb6ap, 0x05006400);       /* 32-64MB AMD MirrorBit FLASH */
50         mtebc(pb6cr, 0xf00da000);       /* BAS=0xf00 64MB R/W i6-bit */
51         mtebc(pb7ap, 0x05006400);       /* 32-64MB AMD MirrorBit FLASH */
52         mtebc(pb7cr, 0xf40da000);       /* BAS=0xf40 64MB R/W 16-bit */
53
54         /*
55          * Setup the interrupt controller polarities, triggers, etc.
56          *
57          * Because of the interrupt handling rework to handle 440GX interrupts
58          * with the common code, we needed to change names of the UIC registers.
59          * Here the new relationship:
60          *
61          * U-Boot name  440GX name
62          * -----------------------
63          * UIC0         UICB0
64          * UIC1         UIC0
65          * UIC2         UIC1
66          * UIC3         UIC2
67          */
68         mtdcr(uic1sr, 0xffffffff);      /* clear all */
69         mtdcr(uic1er, 0x00000000);      /* disable all */
70         mtdcr(uic1cr, 0x00000003);      /* SMI & UIC1 crit are critical */
71         mtdcr(uic1pr, 0xfffffe00);      /* per ref-board manual */
72         mtdcr(uic1tr, 0x01c00000);      /* per ref-board manual */
73         mtdcr(uic1vr, 0x00000001);      /* int31 highest, base=0x000 */
74         mtdcr(uic1sr, 0xffffffff);      /* clear all */
75
76         mtdcr(uic2sr, 0xffffffff);      /* clear all */
77         mtdcr(uic2er, 0x00000000);      /* disable all */
78         mtdcr(uic2cr, 0x00000000);      /* all non-critical */
79         mtdcr(uic2pr, 0xffffc0ff);      /* per ref-board manual */
80         mtdcr(uic2tr, 0x00ff8000);      /* per ref-board manual */
81         mtdcr(uic2vr, 0x00000001);      /* int31 highest, base=0x000 */
82         mtdcr(uic2sr, 0xffffffff);      /* clear all */
83
84         mtdcr(uic3sr, 0xffffffff);      /* clear all */
85         mtdcr(uic3er, 0x00000000);      /* disable all */
86         mtdcr(uic3cr, 0x00000000);      /* all non-critical */
87         mtdcr(uic3pr, 0xffffffff);      /* per ref-board manual */
88         mtdcr(uic3tr, 0x00ff8c0f);      /* per ref-board manual */
89         mtdcr(uic3vr, 0x00000001);      /* int31 highest, base=0x000 */
90         mtdcr(uic3sr, 0xffffffff);      /* clear all */
91
92         mtdcr(uic0sr, 0xfc000000);      /* clear all */
93         mtdcr(uic0er, 0x00000000);      /* disable all */
94         mtdcr(uic0cr, 0x00000000);      /* all non-critical */
95         mtdcr(uic0pr, 0xfc000000);      /* */
96         mtdcr(uic0tr, 0x00000000);      /* */
97         mtdcr(uic0vr, 0x00000001);      /* */
98
99         LED0_ON();
100
101         return 0;
102 }
103
104 int checkboard(void)
105 {
106         printf("Board: XES XPedite1000 440GX\n");
107
108         return 0;
109 }
110
111 phys_size_t initdram(int board_type)
112 {
113         return spd_sdram();
114 }
115
116 /*
117  * This routine is called just prior to registering the hose and gives
118  * the board the opportunity to check things. Returning a value of zero
119  * indicates that things are bad & PCI initialization should be aborted.
120  *
121  * Different boards may wish to customize the pci controller structure
122  * (add regions, override default access routines, etc) or perform
123  * certain pre-initialization actions.
124  */
125
126 #if defined(CONFIG_PCI)
127 int pci_pre_init(struct pci_controller * hose)
128 {
129         unsigned long strap;
130
131         /* See if we're supposed to setup the pci */
132         mfsdr(sdr_sdstp1, strap);
133         if ((strap & 0x00010000) == 0)
134                 return 0;
135
136 #if defined(CONFIG_SYS_PCI_FORCE_PCI_CONV)
137         /* Setup System Device Register PCIX0_XCR */
138         mfsdr(sdr_xcr, strap);
139         strap &= 0x0f000000;
140         mtsdr(sdr_xcr, strap);
141 #endif
142
143         return 1;
144 }
145 #endif /* defined(CONFIG_PCI) */
146
147 #if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT)
148 /*
149  * The bootstrap configuration provides default settings for the pci
150  * inbound map (PIM). But the bootstrap config choices are limited and
151  * may not be sufficient for a given board.
152  */
153 void pci_target_init(struct pci_controller * hose)
154 {
155         /* Disable everything */
156         out32r(PCIX0_PIM0SA, 0);
157         out32r(PCIX0_PIM1SA, 0);
158         out32r(PCIX0_PIM2SA, 0);
159         out32r(PCIX0_EROMBA, 0); /* disable expansion rom */
160
161         /*
162          * Map all of SDRAM to PCI address 0x0000_0000. Note that the 440 strapping
163          * options to not support sizes such as 128/256 MB.
164          */
165         out32r(PCIX0_PIM0LAL, CONFIG_SYS_SDRAM_BASE);
166         out32r(PCIX0_PIM0LAH, 0);
167         out32r(PCIX0_PIM0SA, ~(gd->ram_size - 1) | 1);
168
169         out32r(PCIX0_BAR0, 0);
170
171         /* Program the board's subsystem id/vendor id */
172         out16r(PCIX0_SBSYSVID, CONFIG_SYS_PCI_SUBSYS_VENDORID);
173         out16r(PCIX0_SBSYSID, CONFIG_SYS_PCI_SUBSYS_DEVICEID);
174
175         out16r(PCIX0_CMD, in16r(PCIX0_CMD) | PCI_COMMAND_MEMORY);
176 }
177 #endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT) */
178
179 #if defined(CONFIG_PCI)
180 /*
181  * This routine is called to determine if a pci scan should be
182  * performed. With various hardware environments (especially cPCI and
183  * PPMC) it's insufficient to depend on the state of the arbiter enable
184  * bit in the strap register, or generic host/adapter assumptions.
185  *
186  * Rather than hard-code a bad assumption in the general 440 code, the
187  * 440 pci code requires the board to decide at runtime.
188  *
189  * Return 0 for adapter mode, non-zero for host (monarch) mode.
190  */
191 int is_pci_host(struct pci_controller *hose)
192 {
193         return ((in32(CONFIG_SYS_GPIO_BASE + 0x1C) & 0x00000800) == 0);
194 }
195 #endif /* defined(CONFIG_PCI) */
196
197 #ifdef CONFIG_POST
198 /*
199  * Returns 1 if keys pressed to start the power-on long-running tests
200  * Called from board_init_f().
201  */
202 int post_hotkeys_pressed(void)
203 {
204         return ctrlc();
205 }
206
207 void post_word_store(ulong a)
208 {
209         volatile ulong *save_addr =
210                 (volatile ulong *)(CONFIG_SYS_POST_WORD_ADDR);
211
212         *save_addr = a;
213 }
214
215 ulong post_word_load(void)
216 {
217         volatile ulong *save_addr =
218                 (volatile ulong *)(CONFIG_SYS_POST_WORD_ADDR);
219
220         return *save_addr;
221 }
222 #endif