blob: 0e79665afd445ebb8e6198a274960978c58c619e [file] [log] [blame]
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001/*
2 * PCIe driver for Marvell Armada 370 and Armada XP SoCs
3 *
4 * This file is licensed under the terms of the GNU General Public
5 * License version 2. This program is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
8
9#include <linux/kernel.h>
10#include <linux/pci.h>
11#include <linux/clk.h>
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +020012#include <linux/delay.h>
13#include <linux/gpio.h>
Thomas Petazzoni45361a42013-05-16 17:55:22 +020014#include <linux/module.h>
15#include <linux/mbus.h>
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +020016#include <linux/msi.h>
Thomas Petazzoni45361a42013-05-16 17:55:22 +020017#include <linux/slab.h>
18#include <linux/platform_device.h>
19#include <linux/of_address.h>
Thomas Petazzoni45361a42013-05-16 17:55:22 +020020#include <linux/of_irq.h>
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +020021#include <linux/of_gpio.h>
22#include <linux/of_pci.h>
Thomas Petazzoni45361a42013-05-16 17:55:22 +020023#include <linux/of_platform.h>
24
25/*
26 * PCIe unit register offsets.
27 */
28#define PCIE_DEV_ID_OFF 0x0000
29#define PCIE_CMD_OFF 0x0004
30#define PCIE_DEV_REV_OFF 0x0008
31#define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
32#define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
33#define PCIE_HEADER_LOG_4_OFF 0x0128
34#define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4))
35#define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
36#define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
37#define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
38#define PCIE_WIN5_CTRL_OFF 0x1880
39#define PCIE_WIN5_BASE_OFF 0x1884
40#define PCIE_WIN5_REMAP_OFF 0x188c
41#define PCIE_CONF_ADDR_OFF 0x18f8
42#define PCIE_CONF_ADDR_EN 0x80000000
43#define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
44#define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
45#define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
46#define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
47#define PCIE_CONF_ADDR(bus, devfn, where) \
48 (PCIE_CONF_BUS(bus) | PCIE_CONF_DEV(PCI_SLOT(devfn)) | \
49 PCIE_CONF_FUNC(PCI_FUNC(devfn)) | PCIE_CONF_REG(where) | \
50 PCIE_CONF_ADDR_EN)
51#define PCIE_CONF_DATA_OFF 0x18fc
52#define PCIE_MASK_OFF 0x1910
53#define PCIE_MASK_ENABLE_INTS 0x0f000000
54#define PCIE_CTRL_OFF 0x1a00
55#define PCIE_CTRL_X1_MODE 0x0001
56#define PCIE_STAT_OFF 0x1a04
57#define PCIE_STAT_BUS 0xff00
Thomas Petazzonif4ac9902013-05-23 16:32:51 +020058#define PCIE_STAT_DEV 0x1f0000
Thomas Petazzoni45361a42013-05-16 17:55:22 +020059#define PCIE_STAT_LINK_DOWN BIT(0)
60#define PCIE_DEBUG_CTRL 0x1a60
61#define PCIE_DEBUG_SOFT_RESET BIT(20)
62
Thomas Petazzoni45361a42013-05-16 17:55:22 +020063/* PCI configuration space of a PCI-to-PCI bridge */
64struct mvebu_sw_pci_bridge {
65 u16 vendor;
66 u16 device;
67 u16 command;
Thomas Petazzoni45361a42013-05-16 17:55:22 +020068 u16 class;
69 u8 interface;
70 u8 revision;
71 u8 bist;
72 u8 header_type;
73 u8 latency_timer;
74 u8 cache_line_size;
75 u32 bar[2];
76 u8 primary_bus;
77 u8 secondary_bus;
78 u8 subordinate_bus;
79 u8 secondary_latency_timer;
80 u8 iobase;
81 u8 iolimit;
82 u16 secondary_status;
83 u16 membase;
84 u16 memlimit;
Thomas Petazzoni45361a42013-05-16 17:55:22 +020085 u16 iobaseupper;
86 u16 iolimitupper;
87 u8 cappointer;
88 u8 reserved1;
89 u16 reserved2;
90 u32 romaddr;
91 u8 intline;
92 u8 intpin;
93 u16 bridgectrl;
94};
95
96struct mvebu_pcie_port;
97
98/* Structure representing all PCIe interfaces */
99struct mvebu_pcie {
100 struct platform_device *pdev;
101 struct mvebu_pcie_port *ports;
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200102 struct msi_chip *msi;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200103 struct resource io;
104 struct resource realio;
105 struct resource mem;
106 struct resource busn;
107 int nports;
108};
109
110/* Structure representing one PCIe interface */
111struct mvebu_pcie_port {
112 char *name;
113 void __iomem *base;
114 spinlock_t conf_lock;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200115 u32 port;
116 u32 lane;
117 int devfn;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300118 unsigned int mem_target;
119 unsigned int mem_attr;
120 unsigned int io_target;
121 unsigned int io_attr;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200122 struct clk *clk;
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +0200123 int reset_gpio;
124 int reset_active_low;
125 char *reset_name;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200126 struct mvebu_sw_pci_bridge bridge;
127 struct device_node *dn;
128 struct mvebu_pcie *pcie;
129 phys_addr_t memwin_base;
130 size_t memwin_size;
131 phys_addr_t iowin_base;
132 size_t iowin_size;
133};
134
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900135static inline void mvebu_writel(struct mvebu_pcie_port *port, u32 val, u32 reg)
136{
137 writel(val, port->base + reg);
138}
139
140static inline u32 mvebu_readl(struct mvebu_pcie_port *port, u32 reg)
141{
142 return readl(port->base + reg);
143}
144
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700145static inline bool mvebu_has_ioport(struct mvebu_pcie_port *port)
146{
147 return port->io_target != -1 && port->io_attr != -1;
148}
149
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200150static bool mvebu_pcie_link_up(struct mvebu_pcie_port *port)
151{
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900152 return !(mvebu_readl(port, PCIE_STAT_OFF) & PCIE_STAT_LINK_DOWN);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200153}
154
155static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie_port *port, int nr)
156{
157 u32 stat;
158
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900159 stat = mvebu_readl(port, PCIE_STAT_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200160 stat &= ~PCIE_STAT_BUS;
161 stat |= nr << 8;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900162 mvebu_writel(port, stat, PCIE_STAT_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200163}
164
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200165static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie_port *port, int nr)
166{
167 u32 stat;
168
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900169 stat = mvebu_readl(port, PCIE_STAT_OFF);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200170 stat &= ~PCIE_STAT_DEV;
171 stat |= nr << 16;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900172 mvebu_writel(port, stat, PCIE_STAT_OFF);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200173}
174
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200175/*
176 * Setup PCIE BARs and Address Decode Wins:
177 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
178 * WIN[0-3] -> DRAM bank[0-3]
179 */
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200180static void mvebu_pcie_setup_wins(struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200181{
182 const struct mbus_dram_target_info *dram;
183 u32 size;
184 int i;
185
186 dram = mv_mbus_dram_info();
187
188 /* First, disable and clear BARs and windows. */
189 for (i = 1; i < 3; i++) {
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900190 mvebu_writel(port, 0, PCIE_BAR_CTRL_OFF(i));
191 mvebu_writel(port, 0, PCIE_BAR_LO_OFF(i));
192 mvebu_writel(port, 0, PCIE_BAR_HI_OFF(i));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200193 }
194
195 for (i = 0; i < 5; i++) {
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900196 mvebu_writel(port, 0, PCIE_WIN04_CTRL_OFF(i));
197 mvebu_writel(port, 0, PCIE_WIN04_BASE_OFF(i));
198 mvebu_writel(port, 0, PCIE_WIN04_REMAP_OFF(i));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200199 }
200
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900201 mvebu_writel(port, 0, PCIE_WIN5_CTRL_OFF);
202 mvebu_writel(port, 0, PCIE_WIN5_BASE_OFF);
203 mvebu_writel(port, 0, PCIE_WIN5_REMAP_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200204
205 /* Setup windows for DDR banks. Count total DDR size on the fly. */
206 size = 0;
207 for (i = 0; i < dram->num_cs; i++) {
208 const struct mbus_dram_window *cs = dram->cs + i;
209
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900210 mvebu_writel(port, cs->base & 0xffff0000,
211 PCIE_WIN04_BASE_OFF(i));
212 mvebu_writel(port, 0, PCIE_WIN04_REMAP_OFF(i));
213 mvebu_writel(port,
214 ((cs->size - 1) & 0xffff0000) |
215 (cs->mbus_attr << 8) |
216 (dram->mbus_dram_target_id << 4) | 1,
217 PCIE_WIN04_CTRL_OFF(i));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200218
219 size += cs->size;
220 }
221
222 /* Round up 'size' to the nearest power of two. */
223 if ((size & (size - 1)) != 0)
224 size = 1 << fls(size);
225
226 /* Setup BAR[1] to all DRAM banks. */
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900227 mvebu_writel(port, dram->cs[0].base, PCIE_BAR_LO_OFF(1));
228 mvebu_writel(port, 0, PCIE_BAR_HI_OFF(1));
229 mvebu_writel(port, ((size - 1) & 0xffff0000) | 1,
230 PCIE_BAR_CTRL_OFF(1));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200231}
232
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200233static void mvebu_pcie_setup_hw(struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200234{
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900235 u32 cmd, mask;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200236
237 /* Point PCIe unit MBUS decode windows to DRAM space. */
238 mvebu_pcie_setup_wins(port);
239
240 /* Master + slave enable. */
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900241 cmd = mvebu_readl(port, PCIE_CMD_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200242 cmd |= PCI_COMMAND_IO;
243 cmd |= PCI_COMMAND_MEMORY;
244 cmd |= PCI_COMMAND_MASTER;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900245 mvebu_writel(port, cmd, PCIE_CMD_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200246
247 /* Enable interrupt lines A-D. */
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900248 mask = mvebu_readl(port, PCIE_MASK_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200249 mask |= PCIE_MASK_ENABLE_INTS;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900250 mvebu_writel(port, mask, PCIE_MASK_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200251}
252
253static int mvebu_pcie_hw_rd_conf(struct mvebu_pcie_port *port,
254 struct pci_bus *bus,
255 u32 devfn, int where, int size, u32 *val)
256{
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900257 mvebu_writel(port, PCIE_CONF_ADDR(bus->number, devfn, where),
258 PCIE_CONF_ADDR_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200259
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900260 *val = mvebu_readl(port, PCIE_CONF_DATA_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200261
262 if (size == 1)
263 *val = (*val >> (8 * (where & 3))) & 0xff;
264 else if (size == 2)
265 *val = (*val >> (8 * (where & 3))) & 0xffff;
266
267 return PCIBIOS_SUCCESSFUL;
268}
269
270static int mvebu_pcie_hw_wr_conf(struct mvebu_pcie_port *port,
271 struct pci_bus *bus,
272 u32 devfn, int where, int size, u32 val)
273{
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900274 u32 _val, shift = 8 * (where & 3);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200275
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900276 mvebu_writel(port, PCIE_CONF_ADDR(bus->number, devfn, where),
277 PCIE_CONF_ADDR_OFF);
278 _val = mvebu_readl(port, PCIE_CONF_DATA_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200279
280 if (size == 4)
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900281 _val = val;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200282 else if (size == 2)
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900283 _val = (_val & ~(0xffff << shift)) | ((val & 0xffff) << shift);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200284 else if (size == 1)
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900285 _val = (_val & ~(0xff << shift)) | ((val & 0xff) << shift);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200286 else
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900287 return PCIBIOS_BAD_REGISTER_NUMBER;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200288
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900289 mvebu_writel(port, _val, PCIE_CONF_DATA_OFF);
290
291 return PCIBIOS_SUCCESSFUL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200292}
293
294static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port *port)
295{
296 phys_addr_t iobase;
297
298 /* Are the new iobase/iolimit values invalid? */
299 if (port->bridge.iolimit < port->bridge.iobase ||
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700300 port->bridge.iolimitupper < port->bridge.iobaseupper ||
301 !(port->bridge.command & PCI_COMMAND_IO)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200302
303 /* If a window was configured, remove it */
304 if (port->iowin_base) {
305 mvebu_mbus_del_window(port->iowin_base,
306 port->iowin_size);
307 port->iowin_base = 0;
308 port->iowin_size = 0;
309 }
310
311 return;
312 }
313
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700314 if (!mvebu_has_ioport(port)) {
315 dev_WARN(&port->pcie->pdev->dev,
316 "Attempt to set IO when IO is disabled\n");
317 return;
318 }
319
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200320 /*
321 * We read the PCI-to-PCI bridge emulated registers, and
322 * calculate the base address and size of the address decoding
323 * window to setup, according to the PCI-to-PCI bridge
324 * specifications. iobase is the bus address, port->iowin_base
325 * is the CPU address.
326 */
327 iobase = ((port->bridge.iobase & 0xF0) << 8) |
328 (port->bridge.iobaseupper << 16);
329 port->iowin_base = port->pcie->io.start + iobase;
330 port->iowin_size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) |
331 (port->bridge.iolimitupper << 16)) -
332 iobase);
333
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300334 mvebu_mbus_add_window_remap_by_id(port->io_target, port->io_attr,
335 port->iowin_base, port->iowin_size,
336 iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200337}
338
339static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port *port)
340{
341 /* Are the new membase/memlimit values invalid? */
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700342 if (port->bridge.memlimit < port->bridge.membase ||
343 !(port->bridge.command & PCI_COMMAND_MEMORY)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200344
345 /* If a window was configured, remove it */
346 if (port->memwin_base) {
347 mvebu_mbus_del_window(port->memwin_base,
348 port->memwin_size);
349 port->memwin_base = 0;
350 port->memwin_size = 0;
351 }
352
353 return;
354 }
355
356 /*
357 * We read the PCI-to-PCI bridge emulated registers, and
358 * calculate the base address and size of the address decoding
359 * window to setup, according to the PCI-to-PCI bridge
360 * specifications.
361 */
362 port->memwin_base = ((port->bridge.membase & 0xFFF0) << 16);
363 port->memwin_size =
364 (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) -
365 port->memwin_base;
366
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300367 mvebu_mbus_add_window_by_id(port->mem_target, port->mem_attr,
368 port->memwin_base, port->memwin_size);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200369}
370
371/*
372 * Initialize the configuration space of the PCI-to-PCI bridge
373 * associated with the given PCIe interface.
374 */
375static void mvebu_sw_pci_bridge_init(struct mvebu_pcie_port *port)
376{
377 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
378
379 memset(bridge, 0, sizeof(struct mvebu_sw_pci_bridge));
380
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200381 bridge->class = PCI_CLASS_BRIDGE_PCI;
382 bridge->vendor = PCI_VENDOR_ID_MARVELL;
Andrew Lunn322a8e92014-02-05 11:55:49 +0100383 bridge->device = mvebu_readl(port, PCIE_DEV_ID_OFF) >> 16;
384 bridge->revision = mvebu_readl(port, PCIE_DEV_REV_OFF) & 0xff;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200385 bridge->header_type = PCI_HEADER_TYPE_BRIDGE;
386 bridge->cache_line_size = 0x10;
387
388 /* We support 32 bits I/O addressing */
389 bridge->iobase = PCI_IO_RANGE_TYPE_32;
390 bridge->iolimit = PCI_IO_RANGE_TYPE_32;
391}
392
393/*
394 * Read the configuration space of the PCI-to-PCI bridge associated to
395 * the given PCIe interface.
396 */
397static int mvebu_sw_pci_bridge_read(struct mvebu_pcie_port *port,
398 unsigned int where, int size, u32 *value)
399{
400 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
401
402 switch (where & ~3) {
403 case PCI_VENDOR_ID:
404 *value = bridge->device << 16 | bridge->vendor;
405 break;
406
407 case PCI_COMMAND:
Thomas Petazzoni6eb237c2013-05-23 16:32:53 +0200408 *value = bridge->command;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200409 break;
410
411 case PCI_CLASS_REVISION:
412 *value = bridge->class << 16 | bridge->interface << 8 |
413 bridge->revision;
414 break;
415
416 case PCI_CACHE_LINE_SIZE:
417 *value = bridge->bist << 24 | bridge->header_type << 16 |
418 bridge->latency_timer << 8 | bridge->cache_line_size;
419 break;
420
421 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
422 *value = bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4];
423 break;
424
425 case PCI_PRIMARY_BUS:
426 *value = (bridge->secondary_latency_timer << 24 |
427 bridge->subordinate_bus << 16 |
428 bridge->secondary_bus << 8 |
429 bridge->primary_bus);
430 break;
431
432 case PCI_IO_BASE:
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700433 if (!mvebu_has_ioport(port))
434 *value = bridge->secondary_status << 16;
435 else
436 *value = (bridge->secondary_status << 16 |
437 bridge->iolimit << 8 |
438 bridge->iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200439 break;
440
441 case PCI_MEMORY_BASE:
442 *value = (bridge->memlimit << 16 | bridge->membase);
443 break;
444
445 case PCI_PREF_MEMORY_BASE:
Thomas Petazzoni36dd1f32013-08-01 15:44:19 +0200446 *value = 0;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200447 break;
448
449 case PCI_IO_BASE_UPPER16:
450 *value = (bridge->iolimitupper << 16 | bridge->iobaseupper);
451 break;
452
453 case PCI_ROM_ADDRESS1:
454 *value = 0;
455 break;
456
Jason Gunthorpef407dae2013-11-26 11:27:28 -0700457 case PCI_INTERRUPT_LINE:
458 /* LINE PIN MIN_GNT MAX_LAT */
459 *value = 0;
460 break;
461
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200462 default:
463 *value = 0xffffffff;
464 return PCIBIOS_BAD_REGISTER_NUMBER;
465 }
466
467 if (size == 2)
468 *value = (*value >> (8 * (where & 3))) & 0xffff;
469 else if (size == 1)
470 *value = (*value >> (8 * (where & 3))) & 0xff;
471
472 return PCIBIOS_SUCCESSFUL;
473}
474
475/* Write to the PCI-to-PCI bridge configuration space */
476static int mvebu_sw_pci_bridge_write(struct mvebu_pcie_port *port,
477 unsigned int where, int size, u32 value)
478{
479 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
480 u32 mask, reg;
481 int err;
482
483 if (size == 4)
484 mask = 0x0;
485 else if (size == 2)
486 mask = ~(0xffff << ((where & 3) * 8));
487 else if (size == 1)
488 mask = ~(0xff << ((where & 3) * 8));
489 else
490 return PCIBIOS_BAD_REGISTER_NUMBER;
491
492 err = mvebu_sw_pci_bridge_read(port, where & ~3, 4, &reg);
493 if (err)
494 return err;
495
496 value = (reg & mask) | value << ((where & 3) * 8);
497
498 switch (where & ~3) {
499 case PCI_COMMAND:
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700500 {
501 u32 old = bridge->command;
502
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700503 if (!mvebu_has_ioport(port))
504 value &= ~PCI_COMMAND_IO;
505
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200506 bridge->command = value & 0xffff;
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700507 if ((old ^ bridge->command) & PCI_COMMAND_IO)
508 mvebu_pcie_handle_iobase_change(port);
509 if ((old ^ bridge->command) & PCI_COMMAND_MEMORY)
510 mvebu_pcie_handle_membase_change(port);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200511 break;
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700512 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200513
514 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
515 bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4] = value;
516 break;
517
518 case PCI_IO_BASE:
519 /*
520 * We also keep bit 1 set, it is a read-only bit that
521 * indicates we support 32 bits addressing for the
522 * I/O
523 */
524 bridge->iobase = (value & 0xff) | PCI_IO_RANGE_TYPE_32;
525 bridge->iolimit = ((value >> 8) & 0xff) | PCI_IO_RANGE_TYPE_32;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200526 mvebu_pcie_handle_iobase_change(port);
527 break;
528
529 case PCI_MEMORY_BASE:
530 bridge->membase = value & 0xffff;
531 bridge->memlimit = value >> 16;
532 mvebu_pcie_handle_membase_change(port);
533 break;
534
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200535 case PCI_IO_BASE_UPPER16:
536 bridge->iobaseupper = value & 0xffff;
537 bridge->iolimitupper = value >> 16;
538 mvebu_pcie_handle_iobase_change(port);
539 break;
540
541 case PCI_PRIMARY_BUS:
542 bridge->primary_bus = value & 0xff;
543 bridge->secondary_bus = (value >> 8) & 0xff;
544 bridge->subordinate_bus = (value >> 16) & 0xff;
545 bridge->secondary_latency_timer = (value >> 24) & 0xff;
546 mvebu_pcie_set_local_bus_nr(port, bridge->secondary_bus);
547 break;
548
549 default:
550 break;
551 }
552
553 return PCIBIOS_SUCCESSFUL;
554}
555
556static inline struct mvebu_pcie *sys_to_pcie(struct pci_sys_data *sys)
557{
558 return sys->private_data;
559}
560
561static struct mvebu_pcie_port *
562mvebu_pcie_find_port(struct mvebu_pcie *pcie, struct pci_bus *bus,
563 int devfn)
564{
565 int i;
566
567 for (i = 0; i < pcie->nports; i++) {
568 struct mvebu_pcie_port *port = &pcie->ports[i];
569 if (bus->number == 0 && port->devfn == devfn)
570 return port;
571 if (bus->number != 0 &&
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200572 bus->number >= port->bridge.secondary_bus &&
573 bus->number <= port->bridge.subordinate_bus)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200574 return port;
575 }
576
577 return NULL;
578}
579
580/* PCI configuration space write function */
581static int mvebu_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
582 int where, int size, u32 val)
583{
584 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
585 struct mvebu_pcie_port *port;
586 unsigned long flags;
587 int ret;
588
589 port = mvebu_pcie_find_port(pcie, bus, devfn);
590 if (!port)
591 return PCIBIOS_DEVICE_NOT_FOUND;
592
593 /* Access the emulated PCI-to-PCI bridge */
594 if (bus->number == 0)
595 return mvebu_sw_pci_bridge_write(port, where, size, val);
596
Jason Gunthorpe9f352f02013-10-01 11:58:00 -0600597 if (!mvebu_pcie_link_up(port))
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200598 return PCIBIOS_DEVICE_NOT_FOUND;
599
600 /*
601 * On the secondary bus, we don't want to expose any other
602 * device than the device physically connected in the PCIe
603 * slot, visible in slot 0. In slot 1, there's a special
604 * Marvell device that only makes sense when the Armada is
605 * used as a PCIe endpoint.
606 */
607 if (bus->number == port->bridge.secondary_bus &&
608 PCI_SLOT(devfn) != 0)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200609 return PCIBIOS_DEVICE_NOT_FOUND;
610
611 /* Access the real PCIe interface */
612 spin_lock_irqsave(&port->conf_lock, flags);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200613 ret = mvebu_pcie_hw_wr_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200614 where, size, val);
615 spin_unlock_irqrestore(&port->conf_lock, flags);
616
617 return ret;
618}
619
620/* PCI configuration space read function */
621static int mvebu_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
622 int size, u32 *val)
623{
624 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
625 struct mvebu_pcie_port *port;
626 unsigned long flags;
627 int ret;
628
629 port = mvebu_pcie_find_port(pcie, bus, devfn);
630 if (!port) {
631 *val = 0xffffffff;
632 return PCIBIOS_DEVICE_NOT_FOUND;
633 }
634
635 /* Access the emulated PCI-to-PCI bridge */
636 if (bus->number == 0)
637 return mvebu_sw_pci_bridge_read(port, where, size, val);
638
Jason Gunthorpe9f352f02013-10-01 11:58:00 -0600639 if (!mvebu_pcie_link_up(port)) {
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200640 *val = 0xffffffff;
641 return PCIBIOS_DEVICE_NOT_FOUND;
642 }
643
644 /*
645 * On the secondary bus, we don't want to expose any other
646 * device than the device physically connected in the PCIe
647 * slot, visible in slot 0. In slot 1, there's a special
648 * Marvell device that only makes sense when the Armada is
649 * used as a PCIe endpoint.
650 */
651 if (bus->number == port->bridge.secondary_bus &&
652 PCI_SLOT(devfn) != 0) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200653 *val = 0xffffffff;
654 return PCIBIOS_DEVICE_NOT_FOUND;
655 }
656
657 /* Access the real PCIe interface */
658 spin_lock_irqsave(&port->conf_lock, flags);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200659 ret = mvebu_pcie_hw_rd_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200660 where, size, val);
661 spin_unlock_irqrestore(&port->conf_lock, flags);
662
663 return ret;
664}
665
666static struct pci_ops mvebu_pcie_ops = {
667 .read = mvebu_pcie_rd_conf,
668 .write = mvebu_pcie_wr_conf,
669};
670
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200671static int mvebu_pcie_setup(int nr, struct pci_sys_data *sys)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200672{
673 struct mvebu_pcie *pcie = sys_to_pcie(sys);
674 int i;
675
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700676 if (resource_size(&pcie->realio) != 0)
677 pci_add_resource_offset(&sys->resources, &pcie->realio,
678 sys->io_offset);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200679 pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset);
680 pci_add_resource(&sys->resources, &pcie->busn);
681
682 for (i = 0; i < pcie->nports; i++) {
683 struct mvebu_pcie_port *port = &pcie->ports[i];
Ezequiel Garciab22503a2013-07-26 10:17:49 -0300684 if (!port->base)
685 continue;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200686 mvebu_pcie_setup_hw(port);
687 }
688
689 return 1;
690}
691
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200692static struct pci_bus *mvebu_pcie_scan_bus(int nr, struct pci_sys_data *sys)
693{
694 struct mvebu_pcie *pcie = sys_to_pcie(sys);
695 struct pci_bus *bus;
696
697 bus = pci_create_root_bus(&pcie->pdev->dev, sys->busnr,
698 &mvebu_pcie_ops, sys, &sys->resources);
699 if (!bus)
700 return NULL;
701
702 pci_scan_child_bus(bus);
703
704 return bus;
705}
706
Jingoo Hanf5072df2013-09-17 14:26:46 +0900707static void mvebu_pcie_add_bus(struct pci_bus *bus)
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200708{
709 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
710 bus->msi = pcie->msi;
711}
712
Jingoo Hanf5072df2013-09-17 14:26:46 +0900713static resource_size_t mvebu_pcie_align_resource(struct pci_dev *dev,
714 const struct resource *res,
715 resource_size_t start,
716 resource_size_t size,
717 resource_size_t align)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200718{
719 if (dev->bus->number != 0)
720 return start;
721
722 /*
723 * On the PCI-to-PCI bridge side, the I/O windows must have at
724 * least a 64 KB size and be aligned on their size, and the
725 * memory windows must have at least a 1 MB size and be
726 * aligned on their size
727 */
728 if (res->flags & IORESOURCE_IO)
Jingoo Han06489002013-12-27 09:34:36 +0900729 return round_up(start, max_t(resource_size_t, SZ_64K, size));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200730 else if (res->flags & IORESOURCE_MEM)
Jingoo Han06489002013-12-27 09:34:36 +0900731 return round_up(start, max_t(resource_size_t, SZ_1M, size));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200732 else
733 return start;
734}
735
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200736static void mvebu_pcie_enable(struct mvebu_pcie *pcie)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200737{
738 struct hw_pci hw;
739
740 memset(&hw, 0, sizeof(hw));
741
742 hw.nr_controllers = 1;
743 hw.private_data = (void **)&pcie;
744 hw.setup = mvebu_pcie_setup;
745 hw.scan = mvebu_pcie_scan_bus;
Grant Likely16b84e52013-09-19 16:44:55 -0500746 hw.map_irq = of_irq_parse_and_map_pci;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200747 hw.ops = &mvebu_pcie_ops;
748 hw.align_resource = mvebu_pcie_align_resource;
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200749 hw.add_bus = mvebu_pcie_add_bus;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200750
751 pci_common_init(&hw);
752}
753
754/*
755 * Looks up the list of register addresses encoded into the reg =
756 * <...> property for one that matches the given port/lane. Once
757 * found, maps it.
758 */
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200759static void __iomem *mvebu_pcie_map_registers(struct platform_device *pdev,
760 struct device_node *np, struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200761{
762 struct resource regs;
763 int ret = 0;
764
765 ret = of_address_to_resource(np, 0, &regs);
766 if (ret)
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530767 return ERR_PTR(ret);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200768
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530769 return devm_ioremap_resource(&pdev->dev, &regs);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200770}
771
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300772#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
773#define DT_TYPE_IO 0x1
774#define DT_TYPE_MEM32 0x2
775#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
776#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
777
778static int mvebu_get_tgt_attr(struct device_node *np, int devfn,
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700779 unsigned long type,
780 unsigned int *tgt,
781 unsigned int *attr)
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300782{
783 const int na = 3, ns = 2;
784 const __be32 *range;
785 int rlen, nranges, rangesz, pna, i;
786
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700787 *tgt = -1;
788 *attr = -1;
789
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300790 range = of_get_property(np, "ranges", &rlen);
791 if (!range)
792 return -EINVAL;
793
794 pna = of_n_addr_cells(np);
795 rangesz = pna + na + ns;
796 nranges = rlen / sizeof(__be32) / rangesz;
797
798 for (i = 0; i < nranges; i++) {
799 u32 flags = of_read_number(range, 1);
800 u32 slot = of_read_number(range, 2);
801 u64 cpuaddr = of_read_number(range + na, pna);
802 unsigned long rtype;
803
804 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
805 rtype = IORESOURCE_IO;
806 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
807 rtype = IORESOURCE_MEM;
808
809 if (slot == PCI_SLOT(devfn) && type == rtype) {
810 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
811 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
812 return 0;
813 }
814
815 range += rangesz;
816 }
817
818 return -ENOENT;
819}
820
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200821static void mvebu_pcie_msi_enable(struct mvebu_pcie *pcie)
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200822{
823 struct device_node *msi_node;
824
825 msi_node = of_parse_phandle(pcie->pdev->dev.of_node,
826 "msi-parent", 0);
827 if (!msi_node)
828 return;
829
830 pcie->msi = of_pci_find_msi_chip_by_node(msi_node);
831
832 if (pcie->msi)
833 pcie->msi->dev = &pcie->pdev->dev;
834}
835
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200836static int mvebu_pcie_probe(struct platform_device *pdev)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200837{
838 struct mvebu_pcie *pcie;
839 struct device_node *np = pdev->dev.of_node;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200840 struct device_node *child;
841 int i, ret;
842
843 pcie = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_pcie),
844 GFP_KERNEL);
845 if (!pcie)
846 return -ENOMEM;
847
848 pcie->pdev = pdev;
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200849 platform_set_drvdata(pdev, pcie);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200850
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300851 /* Get the PCIe memory and I/O aperture */
852 mvebu_mbus_get_pcie_mem_aperture(&pcie->mem);
853 if (resource_size(&pcie->mem) == 0) {
854 dev_err(&pdev->dev, "invalid memory aperture size\n");
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200855 return -EINVAL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200856 }
857
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300858 mvebu_mbus_get_pcie_io_aperture(&pcie->io);
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300859
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700860 if (resource_size(&pcie->io) != 0) {
861 pcie->realio.flags = pcie->io.flags;
862 pcie->realio.start = PCIBIOS_MIN_IO;
863 pcie->realio.end = min_t(resource_size_t,
864 IO_SPACE_LIMIT,
865 resource_size(&pcie->io));
866 } else
867 pcie->realio = pcie->io;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300868
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200869 /* Get the bus range */
870 ret = of_pci_parse_bus_range(np, &pcie->busn);
871 if (ret) {
872 dev_err(&pdev->dev, "failed to parse bus-range property: %d\n",
873 ret);
874 return ret;
875 }
876
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200877 i = 0;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200878 for_each_child_of_node(pdev->dev.of_node, child) {
879 if (!of_device_is_available(child))
880 continue;
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200881 i++;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200882 }
883
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200884 pcie->ports = devm_kzalloc(&pdev->dev, i *
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200885 sizeof(struct mvebu_pcie_port),
886 GFP_KERNEL);
887 if (!pcie->ports)
888 return -ENOMEM;
889
890 i = 0;
891 for_each_child_of_node(pdev->dev.of_node, child) {
892 struct mvebu_pcie_port *port = &pcie->ports[i];
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +0200893 enum of_gpio_flags flags;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200894
895 if (!of_device_is_available(child))
896 continue;
897
898 port->pcie = pcie;
899
900 if (of_property_read_u32(child, "marvell,pcie-port",
901 &port->port)) {
902 dev_warn(&pdev->dev,
903 "ignoring PCIe DT node, missing pcie-port property\n");
904 continue;
905 }
906
907 if (of_property_read_u32(child, "marvell,pcie-lane",
908 &port->lane))
909 port->lane = 0;
910
911 port->name = kasprintf(GFP_KERNEL, "pcie%d.%d",
912 port->port, port->lane);
913
914 port->devfn = of_pci_get_devfn(child);
915 if (port->devfn < 0)
916 continue;
917
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300918 ret = mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_MEM,
919 &port->mem_target, &port->mem_attr);
920 if (ret < 0) {
921 dev_err(&pdev->dev, "PCIe%d.%d: cannot get tgt/attr for mem window\n",
922 port->port, port->lane);
923 continue;
924 }
925
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700926 if (resource_size(&pcie->io) != 0)
927 mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_IO,
928 &port->io_target, &port->io_attr);
929 else {
930 port->io_target = -1;
931 port->io_attr = -1;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300932 }
933
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +0200934 port->reset_gpio = of_get_named_gpio_flags(child,
935 "reset-gpios", 0, &flags);
936 if (gpio_is_valid(port->reset_gpio)) {
937 u32 reset_udelay = 20000;
938
939 port->reset_active_low = flags & OF_GPIO_ACTIVE_LOW;
940 port->reset_name = kasprintf(GFP_KERNEL,
941 "pcie%d.%d-reset", port->port, port->lane);
942 of_property_read_u32(child, "reset-delay-us",
943 &reset_udelay);
944
945 ret = devm_gpio_request_one(&pdev->dev,
946 port->reset_gpio, GPIOF_DIR_OUT, port->reset_name);
947 if (ret) {
948 if (ret == -EPROBE_DEFER)
949 return ret;
950 continue;
951 }
952
953 gpio_set_value(port->reset_gpio,
954 (port->reset_active_low) ? 1 : 0);
955 msleep(reset_udelay/1000);
956 }
957
Sebastian Hesselbarthb42285f2013-08-13 14:25:20 +0200958 port->clk = of_clk_get_by_name(child, NULL);
959 if (IS_ERR(port->clk)) {
960 dev_err(&pdev->dev, "PCIe%d.%d: cannot get clock\n",
961 port->port, port->lane);
962 continue;
963 }
964
965 ret = clk_prepare_enable(port->clk);
966 if (ret)
967 continue;
968
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200969 port->base = mvebu_pcie_map_registers(pdev, child, port);
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530970 if (IS_ERR(port->base)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200971 dev_err(&pdev->dev, "PCIe%d.%d: cannot map registers\n",
972 port->port, port->lane);
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530973 port->base = NULL;
Sebastian Hesselbarthb42285f2013-08-13 14:25:20 +0200974 clk_disable_unprepare(port->clk);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200975 continue;
976 }
977
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200978 mvebu_pcie_set_local_dev_nr(port, 1);
979
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200980 port->dn = child;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200981 spin_lock_init(&port->conf_lock);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200982 mvebu_sw_pci_bridge_init(port);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200983 i++;
984 }
985
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200986 pcie->nports = i;
Thomas Petazzoni31e45ec2013-12-26 16:52:41 +0100987
988 for (i = 0; i < (IO_SPACE_LIMIT - SZ_64K); i += SZ_64K)
989 pci_ioremap_io(i, pcie->io.start + i);
990
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200991 mvebu_pcie_msi_enable(pcie);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200992 mvebu_pcie_enable(pcie);
993
994 return 0;
995}
996
997static const struct of_device_id mvebu_pcie_of_match_table[] = {
998 { .compatible = "marvell,armada-xp-pcie", },
999 { .compatible = "marvell,armada-370-pcie", },
Sebastian Hesselbarthcc54ccd2013-08-13 14:25:24 +02001000 { .compatible = "marvell,dove-pcie", },
Thomas Petazzoni005625f2013-05-15 15:36:54 +02001001 { .compatible = "marvell,kirkwood-pcie", },
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001002 {},
1003};
1004MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table);
1005
1006static struct platform_driver mvebu_pcie_driver = {
1007 .driver = {
1008 .owner = THIS_MODULE,
1009 .name = "mvebu-pcie",
Sachin Kamat339135f2013-12-19 14:34:59 +05301010 .of_match_table = mvebu_pcie_of_match_table,
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001011 /* driver unloading/unbinding currently not supported */
1012 .suppress_bind_attrs = true,
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001013 },
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001014 .probe = mvebu_pcie_probe,
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001015};
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001016module_platform_driver(mvebu_pcie_driver);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001017
1018MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
1019MODULE_DESCRIPTION("Marvell EBU PCIe driver");
1020MODULE_LICENSE("GPLv2");