ARM: cpu topology: Add debugfs interface for cpu_power
[cmplus.git] / arch / arm / mach-kirkwood / pcie.c
blobca294ff6d5be02a4d6103a16db7e4666fa80c83c
1 /*
2 * arch/arm/mach-kirkwood/pcie.c
4 * PCIe functions for Marvell Kirkwood SoCs
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 */
11 #include <linux/kernel.h>
12 #include <linux/pci.h>
13 #include <linux/slab.h>
14 #include <linux/mbus.h>
15 #include <asm/irq.h>
16 #include <asm/mach/pci.h>
17 #include <plat/pcie.h>
18 #include <mach/bridge-regs.h>
19 #include "common.h"
21 void kirkwood_enable_pcie(void)
23 u32 curr = readl(CLOCK_GATING_CTRL);
24 if (!(curr & CGC_PEX0))
25 writel(curr | CGC_PEX0, CLOCK_GATING_CTRL);
28 void __init kirkwood_pcie_id(u32 *dev, u32 *rev)
30 kirkwood_enable_pcie();
31 *dev = orion_pcie_dev_id((void __iomem *)PCIE_VIRT_BASE);
32 *rev = orion_pcie_rev((void __iomem *)PCIE_VIRT_BASE);
35 struct pcie_port {
36 u8 root_bus_nr;
37 void __iomem *base;
38 spinlock_t conf_lock;
39 int irq;
40 struct resource res[2];
43 static int pcie_port_map[2];
44 static int num_pcie_ports;
46 static inline struct pcie_port *bus_to_port(struct pci_bus *bus)
48 struct pci_sys_data *sys = bus->sysdata;
49 return sys->private_data;
52 static int pcie_valid_config(struct pcie_port *pp, int bus, int dev)
55 * Don't go out when trying to access --
56 * 1. nonexisting device on local bus
57 * 2. where there's no device connected (no link)
59 if (bus == pp->root_bus_nr && dev == 0)
60 return 1;
62 if (!orion_pcie_link_up(pp->base))
63 return 0;
65 if (bus == pp->root_bus_nr && dev != 1)
66 return 0;
68 return 1;
73 * PCIe config cycles are done by programming the PCIE_CONF_ADDR register
74 * and then reading the PCIE_CONF_DATA register. Need to make sure these
75 * transactions are atomic.
78 static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
79 int size, u32 *val)
81 struct pcie_port *pp = bus_to_port(bus);
82 unsigned long flags;
83 int ret;
85 if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) {
86 *val = 0xffffffff;
87 return PCIBIOS_DEVICE_NOT_FOUND;
90 spin_lock_irqsave(&pp->conf_lock, flags);
91 ret = orion_pcie_rd_conf(pp->base, bus, devfn, where, size, val);
92 spin_unlock_irqrestore(&pp->conf_lock, flags);
94 return ret;
97 static int pcie_wr_conf(struct pci_bus *bus, u32 devfn,
98 int where, int size, u32 val)
100 struct pcie_port *pp = bus_to_port(bus);
101 unsigned long flags;
102 int ret;
104 if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0)
105 return PCIBIOS_DEVICE_NOT_FOUND;
107 spin_lock_irqsave(&pp->conf_lock, flags);
108 ret = orion_pcie_wr_conf(pp->base, bus, devfn, where, size, val);
109 spin_unlock_irqrestore(&pp->conf_lock, flags);
111 return ret;
114 static struct pci_ops pcie_ops = {
115 .read = pcie_rd_conf,
116 .write = pcie_wr_conf,
119 static void __init pcie0_ioresources_init(struct pcie_port *pp)
121 pp->base = (void __iomem *)PCIE_VIRT_BASE;
122 pp->irq = IRQ_KIRKWOOD_PCIE;
125 * IORESOURCE_IO
127 pp->res[0].name = "PCIe 0 I/O Space";
128 pp->res[0].start = KIRKWOOD_PCIE_IO_BUS_BASE;
129 pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE_IO_SIZE - 1;
130 pp->res[0].flags = IORESOURCE_IO;
133 * IORESOURCE_MEM
135 pp->res[1].name = "PCIe 0 MEM";
136 pp->res[1].start = KIRKWOOD_PCIE_MEM_PHYS_BASE;
137 pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE_MEM_SIZE - 1;
138 pp->res[1].flags = IORESOURCE_MEM;
141 static void __init pcie1_ioresources_init(struct pcie_port *pp)
143 pp->base = (void __iomem *)PCIE1_VIRT_BASE;
144 pp->irq = IRQ_KIRKWOOD_PCIE1;
147 * IORESOURCE_IO
149 pp->res[0].name = "PCIe 1 I/O Space";
150 pp->res[0].start = KIRKWOOD_PCIE1_IO_BUS_BASE;
151 pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE1_IO_SIZE - 1;
152 pp->res[0].flags = IORESOURCE_IO;
155 * IORESOURCE_MEM
157 pp->res[1].name = "PCIe 1 MEM";
158 pp->res[1].start = KIRKWOOD_PCIE1_MEM_PHYS_BASE;
159 pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE1_MEM_SIZE - 1;
160 pp->res[1].flags = IORESOURCE_MEM;
163 static int __init kirkwood_pcie_setup(int nr, struct pci_sys_data *sys)
165 extern unsigned int kirkwood_clk_ctrl;
166 struct pcie_port *pp;
167 int index;
169 if (nr >= num_pcie_ports)
170 return 0;
172 index = pcie_port_map[nr];
173 printk(KERN_INFO "PCI: bus%d uses PCIe port %d\n", sys->busnr, index);
175 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
176 if (!pp)
177 panic("PCIe: failed to allocate pcie_port data");
178 sys->private_data = pp;
179 pp->root_bus_nr = sys->busnr;
180 spin_lock_init(&pp->conf_lock);
182 switch (index) {
183 case 0:
184 kirkwood_clk_ctrl |= CGC_PEX0;
185 pcie0_ioresources_init(pp);
186 break;
187 case 1:
188 kirkwood_clk_ctrl |= CGC_PEX1;
189 pcie1_ioresources_init(pp);
190 break;
191 default:
192 panic("PCIe setup: invalid controller %d", index);
195 if (request_resource(&ioport_resource, &pp->res[0]))
196 panic("Request PCIe%d IO resource failed\n", index);
197 if (request_resource(&iomem_resource, &pp->res[1]))
198 panic("Request PCIe%d Memory resource failed\n", index);
200 sys->resource[0] = &pp->res[0];
201 sys->resource[1] = &pp->res[1];
202 sys->resource[2] = NULL;
203 sys->io_offset = 0;
206 * Generic PCIe unit setup.
208 orion_pcie_set_local_bus_nr(pp->base, sys->busnr);
210 orion_pcie_setup(pp->base, &kirkwood_mbus_dram_info);
212 return 1;
215 static void __devinit rc_pci_fixup(struct pci_dev *dev)
218 * Prevent enumeration of root complex.
220 if (dev->bus->parent == NULL && dev->devfn == 0) {
221 int i;
223 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
224 dev->resource[i].start = 0;
225 dev->resource[i].end = 0;
226 dev->resource[i].flags = 0;
230 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL, PCI_ANY_ID, rc_pci_fixup);
232 static struct pci_bus __init *
233 kirkwood_pcie_scan_bus(int nr, struct pci_sys_data *sys)
235 struct pci_bus *bus;
237 if (nr < num_pcie_ports) {
238 bus = pci_scan_bus(sys->busnr, &pcie_ops, sys);
239 } else {
240 bus = NULL;
241 BUG();
244 return bus;
247 static int __init kirkwood_pcie_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
249 struct pcie_port *pp = bus_to_port(dev->bus);
251 return pp->irq;
254 static struct hw_pci kirkwood_pci __initdata = {
255 .swizzle = pci_std_swizzle,
256 .setup = kirkwood_pcie_setup,
257 .scan = kirkwood_pcie_scan_bus,
258 .map_irq = kirkwood_pcie_map_irq,
261 static void __init add_pcie_port(int index, unsigned long base)
263 printk(KERN_INFO "Kirkwood PCIe port %d: ", index);
265 if (orion_pcie_link_up((void __iomem *)base)) {
266 printk(KERN_INFO "link up\n");
267 pcie_port_map[num_pcie_ports++] = index;
268 } else
269 printk(KERN_INFO "link down, ignoring\n");
272 void __init kirkwood_pcie_init(unsigned int portmask)
274 if (portmask & KW_PCIE0)
275 add_pcie_port(0, PCIE_VIRT_BASE);
277 if (portmask & KW_PCIE1)
278 add_pcie_port(1, PCIE1_VIRT_BASE);
280 kirkwood_pci.nr_controllers = num_pcie_ports;
281 pci_common_init(&kirkwood_pci);