blob: 5cd0b5d9e7ebbf9e8935bb996c1748ab4d2722ce [file] [log] [blame]
Catalin Marinasc0da0852005-06-20 18:51:06 +01001/*
2 * linux/arch/arm/mach-versatile/pci.c
3 *
4 * (C) Copyright Koninklijke Philips Electronics NV 2004. All rights reserved.
5 * You can redistribute and/or modify this software under the terms of version 2
6 * of the GNU General Public License as published by the Free Software Foundation.
7 * THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED
8 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9 * General Public License for more details.
10 * Koninklijke Philips Electronics nor its subsidiaries is obligated to provide any support for this software.
11 *
12 * ARM Versatile PCI driver.
13 *
14 * 14/04/2005 Initial version, colin.king@philips.com
15 *
16 */
Catalin Marinasc0da0852005-06-20 18:51:06 +010017#include <linux/kernel.h>
18#include <linux/pci.h>
19#include <linux/ptrace.h>
20#include <linux/slab.h>
21#include <linux/ioport.h>
22#include <linux/interrupt.h>
23#include <linux/spinlock.h>
24#include <linux/init.h>
25
26#include <asm/hardware.h>
27#include <asm/io.h>
28#include <asm/irq.h>
29#include <asm/system.h>
30#include <asm/mach/pci.h>
Catalin Marinasc0da0852005-06-20 18:51:06 +010031
32/*
33 * these spaces are mapped using the following base registers:
34 *
35 * Usage Local Bus Memory Base/Map registers used
36 *
37 * Mem 50000000 - 5FFFFFFF LB_BASE0/LB_MAP0, non prefetch
38 * Mem 60000000 - 6FFFFFFF LB_BASE1/LB_MAP1, prefetch
39 * IO 44000000 - 4FFFFFFF LB_BASE2/LB_MAP2, IO
40 * Cfg 42000000 - 42FFFFFF PCI config
41 *
42 */
Al Viro399ad772006-10-11 17:22:34 +010043#define __IO_ADDRESS(n) ((void __iomem *)(unsigned long)IO_ADDRESS(n))
44#define SYS_PCICTL __IO_ADDRESS(VERSATILE_SYS_PCICTL)
45#define PCI_IMAP0 __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0x0)
46#define PCI_IMAP1 __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0x4)
47#define PCI_IMAP2 __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0x8)
48#define PCI_SMAP0 __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0x10)
49#define PCI_SMAP1 __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0x14)
50#define PCI_SMAP2 __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0x18)
51#define PCI_SELFID __IO_ADDRESS(VERSATILE_PCI_CORE_BASE+0xc)
Catalin Marinasc0da0852005-06-20 18:51:06 +010052
53#define DEVICE_ID_OFFSET 0x00
54#define CSR_OFFSET 0x04
55#define CLASS_ID_OFFSET 0x08
56
57#define VP_PCI_DEVICE_ID 0x030010ee
58#define VP_PCI_CLASS_ID 0x0b400000
59
60static unsigned long pci_slot_ignore = 0;
61
62static int __init versatile_pci_slot_ignore(char *str)
63{
64 int retval;
65 int slot;
66
67 while ((retval = get_option(&str,&slot))) {
68 if ((slot < 0) || (slot > 31)) {
69 printk("Illegal slot value: %d\n",slot);
70 } else {
71 pci_slot_ignore |= (1 << slot);
72 }
73 }
74 return 1;
75}
76
77__setup("pci_slot_ignore=", versatile_pci_slot_ignore);
78
79
Al Viro399ad772006-10-11 17:22:34 +010080static void __iomem *__pci_addr(struct pci_bus *bus,
Catalin Marinasc0da0852005-06-20 18:51:06 +010081 unsigned int devfn, int offset)
82{
83 unsigned int busnr = bus->number;
84
85 /*
86 * Trap out illegal values
87 */
88 if (offset > 255)
89 BUG();
90 if (busnr > 255)
91 BUG();
92 if (devfn > 255)
93 BUG();
94
Al Viro399ad772006-10-11 17:22:34 +010095 return VERSATILE_PCI_CFG_VIRT_BASE + ((busnr << 16) |
Catalin Marinasc0da0852005-06-20 18:51:06 +010096 (PCI_SLOT(devfn) << 11) | (PCI_FUNC(devfn) << 8) | offset);
97}
98
99static int versatile_read_config(struct pci_bus *bus, unsigned int devfn, int where,
100 int size, u32 *val)
101{
Al Viro399ad772006-10-11 17:22:34 +0100102 void __iomem *addr = __pci_addr(bus, devfn, where & ~3);
Catalin Marinasc0da0852005-06-20 18:51:06 +0100103 u32 v;
104 int slot = PCI_SLOT(devfn);
105
106 if (pci_slot_ignore & (1 << slot)) {
107 /* Ignore this slot */
108 switch (size) {
109 case 1:
110 v = 0xff;
111 break;
112 case 2:
113 v = 0xffff;
114 break;
115 default:
116 v = 0xffffffff;
117 }
118 } else {
119 switch (size) {
120 case 1:
Catalin Marinasc0da0852005-06-20 18:51:06 +0100121 v = __raw_readb(addr);
122 break;
123
124 case 2:
Al Viro399ad772006-10-11 17:22:34 +0100125 v = __raw_readl(addr);
126 if (where & 2) v >>= 16;
Catalin Marinasc0da0852005-06-20 18:51:06 +0100127 v &= 0xffff;
128 break;
129
130 default:
Catalin Marinasc0da0852005-06-20 18:51:06 +0100131 v = __raw_readl(addr);
132 break;
133 }
134 }
135
136 *val = v;
137 return PCIBIOS_SUCCESSFUL;
138}
139
140static int versatile_write_config(struct pci_bus *bus, unsigned int devfn, int where,
141 int size, u32 val)
142{
Al Viro399ad772006-10-11 17:22:34 +0100143 void __iomem *addr = __pci_addr(bus, devfn, where);
Catalin Marinasc0da0852005-06-20 18:51:06 +0100144 int slot = PCI_SLOT(devfn);
145
146 if (pci_slot_ignore & (1 << slot)) {
147 return PCIBIOS_SUCCESSFUL;
148 }
149
150 switch (size) {
151 case 1:
152 __raw_writeb((u8)val, addr);
153 break;
154
155 case 2:
156 __raw_writew((u16)val, addr);
157 break;
158
159 case 4:
160 __raw_writel(val, addr);
161 break;
162 }
163
164 return PCIBIOS_SUCCESSFUL;
165}
166
167static struct pci_ops pci_versatile_ops = {
168 .read = versatile_read_config,
169 .write = versatile_write_config,
170};
171
172static struct resource io_mem = {
173 .name = "PCI I/O space",
174 .start = VERSATILE_PCI_MEM_BASE0,
175 .end = VERSATILE_PCI_MEM_BASE0+VERSATILE_PCI_MEM_BASE0_SIZE-1,
176 .flags = IORESOURCE_IO,
177};
178
179static struct resource non_mem = {
180 .name = "PCI non-prefetchable",
181 .start = VERSATILE_PCI_MEM_BASE1,
182 .end = VERSATILE_PCI_MEM_BASE1+VERSATILE_PCI_MEM_BASE1_SIZE-1,
183 .flags = IORESOURCE_MEM,
184};
185
186static struct resource pre_mem = {
187 .name = "PCI prefetchable",
188 .start = VERSATILE_PCI_MEM_BASE2,
189 .end = VERSATILE_PCI_MEM_BASE2+VERSATILE_PCI_MEM_BASE2_SIZE-1,
190 .flags = IORESOURCE_MEM | IORESOURCE_PREFETCH,
191};
192
193static int __init pci_versatile_setup_resources(struct resource **resource)
194{
195 int ret = 0;
196
197 ret = request_resource(&iomem_resource, &io_mem);
198 if (ret) {
199 printk(KERN_ERR "PCI: unable to allocate I/O "
200 "memory region (%d)\n", ret);
201 goto out;
202 }
203 ret = request_resource(&iomem_resource, &non_mem);
204 if (ret) {
205 printk(KERN_ERR "PCI: unable to allocate non-prefetchable "
206 "memory region (%d)\n", ret);
207 goto release_io_mem;
208 }
209 ret = request_resource(&iomem_resource, &pre_mem);
210 if (ret) {
211 printk(KERN_ERR "PCI: unable to allocate prefetchable "
212 "memory region (%d)\n", ret);
213 goto release_non_mem;
214 }
215
216 /*
217 * bus->resource[0] is the IO resource for this bus
218 * bus->resource[1] is the mem resource for this bus
219 * bus->resource[2] is the prefetch mem resource for this bus
220 */
221 resource[0] = &io_mem;
222 resource[1] = &non_mem;
223 resource[2] = &pre_mem;
224
225 goto out;
226
227 release_non_mem:
228 release_resource(&non_mem);
229 release_io_mem:
230 release_resource(&io_mem);
231 out:
232 return ret;
233}
234
235int __init pci_versatile_setup(int nr, struct pci_sys_data *sys)
236{
237 int ret = 0;
238 int i;
239 int myslot = -1;
240 unsigned long val;
Catalin Marinasc27a2162006-02-22 19:51:38 +0000241 void __iomem *local_pci_cfg_base;
242
243 val = __raw_readl(SYS_PCICTL);
244 if (!(val & 1)) {
245 printk("Not plugged into PCI backplane!\n");
246 ret = -EIO;
247 goto out;
248 }
Catalin Marinasc0da0852005-06-20 18:51:06 +0100249
250 if (nr == 0) {
251 sys->mem_offset = 0;
252 ret = pci_versatile_setup_resources(sys->resource);
253 if (ret < 0) {
254 printk("pci_versatile_setup: resources... oops?\n");
255 goto out;
256 }
257 } else {
258 printk("pci_versatile_setup: resources... nr == 0??\n");
259 goto out;
260 }
261
Catalin Marinasc0da0852005-06-20 18:51:06 +0100262 /*
263 * We need to discover the PCI core first to configure itself
264 * before the main PCI probing is performed
265 */
Catalin Marinasc27a2162006-02-22 19:51:38 +0000266 for (i=0; i<32; i++)
Catalin Marinasc0da0852005-06-20 18:51:06 +0100267 if ((__raw_readl(VERSATILE_PCI_VIRT_BASE+(i<<11)+DEVICE_ID_OFFSET) == VP_PCI_DEVICE_ID) &&
268 (__raw_readl(VERSATILE_PCI_VIRT_BASE+(i<<11)+CLASS_ID_OFFSET) == VP_PCI_CLASS_ID)) {
269 myslot = i;
Catalin Marinasc0da0852005-06-20 18:51:06 +0100270 break;
271 }
Catalin Marinasc0da0852005-06-20 18:51:06 +0100272
273 if (myslot == -1) {
274 printk("Cannot find PCI core!\n");
275 ret = -EIO;
Catalin Marinasc27a2162006-02-22 19:51:38 +0000276 goto out;
Catalin Marinasc0da0852005-06-20 18:51:06 +0100277 }
278
Catalin Marinasc27a2162006-02-22 19:51:38 +0000279 printk("PCI core found (slot %d)\n",myslot);
280
281 __raw_writel(myslot, PCI_SELFID);
Al Viro399ad772006-10-11 17:22:34 +0100282 local_pci_cfg_base = VERSATILE_PCI_CFG_VIRT_BASE + (myslot << 11);
Catalin Marinasc27a2162006-02-22 19:51:38 +0000283
284 val = __raw_readl(local_pci_cfg_base + CSR_OFFSET);
285 val |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | PCI_COMMAND_INVALIDATE;
286 __raw_writel(val, local_pci_cfg_base + CSR_OFFSET);
287
288 /*
289 * Configure the PCI inbound memory windows to be 1:1 mapped to SDRAM
290 */
291 __raw_writel(PHYS_OFFSET, local_pci_cfg_base + PCI_BASE_ADDRESS_0);
292 __raw_writel(PHYS_OFFSET, local_pci_cfg_base + PCI_BASE_ADDRESS_1);
293 __raw_writel(PHYS_OFFSET, local_pci_cfg_base + PCI_BASE_ADDRESS_2);
294
295 /*
296 * Do not to map Versatile FPGA PCI device into memory space
297 */
298 pci_slot_ignore |= (1 << myslot);
299 ret = 1;
300
Catalin Marinasc0da0852005-06-20 18:51:06 +0100301 out:
302 return ret;
303}
304
305
306struct pci_bus *pci_versatile_scan_bus(int nr, struct pci_sys_data *sys)
307{
308 return pci_scan_bus(sys->busnr, &pci_versatile_ops, sys);
309}
310
Catalin Marinasc0da0852005-06-20 18:51:06 +0100311void __init pci_versatile_preinit(void)
312{
Catalin Marinasc27a2162006-02-22 19:51:38 +0000313 __raw_writel(VERSATILE_PCI_MEM_BASE0 >> 28, PCI_IMAP0);
314 __raw_writel(VERSATILE_PCI_MEM_BASE1 >> 28, PCI_IMAP1);
315 __raw_writel(VERSATILE_PCI_MEM_BASE2 >> 28, PCI_IMAP2);
Catalin Marinasc0da0852005-06-20 18:51:06 +0100316
Catalin Marinasc27a2162006-02-22 19:51:38 +0000317 __raw_writel(PHYS_OFFSET >> 28, PCI_SMAP0);
318 __raw_writel(PHYS_OFFSET >> 28, PCI_SMAP1);
319 __raw_writel(PHYS_OFFSET >> 28, PCI_SMAP2);
Catalin Marinasc0da0852005-06-20 18:51:06 +0100320
Catalin Marinasc27a2162006-02-22 19:51:38 +0000321 __raw_writel(1, SYS_PCICTL);
322}
Catalin Marinasc0da0852005-06-20 18:51:06 +0100323
324/*
325 * map the specified device/slot/pin to an IRQ. Different backplanes may need to modify this.
326 */
327static int __init versatile_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
328{
329 int irq;
330 int devslot = PCI_SLOT(dev->devfn);
331
Catalin Marinasc27a2162006-02-22 19:51:38 +0000332 /* slot, pin, irq
333 * 24 1 27
334 * 25 1 28
335 * 26 1 29
336 * 27 1 30
337 */
338 irq = 27 + ((slot + pin - 1) & 3);
Catalin Marinasc0da0852005-06-20 18:51:06 +0100339
Catalin Marinasc27a2162006-02-22 19:51:38 +0000340 printk("PCI map irq: slot %d, pin %d, devslot %d, irq: %d\n",slot,pin,devslot,irq);
Catalin Marinasc0da0852005-06-20 18:51:06 +0100341
342 return irq;
343}
344
345static struct hw_pci versatile_pci __initdata = {
346 .swizzle = NULL,
347 .map_irq = versatile_map_irq,
348 .nr_controllers = 1,
349 .setup = pci_versatile_setup,
350 .scan = pci_versatile_scan_bus,
351 .preinit = pci_versatile_preinit,
Catalin Marinasc0da0852005-06-20 18:51:06 +0100352};
353
354static int __init versatile_pci_init(void)
355{
356 pci_common_init(&versatile_pci);
357 return 0;
358}
359
360subsys_initcall(versatile_pci_init);