blob: 84a4c707821a3fa8a04000aeaaa04effec73660d [file] [log] [blame]
wdenk4989f872004-03-14 15:06:13 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * (C) Copyright 2002
7 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
8 *
9 * (C) Copyright 2003
10 * Texas Instruments, <www.ti.com>
11 * Kshitij Gupta <Kshitij@ti.com>
12 *
13 * (C) Copyright 2004
14 * ARM Ltd.
15 * Philippe Robin, <philippe.robin@arm.com>
16 *
17 * See file CREDITS for list of people who contributed to this
18 * project.
19 *
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License as
22 * published by the Free Software Foundation; either version 2 of
23 * the License, or (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 * MA 02111-1307 USA
34 */
35
36#include <common.h>
37
38#ifdef CONFIG_PCI
39# include <pci.h>
40#endif
41
42void flash__init (void);
43void ether__init (void);
44void peripheral_power_enable (void);
45
46#if defined(CONFIG_SHOW_BOOT_PROGRESS)
47void show_boot_progress(int progress)
48{
49 printf("Boot reached stage %d\n", progress);
50}
51#endif
52
53#define COMP_MODE_ENABLE ((unsigned int)0x0000EAEF)
54
55static inline void delay (unsigned long loops)
56{
57 __asm__ volatile ("1:\n"
58 "subs %0, %1, #1\n"
59 "bne 1b":"=r" (loops):"0" (loops));
60}
61
62/*
63 * Miscellaneous platform dependent initialisations
64 */
65
66int board_init (void)
67{
68 DECLARE_GLOBAL_DATA_PTR;
69
70 /* arch number of Integrator Board */
71 gd->bd->bi_arch_number = 21;
72
73 /* adress of boot parameters */
74 gd->bd->bi_boot_params = 0x00000100;
75
76 icache_enable ();
77
78 flash__init ();
79 return 0;
80}
81
82
83int misc_init_r (void)
84{
85#ifdef CONFIG_PCI
86 pci_init();
87#endif
88 setenv("verify", "n");
89 return (0);
90}
91
92/*
93 * Initialize PCI Devices, report devices found.
94 */
95#ifdef CONFIG_PCI
96
97#ifndef CONFIG_PCI_PNP
98
99static struct pci_config_table pci_integrator_config_table[] = {
100 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0x0f, PCI_ANY_ID,
101 pci_cfgfunc_config_device, { PCI_ENET0_IOADDR,
102 PCI_ENET0_MEMADDR,
103 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }},
104 { }
105};
106#endif
107
wdenkc35ba4e2004-03-14 22:25:36 +0000108/* V3 access routines */
wdenk4989f872004-03-14 15:06:13 +0000109#define _V3Write16(o,v) (*(volatile unsigned short *)(PCI_V3_BASE + (unsigned int)(o)) = (unsigned short)(v))
110#define _V3Read16(o) (*(volatile unsigned short *)(PCI_V3_BASE + (unsigned int)(o)))
111
112#define _V3Write32(o,v) (*(volatile unsigned int *)(PCI_V3_BASE + (unsigned int)(o)) = (unsigned int)(v))
113#define _V3Read32(o) (*(volatile unsigned int *)(PCI_V3_BASE + (unsigned int)(o)))
114
wdenkc35ba4e2004-03-14 22:25:36 +0000115/* Compute address necessary to access PCI config space for the given */
116/* bus and device. */
117#define PCI_CONFIG_ADDRESS( __bus, __devfn, __offset ) ({ \
118 unsigned int __address, __devicebit; \
119 unsigned short __mapaddress; \
120 unsigned int __dev = PCI_DEV (__devfn); /* FIXME to check!! (slot?) */ \
wdenk4989f872004-03-14 15:06:13 +0000121 \
wdenkc35ba4e2004-03-14 22:25:36 +0000122 if (__bus == 0) { \
123 /* local bus segment so need a type 0 config cycle */ \
124 /* build the PCI configuration "address" with one-hot in A31-A11 */ \
125 __address = PCI_CONFIG_BASE; \
126 __address |= ((__devfn & 0x07) << 8); \
127 __address |= __offset & 0xFF; \
128 __mapaddress = 0x000A; /* 101=>config cycle, 0=>A1=A0=0 */ \
129 __devicebit = (1 << (__dev + 11)); \
wdenk4989f872004-03-14 15:06:13 +0000130 \
wdenkc35ba4e2004-03-14 22:25:36 +0000131 if ((__devicebit & 0xFF000000) != 0) { \
132 /* high order bits are handled by the MAP register */ \
133 __mapaddress |= (__devicebit >> 16); \
134 } else { \
135 /* low order bits handled directly in the address */ \
136 __address |= __devicebit; \
137 } \
138 } else { /* bus !=0 */ \
139 /* not the local bus segment so need a type 1 config cycle */ \
140 /* A31-A24 are don't care (so clear to 0) */ \
141 __mapaddress = 0x000B; /* 101=>config cycle, 1=>A1&A0 from PCI_CFG */ \
142 __address = PCI_CONFIG_BASE; \
143 __address |= ((__bus & 0xFF) << 16); /* bits 23..16 = bus number */ \
144 __address |= ((__dev & 0x1F) << 11); /* bits 15..11 = device number */ \
145 __address |= ((__devfn & 0x07) << 8); /* bits 10..8 = function number */ \
146 __address |= __offset & 0xFF; /* bits 7..0 = register number */ \
147 } \
148 _V3Write16 (V3_LB_MAP1, __mapaddress); \
149 __address; \
150})
wdenk4989f872004-03-14 15:06:13 +0000151
wdenkc35ba4e2004-03-14 22:25:36 +0000152/* _V3OpenConfigWindow - open V3 configuration window */
153#define _V3OpenConfigWindow() { \
154 /* Set up base0 to see all 512Mbytes of memory space (not */ \
155 /* prefetchable), this frees up base1 for re-use by configuration*/ \
156 /* memory */ \
157 \
158 _V3Write32 (V3_LB_BASE0, ((INTEGRATOR_PCI_BASE & 0xFFF00000) | \
159 0x90 | V3_LB_BASE_M_ENABLE)); \
160 /* Set up base1 to point into configuration space, note that MAP1 */ \
161 /* register is set up by pciMakeConfigAddress(). */ \
162 \
163 _V3Write32 (V3_LB_BASE1, ((CPU_PCI_CNFG_ADRS & 0xFFF00000) | \
164 0x40 | V3_LB_BASE_M_ENABLE)); \
165}
wdenk4989f872004-03-14 15:06:13 +0000166
wdenkc35ba4e2004-03-14 22:25:36 +0000167/* _V3CloseConfigWindow - close V3 configuration window */
168#define _V3CloseConfigWindow() { \
169 /* Reassign base1 for use by prefetchable PCI memory */ \
170 _V3Write32 (V3_LB_BASE1, (((INTEGRATOR_PCI_BASE + 0x10000000) & 0xFFF00000) \
171 | 0x84 | V3_LB_BASE_M_ENABLE)); \
172 _V3Write16 (V3_LB_MAP1, \
wdenk4989f872004-03-14 15:06:13 +0000173 (((INTEGRATOR_PCI_BASE + 0x10000000) & 0xFFF00000) >> 16) | 0x0006); \
wdenkc35ba4e2004-03-14 22:25:36 +0000174 \
175 /* And shrink base0 back to a 256M window (NOTE: MAP0 already correct) */ \
176 \
177 _V3Write32 (V3_LB_BASE0, ((INTEGRATOR_PCI_BASE & 0xFFF00000) | \
178 0x80 | V3_LB_BASE_M_ENABLE)); \
179}
wdenk4989f872004-03-14 15:06:13 +0000180
wdenkc35ba4e2004-03-14 22:25:36 +0000181static int pci_integrator_read_byte (struct pci_controller *hose, pci_dev_t dev,
182 int offset, unsigned char *val)
wdenk4989f872004-03-14 15:06:13 +0000183{
wdenkc35ba4e2004-03-14 22:25:36 +0000184 _V3OpenConfigWindow ();
185 *val = *(volatile unsigned char *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
186 PCI_FUNC (dev),
187 offset);
188 _V3CloseConfigWindow ();
wdenk4989f872004-03-14 15:06:13 +0000189
wdenkc35ba4e2004-03-14 22:25:36 +0000190 return 0;
wdenk4989f872004-03-14 15:06:13 +0000191}
192
wdenkc35ba4e2004-03-14 22:25:36 +0000193static int pci_integrator_read__word (struct pci_controller *hose,
194 pci_dev_t dev, int offset,
195 unsigned short *val)
wdenk4989f872004-03-14 15:06:13 +0000196{
wdenkc35ba4e2004-03-14 22:25:36 +0000197 _V3OpenConfigWindow ();
198 *val = *(volatile unsigned short *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
199 PCI_FUNC (dev),
200 offset);
201 _V3CloseConfigWindow ();
wdenk4989f872004-03-14 15:06:13 +0000202
wdenkc35ba4e2004-03-14 22:25:36 +0000203 return 0;
wdenk4989f872004-03-14 15:06:13 +0000204}
205
wdenkc35ba4e2004-03-14 22:25:36 +0000206static int pci_integrator_read_dword (struct pci_controller *hose,
207 pci_dev_t dev, int offset,
208 unsigned int *val)
wdenk4989f872004-03-14 15:06:13 +0000209{
wdenkc35ba4e2004-03-14 22:25:36 +0000210 _V3OpenConfigWindow ();
211 *val = *(volatile unsigned short *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
212 PCI_FUNC (dev),
213 offset);
214 *val |= (*(volatile unsigned int *)
215 PCI_CONFIG_ADDRESS (PCI_BUS (dev), PCI_FUNC (dev),
216 (offset + 2))) << 16;
217 _V3CloseConfigWindow ();
wdenk4989f872004-03-14 15:06:13 +0000218
wdenkc35ba4e2004-03-14 22:25:36 +0000219 return 0;
wdenk4989f872004-03-14 15:06:13 +0000220}
221
wdenkc35ba4e2004-03-14 22:25:36 +0000222static int pci_integrator_write_byte (struct pci_controller *hose,
223 pci_dev_t dev, int offset,
224 unsigned char val)
wdenk4989f872004-03-14 15:06:13 +0000225{
wdenkc35ba4e2004-03-14 22:25:36 +0000226 _V3OpenConfigWindow ();
227 *(volatile unsigned char *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
228 PCI_FUNC (dev),
229 offset) = val;
230 _V3CloseConfigWindow ();
wdenk4989f872004-03-14 15:06:13 +0000231
wdenkc35ba4e2004-03-14 22:25:36 +0000232 return 0;
wdenk4989f872004-03-14 15:06:13 +0000233}
234
wdenkc35ba4e2004-03-14 22:25:36 +0000235static int pci_integrator_write_word (struct pci_controller *hose,
236 pci_dev_t dev, int offset,
237 unsigned short val)
wdenk4989f872004-03-14 15:06:13 +0000238{
wdenkc35ba4e2004-03-14 22:25:36 +0000239 _V3OpenConfigWindow ();
240 *(volatile unsigned short *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
241 PCI_FUNC (dev),
242 offset) = val;
243 _V3CloseConfigWindow ();
wdenk4989f872004-03-14 15:06:13 +0000244
wdenkc35ba4e2004-03-14 22:25:36 +0000245 return 0;
wdenk4989f872004-03-14 15:06:13 +0000246}
247
wdenkc35ba4e2004-03-14 22:25:36 +0000248static int pci_integrator_write_dword (struct pci_controller *hose,
249 pci_dev_t dev, int offset,
250 unsigned int val)
wdenk4989f872004-03-14 15:06:13 +0000251{
wdenkc35ba4e2004-03-14 22:25:36 +0000252 _V3OpenConfigWindow ();
253 *(volatile unsigned short *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
254 PCI_FUNC (dev),
255 offset) = (val & 0xFFFF);
256 *(volatile unsigned short *) PCI_CONFIG_ADDRESS (PCI_BUS (dev),
257 PCI_FUNC (dev),
258 (offset + 2)) = ((val >> 16) & 0xFFFF);
259 _V3CloseConfigWindow ();
wdenk4989f872004-03-14 15:06:13 +0000260
wdenkc35ba4e2004-03-14 22:25:36 +0000261 return 0;
wdenk4989f872004-03-14 15:06:13 +0000262}
wdenk4989f872004-03-14 15:06:13 +0000263/******************************
264 * PCI initialisation
265 ******************************/
266
267struct pci_controller integrator_hose = {
268#ifndef CONFIG_PCI_PNP
269 config_table: pci_integrator_config_table,
270#endif
271};
272
wdenkc35ba4e2004-03-14 22:25:36 +0000273void pci_init_board (void)
wdenk4989f872004-03-14 15:06:13 +0000274{
wdenkc35ba4e2004-03-14 22:25:36 +0000275 volatile int i, j;
276 struct pci_controller *hose = &integrator_hose;
wdenk4989f872004-03-14 15:06:13 +0000277
wdenkc35ba4e2004-03-14 22:25:36 +0000278 /* setting this register will take the V3 out of reset */
wdenk4989f872004-03-14 15:06:13 +0000279
wdenkc35ba4e2004-03-14 22:25:36 +0000280 *(volatile unsigned int *) (INTEGRATOR_SC_PCIENABLE) = 1;
wdenk4989f872004-03-14 15:06:13 +0000281
wdenkc35ba4e2004-03-14 22:25:36 +0000282 /* wait a few usecs to settle the device and the PCI bus */
wdenk4989f872004-03-14 15:06:13 +0000283
wdenkc35ba4e2004-03-14 22:25:36 +0000284 for (i = 0; i < 100; i++)
285 j = i + 1;
wdenk4989f872004-03-14 15:06:13 +0000286
wdenkc35ba4e2004-03-14 22:25:36 +0000287 /* Now write the Base I/O Address Word to V3_BASE + 0x6C */
wdenk4989f872004-03-14 15:06:13 +0000288
wdenkc35ba4e2004-03-14 22:25:36 +0000289 *(volatile unsigned short *) (V3_BASE + V3_LB_IO_BASE) =
290 (unsigned short) (V3_BASE >> 16);
wdenk4989f872004-03-14 15:06:13 +0000291
wdenkc35ba4e2004-03-14 22:25:36 +0000292 do {
293 *(volatile unsigned char *) (V3_BASE + V3_MAIL_DATA) = 0xAA;
294 *(volatile unsigned char *) (V3_BASE + V3_MAIL_DATA + 4) =
295 0x55;
296 } while (*(volatile unsigned char *) (V3_BASE + V3_MAIL_DATA) != 0xAA
297 || *(volatile unsigned char *) (V3_BASE + V3_MAIL_DATA +
298 4) != 0x55);
wdenk4989f872004-03-14 15:06:13 +0000299
wdenkc35ba4e2004-03-14 22:25:36 +0000300 /* Make sure that V3 register access is not locked, if it is, unlock it */
wdenk4989f872004-03-14 15:06:13 +0000301
wdenkc35ba4e2004-03-14 22:25:36 +0000302 if ((*(volatile unsigned short *) (V3_BASE + V3_SYSTEM) &
303 V3_SYSTEM_M_LOCK)
304 == V3_SYSTEM_M_LOCK)
305 *(volatile unsigned short *) (V3_BASE + V3_SYSTEM) = 0xA05F;
wdenk4989f872004-03-14 15:06:13 +0000306
wdenkc35ba4e2004-03-14 22:25:36 +0000307 /* Ensure that the slave accesses from PCI are disabled while we */
308 /* setup windows */
wdenk4989f872004-03-14 15:06:13 +0000309
wdenkc35ba4e2004-03-14 22:25:36 +0000310 *(volatile unsigned short *) (V3_BASE + V3_PCI_CMD) &=
311 ~(V3_COMMAND_M_MEM_EN | V3_COMMAND_M_IO_EN);
wdenk4989f872004-03-14 15:06:13 +0000312
wdenkc35ba4e2004-03-14 22:25:36 +0000313 /* Clear RST_OUT to 0; keep the PCI bus in reset until we've finished */
wdenk4989f872004-03-14 15:06:13 +0000314
wdenkc35ba4e2004-03-14 22:25:36 +0000315 *(volatile unsigned short *) (V3_BASE + V3_SYSTEM) &=
316 ~V3_SYSTEM_M_RST_OUT;
wdenk4989f872004-03-14 15:06:13 +0000317
wdenkc35ba4e2004-03-14 22:25:36 +0000318 /* Make all accesses from PCI space retry until we're ready for them */
wdenk4989f872004-03-14 15:06:13 +0000319
wdenkc35ba4e2004-03-14 22:25:36 +0000320 *(volatile unsigned short *) (V3_BASE + V3_PCI_CFG) |=
321 V3_PCI_CFG_M_RETRY_EN;
wdenk4989f872004-03-14 15:06:13 +0000322
wdenkc35ba4e2004-03-14 22:25:36 +0000323 /* Set up any V3 PCI Configuration Registers that we absolutely have to */
324 /* LB_CFG controls Local Bus protocol. */
325 /* Enable LocalBus byte strobes for READ accesses too. */
326 /* set bit 7 BE_IMODE and bit 6 BE_OMODE */
wdenk4989f872004-03-14 15:06:13 +0000327
wdenkc35ba4e2004-03-14 22:25:36 +0000328 *(volatile unsigned short *) (V3_BASE + V3_LB_CFG) |= 0x0C0;
wdenk4989f872004-03-14 15:06:13 +0000329
wdenkc35ba4e2004-03-14 22:25:36 +0000330 /* PCI_CMD controls overall PCI operation. */
331 /* Enable PCI bus master. */
wdenk4989f872004-03-14 15:06:13 +0000332
wdenkc35ba4e2004-03-14 22:25:36 +0000333 *(volatile unsigned short *) (V3_BASE + V3_PCI_CMD) |= 0x04;
wdenk4989f872004-03-14 15:06:13 +0000334
wdenkc35ba4e2004-03-14 22:25:36 +0000335 /* PCI_MAP0 controls where the PCI to CPU memory window is on Local Bus */
wdenk4989f872004-03-14 15:06:13 +0000336
wdenkc35ba4e2004-03-14 22:25:36 +0000337 *(volatile unsigned int *) (V3_BASE + V3_PCI_MAP0) =
338 (INTEGRATOR_BOOT_ROM_BASE) | (V3_PCI_MAP_M_ADR_SIZE_512M |
339 V3_PCI_MAP_M_REG_EN |
340 V3_PCI_MAP_M_ENABLE);
wdenk4989f872004-03-14 15:06:13 +0000341
wdenkc35ba4e2004-03-14 22:25:36 +0000342 /* PCI_BASE0 is the PCI address of the start of the window */
wdenk4989f872004-03-14 15:06:13 +0000343
wdenkc35ba4e2004-03-14 22:25:36 +0000344 *(volatile unsigned int *) (V3_BASE + V3_PCI_BASE0) =
345 INTEGRATOR_BOOT_ROM_BASE;
wdenk4989f872004-03-14 15:06:13 +0000346
wdenkc35ba4e2004-03-14 22:25:36 +0000347 /* PCI_MAP1 is LOCAL address of the start of the window */
wdenk4989f872004-03-14 15:06:13 +0000348
wdenkc35ba4e2004-03-14 22:25:36 +0000349 *(volatile unsigned int *) (V3_BASE + V3_PCI_MAP1) =
350 (INTEGRATOR_HDR0_SDRAM_BASE) | (V3_PCI_MAP_M_ADR_SIZE_1024M |
351 V3_PCI_MAP_M_REG_EN |
352 V3_PCI_MAP_M_ENABLE);
wdenk4989f872004-03-14 15:06:13 +0000353
wdenkc35ba4e2004-03-14 22:25:36 +0000354 /* PCI_BASE1 is the PCI address of the start of the window */
wdenk4989f872004-03-14 15:06:13 +0000355
wdenkc35ba4e2004-03-14 22:25:36 +0000356 *(volatile unsigned int *) (V3_BASE + V3_PCI_BASE1) =
357 INTEGRATOR_HDR0_SDRAM_BASE;
wdenk4989f872004-03-14 15:06:13 +0000358
wdenkc35ba4e2004-03-14 22:25:36 +0000359 /* Set up the windows from local bus memory into PCI configuration, */
360 /* I/O and Memory. */
361 /* PCI I/O, LB_BASE2 and LB_MAP2 are used exclusively for this. */
wdenk4989f872004-03-14 15:06:13 +0000362
wdenkc35ba4e2004-03-14 22:25:36 +0000363 *(volatile unsigned short *) (V3_BASE + V3_LB_BASE2) =
364 ((CPU_PCI_IO_ADRS >> 24) << 8) | V3_LB_BASE_M_ENABLE;
365 *(volatile unsigned short *) (V3_BASE + V3_LB_MAP2) = 0;
wdenk4989f872004-03-14 15:06:13 +0000366
wdenkc35ba4e2004-03-14 22:25:36 +0000367 /* PCI Configuration, use LB_BASE1/LB_MAP1. */
wdenk4989f872004-03-14 15:06:13 +0000368
wdenkc35ba4e2004-03-14 22:25:36 +0000369 /* PCI Memory use LB_BASE0/LB_MAP0 and LB_BASE1/LB_MAP1 */
370 /* Map first 256Mbytes as non-prefetchable via BASE0/MAP0 */
371 /* (INTEGRATOR_PCI_BASE == PCI_MEM_BASE) */
wdenk4989f872004-03-14 15:06:13 +0000372
wdenkc35ba4e2004-03-14 22:25:36 +0000373 *(volatile unsigned int *) (V3_BASE + V3_LB_BASE0) =
374 INTEGRATOR_PCI_BASE | (0x80 | V3_LB_BASE_M_ENABLE);
wdenk4989f872004-03-14 15:06:13 +0000375
wdenkc35ba4e2004-03-14 22:25:36 +0000376 *(volatile unsigned short *) (V3_BASE + V3_LB_MAP0) =
377 ((INTEGRATOR_PCI_BASE >> 20) << 0x4) | 0x0006;
wdenk4989f872004-03-14 15:06:13 +0000378
wdenkc35ba4e2004-03-14 22:25:36 +0000379 /* Map second 256 Mbytes as prefetchable via BASE1/MAP1 */
wdenk4989f872004-03-14 15:06:13 +0000380
wdenkc35ba4e2004-03-14 22:25:36 +0000381 *(volatile unsigned int *) (V3_BASE + V3_LB_BASE1) =
382 INTEGRATOR_PCI_BASE | (0x84 | V3_LB_BASE_M_ENABLE);
wdenk4989f872004-03-14 15:06:13 +0000383
wdenkc35ba4e2004-03-14 22:25:36 +0000384 *(volatile unsigned short *) (V3_BASE + V3_LB_MAP1) =
385 (((INTEGRATOR_PCI_BASE + 0x10000000) >> 20) << 4) | 0x0006;
wdenk4989f872004-03-14 15:06:13 +0000386
wdenkc35ba4e2004-03-14 22:25:36 +0000387 /* Allow accesses to PCI Configuration space */
388 /* and set up A1, A0 for type 1 config cycles */
wdenk4989f872004-03-14 15:06:13 +0000389
wdenkc35ba4e2004-03-14 22:25:36 +0000390 *(volatile unsigned short *) (V3_BASE + V3_PCI_CFG) =
391 ((*(volatile unsigned short *) (V3_BASE + V3_PCI_CFG)) &
392 ~(V3_PCI_CFG_M_RETRY_EN | V3_PCI_CFG_M_AD_LOW1)) |
393 V3_PCI_CFG_M_AD_LOW0;
wdenk4989f872004-03-14 15:06:13 +0000394
wdenkc35ba4e2004-03-14 22:25:36 +0000395 /* now we can allow in PCI MEMORY accesses */
wdenk4989f872004-03-14 15:06:13 +0000396
wdenkc35ba4e2004-03-14 22:25:36 +0000397 *(volatile unsigned short *) (V3_BASE + V3_PCI_CMD) =
398 (*(volatile unsigned short *) (V3_BASE + V3_PCI_CMD)) |
399 V3_COMMAND_M_MEM_EN;
wdenk4989f872004-03-14 15:06:13 +0000400
wdenkc35ba4e2004-03-14 22:25:36 +0000401 /* Set RST_OUT to take the PCI bus is out of reset, PCI devices can */
402 /* initialise and lock the V3 system register so that no one else */
403 /* can play with it */
wdenk4989f872004-03-14 15:06:13 +0000404
wdenkc35ba4e2004-03-14 22:25:36 +0000405 *(volatile unsigned short *) (V3_BASE + V3_SYSTEM) =
406 (*(volatile unsigned short *) (V3_BASE + V3_SYSTEM)) |
407 V3_SYSTEM_M_RST_OUT;
wdenk4989f872004-03-14 15:06:13 +0000408
wdenkc35ba4e2004-03-14 22:25:36 +0000409 *(volatile unsigned short *) (V3_BASE + V3_SYSTEM) =
410 (*(volatile unsigned short *) (V3_BASE + V3_SYSTEM)) |
411 V3_SYSTEM_M_LOCK;
wdenk4989f872004-03-14 15:06:13 +0000412
wdenkc35ba4e2004-03-14 22:25:36 +0000413 /*
414 * Register the hose
415 */
416 hose->first_busno = 0;
417 hose->last_busno = 0xff;
wdenk4989f872004-03-14 15:06:13 +0000418
wdenkc35ba4e2004-03-14 22:25:36 +0000419 /* System memory space */
420 pci_set_region (hose->regions + 0,
421 0x00000000, 0x40000000, 0x01000000,
422 PCI_REGION_MEM | PCI_REGION_MEMORY);
wdenk4989f872004-03-14 15:06:13 +0000423
wdenkc35ba4e2004-03-14 22:25:36 +0000424 /* PCI Memory - config space */
425 pci_set_region (hose->regions + 1,
426 0x00000000, 0x62000000, 0x01000000, PCI_REGION_MEM);
wdenk4989f872004-03-14 15:06:13 +0000427
wdenkc35ba4e2004-03-14 22:25:36 +0000428 /* PCI V3 regs */
429 pci_set_region (hose->regions + 2,
430 0x00000000, 0x61000000, 0x00080000, PCI_REGION_MEM);
wdenk4989f872004-03-14 15:06:13 +0000431
wdenkc35ba4e2004-03-14 22:25:36 +0000432 /* PCI I/O space */
433 pci_set_region (hose->regions + 3,
434 0x00000000, 0x60000000, 0x00010000, PCI_REGION_IO);
wdenk4989f872004-03-14 15:06:13 +0000435
wdenkc35ba4e2004-03-14 22:25:36 +0000436 pci_set_ops (hose,
437 pci_integrator_read_byte,
438 pci_integrator_read__word,
439 pci_integrator_read_dword,
440 pci_integrator_write_byte,
441 pci_integrator_write_word, pci_integrator_write_dword);
wdenk4989f872004-03-14 15:06:13 +0000442
wdenkc35ba4e2004-03-14 22:25:36 +0000443 hose->region_count = 4;
wdenk4989f872004-03-14 15:06:13 +0000444
wdenkc35ba4e2004-03-14 22:25:36 +0000445 pci_register_hose (hose);
wdenk4989f872004-03-14 15:06:13 +0000446
wdenkc35ba4e2004-03-14 22:25:36 +0000447 pciauto_config_init (hose);
448 pciauto_config_device (hose, 0);
wdenk4989f872004-03-14 15:06:13 +0000449
wdenkc35ba4e2004-03-14 22:25:36 +0000450 hose->last_busno = pci_hose_scan (hose);
wdenk4989f872004-03-14 15:06:13 +0000451}
452#endif
453
454/******************************
455 Routine:
456 Description:
457******************************/
458void flash__init (void)
459{
460}
461/*************************************************************
462 Routine:ether__init
463 Description: take the Ethernet controller out of reset and wait
464 for the EEPROM load to complete.
465*************************************************************/
466void ether__init (void)
467{
468}
469
470/******************************
471 Routine:
472 Description:
473******************************/
474int dram_init (void)
475{
476 return 0;
477}