2 * Ralink RT3662/RT3883 SoC PCI support
4 * Copyright (C) 2011-2013 Gabor Juhos <juhosg@openwrt.org>
6 * Parts of this file are based on Ralink's 2.6.21 BSP
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
13 #include <linux/types.h>
14 #include <linux/pci.h>
16 #include <linux/init.h>
17 #include <linux/delay.h>
18 #include <linux/interrupt.h>
19 #include <linux/module.h>
21 #include <linux/of_irq.h>
22 #include <linux/of_pci.h>
23 #include <linux/platform_device.h>
25 #include <asm/mach-ralink/rt3883.h>
26 #include <asm/mach-ralink/ralink_regs.h>
28 #define RT3883_MEMORY_BASE 0x00000000
29 #define RT3883_MEMORY_SIZE 0x02000000
31 #define RT3883_PCI_REG_PCICFG 0x00
32 #define RT3883_PCICFG_P2P_BR_DEVNUM_M 0xf
33 #define RT3883_PCICFG_P2P_BR_DEVNUM_S 16
34 #define RT3883_PCICFG_PCIRST BIT(1)
35 #define RT3883_PCI_REG_PCIRAW 0x04
36 #define RT3883_PCI_REG_PCIINT 0x08
37 #define RT3883_PCI_REG_PCIENA 0x0c
39 #define RT3883_PCI_REG_CFGADDR 0x20
40 #define RT3883_PCI_REG_CFGDATA 0x24
41 #define RT3883_PCI_REG_MEMBASE 0x28
42 #define RT3883_PCI_REG_IOBASE 0x2c
43 #define RT3883_PCI_REG_ARBCTL 0x80
45 #define RT3883_PCI_REG_BASE(_x) (0x1000 + (_x) * 0x1000)
46 #define RT3883_PCI_REG_BAR0SETUP(_x) (RT3883_PCI_REG_BASE((_x)) + 0x10)
47 #define RT3883_PCI_REG_IMBASEBAR0(_x) (RT3883_PCI_REG_BASE((_x)) + 0x18)
48 #define RT3883_PCI_REG_ID(_x) (RT3883_PCI_REG_BASE((_x)) + 0x30)
49 #define RT3883_PCI_REG_CLASS(_x) (RT3883_PCI_REG_BASE((_x)) + 0x34)
50 #define RT3883_PCI_REG_SUBID(_x) (RT3883_PCI_REG_BASE((_x)) + 0x38)
51 #define RT3883_PCI_REG_STATUS(_x) (RT3883_PCI_REG_BASE((_x)) + 0x50)
53 #define RT3883_PCI_MODE_NONE 0
54 #define RT3883_PCI_MODE_PCI BIT(0)
55 #define RT3883_PCI_MODE_PCIE BIT(1)
56 #define RT3883_PCI_MODE_BOTH (RT3883_PCI_MODE_PCI | RT3883_PCI_MODE_PCIE)
58 #define RT3883_PCI_IRQ_COUNT 32
60 #define RT3883_P2P_BR_DEVNUM 1
62 struct rt3883_pci_controller
{
65 struct device_node
*intc_of_node
;
66 struct irq_domain
*irq_domain
;
68 struct pci_controller pci_controller
;
69 struct resource io_res
;
70 struct resource mem_res
;
75 static inline struct rt3883_pci_controller
*
76 pci_bus_to_rt3883_controller(struct pci_bus
*bus
)
78 struct pci_controller
*hose
;
80 hose
= (struct pci_controller
*) bus
->sysdata
;
81 return container_of(hose
, struct rt3883_pci_controller
, pci_controller
);
84 static inline u32
rt3883_pci_r32(struct rt3883_pci_controller
*rpc
,
87 return ioread32(rpc
->base
+ reg
);
90 static inline void rt3883_pci_w32(struct rt3883_pci_controller
*rpc
,
91 u32 val
, unsigned reg
)
93 iowrite32(val
, rpc
->base
+ reg
);
96 static inline u32
rt3883_pci_get_cfgaddr(unsigned int bus
, unsigned int slot
,
97 unsigned int func
, unsigned int where
)
99 return (bus
<< 16) | (slot
<< 11) | (func
<< 8) | (where
& 0xfc) |
103 static u32
rt3883_pci_read_cfg32(struct rt3883_pci_controller
*rpc
,
104 unsigned bus
, unsigned slot
,
105 unsigned func
, unsigned reg
)
111 address
= rt3883_pci_get_cfgaddr(bus
, slot
, func
, reg
);
113 rt3883_pci_w32(rpc
, address
, RT3883_PCI_REG_CFGADDR
);
114 ret
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_CFGDATA
);
119 static void rt3883_pci_write_cfg32(struct rt3883_pci_controller
*rpc
,
120 unsigned bus
, unsigned slot
,
121 unsigned func
, unsigned reg
, u32 val
)
126 address
= rt3883_pci_get_cfgaddr(bus
, slot
, func
, reg
);
128 rt3883_pci_w32(rpc
, address
, RT3883_PCI_REG_CFGADDR
);
129 rt3883_pci_w32(rpc
, val
, RT3883_PCI_REG_CFGDATA
);
132 static void rt3883_pci_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
134 struct rt3883_pci_controller
*rpc
;
137 rpc
= irq_get_handler_data(irq
);
139 pending
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCIINT
) &
140 rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCIENA
);
143 spurious_interrupt();
148 unsigned bit
= __ffs(pending
);
150 irq
= irq_find_mapping(rpc
->irq_domain
, bit
);
151 generic_handle_irq(irq
);
153 pending
&= ~BIT(bit
);
157 static void rt3883_pci_irq_unmask(struct irq_data
*d
)
159 struct rt3883_pci_controller
*rpc
;
162 rpc
= irq_data_get_irq_chip_data(d
);
164 t
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCIENA
);
165 rt3883_pci_w32(rpc
, t
| BIT(d
->hwirq
), RT3883_PCI_REG_PCIENA
);
167 rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCIENA
);
170 static void rt3883_pci_irq_mask(struct irq_data
*d
)
172 struct rt3883_pci_controller
*rpc
;
175 rpc
= irq_data_get_irq_chip_data(d
);
177 t
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCIENA
);
178 rt3883_pci_w32(rpc
, t
& ~BIT(d
->hwirq
), RT3883_PCI_REG_PCIENA
);
180 rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCIENA
);
183 static struct irq_chip rt3883_pci_irq_chip
= {
184 .name
= "RT3883 PCI",
185 .irq_mask
= rt3883_pci_irq_mask
,
186 .irq_unmask
= rt3883_pci_irq_unmask
,
187 .irq_mask_ack
= rt3883_pci_irq_mask
,
190 static int rt3883_pci_irq_map(struct irq_domain
*d
, unsigned int irq
,
193 irq_set_chip_and_handler(irq
, &rt3883_pci_irq_chip
, handle_level_irq
);
194 irq_set_chip_data(irq
, d
->host_data
);
199 static const struct irq_domain_ops rt3883_pci_irq_domain_ops
= {
200 .map
= rt3883_pci_irq_map
,
201 .xlate
= irq_domain_xlate_onecell
,
204 static int rt3883_pci_irq_init(struct device
*dev
,
205 struct rt3883_pci_controller
*rpc
)
209 irq
= irq_of_parse_and_map(rpc
->intc_of_node
, 0);
211 dev_err(dev
, "%s has no IRQ",
212 of_node_full_name(rpc
->intc_of_node
));
216 /* disable all interrupts */
217 rt3883_pci_w32(rpc
, 0, RT3883_PCI_REG_PCIENA
);
220 irq_domain_add_linear(rpc
->intc_of_node
, RT3883_PCI_IRQ_COUNT
,
221 &rt3883_pci_irq_domain_ops
,
223 if (!rpc
->irq_domain
) {
224 dev_err(dev
, "unable to add IRQ domain\n");
228 irq_set_handler_data(irq
, rpc
);
229 irq_set_chained_handler(irq
, rt3883_pci_irq_handler
);
234 static int rt3883_pci_config_read(struct pci_bus
*bus
, unsigned int devfn
,
235 int where
, int size
, u32
*val
)
237 struct rt3883_pci_controller
*rpc
;
242 rpc
= pci_bus_to_rt3883_controller(bus
);
244 if (!rpc
->pcie_ready
&& bus
->number
== 1)
245 return PCIBIOS_DEVICE_NOT_FOUND
;
247 address
= rt3883_pci_get_cfgaddr(bus
->number
, PCI_SLOT(devfn
),
248 PCI_FUNC(devfn
), where
);
250 rt3883_pci_w32(rpc
, address
, RT3883_PCI_REG_CFGADDR
);
251 data
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_CFGDATA
);
255 *val
= (data
>> ((where
& 3) << 3)) & 0xff;
258 *val
= (data
>> ((where
& 3) << 3)) & 0xffff;
265 return PCIBIOS_SUCCESSFUL
;
268 static int rt3883_pci_config_write(struct pci_bus
*bus
, unsigned int devfn
,
269 int where
, int size
, u32 val
)
271 struct rt3883_pci_controller
*rpc
;
276 rpc
= pci_bus_to_rt3883_controller(bus
);
278 if (!rpc
->pcie_ready
&& bus
->number
== 1)
279 return PCIBIOS_DEVICE_NOT_FOUND
;
281 address
= rt3883_pci_get_cfgaddr(bus
->number
, PCI_SLOT(devfn
),
282 PCI_FUNC(devfn
), where
);
284 rt3883_pci_w32(rpc
, address
, RT3883_PCI_REG_CFGADDR
);
285 data
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_CFGDATA
);
289 data
= (data
& ~(0xff << ((where
& 3) << 3))) |
290 (val
<< ((where
& 3) << 3));
293 data
= (data
& ~(0xffff << ((where
& 3) << 3))) |
294 (val
<< ((where
& 3) << 3));
301 rt3883_pci_w32(rpc
, data
, RT3883_PCI_REG_CFGDATA
);
303 return PCIBIOS_SUCCESSFUL
;
306 static struct pci_ops rt3883_pci_ops
= {
307 .read
= rt3883_pci_config_read
,
308 .write
= rt3883_pci_config_write
,
311 static void rt3883_pci_preinit(struct rt3883_pci_controller
*rpc
, unsigned mode
)
318 rstctrl
= rt_sysc_r32(RT3883_SYSC_REG_RSTCTRL
);
319 syscfg1
= rt_sysc_r32(RT3883_SYSC_REG_SYSCFG1
);
320 clkcfg1
= rt_sysc_r32(RT3883_SYSC_REG_CLKCFG1
);
322 if (mode
& RT3883_PCI_MODE_PCIE
) {
323 rstctrl
|= RT3883_RSTCTRL_PCIE
;
324 rt_sysc_w32(rstctrl
, RT3883_SYSC_REG_RSTCTRL
);
326 /* setup PCI PAD drive mode */
329 rt_sysc_w32(syscfg1
, RT3883_SYSC_REG_SYSCFG1
);
331 t
= rt_sysc_r32(RT3883_SYSC_REG_PCIE_CLK_GEN0
);
333 rt_sysc_w32(t
, RT3883_SYSC_REG_PCIE_CLK_GEN0
);
335 t
= rt_sysc_r32(RT3883_SYSC_REG_PCIE_CLK_GEN1
);
337 rt_sysc_w32(t
, RT3883_SYSC_REG_PCIE_CLK_GEN1
);
339 t
= rt_sysc_r32(RT3883_SYSC_REG_PCIE_CLK_GEN1
);
341 rt_sysc_w32(t
, RT3883_SYSC_REG_PCIE_CLK_GEN1
);
343 t
= rt_sysc_r32(RT3883_SYSC_REG_PCIE_CLK_GEN0
);
345 rt_sysc_w32(t
, RT3883_SYSC_REG_PCIE_CLK_GEN0
);
349 rstctrl
&= ~RT3883_RSTCTRL_PCIE
;
350 rt_sysc_w32(rstctrl
, RT3883_SYSC_REG_RSTCTRL
);
353 syscfg1
|= (RT3883_SYSCFG1_PCIE_RC_MODE
| RT3883_SYSCFG1_PCI_HOST_MODE
);
355 clkcfg1
&= ~(RT3883_CLKCFG1_PCI_CLK_EN
| RT3883_CLKCFG1_PCIE_CLK_EN
);
357 if (mode
& RT3883_PCI_MODE_PCI
) {
358 clkcfg1
|= RT3883_CLKCFG1_PCI_CLK_EN
;
359 rstctrl
&= ~RT3883_RSTCTRL_PCI
;
362 if (mode
& RT3883_PCI_MODE_PCIE
) {
363 clkcfg1
|= RT3883_CLKCFG1_PCIE_CLK_EN
;
364 rstctrl
&= ~RT3883_RSTCTRL_PCIE
;
367 rt_sysc_w32(syscfg1
, RT3883_SYSC_REG_SYSCFG1
);
368 rt_sysc_w32(rstctrl
, RT3883_SYSC_REG_RSTCTRL
);
369 rt_sysc_w32(clkcfg1
, RT3883_SYSC_REG_CLKCFG1
);
374 * setup the device number of the P2P bridge
375 * and de-assert the reset line
377 t
= (RT3883_P2P_BR_DEVNUM
<< RT3883_PCICFG_P2P_BR_DEVNUM_S
);
378 rt3883_pci_w32(rpc
, t
, RT3883_PCI_REG_PCICFG
);
381 rt3883_pci_r32(rpc
, RT3883_PCI_REG_PCICFG
);
384 if (mode
& RT3883_PCI_MODE_PCIE
) {
387 t
= rt3883_pci_r32(rpc
, RT3883_PCI_REG_STATUS(1));
389 rpc
->pcie_ready
= t
& BIT(0);
391 if (!rpc
->pcie_ready
) {
392 /* reset the PCIe block */
393 t
= rt_sysc_r32(RT3883_SYSC_REG_RSTCTRL
);
394 t
|= RT3883_RSTCTRL_PCIE
;
395 rt_sysc_w32(t
, RT3883_SYSC_REG_RSTCTRL
);
396 t
&= ~RT3883_RSTCTRL_PCIE
;
397 rt_sysc_w32(t
, RT3883_SYSC_REG_RSTCTRL
);
399 /* turn off PCIe clock */
400 t
= rt_sysc_r32(RT3883_SYSC_REG_CLKCFG1
);
401 t
&= ~RT3883_CLKCFG1_PCIE_CLK_EN
;
402 rt_sysc_w32(t
, RT3883_SYSC_REG_CLKCFG1
);
404 t
= rt_sysc_r32(RT3883_SYSC_REG_PCIE_CLK_GEN0
);
406 rt_sysc_w32(t
, RT3883_SYSC_REG_PCIE_CLK_GEN0
);
410 /* enable PCI arbiter */
411 rt3883_pci_w32(rpc
, 0x79, RT3883_PCI_REG_ARBCTL
);
414 static int rt3883_pci_probe(struct platform_device
*pdev
)
416 struct rt3883_pci_controller
*rpc
;
417 struct device
*dev
= &pdev
->dev
;
418 struct device_node
*np
= dev
->of_node
;
419 struct resource
*res
;
420 struct device_node
*child
;
425 rpc
= devm_kzalloc(dev
, sizeof(*rpc
), GFP_KERNEL
);
429 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
430 rpc
->base
= devm_ioremap_resource(dev
, res
);
431 if (IS_ERR(rpc
->base
))
432 return PTR_ERR(rpc
->base
);
434 /* find the interrupt controller child node */
435 for_each_child_of_node(np
, child
) {
436 if (of_get_property(child
, "interrupt-controller", NULL
) &&
437 of_node_get(child
)) {
438 rpc
->intc_of_node
= child
;
443 if (!rpc
->intc_of_node
) {
444 dev_err(dev
, "%s has no %s child node",
445 of_node_full_name(rpc
->intc_of_node
),
446 "interrupt controller");
450 /* find the PCI host bridge child node */
451 for_each_child_of_node(np
, child
) {
453 of_node_cmp(child
->type
, "pci") == 0 &&
454 of_node_get(child
)) {
455 rpc
->pci_controller
.of_node
= child
;
460 if (!rpc
->pci_controller
.of_node
) {
461 dev_err(dev
, "%s has no %s child node",
462 of_node_full_name(rpc
->intc_of_node
),
465 goto err_put_intc_node
;
468 mode
= RT3883_PCI_MODE_NONE
;
469 for_each_available_child_of_node(rpc
->pci_controller
.of_node
, child
) {
473 of_node_cmp(child
->type
, "pci") != 0)
476 devfn
= of_pci_get_devfn(child
);
480 switch (PCI_SLOT(devfn
)) {
482 mode
|= RT3883_PCI_MODE_PCIE
;
487 mode
|= RT3883_PCI_MODE_PCI
;
492 if (mode
== RT3883_PCI_MODE_NONE
) {
493 dev_err(dev
, "unable to determine PCI mode\n");
495 goto err_put_hb_node
;
498 dev_info(dev
, "mode:%s%s\n",
499 (mode
& RT3883_PCI_MODE_PCI
) ? " PCI" : "",
500 (mode
& RT3883_PCI_MODE_PCIE
) ? " PCIe" : "");
502 rt3883_pci_preinit(rpc
, mode
);
504 rpc
->pci_controller
.pci_ops
= &rt3883_pci_ops
;
505 rpc
->pci_controller
.io_resource
= &rpc
->io_res
;
506 rpc
->pci_controller
.mem_resource
= &rpc
->mem_res
;
508 /* Load PCI I/O and memory resources from DT */
509 pci_load_of_ranges(&rpc
->pci_controller
,
510 rpc
->pci_controller
.of_node
);
512 rt3883_pci_w32(rpc
, rpc
->mem_res
.start
, RT3883_PCI_REG_MEMBASE
);
513 rt3883_pci_w32(rpc
, rpc
->io_res
.start
, RT3883_PCI_REG_IOBASE
);
515 ioport_resource
.start
= rpc
->io_res
.start
;
516 ioport_resource
.end
= rpc
->io_res
.end
;
519 rt3883_pci_w32(rpc
, 0x03ff0000, RT3883_PCI_REG_BAR0SETUP(0));
520 rt3883_pci_w32(rpc
, RT3883_MEMORY_BASE
, RT3883_PCI_REG_IMBASEBAR0(0));
521 rt3883_pci_w32(rpc
, 0x08021814, RT3883_PCI_REG_ID(0));
522 rt3883_pci_w32(rpc
, 0x00800001, RT3883_PCI_REG_CLASS(0));
523 rt3883_pci_w32(rpc
, 0x28801814, RT3883_PCI_REG_SUBID(0));
526 rt3883_pci_w32(rpc
, 0x03ff0000, RT3883_PCI_REG_BAR0SETUP(1));
527 rt3883_pci_w32(rpc
, RT3883_MEMORY_BASE
, RT3883_PCI_REG_IMBASEBAR0(1));
528 rt3883_pci_w32(rpc
, 0x08021814, RT3883_PCI_REG_ID(1));
529 rt3883_pci_w32(rpc
, 0x06040001, RT3883_PCI_REG_CLASS(1));
530 rt3883_pci_w32(rpc
, 0x28801814, RT3883_PCI_REG_SUBID(1));
532 err
= rt3883_pci_irq_init(dev
, rpc
);
534 goto err_put_hb_node
;
537 val
= rt3883_pci_read_cfg32(rpc
, 0, 0x01, 0, PCI_COMMAND
);
538 val
|= PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
;
539 rt3883_pci_write_cfg32(rpc
, 0, 0x01, 0, PCI_COMMAND
, val
);
542 val
= rt3883_pci_read_cfg32(rpc
, 0, 0x00, 0, PCI_COMMAND
);
543 val
|= PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
;
544 rt3883_pci_write_cfg32(rpc
, 0, 0x00, 0, PCI_COMMAND
, val
);
546 if (mode
== RT3883_PCI_MODE_PCIE
) {
547 rt3883_pci_w32(rpc
, 0x03ff0001, RT3883_PCI_REG_BAR0SETUP(0));
548 rt3883_pci_w32(rpc
, 0x03ff0001, RT3883_PCI_REG_BAR0SETUP(1));
550 rt3883_pci_write_cfg32(rpc
, 0, RT3883_P2P_BR_DEVNUM
, 0,
554 rt3883_pci_read_cfg32(rpc
, 0, RT3883_P2P_BR_DEVNUM
, 0,
557 rt3883_pci_write_cfg32(rpc
, 0, RT3883_P2P_BR_DEVNUM
, 0,
558 PCI_IO_BASE
, 0x00000101);
561 register_pci_controller(&rpc
->pci_controller
);
566 of_node_put(rpc
->pci_controller
.of_node
);
568 of_node_put(rpc
->intc_of_node
);
572 int __init
pcibios_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
574 return of_irq_parse_and_map_pci(dev
, slot
, pin
);
577 int pcibios_plat_dev_init(struct pci_dev
*dev
)
582 static const struct of_device_id rt3883_pci_ids
[] = {
583 { .compatible
= "ralink,rt3883-pci" },
586 MODULE_DEVICE_TABLE(of
, rt3883_pci_ids
);
588 static struct platform_driver rt3883_pci_driver
= {
589 .probe
= rt3883_pci_probe
,
591 .name
= "rt3883-pci",
592 .of_match_table
= of_match_ptr(rt3883_pci_ids
),
596 static int __init
rt3883_pci_init(void)
598 return platform_driver_register(&rt3883_pci_driver
);
601 postcore_initcall(rt3883_pci_init
);