blob: 28efc33f1f426bd3d28d3d9f53943a099960e6d8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +02002/*
3 * (C) Copyright 2002
4 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
5 * Marius Groeger <mgroeger@sysgo.de>
6 *
7 * (C) Copyright 2002
8 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
9 *
10 * (C) Copyright 2003
11 * Texas Instruments, <www.ti.com>
12 * Kshitij Gupta <Kshitij@ti.com>
13 *
14 * (C) Copyright 2004
15 * ARM Ltd.
16 * Philippe Robin, <philippe.robin@arm.com>
17 *
Linus Walleij24587162012-01-30 13:49:34 +000018 * (C) Copyright 2011
19 * Linaro
20 * Linus Walleij <linus.walleij@linaro.org>
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020021 */
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020022#include <common.h>
Simon Glass2cf431c2019-11-14 12:57:47 -070023#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060024#include <log.h>
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020025#include <pci.h>
Linus Walleij24587162012-01-30 13:49:34 +000026#include <asm/io.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060027#include <linux/bug.h>
Simon Glassc05ed002020-05-10 11:40:11 -060028#include <linux/delay.h>
Linus Walleij24587162012-01-30 13:49:34 +000029#include "integrator-sc.h"
30#include "pci_v3.h"
31
32#define INTEGRATOR_BOOT_ROM_BASE 0x20000000
33#define INTEGRATOR_HDR0_SDRAM_BASE 0x80000000
34
35/*
36 * These are in the physical addresses on the CPU side, i.e.
37 * where we read and write stuff - you don't want to try to
38 * move these around
39 */
40#define PHYS_PCI_MEM_BASE 0x40000000
41#define PHYS_PCI_IO_BASE 0x60000000 /* PCI I/O space base */
42#define PHYS_PCI_CONFIG_BASE 0x61000000
43#define PHYS_PCI_V3_BASE 0x62000000 /* V360EPC registers */
44#define SZ_256M 0x10000000
45
46/*
47 * These are in the PCI BUS address space
48 * Set to 0x00000000 in the Linux kernel, 0x40000000 in Boot monitor
49 * we follow the example of the kernel, because that is the address
50 * range that devices actually use - what would they be doing at
51 * 0x40000000?
52 */
53#define PCI_BUS_NONMEM_START 0x00000000
54#define PCI_BUS_NONMEM_SIZE SZ_256M
55
56#define PCI_BUS_PREMEM_START (PCI_BUS_NONMEM_START + PCI_BUS_NONMEM_SIZE)
57#define PCI_BUS_PREMEM_SIZE SZ_256M
58
59#if PCI_BUS_NONMEM_START & 0x000fffff
60#error PCI_BUS_NONMEM_START must be megabyte aligned
61#endif
62#if PCI_BUS_PREMEM_START & 0x000fffff
63#error PCI_BUS_PREMEM_START must be megabyte aligned
64#endif
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020065
66/*
67 * Initialize PCI Devices, report devices found.
68 */
69
70#ifndef CONFIG_PCI_PNP
Linus Walleij24587162012-01-30 13:49:34 +000071#define PCI_ENET0_IOADDR 0x60000000 /* First card in PCI I/O space */
72#define PCI_ENET0_MEMADDR 0x40000000 /* First card in PCI memory space */
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020073static struct pci_config_table pci_integrator_config_table[] = {
74 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0x0f, PCI_ANY_ID,
75 pci_cfgfunc_config_device, { PCI_ENET0_IOADDR,
76 PCI_ENET0_MEMADDR,
77 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }},
78 { }
79};
80#endif /* CONFIG_PCI_PNP */
81
82/* V3 access routines */
Linus Walleij24587162012-01-30 13:49:34 +000083#define v3_writeb(o, v) __raw_writeb(v, PHYS_PCI_V3_BASE + (unsigned int)(o))
84#define v3_readb(o) (__raw_readb(PHYS_PCI_V3_BASE + (unsigned int)(o)))
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020085
Linus Walleij24587162012-01-30 13:49:34 +000086#define v3_writew(o, v) __raw_writew(v, PHYS_PCI_V3_BASE + (unsigned int)(o))
87#define v3_readw(o) (__raw_readw(PHYS_PCI_V3_BASE + (unsigned int)(o)))
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020088
Linus Walleij24587162012-01-30 13:49:34 +000089#define v3_writel(o, v) __raw_writel(v, PHYS_PCI_V3_BASE + (unsigned int)(o))
90#define v3_readl(o) (__raw_readl(PHYS_PCI_V3_BASE + (unsigned int)(o)))
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020091
Linus Walleij24587162012-01-30 13:49:34 +000092static unsigned long v3_open_config_window(pci_dev_t bdf, int offset)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020093{
Linus Walleij24587162012-01-30 13:49:34 +000094 unsigned int address, mapaddress;
95 unsigned int busnr = PCI_BUS(bdf);
96 unsigned int devfn = PCI_FUNC(bdf);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +020097
Linus Walleij24587162012-01-30 13:49:34 +000098 /*
99 * Trap out illegal values
100 */
101 if (offset > 255)
102 BUG();
103 if (busnr > 255)
104 BUG();
105 if (devfn > 255)
106 BUG();
107
108 if (busnr == 0) {
109 /*
110 * Linux calls the thing U-Boot calls "DEV" "SLOT"
111 * instead, but it's the same 5 bits
112 */
113 int slot = PCI_DEV(bdf);
114
115 /*
116 * local bus segment so need a type 0 config cycle
117 *
118 * build the PCI configuration "address" with one-hot in
119 * A31-A11
120 *
121 * mapaddress:
122 * 3:1 = config cycle (101)
123 * 0 = PCI A1 & A0 are 0 (0)
124 */
125 address = PCI_FUNC(bdf) << 8;
126 mapaddress = V3_LB_MAP_TYPE_CONFIG;
127
128 if (slot > 12)
129 /*
130 * high order bits are handled by the MAP register
131 */
132 mapaddress |= 1 << (slot - 5);
133 else
134 /*
135 * low order bits handled directly in the address
136 */
137 address |= 1 << (slot + 11);
138 } else {
139 /*
140 * not the local bus segment so need a type 1 config cycle
141 *
142 * address:
143 * 23:16 = bus number
144 * 15:11 = slot number (7:3 of devfn)
145 * 10:8 = func number (2:0 of devfn)
146 *
147 * mapaddress:
148 * 3:1 = config cycle (101)
149 * 0 = PCI A1 & A0 from host bus (1)
150 */
151 mapaddress = V3_LB_MAP_TYPE_CONFIG | V3_LB_MAP_AD_LOW_EN;
152 address = (busnr << 16) | (devfn << 8);
153 }
154
155 /*
156 * Set up base0 to see all 512Mbytes of memory space (not
157 * prefetchable), this frees up base1 for re-use by
158 * configuration memory
159 */
160 v3_writel(V3_LB_BASE0, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE) |
161 V3_LB_BASE_ADR_SIZE_512MB | V3_LB_BASE_ENABLE);
162
163 /*
164 * Set up base1/map1 to point into configuration space.
165 */
166 v3_writel(V3_LB_BASE1, v3_addr_to_lb_base(PHYS_PCI_CONFIG_BASE) |
167 V3_LB_BASE_ADR_SIZE_16MB | V3_LB_BASE_ENABLE);
168 v3_writew(V3_LB_MAP1, mapaddress);
169
170 return PHYS_PCI_CONFIG_BASE + address + offset;
171}
172
173static void v3_close_config_window(void)
174{
175 /*
176 * Reassign base1 for use by prefetchable PCI memory
177 */
178 v3_writel(V3_LB_BASE1, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE + SZ_256M) |
179 V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_PREFETCH |
180 V3_LB_BASE_ENABLE);
181 v3_writew(V3_LB_MAP1, v3_addr_to_lb_map(PCI_BUS_PREMEM_START) |
182 V3_LB_MAP_TYPE_MEM_MULTIPLE);
183
184 /*
185 * And shrink base0 back to a 256M window (NOTE: MAP0 already correct)
186 */
187 v3_writel(V3_LB_BASE0, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE) |
188 V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_ENABLE);
189}
190
191static int pci_integrator_read_byte(struct pci_controller *hose, pci_dev_t bdf,
192 int offset, unsigned char *val)
193{
194 unsigned long addr;
195
196 addr = v3_open_config_window(bdf, offset);
197 *val = __raw_readb(addr);
198 v3_close_config_window();
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200199 return 0;
200}
201
Linus Walleij24587162012-01-30 13:49:34 +0000202static int pci_integrator_read__word(struct pci_controller *hose,
203 pci_dev_t bdf, int offset,
204 unsigned short *val)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200205{
Linus Walleij24587162012-01-30 13:49:34 +0000206 unsigned long addr;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200207
Linus Walleij24587162012-01-30 13:49:34 +0000208 addr = v3_open_config_window(bdf, offset);
209 *val = __raw_readw(addr);
210 v3_close_config_window();
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200211 return 0;
212}
213
Linus Walleij24587162012-01-30 13:49:34 +0000214static int pci_integrator_read_dword(struct pci_controller *hose,
215 pci_dev_t bdf, int offset,
216 unsigned int *val)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200217{
Linus Walleij24587162012-01-30 13:49:34 +0000218 unsigned long addr;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200219
Linus Walleij24587162012-01-30 13:49:34 +0000220 addr = v3_open_config_window(bdf, offset);
221 *val = __raw_readl(addr);
222 v3_close_config_window();
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200223 return 0;
224}
225
Linus Walleij24587162012-01-30 13:49:34 +0000226static int pci_integrator_write_byte(struct pci_controller *hose,
227 pci_dev_t bdf, int offset,
228 unsigned char val)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200229{
Linus Walleij24587162012-01-30 13:49:34 +0000230 unsigned long addr;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200231
Linus Walleij24587162012-01-30 13:49:34 +0000232 addr = v3_open_config_window(bdf, offset);
233 __raw_writeb((u8)val, addr);
234 __raw_readb(addr);
235 v3_close_config_window();
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200236 return 0;
237}
238
Linus Walleij24587162012-01-30 13:49:34 +0000239static int pci_integrator_write_word(struct pci_controller *hose,
240 pci_dev_t bdf, int offset,
241 unsigned short val)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200242{
Linus Walleij24587162012-01-30 13:49:34 +0000243 unsigned long addr;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200244
Linus Walleij24587162012-01-30 13:49:34 +0000245 addr = v3_open_config_window(bdf, offset);
246 __raw_writew((u8)val, addr);
247 __raw_readw(addr);
248 v3_close_config_window();
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200249 return 0;
250}
251
Linus Walleij24587162012-01-30 13:49:34 +0000252static int pci_integrator_write_dword(struct pci_controller *hose,
253 pci_dev_t bdf, int offset,
254 unsigned int val)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200255{
Linus Walleij24587162012-01-30 13:49:34 +0000256 unsigned long addr;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200257
Linus Walleij24587162012-01-30 13:49:34 +0000258 addr = v3_open_config_window(bdf, offset);
259 __raw_writel((u8)val, addr);
260 __raw_readl(addr);
261 v3_close_config_window();
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200262 return 0;
263}
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200264
265struct pci_controller integrator_hose = {
266#ifndef CONFIG_PCI_PNP
267 config_table: pci_integrator_config_table,
268#endif
269};
270
Linus Walleij24587162012-01-30 13:49:34 +0000271void pci_init_board(void)
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200272{
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200273 struct pci_controller *hose = &integrator_hose;
Linus Walleij24587162012-01-30 13:49:34 +0000274 u16 val;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200275
276 /* setting this register will take the V3 out of reset */
Linus Walleij24587162012-01-30 13:49:34 +0000277 __raw_writel(SC_PCI_PCIEN, SC_PCI);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200278
Linus Walleijfca94c32012-03-03 21:21:13 +0100279 /* Wait for 230 ms (from spec) before accessing any V3 registers */
280 mdelay(230);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200281
Linus Walleij24587162012-01-30 13:49:34 +0000282 /* Now write the Base I/O Address Word to PHYS_PCI_V3_BASE + 0x6E */
283 v3_writew(V3_LB_IO_BASE, (PHYS_PCI_V3_BASE >> 16));
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200284
Linus Walleij24587162012-01-30 13:49:34 +0000285 /* Wait for the mailbox to settle */
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200286 do {
Linus Walleij24587162012-01-30 13:49:34 +0000287 v3_writeb(V3_MAIL_DATA, 0xAA);
288 v3_writeb(V3_MAIL_DATA + 4, 0x55);
289 } while (v3_readb(V3_MAIL_DATA) != 0xAA ||
290 v3_readb(V3_MAIL_DATA + 4) != 0x55);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200291
292 /* Make sure that V3 register access is not locked, if it is, unlock it */
Linus Walleij24587162012-01-30 13:49:34 +0000293 if (v3_readw(V3_SYSTEM) & V3_SYSTEM_M_LOCK)
294 v3_writew(V3_SYSTEM, 0xA05F);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200295
Linus Walleij24587162012-01-30 13:49:34 +0000296 /*
297 * Ensure that the slave accesses from PCI are disabled while we
298 * setup memory windows
299 */
300 val = v3_readw(V3_PCI_CMD);
301 val &= ~(V3_COMMAND_M_MEM_EN | V3_COMMAND_M_IO_EN);
302 v3_writew(V3_PCI_CMD, val);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200303
304 /* Clear RST_OUT to 0; keep the PCI bus in reset until we've finished */
Linus Walleij24587162012-01-30 13:49:34 +0000305 val = v3_readw(V3_SYSTEM);
306 val &= ~V3_SYSTEM_M_RST_OUT;
307 v3_writew(V3_SYSTEM, val);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200308
309 /* Make all accesses from PCI space retry until we're ready for them */
Linus Walleij24587162012-01-30 13:49:34 +0000310 val = v3_readw(V3_PCI_CFG);
311 val |= V3_PCI_CFG_M_RETRY_EN;
312 v3_writew(V3_PCI_CFG, val);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200313
Linus Walleij24587162012-01-30 13:49:34 +0000314 /*
315 * Set up any V3 PCI Configuration Registers that we absolutely have to.
316 * LB_CFG controls Local Bus protocol.
317 * Enable LocalBus byte strobes for READ accesses too.
318 * set bit 7 BE_IMODE and bit 6 BE_OMODE
319 */
320 val = v3_readw(V3_LB_CFG);
321 val |= 0x0C0;
322 v3_writew(V3_LB_CFG, val);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200323
Linus Walleij24587162012-01-30 13:49:34 +0000324 /* PCI_CMD controls overall PCI operation. Enable PCI bus master. */
325 val = v3_readw(V3_PCI_CMD);
326 val |= V3_COMMAND_M_MASTER_EN;
327 v3_writew(V3_PCI_CMD, val);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200328
Linus Walleij24587162012-01-30 13:49:34 +0000329 /*
330 * PCI_MAP0 controls where the PCI to CPU memory window is on
331 * Local Bus
332 */
333 v3_writel(V3_PCI_MAP0,
334 (INTEGRATOR_BOOT_ROM_BASE) | (V3_PCI_MAP_M_ADR_SIZE_512MB |
335 V3_PCI_MAP_M_REG_EN |
336 V3_PCI_MAP_M_ENABLE));
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200337
338 /* PCI_BASE0 is the PCI address of the start of the window */
Linus Walleij24587162012-01-30 13:49:34 +0000339 v3_writel(V3_PCI_BASE0, INTEGRATOR_BOOT_ROM_BASE);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200340
341 /* PCI_MAP1 is LOCAL address of the start of the window */
Linus Walleij24587162012-01-30 13:49:34 +0000342 v3_writel(V3_PCI_MAP1,
343 (INTEGRATOR_HDR0_SDRAM_BASE) | (V3_PCI_MAP_M_ADR_SIZE_1GB |
344 V3_PCI_MAP_M_REG_EN |
345 V3_PCI_MAP_M_ENABLE));
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200346
347 /* PCI_BASE1 is the PCI address of the start of the window */
Linus Walleij24587162012-01-30 13:49:34 +0000348 v3_writel(V3_PCI_BASE1, INTEGRATOR_HDR0_SDRAM_BASE);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200349
Linus Walleij24587162012-01-30 13:49:34 +0000350 /*
351 * Set up memory the windows from local bus memory into PCI
352 * configuration, I/O and Memory regions.
353 * PCI I/O, LB_BASE2 and LB_MAP2 are used exclusively for this.
354 */
355 v3_writew(V3_LB_BASE2,
356 v3_addr_to_lb_map(PHYS_PCI_IO_BASE) | V3_LB_BASE_ENABLE);
357 v3_writew(V3_LB_MAP2, 0);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200358
359 /* PCI Configuration, use LB_BASE1/LB_MAP1. */
360
Linus Walleij24587162012-01-30 13:49:34 +0000361 /*
362 * PCI Memory use LB_BASE0/LB_MAP0 and LB_BASE1/LB_MAP1
363 * Map first 256Mbytes as non-prefetchable via BASE0/MAP0
364 */
365 v3_writel(V3_LB_BASE0, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE) |
366 V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_ENABLE);
367 v3_writew(V3_LB_MAP0,
368 v3_addr_to_lb_map(PCI_BUS_NONMEM_START) | V3_LB_MAP_TYPE_MEM);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200369
370 /* Map second 256 Mbytes as prefetchable via BASE1/MAP1 */
Linus Walleij24587162012-01-30 13:49:34 +0000371 v3_writel(V3_LB_BASE1, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE + SZ_256M) |
372 V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_PREFETCH |
373 V3_LB_BASE_ENABLE);
374 v3_writew(V3_LB_MAP1, v3_addr_to_lb_map(PCI_BUS_PREMEM_START) |
375 V3_LB_MAP_TYPE_MEM_MULTIPLE);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200376
Linus Walleij24587162012-01-30 13:49:34 +0000377 /* Dump PCI to local address space mappings */
378 debug("LB_BASE0 = %08x\n", v3_readl(V3_LB_BASE0));
379 debug("LB_MAP0 = %04x\n", v3_readw(V3_LB_MAP0));
380 debug("LB_BASE1 = %08x\n", v3_readl(V3_LB_BASE1));
381 debug("LB_MAP1 = %04x\n", v3_readw(V3_LB_MAP1));
382 debug("LB_BASE2 = %04x\n", v3_readw(V3_LB_BASE2));
383 debug("LB_MAP2 = %04x\n", v3_readw(V3_LB_MAP2));
384 debug("LB_IO_BASE = %04x\n", v3_readw(V3_LB_IO_BASE));
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200385
386 /*
Linus Walleij24587162012-01-30 13:49:34 +0000387 * Allow accesses to PCI Configuration space and set up A1, A0 for
388 * type 1 config cycles
389 */
390 val = v3_readw(V3_PCI_CFG);
391 val &= ~(V3_PCI_CFG_M_RETRY_EN | V3_PCI_CFG_M_AD_LOW1);
392 val |= V3_PCI_CFG_M_AD_LOW0;
393 v3_writew(V3_PCI_CFG, val);
394
395 /* now we can allow incoming PCI MEMORY accesses */
396 val = v3_readw(V3_PCI_CMD);
397 val |= V3_COMMAND_M_MEM_EN;
398 v3_writew(V3_PCI_CMD, val);
399
400 /*
401 * Set RST_OUT to take the PCI bus is out of reset, PCI devices can
402 * now initialise.
403 */
404 val = v3_readw(V3_SYSTEM);
405 val |= V3_SYSTEM_M_RST_OUT;
406 v3_writew(V3_SYSTEM, val);
407
408 /* Lock the V3 system register so that no one else can play with it */
409 val = v3_readw(V3_SYSTEM);
410 val |= V3_SYSTEM_M_LOCK;
411 v3_writew(V3_SYSTEM, val);
412
413 /*
414 * Configure and register the PCI hose
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200415 */
416 hose->first_busno = 0;
417 hose->last_busno = 0xff;
418
Linus Walleij24587162012-01-30 13:49:34 +0000419 /* System memory space, window 0 256 MB non-prefetchable */
420 pci_set_region(hose->regions + 0,
421 PCI_BUS_NONMEM_START, PHYS_PCI_MEM_BASE,
422 SZ_256M,
423 PCI_REGION_MEM);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200424
Linus Walleij24587162012-01-30 13:49:34 +0000425 /* System memory space, window 1 256 MB prefetchable */
426 pci_set_region(hose->regions + 1,
427 PCI_BUS_PREMEM_START, PHYS_PCI_MEM_BASE + SZ_256M,
428 SZ_256M,
429 PCI_REGION_MEM |
430 PCI_REGION_PREFETCH);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200431
432 /* PCI I/O space */
Linus Walleij24587162012-01-30 13:49:34 +0000433 pci_set_region(hose->regions + 2,
434 0x00000000, PHYS_PCI_IO_BASE, 0x01000000,
435 PCI_REGION_IO);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200436
Linus Walleij24587162012-01-30 13:49:34 +0000437 /* PCI Memory - config space */
438 pci_set_region(hose->regions + 3,
439 0x00000000, PHYS_PCI_CONFIG_BASE, 0x01000000,
440 PCI_REGION_MEM);
441 /* PCI V3 regs */
442 pci_set_region(hose->regions + 4,
443 0x00000000, PHYS_PCI_V3_BASE, 0x01000000,
444 PCI_REGION_MEM);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200445
Linus Walleij24587162012-01-30 13:49:34 +0000446 hose->region_count = 5;
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200447
Linus Walleij24587162012-01-30 13:49:34 +0000448 pci_set_ops(hose,
449 pci_integrator_read_byte,
450 pci_integrator_read__word,
451 pci_integrator_read_dword,
452 pci_integrator_write_byte,
453 pci_integrator_write_word,
454 pci_integrator_write_dword);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200455
Linus Walleij24587162012-01-30 13:49:34 +0000456 pci_register_hose(hose);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200457
Linus Walleij24587162012-01-30 13:49:34 +0000458 pciauto_config_init(hose);
459 pciauto_config_device(hose, 0);
460
461 hose->last_busno = pci_hose_scan(hose);
Jean-Christophe PLAGNIOL-VILLARD86baa082009-05-17 00:58:36 +0200462}