2 * arch/arm/mach-iop3xx/iop331-pci.c
4 * PCI support for the Intel IOP331 chipset
6 * Author: Dave Jiang (dave.jiang@intel.com)
7 * Copyright (C) 2003, 2004 Intel Corp.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/pci.h>
16 #include <linux/slab.h>
18 #include <linux/init.h>
19 #include <linux/ioport.h>
23 #include <asm/system.h>
24 #include <asm/hardware.h>
25 #include <asm/mach/pci.h>
27 #include <asm/arch/iop331.h>
33 #define DBG(x...) printk(x)
35 #define DBG(x...) do { } while (0)
39 #define DBG1(x...) printk(x)
41 #define DBG1(x...) do { } while (0)
45 * This routine builds either a type0 or type1 configuration command. If the
46 * bus is on the 80331 then a type0 made, else a type1 is created.
48 static u32 iop331_cfg_address(struct pci_bus *bus, int devfn, int where)
50 struct pci_sys_data *sys = bus->sysdata;
53 if (sys->busnr == bus->number)
54 addr = 1 << (PCI_SLOT(devfn) + 16) | (PCI_SLOT(devfn) << 11);
56 addr = bus->number << 16 | PCI_SLOT(devfn) << 11 | 1;
58 addr |= PCI_FUNC(devfn) << 8 | (where & ~3);
64 * This routine checks the status of the last configuration cycle. If an error
65 * was detected it returns a 1, else it returns a 0. The errors being checked
66 * are parity, master abort, target abort (master and target). These types of
67 * errors occure during a config cycle where there is no device, like during
68 * the discovery stage.
70 static int iop331_pci_status(void)
76 * Check the status registers.
78 status = *IOP331_ATUSR;
81 DBG("\t\t\tPCI: P0 - status = 0x%08x\n", status);
82 *IOP331_ATUSR = status & 0xf900;
85 status = *IOP331_ATUISR;
88 DBG("\t\t\tPCI: P1 - status = 0x%08x\n", status);
89 *IOP331_ATUISR = status & 0x679f;
96 * Simply write the address register and read the configuration
97 * data. Note that the 4 nop's ensure that we are able to handle
98 * a delayed abort (in theory.)
100 static inline u32 iop331_read(unsigned long addr)
104 __asm__ __volatile__(
112 : "r" (addr), "r" (IOP331_OCCAR), "r" (IOP331_OCCDR));
118 * The read routines must check the error status of the last configuration
119 * cycle. If there was an error, the routine returns all hex f's.
122 iop331_read_config(struct pci_bus *bus, unsigned int devfn, int where,
123 int size, u32 *value)
125 unsigned long addr = iop331_cfg_address(bus, devfn, where);
126 u32 val = iop331_read(addr) >> ((where & 3) * 8);
128 if( iop331_pci_status() )
133 return PCIBIOS_SUCCESSFUL;
137 iop331_write_config(struct pci_bus *bus, unsigned int devfn, int where,
140 unsigned long addr = iop331_cfg_address(bus, devfn, where);
144 val = iop331_read(addr);
145 if (!iop331_pci_status() == 0)
146 return PCIBIOS_SUCCESSFUL;
148 where = (where & 3) * 8;
151 val &= ~(0xff << where);
153 val &= ~(0xffff << where);
155 *IOP331_OCCDR = val | value << where;
165 : "r" (value), "r" (addr),
166 "r" (IOP331_OCCAR), "r" (IOP331_OCCDR));
169 return PCIBIOS_SUCCESSFUL;
172 static struct pci_ops iop331_ops = {
173 .read = iop331_read_config,
174 .write = iop331_write_config,
178 * When a PCI device does not exist during config cycles, the XScale gets a
179 * bus error instead of returning 0xffffffff. This handler simply returns.
182 iop331_pci_abort(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
184 DBG("PCI abort: address = 0x%08lx fsr = 0x%03x PC = 0x%08lx LR = 0x%08lx\n",
185 addr, fsr, regs->ARM_pc, regs->ARM_lr);
188 * If it was an imprecise abort, then we need to correct the
189 * return address to be _after_ the instruction.
198 * Scan an IOP331 PCI bus. sys->bus defines which bus we scan.
200 struct pci_bus *iop331_scan_bus(int nr, struct pci_sys_data *sys)
202 return pci_scan_bus(sys->busnr, &iop331_ops, sys);
205 void iop331_init(void)
207 DBG1("PCI: Intel 80331 PCI init code.\n");
208 DBG1("\tATU: IOP331_ATUCMD=0x%04x\n", *IOP331_ATUCMD);
209 DBG1("\tATU: IOP331_OMWTVR0=0x%04x, IOP331_OIOWTVR=0x%04x\n",
212 DBG1("\tATU: IOP331_OMWTVR1=0x%04x\n", *IOP331_OMWTVR1);
213 DBG1("\tATU: IOP331_ATUCR=0x%08x\n", *IOP331_ATUCR);
214 DBG1("\tATU: IOP331_IABAR0=0x%08x IOP331_IALR0=0x%08x IOP331_IATVR0=%08x\n", *IOP331_IABAR0, *IOP331_IALR0, *IOP331_IATVR0);
215 DBG1("\tATU: IOP31_IABAR1=0x%08x IOP331_IALR1=0x%08x\n", *IOP331_IABAR1, *IOP331_IALR1);
216 DBG1("\tATU: IOP331_ERBAR=0x%08x IOP331_ERLR=0x%08x IOP331_ERTVR=%08x\n", *IOP331_ERBAR, *IOP331_ERLR, *IOP331_ERTVR);
217 DBG1("\tATU: IOP331_IABAR2=0x%08x IOP331_IALR2=0x%08x IOP331_IATVR2=%08x\n", *IOP331_IABAR2, *IOP331_IALR2, *IOP331_IATVR2);
218 DBG1("\tATU: IOP331_IABAR3=0x%08x IOP331_IALR3=0x%08x IOP331_IATVR3=%08x\n", *IOP331_IABAR3, *IOP331_IALR3, *IOP331_IATVR3);
220 hook_fault_code(16+6, iop331_pci_abort, SIGBUS, "imprecise external abort");