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>
23 #include <mach/cns3xxx.h>
26 enum cns3xxx_access_type
{
27 CNS3XXX_HOST_TYPE
= 0,
30 CNS3XXX_NUM_ACCESS_TYPES
,
34 struct map_desc cfg_bases
[CNS3XXX_NUM_ACCESS_TYPES
];
36 struct resource res_io
;
37 struct resource res_mem
;
43 static struct cns3xxx_pcie cns3xxx_pcie
[]; /* forward decl. */
45 static struct cns3xxx_pcie
*sysdata_to_cnspci(void *sysdata
)
47 struct pci_sys_data
*root
= sysdata
;
49 return &cns3xxx_pcie
[root
->domain
];
52 static struct cns3xxx_pcie
*pdev_to_cnspci(struct pci_dev
*dev
)
54 return sysdata_to_cnspci(dev
->sysdata
);
57 static struct cns3xxx_pcie
*pbus_to_cnspci(struct pci_bus
*bus
)
59 return sysdata_to_cnspci(bus
->sysdata
);
62 static void __iomem
*cns3xxx_pci_cfg_base(struct pci_bus
*bus
,
63 unsigned int devfn
, int where
)
65 struct cns3xxx_pcie
*cnspci
= pbus_to_cnspci(bus
);
66 int busno
= bus
->number
;
67 int slot
= PCI_SLOT(devfn
);
69 enum cns3xxx_access_type type
;
72 /* If there is no link, just show the CNS PCI bridge. */
73 if (!cnspci
->linked
&& (busno
> 0 || slot
> 0))
77 * The CNS PCI bridge doesn't fit into the PCI hierarchy, though
78 * we still want to access it. For this to work, we must place
79 * the first device on the same bus as the CNS PCI bridge.
86 type
= CNS3XXX_CFG1_TYPE
;
89 base
= (void __iomem
*)cnspci
->cfg_bases
[type
].virtual;
90 offset
= ((busno
& 0xf) << 20) | (devfn
<< 12) | (where
& 0xffc);
95 static int cns3xxx_pci_read_config(struct pci_bus
*bus
, unsigned int devfn
,
96 int where
, int size
, u32
*val
)
100 u32 mask
= (0x1ull
<< (size
* 8)) - 1;
101 int shift
= (where
% 4) * 8;
103 base
= cns3xxx_pci_cfg_base(bus
, devfn
, where
);
106 return PCIBIOS_SUCCESSFUL
;
109 v
= __raw_readl(base
);
111 if (bus
->number
== 0 && devfn
== 0 &&
112 (where
& 0xffc) == PCI_CLASS_REVISION
) {
114 * RC's class is 0xb, but Linux PCI driver needs 0x604
115 * for a PCIe bridge. So we must fixup the class code
122 *val
= (v
>> shift
) & mask
;
124 return PCIBIOS_SUCCESSFUL
;
127 static int cns3xxx_pci_write_config(struct pci_bus
*bus
, unsigned int devfn
,
128 int where
, int size
, u32 val
)
132 u32 mask
= (0x1ull
<< (size
* 8)) - 1;
133 int shift
= (where
% 4) * 8;
135 base
= cns3xxx_pci_cfg_base(bus
, devfn
, where
);
137 return PCIBIOS_SUCCESSFUL
;
139 v
= __raw_readl(base
);
141 v
&= ~(mask
<< shift
);
142 v
|= (val
& mask
) << shift
;
144 __raw_writel(v
, base
);
146 return PCIBIOS_SUCCESSFUL
;
149 static int cns3xxx_pci_setup(int nr
, struct pci_sys_data
*sys
)
151 struct cns3xxx_pcie
*cnspci
= sysdata_to_cnspci(sys
);
152 struct resource
*res_io
= &cnspci
->res_io
;
153 struct resource
*res_mem
= &cnspci
->res_mem
;
154 struct resource
**sysres
= sys
->resource
;
156 BUG_ON(request_resource(&iomem_resource
, res_io
) ||
157 request_resource(&iomem_resource
, res_mem
));
165 static struct pci_ops cns3xxx_pcie_ops
= {
166 .read
= cns3xxx_pci_read_config
,
167 .write
= cns3xxx_pci_write_config
,
170 static struct pci_bus
*cns3xxx_pci_scan_bus(int nr
, struct pci_sys_data
*sys
)
172 return pci_scan_bus(sys
->busnr
, &cns3xxx_pcie_ops
, sys
);
175 static int cns3xxx_pcie_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
177 struct cns3xxx_pcie
*cnspci
= pdev_to_cnspci(dev
);
178 int irq
= cnspci
->irqs
[slot
];
180 pr_info("PCIe map irq: %04d:%02x:%02x.%02x slot %d, pin %d, irq: %d\n",
181 pci_domain_nr(dev
->bus
), dev
->bus
->number
, PCI_SLOT(dev
->devfn
),
182 PCI_FUNC(dev
->devfn
), slot
, pin
, irq
);
187 static struct cns3xxx_pcie cns3xxx_pcie
[] = {
190 [CNS3XXX_HOST_TYPE
] = {
191 .virtual = CNS3XXX_PCIE0_HOST_BASE_VIRT
,
192 .pfn
= __phys_to_pfn(CNS3XXX_PCIE0_HOST_BASE
),
196 [CNS3XXX_CFG0_TYPE
] = {
197 .virtual = CNS3XXX_PCIE0_CFG0_BASE_VIRT
,
198 .pfn
= __phys_to_pfn(CNS3XXX_PCIE0_CFG0_BASE
),
202 [CNS3XXX_CFG1_TYPE
] = {
203 .virtual = CNS3XXX_PCIE0_CFG1_BASE_VIRT
,
204 .pfn
= __phys_to_pfn(CNS3XXX_PCIE0_CFG1_BASE
),
210 .name
= "PCIe0 I/O space",
211 .start
= CNS3XXX_PCIE0_IO_BASE
,
212 .end
= CNS3XXX_PCIE0_IO_BASE
+ SZ_16M
- 1,
213 .flags
= IORESOURCE_IO
,
216 .name
= "PCIe0 non-prefetchable",
217 .start
= CNS3XXX_PCIE0_MEM_BASE
,
218 .end
= CNS3XXX_PCIE0_MEM_BASE
+ SZ_16M
- 1,
219 .flags
= IORESOURCE_MEM
,
221 .irqs
= { IRQ_CNS3XXX_PCIE0_RC
, IRQ_CNS3XXX_PCIE0_DEVICE
, },
224 .swizzle
= pci_std_swizzle
,
226 .setup
= cns3xxx_pci_setup
,
227 .scan
= cns3xxx_pci_scan_bus
,
228 .map_irq
= cns3xxx_pcie_map_irq
,
233 [CNS3XXX_HOST_TYPE
] = {
234 .virtual = CNS3XXX_PCIE1_HOST_BASE_VIRT
,
235 .pfn
= __phys_to_pfn(CNS3XXX_PCIE1_HOST_BASE
),
239 [CNS3XXX_CFG0_TYPE
] = {
240 .virtual = CNS3XXX_PCIE1_CFG0_BASE_VIRT
,
241 .pfn
= __phys_to_pfn(CNS3XXX_PCIE1_CFG0_BASE
),
245 [CNS3XXX_CFG1_TYPE
] = {
246 .virtual = CNS3XXX_PCIE1_CFG1_BASE_VIRT
,
247 .pfn
= __phys_to_pfn(CNS3XXX_PCIE1_CFG1_BASE
),
253 .name
= "PCIe1 I/O space",
254 .start
= CNS3XXX_PCIE1_IO_BASE
,
255 .end
= CNS3XXX_PCIE1_IO_BASE
+ SZ_16M
- 1,
256 .flags
= IORESOURCE_IO
,
259 .name
= "PCIe1 non-prefetchable",
260 .start
= CNS3XXX_PCIE1_MEM_BASE
,
261 .end
= CNS3XXX_PCIE1_MEM_BASE
+ SZ_16M
- 1,
262 .flags
= IORESOURCE_MEM
,
264 .irqs
= { IRQ_CNS3XXX_PCIE1_RC
, IRQ_CNS3XXX_PCIE1_DEVICE
, },
267 .swizzle
= pci_std_swizzle
,
269 .setup
= cns3xxx_pci_setup
,
270 .scan
= cns3xxx_pci_scan_bus
,
271 .map_irq
= cns3xxx_pcie_map_irq
,
276 static void __init
cns3xxx_pcie_check_link(struct cns3xxx_pcie
*cnspci
)
278 int port
= cnspci
->hw_pci
.domain
;
282 reg
= __raw_readl(MISC_PCIE_CTRL(port
));
284 * Enable Application Request to 1, it will exit L1 automatically,
285 * but when chip back, it will use another clock, still can use 0x1.
288 __raw_writel(reg
, MISC_PCIE_CTRL(port
));
290 pr_info("PCIe: Port[%d] Enable PCIe LTSSM\n", port
);
291 pr_info("PCIe: Port[%d] Check data link layer...", port
);
295 reg
= __raw_readl(MISC_PCIE_PM_DEBUG(port
));
297 pr_info("Link up.\n");
300 } else if (time_after(jiffies
, time
+ 50)) {
301 pr_info("Device not found.\n");
307 static void __init
cns3xxx_pcie_hw_init(struct cns3xxx_pcie
*cnspci
)
309 int port
= cnspci
->hw_pci
.domain
;
310 struct pci_sys_data sd
= {
313 struct pci_bus bus
= {
315 .ops
= &cns3xxx_pcie_ops
,
318 u32 io_base
= cnspci
->res_io
.start
>> 16;
319 u32 mem_base
= cnspci
->res_mem
.start
>> 16;
320 u32 host_base
= cnspci
->cfg_bases
[CNS3XXX_HOST_TYPE
].pfn
;
321 u32 cfg0_base
= cnspci
->cfg_bases
[CNS3XXX_CFG0_TYPE
].pfn
;
327 host_base
= (__pfn_to_phys(host_base
) - 1) >> 16;
328 cfg0_base
= (__pfn_to_phys(cfg0_base
) - 1) >> 16;
330 pci_bus_write_config_byte(&bus
, devfn
, PCI_PRIMARY_BUS
, 0);
331 pci_bus_write_config_byte(&bus
, devfn
, PCI_SECONDARY_BUS
, 1);
332 pci_bus_write_config_byte(&bus
, devfn
, PCI_SUBORDINATE_BUS
, 1);
334 pci_bus_read_config_byte(&bus
, devfn
, PCI_PRIMARY_BUS
, &tmp8
);
335 pci_bus_read_config_byte(&bus
, devfn
, PCI_SECONDARY_BUS
, &tmp8
);
336 pci_bus_read_config_byte(&bus
, devfn
, PCI_SUBORDINATE_BUS
, &tmp8
);
338 pci_bus_write_config_word(&bus
, devfn
, PCI_MEMORY_BASE
, mem_base
);
339 pci_bus_write_config_word(&bus
, devfn
, PCI_MEMORY_LIMIT
, host_base
);
340 pci_bus_write_config_word(&bus
, devfn
, PCI_IO_BASE_UPPER16
, io_base
);
341 pci_bus_write_config_word(&bus
, devfn
, PCI_IO_LIMIT_UPPER16
, cfg0_base
);
346 /* Set Device Max_Read_Request_Size to 128 byte */
347 devfn
= PCI_DEVFN(1, 0);
348 pos
= pci_bus_find_capability(&bus
, devfn
, PCI_CAP_ID_EXP
);
349 pci_bus_read_config_word(&bus
, devfn
, pos
+ PCI_EXP_DEVCTL
, &dc
);
350 dc
&= ~(0x3 << 12); /* Clear Device Control Register [14:12] */
351 pci_bus_write_config_word(&bus
, devfn
, pos
+ PCI_EXP_DEVCTL
, dc
);
352 pci_bus_read_config_word(&bus
, devfn
, pos
+ PCI_EXP_DEVCTL
, &dc
);
353 if (!(dc
& (0x3 << 12)))
354 pr_info("PCIe: Set Device Max_Read_Request_Size to 128 byte\n");
356 /* Disable PCIe0 Interrupt Mask INTA to INTD */
357 __raw_writel(~0x3FFF, MISC_PCIE_INT_MASK(port
));
360 static int cns3xxx_pcie_abort_handler(unsigned long addr
, unsigned int fsr
,
361 struct pt_regs
*regs
)
368 static int __init
cns3xxx_pcie_init(void)
372 hook_fault_code(16 + 6, cns3xxx_pcie_abort_handler
, SIGBUS
,
373 "imprecise external abort");
375 for (i
= 0; i
< ARRAY_SIZE(cns3xxx_pcie
); i
++) {
376 iotable_init(cns3xxx_pcie
[i
].cfg_bases
,
377 ARRAY_SIZE(cns3xxx_pcie
[i
].cfg_bases
));
378 cns3xxx_pwr_clk_en(0x1 << PM_CLK_GATE_REG_OFFSET_PCIE(i
));
379 cns3xxx_pwr_soft_rst(0x1 << PM_SOFT_RST_REG_OFFST_PCIE(i
));
380 cns3xxx_pcie_check_link(&cns3xxx_pcie
[i
]);
381 cns3xxx_pcie_hw_init(&cns3xxx_pcie
[i
]);
382 pci_common_init(&cns3xxx_pcie
[i
].hw_pci
);
385 pci_assign_unassigned_resources();
389 device_initcall(cns3xxx_pcie_init
);