2 * arch/arm/mach-dove/pcie.c
4 * PCIe functions for Marvell Dove 88AP510 SoC
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/kernel.h>
12 #include <linux/pci.h>
13 #include <linux/clk.h>
14 #include <video/vga.h>
15 #include <asm/mach/pci.h>
16 #include <asm/mach/arch.h>
17 #include <asm/setup.h>
18 #include <asm/delay.h>
19 #include <plat/pcie.h>
20 #include <mach/irqs.h>
21 #include <mach/bridge-regs.h>
22 #include <plat/addr-map.h>
30 char mem_space_name
[16];
34 static struct pcie_port pcie_port
[2];
35 static int num_pcie_ports
;
38 static int __init
dove_pcie_setup(int nr
, struct pci_sys_data
*sys
)
42 if (nr
>= num_pcie_ports
)
46 sys
->private_data
= pp
;
47 pp
->root_bus_nr
= sys
->busnr
;
50 * Generic PCIe unit setup.
52 orion_pcie_set_local_bus_nr(pp
->base
, sys
->busnr
);
54 orion_pcie_setup(pp
->base
);
57 pci_ioremap_io(sys
->busnr
* SZ_64K
, DOVE_PCIE0_IO_PHYS_BASE
);
59 pci_ioremap_io(sys
->busnr
* SZ_64K
, DOVE_PCIE1_IO_PHYS_BASE
);
64 snprintf(pp
->mem_space_name
, sizeof(pp
->mem_space_name
),
65 "PCIe %d MEM", pp
->index
);
66 pp
->mem_space_name
[sizeof(pp
->mem_space_name
) - 1] = 0;
67 pp
->res
.name
= pp
->mem_space_name
;
69 pp
->res
.start
= DOVE_PCIE0_MEM_PHYS_BASE
;
70 pp
->res
.end
= pp
->res
.start
+ DOVE_PCIE0_MEM_SIZE
- 1;
72 pp
->res
.start
= DOVE_PCIE1_MEM_PHYS_BASE
;
73 pp
->res
.end
= pp
->res
.start
+ DOVE_PCIE1_MEM_SIZE
- 1;
75 pp
->res
.flags
= IORESOURCE_MEM
;
76 if (request_resource(&iomem_resource
, &pp
->res
))
77 panic("Request PCIe Memory resource failed\n");
78 pci_add_resource_offset(&sys
->resources
, &pp
->res
, sys
->mem_offset
);
83 static int pcie_valid_config(struct pcie_port
*pp
, int bus
, int dev
)
86 * Don't go out when trying to access nonexisting devices
89 if (bus
== pp
->root_bus_nr
&& dev
> 1)
95 static int pcie_rd_conf(struct pci_bus
*bus
, u32 devfn
, int where
,
98 struct pci_sys_data
*sys
= bus
->sysdata
;
99 struct pcie_port
*pp
= sys
->private_data
;
103 if (pcie_valid_config(pp
, bus
->number
, PCI_SLOT(devfn
)) == 0) {
105 return PCIBIOS_DEVICE_NOT_FOUND
;
108 spin_lock_irqsave(&pp
->conf_lock
, flags
);
109 ret
= orion_pcie_rd_conf(pp
->base
, bus
, devfn
, where
, size
, val
);
110 spin_unlock_irqrestore(&pp
->conf_lock
, flags
);
115 static int pcie_wr_conf(struct pci_bus
*bus
, u32 devfn
,
116 int where
, int size
, u32 val
)
118 struct pci_sys_data
*sys
= bus
->sysdata
;
119 struct pcie_port
*pp
= sys
->private_data
;
123 if (pcie_valid_config(pp
, bus
->number
, PCI_SLOT(devfn
)) == 0)
124 return PCIBIOS_DEVICE_NOT_FOUND
;
126 spin_lock_irqsave(&pp
->conf_lock
, flags
);
127 ret
= orion_pcie_wr_conf(pp
->base
, bus
, devfn
, where
, size
, val
);
128 spin_unlock_irqrestore(&pp
->conf_lock
, flags
);
133 static struct pci_ops pcie_ops
= {
134 .read
= pcie_rd_conf
,
135 .write
= pcie_wr_conf
,
138 static void rc_pci_fixup(struct pci_dev
*dev
)
141 * Prevent enumeration of root complex.
143 if (dev
->bus
->parent
== NULL
&& dev
->devfn
== 0) {
146 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
147 dev
->resource
[i
].start
= 0;
148 dev
->resource
[i
].end
= 0;
149 dev
->resource
[i
].flags
= 0;
153 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL
, PCI_ANY_ID
, rc_pci_fixup
);
155 static struct pci_bus __init
*
156 dove_pcie_scan_bus(int nr
, struct pci_sys_data
*sys
)
160 if (nr
< num_pcie_ports
) {
161 bus
= pci_scan_root_bus(NULL
, sys
->busnr
, &pcie_ops
, sys
,
171 static int __init
dove_pcie_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
173 struct pci_sys_data
*sys
= dev
->sysdata
;
174 struct pcie_port
*pp
= sys
->private_data
;
176 return pp
->index
? IRQ_DOVE_PCIE1
: IRQ_DOVE_PCIE0
;
179 static struct hw_pci dove_pci __initdata
= {
181 .setup
= dove_pcie_setup
,
182 .scan
= dove_pcie_scan_bus
,
183 .map_irq
= dove_pcie_map_irq
,
186 static void __init
add_pcie_port(int index
, void __iomem
*base
)
188 printk(KERN_INFO
"Dove PCIe port %d: ", index
);
190 if (orion_pcie_link_up(base
)) {
191 struct pcie_port
*pp
= &pcie_port
[num_pcie_ports
++];
192 struct clk
*clk
= clk_get_sys("pcie", (index
? "1" : "0"));
195 clk_prepare_enable(clk
);
197 printk(KERN_INFO
"link up\n");
200 pp
->root_bus_nr
= -1;
202 spin_lock_init(&pp
->conf_lock
);
203 memset(&pp
->res
, 0, sizeof(pp
->res
));
205 printk(KERN_INFO
"link down, ignoring\n");
209 void __init
dove_pcie_init(int init_port0
, int init_port1
)
211 vga_base
= DOVE_PCIE0_MEM_PHYS_BASE
;
214 add_pcie_port(0, DOVE_PCIE0_VIRT_BASE
);
217 add_pcie_port(1, DOVE_PCIE1_VIRT_BASE
);
219 pci_common_init(&dove_pci
);