pcie.c 6.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * arch/arm/mach-kirkwood/pcie.c
 *
 * PCIe functions for Marvell Kirkwood SoCs
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/kernel.h>
#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 20
#include "common.h"

21 22 23 24 25 26 27
void kirkwood_enable_pcie(void)
{
	u32 curr = readl(CLOCK_GATING_CTRL);
	if (!(curr & CGC_PEX0))
		writel(curr | CGC_PEX0, CLOCK_GATING_CTRL);
}

28 29
void __init kirkwood_pcie_id(u32 *dev, u32 *rev)
{
30
	kirkwood_enable_pcie();
31 32 33
	*dev = orion_pcie_dev_id((void __iomem *)PCIE_VIRT_BASE);
	*rev = orion_pcie_rev((void __iomem *)PCIE_VIRT_BASE);
}
34

35 36 37 38 39 40 41
struct pcie_port {
	u8			root_bus_nr;
	void __iomem		*base;
	spinlock_t		conf_lock;
	int			irq;
	struct resource		res[2];
};
42

43 44 45 46
static int pcie_port_map[2];
static int num_pcie_ports;

static inline struct pcie_port *bus_to_port(struct pci_bus *bus)
47
{
48 49
	struct pci_sys_data *sys = bus->sysdata;
	return sys->private_data;
50 51
}

52
static int pcie_valid_config(struct pcie_port *pp, int bus, int dev)
53 54 55 56 57 58
{
	/*
	 * Don't go out when trying to access --
	 * 1. nonexisting device on local bus
	 * 2. where there's no device connected (no link)
	 */
59
	if (bus == pp->root_bus_nr && dev == 0)
60 61
		return 1;

62
	if (!orion_pcie_link_up(pp->base))
63 64
		return 0;

65
	if (bus == pp->root_bus_nr && dev != 1)
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
		return 0;

	return 1;
}


/*
 * PCIe config cycles are done by programming the PCIE_CONF_ADDR register
 * and then reading the PCIE_CONF_DATA register. Need to make sure these
 * transactions are atomic.
 */

static int pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
			int size, u32 *val)
{
81
	struct pcie_port *pp = bus_to_port(bus);
82 83 84
	unsigned long flags;
	int ret;

85
	if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) {
86 87 88 89
		*val = 0xffffffff;
		return PCIBIOS_DEVICE_NOT_FOUND;
	}

90 91 92
	spin_lock_irqsave(&pp->conf_lock, flags);
	ret = orion_pcie_rd_conf(pp->base, bus, devfn, where, size, val);
	spin_unlock_irqrestore(&pp->conf_lock, flags);
93 94 95 96 97 98 99

	return ret;
}

static int pcie_wr_conf(struct pci_bus *bus, u32 devfn,
			int where, int size, u32 val)
{
100
	struct pcie_port *pp = bus_to_port(bus);
101 102 103
	unsigned long flags;
	int ret;

104
	if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0)
105 106
		return PCIBIOS_DEVICE_NOT_FOUND;

107 108 109
	spin_lock_irqsave(&pp->conf_lock, flags);
	ret = orion_pcie_wr_conf(pp->base, bus, devfn, where, size, val);
	spin_unlock_irqrestore(&pp->conf_lock, flags);
110 111 112 113 114 115 116 117 118

	return ret;
}

static struct pci_ops pcie_ops = {
	.read = pcie_rd_conf,
	.write = pcie_wr_conf,
};

119
static void __init pcie0_ioresources_init(struct pcie_port *pp)
120
{
121 122
	pp->base = (void __iomem *)PCIE_VIRT_BASE;
	pp->irq	= IRQ_KIRKWOOD_PCIE;
123 124

	/*
125
	 * IORESOURCE_IO
126
	 */
127
	pp->res[0].name = "PCIe 0 I/O Space";
128
	pp->res[0].start = KIRKWOOD_PCIE_IO_BUS_BASE;
129 130
	pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE_IO_SIZE - 1;
	pp->res[0].flags = IORESOURCE_IO;
131 132

	/*
133
	 * IORESOURCE_MEM
134
	 */
135 136 137 138 139 140
	pp->res[1].name = "PCIe 0 MEM";
	pp->res[1].start = KIRKWOOD_PCIE_MEM_PHYS_BASE;
	pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE_MEM_SIZE - 1;
	pp->res[1].flags = IORESOURCE_MEM;
}

141
static void __init pcie1_ioresources_init(struct pcie_port *pp)
142
{
143 144
	pp->base = (void __iomem *)PCIE1_VIRT_BASE;
	pp->irq	= IRQ_KIRKWOOD_PCIE1;
145 146 147 148

	/*
	 * IORESOURCE_IO
	 */
149
	pp->res[0].name = "PCIe 1 I/O Space";
150
	pp->res[0].start = KIRKWOOD_PCIE1_IO_BUS_BASE;
151 152
	pp->res[0].end = pp->res[0].start + KIRKWOOD_PCIE1_IO_SIZE - 1;
	pp->res[0].flags = IORESOURCE_IO;
153 154 155 156

	/*
	 * IORESOURCE_MEM
	 */
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
	pp->res[1].name = "PCIe 1 MEM";
	pp->res[1].start = KIRKWOOD_PCIE1_MEM_PHYS_BASE;
	pp->res[1].end = pp->res[1].start + KIRKWOOD_PCIE1_MEM_SIZE - 1;
	pp->res[1].flags = IORESOURCE_MEM;
}

static int __init kirkwood_pcie_setup(int nr, struct pci_sys_data *sys)
{
	extern unsigned int kirkwood_clk_ctrl;
	struct pcie_port *pp;
	int index;

	if (nr >= num_pcie_ports)
		return 0;

	index = pcie_port_map[nr];
	printk(KERN_INFO "PCI: bus%d uses PCIe port %d\n", sys->busnr, index);

	pp = kzalloc(sizeof(*pp), GFP_KERNEL);
	if (!pp)
		panic("PCIe: failed to allocate pcie_port data");
	sys->private_data = pp;
	pp->root_bus_nr = sys->busnr;
	spin_lock_init(&pp->conf_lock);

	switch (index) {
	case 0:
		kirkwood_clk_ctrl |= CGC_PEX0;
185
		pcie0_ioresources_init(pp);
186 187 188
		break;
	case 1:
		kirkwood_clk_ctrl |= CGC_PEX1;
189
		pcie1_ioresources_init(pp);
190 191
		break;
	default:
192
		panic("PCIe setup: invalid controller %d", index);
193 194
	}

195 196 197 198 199 200 201 202 203 204
	if (request_resource(&ioport_resource, &pp->res[0]))
		panic("Request PCIe%d IO resource failed\n", index);
	if (request_resource(&iomem_resource, &pp->res[1]))
		panic("Request PCIe%d Memory resource failed\n", index);

	sys->resource[0] = &pp->res[0];
	sys->resource[1] = &pp->res[1];
	sys->resource[2] = NULL;
	sys->io_offset = 0;

205 206 207 208 209 210
	/*
	 * Generic PCIe unit setup.
	 */
	orion_pcie_set_local_bus_nr(pp->base, sys->busnr);

	orion_pcie_setup(pp->base, &kirkwood_mbus_dram_info);
211

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
	return 1;
}

static void __devinit rc_pci_fixup(struct pci_dev *dev)
{
	/*
	 * Prevent enumeration of root complex.
	 */
	if (dev->bus->parent == NULL && dev->devfn == 0) {
		int i;

		for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
			dev->resource[i].start = 0;
			dev->resource[i].end   = 0;
			dev->resource[i].flags = 0;
		}
	}
}
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL, PCI_ANY_ID, rc_pci_fixup);

static struct pci_bus __init *
kirkwood_pcie_scan_bus(int nr, struct pci_sys_data *sys)
{
	struct pci_bus *bus;

237
	if (nr < num_pcie_ports) {
238 239 240 241 242 243 244 245 246 247 248
		bus = pci_scan_bus(sys->busnr, &pcie_ops, sys);
	} else {
		bus = NULL;
		BUG();
	}

	return bus;
}

static int __init kirkwood_pcie_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{
249 250 251
	struct pcie_port *pp = bus_to_port(dev->bus);

	return pp->irq;
252 253 254 255 256 257 258 259 260
}

static struct hw_pci kirkwood_pci __initdata = {
	.swizzle	= pci_std_swizzle,
	.setup		= kirkwood_pcie_setup,
	.scan		= kirkwood_pcie_scan_bus,
	.map_irq	= kirkwood_pcie_map_irq,
};

261 262 263 264 265 266 267 268 269 270 271 272
static void __init add_pcie_port(int index, unsigned long base)
{
	printk(KERN_INFO "Kirkwood PCIe port %d: ", index);

	if (orion_pcie_link_up((void __iomem *)base)) {
		printk(KERN_INFO "link up\n");
		pcie_port_map[num_pcie_ports++] = index;
	} else
		printk(KERN_INFO "link down, ignoring\n");
}

void __init kirkwood_pcie_init(unsigned int portmask)
273
{
274 275 276 277 278 279 280
	if (portmask & KW_PCIE0)
		add_pcie_port(0, PCIE_VIRT_BASE);

	if (portmask & KW_PCIE1)
		add_pcie_port(1, PCIE1_VIRT_BASE);

	kirkwood_pci.nr_controllers = num_pcie_ports;
281 282
	pci_common_init(&kirkwood_pci);
}