1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe driver for Renesas R-Car SoCs
4 * Copyright (C) 2014 Renesas Electronics Europe Ltd
7 * arch/sh/drivers/pci/pcie-sh7786.c
8 * arch/sh/drivers/pci/ops-sh7786.c
9 * Copyright (C) 2009 - 2011 Paul Mundt
11 * Author: Phil Edworthy <phil.edworthy@renesas.com>
14 #include <linux/clk.h>
15 #include <linux/delay.h>
16 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/irqdomain.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/msi.h>
22 #include <linux/of_address.h>
23 #include <linux/of_irq.h>
24 #include <linux/of_pci.h>
25 #include <linux/of_platform.h>
26 #include <linux/pci.h>
27 #include <linux/platform_device.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/slab.h>
31 #define PCIECAR 0x000010
32 #define PCIECCTLR 0x000018
33 #define CONFIG_SEND_ENABLE (1 << 31)
34 #define TYPE0 (0 << 8)
35 #define TYPE1 (1 << 8)
36 #define PCIECDR 0x000020
37 #define PCIEMSR 0x000028
38 #define PCIEINTXR 0x000400
39 #define PCIEMSITXR 0x000840
41 /* Transfer control */
42 #define PCIETCTLR 0x02000
44 #define PCIETSTR 0x02004
45 #define DATA_LINK_ACTIVE 1
46 #define PCIEERRFR 0x02020
47 #define UNSUPPORTED_REQUEST (1 << 4)
48 #define PCIEMSIFR 0x02044
49 #define PCIEMSIALR 0x02048
51 #define PCIEMSIAUR 0x0204c
52 #define PCIEMSIIER 0x02050
54 /* root port address */
55 #define PCIEPRAR(x) (0x02080 + ((x) * 0x4))
57 /* local address reg & mask */
58 #define PCIELAR(x) (0x02200 + ((x) * 0x20))
59 #define PCIELAMR(x) (0x02208 + ((x) * 0x20))
60 #define LAM_PREFETCH (1 << 3)
61 #define LAM_64BIT (1 << 2)
62 #define LAR_ENABLE (1 << 1)
64 /* PCIe address reg & mask */
65 #define PCIEPALR(x) (0x03400 + ((x) * 0x20))
66 #define PCIEPAUR(x) (0x03404 + ((x) * 0x20))
67 #define PCIEPAMR(x) (0x03408 + ((x) * 0x20))
68 #define PCIEPTCTLR(x) (0x0340c + ((x) * 0x20))
69 #define PAR_ENABLE (1 << 31)
70 #define IO_SPACE (1 << 8)
73 #define PCICONF(x) (0x010000 + ((x) * 0x4))
74 #define PMCAP(x) (0x010040 + ((x) * 0x4))
75 #define EXPCAP(x) (0x010070 + ((x) * 0x4))
76 #define VCCAP(x) (0x010100 + ((x) * 0x4))
79 #define IDSETR1 0x011004
80 #define TLCTLR 0x011048
81 #define MACSR 0x011054
82 #define SPCHGFIN (1 << 4)
83 #define SPCHGFAIL (1 << 6)
84 #define SPCHGSUC (1 << 7)
85 #define LINK_SPEED (0xf << 16)
86 #define LINK_SPEED_2_5GTS (1 << 16)
87 #define LINK_SPEED_5_0GTS (2 << 16)
88 #define MACCTLR 0x011058
89 #define SPEED_CHANGE (1 << 24)
90 #define SCRAMBLE_DISABLE (1 << 27)
91 #define MACS2R 0x011078
92 #define MACCGSPSETR 0x011084
93 #define SPCNGRSN (1 << 31)
96 #define H1_PCIEPHYADRR 0x04000c
97 #define WRITE_CMD (1 << 16)
98 #define PHY_ACK (1 << 24)
102 #define H1_PCIEPHYDOUTR 0x040014
103 #define H1_PCIEPHYSR 0x040018
106 #define GEN2_PCIEPHYADDR 0x780
107 #define GEN2_PCIEPHYDATA 0x784
108 #define GEN2_PCIEPHYCTRL 0x78c
110 #define INT_PCI_MSI_NR 32
112 #define RCONF(x) (PCICONF(0)+(x))
113 #define RPMCAP(x) (PMCAP(0)+(x))
114 #define REXPCAP(x) (EXPCAP(0)+(x))
115 #define RVCCAP(x) (VCCAP(0)+(x))
117 #define PCIE_CONF_BUS(b) (((b) & 0xff) << 24)
118 #define PCIE_CONF_DEV(d) (((d) & 0x1f) << 19)
119 #define PCIE_CONF_FUNC(f) (((f) & 0x7) << 16)
121 #define RCAR_PCI_MAX_RESOURCES 4
122 #define MAX_NR_INBOUND_MAPS 6
125 DECLARE_BITMAP(used
, INT_PCI_MSI_NR
);
126 struct irq_domain
*domain
;
127 struct msi_controller chip
;
134 static inline struct rcar_msi
*to_rcar_msi(struct msi_controller
*chip
)
136 return container_of(chip
, struct rcar_msi
, chip
);
139 /* Structure representing the PCIe interface */
143 struct list_head resources
;
150 static void rcar_pci_write_reg(struct rcar_pcie
*pcie
, unsigned long val
,
153 writel(val
, pcie
->base
+ reg
);
156 static unsigned long rcar_pci_read_reg(struct rcar_pcie
*pcie
,
159 return readl(pcie
->base
+ reg
);
163 RCAR_PCI_ACCESS_READ
,
164 RCAR_PCI_ACCESS_WRITE
,
167 static void rcar_rmw32(struct rcar_pcie
*pcie
, int where
, u32 mask
, u32 data
)
169 int shift
= 8 * (where
& 3);
170 u32 val
= rcar_pci_read_reg(pcie
, where
& ~3);
172 val
&= ~(mask
<< shift
);
173 val
|= data
<< shift
;
174 rcar_pci_write_reg(pcie
, val
, where
& ~3);
177 static u32
rcar_read_conf(struct rcar_pcie
*pcie
, int where
)
179 int shift
= 8 * (where
& 3);
180 u32 val
= rcar_pci_read_reg(pcie
, where
& ~3);
185 /* Serialization is provided by 'pci_lock' in drivers/pci/access.c */
186 static int rcar_pcie_config_access(struct rcar_pcie
*pcie
,
187 unsigned char access_type
, struct pci_bus
*bus
,
188 unsigned int devfn
, int where
, u32
*data
)
190 int dev
, func
, reg
, index
;
192 dev
= PCI_SLOT(devfn
);
193 func
= PCI_FUNC(devfn
);
198 * While each channel has its own memory-mapped extended config
199 * space, it's generally only accessible when in endpoint mode.
200 * When in root complex mode, the controller is unable to target
201 * itself with either type 0 or type 1 accesses, and indeed, any
202 * controller initiated target transfer to its own config space
203 * result in a completer abort.
205 * Each channel effectively only supports a single device, but as
206 * the same channel <-> device access works for any PCI_SLOT()
207 * value, we cheat a bit here and bind the controller's config
208 * space to devfn 0 in order to enable self-enumeration. In this
209 * case the regular ECAR/ECDR path is sidelined and the mangled
210 * config access itself is initiated as an internal bus transaction.
212 if (pci_is_root_bus(bus
)) {
214 return PCIBIOS_DEVICE_NOT_FOUND
;
216 if (access_type
== RCAR_PCI_ACCESS_READ
) {
217 *data
= rcar_pci_read_reg(pcie
, PCICONF(index
));
219 /* Keep an eye out for changes to the root bus number */
220 if (pci_is_root_bus(bus
) && (reg
== PCI_PRIMARY_BUS
))
221 pcie
->root_bus_nr
= *data
& 0xff;
223 rcar_pci_write_reg(pcie
, *data
, PCICONF(index
));
226 return PCIBIOS_SUCCESSFUL
;
229 if (pcie
->root_bus_nr
< 0)
230 return PCIBIOS_DEVICE_NOT_FOUND
;
233 rcar_pci_write_reg(pcie
, rcar_pci_read_reg(pcie
, PCIEERRFR
), PCIEERRFR
);
235 /* Set the PIO address */
236 rcar_pci_write_reg(pcie
, PCIE_CONF_BUS(bus
->number
) |
237 PCIE_CONF_DEV(dev
) | PCIE_CONF_FUNC(func
) | reg
, PCIECAR
);
239 /* Enable the configuration access */
240 if (bus
->parent
->number
== pcie
->root_bus_nr
)
241 rcar_pci_write_reg(pcie
, CONFIG_SEND_ENABLE
| TYPE0
, PCIECCTLR
);
243 rcar_pci_write_reg(pcie
, CONFIG_SEND_ENABLE
| TYPE1
, PCIECCTLR
);
245 /* Check for errors */
246 if (rcar_pci_read_reg(pcie
, PCIEERRFR
) & UNSUPPORTED_REQUEST
)
247 return PCIBIOS_DEVICE_NOT_FOUND
;
249 /* Check for master and target aborts */
250 if (rcar_read_conf(pcie
, RCONF(PCI_STATUS
)) &
251 (PCI_STATUS_REC_MASTER_ABORT
| PCI_STATUS_REC_TARGET_ABORT
))
252 return PCIBIOS_DEVICE_NOT_FOUND
;
254 if (access_type
== RCAR_PCI_ACCESS_READ
)
255 *data
= rcar_pci_read_reg(pcie
, PCIECDR
);
257 rcar_pci_write_reg(pcie
, *data
, PCIECDR
);
259 /* Disable the configuration access */
260 rcar_pci_write_reg(pcie
, 0, PCIECCTLR
);
262 return PCIBIOS_SUCCESSFUL
;
265 static int rcar_pcie_read_conf(struct pci_bus
*bus
, unsigned int devfn
,
266 int where
, int size
, u32
*val
)
268 struct rcar_pcie
*pcie
= bus
->sysdata
;
271 ret
= rcar_pcie_config_access(pcie
, RCAR_PCI_ACCESS_READ
,
272 bus
, devfn
, where
, val
);
273 if (ret
!= PCIBIOS_SUCCESSFUL
) {
279 *val
= (*val
>> (8 * (where
& 3))) & 0xff;
281 *val
= (*val
>> (8 * (where
& 2))) & 0xffff;
283 dev_dbg(&bus
->dev
, "pcie-config-read: bus=%3d devfn=0x%04x where=0x%04x size=%d val=0x%08lx\n",
284 bus
->number
, devfn
, where
, size
, (unsigned long)*val
);
289 /* Serialization is provided by 'pci_lock' in drivers/pci/access.c */
290 static int rcar_pcie_write_conf(struct pci_bus
*bus
, unsigned int devfn
,
291 int where
, int size
, u32 val
)
293 struct rcar_pcie
*pcie
= bus
->sysdata
;
297 ret
= rcar_pcie_config_access(pcie
, RCAR_PCI_ACCESS_READ
,
298 bus
, devfn
, where
, &data
);
299 if (ret
!= PCIBIOS_SUCCESSFUL
)
302 dev_dbg(&bus
->dev
, "pcie-config-write: bus=%3d devfn=0x%04x where=0x%04x size=%d val=0x%08lx\n",
303 bus
->number
, devfn
, where
, size
, (unsigned long)val
);
306 shift
= 8 * (where
& 3);
307 data
&= ~(0xff << shift
);
308 data
|= ((val
& 0xff) << shift
);
309 } else if (size
== 2) {
310 shift
= 8 * (where
& 2);
311 data
&= ~(0xffff << shift
);
312 data
|= ((val
& 0xffff) << shift
);
316 ret
= rcar_pcie_config_access(pcie
, RCAR_PCI_ACCESS_WRITE
,
317 bus
, devfn
, where
, &data
);
322 static struct pci_ops rcar_pcie_ops
= {
323 .read
= rcar_pcie_read_conf
,
324 .write
= rcar_pcie_write_conf
,
327 static void rcar_pcie_setup_window(int win
, struct rcar_pcie
*pcie
,
328 struct resource
*res
)
330 /* Setup PCIe address space mappings for each resource */
331 resource_size_t size
;
332 resource_size_t res_start
;
335 rcar_pci_write_reg(pcie
, 0x00000000, PCIEPTCTLR(win
));
338 * The PAMR mask is calculated in units of 128Bytes, which
339 * keeps things pretty simple.
341 size
= resource_size(res
);
342 mask
= (roundup_pow_of_two(size
) / SZ_128
) - 1;
343 rcar_pci_write_reg(pcie
, mask
<< 7, PCIEPAMR(win
));
345 if (res
->flags
& IORESOURCE_IO
)
346 res_start
= pci_pio_to_address(res
->start
);
348 res_start
= res
->start
;
350 rcar_pci_write_reg(pcie
, upper_32_bits(res_start
), PCIEPAUR(win
));
351 rcar_pci_write_reg(pcie
, lower_32_bits(res_start
) & ~0x7F,
354 /* First resource is for IO */
356 if (res
->flags
& IORESOURCE_IO
)
359 rcar_pci_write_reg(pcie
, mask
, PCIEPTCTLR(win
));
362 static int rcar_pcie_setup(struct list_head
*resource
, struct rcar_pcie
*pci
)
364 struct resource_entry
*win
;
367 /* Setup PCI resources */
368 resource_list_for_each_entry(win
, &pci
->resources
) {
369 struct resource
*res
= win
->res
;
374 switch (resource_type(res
)) {
377 rcar_pcie_setup_window(i
, pci
, res
);
381 pci
->root_bus_nr
= res
->start
;
387 pci_add_resource(resource
, res
);
393 static void rcar_pcie_force_speedup(struct rcar_pcie
*pcie
)
395 struct device
*dev
= pcie
->dev
;
396 unsigned int timeout
= 1000;
399 if ((rcar_pci_read_reg(pcie
, MACS2R
) & LINK_SPEED
) != LINK_SPEED_5_0GTS
)
402 if (rcar_pci_read_reg(pcie
, MACCTLR
) & SPEED_CHANGE
) {
403 dev_err(dev
, "Speed change already in progress\n");
407 macsr
= rcar_pci_read_reg(pcie
, MACSR
);
408 if ((macsr
& LINK_SPEED
) == LINK_SPEED_5_0GTS
)
411 /* Set target link speed to 5.0 GT/s */
412 rcar_rmw32(pcie
, EXPCAP(12), PCI_EXP_LNKSTA_CLS
,
413 PCI_EXP_LNKSTA_CLS_5_0GB
);
415 /* Set speed change reason as intentional factor */
416 rcar_rmw32(pcie
, MACCGSPSETR
, SPCNGRSN
, 0);
418 /* Clear SPCHGFIN, SPCHGSUC, and SPCHGFAIL */
419 if (macsr
& (SPCHGFIN
| SPCHGSUC
| SPCHGFAIL
))
420 rcar_pci_write_reg(pcie
, macsr
, MACSR
);
422 /* Start link speed change */
423 rcar_rmw32(pcie
, MACCTLR
, SPEED_CHANGE
, SPEED_CHANGE
);
426 macsr
= rcar_pci_read_reg(pcie
, MACSR
);
427 if (macsr
& SPCHGFIN
) {
428 /* Clear the interrupt bits */
429 rcar_pci_write_reg(pcie
, macsr
, MACSR
);
431 if (macsr
& SPCHGFAIL
)
432 dev_err(dev
, "Speed change failed\n");
440 dev_err(dev
, "Speed change timed out\n");
443 dev_info(dev
, "Current link speed is %s GT/s\n",
444 (macsr
& LINK_SPEED
) == LINK_SPEED_5_0GTS
? "5" : "2.5");
447 static int rcar_pcie_enable(struct rcar_pcie
*pcie
)
449 struct device
*dev
= pcie
->dev
;
450 struct pci_host_bridge
*bridge
= pci_host_bridge_from_priv(pcie
);
451 struct pci_bus
*bus
, *child
;
454 /* Try setting 5 GT/s link speed */
455 rcar_pcie_force_speedup(pcie
);
457 rcar_pcie_setup(&bridge
->windows
, pcie
);
459 pci_add_flags(PCI_REASSIGN_ALL_BUS
);
461 bridge
->dev
.parent
= dev
;
462 bridge
->sysdata
= pcie
;
463 bridge
->busnr
= pcie
->root_bus_nr
;
464 bridge
->ops
= &rcar_pcie_ops
;
465 bridge
->map_irq
= of_irq_parse_and_map_pci
;
466 bridge
->swizzle_irq
= pci_common_swizzle
;
467 if (IS_ENABLED(CONFIG_PCI_MSI
))
468 bridge
->msi
= &pcie
->msi
.chip
;
470 ret
= pci_scan_root_bus_bridge(bridge
);
476 pci_bus_size_bridges(bus
);
477 pci_bus_assign_resources(bus
);
479 list_for_each_entry(child
, &bus
->children
, node
)
480 pcie_bus_configure_settings(child
);
482 pci_bus_add_devices(bus
);
487 static int phy_wait_for_ack(struct rcar_pcie
*pcie
)
489 struct device
*dev
= pcie
->dev
;
490 unsigned int timeout
= 100;
493 if (rcar_pci_read_reg(pcie
, H1_PCIEPHYADRR
) & PHY_ACK
)
499 dev_err(dev
, "Access to PCIe phy timed out\n");
504 static void phy_write_reg(struct rcar_pcie
*pcie
,
505 unsigned int rate
, unsigned int addr
,
506 unsigned int lane
, unsigned int data
)
508 unsigned long phyaddr
;
510 phyaddr
= WRITE_CMD
|
511 ((rate
& 1) << RATE_POS
) |
512 ((lane
& 0xf) << LANE_POS
) |
513 ((addr
& 0xff) << ADR_POS
);
516 rcar_pci_write_reg(pcie
, data
, H1_PCIEPHYDOUTR
);
517 rcar_pci_write_reg(pcie
, phyaddr
, H1_PCIEPHYADRR
);
519 /* Ignore errors as they will be dealt with if the data link is down */
520 phy_wait_for_ack(pcie
);
523 rcar_pci_write_reg(pcie
, 0, H1_PCIEPHYDOUTR
);
524 rcar_pci_write_reg(pcie
, 0, H1_PCIEPHYADRR
);
526 /* Ignore errors as they will be dealt with if the data link is down */
527 phy_wait_for_ack(pcie
);
530 static int rcar_pcie_wait_for_dl(struct rcar_pcie
*pcie
)
532 unsigned int timeout
= 10;
535 if ((rcar_pci_read_reg(pcie
, PCIETSTR
) & DATA_LINK_ACTIVE
))
544 static int rcar_pcie_hw_init(struct rcar_pcie
*pcie
)
548 /* Begin initialization */
549 rcar_pci_write_reg(pcie
, 0, PCIETCTLR
);
552 rcar_pci_write_reg(pcie
, 1, PCIEMSR
);
555 * Initial header for port config space is type 1, set the device
556 * class to match. Hardware takes care of propagating the IDSETR
557 * settings, so there is no need to bother with a quirk.
559 rcar_pci_write_reg(pcie
, PCI_CLASS_BRIDGE_PCI
<< 16, IDSETR1
);
562 * Setup Secondary Bus Number & Subordinate Bus Number, even though
563 * they aren't used, to avoid bridge being detected as broken.
565 rcar_rmw32(pcie
, RCONF(PCI_SECONDARY_BUS
), 0xff, 1);
566 rcar_rmw32(pcie
, RCONF(PCI_SUBORDINATE_BUS
), 0xff, 1);
568 /* Initialize default capabilities. */
569 rcar_rmw32(pcie
, REXPCAP(0), 0xff, PCI_CAP_ID_EXP
);
570 rcar_rmw32(pcie
, REXPCAP(PCI_EXP_FLAGS
),
571 PCI_EXP_FLAGS_TYPE
, PCI_EXP_TYPE_ROOT_PORT
<< 4);
572 rcar_rmw32(pcie
, RCONF(PCI_HEADER_TYPE
), 0x7f,
573 PCI_HEADER_TYPE_BRIDGE
);
575 /* Enable data link layer active state reporting */
576 rcar_rmw32(pcie
, REXPCAP(PCI_EXP_LNKCAP
), PCI_EXP_LNKCAP_DLLLARC
,
577 PCI_EXP_LNKCAP_DLLLARC
);
579 /* Write out the physical slot number = 0 */
580 rcar_rmw32(pcie
, REXPCAP(PCI_EXP_SLTCAP
), PCI_EXP_SLTCAP_PSN
, 0);
582 /* Set the completion timer timeout to the maximum 50ms. */
583 rcar_rmw32(pcie
, TLCTLR
+ 1, 0x3f, 50);
585 /* Terminate list of capabilities (Next Capability Offset=0) */
586 rcar_rmw32(pcie
, RVCCAP(0), 0xfff00000, 0);
589 if (IS_ENABLED(CONFIG_PCI_MSI
))
590 rcar_pci_write_reg(pcie
, 0x801f0000, PCIEMSITXR
);
592 /* Finish initialization - establish a PCI Express link */
593 rcar_pci_write_reg(pcie
, CFINIT
, PCIETCTLR
);
595 /* This will timeout if we don't have a link. */
596 err
= rcar_pcie_wait_for_dl(pcie
);
600 /* Enable INTx interrupts */
601 rcar_rmw32(pcie
, PCIEINTXR
, 0, 0xF << 8);
608 static int rcar_pcie_hw_init_h1(struct rcar_pcie
*pcie
)
610 unsigned int timeout
= 10;
612 /* Initialize the phy */
613 phy_write_reg(pcie
, 0, 0x42, 0x1, 0x0EC34191);
614 phy_write_reg(pcie
, 1, 0x42, 0x1, 0x0EC34180);
615 phy_write_reg(pcie
, 0, 0x43, 0x1, 0x00210188);
616 phy_write_reg(pcie
, 1, 0x43, 0x1, 0x00210188);
617 phy_write_reg(pcie
, 0, 0x44, 0x1, 0x015C0014);
618 phy_write_reg(pcie
, 1, 0x44, 0x1, 0x015C0014);
619 phy_write_reg(pcie
, 1, 0x4C, 0x1, 0x786174A0);
620 phy_write_reg(pcie
, 1, 0x4D, 0x1, 0x048000BB);
621 phy_write_reg(pcie
, 0, 0x51, 0x1, 0x079EC062);
622 phy_write_reg(pcie
, 0, 0x52, 0x1, 0x20000000);
623 phy_write_reg(pcie
, 1, 0x52, 0x1, 0x20000000);
624 phy_write_reg(pcie
, 1, 0x56, 0x1, 0x00003806);
626 phy_write_reg(pcie
, 0, 0x60, 0x1, 0x004B03A5);
627 phy_write_reg(pcie
, 0, 0x64, 0x1, 0x3F0F1F0F);
628 phy_write_reg(pcie
, 0, 0x66, 0x1, 0x00008000);
631 if (rcar_pci_read_reg(pcie
, H1_PCIEPHYSR
))
632 return rcar_pcie_hw_init(pcie
);
640 static int rcar_pcie_hw_init_gen2(struct rcar_pcie
*pcie
)
643 * These settings come from the R-Car Series, 2nd Generation User's
644 * Manual, section 50.3.1 (2) Initialization of the physical layer.
646 rcar_pci_write_reg(pcie
, 0x000f0030, GEN2_PCIEPHYADDR
);
647 rcar_pci_write_reg(pcie
, 0x00381203, GEN2_PCIEPHYDATA
);
648 rcar_pci_write_reg(pcie
, 0x00000001, GEN2_PCIEPHYCTRL
);
649 rcar_pci_write_reg(pcie
, 0x00000006, GEN2_PCIEPHYCTRL
);
651 rcar_pci_write_reg(pcie
, 0x000f0054, GEN2_PCIEPHYADDR
);
652 /* The following value is for DC connection, no termination resistor */
653 rcar_pci_write_reg(pcie
, 0x13802007, GEN2_PCIEPHYDATA
);
654 rcar_pci_write_reg(pcie
, 0x00000001, GEN2_PCIEPHYCTRL
);
655 rcar_pci_write_reg(pcie
, 0x00000006, GEN2_PCIEPHYCTRL
);
657 return rcar_pcie_hw_init(pcie
);
660 static int rcar_msi_alloc(struct rcar_msi
*chip
)
664 mutex_lock(&chip
->lock
);
666 msi
= find_first_zero_bit(chip
->used
, INT_PCI_MSI_NR
);
667 if (msi
< INT_PCI_MSI_NR
)
668 set_bit(msi
, chip
->used
);
672 mutex_unlock(&chip
->lock
);
677 static int rcar_msi_alloc_region(struct rcar_msi
*chip
, int no_irqs
)
681 mutex_lock(&chip
->lock
);
682 msi
= bitmap_find_free_region(chip
->used
, INT_PCI_MSI_NR
,
683 order_base_2(no_irqs
));
684 mutex_unlock(&chip
->lock
);
689 static void rcar_msi_free(struct rcar_msi
*chip
, unsigned long irq
)
691 mutex_lock(&chip
->lock
);
692 clear_bit(irq
, chip
->used
);
693 mutex_unlock(&chip
->lock
);
696 static irqreturn_t
rcar_pcie_msi_irq(int irq
, void *data
)
698 struct rcar_pcie
*pcie
= data
;
699 struct rcar_msi
*msi
= &pcie
->msi
;
700 struct device
*dev
= pcie
->dev
;
703 reg
= rcar_pci_read_reg(pcie
, PCIEMSIFR
);
705 /* MSI & INTx share an interrupt - we only handle MSI here */
710 unsigned int index
= find_first_bit(®
, 32);
713 /* clear the interrupt */
714 rcar_pci_write_reg(pcie
, 1 << index
, PCIEMSIFR
);
716 irq
= irq_find_mapping(msi
->domain
, index
);
718 if (test_bit(index
, msi
->used
))
719 generic_handle_irq(irq
);
721 dev_info(dev
, "unhandled MSI\n");
723 /* Unknown MSI, just clear it */
724 dev_dbg(dev
, "unexpected MSI\n");
727 /* see if there's any more pending in this vector */
728 reg
= rcar_pci_read_reg(pcie
, PCIEMSIFR
);
734 static int rcar_msi_setup_irq(struct msi_controller
*chip
, struct pci_dev
*pdev
,
735 struct msi_desc
*desc
)
737 struct rcar_msi
*msi
= to_rcar_msi(chip
);
738 struct rcar_pcie
*pcie
= container_of(chip
, struct rcar_pcie
, msi
.chip
);
743 hwirq
= rcar_msi_alloc(msi
);
747 irq
= irq_find_mapping(msi
->domain
, hwirq
);
749 rcar_msi_free(msi
, hwirq
);
753 irq_set_msi_desc(irq
, desc
);
755 msg
.address_lo
= rcar_pci_read_reg(pcie
, PCIEMSIALR
) & ~MSIFE
;
756 msg
.address_hi
= rcar_pci_read_reg(pcie
, PCIEMSIAUR
);
759 pci_write_msi_msg(irq
, &msg
);
764 static int rcar_msi_setup_irqs(struct msi_controller
*chip
,
765 struct pci_dev
*pdev
, int nvec
, int type
)
767 struct rcar_pcie
*pcie
= container_of(chip
, struct rcar_pcie
, msi
.chip
);
768 struct rcar_msi
*msi
= to_rcar_msi(chip
);
769 struct msi_desc
*desc
;
775 /* MSI-X interrupts are not supported */
776 if (type
== PCI_CAP_ID_MSIX
)
779 WARN_ON(!list_is_singular(&pdev
->dev
.msi_list
));
780 desc
= list_entry(pdev
->dev
.msi_list
.next
, struct msi_desc
, list
);
782 hwirq
= rcar_msi_alloc_region(msi
, nvec
);
786 irq
= irq_find_mapping(msi
->domain
, hwirq
);
790 for (i
= 0; i
< nvec
; i
++) {
792 * irq_create_mapping() called from rcar_pcie_probe() pre-
793 * allocates descs, so there is no need to allocate descs here.
794 * We can therefore assume that if irq_find_mapping() above
795 * returns non-zero, then the descs are also successfully
798 if (irq_set_msi_desc_off(irq
, i
, desc
)) {
804 desc
->nvec_used
= nvec
;
805 desc
->msi_attrib
.multiple
= order_base_2(nvec
);
807 msg
.address_lo
= rcar_pci_read_reg(pcie
, PCIEMSIALR
) & ~MSIFE
;
808 msg
.address_hi
= rcar_pci_read_reg(pcie
, PCIEMSIAUR
);
811 pci_write_msi_msg(irq
, &msg
);
816 static void rcar_msi_teardown_irq(struct msi_controller
*chip
, unsigned int irq
)
818 struct rcar_msi
*msi
= to_rcar_msi(chip
);
819 struct irq_data
*d
= irq_get_irq_data(irq
);
821 rcar_msi_free(msi
, d
->hwirq
);
824 static struct irq_chip rcar_msi_irq_chip
= {
825 .name
= "R-Car PCIe MSI",
826 .irq_enable
= pci_msi_unmask_irq
,
827 .irq_disable
= pci_msi_mask_irq
,
828 .irq_mask
= pci_msi_mask_irq
,
829 .irq_unmask
= pci_msi_unmask_irq
,
832 static int rcar_msi_map(struct irq_domain
*domain
, unsigned int irq
,
833 irq_hw_number_t hwirq
)
835 irq_set_chip_and_handler(irq
, &rcar_msi_irq_chip
, handle_simple_irq
);
836 irq_set_chip_data(irq
, domain
->host_data
);
841 static const struct irq_domain_ops msi_domain_ops
= {
845 static int rcar_pcie_enable_msi(struct rcar_pcie
*pcie
)
847 struct device
*dev
= pcie
->dev
;
848 struct rcar_msi
*msi
= &pcie
->msi
;
852 mutex_init(&msi
->lock
);
855 msi
->chip
.setup_irq
= rcar_msi_setup_irq
;
856 msi
->chip
.setup_irqs
= rcar_msi_setup_irqs
;
857 msi
->chip
.teardown_irq
= rcar_msi_teardown_irq
;
859 msi
->domain
= irq_domain_add_linear(dev
->of_node
, INT_PCI_MSI_NR
,
860 &msi_domain_ops
, &msi
->chip
);
862 dev_err(dev
, "failed to create IRQ domain\n");
866 for (i
= 0; i
< INT_PCI_MSI_NR
; i
++)
867 irq_create_mapping(msi
->domain
, i
);
869 /* Two irqs are for MSI, but they are also used for non-MSI irqs */
870 err
= devm_request_irq(dev
, msi
->irq1
, rcar_pcie_msi_irq
,
871 IRQF_SHARED
| IRQF_NO_THREAD
,
872 rcar_msi_irq_chip
.name
, pcie
);
874 dev_err(dev
, "failed to request IRQ: %d\n", err
);
878 err
= devm_request_irq(dev
, msi
->irq2
, rcar_pcie_msi_irq
,
879 IRQF_SHARED
| IRQF_NO_THREAD
,
880 rcar_msi_irq_chip
.name
, pcie
);
882 dev_err(dev
, "failed to request IRQ: %d\n", err
);
886 /* setup MSI data target */
887 msi
->pages
= __get_free_pages(GFP_KERNEL
, 0);
888 base
= virt_to_phys((void *)msi
->pages
);
890 rcar_pci_write_reg(pcie
, base
| MSIFE
, PCIEMSIALR
);
891 rcar_pci_write_reg(pcie
, 0, PCIEMSIAUR
);
893 /* enable all MSI interrupts */
894 rcar_pci_write_reg(pcie
, 0xffffffff, PCIEMSIIER
);
899 irq_domain_remove(msi
->domain
);
903 static int rcar_pcie_get_resources(struct rcar_pcie
*pcie
)
905 struct device
*dev
= pcie
->dev
;
909 err
= of_address_to_resource(dev
->of_node
, 0, &res
);
913 pcie
->base
= devm_ioremap_resource(dev
, &res
);
914 if (IS_ERR(pcie
->base
))
915 return PTR_ERR(pcie
->base
);
917 pcie
->clk
= devm_clk_get(dev
, "pcie");
918 if (IS_ERR(pcie
->clk
)) {
919 dev_err(dev
, "cannot get platform clock\n");
920 return PTR_ERR(pcie
->clk
);
922 err
= clk_prepare_enable(pcie
->clk
);
926 pcie
->bus_clk
= devm_clk_get(dev
, "pcie_bus");
927 if (IS_ERR(pcie
->bus_clk
)) {
928 dev_err(dev
, "cannot get pcie bus clock\n");
929 err
= PTR_ERR(pcie
->bus_clk
);
932 err
= clk_prepare_enable(pcie
->bus_clk
);
936 i
= irq_of_parse_and_map(dev
->of_node
, 0);
938 dev_err(dev
, "cannot get platform resources for msi interrupt\n");
944 i
= irq_of_parse_and_map(dev
->of_node
, 1);
946 dev_err(dev
, "cannot get platform resources for msi interrupt\n");
955 clk_disable_unprepare(pcie
->bus_clk
);
957 clk_disable_unprepare(pcie
->clk
);
962 static int rcar_pcie_inbound_ranges(struct rcar_pcie
*pcie
,
963 struct of_pci_range
*range
,
966 u64 restype
= range
->flags
;
967 u64 cpu_addr
= range
->cpu_addr
;
968 u64 cpu_end
= range
->cpu_addr
+ range
->size
;
969 u64 pci_addr
= range
->pci_addr
;
970 u32 flags
= LAM_64BIT
| LAR_ENABLE
;
975 if (restype
& IORESOURCE_PREFETCH
)
976 flags
|= LAM_PREFETCH
;
979 * If the size of the range is larger than the alignment of the start
980 * address, we have to use multiple entries to perform the mapping.
983 unsigned long nr_zeros
= __ffs64(cpu_addr
);
984 u64 alignment
= 1ULL << nr_zeros
;
986 size
= min(range
->size
, alignment
);
990 /* Hardware supports max 4GiB inbound region */
991 size
= min(size
, 1ULL << 32);
993 mask
= roundup_pow_of_two(size
) - 1;
996 while (cpu_addr
< cpu_end
) {
998 * Set up 64-bit inbound regions as the range parser doesn't
999 * distinguish between 32 and 64-bit types.
1001 rcar_pci_write_reg(pcie
, lower_32_bits(pci_addr
),
1003 rcar_pci_write_reg(pcie
, lower_32_bits(cpu_addr
), PCIELAR(idx
));
1004 rcar_pci_write_reg(pcie
, lower_32_bits(mask
) | flags
,
1007 rcar_pci_write_reg(pcie
, upper_32_bits(pci_addr
),
1009 rcar_pci_write_reg(pcie
, upper_32_bits(cpu_addr
),
1011 rcar_pci_write_reg(pcie
, 0, PCIELAMR(idx
+ 1));
1017 if (idx
> MAX_NR_INBOUND_MAPS
) {
1018 dev_err(pcie
->dev
, "Failed to map inbound regions!\n");
1027 static int rcar_pcie_parse_map_dma_ranges(struct rcar_pcie
*pcie
,
1028 struct device_node
*np
)
1030 struct of_pci_range range
;
1031 struct of_pci_range_parser parser
;
1035 if (of_pci_dma_range_parser_init(&parser
, np
))
1038 /* Get the dma-ranges from DT */
1039 for_each_of_pci_range(&parser
, &range
) {
1040 u64 end
= range
.cpu_addr
+ range
.size
- 1;
1042 dev_dbg(pcie
->dev
, "0x%08x 0x%016llx..0x%016llx -> 0x%016llx\n",
1043 range
.flags
, range
.cpu_addr
, end
, range
.pci_addr
);
1045 err
= rcar_pcie_inbound_ranges(pcie
, &range
, &index
);
1053 static const struct of_device_id rcar_pcie_of_match
[] = {
1054 { .compatible
= "renesas,pcie-r8a7779", .data
= rcar_pcie_hw_init_h1
},
1055 { .compatible
= "renesas,pcie-r8a7790",
1056 .data
= rcar_pcie_hw_init_gen2
},
1057 { .compatible
= "renesas,pcie-r8a7791",
1058 .data
= rcar_pcie_hw_init_gen2
},
1059 { .compatible
= "renesas,pcie-rcar-gen2",
1060 .data
= rcar_pcie_hw_init_gen2
},
1061 { .compatible
= "renesas,pcie-r8a7795", .data
= rcar_pcie_hw_init
},
1062 { .compatible
= "renesas,pcie-rcar-gen3", .data
= rcar_pcie_hw_init
},
1066 static int rcar_pcie_parse_request_of_pci_ranges(struct rcar_pcie
*pci
)
1069 struct device
*dev
= pci
->dev
;
1070 struct device_node
*np
= dev
->of_node
;
1071 resource_size_t iobase
;
1072 struct resource_entry
*win
, *tmp
;
1074 err
= of_pci_get_host_bridge_resources(np
, 0, 0xff, &pci
->resources
,
1079 err
= devm_request_pci_bus_resources(dev
, &pci
->resources
);
1081 goto out_release_res
;
1083 resource_list_for_each_entry_safe(win
, tmp
, &pci
->resources
) {
1084 struct resource
*res
= win
->res
;
1086 if (resource_type(res
) == IORESOURCE_IO
) {
1087 err
= pci_remap_iospace(res
, iobase
);
1089 dev_warn(dev
, "error %d: failed to map resource %pR\n",
1092 resource_list_destroy_entry(win
);
1100 pci_free_resource_list(&pci
->resources
);
1104 static int rcar_pcie_probe(struct platform_device
*pdev
)
1106 struct device
*dev
= &pdev
->dev
;
1107 struct rcar_pcie
*pcie
;
1110 int (*hw_init_fn
)(struct rcar_pcie
*);
1111 struct pci_host_bridge
*bridge
;
1113 bridge
= pci_alloc_host_bridge(sizeof(*pcie
));
1117 pcie
= pci_host_bridge_priv(bridge
);
1121 INIT_LIST_HEAD(&pcie
->resources
);
1123 err
= rcar_pcie_parse_request_of_pci_ranges(pcie
);
1125 goto err_free_bridge
;
1127 err
= rcar_pcie_get_resources(pcie
);
1129 dev_err(dev
, "failed to request resources: %d\n", err
);
1130 goto err_free_resource_list
;
1133 err
= rcar_pcie_parse_map_dma_ranges(pcie
, dev
->of_node
);
1135 goto err_free_resource_list
;
1137 pm_runtime_enable(dev
);
1138 err
= pm_runtime_get_sync(dev
);
1140 dev_err(dev
, "pm_runtime_get_sync failed\n");
1141 goto err_pm_disable
;
1144 /* Failure to get a link might just be that no cards are inserted */
1145 hw_init_fn
= of_device_get_match_data(dev
);
1146 err
= hw_init_fn(pcie
);
1148 dev_info(dev
, "PCIe link down\n");
1153 data
= rcar_pci_read_reg(pcie
, MACSR
);
1154 dev_info(dev
, "PCIe x%d: link up\n", (data
>> 20) & 0x3f);
1156 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
1157 err
= rcar_pcie_enable_msi(pcie
);
1160 "failed to enable MSI support: %d\n",
1166 err
= rcar_pcie_enable(pcie
);
1173 pm_runtime_put(dev
);
1176 pm_runtime_disable(dev
);
1178 err_free_resource_list
:
1179 pci_free_resource_list(&pcie
->resources
);
1181 pci_free_host_bridge(bridge
);
1186 static struct platform_driver rcar_pcie_driver
= {
1188 .name
= "rcar-pcie",
1189 .of_match_table
= rcar_pcie_of_match
,
1190 .suppress_bind_attrs
= true,
1192 .probe
= rcar_pcie_probe
,
1194 builtin_platform_driver(rcar_pcie_driver
);