2 * arch/arm/mach-ixp4xx/common-pci.c
4 * IXP4XX PCI routines for all platforms
6 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
8 * Copyright (C) 2002 Intel Corporation.
9 * Copyright (C) 2003 Greg Ungerer <gerg@snapgear.com>
10 * Copyright (C) 2003-2004 MontaVista Software, Inc.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/pci.h>
21 #include <linux/interrupt.h>
23 #include <linux/init.h>
24 #include <linux/ioport.h>
25 #include <linux/slab.h>
26 #include <linux/delay.h>
27 #include <linux/device.h>
29 #include <linux/export.h>
30 #include <asm/dma-mapping.h>
32 #include <asm/cputype.h>
34 #include <asm/sizes.h>
35 #include <asm/system.h>
36 #include <asm/mach/pci.h>
37 #include <mach/hardware.h>
41 * IXP4xx PCI read function is dependent on whether we are
42 * running A0 or B0 (AppleGate) silicon.
44 int (*ixp4xx_pci_read
)(u32 addr
, u32 cmd
, u32
* data
);
47 * Base address for PCI regsiter region
49 unsigned long ixp4xx_pci_reg_base
= 0;
52 * PCI cfg an I/O routines are done by programming a
53 * command/byte enable register, and then read/writing
54 * the data from a data regsiter. We need to ensure
55 * these transactions are atomic or we will end up
56 * with corrupt data on the bus or in a driver.
58 static DEFINE_SPINLOCK(ixp4xx_pci_lock
);
61 * Read from PCI config space
63 static void crp_read(u32 ad_cbe
, u32
*data
)
66 spin_lock_irqsave(&ixp4xx_pci_lock
, flags
);
67 *PCI_CRP_AD_CBE
= ad_cbe
;
68 *data
= *PCI_CRP_RDATA
;
69 spin_unlock_irqrestore(&ixp4xx_pci_lock
, flags
);
73 * Write to PCI config space
75 static void crp_write(u32 ad_cbe
, u32 data
)
78 spin_lock_irqsave(&ixp4xx_pci_lock
, flags
);
79 *PCI_CRP_AD_CBE
= CRP_AD_CBE_WRITE
| ad_cbe
;
80 *PCI_CRP_WDATA
= data
;
81 spin_unlock_irqrestore(&ixp4xx_pci_lock
, flags
);
84 static inline int check_master_abort(void)
86 /* check Master Abort bit after access */
87 unsigned long isr
= *PCI_ISR
;
89 if (isr
& PCI_ISR_PFE
) {
90 /* make sure the Master Abort bit is reset */
91 *PCI_ISR
= PCI_ISR_PFE
;
92 pr_debug("%s failed\n", __func__
);
99 int ixp4xx_pci_read_errata(u32 addr
, u32 cmd
, u32
* data
)
105 spin_lock_irqsave(&ixp4xx_pci_lock
, flags
);
110 * PCI workaround - only works if NP PCI space reads have
111 * no side effects!!! Read 8 times. last one will be good.
113 for (i
= 0; i
< 8; i
++) {
115 *data
= *PCI_NP_RDATA
;
116 *data
= *PCI_NP_RDATA
;
119 if(check_master_abort())
122 spin_unlock_irqrestore(&ixp4xx_pci_lock
, flags
);
126 int ixp4xx_pci_read_no_errata(u32 addr
, u32 cmd
, u32
* data
)
131 spin_lock_irqsave(&ixp4xx_pci_lock
, flags
);
135 /* set up and execute the read */
138 /* the result of the read is now in NP_RDATA */
139 *data
= *PCI_NP_RDATA
;
141 if(check_master_abort())
144 spin_unlock_irqrestore(&ixp4xx_pci_lock
, flags
);
148 int ixp4xx_pci_write(u32 addr
, u32 cmd
, u32 data
)
153 spin_lock_irqsave(&ixp4xx_pci_lock
, flags
);
157 /* set up the write */
160 /* execute the write by writing to NP_WDATA */
161 *PCI_NP_WDATA
= data
;
163 if(check_master_abort())
166 spin_unlock_irqrestore(&ixp4xx_pci_lock
, flags
);
170 static u32
ixp4xx_config_addr(u8 bus_num
, u16 devfn
, int where
)
175 addr
= BIT(32-PCI_SLOT(devfn
)) | ((PCI_FUNC(devfn
)) << 8) |
179 addr
= (bus_num
<< 16) | ((PCI_SLOT(devfn
)) << 11) |
180 ((PCI_FUNC(devfn
)) << 8) | (where
& ~3) | 1;
186 * Mask table, bits to mask for quantity of size 1, 2 or 4 bytes.
187 * 0 and 3 are not valid indexes...
189 static u32 bytemask
[] = {
197 static u32
local_byte_lane_enable_bits(u32 n
, int size
)
200 return (0xf & ~BIT(n
)) << CRP_AD_CBE_BESL
;
202 return (0xf & ~(BIT(n
) | BIT(n
+1))) << CRP_AD_CBE_BESL
;
208 static int local_read_config(int where
, int size
, u32
*value
)
211 pr_debug("local_read_config from %d size %d\n", where
, size
);
213 crp_read(where
& ~3, &data
);
214 *value
= (data
>> (8*n
)) & bytemask
[size
];
215 pr_debug("local_read_config read %#x\n", *value
);
216 return PCIBIOS_SUCCESSFUL
;
219 static int local_write_config(int where
, int size
, u32 value
)
221 u32 n
, byte_enables
, data
;
222 pr_debug("local_write_config %#x to %d size %d\n", value
, where
, size
);
224 byte_enables
= local_byte_lane_enable_bits(n
, size
);
225 if (byte_enables
== 0xffffffff)
226 return PCIBIOS_BAD_REGISTER_NUMBER
;
227 data
= value
<< (8*n
);
228 crp_write((where
& ~3) | byte_enables
, data
);
229 return PCIBIOS_SUCCESSFUL
;
232 static u32
byte_lane_enable_bits(u32 n
, int size
)
235 return (0xf & ~BIT(n
)) << 4;
237 return (0xf & ~(BIT(n
) | BIT(n
+1))) << 4;
243 static int ixp4xx_pci_read_config(struct pci_bus
*bus
, unsigned int devfn
, int where
, int size
, u32
*value
)
245 u32 n
, byte_enables
, addr
, data
;
246 u8 bus_num
= bus
->number
;
248 pr_debug("read_config from %d size %d dev %d:%d:%d\n", where
, size
,
249 bus_num
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
253 byte_enables
= byte_lane_enable_bits(n
, size
);
254 if (byte_enables
== 0xffffffff)
255 return PCIBIOS_BAD_REGISTER_NUMBER
;
257 addr
= ixp4xx_config_addr(bus_num
, devfn
, where
);
258 if (ixp4xx_pci_read(addr
, byte_enables
| NP_CMD_CONFIGREAD
, &data
))
259 return PCIBIOS_DEVICE_NOT_FOUND
;
261 *value
= (data
>> (8*n
)) & bytemask
[size
];
262 pr_debug("read_config_byte read %#x\n", *value
);
263 return PCIBIOS_SUCCESSFUL
;
266 static int ixp4xx_pci_write_config(struct pci_bus
*bus
, unsigned int devfn
, int where
, int size
, u32 value
)
268 u32 n
, byte_enables
, addr
, data
;
269 u8 bus_num
= bus
->number
;
271 pr_debug("write_config_byte %#x to %d size %d dev %d:%d:%d\n", value
, where
,
272 size
, bus_num
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
275 byte_enables
= byte_lane_enable_bits(n
, size
);
276 if (byte_enables
== 0xffffffff)
277 return PCIBIOS_BAD_REGISTER_NUMBER
;
279 addr
= ixp4xx_config_addr(bus_num
, devfn
, where
);
280 data
= value
<< (8*n
);
281 if (ixp4xx_pci_write(addr
, byte_enables
| NP_CMD_CONFIGWRITE
, data
))
282 return PCIBIOS_DEVICE_NOT_FOUND
;
284 return PCIBIOS_SUCCESSFUL
;
287 struct pci_ops ixp4xx_ops
= {
288 .read
= ixp4xx_pci_read_config
,
289 .write
= ixp4xx_pci_write_config
,
295 static int abort_handler(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
300 local_read_config(PCI_STATUS
, 2, &status
);
301 pr_debug("PCI: abort_handler addr = %#lx, isr = %#x, "
302 "status = %#x\n", addr
, isr
, status
);
304 /* make sure the Master Abort bit is reset */
305 *PCI_ISR
= PCI_ISR_PFE
;
306 status
|= PCI_STATUS_REC_MASTER_ABORT
;
307 local_write_config(PCI_STATUS
, 2, status
);
310 * If it was an imprecise abort, then we need to correct the
311 * return address to be _after_ the instruction.
320 static int ixp4xx_needs_bounce(struct device
*dev
, dma_addr_t dma_addr
, size_t size
)
322 return (dma_addr
+ size
) >= SZ_64M
;
326 * Setup DMA mask to 64MB on PCI devices. Ignore all other devices.
328 static int ixp4xx_pci_platform_notify(struct device
*dev
)
330 if(dev
->bus
== &pci_bus_type
) {
331 *dev
->dma_mask
= SZ_64M
- 1;
332 dev
->coherent_dma_mask
= SZ_64M
- 1;
333 dmabounce_register_dev(dev
, 2048, 4096, ixp4xx_needs_bounce
);
338 static int ixp4xx_pci_platform_notify_remove(struct device
*dev
)
340 if(dev
->bus
== &pci_bus_type
) {
341 dmabounce_unregister_dev(dev
);
346 void __init
ixp4xx_pci_preinit(void)
348 unsigned long cpuid
= read_cpuid_id();
350 #ifdef CONFIG_IXP4XX_INDIRECT_PCI
351 pcibios_min_mem
= 0x10000000; /* 1 GB of indirect PCI MMIO space */
353 pcibios_min_mem
= 0x48000000; /* 64 MB of PCI MMIO space */
356 * Determine which PCI read method to use.
357 * Rev 0 IXP425 requires workaround.
359 if (!(cpuid
& 0xf) && cpu_is_ixp42x()) {
360 printk("PCI: IXP42x A0 silicon detected - "
361 "PCI Non-Prefetch Workaround Enabled\n");
362 ixp4xx_pci_read
= ixp4xx_pci_read_errata
;
364 ixp4xx_pci_read
= ixp4xx_pci_read_no_errata
;
367 /* hook in our fault handler for PCI errors */
368 hook_fault_code(16+6, abort_handler
, SIGBUS
, 0,
369 "imprecise external abort");
371 pr_debug("setup PCI-AHB(inbound) and AHB-PCI(outbound) address mappings\n");
374 * We use identity AHB->PCI address translation
375 * in the 0x48000000 to 0x4bffffff address space
377 *PCI_PCIMEMBASE
= 0x48494A4B;
380 * We also use identity PCI->AHB address translation
381 * in 4 16MB BARs that begin at the physical memory start
383 *PCI_AHBMEMBASE
= (PHYS_OFFSET
& 0xFF000000) +
384 ((PHYS_OFFSET
& 0xFF000000) >> 8) +
385 ((PHYS_OFFSET
& 0xFF000000) >> 16) +
386 ((PHYS_OFFSET
& 0xFF000000) >> 24) +
389 if (*PCI_CSR
& PCI_CSR_HOST
) {
390 printk("PCI: IXP4xx is host\n");
392 pr_debug("setup BARs in controller\n");
395 * We configure the PCI inbound memory windows to be
396 * 1:1 mapped to SDRAM
398 local_write_config(PCI_BASE_ADDRESS_0
, 4, PHYS_OFFSET
);
399 local_write_config(PCI_BASE_ADDRESS_1
, 4, PHYS_OFFSET
+ SZ_16M
);
400 local_write_config(PCI_BASE_ADDRESS_2
, 4, PHYS_OFFSET
+ SZ_32M
);
401 local_write_config(PCI_BASE_ADDRESS_3
, 4,
402 PHYS_OFFSET
+ SZ_32M
+ SZ_16M
);
405 * Enable CSR window at 64 MiB to allow PCI masters
406 * to continue prefetching past 64 MiB boundary.
408 local_write_config(PCI_BASE_ADDRESS_4
, 4, PHYS_OFFSET
+ SZ_64M
);
411 * Enable the IO window to be way up high, at 0xfffffc00
413 local_write_config(PCI_BASE_ADDRESS_5
, 4, 0xfffffc01);
415 printk("PCI: IXP4xx is target - No bus scan performed\n");
418 printk("PCI: IXP4xx Using %s access for memory space\n",
419 #ifndef CONFIG_IXP4XX_INDIRECT_PCI
426 pr_debug("clear error bits in ISR\n");
427 *PCI_ISR
= PCI_ISR_PSE
| PCI_ISR_PFE
| PCI_ISR_PPE
| PCI_ISR_AHBE
;
430 * Set Initialize Complete in PCI Control Register: allow IXP4XX to
431 * respond to PCI configuration cycles. Specify that the AHB bus is
432 * operating in big endian mode. Set up byte lane swapping between
433 * little-endian PCI and the big-endian AHB bus
436 *PCI_CSR
= PCI_CSR_IC
| PCI_CSR_ABE
| PCI_CSR_PDS
| PCI_CSR_ADS
;
438 *PCI_CSR
= PCI_CSR_IC
| PCI_CSR_ABE
;
444 int ixp4xx_setup(int nr
, struct pci_sys_data
*sys
)
446 struct resource
*res
;
451 res
= kzalloc(sizeof(*res
) * 2, GFP_KERNEL
);
454 * If we're out of memory this early, something is wrong,
455 * so we might as well catch it here.
457 panic("PCI: unable to allocate resources?\n");
460 local_write_config(PCI_COMMAND
, 2, PCI_COMMAND_MASTER
| PCI_COMMAND_MEMORY
);
462 res
[0].name
= "PCI I/O Space";
463 res
[0].start
= 0x00000000;
464 res
[0].end
= 0x0000ffff;
465 res
[0].flags
= IORESOURCE_IO
;
467 res
[1].name
= "PCI Memory Space";
468 res
[1].start
= PCIBIOS_MIN_MEM
;
469 res
[1].end
= PCIBIOS_MAX_MEM
;
470 res
[1].flags
= IORESOURCE_MEM
;
472 request_resource(&ioport_resource
, &res
[0]);
473 request_resource(&iomem_resource
, &res
[1]);
475 sys
->resource
[0] = &res
[0];
476 sys
->resource
[1] = &res
[1];
477 sys
->resource
[2] = NULL
;
479 platform_notify
= ixp4xx_pci_platform_notify
;
480 platform_notify_remove
= ixp4xx_pci_platform_notify_remove
;
485 struct pci_bus
* __devinit
ixp4xx_scan_bus(int nr
, struct pci_sys_data
*sys
)
487 return pci_scan_bus(sys
->busnr
, &ixp4xx_ops
, sys
);
490 int dma_set_coherent_mask(struct device
*dev
, u64 mask
)
492 if (mask
>= SZ_64M
- 1)
498 EXPORT_SYMBOL(ixp4xx_pci_read
);
499 EXPORT_SYMBOL(ixp4xx_pci_write
);
500 EXPORT_SYMBOL(dma_set_coherent_mask
);