blob: 1ab863551920214dd95ec45dc7f42db398195503 [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;
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +0200122 int reset_gpio;
123 int reset_active_low;
124 char *reset_name;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200125 struct mvebu_sw_pci_bridge bridge;
126 struct device_node *dn;
127 struct mvebu_pcie *pcie;
128 phys_addr_t memwin_base;
129 size_t memwin_size;
130 phys_addr_t iowin_base;
131 size_t iowin_size;
Thomas Petazzoniab14d452015-03-17 15:55:45 +0100132 u32 saved_pcie_stat;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200133};
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
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200294/*
295 * Remove windows, starting from the largest ones to the smallest
296 * ones.
297 */
298static void mvebu_pcie_del_windows(struct mvebu_pcie_port *port,
299 phys_addr_t base, size_t size)
300{
301 while (size) {
302 size_t sz = 1 << (fls(size) - 1);
303
304 mvebu_mbus_del_window(base, sz);
305 base += sz;
306 size -= sz;
307 }
308}
309
310/*
311 * MBus windows can only have a power of two size, but PCI BARs do not
312 * have this constraint. Therefore, we have to split the PCI BAR into
313 * areas each having a power of two size. We start from the largest
314 * one (i.e highest order bit set in the size).
315 */
316static void mvebu_pcie_add_windows(struct mvebu_pcie_port *port,
317 unsigned int target, unsigned int attribute,
318 phys_addr_t base, size_t size,
319 phys_addr_t remap)
320{
321 size_t size_mapped = 0;
322
323 while (size) {
324 size_t sz = 1 << (fls(size) - 1);
325 int ret;
326
327 ret = mvebu_mbus_add_window_remap_by_id(target, attribute, base,
328 sz, remap);
329 if (ret) {
Fabio Estevam9aa52852014-04-29 09:58:07 -0300330 phys_addr_t end = base + sz - 1;
331
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200332 dev_err(&port->pcie->pdev->dev,
Fabio Estevam9aa52852014-04-29 09:58:07 -0300333 "Could not create MBus window at [mem %pa-%pa]: %d\n",
334 &base, &end, ret);
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200335 mvebu_pcie_del_windows(port, base - size_mapped,
336 size_mapped);
337 return;
338 }
339
340 size -= sz;
341 size_mapped += sz;
342 base += sz;
343 if (remap != MVEBU_MBUS_NO_REMAP)
344 remap += sz;
345 }
346}
347
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200348static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port *port)
349{
350 phys_addr_t iobase;
351
352 /* Are the new iobase/iolimit values invalid? */
353 if (port->bridge.iolimit < port->bridge.iobase ||
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700354 port->bridge.iolimitupper < port->bridge.iobaseupper ||
355 !(port->bridge.command & PCI_COMMAND_IO)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200356
357 /* If a window was configured, remove it */
358 if (port->iowin_base) {
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200359 mvebu_pcie_del_windows(port, port->iowin_base,
360 port->iowin_size);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200361 port->iowin_base = 0;
362 port->iowin_size = 0;
363 }
364
365 return;
366 }
367
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700368 if (!mvebu_has_ioport(port)) {
369 dev_WARN(&port->pcie->pdev->dev,
370 "Attempt to set IO when IO is disabled\n");
371 return;
372 }
373
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200374 /*
375 * We read the PCI-to-PCI bridge emulated registers, and
376 * calculate the base address and size of the address decoding
377 * window to setup, according to the PCI-to-PCI bridge
378 * specifications. iobase is the bus address, port->iowin_base
379 * is the CPU address.
380 */
381 iobase = ((port->bridge.iobase & 0xF0) << 8) |
382 (port->bridge.iobaseupper << 16);
383 port->iowin_base = port->pcie->io.start + iobase;
384 port->iowin_size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) |
385 (port->bridge.iolimitupper << 16)) -
Willy Tarreaub6d07e02014-04-18 14:19:50 +0200386 iobase) + 1;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200387
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200388 mvebu_pcie_add_windows(port, port->io_target, port->io_attr,
389 port->iowin_base, port->iowin_size,
390 iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200391}
392
393static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port *port)
394{
395 /* Are the new membase/memlimit values invalid? */
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700396 if (port->bridge.memlimit < port->bridge.membase ||
397 !(port->bridge.command & PCI_COMMAND_MEMORY)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200398
399 /* If a window was configured, remove it */
400 if (port->memwin_base) {
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200401 mvebu_pcie_del_windows(port, port->memwin_base,
402 port->memwin_size);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200403 port->memwin_base = 0;
404 port->memwin_size = 0;
405 }
406
407 return;
408 }
409
410 /*
411 * We read the PCI-to-PCI bridge emulated registers, and
412 * calculate the base address and size of the address decoding
413 * window to setup, according to the PCI-to-PCI bridge
414 * specifications.
415 */
416 port->memwin_base = ((port->bridge.membase & 0xFFF0) << 16);
417 port->memwin_size =
418 (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) -
Willy Tarreaub6d07e02014-04-18 14:19:50 +0200419 port->memwin_base + 1;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200420
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200421 mvebu_pcie_add_windows(port, port->mem_target, port->mem_attr,
422 port->memwin_base, port->memwin_size,
423 MVEBU_MBUS_NO_REMAP);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200424}
425
426/*
427 * Initialize the configuration space of the PCI-to-PCI bridge
428 * associated with the given PCIe interface.
429 */
430static void mvebu_sw_pci_bridge_init(struct mvebu_pcie_port *port)
431{
432 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
433
434 memset(bridge, 0, sizeof(struct mvebu_sw_pci_bridge));
435
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200436 bridge->class = PCI_CLASS_BRIDGE_PCI;
437 bridge->vendor = PCI_VENDOR_ID_MARVELL;
Andrew Lunna760d2f2014-02-05 11:55:49 +0100438 bridge->device = mvebu_readl(port, PCIE_DEV_ID_OFF) >> 16;
439 bridge->revision = mvebu_readl(port, PCIE_DEV_REV_OFF) & 0xff;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200440 bridge->header_type = PCI_HEADER_TYPE_BRIDGE;
441 bridge->cache_line_size = 0x10;
442
443 /* We support 32 bits I/O addressing */
444 bridge->iobase = PCI_IO_RANGE_TYPE_32;
445 bridge->iolimit = PCI_IO_RANGE_TYPE_32;
446}
447
448/*
449 * Read the configuration space of the PCI-to-PCI bridge associated to
450 * the given PCIe interface.
451 */
452static int mvebu_sw_pci_bridge_read(struct mvebu_pcie_port *port,
453 unsigned int where, int size, u32 *value)
454{
455 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
456
457 switch (where & ~3) {
458 case PCI_VENDOR_ID:
459 *value = bridge->device << 16 | bridge->vendor;
460 break;
461
462 case PCI_COMMAND:
Thomas Petazzoni6eb237c2013-05-23 16:32:53 +0200463 *value = bridge->command;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200464 break;
465
466 case PCI_CLASS_REVISION:
467 *value = bridge->class << 16 | bridge->interface << 8 |
468 bridge->revision;
469 break;
470
471 case PCI_CACHE_LINE_SIZE:
472 *value = bridge->bist << 24 | bridge->header_type << 16 |
473 bridge->latency_timer << 8 | bridge->cache_line_size;
474 break;
475
476 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
477 *value = bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4];
478 break;
479
480 case PCI_PRIMARY_BUS:
481 *value = (bridge->secondary_latency_timer << 24 |
482 bridge->subordinate_bus << 16 |
483 bridge->secondary_bus << 8 |
484 bridge->primary_bus);
485 break;
486
487 case PCI_IO_BASE:
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700488 if (!mvebu_has_ioport(port))
489 *value = bridge->secondary_status << 16;
490 else
491 *value = (bridge->secondary_status << 16 |
492 bridge->iolimit << 8 |
493 bridge->iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200494 break;
495
496 case PCI_MEMORY_BASE:
497 *value = (bridge->memlimit << 16 | bridge->membase);
498 break;
499
500 case PCI_PREF_MEMORY_BASE:
Thomas Petazzoni36dd1f32013-08-01 15:44:19 +0200501 *value = 0;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200502 break;
503
504 case PCI_IO_BASE_UPPER16:
505 *value = (bridge->iolimitupper << 16 | bridge->iobaseupper);
506 break;
507
508 case PCI_ROM_ADDRESS1:
509 *value = 0;
510 break;
511
Jason Gunthorpef407dae2013-11-26 11:27:28 -0700512 case PCI_INTERRUPT_LINE:
513 /* LINE PIN MIN_GNT MAX_LAT */
514 *value = 0;
515 break;
516
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200517 default:
518 *value = 0xffffffff;
519 return PCIBIOS_BAD_REGISTER_NUMBER;
520 }
521
522 if (size == 2)
523 *value = (*value >> (8 * (where & 3))) & 0xffff;
524 else if (size == 1)
525 *value = (*value >> (8 * (where & 3))) & 0xff;
526
527 return PCIBIOS_SUCCESSFUL;
528}
529
530/* Write to the PCI-to-PCI bridge configuration space */
531static int mvebu_sw_pci_bridge_write(struct mvebu_pcie_port *port,
532 unsigned int where, int size, u32 value)
533{
534 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
535 u32 mask, reg;
536 int err;
537
538 if (size == 4)
539 mask = 0x0;
540 else if (size == 2)
541 mask = ~(0xffff << ((where & 3) * 8));
542 else if (size == 1)
543 mask = ~(0xff << ((where & 3) * 8));
544 else
545 return PCIBIOS_BAD_REGISTER_NUMBER;
546
547 err = mvebu_sw_pci_bridge_read(port, where & ~3, 4, &reg);
548 if (err)
549 return err;
550
551 value = (reg & mask) | value << ((where & 3) * 8);
552
553 switch (where & ~3) {
554 case PCI_COMMAND:
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700555 {
556 u32 old = bridge->command;
557
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700558 if (!mvebu_has_ioport(port))
559 value &= ~PCI_COMMAND_IO;
560
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200561 bridge->command = value & 0xffff;
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700562 if ((old ^ bridge->command) & PCI_COMMAND_IO)
563 mvebu_pcie_handle_iobase_change(port);
564 if ((old ^ bridge->command) & PCI_COMMAND_MEMORY)
565 mvebu_pcie_handle_membase_change(port);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200566 break;
Jason Gunthorpe43a16f92013-11-26 11:02:54 -0700567 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200568
569 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
570 bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4] = value;
571 break;
572
573 case PCI_IO_BASE:
574 /*
575 * We also keep bit 1 set, it is a read-only bit that
576 * indicates we support 32 bits addressing for the
577 * I/O
578 */
579 bridge->iobase = (value & 0xff) | PCI_IO_RANGE_TYPE_32;
580 bridge->iolimit = ((value >> 8) & 0xff) | PCI_IO_RANGE_TYPE_32;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200581 mvebu_pcie_handle_iobase_change(port);
582 break;
583
584 case PCI_MEMORY_BASE:
585 bridge->membase = value & 0xffff;
586 bridge->memlimit = value >> 16;
587 mvebu_pcie_handle_membase_change(port);
588 break;
589
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200590 case PCI_IO_BASE_UPPER16:
591 bridge->iobaseupper = value & 0xffff;
592 bridge->iolimitupper = value >> 16;
593 mvebu_pcie_handle_iobase_change(port);
594 break;
595
596 case PCI_PRIMARY_BUS:
597 bridge->primary_bus = value & 0xff;
598 bridge->secondary_bus = (value >> 8) & 0xff;
599 bridge->subordinate_bus = (value >> 16) & 0xff;
600 bridge->secondary_latency_timer = (value >> 24) & 0xff;
601 mvebu_pcie_set_local_bus_nr(port, bridge->secondary_bus);
602 break;
603
604 default:
605 break;
606 }
607
608 return PCIBIOS_SUCCESSFUL;
609}
610
611static inline struct mvebu_pcie *sys_to_pcie(struct pci_sys_data *sys)
612{
613 return sys->private_data;
614}
615
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400616static struct mvebu_pcie_port *mvebu_pcie_find_port(struct mvebu_pcie *pcie,
617 struct pci_bus *bus,
618 int devfn)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200619{
620 int i;
621
622 for (i = 0; i < pcie->nports; i++) {
623 struct mvebu_pcie_port *port = &pcie->ports[i];
Jingoo Hancf3a9d62014-11-12 12:27:54 +0900624
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200625 if (bus->number == 0 && port->devfn == devfn)
626 return port;
627 if (bus->number != 0 &&
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200628 bus->number >= port->bridge.secondary_bus &&
629 bus->number <= port->bridge.subordinate_bus)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200630 return port;
631 }
632
633 return NULL;
634}
635
636/* PCI configuration space write function */
637static int mvebu_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
638 int where, int size, u32 val)
639{
640 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
641 struct mvebu_pcie_port *port;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200642 int ret;
643
644 port = mvebu_pcie_find_port(pcie, bus, devfn);
645 if (!port)
646 return PCIBIOS_DEVICE_NOT_FOUND;
647
648 /* Access the emulated PCI-to-PCI bridge */
649 if (bus->number == 0)
650 return mvebu_sw_pci_bridge_write(port, where, size, val);
651
Jason Gunthorpe9f352f02013-10-01 11:58:00 -0600652 if (!mvebu_pcie_link_up(port))
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200653 return PCIBIOS_DEVICE_NOT_FOUND;
654
655 /*
656 * On the secondary bus, we don't want to expose any other
657 * device than the device physically connected in the PCIe
658 * slot, visible in slot 0. In slot 1, there's a special
659 * Marvell device that only makes sense when the Armada is
660 * used as a PCIe endpoint.
661 */
662 if (bus->number == port->bridge.secondary_bus &&
663 PCI_SLOT(devfn) != 0)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200664 return PCIBIOS_DEVICE_NOT_FOUND;
665
666 /* Access the real PCIe interface */
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200667 ret = mvebu_pcie_hw_wr_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200668 where, size, val);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200669
670 return ret;
671}
672
673/* PCI configuration space read function */
674static int mvebu_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
675 int size, u32 *val)
676{
677 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
678 struct mvebu_pcie_port *port;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200679 int ret;
680
681 port = mvebu_pcie_find_port(pcie, bus, devfn);
682 if (!port) {
683 *val = 0xffffffff;
684 return PCIBIOS_DEVICE_NOT_FOUND;
685 }
686
687 /* Access the emulated PCI-to-PCI bridge */
688 if (bus->number == 0)
689 return mvebu_sw_pci_bridge_read(port, where, size, val);
690
Jason Gunthorpe9f352f02013-10-01 11:58:00 -0600691 if (!mvebu_pcie_link_up(port)) {
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200692 *val = 0xffffffff;
693 return PCIBIOS_DEVICE_NOT_FOUND;
694 }
695
696 /*
697 * On the secondary bus, we don't want to expose any other
698 * device than the device physically connected in the PCIe
699 * slot, visible in slot 0. In slot 1, there's a special
700 * Marvell device that only makes sense when the Armada is
701 * used as a PCIe endpoint.
702 */
703 if (bus->number == port->bridge.secondary_bus &&
704 PCI_SLOT(devfn) != 0) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200705 *val = 0xffffffff;
706 return PCIBIOS_DEVICE_NOT_FOUND;
707 }
708
709 /* Access the real PCIe interface */
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200710 ret = mvebu_pcie_hw_rd_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200711 where, size, val);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200712
713 return ret;
714}
715
716static struct pci_ops mvebu_pcie_ops = {
717 .read = mvebu_pcie_rd_conf,
718 .write = mvebu_pcie_wr_conf,
719};
720
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200721static int mvebu_pcie_setup(int nr, struct pci_sys_data *sys)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200722{
723 struct mvebu_pcie *pcie = sys_to_pcie(sys);
724 int i;
725
Lorenzo Pieralisi8c7d14742014-11-21 11:29:26 +0000726 pcie->mem.name = "PCI MEM";
727 pcie->realio.name = "PCI I/O";
Jason Gunthorpe2613ba42014-02-12 15:57:08 -0700728
729 if (request_resource(&iomem_resource, &pcie->mem))
730 return 0;
731
732 if (resource_size(&pcie->realio) != 0) {
733 if (request_resource(&ioport_resource, &pcie->realio)) {
734 release_resource(&pcie->mem);
735 return 0;
736 }
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700737 pci_add_resource_offset(&sys->resources, &pcie->realio,
738 sys->io_offset);
Jason Gunthorpe2613ba42014-02-12 15:57:08 -0700739 }
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200740 pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset);
741 pci_add_resource(&sys->resources, &pcie->busn);
742
743 for (i = 0; i < pcie->nports; i++) {
744 struct mvebu_pcie_port *port = &pcie->ports[i];
Jingoo Hancf3a9d62014-11-12 12:27:54 +0900745
Ezequiel Garciab22503a2013-07-26 10:17:49 -0300746 if (!port->base)
747 continue;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200748 mvebu_pcie_setup_hw(port);
749 }
750
751 return 1;
752}
753
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200754static struct pci_bus *mvebu_pcie_scan_bus(int nr, struct pci_sys_data *sys)
755{
756 struct mvebu_pcie *pcie = sys_to_pcie(sys);
757 struct pci_bus *bus;
758
759 bus = pci_create_root_bus(&pcie->pdev->dev, sys->busnr,
760 &mvebu_pcie_ops, sys, &sys->resources);
761 if (!bus)
762 return NULL;
763
764 pci_scan_child_bus(bus);
765
766 return bus;
767}
768
Jingoo Hanf5072df2013-09-17 14:26:46 +0900769static resource_size_t mvebu_pcie_align_resource(struct pci_dev *dev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400770 const struct resource *res,
771 resource_size_t start,
772 resource_size_t size,
773 resource_size_t align)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200774{
775 if (dev->bus->number != 0)
776 return start;
777
778 /*
779 * On the PCI-to-PCI bridge side, the I/O windows must have at
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200780 * least a 64 KB size and the memory windows must have at
781 * least a 1 MB size. Moreover, MBus windows need to have a
782 * base address aligned on their size, and their size must be
783 * a power of two. This means that if the BAR doesn't have a
784 * power of two size, several MBus windows will actually be
785 * created. We need to ensure that the biggest MBus window
786 * (which will be the first one) is aligned on its size, which
787 * explains the rounddown_pow_of_two() being done here.
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200788 */
789 if (res->flags & IORESOURCE_IO)
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200790 return round_up(start, max_t(resource_size_t, SZ_64K,
791 rounddown_pow_of_two(size)));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200792 else if (res->flags & IORESOURCE_MEM)
Thomas Petazzoni398f5d52014-04-18 14:19:53 +0200793 return round_up(start, max_t(resource_size_t, SZ_1M,
794 rounddown_pow_of_two(size)));
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200795 else
796 return start;
797}
798
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200799static void mvebu_pcie_enable(struct mvebu_pcie *pcie)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200800{
801 struct hw_pci hw;
802
803 memset(&hw, 0, sizeof(hw));
804
Yijing Wang26914232014-11-11 15:44:17 -0700805#ifdef CONFIG_PCI_MSI
806 hw.msi_ctrl = pcie->msi;
807#endif
808
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200809 hw.nr_controllers = 1;
810 hw.private_data = (void **)&pcie;
811 hw.setup = mvebu_pcie_setup;
812 hw.scan = mvebu_pcie_scan_bus;
Grant Likely16b84e52013-09-19 16:44:55 -0500813 hw.map_irq = of_irq_parse_and_map_pci;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200814 hw.ops = &mvebu_pcie_ops;
815 hw.align_resource = mvebu_pcie_align_resource;
816
817 pci_common_init(&hw);
818}
819
820/*
821 * Looks up the list of register addresses encoded into the reg =
822 * <...> property for one that matches the given port/lane. Once
823 * found, maps it.
824 */
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200825static void __iomem *mvebu_pcie_map_registers(struct platform_device *pdev,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400826 struct device_node *np,
827 struct mvebu_pcie_port *port)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200828{
829 struct resource regs;
830 int ret = 0;
831
832 ret = of_address_to_resource(np, 0, &regs);
833 if (ret)
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530834 return ERR_PTR(ret);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200835
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530836 return devm_ioremap_resource(&pdev->dev, &regs);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200837}
838
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300839#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
840#define DT_TYPE_IO 0x1
841#define DT_TYPE_MEM32 0x2
842#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
843#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
844
845static int mvebu_get_tgt_attr(struct device_node *np, int devfn,
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700846 unsigned long type,
847 unsigned int *tgt,
848 unsigned int *attr)
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300849{
850 const int na = 3, ns = 2;
851 const __be32 *range;
852 int rlen, nranges, rangesz, pna, i;
853
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700854 *tgt = -1;
855 *attr = -1;
856
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300857 range = of_get_property(np, "ranges", &rlen);
858 if (!range)
859 return -EINVAL;
860
861 pna = of_n_addr_cells(np);
862 rangesz = pna + na + ns;
863 nranges = rlen / sizeof(__be32) / rangesz;
864
Thomas Petazzoni56fab6e2014-09-17 17:58:27 +0200865 for (i = 0; i < nranges; i++, range += rangesz) {
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300866 u32 flags = of_read_number(range, 1);
Jean-Jacques Hiblot4f4bde12014-02-14 11:46:15 -0700867 u32 slot = of_read_number(range + 1, 1);
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300868 u64 cpuaddr = of_read_number(range + na, pna);
869 unsigned long rtype;
870
871 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
872 rtype = IORESOURCE_IO;
873 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
874 rtype = IORESOURCE_MEM;
Thomas Petazzoni56fab6e2014-09-17 17:58:27 +0200875 else
876 continue;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300877
878 if (slot == PCI_SLOT(devfn) && type == rtype) {
879 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
880 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
881 return 0;
882 }
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300883 }
884
885 return -ENOENT;
886}
887
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200888static void mvebu_pcie_msi_enable(struct mvebu_pcie *pcie)
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +0200889{
890 struct device_node *msi_node;
891
892 msi_node = of_parse_phandle(pcie->pdev->dev.of_node,
893 "msi-parent", 0);
894 if (!msi_node)
895 return;
896
897 pcie->msi = of_pci_find_msi_chip_by_node(msi_node);
898
899 if (pcie->msi)
900 pcie->msi->dev = &pcie->pdev->dev;
901}
902
Thomas Petazzoniab14d452015-03-17 15:55:45 +0100903static int mvebu_pcie_suspend(struct device *dev)
904{
905 struct mvebu_pcie *pcie;
906 int i;
907
908 pcie = dev_get_drvdata(dev);
909 for (i = 0; i < pcie->nports; i++) {
910 struct mvebu_pcie_port *port = pcie->ports + i;
911 port->saved_pcie_stat = mvebu_readl(port, PCIE_STAT_OFF);
912 }
913
914 return 0;
915}
916
917static int mvebu_pcie_resume(struct device *dev)
918{
919 struct mvebu_pcie *pcie;
920 int i;
921
922 pcie = dev_get_drvdata(dev);
923 for (i = 0; i < pcie->nports; i++) {
924 struct mvebu_pcie_port *port = pcie->ports + i;
925 mvebu_writel(port, port->saved_pcie_stat, PCIE_STAT_OFF);
926 mvebu_pcie_setup_hw(port);
927 }
928
929 return 0;
930}
931
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200932static int mvebu_pcie_probe(struct platform_device *pdev)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200933{
934 struct mvebu_pcie *pcie;
935 struct device_node *np = pdev->dev.of_node;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200936 struct device_node *child;
937 int i, ret;
938
939 pcie = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_pcie),
940 GFP_KERNEL);
941 if (!pcie)
942 return -ENOMEM;
943
944 pcie->pdev = pdev;
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +0200945 platform_set_drvdata(pdev, pcie);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200946
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300947 /* Get the PCIe memory and I/O aperture */
948 mvebu_mbus_get_pcie_mem_aperture(&pcie->mem);
949 if (resource_size(&pcie->mem) == 0) {
950 dev_err(&pdev->dev, "invalid memory aperture size\n");
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200951 return -EINVAL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200952 }
953
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300954 mvebu_mbus_get_pcie_io_aperture(&pcie->io);
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300955
Jason Gunthorpe641e6742013-11-26 11:02:55 -0700956 if (resource_size(&pcie->io) != 0) {
957 pcie->realio.flags = pcie->io.flags;
958 pcie->realio.start = PCIBIOS_MIN_IO;
959 pcie->realio.end = min_t(resource_size_t,
960 IO_SPACE_LIMIT,
961 resource_size(&pcie->io));
962 } else
963 pcie->realio = pcie->io;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300964
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200965 /* Get the bus range */
966 ret = of_pci_parse_bus_range(np, &pcie->busn);
967 if (ret) {
968 dev_err(&pdev->dev, "failed to parse bus-range property: %d\n",
969 ret);
970 return ret;
971 }
972
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200973 i = 0;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200974 for_each_child_of_node(pdev->dev.of_node, child) {
975 if (!of_device_is_available(child))
976 continue;
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200977 i++;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200978 }
979
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +0200980 pcie->ports = devm_kzalloc(&pdev->dev, i *
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200981 sizeof(struct mvebu_pcie_port),
982 GFP_KERNEL);
983 if (!pcie->ports)
984 return -ENOMEM;
985
986 i = 0;
987 for_each_child_of_node(pdev->dev.of_node, child) {
988 struct mvebu_pcie_port *port = &pcie->ports[i];
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +0200989 enum of_gpio_flags flags;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200990
991 if (!of_device_is_available(child))
992 continue;
993
994 port->pcie = pcie;
995
996 if (of_property_read_u32(child, "marvell,pcie-port",
997 &port->port)) {
998 dev_warn(&pdev->dev,
999 "ignoring PCIe DT node, missing pcie-port property\n");
1000 continue;
1001 }
1002
1003 if (of_property_read_u32(child, "marvell,pcie-lane",
1004 &port->lane))
1005 port->lane = 0;
1006
1007 port->name = kasprintf(GFP_KERNEL, "pcie%d.%d",
1008 port->port, port->lane);
1009
1010 port->devfn = of_pci_get_devfn(child);
1011 if (port->devfn < 0)
1012 continue;
1013
Thomas Petazzoni11be6542013-07-26 10:17:48 -03001014 ret = mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_MEM,
1015 &port->mem_target, &port->mem_attr);
1016 if (ret < 0) {
1017 dev_err(&pdev->dev, "PCIe%d.%d: cannot get tgt/attr for mem window\n",
1018 port->port, port->lane);
1019 continue;
1020 }
1021
Jason Gunthorpe641e6742013-11-26 11:02:55 -07001022 if (resource_size(&pcie->io) != 0)
1023 mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_IO,
1024 &port->io_target, &port->io_attr);
1025 else {
1026 port->io_target = -1;
1027 port->io_attr = -1;
Thomas Petazzoni11be6542013-07-26 10:17:48 -03001028 }
1029
Sebastian Hesselbarth52ba9922013-08-13 14:25:23 +02001030 port->reset_gpio = of_get_named_gpio_flags(child,
1031 "reset-gpios", 0, &flags);
1032 if (gpio_is_valid(port->reset_gpio)) {
1033 u32 reset_udelay = 20000;
1034
1035 port->reset_active_low = flags & OF_GPIO_ACTIVE_LOW;
1036 port->reset_name = kasprintf(GFP_KERNEL,
1037 "pcie%d.%d-reset", port->port, port->lane);
1038 of_property_read_u32(child, "reset-delay-us",
1039 &reset_udelay);
1040
1041 ret = devm_gpio_request_one(&pdev->dev,
1042 port->reset_gpio, GPIOF_DIR_OUT, port->reset_name);
1043 if (ret) {
1044 if (ret == -EPROBE_DEFER)
1045 return ret;
1046 continue;
1047 }
1048
1049 gpio_set_value(port->reset_gpio,
1050 (port->reset_active_low) ? 1 : 0);
1051 msleep(reset_udelay/1000);
1052 }
1053
Sebastian Hesselbarthb42285f2013-08-13 14:25:20 +02001054 port->clk = of_clk_get_by_name(child, NULL);
1055 if (IS_ERR(port->clk)) {
1056 dev_err(&pdev->dev, "PCIe%d.%d: cannot get clock\n",
1057 port->port, port->lane);
1058 continue;
1059 }
1060
1061 ret = clk_prepare_enable(port->clk);
1062 if (ret)
1063 continue;
1064
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001065 port->base = mvebu_pcie_map_registers(pdev, child, port);
Tushar Beheraf48fbf92013-06-17 14:46:13 +05301066 if (IS_ERR(port->base)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001067 dev_err(&pdev->dev, "PCIe%d.%d: cannot map registers\n",
1068 port->port, port->lane);
Tushar Beheraf48fbf92013-06-17 14:46:13 +05301069 port->base = NULL;
Sebastian Hesselbarthb42285f2013-08-13 14:25:20 +02001070 clk_disable_unprepare(port->clk);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001071 continue;
1072 }
1073
Thomas Petazzonif4ac9902013-05-23 16:32:51 +02001074 mvebu_pcie_set_local_dev_nr(port, 1);
1075
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001076 port->dn = child;
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001077 mvebu_sw_pci_bridge_init(port);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001078 i++;
1079 }
1080
Sebastian Hesselbarthbf09b6a2013-08-13 14:25:21 +02001081 pcie->nports = i;
Thomas Petazzoni31e45ec2013-12-26 16:52:41 +01001082
1083 for (i = 0; i < (IO_SPACE_LIMIT - SZ_64K); i += SZ_64K)
1084 pci_ioremap_io(i, pcie->io.start + i);
1085
Thomas Petazzoni5b4deb62013-08-09 22:27:14 +02001086 mvebu_pcie_msi_enable(pcie);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001087 mvebu_pcie_enable(pcie);
1088
Thomas Petazzoniab14d452015-03-17 15:55:45 +01001089 platform_set_drvdata(pdev, pcie);
1090
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001091 return 0;
1092}
1093
1094static const struct of_device_id mvebu_pcie_of_match_table[] = {
1095 { .compatible = "marvell,armada-xp-pcie", },
1096 { .compatible = "marvell,armada-370-pcie", },
Sebastian Hesselbarthcc54ccd2013-08-13 14:25:24 +02001097 { .compatible = "marvell,dove-pcie", },
Thomas Petazzoni005625f2013-05-15 15:36:54 +02001098 { .compatible = "marvell,kirkwood-pcie", },
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001099 {},
1100};
1101MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table);
1102
Thomas Petazzoniab14d452015-03-17 15:55:45 +01001103static struct dev_pm_ops mvebu_pcie_pm_ops = {
1104 .suspend_noirq = mvebu_pcie_suspend,
1105 .resume_noirq = mvebu_pcie_resume,
1106};
1107
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001108static struct platform_driver mvebu_pcie_driver = {
1109 .driver = {
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001110 .name = "mvebu-pcie",
Sachin Kamat339135f2013-12-19 14:34:59 +05301111 .of_match_table = mvebu_pcie_of_match_table,
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001112 /* driver unloading/unbinding currently not supported */
1113 .suppress_bind_attrs = true,
Thomas Petazzoniab14d452015-03-17 15:55:45 +01001114 .pm = &mvebu_pcie_pm_ops,
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001115 },
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001116 .probe = mvebu_pcie_probe,
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001117};
Sebastian Hesselbarthe5615c32013-08-13 14:25:22 +02001118module_platform_driver(mvebu_pcie_driver);
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001119
1120MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
1121MODULE_DESCRIPTION("Marvell EBU PCIe driver");
Thierry Reding505d8652014-07-11 08:58:57 +02001122MODULE_LICENSE("GPL v2");