2 * Copyright Altera Corporation (C) 2013-2015. All rights reserved
4 * Author: Ley Foon Tan <lftan@altera.com>
5 * Description: Altera PCIe host controller driver
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <linux/delay.h>
21 #include <linux/interrupt.h>
22 #include <linux/irqchip/chained_irq.h>
23 #include <linux/init.h>
24 #include <linux/of_address.h>
25 #include <linux/of_irq.h>
26 #include <linux/of_pci.h>
27 #include <linux/pci.h>
28 #include <linux/platform_device.h>
29 #include <linux/slab.h>
31 #define RP_TX_REG0 0x2000
32 #define RP_TX_REG1 0x2004
33 #define RP_TX_CNTRL 0x2008
36 #define RP_RXCPL_STATUS 0x2010
37 #define RP_RXCPL_EOP 0x2
38 #define RP_RXCPL_SOP 0x1
39 #define RP_RXCPL_REG0 0x2014
40 #define RP_RXCPL_REG1 0x2018
41 #define P2A_INT_STATUS 0x3060
42 #define P2A_INT_STS_ALL 0xf
43 #define P2A_INT_ENABLE 0x3070
44 #define P2A_INT_ENA_ALL 0xf
45 #define RP_LTSSM 0x3c64
46 #define RP_LTSSM_MASK 0x1f
49 #define PCIE_CAP_OFFSET 0x80
50 /* TLP configuration type 0 and 1 */
51 #define TLP_FMTTYPE_CFGRD0 0x04 /* Configuration Read Type 0 */
52 #define TLP_FMTTYPE_CFGWR0 0x44 /* Configuration Write Type 0 */
53 #define TLP_FMTTYPE_CFGRD1 0x05 /* Configuration Read Type 1 */
54 #define TLP_FMTTYPE_CFGWR1 0x45 /* Configuration Write Type 1 */
55 #define TLP_PAYLOAD_SIZE 0x01
56 #define TLP_READ_TAG 0x1d
57 #define TLP_WRITE_TAG 0x10
59 #define TLP_REQ_ID(bus, devfn) (((bus) << 8) | (devfn))
60 #define TLP_CFGRD_DW0(pcie, bus) \
61 ((((bus == pcie->root_bus_nr) ? TLP_FMTTYPE_CFGRD0 \
62 : TLP_FMTTYPE_CFGRD1) << 24) | \
64 #define TLP_CFGWR_DW0(pcie, bus) \
65 ((((bus == pcie->root_bus_nr) ? TLP_FMTTYPE_CFGWR0 \
66 : TLP_FMTTYPE_CFGWR1) << 24) | \
68 #define TLP_CFG_DW1(pcie, tag, be) \
69 (((TLP_REQ_ID(pcie->root_bus_nr, RP_DEVFN)) << 16) | (tag << 8) | (be))
70 #define TLP_CFG_DW2(bus, devfn, offset) \
71 (((bus) << 24) | ((devfn) << 16) | (offset))
72 #define TLP_COMP_STATUS(s) (((s) >> 12) & 7)
73 #define TLP_HDR_SIZE 3
76 #define LINK_UP_TIMEOUT HZ
77 #define LINK_RETRAIN_TIMEOUT HZ
84 struct platform_device
*pdev
;
85 void __iomem
*cra_base
; /* DT Cra */
88 struct irq_domain
*irq_domain
;
89 struct resource bus_range
;
90 struct list_head resources
;
93 struct tlp_rp_regpair_t
{
99 static inline void cra_writel(struct altera_pcie
*pcie
, const u32 value
,
102 writel_relaxed(value
, pcie
->cra_base
+ reg
);
105 static inline u32
cra_readl(struct altera_pcie
*pcie
, const u32 reg
)
107 return readl_relaxed(pcie
->cra_base
+ reg
);
110 static bool altera_pcie_link_is_up(struct altera_pcie
*pcie
)
112 return !!((cra_readl(pcie
, RP_LTSSM
) & RP_LTSSM_MASK
) == LTSSM_L0
);
116 * Altera PCIe port uses BAR0 of RC's configuration space as the translation
117 * from PCI bus to native BUS. Entire DDR region is mapped into PCIe space
118 * using these registers, so it can be reached by DMA from EP devices.
119 * This BAR0 will also access to MSI vector when receiving MSI/MSIX interrupt
120 * from EP devices, eventually trigger interrupt to GIC. The BAR0 of bridge
121 * should be hidden during enumeration to avoid the sizing and resource
122 * allocation by PCIe core.
124 static bool altera_pcie_hide_rc_bar(struct pci_bus
*bus
, unsigned int devfn
,
127 if (pci_is_root_bus(bus
) && (devfn
== 0) &&
128 (offset
== PCI_BASE_ADDRESS_0
))
134 static void tlp_write_tx(struct altera_pcie
*pcie
,
135 struct tlp_rp_regpair_t
*tlp_rp_regdata
)
137 cra_writel(pcie
, tlp_rp_regdata
->reg0
, RP_TX_REG0
);
138 cra_writel(pcie
, tlp_rp_regdata
->reg1
, RP_TX_REG1
);
139 cra_writel(pcie
, tlp_rp_regdata
->ctrl
, RP_TX_CNTRL
);
142 static bool altera_pcie_valid_device(struct altera_pcie
*pcie
,
143 struct pci_bus
*bus
, int dev
)
145 /* If there is no link, then there is no device */
146 if (bus
->number
!= pcie
->root_bus_nr
) {
147 if (!altera_pcie_link_is_up(pcie
))
151 /* access only one slot on each root port */
152 if (bus
->number
== pcie
->root_bus_nr
&& dev
> 0)
158 static int tlp_read_packet(struct altera_pcie
*pcie
, u32
*value
)
167 * Minimum 2 loops to read TLP headers and 1 loop to read data
170 for (i
= 0; i
< TLP_LOOP
; i
++) {
171 ctrl
= cra_readl(pcie
, RP_RXCPL_STATUS
);
172 if ((ctrl
& RP_RXCPL_SOP
) || (ctrl
& RP_RXCPL_EOP
) || sop
) {
173 reg0
= cra_readl(pcie
, RP_RXCPL_REG0
);
174 reg1
= cra_readl(pcie
, RP_RXCPL_REG1
);
176 if (ctrl
& RP_RXCPL_SOP
) {
178 comp_status
= TLP_COMP_STATUS(reg1
);
181 if (ctrl
& RP_RXCPL_EOP
) {
183 return PCIBIOS_DEVICE_NOT_FOUND
;
188 return PCIBIOS_SUCCESSFUL
;
194 return PCIBIOS_DEVICE_NOT_FOUND
;
197 static void tlp_write_packet(struct altera_pcie
*pcie
, u32
*headers
,
198 u32 data
, bool align
)
200 struct tlp_rp_regpair_t tlp_rp_regdata
;
202 tlp_rp_regdata
.reg0
= headers
[0];
203 tlp_rp_regdata
.reg1
= headers
[1];
204 tlp_rp_regdata
.ctrl
= RP_TX_SOP
;
205 tlp_write_tx(pcie
, &tlp_rp_regdata
);
208 tlp_rp_regdata
.reg0
= headers
[2];
209 tlp_rp_regdata
.reg1
= 0;
210 tlp_rp_regdata
.ctrl
= 0;
211 tlp_write_tx(pcie
, &tlp_rp_regdata
);
213 tlp_rp_regdata
.reg0
= data
;
214 tlp_rp_regdata
.reg1
= 0;
216 tlp_rp_regdata
.reg0
= headers
[2];
217 tlp_rp_regdata
.reg1
= data
;
220 tlp_rp_regdata
.ctrl
= RP_TX_EOP
;
221 tlp_write_tx(pcie
, &tlp_rp_regdata
);
224 static int tlp_cfg_dword_read(struct altera_pcie
*pcie
, u8 bus
, u32 devfn
,
225 int where
, u8 byte_en
, u32
*value
)
227 u32 headers
[TLP_HDR_SIZE
];
229 headers
[0] = TLP_CFGRD_DW0(pcie
, bus
);
230 headers
[1] = TLP_CFG_DW1(pcie
, TLP_READ_TAG
, byte_en
);
231 headers
[2] = TLP_CFG_DW2(bus
, devfn
, where
);
233 tlp_write_packet(pcie
, headers
, 0, false);
235 return tlp_read_packet(pcie
, value
);
238 static int tlp_cfg_dword_write(struct altera_pcie
*pcie
, u8 bus
, u32 devfn
,
239 int where
, u8 byte_en
, u32 value
)
241 u32 headers
[TLP_HDR_SIZE
];
244 headers
[0] = TLP_CFGWR_DW0(pcie
, bus
);
245 headers
[1] = TLP_CFG_DW1(pcie
, TLP_WRITE_TAG
, byte_en
);
246 headers
[2] = TLP_CFG_DW2(bus
, devfn
, where
);
248 /* check alignment to Qword */
249 if ((where
& 0x7) == 0)
250 tlp_write_packet(pcie
, headers
, value
, true);
252 tlp_write_packet(pcie
, headers
, value
, false);
254 ret
= tlp_read_packet(pcie
, NULL
);
255 if (ret
!= PCIBIOS_SUCCESSFUL
)
259 * Monitor changes to PCI_PRIMARY_BUS register on root port
260 * and update local copy of root bus number accordingly.
262 if ((bus
== pcie
->root_bus_nr
) && (where
== PCI_PRIMARY_BUS
))
263 pcie
->root_bus_nr
= (u8
)(value
);
265 return PCIBIOS_SUCCESSFUL
;
268 static int _altera_pcie_cfg_read(struct altera_pcie
*pcie
, u8 busno
,
269 unsigned int devfn
, int where
, int size
,
278 byte_en
= 1 << (where
& 3);
281 byte_en
= 3 << (where
& 3);
288 ret
= tlp_cfg_dword_read(pcie
, busno
, devfn
,
289 (where
& ~DWORD_MASK
), byte_en
, &data
);
290 if (ret
!= PCIBIOS_SUCCESSFUL
)
295 *value
= (data
>> (8 * (where
& 0x3))) & 0xff;
298 *value
= (data
>> (8 * (where
& 0x2))) & 0xffff;
305 return PCIBIOS_SUCCESSFUL
;
308 static int _altera_pcie_cfg_write(struct altera_pcie
*pcie
, u8 busno
,
309 unsigned int devfn
, int where
, int size
,
313 u32 shift
= 8 * (where
& 3);
318 data32
= (value
& 0xff) << shift
;
319 byte_en
= 1 << (where
& 3);
322 data32
= (value
& 0xffff) << shift
;
323 byte_en
= 3 << (where
& 3);
331 return tlp_cfg_dword_write(pcie
, busno
, devfn
, (where
& ~DWORD_MASK
),
335 static int altera_pcie_cfg_read(struct pci_bus
*bus
, unsigned int devfn
,
336 int where
, int size
, u32
*value
)
338 struct altera_pcie
*pcie
= bus
->sysdata
;
340 if (altera_pcie_hide_rc_bar(bus
, devfn
, where
))
341 return PCIBIOS_BAD_REGISTER_NUMBER
;
343 if (!altera_pcie_valid_device(pcie
, bus
, PCI_SLOT(devfn
))) {
345 return PCIBIOS_DEVICE_NOT_FOUND
;
348 return _altera_pcie_cfg_read(pcie
, bus
->number
, devfn
, where
, size
,
352 static int altera_pcie_cfg_write(struct pci_bus
*bus
, unsigned int devfn
,
353 int where
, int size
, u32 value
)
355 struct altera_pcie
*pcie
= bus
->sysdata
;
357 if (altera_pcie_hide_rc_bar(bus
, devfn
, where
))
358 return PCIBIOS_BAD_REGISTER_NUMBER
;
360 if (!altera_pcie_valid_device(pcie
, bus
, PCI_SLOT(devfn
)))
361 return PCIBIOS_DEVICE_NOT_FOUND
;
363 return _altera_pcie_cfg_write(pcie
, bus
->number
, devfn
, where
, size
,
367 static struct pci_ops altera_pcie_ops
= {
368 .read
= altera_pcie_cfg_read
,
369 .write
= altera_pcie_cfg_write
,
372 static int altera_read_cap_word(struct altera_pcie
*pcie
, u8 busno
,
373 unsigned int devfn
, int offset
, u16
*value
)
378 ret
= _altera_pcie_cfg_read(pcie
, busno
, devfn
,
379 PCIE_CAP_OFFSET
+ offset
, sizeof(*value
),
385 static int altera_write_cap_word(struct altera_pcie
*pcie
, u8 busno
,
386 unsigned int devfn
, int offset
, u16 value
)
388 return _altera_pcie_cfg_write(pcie
, busno
, devfn
,
389 PCIE_CAP_OFFSET
+ offset
, sizeof(value
),
393 static void altera_wait_link_retrain(struct altera_pcie
*pcie
)
395 struct device
*dev
= &pcie
->pdev
->dev
;
397 unsigned long start_jiffies
;
399 /* Wait for link training end. */
400 start_jiffies
= jiffies
;
402 altera_read_cap_word(pcie
, pcie
->root_bus_nr
, RP_DEVFN
,
403 PCI_EXP_LNKSTA
, ®16
);
404 if (!(reg16
& PCI_EXP_LNKSTA_LT
))
407 if (time_after(jiffies
, start_jiffies
+ LINK_RETRAIN_TIMEOUT
)) {
408 dev_err(dev
, "link retrain timeout\n");
414 /* Wait for link is up */
415 start_jiffies
= jiffies
;
417 if (altera_pcie_link_is_up(pcie
))
420 if (time_after(jiffies
, start_jiffies
+ LINK_UP_TIMEOUT
)) {
421 dev_err(dev
, "link up timeout\n");
428 static void altera_pcie_retrain(struct altera_pcie
*pcie
)
430 u16 linkcap
, linkstat
, linkctl
;
432 if (!altera_pcie_link_is_up(pcie
))
436 * Set the retrain bit if the PCIe rootport support > 2.5GB/s, but
437 * current speed is 2.5 GB/s.
439 altera_read_cap_word(pcie
, pcie
->root_bus_nr
, RP_DEVFN
, PCI_EXP_LNKCAP
,
441 if ((linkcap
& PCI_EXP_LNKCAP_SLS
) <= PCI_EXP_LNKCAP_SLS_2_5GB
)
444 altera_read_cap_word(pcie
, pcie
->root_bus_nr
, RP_DEVFN
, PCI_EXP_LNKSTA
,
446 if ((linkstat
& PCI_EXP_LNKSTA_CLS
) == PCI_EXP_LNKSTA_CLS_2_5GB
) {
447 altera_read_cap_word(pcie
, pcie
->root_bus_nr
, RP_DEVFN
,
448 PCI_EXP_LNKCTL
, &linkctl
);
449 linkctl
|= PCI_EXP_LNKCTL_RL
;
450 altera_write_cap_word(pcie
, pcie
->root_bus_nr
, RP_DEVFN
,
451 PCI_EXP_LNKCTL
, linkctl
);
453 altera_wait_link_retrain(pcie
);
457 static int altera_pcie_intx_map(struct irq_domain
*domain
, unsigned int irq
,
458 irq_hw_number_t hwirq
)
460 irq_set_chip_and_handler(irq
, &dummy_irq_chip
, handle_simple_irq
);
461 irq_set_chip_data(irq
, domain
->host_data
);
465 static const struct irq_domain_ops intx_domain_ops
= {
466 .map
= altera_pcie_intx_map
,
469 static void altera_pcie_isr(struct irq_desc
*desc
)
471 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
472 struct altera_pcie
*pcie
;
474 unsigned long status
;
478 chained_irq_enter(chip
, desc
);
479 pcie
= irq_desc_get_handler_data(desc
);
480 dev
= &pcie
->pdev
->dev
;
482 while ((status
= cra_readl(pcie
, P2A_INT_STATUS
)
483 & P2A_INT_STS_ALL
) != 0) {
484 for_each_set_bit(bit
, &status
, INTX_NUM
) {
485 /* clear interrupts */
486 cra_writel(pcie
, 1 << bit
, P2A_INT_STATUS
);
488 virq
= irq_find_mapping(pcie
->irq_domain
, bit
+ 1);
490 generic_handle_irq(virq
);
492 dev_err(dev
, "unexpected IRQ, INT%d\n", bit
);
496 chained_irq_exit(chip
, desc
);
499 static int altera_pcie_parse_request_of_pci_ranges(struct altera_pcie
*pcie
)
501 int err
, res_valid
= 0;
502 struct device
*dev
= &pcie
->pdev
->dev
;
503 struct device_node
*np
= dev
->of_node
;
504 struct resource_entry
*win
;
506 err
= of_pci_get_host_bridge_resources(np
, 0, 0xff, &pcie
->resources
,
511 err
= devm_request_pci_bus_resources(dev
, &pcie
->resources
);
513 goto out_release_res
;
515 resource_list_for_each_entry(win
, &pcie
->resources
) {
516 struct resource
*res
= win
->res
;
518 if (resource_type(res
) == IORESOURCE_MEM
)
519 res_valid
|= !(res
->flags
& IORESOURCE_PREFETCH
);
525 dev_err(dev
, "non-prefetchable memory resource required\n");
529 pci_free_resource_list(&pcie
->resources
);
533 static int altera_pcie_init_irq_domain(struct altera_pcie
*pcie
)
535 struct device
*dev
= &pcie
->pdev
->dev
;
536 struct device_node
*node
= dev
->of_node
;
539 pcie
->irq_domain
= irq_domain_add_linear(node
, INTX_NUM
+ 1,
540 &intx_domain_ops
, pcie
);
541 if (!pcie
->irq_domain
) {
542 dev_err(dev
, "Failed to get a INTx IRQ domain\n");
549 static int altera_pcie_parse_dt(struct altera_pcie
*pcie
)
551 struct device
*dev
= &pcie
->pdev
->dev
;
552 struct platform_device
*pdev
= pcie
->pdev
;
553 struct resource
*cra
;
555 cra
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "Cra");
556 pcie
->cra_base
= devm_ioremap_resource(dev
, cra
);
557 if (IS_ERR(pcie
->cra_base
)) {
558 dev_err(dev
, "failed to map cra memory\n");
559 return PTR_ERR(pcie
->cra_base
);
563 pcie
->irq
= platform_get_irq(pdev
, 0);
564 if (pcie
->irq
<= 0) {
565 dev_err(dev
, "failed to get IRQ: %d\n", pcie
->irq
);
569 irq_set_chained_handler_and_data(pcie
->irq
, altera_pcie_isr
, pcie
);
573 static void altera_pcie_host_init(struct altera_pcie
*pcie
)
575 altera_pcie_retrain(pcie
);
578 static int altera_pcie_probe(struct platform_device
*pdev
)
580 struct device
*dev
= &pdev
->dev
;
581 struct altera_pcie
*pcie
;
583 struct pci_bus
*child
;
586 pcie
= devm_kzalloc(dev
, sizeof(*pcie
), GFP_KERNEL
);
592 ret
= altera_pcie_parse_dt(pcie
);
594 dev_err(dev
, "Parsing DT failed\n");
598 INIT_LIST_HEAD(&pcie
->resources
);
600 ret
= altera_pcie_parse_request_of_pci_ranges(pcie
);
602 dev_err(dev
, "Failed add resources\n");
606 ret
= altera_pcie_init_irq_domain(pcie
);
608 dev_err(dev
, "Failed creating IRQ Domain\n");
612 /* clear all interrupts */
613 cra_writel(pcie
, P2A_INT_STS_ALL
, P2A_INT_STATUS
);
614 /* enable all interrupts */
615 cra_writel(pcie
, P2A_INT_ENA_ALL
, P2A_INT_ENABLE
);
616 altera_pcie_host_init(pcie
);
618 bus
= pci_scan_root_bus(dev
, pcie
->root_bus_nr
, &altera_pcie_ops
,
619 pcie
, &pcie
->resources
);
623 pci_fixup_irqs(pci_common_swizzle
, of_irq_parse_and_map_pci
);
624 pci_assign_unassigned_bus_resources(bus
);
626 /* Configure PCI Express setting. */
627 list_for_each_entry(child
, &bus
->children
, node
)
628 pcie_bus_configure_settings(child
);
630 pci_bus_add_devices(bus
);
634 static const struct of_device_id altera_pcie_of_match
[] = {
635 { .compatible
= "altr,pcie-root-port-1.0", },
639 static struct platform_driver altera_pcie_driver
= {
640 .probe
= altera_pcie_probe
,
642 .name
= "altera-pcie",
643 .of_match_table
= altera_pcie_of_match
,
644 .suppress_bind_attrs
= true,
648 static int altera_pcie_init(void)
650 return platform_driver_register(&altera_pcie_driver
);
652 device_initcall(altera_pcie_init
);