Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-kirkwood/pcie.c |
| 3 | * |
| 4 | * PCIe functions for Marvell Kirkwood SoCs |
| 5 | * |
| 6 | * This file is licensed under the terms of the GNU General Public |
| 7 | * License version 2. This program is licensed "as is" without any |
| 8 | * warranty of any kind, whether express or implied. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/pci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 14 | #include <linux/mbus.h> |
Rob Herring | cc22b4c | 2011-06-28 21:22:40 -0500 | [diff] [blame] | 15 | #include <video/vga.h> |
Nicolas Pitre | 6e5c11a | 2009-01-07 04:47:02 +0100 | [diff] [blame] | 16 | #include <asm/irq.h> |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 17 | #include <asm/mach/pci.h> |
Lennert Buytenhek | 6f088f1 | 2008-08-09 13:44:58 +0200 | [diff] [blame] | 18 | #include <plat/pcie.h> |
Rabeeh Khoury | e8b2b7b | 2009-03-22 17:30:32 +0200 | [diff] [blame] | 19 | #include <mach/bridge-regs.h> |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 20 | #include "common.h" |
| 21 | |
Eric Cooper | 0e0cdd3 | 2011-02-02 17:16:10 -0500 | [diff] [blame] | 22 | void kirkwood_enable_pcie(void) |
| 23 | { |
| 24 | u32 curr = readl(CLOCK_GATING_CTRL); |
| 25 | if (!(curr & CGC_PEX0)) |
| 26 | writel(curr | CGC_PEX0, CLOCK_GATING_CTRL); |
| 27 | } |
| 28 | |
Ronen Shitrit | b2b3dc2 | 2008-09-15 10:40:35 +0300 | [diff] [blame] | 29 | void __init kirkwood_pcie_id(u32 *dev, u32 *rev) |
| 30 | { |
Eric Cooper | 0e0cdd3 | 2011-02-02 17:16:10 -0500 | [diff] [blame] | 31 | kirkwood_enable_pcie(); |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 32 | *dev = orion_pcie_dev_id((void __iomem *)PCIE_VIRT_BASE); |
| 33 | *rev = orion_pcie_rev((void __iomem *)PCIE_VIRT_BASE); |
Ronen Shitrit | b2b3dc2 | 2008-09-15 10:40:35 +0300 | [diff] [blame] | 34 | } |
| 35 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 36 | struct pcie_port { |
| 37 | u8 root_bus_nr; |
| 38 | void __iomem *base; |
| 39 | spinlock_t conf_lock; |
| 40 | int irq; |
| 41 | struct resource res[2]; |
| 42 | }; |
| 43 | |
| 44 | static int pcie_port_map[2]; |
| 45 | static int num_pcie_ports; |
| 46 | |
| 47 | static inline struct pcie_port *bus_to_port(struct pci_bus *bus) |
| 48 | { |
| 49 | struct pci_sys_data *sys = bus->sysdata; |
| 50 | return sys->private_data; |
| 51 | } |
| 52 | |
| 53 | static int pcie_valid_config(struct pcie_port *pp, int bus, int dev) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 54 | { |
| 55 | /* |
| 56 | * Don't go out when trying to access -- |
| 57 | * 1. nonexisting device on local bus |
| 58 | * 2. where there's no device connected (no link) |
| 59 | */ |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 60 | if (bus == pp->root_bus_nr && dev == 0) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 61 | return 1; |
| 62 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 63 | if (!orion_pcie_link_up(pp->base)) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 64 | return 0; |
| 65 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 66 | if (bus == pp->root_bus_nr && dev != 1) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 67 | return 0; |
| 68 | |
| 69 | return 1; |
| 70 | } |
| 71 | |
| 72 | |
| 73 | /* |
| 74 | * PCIe config cycles are done by programming the PCIE_CONF_ADDR register |
| 75 | * and then reading the PCIE_CONF_DATA register. Need to make sure these |
| 76 | * transactions are atomic. |
| 77 | */ |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 78 | |
| 79 | static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, |
| 80 | int size, u32 *val) |
| 81 | { |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 82 | struct pcie_port *pp = bus_to_port(bus); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 83 | unsigned long flags; |
| 84 | int ret; |
| 85 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 86 | if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) { |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 87 | *val = 0xffffffff; |
| 88 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 89 | } |
| 90 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 91 | spin_lock_irqsave(&pp->conf_lock, flags); |
| 92 | ret = orion_pcie_rd_conf(pp->base, bus, devfn, where, size, val); |
| 93 | spin_unlock_irqrestore(&pp->conf_lock, flags); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 94 | |
| 95 | return ret; |
| 96 | } |
| 97 | |
| 98 | static int pcie_wr_conf(struct pci_bus *bus, u32 devfn, |
| 99 | int where, int size, u32 val) |
| 100 | { |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 101 | struct pcie_port *pp = bus_to_port(bus); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 102 | unsigned long flags; |
| 103 | int ret; |
| 104 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 105 | if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 106 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 107 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 108 | spin_lock_irqsave(&pp->conf_lock, flags); |
| 109 | ret = orion_pcie_wr_conf(pp->base, bus, devfn, where, size, val); |
| 110 | spin_unlock_irqrestore(&pp->conf_lock, flags); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 111 | |
| 112 | return ret; |
| 113 | } |
| 114 | |
| 115 | static struct pci_ops pcie_ops = { |
| 116 | .read = pcie_rd_conf, |
| 117 | .write = pcie_wr_conf, |
| 118 | }; |
| 119 | |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 120 | static void __init pcie0_ioresources_init(struct pcie_port *pp) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 121 | { |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 122 | pp->base = (void __iomem *)PCIE_VIRT_BASE; |
| 123 | pp->irq = IRQ_KIRKWOOD_PCIE; |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 124 | |
| 125 | /* |
| 126 | * IORESOURCE_IO |
| 127 | */ |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 128 | pp->res[0].name = "PCIe 0 I/O Space"; |
Arnaud Patard | e4ff1c3 | 2010-08-22 22:49:46 +0200 | [diff] [blame] | 129 | pp->res[0].start = KIRKWOOD_PCIE_IO_BUS_BASE; |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 130 | pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE_IO_SIZE - 1; |
| 131 | pp->res[0].flags = IORESOURCE_IO; |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 132 | |
| 133 | /* |
| 134 | * IORESOURCE_MEM |
| 135 | */ |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 136 | pp->res[1].name = "PCIe 0 MEM"; |
| 137 | pp->res[1].start = KIRKWOOD_PCIE_MEM_PHYS_BASE; |
| 138 | pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE_MEM_SIZE - 1; |
| 139 | pp->res[1].flags = IORESOURCE_MEM; |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 140 | } |
| 141 | |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 142 | static void __init pcie1_ioresources_init(struct pcie_port *pp) |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 143 | { |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 144 | pp->base = (void __iomem *)PCIE1_VIRT_BASE; |
| 145 | pp->irq = IRQ_KIRKWOOD_PCIE1; |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 146 | |
| 147 | /* |
| 148 | * IORESOURCE_IO |
| 149 | */ |
| 150 | pp->res[0].name = "PCIe 1 I/O Space"; |
Arnaud Patard | e4ff1c3 | 2010-08-22 22:49:46 +0200 | [diff] [blame] | 151 | pp->res[0].start = KIRKWOOD_PCIE1_IO_BUS_BASE; |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 152 | pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE1_IO_SIZE - 1; |
| 153 | pp->res[0].flags = IORESOURCE_IO; |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 154 | |
| 155 | /* |
| 156 | * IORESOURCE_MEM |
| 157 | */ |
| 158 | pp->res[1].name = "PCIe 1 MEM"; |
| 159 | pp->res[1].start = KIRKWOOD_PCIE1_MEM_PHYS_BASE; |
| 160 | pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE1_MEM_SIZE - 1; |
| 161 | pp->res[1].flags = IORESOURCE_MEM; |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static int __init kirkwood_pcie_setup(int nr, struct pci_sys_data *sys) |
| 165 | { |
| 166 | extern unsigned int kirkwood_clk_ctrl; |
| 167 | struct pcie_port *pp; |
| 168 | int index; |
| 169 | |
| 170 | if (nr >= num_pcie_ports) |
| 171 | return 0; |
| 172 | |
| 173 | index = pcie_port_map[nr]; |
| 174 | printk(KERN_INFO "PCI: bus%d uses PCIe port %d\n", sys->busnr, index); |
| 175 | |
| 176 | pp = kzalloc(sizeof(*pp), GFP_KERNEL); |
| 177 | if (!pp) |
| 178 | panic("PCIe: failed to allocate pcie_port data"); |
| 179 | sys->private_data = pp; |
| 180 | pp->root_bus_nr = sys->busnr; |
| 181 | spin_lock_init(&pp->conf_lock); |
| 182 | |
| 183 | switch (index) { |
| 184 | case 0: |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 185 | kirkwood_clk_ctrl |= CGC_PEX0; |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 186 | pcie0_ioresources_init(pp); |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 187 | break; |
| 188 | case 1: |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 189 | kirkwood_clk_ctrl |= CGC_PEX1; |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 190 | pcie1_ioresources_init(pp); |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 191 | break; |
| 192 | default: |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 193 | panic("PCIe setup: invalid controller %d", index); |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 194 | } |
| 195 | |
Nicolas Pitre | a87182b | 2010-07-05 13:59:56 -0400 | [diff] [blame] | 196 | if (request_resource(&ioport_resource, &pp->res[0])) |
| 197 | panic("Request PCIe%d IO resource failed\n", index); |
| 198 | if (request_resource(&iomem_resource, &pp->res[1])) |
| 199 | panic("Request PCIe%d Memory resource failed\n", index); |
| 200 | |
| 201 | sys->resource[0] = &pp->res[0]; |
| 202 | sys->resource[1] = &pp->res[1]; |
| 203 | sys->resource[2] = NULL; |
| 204 | sys->io_offset = 0; |
| 205 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 206 | /* |
| 207 | * Generic PCIe unit setup. |
| 208 | */ |
| 209 | orion_pcie_set_local_bus_nr(pp->base, sys->busnr); |
| 210 | |
| 211 | orion_pcie_setup(pp->base, &kirkwood_mbus_dram_info); |
Rabeeh Khoury | e8b2b7b | 2009-03-22 17:30:32 +0200 | [diff] [blame] | 212 | |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 213 | return 1; |
| 214 | } |
| 215 | |
| 216 | static void __devinit rc_pci_fixup(struct pci_dev *dev) |
| 217 | { |
| 218 | /* |
| 219 | * Prevent enumeration of root complex. |
| 220 | */ |
| 221 | if (dev->bus->parent == NULL && dev->devfn == 0) { |
| 222 | int i; |
| 223 | |
| 224 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |
| 225 | dev->resource[i].start = 0; |
| 226 | dev->resource[i].end = 0; |
| 227 | dev->resource[i].flags = 0; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL, PCI_ANY_ID, rc_pci_fixup); |
| 232 | |
| 233 | static struct pci_bus __init * |
| 234 | kirkwood_pcie_scan_bus(int nr, struct pci_sys_data *sys) |
| 235 | { |
| 236 | struct pci_bus *bus; |
| 237 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 238 | if (nr < num_pcie_ports) { |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 239 | bus = pci_scan_bus(sys->busnr, &pcie_ops, sys); |
| 240 | } else { |
| 241 | bus = NULL; |
| 242 | BUG(); |
| 243 | } |
| 244 | |
| 245 | return bus; |
| 246 | } |
| 247 | |
Ralf Baechle | d534194 | 2011-06-10 15:30:21 +0100 | [diff] [blame] | 248 | static int __init kirkwood_pcie_map_irq(const struct pci_dev *dev, u8 slot, |
| 249 | u8 pin) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 250 | { |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 251 | struct pcie_port *pp = bus_to_port(dev->bus); |
| 252 | |
| 253 | return pp->irq; |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static struct hw_pci kirkwood_pci __initdata = { |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 257 | .swizzle = pci_std_swizzle, |
| 258 | .setup = kirkwood_pcie_setup, |
| 259 | .scan = kirkwood_pcie_scan_bus, |
| 260 | .map_irq = kirkwood_pcie_map_irq, |
| 261 | }; |
| 262 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 263 | static void __init add_pcie_port(int index, unsigned long base) |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 264 | { |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 265 | printk(KERN_INFO "Kirkwood PCIe port %d: ", index); |
| 266 | |
| 267 | if (orion_pcie_link_up((void __iomem *)base)) { |
| 268 | printk(KERN_INFO "link up\n"); |
| 269 | pcie_port_map[num_pcie_ports++] = index; |
| 270 | } else |
| 271 | printk(KERN_INFO "link down, ignoring\n"); |
| 272 | } |
| 273 | |
| 274 | void __init kirkwood_pcie_init(unsigned int portmask) |
| 275 | { |
Rob Herring | cc22b4c | 2011-06-28 21:22:40 -0500 | [diff] [blame] | 276 | vga_base = KIRKWOOD_PCIE_MEM_PHYS_BASE; |
| 277 | |
Saeed Bishara | ffd58bd | 2010-06-08 14:21:34 +0300 | [diff] [blame] | 278 | if (portmask & KW_PCIE0) |
| 279 | add_pcie_port(0, PCIE_VIRT_BASE); |
| 280 | |
| 281 | if (portmask & KW_PCIE1) |
| 282 | add_pcie_port(1, PCIE1_VIRT_BASE); |
| 283 | |
| 284 | kirkwood_pci.nr_controllers = num_pcie_ports; |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 285 | pci_common_init(&kirkwood_pci); |
| 286 | } |