diff options
Diffstat (limited to 'arch/arm/mach-kirkwood/pcie.c')
| -rw-r--r-- | arch/arm/mach-kirkwood/pcie.c | 174 |
1 files changed, 128 insertions, 46 deletions
diff --git a/arch/arm/mach-kirkwood/pcie.c b/arch/arm/mach-kirkwood/pcie.c index dee1eff50d39..55e7f00836b7 100644 --- a/arch/arm/mach-kirkwood/pcie.c +++ b/arch/arm/mach-kirkwood/pcie.c | |||
| @@ -18,29 +18,43 @@ | |||
| 18 | #include <mach/bridge-regs.h> | 18 | #include <mach/bridge-regs.h> |
| 19 | #include "common.h" | 19 | #include "common.h" |
| 20 | 20 | ||
| 21 | void __init kirkwood_pcie_id(u32 *dev, u32 *rev) | ||
| 22 | { | ||
| 23 | *dev = orion_pcie_dev_id((void __iomem *)PCIE_VIRT_BASE); | ||
| 24 | *rev = orion_pcie_rev((void __iomem *)PCIE_VIRT_BASE); | ||
| 25 | } | ||
| 21 | 26 | ||
| 22 | #define PCIE_BASE ((void __iomem *)PCIE_VIRT_BASE) | 27 | struct pcie_port { |
| 28 | u8 root_bus_nr; | ||
| 29 | void __iomem *base; | ||
| 30 | spinlock_t conf_lock; | ||
| 31 | int irq; | ||
| 32 | struct resource res[2]; | ||
| 33 | }; | ||
| 23 | 34 | ||
| 24 | void __init kirkwood_pcie_id(u32 *dev, u32 *rev) | 35 | static int pcie_port_map[2]; |
| 36 | static int num_pcie_ports; | ||
| 37 | |||
| 38 | static inline struct pcie_port *bus_to_port(struct pci_bus *bus) | ||
| 25 | { | 39 | { |
| 26 | *dev = orion_pcie_dev_id(PCIE_BASE); | 40 | struct pci_sys_data *sys = bus->sysdata; |
| 27 | *rev = orion_pcie_rev(PCIE_BASE); | 41 | return sys->private_data; |
| 28 | } | 42 | } |
| 29 | 43 | ||
| 30 | static int pcie_valid_config(int bus, int dev) | 44 | static int pcie_valid_config(struct pcie_port *pp, int bus, int dev) |
| 31 | { | 45 | { |
| 32 | /* | 46 | /* |
| 33 | * Don't go out when trying to access -- | 47 | * Don't go out when trying to access -- |
| 34 | * 1. nonexisting device on local bus | 48 | * 1. nonexisting device on local bus |
| 35 | * 2. where there's no device connected (no link) | 49 | * 2. where there's no device connected (no link) |
| 36 | */ | 50 | */ |
| 37 | if (bus == 0 && dev == 0) | 51 | if (bus == pp->root_bus_nr && dev == 0) |
| 38 | return 1; | 52 | return 1; |
| 39 | 53 | ||
| 40 | if (!orion_pcie_link_up(PCIE_BASE)) | 54 | if (!orion_pcie_link_up(pp->base)) |
| 41 | return 0; | 55 | return 0; |
| 42 | 56 | ||
| 43 | if (bus == 0 && dev != 1) | 57 | if (bus == pp->root_bus_nr && dev != 1) |
| 44 | return 0; | 58 | return 0; |
| 45 | 59 | ||
| 46 | return 1; | 60 | return 1; |
| @@ -52,22 +66,22 @@ static int pcie_valid_config(int bus, int dev) | |||
| 52 | * and then reading the PCIE_CONF_DATA register. Need to make sure these | 66 | * and then reading the PCIE_CONF_DATA register. Need to make sure these |
| 53 | * transactions are atomic. | 67 | * transactions are atomic. |
| 54 | */ | 68 | */ |
| 55 | static DEFINE_SPINLOCK(kirkwood_pcie_lock); | ||
| 56 | 69 | ||
| 57 | static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, | 70 | static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, |
| 58 | int size, u32 *val) | 71 | int size, u32 *val) |
| 59 | { | 72 | { |
| 73 | struct pcie_port *pp = bus_to_port(bus); | ||
| 60 | unsigned long flags; | 74 | unsigned long flags; |
| 61 | int ret; | 75 | int ret; |
| 62 | 76 | ||
| 63 | if (pcie_valid_config(bus->number, PCI_SLOT(devfn)) == 0) { | 77 | if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) { |
| 64 | *val = 0xffffffff; | 78 | *val = 0xffffffff; |
| 65 | return PCIBIOS_DEVICE_NOT_FOUND; | 79 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 66 | } | 80 | } |
| 67 | 81 | ||
| 68 | spin_lock_irqsave(&kirkwood_pcie_lock, flags); | 82 | spin_lock_irqsave(&pp->conf_lock, flags); |
| 69 | ret = orion_pcie_rd_conf(PCIE_BASE, bus, devfn, where, size, val); | 83 | ret = orion_pcie_rd_conf(pp->base, bus, devfn, where, size, val); |
| 70 | spin_unlock_irqrestore(&kirkwood_pcie_lock, flags); | 84 | spin_unlock_irqrestore(&pp->conf_lock, flags); |
| 71 | 85 | ||
| 72 | return ret; | 86 | return ret; |
| 73 | } | 87 | } |
| @@ -75,15 +89,16 @@ static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, | |||
| 75 | static int pcie_wr_conf(struct pci_bus *bus, u32 devfn, | 89 | static int pcie_wr_conf(struct pci_bus *bus, u32 devfn, |
| 76 | int where, int size, u32 val) | 90 | int where, int size, u32 val) |
| 77 | { | 91 | { |
| 92 | struct pcie_port *pp = bus_to_port(bus); | ||
| 78 | unsigned long flags; | 93 | unsigned long flags; |
| 79 | int ret; | 94 | int ret; |
| 80 | 95 | ||
| 81 | if (pcie_valid_config(bus->number, PCI_SLOT(devfn)) == 0) | 96 | if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) |
| 82 | return PCIBIOS_DEVICE_NOT_FOUND; | 97 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 83 | 98 | ||
| 84 | spin_lock_irqsave(&kirkwood_pcie_lock, flags); | 99 | spin_lock_irqsave(&pp->conf_lock, flags); |
| 85 | ret = orion_pcie_wr_conf(PCIE_BASE, bus, devfn, where, size, val); | 100 | ret = orion_pcie_wr_conf(pp->base, bus, devfn, where, size, val); |
| 86 | spin_unlock_irqrestore(&kirkwood_pcie_lock, flags); | 101 | spin_unlock_irqrestore(&pp->conf_lock, flags); |
| 87 | 102 | ||
| 88 | return ret; | 103 | return ret; |
| 89 | } | 104 | } |
| @@ -93,50 +108,98 @@ static struct pci_ops pcie_ops = { | |||
| 93 | .write = pcie_wr_conf, | 108 | .write = pcie_wr_conf, |
| 94 | }; | 109 | }; |
| 95 | 110 | ||
| 96 | 111 | static void __init pcie0_ioresources_init(struct pcie_port *pp) | |
| 97 | static int __init kirkwood_pcie_setup(int nr, struct pci_sys_data *sys) | ||
| 98 | { | 112 | { |
| 99 | struct resource *res; | 113 | pp->base = (void __iomem *)PCIE_VIRT_BASE; |
| 100 | extern unsigned int kirkwood_clk_ctrl; | 114 | pp->irq = IRQ_KIRKWOOD_PCIE; |
| 101 | 115 | ||
| 102 | /* | 116 | /* |
| 103 | * Generic PCIe unit setup. | 117 | * IORESOURCE_IO |
| 104 | */ | 118 | */ |
| 105 | orion_pcie_setup(PCIE_BASE, &kirkwood_mbus_dram_info); | 119 | pp->res[0].name = "PCIe 0 I/O Space"; |
| 120 | pp->res[0].start = KIRKWOOD_PCIE_IO_PHYS_BASE; | ||
| 121 | pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE_IO_SIZE - 1; | ||
| 122 | pp->res[0].flags = IORESOURCE_IO; | ||
| 106 | 123 | ||
| 107 | /* | 124 | /* |
| 108 | * Request resources. | 125 | * IORESOURCE_MEM |
| 109 | */ | 126 | */ |
| 110 | res = kzalloc(sizeof(struct resource) * 2, GFP_KERNEL); | 127 | pp->res[1].name = "PCIe 0 MEM"; |
| 111 | if (!res) | 128 | pp->res[1].start = KIRKWOOD_PCIE_MEM_PHYS_BASE; |
| 112 | panic("pcie_setup unable to alloc resources"); | 129 | pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE_MEM_SIZE - 1; |
| 130 | pp->res[1].flags = IORESOURCE_MEM; | ||
| 131 | } | ||
| 132 | |||
| 133 | static void __init pcie1_ioresources_init(struct pcie_port *pp) | ||
| 134 | { | ||
| 135 | pp->base = (void __iomem *)PCIE1_VIRT_BASE; | ||
| 136 | pp->irq = IRQ_KIRKWOOD_PCIE1; | ||
| 113 | 137 | ||
| 114 | /* | 138 | /* |
| 115 | * IORESOURCE_IO | 139 | * IORESOURCE_IO |
| 116 | */ | 140 | */ |
| 117 | res[0].name = "PCIe I/O Space"; | 141 | pp->res[0].name = "PCIe 1 I/O Space"; |
| 118 | res[0].flags = IORESOURCE_IO; | 142 | pp->res[0].start = KIRKWOOD_PCIE1_IO_PHYS_BASE; |
| 119 | res[0].start = KIRKWOOD_PCIE_IO_BUS_BASE; | 143 | pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE1_IO_SIZE - 1; |
| 120 | res[0].end = res[0].start + KIRKWOOD_PCIE_IO_SIZE - 1; | 144 | pp->res[0].flags = IORESOURCE_IO; |
| 121 | if (request_resource(&ioport_resource, &res[0])) | ||
| 122 | panic("Request PCIe IO resource failed\n"); | ||
| 123 | sys->resource[0] = &res[0]; | ||
| 124 | 145 | ||
| 125 | /* | 146 | /* |
| 126 | * IORESOURCE_MEM | 147 | * IORESOURCE_MEM |
| 127 | */ | 148 | */ |
| 128 | res[1].name = "PCIe Memory Space"; | 149 | pp->res[1].name = "PCIe 1 MEM"; |
| 129 | res[1].flags = IORESOURCE_MEM; | 150 | pp->res[1].start = KIRKWOOD_PCIE1_MEM_PHYS_BASE; |
| 130 | res[1].start = KIRKWOOD_PCIE_MEM_BUS_BASE; | 151 | pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE1_MEM_SIZE - 1; |
| 131 | res[1].end = res[1].start + KIRKWOOD_PCIE_MEM_SIZE - 1; | 152 | pp->res[1].flags = IORESOURCE_MEM; |
| 132 | if (request_resource(&iomem_resource, &res[1])) | 153 | } |
| 133 | panic("Request PCIe Memory resource failed\n"); | 154 | |
| 134 | sys->resource[1] = &res[1]; | 155 | static int __init kirkwood_pcie_setup(int nr, struct pci_sys_data *sys) |
| 156 | { | ||
| 157 | extern unsigned int kirkwood_clk_ctrl; | ||
| 158 | struct pcie_port *pp; | ||
| 159 | int index; | ||
| 135 | 160 | ||
| 161 | if (nr >= num_pcie_ports) | ||
| 162 | return 0; | ||
| 163 | |||
| 164 | index = pcie_port_map[nr]; | ||
| 165 | printk(KERN_INFO "PCI: bus%d uses PCIe port %d\n", sys->busnr, index); | ||
| 166 | |||
| 167 | pp = kzalloc(sizeof(*pp), GFP_KERNEL); | ||
| 168 | if (!pp) | ||
| 169 | panic("PCIe: failed to allocate pcie_port data"); | ||
| 170 | sys->private_data = pp; | ||
| 171 | pp->root_bus_nr = sys->busnr; | ||
| 172 | spin_lock_init(&pp->conf_lock); | ||
| 173 | |||
| 174 | switch (index) { | ||
| 175 | case 0: | ||
| 176 | kirkwood_clk_ctrl |= CGC_PEX0; | ||
| 177 | pcie0_ioresources_init(pp); | ||
| 178 | break; | ||
| 179 | case 1: | ||
| 180 | kirkwood_clk_ctrl |= CGC_PEX1; | ||
| 181 | pcie1_ioresources_init(pp); | ||
| 182 | break; | ||
| 183 | default: | ||
| 184 | panic("PCIe setup: invalid controller %d", index); | ||
| 185 | } | ||
| 186 | |||
| 187 | if (request_resource(&ioport_resource, &pp->res[0])) | ||
| 188 | panic("Request PCIe%d IO resource failed\n", index); | ||
| 189 | if (request_resource(&iomem_resource, &pp->res[1])) | ||
| 190 | panic("Request PCIe%d Memory resource failed\n", index); | ||
| 191 | |||
| 192 | sys->resource[0] = &pp->res[0]; | ||
| 193 | sys->resource[1] = &pp->res[1]; | ||
| 136 | sys->resource[2] = NULL; | 194 | sys->resource[2] = NULL; |
| 137 | sys->io_offset = 0; | 195 | sys->io_offset = 0; |
| 138 | 196 | ||
| 139 | kirkwood_clk_ctrl |= CGC_PEX0; | 197 | /* |
| 198 | * Generic PCIe unit setup. | ||
| 199 | */ | ||
| 200 | orion_pcie_set_local_bus_nr(pp->base, sys->busnr); | ||
| 201 | |||
| 202 | orion_pcie_setup(pp->base, &kirkwood_mbus_dram_info); | ||
| 140 | 203 | ||
| 141 | return 1; | 204 | return 1; |
| 142 | } | 205 | } |
| @@ -163,7 +226,7 @@ kirkwood_pcie_scan_bus(int nr, struct pci_sys_data *sys) | |||
| 163 | { | 226 | { |
| 164 | struct pci_bus *bus; | 227 | struct pci_bus *bus; |
| 165 | 228 | ||
| 166 | if (nr == 0) { | 229 | if (nr < num_pcie_ports) { |
| 167 | bus = pci_scan_bus(sys->busnr, &pcie_ops, sys); | 230 | bus = pci_scan_bus(sys->busnr, &pcie_ops, sys); |
| 168 | } else { | 231 | } else { |
| 169 | bus = NULL; | 232 | bus = NULL; |
| @@ -175,18 +238,37 @@ kirkwood_pcie_scan_bus(int nr, struct pci_sys_data *sys) | |||
| 175 | 238 | ||
| 176 | static int __init kirkwood_pcie_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 239 | static int __init kirkwood_pcie_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
| 177 | { | 240 | { |
| 178 | return IRQ_KIRKWOOD_PCIE; | 241 | struct pcie_port *pp = bus_to_port(dev->bus); |
| 242 | |||
| 243 | return pp->irq; | ||
| 179 | } | 244 | } |
| 180 | 245 | ||
| 181 | static struct hw_pci kirkwood_pci __initdata = { | 246 | static struct hw_pci kirkwood_pci __initdata = { |
| 182 | .nr_controllers = 1, | ||
| 183 | .swizzle = pci_std_swizzle, | 247 | .swizzle = pci_std_swizzle, |
| 184 | .setup = kirkwood_pcie_setup, | 248 | .setup = kirkwood_pcie_setup, |
| 185 | .scan = kirkwood_pcie_scan_bus, | 249 | .scan = kirkwood_pcie_scan_bus, |
| 186 | .map_irq = kirkwood_pcie_map_irq, | 250 | .map_irq = kirkwood_pcie_map_irq, |
| 187 | }; | 251 | }; |
| 188 | 252 | ||
| 189 | void __init kirkwood_pcie_init(void) | 253 | static void __init add_pcie_port(int index, unsigned long base) |
| 190 | { | 254 | { |
| 255 | printk(KERN_INFO "Kirkwood PCIe port %d: ", index); | ||
| 256 | |||
| 257 | if (orion_pcie_link_up((void __iomem *)base)) { | ||
| 258 | printk(KERN_INFO "link up\n"); | ||
| 259 | pcie_port_map[num_pcie_ports++] = index; | ||
| 260 | } else | ||
| 261 | printk(KERN_INFO "link down, ignoring\n"); | ||
| 262 | } | ||
| 263 | |||
| 264 | void __init kirkwood_pcie_init(unsigned int portmask) | ||
| 265 | { | ||
| 266 | if (portmask & KW_PCIE0) | ||
| 267 | add_pcie_port(0, PCIE_VIRT_BASE); | ||
| 268 | |||
| 269 | if (portmask & KW_PCIE1) | ||
| 270 | add_pcie_port(1, PCIE1_VIRT_BASE); | ||
| 271 | |||
| 272 | kirkwood_pci.nr_controllers = num_pcie_ports; | ||
| 191 | pci_common_init(&kirkwood_pci); | 273 | pci_common_init(&kirkwood_pci); |
| 192 | } | 274 | } |
