2 * PCIe host controller driver for Xilinx AXI PCIe Bridge
4 * Copyright (c) 2012 - 2014 Xilinx, Inc.
6 * Based on the Tegra PCIe driver
8 * Bits taken from Synopsys Designware Host controller driver and
9 * ARM PCI Host generic driver.
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 2 of the License, or
14 * (at your option) any later version.
17 #include <linux/interrupt.h>
18 #include <linux/irq.h>
19 #include <linux/irqdomain.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/msi.h>
23 #include <linux/of_address.h>
24 #include <linux/of_pci.h>
25 #include <linux/of_platform.h>
26 #include <linux/of_irq.h>
27 #include <linux/pci.h>
28 #include <linux/platform_device.h>
30 /* Register definitions */
31 #define XILINX_PCIE_REG_BIR 0x00000130
32 #define XILINX_PCIE_REG_IDR 0x00000138
33 #define XILINX_PCIE_REG_IMR 0x0000013c
34 #define XILINX_PCIE_REG_PSCR 0x00000144
35 #define XILINX_PCIE_REG_RPSC 0x00000148
36 #define XILINX_PCIE_REG_MSIBASE1 0x0000014c
37 #define XILINX_PCIE_REG_MSIBASE2 0x00000150
38 #define XILINX_PCIE_REG_RPEFR 0x00000154
39 #define XILINX_PCIE_REG_RPIFR1 0x00000158
40 #define XILINX_PCIE_REG_RPIFR2 0x0000015c
42 /* Interrupt registers definitions */
43 #define XILINX_PCIE_INTR_LINK_DOWN BIT(0)
44 #define XILINX_PCIE_INTR_ECRC_ERR BIT(1)
45 #define XILINX_PCIE_INTR_STR_ERR BIT(2)
46 #define XILINX_PCIE_INTR_HOT_RESET BIT(3)
47 #define XILINX_PCIE_INTR_CFG_TIMEOUT BIT(8)
48 #define XILINX_PCIE_INTR_CORRECTABLE BIT(9)
49 #define XILINX_PCIE_INTR_NONFATAL BIT(10)
50 #define XILINX_PCIE_INTR_FATAL BIT(11)
51 #define XILINX_PCIE_INTR_INTX BIT(16)
52 #define XILINX_PCIE_INTR_MSI BIT(17)
53 #define XILINX_PCIE_INTR_SLV_UNSUPP BIT(20)
54 #define XILINX_PCIE_INTR_SLV_UNEXP BIT(21)
55 #define XILINX_PCIE_INTR_SLV_COMPL BIT(22)
56 #define XILINX_PCIE_INTR_SLV_ERRP BIT(23)
57 #define XILINX_PCIE_INTR_SLV_CMPABT BIT(24)
58 #define XILINX_PCIE_INTR_SLV_ILLBUR BIT(25)
59 #define XILINX_PCIE_INTR_MST_DECERR BIT(26)
60 #define XILINX_PCIE_INTR_MST_SLVERR BIT(27)
61 #define XILINX_PCIE_INTR_MST_ERRP BIT(28)
62 #define XILINX_PCIE_IMR_ALL_MASK 0x1FF30FED
63 #define XILINX_PCIE_IDR_ALL_MASK 0xFFFFFFFF
65 /* Root Port Error FIFO Read Register definitions */
66 #define XILINX_PCIE_RPEFR_ERR_VALID BIT(18)
67 #define XILINX_PCIE_RPEFR_REQ_ID GENMASK(15, 0)
68 #define XILINX_PCIE_RPEFR_ALL_MASK 0xFFFFFFFF
70 /* Root Port Interrupt FIFO Read Register 1 definitions */
71 #define XILINX_PCIE_RPIFR1_INTR_VALID BIT(31)
72 #define XILINX_PCIE_RPIFR1_MSI_INTR BIT(30)
73 #define XILINX_PCIE_RPIFR1_INTR_MASK GENMASK(28, 27)
74 #define XILINX_PCIE_RPIFR1_ALL_MASK 0xFFFFFFFF
75 #define XILINX_PCIE_RPIFR1_INTR_SHIFT 27
77 /* Bridge Info Register definitions */
78 #define XILINX_PCIE_BIR_ECAM_SZ_MASK GENMASK(18, 16)
79 #define XILINX_PCIE_BIR_ECAM_SZ_SHIFT 16
81 /* Root Port Interrupt FIFO Read Register 2 definitions */
82 #define XILINX_PCIE_RPIFR2_MSG_DATA GENMASK(15, 0)
84 /* Root Port Status/control Register definitions */
85 #define XILINX_PCIE_REG_RPSC_BEN BIT(0)
87 /* Phy Status/Control Register definitions */
88 #define XILINX_PCIE_REG_PSCR_LNKUP BIT(11)
90 /* ECAM definitions */
91 #define ECAM_BUS_NUM_SHIFT 20
92 #define ECAM_DEV_NUM_SHIFT 12
94 /* Number of MSI IRQs */
95 #define XILINX_NUM_MSI_IRQS 128
97 /* Number of Memory Resources */
98 #define XILINX_MAX_NUM_RESOURCES 3
101 * struct xilinx_pcie_port - PCIe port information
102 * @reg_base: IO Mapped Register Base
103 * @irq: Interrupt number
104 * @msi_pages: MSI pages
105 * @root_busno: Root Bus number
106 * @dev: Device pointer
107 * @irq_domain: IRQ domain pointer
108 * @bus_range: Bus range
109 * @resources: Bus Resources
111 struct xilinx_pcie_port
{
112 void __iomem
*reg_base
;
114 unsigned long msi_pages
;
117 struct irq_domain
*irq_domain
;
118 struct resource bus_range
;
119 struct list_head resources
;
122 static DECLARE_BITMAP(msi_irq_in_use
, XILINX_NUM_MSI_IRQS
);
124 static inline struct xilinx_pcie_port
*sys_to_pcie(struct pci_sys_data
*sys
)
126 return sys
->private_data
;
129 static inline u32
pcie_read(struct xilinx_pcie_port
*port
, u32 reg
)
131 return readl(port
->reg_base
+ reg
);
134 static inline void pcie_write(struct xilinx_pcie_port
*port
, u32 val
, u32 reg
)
136 writel(val
, port
->reg_base
+ reg
);
139 static inline bool xilinx_pcie_link_is_up(struct xilinx_pcie_port
*port
)
141 return (pcie_read(port
, XILINX_PCIE_REG_PSCR
) &
142 XILINX_PCIE_REG_PSCR_LNKUP
) ? 1 : 0;
146 * xilinx_pcie_clear_err_interrupts - Clear Error Interrupts
147 * @port: PCIe port information
149 static void xilinx_pcie_clear_err_interrupts(struct xilinx_pcie_port
*port
)
151 unsigned long val
= pcie_read(port
, XILINX_PCIE_REG_RPEFR
);
153 if (val
& XILINX_PCIE_RPEFR_ERR_VALID
) {
154 dev_dbg(port
->dev
, "Requester ID %lu\n",
155 val
& XILINX_PCIE_RPEFR_REQ_ID
);
156 pcie_write(port
, XILINX_PCIE_RPEFR_ALL_MASK
,
157 XILINX_PCIE_REG_RPEFR
);
162 * xilinx_pcie_valid_device - Check if a valid device is present on bus
163 * @bus: PCI Bus structure
164 * @devfn: device/function
166 * Return: 'true' on success and 'false' if invalid device is found
168 static bool xilinx_pcie_valid_device(struct pci_bus
*bus
, unsigned int devfn
)
170 struct xilinx_pcie_port
*port
= sys_to_pcie(bus
->sysdata
);
172 /* Check if link is up when trying to access downstream ports */
173 if (bus
->number
!= port
->root_busno
)
174 if (!xilinx_pcie_link_is_up(port
))
177 /* Only one device down on each root port */
178 if (bus
->number
== port
->root_busno
&& devfn
> 0)
182 * Do not read more than one device on the bus directly attached
185 if (bus
->primary
== port
->root_busno
&& devfn
> 0)
192 * xilinx_pcie_map_bus - Get configuration base
193 * @bus: PCI Bus structure
194 * @devfn: Device/function
195 * @where: Offset from base
197 * Return: Base address of the configuration space needed to be
200 static void __iomem
*xilinx_pcie_map_bus(struct pci_bus
*bus
,
201 unsigned int devfn
, int where
)
203 struct xilinx_pcie_port
*port
= sys_to_pcie(bus
->sysdata
);
206 if (!xilinx_pcie_valid_device(bus
, devfn
))
209 relbus
= (bus
->number
<< ECAM_BUS_NUM_SHIFT
) |
210 (devfn
<< ECAM_DEV_NUM_SHIFT
);
212 return port
->reg_base
+ relbus
+ where
;
215 /* PCIe operations */
216 static struct pci_ops xilinx_pcie_ops
= {
217 .map_bus
= xilinx_pcie_map_bus
,
218 .read
= pci_generic_config_read
,
219 .write
= pci_generic_config_write
,
225 * xilinx_pcie_destroy_msi - Free MSI number
226 * @irq: IRQ to be freed
228 static void xilinx_pcie_destroy_msi(unsigned int irq
)
230 struct msi_desc
*msi
;
231 struct xilinx_pcie_port
*port
;
233 if (!test_bit(irq
, msi_irq_in_use
)) {
234 msi
= irq_get_msi_desc(irq
);
235 port
= sys_to_pcie(msi_desc_to_pci_sysdata(msi
));
236 dev_err(port
->dev
, "Trying to free unused MSI#%d\n", irq
);
238 clear_bit(irq
, msi_irq_in_use
);
243 * xilinx_pcie_assign_msi - Allocate MSI number
244 * @port: PCIe port structure
246 * Return: A valid IRQ on success and error value on failure.
248 static int xilinx_pcie_assign_msi(struct xilinx_pcie_port
*port
)
252 pos
= find_first_zero_bit(msi_irq_in_use
, XILINX_NUM_MSI_IRQS
);
253 if (pos
< XILINX_NUM_MSI_IRQS
)
254 set_bit(pos
, msi_irq_in_use
);
262 * xilinx_msi_teardown_irq - Destroy the MSI
263 * @chip: MSI Chip descriptor
264 * @irq: MSI IRQ to destroy
266 static void xilinx_msi_teardown_irq(struct msi_controller
*chip
,
269 xilinx_pcie_destroy_msi(irq
);
273 * xilinx_pcie_msi_setup_irq - Setup MSI request
274 * @chip: MSI chip pointer
275 * @pdev: PCIe device pointer
276 * @desc: MSI descriptor pointer
278 * Return: '0' on success and error value on failure
280 static int xilinx_pcie_msi_setup_irq(struct msi_controller
*chip
,
281 struct pci_dev
*pdev
,
282 struct msi_desc
*desc
)
284 struct xilinx_pcie_port
*port
= sys_to_pcie(pdev
->bus
->sysdata
);
288 phys_addr_t msg_addr
;
290 hwirq
= xilinx_pcie_assign_msi(port
);
294 irq
= irq_create_mapping(port
->irq_domain
, hwirq
);
298 irq_set_msi_desc(irq
, desc
);
300 msg_addr
= virt_to_phys((void *)port
->msi_pages
);
303 msg
.address_lo
= msg_addr
;
306 pci_write_msi_msg(irq
, &msg
);
311 /* MSI Chip Descriptor */
312 static struct msi_controller xilinx_pcie_msi_chip
= {
313 .setup_irq
= xilinx_pcie_msi_setup_irq
,
314 .teardown_irq
= xilinx_msi_teardown_irq
,
317 /* HW Interrupt Chip Descriptor */
318 static struct irq_chip xilinx_msi_irq_chip
= {
319 .name
= "Xilinx PCIe MSI",
320 .irq_enable
= pci_msi_unmask_irq
,
321 .irq_disable
= pci_msi_mask_irq
,
322 .irq_mask
= pci_msi_mask_irq
,
323 .irq_unmask
= pci_msi_unmask_irq
,
327 * xilinx_pcie_msi_map - Set the handler for the MSI and mark IRQ as valid
328 * @domain: IRQ domain
329 * @irq: Virtual IRQ number
330 * @hwirq: HW interrupt number
332 * Return: Always returns 0.
334 static int xilinx_pcie_msi_map(struct irq_domain
*domain
, unsigned int irq
,
335 irq_hw_number_t hwirq
)
337 irq_set_chip_and_handler(irq
, &xilinx_msi_irq_chip
, handle_simple_irq
);
338 irq_set_chip_data(irq
, domain
->host_data
);
343 /* IRQ Domain operations */
344 static const struct irq_domain_ops msi_domain_ops
= {
345 .map
= xilinx_pcie_msi_map
,
349 * xilinx_pcie_enable_msi - Enable MSI support
350 * @port: PCIe port information
352 static void xilinx_pcie_enable_msi(struct xilinx_pcie_port
*port
)
354 phys_addr_t msg_addr
;
356 port
->msi_pages
= __get_free_pages(GFP_KERNEL
, 0);
357 msg_addr
= virt_to_phys((void *)port
->msi_pages
);
358 pcie_write(port
, 0x0, XILINX_PCIE_REG_MSIBASE1
);
359 pcie_write(port
, msg_addr
, XILINX_PCIE_REG_MSIBASE2
);
365 * xilinx_pcie_intx_map - Set the handler for the INTx and mark IRQ as valid
366 * @domain: IRQ domain
367 * @irq: Virtual IRQ number
368 * @hwirq: HW interrupt number
370 * Return: Always returns 0.
372 static int xilinx_pcie_intx_map(struct irq_domain
*domain
, unsigned int irq
,
373 irq_hw_number_t hwirq
)
375 irq_set_chip_and_handler(irq
, &dummy_irq_chip
, handle_simple_irq
);
376 irq_set_chip_data(irq
, domain
->host_data
);
381 /* INTx IRQ Domain operations */
382 static const struct irq_domain_ops intx_domain_ops
= {
383 .map
= xilinx_pcie_intx_map
,
386 /* PCIe HW Functions */
389 * xilinx_pcie_intr_handler - Interrupt Service Handler
391 * @data: PCIe port information
393 * Return: IRQ_HANDLED on success and IRQ_NONE on failure
395 static irqreturn_t
xilinx_pcie_intr_handler(int irq
, void *data
)
397 struct xilinx_pcie_port
*port
= (struct xilinx_pcie_port
*)data
;
398 u32 val
, mask
, status
, msi_data
;
400 /* Read interrupt decode and mask registers */
401 val
= pcie_read(port
, XILINX_PCIE_REG_IDR
);
402 mask
= pcie_read(port
, XILINX_PCIE_REG_IMR
);
408 if (status
& XILINX_PCIE_INTR_LINK_DOWN
)
409 dev_warn(port
->dev
, "Link Down\n");
411 if (status
& XILINX_PCIE_INTR_ECRC_ERR
)
412 dev_warn(port
->dev
, "ECRC failed\n");
414 if (status
& XILINX_PCIE_INTR_STR_ERR
)
415 dev_warn(port
->dev
, "Streaming error\n");
417 if (status
& XILINX_PCIE_INTR_HOT_RESET
)
418 dev_info(port
->dev
, "Hot reset\n");
420 if (status
& XILINX_PCIE_INTR_CFG_TIMEOUT
)
421 dev_warn(port
->dev
, "ECAM access timeout\n");
423 if (status
& XILINX_PCIE_INTR_CORRECTABLE
) {
424 dev_warn(port
->dev
, "Correctable error message\n");
425 xilinx_pcie_clear_err_interrupts(port
);
428 if (status
& XILINX_PCIE_INTR_NONFATAL
) {
429 dev_warn(port
->dev
, "Non fatal error message\n");
430 xilinx_pcie_clear_err_interrupts(port
);
433 if (status
& XILINX_PCIE_INTR_FATAL
) {
434 dev_warn(port
->dev
, "Fatal error message\n");
435 xilinx_pcie_clear_err_interrupts(port
);
438 if (status
& XILINX_PCIE_INTR_INTX
) {
439 /* INTx interrupt received */
440 val
= pcie_read(port
, XILINX_PCIE_REG_RPIFR1
);
442 /* Check whether interrupt valid */
443 if (!(val
& XILINX_PCIE_RPIFR1_INTR_VALID
)) {
444 dev_warn(port
->dev
, "RP Intr FIFO1 read error\n");
448 if (!(val
& XILINX_PCIE_RPIFR1_MSI_INTR
)) {
449 /* Clear interrupt FIFO register 1 */
450 pcie_write(port
, XILINX_PCIE_RPIFR1_ALL_MASK
,
451 XILINX_PCIE_REG_RPIFR1
);
453 /* Handle INTx Interrupt */
454 val
= ((val
& XILINX_PCIE_RPIFR1_INTR_MASK
) >>
455 XILINX_PCIE_RPIFR1_INTR_SHIFT
) + 1;
456 generic_handle_irq(irq_find_mapping(port
->irq_domain
,
461 if (status
& XILINX_PCIE_INTR_MSI
) {
463 val
= pcie_read(port
, XILINX_PCIE_REG_RPIFR1
);
465 if (!(val
& XILINX_PCIE_RPIFR1_INTR_VALID
)) {
466 dev_warn(port
->dev
, "RP Intr FIFO1 read error\n");
470 if (val
& XILINX_PCIE_RPIFR1_MSI_INTR
) {
471 msi_data
= pcie_read(port
, XILINX_PCIE_REG_RPIFR2
) &
472 XILINX_PCIE_RPIFR2_MSG_DATA
;
474 /* Clear interrupt FIFO register 1 */
475 pcie_write(port
, XILINX_PCIE_RPIFR1_ALL_MASK
,
476 XILINX_PCIE_REG_RPIFR1
);
478 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
479 /* Handle MSI Interrupt */
480 generic_handle_irq(msi_data
);
485 if (status
& XILINX_PCIE_INTR_SLV_UNSUPP
)
486 dev_warn(port
->dev
, "Slave unsupported request\n");
488 if (status
& XILINX_PCIE_INTR_SLV_UNEXP
)
489 dev_warn(port
->dev
, "Slave unexpected completion\n");
491 if (status
& XILINX_PCIE_INTR_SLV_COMPL
)
492 dev_warn(port
->dev
, "Slave completion timeout\n");
494 if (status
& XILINX_PCIE_INTR_SLV_ERRP
)
495 dev_warn(port
->dev
, "Slave Error Poison\n");
497 if (status
& XILINX_PCIE_INTR_SLV_CMPABT
)
498 dev_warn(port
->dev
, "Slave Completer Abort\n");
500 if (status
& XILINX_PCIE_INTR_SLV_ILLBUR
)
501 dev_warn(port
->dev
, "Slave Illegal Burst\n");
503 if (status
& XILINX_PCIE_INTR_MST_DECERR
)
504 dev_warn(port
->dev
, "Master decode error\n");
506 if (status
& XILINX_PCIE_INTR_MST_SLVERR
)
507 dev_warn(port
->dev
, "Master slave error\n");
509 if (status
& XILINX_PCIE_INTR_MST_ERRP
)
510 dev_warn(port
->dev
, "Master error poison\n");
512 /* Clear the Interrupt Decode register */
513 pcie_write(port
, status
, XILINX_PCIE_REG_IDR
);
519 * xilinx_pcie_free_irq_domain - Free IRQ domain
520 * @port: PCIe port information
522 static void xilinx_pcie_free_irq_domain(struct xilinx_pcie_port
*port
)
527 /* Free IRQ Domain */
528 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
530 free_pages(port
->msi_pages
, 0);
532 num_irqs
= XILINX_NUM_MSI_IRQS
;
538 for (i
= 0; i
< num_irqs
; i
++) {
539 irq
= irq_find_mapping(port
->irq_domain
, i
);
541 irq_dispose_mapping(irq
);
544 irq_domain_remove(port
->irq_domain
);
548 * xilinx_pcie_init_irq_domain - Initialize IRQ domain
549 * @port: PCIe port information
551 * Return: '0' on success and error value on failure
553 static int xilinx_pcie_init_irq_domain(struct xilinx_pcie_port
*port
)
555 struct device
*dev
= port
->dev
;
556 struct device_node
*node
= dev
->of_node
;
557 struct device_node
*pcie_intc_node
;
560 pcie_intc_node
= of_get_next_child(node
, NULL
);
561 if (!pcie_intc_node
) {
562 dev_err(dev
, "No PCIe Intc node found\n");
563 return PTR_ERR(pcie_intc_node
);
566 port
->irq_domain
= irq_domain_add_linear(pcie_intc_node
, 4,
569 if (!port
->irq_domain
) {
570 dev_err(dev
, "Failed to get a INTx IRQ domain\n");
571 return PTR_ERR(port
->irq_domain
);
575 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
576 port
->irq_domain
= irq_domain_add_linear(node
,
579 &xilinx_pcie_msi_chip
);
580 if (!port
->irq_domain
) {
581 dev_err(dev
, "Failed to get a MSI IRQ domain\n");
582 return PTR_ERR(port
->irq_domain
);
585 xilinx_pcie_enable_msi(port
);
592 * xilinx_pcie_init_port - Initialize hardware
593 * @port: PCIe port information
595 static void xilinx_pcie_init_port(struct xilinx_pcie_port
*port
)
597 if (xilinx_pcie_link_is_up(port
))
598 dev_info(port
->dev
, "PCIe Link is UP\n");
600 dev_info(port
->dev
, "PCIe Link is DOWN\n");
602 /* Disable all interrupts */
603 pcie_write(port
, ~XILINX_PCIE_IDR_ALL_MASK
,
604 XILINX_PCIE_REG_IMR
);
606 /* Clear pending interrupts */
607 pcie_write(port
, pcie_read(port
, XILINX_PCIE_REG_IDR
) &
608 XILINX_PCIE_IMR_ALL_MASK
,
609 XILINX_PCIE_REG_IDR
);
611 /* Enable all interrupts */
612 pcie_write(port
, XILINX_PCIE_IMR_ALL_MASK
, XILINX_PCIE_REG_IMR
);
614 /* Enable the Bridge enable bit */
615 pcie_write(port
, pcie_read(port
, XILINX_PCIE_REG_RPSC
) |
616 XILINX_PCIE_REG_RPSC_BEN
,
617 XILINX_PCIE_REG_RPSC
);
621 * xilinx_pcie_setup - Setup memory resources
623 * @sys: Per controller structure
625 * Return: '1' on success and error value on failure
627 static int xilinx_pcie_setup(int nr
, struct pci_sys_data
*sys
)
629 struct xilinx_pcie_port
*port
= sys_to_pcie(sys
);
631 list_splice_init(&port
->resources
, &sys
->resources
);
637 * xilinx_pcie_scan_bus - Scan PCIe bus for devices
639 * @sys: Per controller structure
641 * Return: Valid Bus pointer on success and NULL on failure
643 static struct pci_bus
*xilinx_pcie_scan_bus(int nr
, struct pci_sys_data
*sys
)
645 struct xilinx_pcie_port
*port
= sys_to_pcie(sys
);
648 port
->root_busno
= sys
->busnr
;
650 if (IS_ENABLED(CONFIG_PCI_MSI
))
651 bus
= pci_scan_root_bus_msi(port
->dev
, sys
->busnr
,
652 &xilinx_pcie_ops
, sys
,
654 &xilinx_pcie_msi_chip
);
656 bus
= pci_scan_root_bus(port
->dev
, sys
->busnr
,
657 &xilinx_pcie_ops
, sys
, &sys
->resources
);
662 * xilinx_pcie_parse_and_add_res - Add resources by parsing ranges
663 * @port: PCIe port information
665 * Return: '0' on success and error value on failure
667 static int xilinx_pcie_parse_and_add_res(struct xilinx_pcie_port
*port
)
669 struct device
*dev
= port
->dev
;
670 struct device_node
*node
= dev
->of_node
;
671 struct resource
*mem
;
672 resource_size_t offset
;
673 struct of_pci_range_parser parser
;
674 struct of_pci_range range
;
675 struct resource_entry
*win
;
676 int err
= 0, mem_resno
= 0;
679 if (of_pci_range_parser_init(&parser
, node
)) {
680 dev_err(dev
, "missing \"ranges\" property\n");
684 /* Parse the ranges and add the resources found to the list */
685 for_each_of_pci_range(&parser
, &range
) {
687 if (mem_resno
>= XILINX_MAX_NUM_RESOURCES
) {
688 dev_err(dev
, "Maximum memory resources exceeded\n");
692 mem
= devm_kmalloc(dev
, sizeof(*mem
), GFP_KERNEL
);
698 of_pci_range_to_resource(&range
, node
, mem
);
700 switch (mem
->flags
& IORESOURCE_TYPE_BITS
) {
702 offset
= range
.cpu_addr
- range
.pci_addr
;
711 dev_warn(dev
, "Invalid resource found %pR\n", mem
);
715 err
= request_resource(&iomem_resource
, mem
);
719 pci_add_resource_offset(&port
->resources
, mem
, offset
);
722 /* Get the bus range */
723 if (of_pci_parse_bus_range(node
, &port
->bus_range
)) {
724 u32 val
= pcie_read(port
, XILINX_PCIE_REG_BIR
);
727 last
= (val
& XILINX_PCIE_BIR_ECAM_SZ_MASK
) >>
728 XILINX_PCIE_BIR_ECAM_SZ_SHIFT
;
730 port
->bus_range
= (struct resource
) {
734 .flags
= IORESOURCE_BUS
,
738 /* Register bus resource */
739 pci_add_resource(&port
->resources
, &port
->bus_range
);
744 release_child_resources(&iomem_resource
);
745 resource_list_for_each_entry(win
, &port
->resources
)
746 devm_kfree(dev
, win
->res
);
747 pci_free_resource_list(&port
->resources
);
753 * xilinx_pcie_parse_dt - Parse Device tree
754 * @port: PCIe port information
756 * Return: '0' on success and error value on failure
758 static int xilinx_pcie_parse_dt(struct xilinx_pcie_port
*port
)
760 struct device
*dev
= port
->dev
;
761 struct device_node
*node
= dev
->of_node
;
762 struct resource regs
;
766 type
= of_get_property(node
, "device_type", NULL
);
767 if (!type
|| strcmp(type
, "pci")) {
768 dev_err(dev
, "invalid \"device_type\" %s\n", type
);
772 err
= of_address_to_resource(node
, 0, ®s
);
774 dev_err(dev
, "missing \"reg\" property\n");
778 port
->reg_base
= devm_ioremap_resource(dev
, ®s
);
779 if (IS_ERR(port
->reg_base
))
780 return PTR_ERR(port
->reg_base
);
782 port
->irq
= irq_of_parse_and_map(node
, 0);
783 err
= devm_request_irq(dev
, port
->irq
, xilinx_pcie_intr_handler
,
784 IRQF_SHARED
, "xilinx-pcie", port
);
786 dev_err(dev
, "unable to request irq %d\n", port
->irq
);
794 * xilinx_pcie_probe - Probe function
795 * @pdev: Platform device pointer
797 * Return: '0' on success and error value on failure
799 static int xilinx_pcie_probe(struct platform_device
*pdev
)
801 struct xilinx_pcie_port
*port
;
803 struct device
*dev
= &pdev
->dev
;
809 port
= devm_kzalloc(dev
, sizeof(*port
), GFP_KERNEL
);
815 err
= xilinx_pcie_parse_dt(port
);
817 dev_err(dev
, "Parsing DT failed\n");
821 xilinx_pcie_init_port(port
);
823 err
= xilinx_pcie_init_irq_domain(port
);
825 dev_err(dev
, "Failed creating IRQ Domain\n");
830 * Parse PCI ranges, configuration bus range and
831 * request their resources
833 INIT_LIST_HEAD(&port
->resources
);
834 err
= xilinx_pcie_parse_and_add_res(port
);
836 dev_err(dev
, "Failed adding resources\n");
840 platform_set_drvdata(pdev
, port
);
842 /* Register the device */
843 memset(&hw
, 0, sizeof(hw
));
844 hw
= (struct hw_pci
) {
846 .private_data
= (void **)&port
,
847 .setup
= xilinx_pcie_setup
,
848 .map_irq
= of_irq_parse_and_map_pci
,
849 .scan
= xilinx_pcie_scan_bus
,
850 .ops
= &xilinx_pcie_ops
,
853 #ifdef CONFIG_PCI_MSI
854 xilinx_pcie_msi_chip
.dev
= port
->dev
;
856 pci_common_init_dev(dev
, &hw
);
862 * xilinx_pcie_remove - Remove function
863 * @pdev: Platform device pointer
867 static int xilinx_pcie_remove(struct platform_device
*pdev
)
869 struct xilinx_pcie_port
*port
= platform_get_drvdata(pdev
);
871 xilinx_pcie_free_irq_domain(port
);
876 static struct of_device_id xilinx_pcie_of_match
[] = {
877 { .compatible
= "xlnx,axi-pcie-host-1.00.a", },
881 static struct platform_driver xilinx_pcie_driver
= {
883 .name
= "xilinx-pcie",
884 .of_match_table
= xilinx_pcie_of_match
,
885 .suppress_bind_attrs
= true,
887 .probe
= xilinx_pcie_probe
,
888 .remove
= xilinx_pcie_remove
,
890 module_platform_driver(xilinx_pcie_driver
);
892 MODULE_AUTHOR("Xilinx Inc");
893 MODULE_DESCRIPTION("Xilinx AXI PCIe driver");
894 MODULE_LICENSE("GPL v2");