blob: ab619ee0ef4916222e5e9ce8d72d688fb45c7f48 [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;
Yijing Wangc2791b82014-11-11 17:45:45 -0700102 struct msi_controller *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;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200114 u32 port;
115 u32 lane;
116 int devfn;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300117 unsigned int mem_target;
118 unsigned int mem_attr;
119 unsigned int io_target;
120 unsigned int io_attr;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200121 struct clk *clk;
Russell King8a182c22015-10-03 19:13:22 +0100122 struct gpio_desc *reset_gpio;
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +0200123 char *reset_name;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200124 struct mvebu_sw_pci_bridge bridge;
125 struct device_node *dn;
126 struct mvebu_pcie *pcie;
127 phys_addr_t memwin_base;
128 size_t memwin_size;
129 phys_addr_t iowin_base;
130 size_t iowin_size;
Thomas Petazzoniab14d452015-03-17 15:55:45 +0100131 u32 saved_pcie_stat;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200132};
133
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900134static inline void mvebu_writel(struct mvebu_pcie_port *port, u32 val, u32 reg)
135{
136 writel(val, port->base + reg);
137}
138
139static inline u32 mvebu_readl(struct mvebu_pcie_port *port, u32 reg)
140{
141 return readl(port->base + reg);
142}
143
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700144static inline bool mvebu_has_ioport(struct mvebu_pcie_port *port)
145{
146 return port->io_target != -1 && port->io_attr != -1;
147}
148
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200149static bool mvebu_pcie_link_up(struct mvebu_pcie_port *port)
150{
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900151 return !(mvebu_readl(port, PCIE_STAT_OFF) & PCIE_STAT_LINK_DOWN);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200152}
153
154static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie_port *port, int nr)
155{
156 u32 stat;
157
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900158 stat = mvebu_readl(port, PCIE_STAT_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200159 stat &= ~PCIE_STAT_BUS;
160 stat |= nr << 8;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900161 mvebu_writel(port, stat, PCIE_STAT_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200162}
163
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200164static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie_port *port, int nr)
165{
166 u32 stat;
167
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900168 stat = mvebu_readl(port, PCIE_STAT_OFF);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200169 stat &= ~PCIE_STAT_DEV;
170 stat |= nr << 16;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900171 mvebu_writel(port, stat, PCIE_STAT_OFF);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200172}
173
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200174/*
175 * Setup PCIE BARs and Address Decode Wins:
176 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
177 * WIN[0-3] -> DRAM bank[0-3]
178 */
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200179static void mvebu_pcie_setup_wins(struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200180{
181 const struct mbus_dram_target_info *dram;
182 u32 size;
183 int i;
184
185 dram = mv_mbus_dram_info();
186
187 /* First, disable and clear BARs and windows. */
188 for (i = 1; i < 3; i++) {
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900189 mvebu_writel(port, 0, PCIE_BAR_CTRL_OFF(i));
190 mvebu_writel(port, 0, PCIE_BAR_LO_OFF(i));
191 mvebu_writel(port, 0, PCIE_BAR_HI_OFF(i));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200192 }
193
194 for (i = 0; i < 5; i++) {
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900195 mvebu_writel(port, 0, PCIE_WIN04_CTRL_OFF(i));
196 mvebu_writel(port, 0, PCIE_WIN04_BASE_OFF(i));
197 mvebu_writel(port, 0, PCIE_WIN04_REMAP_OFF(i));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200198 }
199
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900200 mvebu_writel(port, 0, PCIE_WIN5_CTRL_OFF);
201 mvebu_writel(port, 0, PCIE_WIN5_BASE_OFF);
202 mvebu_writel(port, 0, PCIE_WIN5_REMAP_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200203
204 /* Setup windows for DDR banks. Count total DDR size on the fly. */
205 size = 0;
206 for (i = 0; i < dram->num_cs; i++) {
207 const struct mbus_dram_window *cs = dram->cs + i;
208
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900209 mvebu_writel(port, cs->base & 0xffff0000,
210 PCIE_WIN04_BASE_OFF(i));
211 mvebu_writel(port, 0, PCIE_WIN04_REMAP_OFF(i));
212 mvebu_writel(port,
213 ((cs->size - 1) & 0xffff0000) |
214 (cs->mbus_attr << 8) |
215 (dram->mbus_dram_target_id << 4) | 1,
216 PCIE_WIN04_CTRL_OFF(i));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200217
218 size += cs->size;
219 }
220
221 /* Round up 'size' to the nearest power of two. */
222 if ((size & (size - 1)) != 0)
223 size = 1 << fls(size);
224
225 /* Setup BAR[1] to all DRAM banks. */
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900226 mvebu_writel(port, dram->cs[0].base, PCIE_BAR_LO_OFF(1));
227 mvebu_writel(port, 0, PCIE_BAR_HI_OFF(1));
228 mvebu_writel(port, ((size - 1) & 0xffff0000) | 1,
229 PCIE_BAR_CTRL_OFF(1));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200230}
231
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200232static void mvebu_pcie_setup_hw(struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200233{
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900234 u32 cmd, mask;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200235
236 /* Point PCIe unit MBUS decode windows to DRAM space. */
237 mvebu_pcie_setup_wins(port);
238
239 /* Master + slave enable. */
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900240 cmd = mvebu_readl(port, PCIE_CMD_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200241 cmd |= PCI_COMMAND_IO;
242 cmd |= PCI_COMMAND_MEMORY;
243 cmd |= PCI_COMMAND_MASTER;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900244 mvebu_writel(port, cmd, PCIE_CMD_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200245
246 /* Enable interrupt lines A-D. */
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900247 mask = mvebu_readl(port, PCIE_MASK_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200248 mask |= PCIE_MASK_ENABLE_INTS;
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900249 mvebu_writel(port, mask, PCIE_MASK_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200250}
251
252static int mvebu_pcie_hw_rd_conf(struct mvebu_pcie_port *port,
253 struct pci_bus *bus,
254 u32 devfn, int where, int size, u32 *val)
255{
Russell King79e3f6c2015-09-23 18:17:32 +0100256 void __iomem *conf_data = port->base + PCIE_CONF_DATA_OFF;
257
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900258 mvebu_writel(port, PCIE_CONF_ADDR(bus->number, devfn, where),
259 PCIE_CONF_ADDR_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200260
Russell King79e3f6c2015-09-23 18:17:32 +0100261 switch (size) {
262 case 1:
263 *val = readb_relaxed(conf_data + (where & 3));
264 break;
265 case 2:
266 *val = readw_relaxed(conf_data + (where & 2));
267 break;
268 case 4:
269 *val = readl_relaxed(conf_data);
270 break;
271 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200272
273 return PCIBIOS_SUCCESSFUL;
274}
275
276static int mvebu_pcie_hw_wr_conf(struct mvebu_pcie_port *port,
277 struct pci_bus *bus,
278 u32 devfn, int where, int size, u32 val)
279{
Russell King79e3f6c2015-09-23 18:17:32 +0100280 void __iomem *conf_data = port->base + PCIE_CONF_DATA_OFF;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200281
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900282 mvebu_writel(port, PCIE_CONF_ADDR(bus->number, devfn, where),
283 PCIE_CONF_ADDR_OFF);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200284
Russell King79e3f6c2015-09-23 18:17:32 +0100285 switch (size) {
286 case 1:
287 writeb(val, conf_data + (where & 3));
288 break;
289 case 2:
290 writew(val, conf_data + (where & 2));
291 break;
292 case 4:
293 writel(val, conf_data);
294 break;
295 default:
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900296 return PCIBIOS_BAD_REGISTER_NUMBER;
Russell King79e3f6c2015-09-23 18:17:32 +0100297 }
Seungwon Jeon032b4c02013-10-04 18:58:15 +0900298
299 return PCIBIOS_SUCCESSFUL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200300}
301
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200302/*
303 * Remove windows, starting from the largest ones to the smallest
304 * ones.
305 */
306static void mvebu_pcie_del_windows(struct mvebu_pcie_port *port,
307 phys_addr_t base, size_t size)
308{
309 while (size) {
310 size_t sz = 1 << (fls(size) - 1);
311
312 mvebu_mbus_del_window(base, sz);
313 base += sz;
314 size -= sz;
315 }
316}
317
318/*
319 * MBus windows can only have a power of two size, but PCI BARs do not
320 * have this constraint. Therefore, we have to split the PCI BAR into
321 * areas each having a power of two size. We start from the largest
322 * one (i.e highest order bit set in the size).
323 */
324static void mvebu_pcie_add_windows(struct mvebu_pcie_port *port,
325 unsigned int target, unsigned int attribute,
326 phys_addr_t base, size_t size,
327 phys_addr_t remap)
328{
329 size_t size_mapped = 0;
330
331 while (size) {
332 size_t sz = 1 << (fls(size) - 1);
333 int ret;
334
335 ret = mvebu_mbus_add_window_remap_by_id(target, attribute, base,
336 sz, remap);
337 if (ret) {
Fabio Estevam9aa52852014-04-29 09:58:07 -0300338 phys_addr_t end = base + sz - 1;
339
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200340 dev_err(&port->pcie->pdev->dev,
Fabio Estevam9aa52852014-04-29 09:58:07 -0300341 "Could not create MBus window at [mem %pa-%pa]: %d\n",
342 &base, &end, ret);
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200343 mvebu_pcie_del_windows(port, base - size_mapped,
344 size_mapped);
345 return;
346 }
347
348 size -= sz;
349 size_mapped += sz;
350 base += sz;
351 if (remap != MVEBU_MBUS_NO_REMAP)
352 remap += sz;
353 }
354}
355
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200356static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port *port)
357{
358 phys_addr_t iobase;
359
360 /* Are the new iobase/iolimit values invalid? */
361 if (port->bridge.iolimit < port->bridge.iobase ||
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700362 port->bridge.iolimitupper < port->bridge.iobaseupper ||
363 !(port->bridge.command & PCI_COMMAND_IO)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200364
365 /* If a window was configured, remove it */
366 if (port->iowin_base) {
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200367 mvebu_pcie_del_windows(port, port->iowin_base,
368 port->iowin_size);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200369 port->iowin_base = 0;
370 port->iowin_size = 0;
371 }
372
373 return;
374 }
375
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700376 if (!mvebu_has_ioport(port)) {
377 dev_WARN(&port->pcie->pdev->dev,
378 "Attempt to set IO when IO is disabled\n");
379 return;
380 }
381
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200382 /*
383 * We read the PCI-to-PCI bridge emulated registers, and
384 * calculate the base address and size of the address decoding
385 * window to setup, according to the PCI-to-PCI bridge
386 * specifications. iobase is the bus address, port->iowin_base
387 * is the CPU address.
388 */
389 iobase = ((port->bridge.iobase & 0xF0) << 8) |
390 (port->bridge.iobaseupper << 16);
391 port->iowin_base = port->pcie->io.start + iobase;
392 port->iowin_size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) |
393 (port->bridge.iolimitupper << 16)) -
Willy Tarreaub6d07e02014-04-18 14:19:50 +0200394 iobase) + 1;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200395
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200396 mvebu_pcie_add_windows(port, port->io_target, port->io_attr,
397 port->iowin_base, port->iowin_size,
398 iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200399}
400
401static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port *port)
402{
403 /* Are the new membase/memlimit values invalid? */
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700404 if (port->bridge.memlimit < port->bridge.membase ||
405 !(port->bridge.command & PCI_COMMAND_MEMORY)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200406
407 /* If a window was configured, remove it */
408 if (port->memwin_base) {
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200409 mvebu_pcie_del_windows(port, port->memwin_base,
410 port->memwin_size);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200411 port->memwin_base = 0;
412 port->memwin_size = 0;
413 }
414
415 return;
416 }
417
418 /*
419 * We read the PCI-to-PCI bridge emulated registers, and
420 * calculate the base address and size of the address decoding
421 * window to setup, according to the PCI-to-PCI bridge
422 * specifications.
423 */
424 port->memwin_base = ((port->bridge.membase & 0xFFF0) << 16);
425 port->memwin_size =
426 (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) -
Willy Tarreaub6d07e02014-04-18 14:19:50 +0200427 port->memwin_base + 1;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200428
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200429 mvebu_pcie_add_windows(port, port->mem_target, port->mem_attr,
430 port->memwin_base, port->memwin_size,
431 MVEBU_MBUS_NO_REMAP);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200432}
433
434/*
435 * Initialize the configuration space of the PCI-to-PCI bridge
436 * associated with the given PCIe interface.
437 */
438static void mvebu_sw_pci_bridge_init(struct mvebu_pcie_port *port)
439{
440 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
441
442 memset(bridge, 0, sizeof(struct mvebu_sw_pci_bridge));
443
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200444 bridge->class = PCI_CLASS_BRIDGE_PCI;
445 bridge->vendor = PCI_VENDOR_ID_MARVELL;
Andrew Lunna760d2f2014-02-05 11:55:49 +0100446 bridge->device = mvebu_readl(port, PCIE_DEV_ID_OFF) >> 16;
447 bridge->revision = mvebu_readl(port, PCIE_DEV_REV_OFF) & 0xff;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200448 bridge->header_type = PCI_HEADER_TYPE_BRIDGE;
449 bridge->cache_line_size = 0x10;
450
451 /* We support 32 bits I/O addressing */
452 bridge->iobase = PCI_IO_RANGE_TYPE_32;
453 bridge->iolimit = PCI_IO_RANGE_TYPE_32;
454}
455
456/*
457 * Read the configuration space of the PCI-to-PCI bridge associated to
458 * the given PCIe interface.
459 */
460static int mvebu_sw_pci_bridge_read(struct mvebu_pcie_port *port,
461 unsigned int where, int size, u32 *value)
462{
463 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
464
465 switch (where & ~3) {
466 case PCI_VENDOR_ID:
467 *value = bridge->device << 16 | bridge->vendor;
468 break;
469
470 case PCI_COMMAND:
Thomas Petazzoni6eb237c2013-05-23 16:32:53 +0200471 *value = bridge->command;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200472 break;
473
474 case PCI_CLASS_REVISION:
475 *value = bridge->class << 16 | bridge->interface << 8 |
476 bridge->revision;
477 break;
478
479 case PCI_CACHE_LINE_SIZE:
480 *value = bridge->bist << 24 | bridge->header_type << 16 |
481 bridge->latency_timer << 8 | bridge->cache_line_size;
482 break;
483
484 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
485 *value = bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4];
486 break;
487
488 case PCI_PRIMARY_BUS:
489 *value = (bridge->secondary_latency_timer << 24 |
490 bridge->subordinate_bus << 16 |
491 bridge->secondary_bus << 8 |
492 bridge->primary_bus);
493 break;
494
495 case PCI_IO_BASE:
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700496 if (!mvebu_has_ioport(port))
497 *value = bridge->secondary_status << 16;
498 else
499 *value = (bridge->secondary_status << 16 |
500 bridge->iolimit << 8 |
501 bridge->iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200502 break;
503
504 case PCI_MEMORY_BASE:
505 *value = (bridge->memlimit << 16 | bridge->membase);
506 break;
507
508 case PCI_PREF_MEMORY_BASE:
Thomas Petazzoni36dd1f32013-08-01 15:44:19 +0200509 *value = 0;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200510 break;
511
512 case PCI_IO_BASE_UPPER16:
513 *value = (bridge->iolimitupper << 16 | bridge->iobaseupper);
514 break;
515
516 case PCI_ROM_ADDRESS1:
517 *value = 0;
518 break;
519
Jason Gunthorpef407dae2013-11-26 11:27:28 -0700520 case PCI_INTERRUPT_LINE:
521 /* LINE PIN MIN_GNT MAX_LAT */
522 *value = 0;
523 break;
524
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200525 default:
Russell King58c19a12015-09-23 18:17:26 +0100526 /*
527 * PCI defines configuration read accesses to reserved or
528 * unimplemented registers to read as zero and complete
529 * normally.
530 */
531 *value = 0;
532 return PCIBIOS_SUCCESSFUL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200533 }
534
535 if (size == 2)
536 *value = (*value >> (8 * (where & 3))) & 0xffff;
537 else if (size == 1)
538 *value = (*value >> (8 * (where & 3))) & 0xff;
539
540 return PCIBIOS_SUCCESSFUL;
541}
542
543/* Write to the PCI-to-PCI bridge configuration space */
544static int mvebu_sw_pci_bridge_write(struct mvebu_pcie_port *port,
545 unsigned int where, int size, u32 value)
546{
547 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
548 u32 mask, reg;
549 int err;
550
551 if (size == 4)
552 mask = 0x0;
553 else if (size == 2)
554 mask = ~(0xffff << ((where & 3) * 8));
555 else if (size == 1)
556 mask = ~(0xff << ((where & 3) * 8));
557 else
558 return PCIBIOS_BAD_REGISTER_NUMBER;
559
560 err = mvebu_sw_pci_bridge_read(port, where & ~3, 4, &reg);
561 if (err)
562 return err;
563
564 value = (reg & mask) | value << ((where & 3) * 8);
565
566 switch (where & ~3) {
567 case PCI_COMMAND:
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700568 {
569 u32 old = bridge->command;
570
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700571 if (!mvebu_has_ioport(port))
572 value &= ~PCI_COMMAND_IO;
573
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200574 bridge->command = value & 0xffff;
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700575 if ((old ^ bridge->command) & PCI_COMMAND_IO)
576 mvebu_pcie_handle_iobase_change(port);
577 if ((old ^ bridge->command) & PCI_COMMAND_MEMORY)
578 mvebu_pcie_handle_membase_change(port);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200579 break;
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700580 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200581
582 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
583 bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4] = value;
584 break;
585
586 case PCI_IO_BASE:
587 /*
588 * We also keep bit 1 set, it is a read-only bit that
589 * indicates we support 32 bits addressing for the
590 * I/O
591 */
592 bridge->iobase = (value & 0xff) | PCI_IO_RANGE_TYPE_32;
593 bridge->iolimit = ((value >> 8) & 0xff) | PCI_IO_RANGE_TYPE_32;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200594 mvebu_pcie_handle_iobase_change(port);
595 break;
596
597 case PCI_MEMORY_BASE:
598 bridge->membase = value & 0xffff;
599 bridge->memlimit = value >> 16;
600 mvebu_pcie_handle_membase_change(port);
601 break;
602
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200603 case PCI_IO_BASE_UPPER16:
604 bridge->iobaseupper = value & 0xffff;
605 bridge->iolimitupper = value >> 16;
606 mvebu_pcie_handle_iobase_change(port);
607 break;
608
609 case PCI_PRIMARY_BUS:
610 bridge->primary_bus = value & 0xff;
611 bridge->secondary_bus = (value >> 8) & 0xff;
612 bridge->subordinate_bus = (value >> 16) & 0xff;
613 bridge->secondary_latency_timer = (value >> 24) & 0xff;
614 mvebu_pcie_set_local_bus_nr(port, bridge->secondary_bus);
615 break;
616
617 default:
618 break;
619 }
620
621 return PCIBIOS_SUCCESSFUL;
622}
623
624static inline struct mvebu_pcie *sys_to_pcie(struct pci_sys_data *sys)
625{
626 return sys->private_data;
627}
628
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400629static struct mvebu_pcie_port *mvebu_pcie_find_port(struct mvebu_pcie *pcie,
630 struct pci_bus *bus,
631 int devfn)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200632{
633 int i;
634
635 for (i = 0; i < pcie->nports; i++) {
636 struct mvebu_pcie_port *port = &pcie->ports[i];
Jingoo Hancf3a9d62014-11-12 12:27:54 +0900637
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200638 if (bus->number == 0 && port->devfn == devfn)
639 return port;
640 if (bus->number != 0 &&
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200641 bus->number >= port->bridge.secondary_bus &&
642 bus->number <= port->bridge.subordinate_bus)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200643 return port;
644 }
645
646 return NULL;
647}
648
649/* PCI configuration space write function */
650static int mvebu_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
651 int where, int size, u32 val)
652{
653 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
654 struct mvebu_pcie_port *port;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200655 int ret;
656
657 port = mvebu_pcie_find_port(pcie, bus, devfn);
658 if (!port)
659 return PCIBIOS_DEVICE_NOT_FOUND;
660
661 /* Access the emulated PCI-to-PCI bridge */
662 if (bus->number == 0)
663 return mvebu_sw_pci_bridge_write(port, where, size, val);
664
Jason Gunthorpe9f352f02013-10-01 11:58:00 -0600665 if (!mvebu_pcie_link_up(port))
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200666 return PCIBIOS_DEVICE_NOT_FOUND;
667
668 /*
669 * On the secondary bus, we don't want to expose any other
670 * device than the device physically connected in the PCIe
671 * slot, visible in slot 0. In slot 1, there's a special
672 * Marvell device that only makes sense when the Armada is
673 * used as a PCIe endpoint.
674 */
675 if (bus->number == port->bridge.secondary_bus &&
676 PCI_SLOT(devfn) != 0)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200677 return PCIBIOS_DEVICE_NOT_FOUND;
678
679 /* Access the real PCIe interface */
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200680 ret = mvebu_pcie_hw_wr_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200681 where, size, val);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200682
683 return ret;
684}
685
686/* PCI configuration space read function */
687static int mvebu_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
688 int size, u32 *val)
689{
690 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
691 struct mvebu_pcie_port *port;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200692 int ret;
693
694 port = mvebu_pcie_find_port(pcie, bus, devfn);
695 if (!port) {
696 *val = 0xffffffff;
697 return PCIBIOS_DEVICE_NOT_FOUND;
698 }
699
700 /* Access the emulated PCI-to-PCI bridge */
701 if (bus->number == 0)
702 return mvebu_sw_pci_bridge_read(port, where, size, val);
703
Jason Gunthorpe9f352f02013-10-01 11:58:00 -0600704 if (!mvebu_pcie_link_up(port)) {
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200705 *val = 0xffffffff;
706 return PCIBIOS_DEVICE_NOT_FOUND;
707 }
708
709 /*
710 * On the secondary bus, we don't want to expose any other
711 * device than the device physically connected in the PCIe
712 * slot, visible in slot 0. In slot 1, there's a special
713 * Marvell device that only makes sense when the Armada is
714 * used as a PCIe endpoint.
715 */
716 if (bus->number == port->bridge.secondary_bus &&
717 PCI_SLOT(devfn) != 0) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200718 *val = 0xffffffff;
719 return PCIBIOS_DEVICE_NOT_FOUND;
720 }
721
722 /* Access the real PCIe interface */
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200723 ret = mvebu_pcie_hw_rd_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200724 where, size, val);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200725
726 return ret;
727}
728
729static struct pci_ops mvebu_pcie_ops = {
730 .read = mvebu_pcie_rd_conf,
731 .write = mvebu_pcie_wr_conf,
732};
733
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200734static int mvebu_pcie_setup(int nr, struct pci_sys_data *sys)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200735{
736 struct mvebu_pcie *pcie = sys_to_pcie(sys);
737 int i;
738
Lorenzo Pieralisi8c7d14742014-11-21 11:29:26 +0000739 pcie->mem.name = "PCI MEM";
740 pcie->realio.name = "PCI I/O";
Jason Gunthorpe2613ba42014-02-12 15:57:08 -0700741
742 if (request_resource(&iomem_resource, &pcie->mem))
743 return 0;
744
745 if (resource_size(&pcie->realio) != 0) {
746 if (request_resource(&ioport_resource, &pcie->realio)) {
747 release_resource(&pcie->mem);
748 return 0;
749 }
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700750 pci_add_resource_offset(&sys->resources, &pcie->realio,
751 sys->io_offset);
Jason Gunthorpe2613ba42014-02-12 15:57:08 -0700752 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200753 pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset);
754 pci_add_resource(&sys->resources, &pcie->busn);
755
756 for (i = 0; i < pcie->nports; i++) {
757 struct mvebu_pcie_port *port = &pcie->ports[i];
Jingoo Hancf3a9d62014-11-12 12:27:54 +0900758
Ezequiel Garciab22503a2013-07-26 10:17:49 -0300759 if (!port->base)
760 continue;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200761 mvebu_pcie_setup_hw(port);
762 }
763
764 return 1;
765}
766
Jingoo Hanf5072df2013-09-17 14:26:46 +0900767static resource_size_t mvebu_pcie_align_resource(struct pci_dev *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400768 const struct resource *res,
769 resource_size_t start,
770 resource_size_t size,
771 resource_size_t align)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200772{
773 if (dev->bus->number != 0)
774 return start;
775
776 /*
777 * On the PCI-to-PCI bridge side, the I/O windows must have at
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200778 * least a 64 KB size and the memory windows must have at
779 * least a 1 MB size. Moreover, MBus windows need to have a
780 * base address aligned on their size, and their size must be
781 * a power of two. This means that if the BAR doesn't have a
782 * power of two size, several MBus windows will actually be
783 * created. We need to ensure that the biggest MBus window
784 * (which will be the first one) is aligned on its size, which
785 * explains the rounddown_pow_of_two() being done here.
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200786 */
787 if (res->flags & IORESOURCE_IO)
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200788 return round_up(start, max_t(resource_size_t, SZ_64K,
789 rounddown_pow_of_two(size)));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200790 else if (res->flags & IORESOURCE_MEM)
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200791 return round_up(start, max_t(resource_size_t, SZ_1M,
792 rounddown_pow_of_two(size)));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200793 else
794 return start;
795}
796
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200797static void mvebu_pcie_enable(struct mvebu_pcie *pcie)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200798{
799 struct hw_pci hw;
800
801 memset(&hw, 0, sizeof(hw));
802
Yijing Wang26914232014-11-11 15:44:17 -0700803#ifdef CONFIG_PCI_MSI
804 hw.msi_ctrl = pcie->msi;
805#endif
806
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200807 hw.nr_controllers = 1;
808 hw.private_data = (void **)&pcie;
809 hw.setup = mvebu_pcie_setup;
Grant Likely16b84e52013-09-19 16:44:55 -0500810 hw.map_irq = of_irq_parse_and_map_pci;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200811 hw.ops = &mvebu_pcie_ops;
812 hw.align_resource = mvebu_pcie_align_resource;
813
Yijing Wang2dead002015-04-28 15:01:35 +0800814 pci_common_init_dev(&pcie->pdev->dev, &hw);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200815}
816
817/*
818 * Looks up the list of register addresses encoded into the reg =
819 * <...> property for one that matches the given port/lane. Once
820 * found, maps it.
821 */
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200822static void __iomem *mvebu_pcie_map_registers(struct platform_device *pdev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400823 struct device_node *np,
824 struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200825{
826 struct resource regs;
827 int ret = 0;
828
829 ret = of_address_to_resource(np, 0, &regs);
830 if (ret)
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530831 return ERR_PTR(ret);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200832
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530833 return devm_ioremap_resource(&pdev->dev, &regs);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200834}
835
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300836#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
837#define DT_TYPE_IO 0x1
838#define DT_TYPE_MEM32 0x2
839#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
840#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
841
842static int mvebu_get_tgt_attr(struct device_node *np, int devfn,
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700843 unsigned long type,
844 unsigned int *tgt,
845 unsigned int *attr)
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300846{
847 const int na = 3, ns = 2;
848 const __be32 *range;
849 int rlen, nranges, rangesz, pna, i;
850
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700851 *tgt = -1;
852 *attr = -1;
853
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300854 range = of_get_property(np, "ranges", &rlen);
855 if (!range)
856 return -EINVAL;
857
858 pna = of_n_addr_cells(np);
859 rangesz = pna + na + ns;
860 nranges = rlen / sizeof(__be32) / rangesz;
861
Thomas Petazzoni56fab6e2014-09-17 17:58:27 +0200862 for (i = 0; i < nranges; i++, range += rangesz) {
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300863 u32 flags = of_read_number(range, 1);
Jean-Jacques Hiblot4f4bde12014-02-14 11:46:15 -0700864 u32 slot = of_read_number(range + 1, 1);
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300865 u64 cpuaddr = of_read_number(range + na, pna);
866 unsigned long rtype;
867
868 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
869 rtype = IORESOURCE_IO;
870 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
871 rtype = IORESOURCE_MEM;
Thomas Petazzoni56fab6e2014-09-17 17:58:27 +0200872 else
873 continue;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300874
875 if (slot == PCI_SLOT(devfn) && type == rtype) {
876 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
877 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
878 return 0;
879 }
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300880 }
881
882 return -ENOENT;
883}
884
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200885static void mvebu_pcie_msi_enable(struct mvebu_pcie *pcie)
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200886{
887 struct device_node *msi_node;
888
889 msi_node = of_parse_phandle(pcie->pdev->dev.of_node,
890 "msi-parent", 0);
891 if (!msi_node)
892 return;
893
894 pcie->msi = of_pci_find_msi_chip_by_node(msi_node);
Bjorn Helgaas3a107662015-08-04 14:54:04 -0500895 of_node_put(msi_node);
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200896
897 if (pcie->msi)
898 pcie->msi->dev = &pcie->pdev->dev;
899}
900
Thomas Petazzoniab14d452015-03-17 15:55:45 +0100901static int mvebu_pcie_suspend(struct device *dev)
902{
903 struct mvebu_pcie *pcie;
904 int i;
905
906 pcie = dev_get_drvdata(dev);
907 for (i = 0; i < pcie->nports; i++) {
908 struct mvebu_pcie_port *port = pcie->ports + i;
909 port->saved_pcie_stat = mvebu_readl(port, PCIE_STAT_OFF);
910 }
911
912 return 0;
913}
914
915static int mvebu_pcie_resume(struct device *dev)
916{
917 struct mvebu_pcie *pcie;
918 int i;
919
920 pcie = dev_get_drvdata(dev);
921 for (i = 0; i < pcie->nports; i++) {
922 struct mvebu_pcie_port *port = pcie->ports + i;
923 mvebu_writel(port, port->saved_pcie_stat, PCIE_STAT_OFF);
924 mvebu_pcie_setup_hw(port);
925 }
926
927 return 0;
928}
929
Russell King37bfa772015-10-03 19:13:02 +0100930static void mvebu_pcie_port_clk_put(void *data)
931{
932 struct mvebu_pcie_port *port = data;
933
934 clk_put(port->clk);
935}
936
Russell King49cb1f72015-10-03 19:12:57 +0100937static int mvebu_pcie_parse_port(struct mvebu_pcie *pcie,
938 struct mvebu_pcie_port *port, struct device_node *child)
939{
940 struct device *dev = &pcie->pdev->dev;
941 enum of_gpio_flags flags;
Russell King8a182c22015-10-03 19:13:22 +0100942 int reset_gpio, ret;
Russell King49cb1f72015-10-03 19:12:57 +0100943
944 port->pcie = pcie;
945
946 if (of_property_read_u32(child, "marvell,pcie-port", &port->port)) {
947 dev_warn(dev, "ignoring %s, missing pcie-port property\n",
948 of_node_full_name(child));
949 goto skip;
950 }
951
952 if (of_property_read_u32(child, "marvell,pcie-lane", &port->lane))
953 port->lane = 0;
954
Russell King37bfa772015-10-03 19:13:02 +0100955 port->name = devm_kasprintf(dev, GFP_KERNEL, "pcie%d.%d", port->port,
956 port->lane);
957 if (!port->name) {
958 ret = -ENOMEM;
959 goto err;
960 }
Russell King49cb1f72015-10-03 19:12:57 +0100961
962 port->devfn = of_pci_get_devfn(child);
963 if (port->devfn < 0)
964 goto skip;
965
966 ret = mvebu_get_tgt_attr(dev->of_node, port->devfn, IORESOURCE_MEM,
967 &port->mem_target, &port->mem_attr);
968 if (ret < 0) {
969 dev_err(dev, "%s: cannot get tgt/attr for mem window\n",
970 port->name);
971 goto skip;
972 }
973
Russell King37bfa772015-10-03 19:13:02 +0100974 if (resource_size(&pcie->io) != 0) {
Russell King49cb1f72015-10-03 19:12:57 +0100975 mvebu_get_tgt_attr(dev->of_node, port->devfn, IORESOURCE_IO,
976 &port->io_target, &port->io_attr);
Russell King37bfa772015-10-03 19:13:02 +0100977 } else {
Russell King49cb1f72015-10-03 19:12:57 +0100978 port->io_target = -1;
979 port->io_attr = -1;
980 }
981
Russell King8a182c22015-10-03 19:13:22 +0100982 reset_gpio = of_get_named_gpio_flags(child, "reset-gpios", 0, &flags);
983 if (reset_gpio == -EPROBE_DEFER) {
984 ret = reset_gpio;
Russell King37bfa772015-10-03 19:13:02 +0100985 goto err;
986 }
987
Russell King8a182c22015-10-03 19:13:22 +0100988 if (gpio_is_valid(reset_gpio)) {
989 unsigned long gpio_flags;
990
Russell King37bfa772015-10-03 19:13:02 +0100991 port->reset_name = devm_kasprintf(dev, GFP_KERNEL, "%s-reset",
992 port->name);
993 if (!port->reset_name) {
994 ret = -ENOMEM;
995 goto err;
996 }
Russell King49cb1f72015-10-03 19:12:57 +0100997
Russell King8a182c22015-10-03 19:13:22 +0100998 if (flags & OF_GPIO_ACTIVE_LOW) {
999 dev_info(dev, "%s: reset gpio is active low\n",
1000 of_node_full_name(child));
1001 gpio_flags = GPIOF_ACTIVE_LOW |
1002 GPIOF_OUT_INIT_LOW;
1003 } else {
1004 gpio_flags = GPIOF_OUT_INIT_HIGH;
1005 }
1006
1007 ret = devm_gpio_request_one(dev, reset_gpio, gpio_flags,
1008 port->reset_name);
Russell King49cb1f72015-10-03 19:12:57 +01001009 if (ret) {
1010 if (ret == -EPROBE_DEFER)
1011 goto err;
1012 goto skip;
1013 }
Russell King8a182c22015-10-03 19:13:22 +01001014
1015 port->reset_gpio = gpio_to_desc(reset_gpio);
Russell King49cb1f72015-10-03 19:12:57 +01001016 }
1017
1018 port->clk = of_clk_get_by_name(child, NULL);
1019 if (IS_ERR(port->clk)) {
1020 dev_err(dev, "%s: cannot get clock\n", port->name);
1021 goto skip;
1022 }
1023
Russell King37bfa772015-10-03 19:13:02 +01001024 ret = devm_add_action(dev, mvebu_pcie_port_clk_put, port);
1025 if (ret < 0) {
1026 clk_put(port->clk);
1027 goto err;
1028 }
1029
Russell King49cb1f72015-10-03 19:12:57 +01001030 return 1;
1031
1032skip:
1033 ret = 0;
Russell King37bfa772015-10-03 19:13:02 +01001034
1035 /* In the case of skipping, we need to free these */
1036 devm_kfree(dev, port->reset_name);
1037 port->reset_name = NULL;
1038 devm_kfree(dev, port->name);
1039 port->name = NULL;
1040
Russell King49cb1f72015-10-03 19:12:57 +01001041err:
1042 return ret;
1043}
1044
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001045static int mvebu_pcie_probe(struct platform_device *pdev)
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001046{
1047 struct mvebu_pcie *pcie;
1048 struct device_node *np = pdev->dev.of_node;
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001049 struct device_node *child;
Russell King7de36cd2015-09-23 18:17:37 +01001050 int num, i, ret;
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001051
1052 pcie = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_pcie),
1053 GFP_KERNEL);
1054 if (!pcie)
1055 return -ENOMEM;
1056
1057 pcie->pdev = pdev;
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001058 platform_set_drvdata(pdev, pcie);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001059
Thomas Petazzoni11be6542013-07-26 10:17:48 -03001060 /* Get the PCIe memory and I/O aperture */
1061 mvebu_mbus_get_pcie_mem_aperture(&pcie->mem);
1062 if (resource_size(&pcie->mem) == 0) {
1063 dev_err(&pdev->dev, "invalid memory aperture size\n");
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001064 return -EINVAL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001065 }
1066
Thomas Petazzoni11be6542013-07-26 10:17:48 -03001067 mvebu_mbus_get_pcie_io_aperture(&pcie->io);
Thomas Petazzoni11be6542013-07-26 10:17:48 -03001068
Jason Gunthorpe641e6742013-11-26 11:02:55 -07001069 if (resource_size(&pcie->io) != 0) {
1070 pcie->realio.flags = pcie->io.flags;
1071 pcie->realio.start = PCIBIOS_MIN_IO;
1072 pcie->realio.end = min_t(resource_size_t,
1073 IO_SPACE_LIMIT,
1074 resource_size(&pcie->io));
1075 } else
1076 pcie->realio = pcie->io;
Thomas Petazzoni11be6542013-07-26 10:17:48 -03001077
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001078 /* Get the bus range */
1079 ret = of_pci_parse_bus_range(np, &pcie->busn);
1080 if (ret) {
1081 dev_err(&pdev->dev, "failed to parse bus-range property: %d\n",
1082 ret);
1083 return ret;
1084 }
1085
Russell King7de36cd2015-09-23 18:17:37 +01001086 num = of_get_available_child_count(pdev->dev.of_node);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001087
Russell King19fdb802015-10-03 19:13:17 +01001088 pcie->ports = devm_kcalloc(&pdev->dev, num, sizeof(*pcie->ports),
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001089 GFP_KERNEL);
1090 if (!pcie->ports)
1091 return -ENOMEM;
1092
1093 i = 0;
Russell King2aee2ed2015-09-23 18:17:42 +01001094 for_each_available_child_of_node(pdev->dev.of_node, child) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001095 struct mvebu_pcie_port *port = &pcie->ports[i];
1096
Russell King49cb1f72015-10-03 19:12:57 +01001097 ret = mvebu_pcie_parse_port(pcie, port, child);
Russell King37bfa772015-10-03 19:13:02 +01001098 if (ret < 0) {
1099 of_node_put(child);
Russell King49cb1f72015-10-03 19:12:57 +01001100 return ret;
Russell King37bfa772015-10-03 19:13:02 +01001101 } else if (ret == 0) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001102 continue;
Russell King37bfa772015-10-03 19:13:02 +01001103 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001104
Russell King3884d842015-10-03 19:13:07 +01001105 port->dn = child;
1106 i++;
1107 }
1108 pcie->nports = i;
1109
1110 for (i = 0; i < pcie->nports; i++) {
1111 struct mvebu_pcie_port *port = &pcie->ports[i];
1112
1113 child = port->dn;
1114 if (!child)
1115 continue;
1116
Russell King8a182c22015-10-03 19:13:22 +01001117 if (port->reset_gpio) {
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +02001118 u32 reset_udelay = 20000;
1119
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +02001120 of_property_read_u32(child, "reset-delay-us",
1121 &reset_udelay);
1122
Russell King8a182c22015-10-03 19:13:22 +01001123 gpiod_set_value_cansleep(port->reset_gpio, 0);
1124 msleep(reset_udelay / 1000);
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +02001125 }
1126
Sebastian Hesselbarthb42285f2013-08-13 14:25:20 +02001127 ret = clk_prepare_enable(port->clk);
1128 if (ret)
1129 continue;
1130
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001131 port->base = mvebu_pcie_map_registers(pdev, child, port);
Tushar Beheraf48fbf92013-06-17 14:46:13 +05301132 if (IS_ERR(port->base)) {
Russell Kingab7ea302015-09-23 18:17:53 +01001133 dev_err(&pdev->dev, "%s: cannot map registers\n",
1134 port->name);
Tushar Beheraf48fbf92013-06-17 14:46:13 +05301135 port->base = NULL;
Sebastian Hesselbarthb42285f2013-08-13 14:25:20 +02001136 clk_disable_unprepare(port->clk);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001137 continue;
1138 }
1139
Thomas Petazzonif4ac9902013-05-23 16:32:51 +02001140 mvebu_pcie_set_local_dev_nr(port, 1);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001141 mvebu_sw_pci_bridge_init(port);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001142 }
1143
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +02001144 pcie->nports = i;
Thomas Petazzoni31e45ec2013-12-26 16:52:41 +01001145
1146 for (i = 0; i < (IO_SPACE_LIMIT - SZ_64K); i += SZ_64K)
1147 pci_ioremap_io(i, pcie->io.start + i);
1148
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +02001149 mvebu_pcie_msi_enable(pcie);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001150 mvebu_pcie_enable(pcie);
1151
Thomas Petazzoniab14d452015-03-17 15:55:45 +01001152 platform_set_drvdata(pdev, pcie);
1153
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001154 return 0;
1155}
1156
1157static const struct of_device_id mvebu_pcie_of_match_table[] = {
1158 { .compatible = "marvell,armada-xp-pcie", },
1159 { .compatible = "marvell,armada-370-pcie", },
Sebastian Hesselbarthcc54ccd2013-08-13 14:25:24 +02001160 { .compatible = "marvell,dove-pcie", },
Thomas Petazzoni005625f2013-05-15 15:36:54 +02001161 { .compatible = "marvell,kirkwood-pcie", },
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001162 {},
1163};
1164MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table);
1165
Thomas Petazzoniab14d452015-03-17 15:55:45 +01001166static struct dev_pm_ops mvebu_pcie_pm_ops = {
1167 .suspend_noirq = mvebu_pcie_suspend,
1168 .resume_noirq = mvebu_pcie_resume,
1169};
1170
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001171static struct platform_driver mvebu_pcie_driver = {
1172 .driver = {
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001173 .name = "mvebu-pcie",
Sachin Kamat339135f2013-12-19 14:34:59 +05301174 .of_match_table = mvebu_pcie_of_match_table,
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001175 /* driver unloading/unbinding currently not supported */
1176 .suppress_bind_attrs = true,
Thomas Petazzoniab14d452015-03-17 15:55:45 +01001177 .pm = &mvebu_pcie_pm_ops,
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001178 },
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001179 .probe = mvebu_pcie_probe,
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001180};
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001181module_platform_driver(mvebu_pcie_driver);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001182
1183MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
1184MODULE_DESCRIPTION("Marvell EBU PCIe driver");
Thierry Reding505d8652014-07-11 08:58:57 +02001185MODULE_LICENSE("GPL v2");