2 * PCI-E support for CNS3xxx
4 * Copyright 2008 Cavium Networks
5 * Richard Liu <richard.liu@caviumnetworks.com>
6 * Copyright 2010 MontaVista Software, LLC.
7 * Anton Vorontsov <avorontsov@mvista.com>
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/bug.h>
17 #include <linux/pci.h>
19 #include <linux/ioport.h>
20 #include <linux/interrupt.h>
21 #include <linux/ptrace.h>
22 #include <asm/mach/map.h>
27 void __iomem
*host_regs
; /* PCI config registers for host bridge */
28 void __iomem
*cfg0_regs
; /* PCI Type 0 config registers */
29 void __iomem
*cfg1_regs
; /* PCI Type 1 config registers */
31 struct resource res_io
;
32 struct resource res_mem
;
38 static struct cns3xxx_pcie cns3xxx_pcie
[]; /* forward decl. */
40 static struct cns3xxx_pcie
*sysdata_to_cnspci(void *sysdata
)
42 struct pci_sys_data
*root
= sysdata
;
44 return &cns3xxx_pcie
[root
->domain
];
47 static struct cns3xxx_pcie
*pdev_to_cnspci(const struct pci_dev
*dev
)
49 return sysdata_to_cnspci(dev
->sysdata
);
52 static struct cns3xxx_pcie
*pbus_to_cnspci(struct pci_bus
*bus
)
54 return sysdata_to_cnspci(bus
->sysdata
);
57 static void __iomem
*cns3xxx_pci_cfg_base(struct pci_bus
*bus
,
58 unsigned int devfn
, int where
)
60 struct cns3xxx_pcie
*cnspci
= pbus_to_cnspci(bus
);
61 int busno
= bus
->number
;
62 int slot
= PCI_SLOT(devfn
);
66 /* If there is no link, just show the CNS PCI bridge. */
67 if (!cnspci
->linked
&& (busno
> 0 || slot
> 0))
71 * The CNS PCI bridge doesn't fit into the PCI hierarchy, though
72 * we still want to access it. For this to work, we must place
73 * the first device on the same bus as the CNS PCI bridge.
75 if (busno
== 0) { /* directly connected PCIe bus */
77 case 0: /* host bridge device, function 0 only */
78 base
= cnspci
->host_regs
;
80 case 1: /* directly connected device */
81 base
= cnspci
->cfg0_regs
;
84 return NULL
; /* no such device */
86 } else /* remote PCI bus */
87 base
= cnspci
->cfg1_regs
;
89 offset
= ((busno
& 0xf) << 20) | (devfn
<< 12) | (where
& 0xffc);
93 static int cns3xxx_pci_read_config(struct pci_bus
*bus
, unsigned int devfn
,
94 int where
, int size
, u32
*val
)
98 u32 mask
= (0x1ull
<< (size
* 8)) - 1;
99 int shift
= (where
% 4) * 8;
101 base
= cns3xxx_pci_cfg_base(bus
, devfn
, where
);
104 return PCIBIOS_SUCCESSFUL
;
107 v
= __raw_readl(base
);
109 if (bus
->number
== 0 && devfn
== 0 &&
110 (where
& 0xffc) == PCI_CLASS_REVISION
) {
112 * RC's class is 0xb, but Linux PCI driver needs 0x604
113 * for a PCIe bridge. So we must fixup the class code
120 *val
= (v
>> shift
) & mask
;
122 return PCIBIOS_SUCCESSFUL
;
125 static int cns3xxx_pci_write_config(struct pci_bus
*bus
, unsigned int devfn
,
126 int where
, int size
, u32 val
)
130 u32 mask
= (0x1ull
<< (size
* 8)) - 1;
131 int shift
= (where
% 4) * 8;
133 base
= cns3xxx_pci_cfg_base(bus
, devfn
, where
);
135 return PCIBIOS_SUCCESSFUL
;
137 v
= __raw_readl(base
);
139 v
&= ~(mask
<< shift
);
140 v
|= (val
& mask
) << shift
;
142 __raw_writel(v
, base
);
144 return PCIBIOS_SUCCESSFUL
;
147 static int cns3xxx_pci_setup(int nr
, struct pci_sys_data
*sys
)
149 struct cns3xxx_pcie
*cnspci
= sysdata_to_cnspci(sys
);
150 struct resource
*res_io
= &cnspci
->res_io
;
151 struct resource
*res_mem
= &cnspci
->res_mem
;
153 BUG_ON(request_resource(&iomem_resource
, res_io
) ||
154 request_resource(&iomem_resource
, res_mem
));
156 pci_add_resource_offset(&sys
->resources
, res_io
, sys
->io_offset
);
157 pci_add_resource_offset(&sys
->resources
, res_mem
, sys
->mem_offset
);
162 static struct pci_ops cns3xxx_pcie_ops
= {
163 .read
= cns3xxx_pci_read_config
,
164 .write
= cns3xxx_pci_write_config
,
167 static int cns3xxx_pcie_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
169 struct cns3xxx_pcie
*cnspci
= pdev_to_cnspci(dev
);
170 int irq
= cnspci
->irqs
[slot
];
172 pr_info("PCIe map irq: %04d:%02x:%02x.%02x slot %d, pin %d, irq: %d\n",
173 pci_domain_nr(dev
->bus
), dev
->bus
->number
, PCI_SLOT(dev
->devfn
),
174 PCI_FUNC(dev
->devfn
), slot
, pin
, irq
);
179 static struct cns3xxx_pcie cns3xxx_pcie
[] = {
181 .host_regs
= (void __iomem
*)CNS3XXX_PCIE0_HOST_BASE_VIRT
,
182 .cfg0_regs
= (void __iomem
*)CNS3XXX_PCIE0_CFG0_BASE_VIRT
,
183 .cfg1_regs
= (void __iomem
*)CNS3XXX_PCIE0_CFG1_BASE_VIRT
,
185 .name
= "PCIe0 I/O space",
186 .start
= CNS3XXX_PCIE0_IO_BASE
,
187 .end
= CNS3XXX_PCIE0_CFG0_BASE
- 1, /* 16 MiB */
188 .flags
= IORESOURCE_IO
,
191 .name
= "PCIe0 non-prefetchable",
192 .start
= CNS3XXX_PCIE0_MEM_BASE
,
193 .end
= CNS3XXX_PCIE0_HOST_BASE
- 1, /* 176 MiB */
194 .flags
= IORESOURCE_MEM
,
196 .irqs
= { IRQ_CNS3XXX_PCIE0_RC
, IRQ_CNS3XXX_PCIE0_DEVICE
, },
200 .ops
= &cns3xxx_pcie_ops
,
201 .setup
= cns3xxx_pci_setup
,
202 .map_irq
= cns3xxx_pcie_map_irq
,
206 .host_regs
= (void __iomem
*)CNS3XXX_PCIE1_HOST_BASE_VIRT
,
207 .cfg0_regs
= (void __iomem
*)CNS3XXX_PCIE1_CFG0_BASE_VIRT
,
208 .cfg1_regs
= (void __iomem
*)CNS3XXX_PCIE1_CFG1_BASE_VIRT
,
210 .name
= "PCIe1 I/O space",
211 .start
= CNS3XXX_PCIE1_IO_BASE
,
212 .end
= CNS3XXX_PCIE1_CFG0_BASE
- 1, /* 16 MiB */
213 .flags
= IORESOURCE_IO
,
216 .name
= "PCIe1 non-prefetchable",
217 .start
= CNS3XXX_PCIE1_MEM_BASE
,
218 .end
= CNS3XXX_PCIE1_HOST_BASE
- 1, /* 176 MiB */
219 .flags
= IORESOURCE_MEM
,
221 .irqs
= { IRQ_CNS3XXX_PCIE1_RC
, IRQ_CNS3XXX_PCIE1_DEVICE
, },
225 .ops
= &cns3xxx_pcie_ops
,
226 .setup
= cns3xxx_pci_setup
,
227 .map_irq
= cns3xxx_pcie_map_irq
,
232 static void __init
cns3xxx_pcie_check_link(struct cns3xxx_pcie
*cnspci
)
234 int port
= cnspci
->hw_pci
.domain
;
238 reg
= __raw_readl(MISC_PCIE_CTRL(port
));
240 * Enable Application Request to 1, it will exit L1 automatically,
241 * but when chip back, it will use another clock, still can use 0x1.
244 __raw_writel(reg
, MISC_PCIE_CTRL(port
));
246 pr_info("PCIe: Port[%d] Enable PCIe LTSSM\n", port
);
247 pr_info("PCIe: Port[%d] Check data link layer...", port
);
251 reg
= __raw_readl(MISC_PCIE_PM_DEBUG(port
));
253 pr_info("Link up.\n");
256 } else if (time_after(jiffies
, time
+ 50)) {
257 pr_info("Device not found.\n");
263 static void __init
cns3xxx_pcie_hw_init(struct cns3xxx_pcie
*cnspci
)
265 int port
= cnspci
->hw_pci
.domain
;
266 struct pci_sys_data sd
= {
269 struct pci_bus bus
= {
271 .ops
= &cns3xxx_pcie_ops
,
274 u16 mem_base
= cnspci
->res_mem
.start
>> 16;
275 u16 mem_limit
= cnspci
->res_mem
.end
>> 16;
276 u16 io_base
= cnspci
->res_io
.start
>> 16;
277 u16 io_limit
= cnspci
->res_io
.end
>> 16;
283 pci_bus_write_config_byte(&bus
, devfn
, PCI_PRIMARY_BUS
, 0);
284 pci_bus_write_config_byte(&bus
, devfn
, PCI_SECONDARY_BUS
, 1);
285 pci_bus_write_config_byte(&bus
, devfn
, PCI_SUBORDINATE_BUS
, 1);
287 pci_bus_read_config_byte(&bus
, devfn
, PCI_PRIMARY_BUS
, &tmp8
);
288 pci_bus_read_config_byte(&bus
, devfn
, PCI_SECONDARY_BUS
, &tmp8
);
289 pci_bus_read_config_byte(&bus
, devfn
, PCI_SUBORDINATE_BUS
, &tmp8
);
291 pci_bus_write_config_word(&bus
, devfn
, PCI_MEMORY_BASE
, mem_base
);
292 pci_bus_write_config_word(&bus
, devfn
, PCI_MEMORY_LIMIT
, mem_limit
);
293 pci_bus_write_config_word(&bus
, devfn
, PCI_IO_BASE_UPPER16
, io_base
);
294 pci_bus_write_config_word(&bus
, devfn
, PCI_IO_LIMIT_UPPER16
, io_limit
);
299 /* Set Device Max_Read_Request_Size to 128 byte */
300 devfn
= PCI_DEVFN(1, 0);
301 pos
= pci_bus_find_capability(&bus
, devfn
, PCI_CAP_ID_EXP
);
302 pci_bus_read_config_word(&bus
, devfn
, pos
+ PCI_EXP_DEVCTL
, &dc
);
303 dc
&= ~(0x3 << 12); /* Clear Device Control Register [14:12] */
304 pci_bus_write_config_word(&bus
, devfn
, pos
+ PCI_EXP_DEVCTL
, dc
);
305 pci_bus_read_config_word(&bus
, devfn
, pos
+ PCI_EXP_DEVCTL
, &dc
);
306 if (!(dc
& (0x3 << 12)))
307 pr_info("PCIe: Set Device Max_Read_Request_Size to 128 byte\n");
309 /* Disable PCIe0 Interrupt Mask INTA to INTD */
310 __raw_writel(~0x3FFF, MISC_PCIE_INT_MASK(port
));
313 static int cns3xxx_pcie_abort_handler(unsigned long addr
, unsigned int fsr
,
314 struct pt_regs
*regs
)
321 static int __init
cns3xxx_pcie_init(void)
328 hook_fault_code(16 + 6, cns3xxx_pcie_abort_handler
, SIGBUS
, 0,
329 "imprecise external abort");
331 for (i
= 0; i
< ARRAY_SIZE(cns3xxx_pcie
); i
++) {
332 cns3xxx_pwr_clk_en(0x1 << PM_CLK_GATE_REG_OFFSET_PCIE(i
));
333 cns3xxx_pwr_soft_rst(0x1 << PM_SOFT_RST_REG_OFFST_PCIE(i
));
334 cns3xxx_pcie_check_link(&cns3xxx_pcie
[i
]);
335 cns3xxx_pcie_hw_init(&cns3xxx_pcie
[i
]);
336 pci_common_init(&cns3xxx_pcie
[i
].hw_pci
);
339 pci_assign_unassigned_resources();
343 device_initcall(cns3xxx_pcie_init
);