pcie.c 7.0 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/clk.h>
15
#include <linux/mbus.h>
16
#include <video/vga.h>
17
#include <asm/irq.h>
18
#include <asm/mach/pci.h>
19
#include <plat/pcie.h>
20
#include <mach/bridge-regs.h>
21 22
#include "common.h"

23 24 25 26 27 28
static void kirkwood_enable_pcie_clk(const char *port)
{
	struct clk *clk;

	clk = clk_get_sys("pcie", port);
	if (IS_ERR(clk)) {
A
Andrew Lunn 已提交
29
		pr_err("PCIE clock %s missing\n", port);
30 31 32 33 34 35 36 37 38 39
		return;
	}
	clk_prepare_enable(clk);
	clk_put(clk);
}

/* This function is called very early in the boot when probing the
   hardware to determine what we actually are, and what rate tclk is
   ticking at. Hence calling kirkwood_enable_pcie_clk() is not
   possible since the clk tree has not been created yet. */
40 41 42 43 44 45 46
void kirkwood_enable_pcie(void)
{
	u32 curr = readl(CLOCK_GATING_CTRL);
	if (!(curr & CGC_PEX0))
		writel(curr | CGC_PEX0, CLOCK_GATING_CTRL);
}

47
void kirkwood_pcie_id(u32 *dev, u32 *rev)
48
{
49
	kirkwood_enable_pcie();
50 51
	*dev = orion_pcie_dev_id(PCIE_VIRT_BASE);
	*rev = orion_pcie_rev(PCIE_VIRT_BASE);
52
}
53

54 55 56 57 58
struct pcie_port {
	u8			root_bus_nr;
	void __iomem		*base;
	spinlock_t		conf_lock;
	int			irq;
59
	struct resource		res;
60
};
61

62 63 64 65
static int pcie_port_map[2];
static int num_pcie_ports;

static int pcie_valid_config(struct pcie_port *pp, int bus, int dev)
66 67 68 69 70 71
{
	/*
	 * Don't go out when trying to access --
	 * 1. nonexisting device on local bus
	 * 2. where there's no device connected (no link)
	 */
72
	if (bus == pp->root_bus_nr && dev == 0)
73 74
		return 1;

75
	if (!orion_pcie_link_up(pp->base))
76 77
		return 0;

78
	if (bus == pp->root_bus_nr && dev != 1)
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
		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)
{
94 95
	struct pci_sys_data *sys = bus->sysdata;
	struct pcie_port *pp = sys->private_data;
96 97 98
	unsigned long flags;
	int ret;

99
	if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0) {
100 101 102 103
		*val = 0xffffffff;
		return PCIBIOS_DEVICE_NOT_FOUND;
	}

104 105 106
	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);
107 108 109 110 111 112 113

	return ret;
}

static int pcie_wr_conf(struct pci_bus *bus, u32 devfn,
			int where, int size, u32 val)
{
114 115
	struct pci_sys_data *sys = bus->sysdata;
	struct pcie_port *pp = sys->private_data;
116 117 118
	unsigned long flags;
	int ret;

119
	if (pcie_valid_config(pp, bus->number, PCI_SLOT(devfn)) == 0)
120 121
		return PCIBIOS_DEVICE_NOT_FOUND;

122 123 124
	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);
125 126 127 128 129 130 131 132 133

	return ret;
}

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

134
static void __init pcie0_ioresources_init(struct pcie_port *pp)
135
{
136
	pp->base = PCIE_VIRT_BASE;
137
	pp->irq	= IRQ_KIRKWOOD_PCIE;
138 139

	/*
140
	 * IORESOURCE_MEM
141
	 */
142 143 144 145
	pp->res.name = "PCIe 0 MEM";
	pp->res.start = KIRKWOOD_PCIE_MEM_PHYS_BASE;
	pp->res.end = pp->res.start + KIRKWOOD_PCIE_MEM_SIZE - 1;
	pp->res.flags = IORESOURCE_MEM;
146 147
}

148
static void __init pcie1_ioresources_init(struct pcie_port *pp)
149
{
150
	pp->base = PCIE1_VIRT_BASE;
151
	pp->irq	= IRQ_KIRKWOOD_PCIE1;
152 153 154 155

	/*
	 * IORESOURCE_MEM
	 */
156 157 158 159
	pp->res.name = "PCIe 1 MEM";
	pp->res.start = KIRKWOOD_PCIE1_MEM_PHYS_BASE;
	pp->res.end = pp->res.start + KIRKWOOD_PCIE1_MEM_SIZE - 1;
	pp->res.flags = IORESOURCE_MEM;
160 161 162 163 164 165 166 167 168 169 170
}

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

	if (nr >= num_pcie_ports)
		return 0;

	index = pcie_port_map[nr];
A
Andrew Lunn 已提交
171
	pr_info("PCI: bus%d uses PCIe port %d\n", sys->busnr, index);
172 173 174 175 176 177 178 179 180 181

	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:
182
		kirkwood_enable_pcie_clk("0");
183
		pcie0_ioresources_init(pp);
184
		pci_ioremap_io(SZ_64K * sys->busnr, KIRKWOOD_PCIE_IO_PHYS_BASE);
185 186
		break;
	case 1:
187
		kirkwood_enable_pcie_clk("1");
188
		pcie1_ioresources_init(pp);
A
Andrew Lunn 已提交
189 190
		pci_ioremap_io(SZ_64K * sys->busnr,
			       KIRKWOOD_PCIE1_IO_PHYS_BASE);
191 192
		break;
	default:
193
		panic("PCIe setup: invalid controller %d", index);
194 195
	}

196
	if (request_resource(&iomem_resource, &pp->res))
197 198
		panic("Request PCIe%d Memory resource failed\n", index);

199
	pci_add_resource_offset(&sys->resources, &pp->res, sys->mem_offset);
200

201 202 203 204 205
	/*
	 * Generic PCIe unit setup.
	 */
	orion_pcie_set_local_bus_nr(pp->base, sys->busnr);

206
	orion_pcie_setup(pp->base);
207

208 209 210
	return 1;
}

211 212 213 214 215 216
/*
 * The root complex has a hardwired class of PCI_CLASS_MEMORY_OTHER, when it
 * is operating as a root complex this needs to be switched to
 * PCI_CLASS_BRIDGE_HOST or Linux will errantly try to process the BAR's on
 * the device. Decoding setup is handled by the orion code.
 */
217
static void rc_pci_fixup(struct pci_dev *dev)
218 219 220 221
{
	if (dev->bus->parent == NULL && dev->devfn == 0) {
		int i;

222 223
		dev->class &= 0xff;
		dev->class |= PCI_CLASS_BRIDGE_HOST << 8;
224 225 226 227 228 229 230 231 232
		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);

233 234
static int __init kirkwood_pcie_map_irq(const struct pci_dev *dev, u8 slot,
	u8 pin)
235
{
236 237
	struct pci_sys_data *sys = dev->sysdata;
	struct pcie_port *pp = sys->private_data;
238 239

	return pp->irq;
240 241 242 243 244
}

static struct hw_pci kirkwood_pci __initdata = {
	.setup		= kirkwood_pcie_setup,
	.map_irq	= kirkwood_pcie_map_irq,
245
	.ops            = &pcie_ops,
246 247
};

248
static void __init add_pcie_port(int index, void __iomem *base)
249
{
250 251 252
	pcie_port_map[num_pcie_ports++] = index;
	pr_info("Kirkwood PCIe port %d: link %s\n", index,
		orion_pcie_link_up(base) ? "up" : "down");
253 254 255
}

void __init kirkwood_pcie_init(unsigned int portmask)
256
{
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
	mvebu_mbus_add_window_remap_flags("pcie0.0",
					  KIRKWOOD_PCIE_IO_PHYS_BASE,
					  KIRKWOOD_PCIE_IO_SIZE,
					  KIRKWOOD_PCIE_IO_BUS_BASE,
					  MVEBU_MBUS_PCI_IO);
	mvebu_mbus_add_window_remap_flags("pcie0.0",
					  KIRKWOOD_PCIE_MEM_PHYS_BASE,
					  KIRKWOOD_PCIE_MEM_SIZE,
					  MVEBU_MBUS_NO_REMAP,
					  MVEBU_MBUS_PCI_MEM);
	mvebu_mbus_add_window_remap_flags("pcie1.0",
					  KIRKWOOD_PCIE1_IO_PHYS_BASE,
					  KIRKWOOD_PCIE1_IO_SIZE,
					  KIRKWOOD_PCIE1_IO_BUS_BASE,
					  MVEBU_MBUS_PCI_IO);
	mvebu_mbus_add_window_remap_flags("pcie1.0",
					  KIRKWOOD_PCIE1_MEM_PHYS_BASE,
					  KIRKWOOD_PCIE1_MEM_SIZE,
					  MVEBU_MBUS_NO_REMAP,
					  MVEBU_MBUS_PCI_MEM);

278 279
	vga_base = KIRKWOOD_PCIE_MEM_PHYS_BASE;

280 281 282 283 284 285 286
	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;
287 288
	pci_common_init(&kirkwood_pci);
}