2 * arch/arm/plat-orion/pcie.c
4 * Marvell Orion SoC PCIe handling.
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/mbus.h>
14 #include <asm/mach/pci.h>
15 #include <plat/pcie.h>
16 #include <linux/delay.h>
19 * PCIe unit register offsets.
21 #define PCIE_DEV_ID_OFF 0x0000
22 #define PCIE_CMD_OFF 0x0004
23 #define PCIE_DEV_REV_OFF 0x0008
24 #define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
25 #define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
26 #define PCIE_HEADER_LOG_4_OFF 0x0128
27 #define PCIE_BAR_CTRL_OFF(n) (0x1804 + ((n - 1) * 4))
28 #define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
29 #define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
30 #define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
31 #define PCIE_WIN5_CTRL_OFF 0x1880
32 #define PCIE_WIN5_BASE_OFF 0x1884
33 #define PCIE_WIN5_REMAP_OFF 0x188c
34 #define PCIE_CONF_ADDR_OFF 0x18f8
35 #define PCIE_CONF_ADDR_EN 0x80000000
36 #define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
37 #define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
38 #define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
39 #define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
40 #define PCIE_CONF_DATA_OFF 0x18fc
41 #define PCIE_MASK_OFF 0x1910
42 #define PCIE_CTRL_OFF 0x1a00
43 #define PCIE_CTRL_X1_MODE 0x0001
44 #define PCIE_STAT_OFF 0x1a04
45 #define PCIE_STAT_DEV_OFFS 20
46 #define PCIE_STAT_DEV_MASK 0x1f
47 #define PCIE_STAT_BUS_OFFS 8
48 #define PCIE_STAT_BUS_MASK 0xff
49 #define PCIE_STAT_LINK_DOWN 1
50 #define PCIE_DEBUG_CTRL 0x1a60
51 #define PCIE_DEBUG_SOFT_RESET (1<<20)
54 u32 __init
orion_pcie_dev_id(void __iomem
*base
)
56 return readl(base
+ PCIE_DEV_ID_OFF
) >> 16;
59 u32 __init
orion_pcie_rev(void __iomem
*base
)
61 return readl(base
+ PCIE_DEV_REV_OFF
) & 0xff;
64 int orion_pcie_link_up(void __iomem
*base
)
66 return !(readl(base
+ PCIE_STAT_OFF
) & PCIE_STAT_LINK_DOWN
);
69 int __init
orion_pcie_x4_mode(void __iomem
*base
)
71 return !(readl(base
+ PCIE_CTRL_OFF
) & PCIE_CTRL_X1_MODE
);
74 int orion_pcie_get_local_bus_nr(void __iomem
*base
)
76 u32 stat
= readl(base
+ PCIE_STAT_OFF
);
78 return (stat
>> PCIE_STAT_BUS_OFFS
) & PCIE_STAT_BUS_MASK
;
81 void __init
orion_pcie_set_local_bus_nr(void __iomem
*base
, int nr
)
85 stat
= readl(base
+ PCIE_STAT_OFF
);
86 stat
&= ~(PCIE_STAT_BUS_MASK
<< PCIE_STAT_BUS_OFFS
);
87 stat
|= nr
<< PCIE_STAT_BUS_OFFS
;
88 writel(stat
, base
+ PCIE_STAT_OFF
);
91 void __init
orion_pcie_reset(void __iomem
*base
)
97 * MV-S104860-U0, Rev. C:
98 * PCI Express Unit Soft Reset
99 * When set, generates an internal reset in the PCI Express unit.
100 * This bit should be cleared after the link is re-established.
102 reg
= readl(base
+ PCIE_DEBUG_CTRL
);
103 reg
|= PCIE_DEBUG_SOFT_RESET
;
104 writel(reg
, base
+ PCIE_DEBUG_CTRL
);
106 for (i
= 0; i
< 20; i
++) {
109 if (orion_pcie_link_up(base
))
113 reg
&= ~(PCIE_DEBUG_SOFT_RESET
);
114 writel(reg
, base
+ PCIE_DEBUG_CTRL
);
118 * Setup PCIE BARs and Address Decode Wins:
119 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
120 * WIN[0-3] -> DRAM bank[0-3]
122 static void __init
orion_pcie_setup_wins(void __iomem
*base
,
123 struct mbus_dram_target_info
*dram
)
129 * First, disable and clear BARs and windows.
131 for (i
= 1; i
<= 2; i
++) {
132 writel(0, base
+ PCIE_BAR_CTRL_OFF(i
));
133 writel(0, base
+ PCIE_BAR_LO_OFF(i
));
134 writel(0, base
+ PCIE_BAR_HI_OFF(i
));
137 for (i
= 0; i
< 5; i
++) {
138 writel(0, base
+ PCIE_WIN04_CTRL_OFF(i
));
139 writel(0, base
+ PCIE_WIN04_BASE_OFF(i
));
140 writel(0, base
+ PCIE_WIN04_REMAP_OFF(i
));
143 writel(0, base
+ PCIE_WIN5_CTRL_OFF
);
144 writel(0, base
+ PCIE_WIN5_BASE_OFF
);
145 writel(0, base
+ PCIE_WIN5_REMAP_OFF
);
148 * Setup windows for DDR banks. Count total DDR size on the fly.
151 for (i
= 0; i
< dram
->num_cs
; i
++) {
152 struct mbus_dram_window
*cs
= dram
->cs
+ i
;
154 writel(cs
->base
& 0xffff0000, base
+ PCIE_WIN04_BASE_OFF(i
));
155 writel(0, base
+ PCIE_WIN04_REMAP_OFF(i
));
156 writel(((cs
->size
- 1) & 0xffff0000) |
157 (cs
->mbus_attr
<< 8) |
158 (dram
->mbus_dram_target_id
<< 4) | 1,
159 base
+ PCIE_WIN04_CTRL_OFF(i
));
165 * Round up 'size' to the nearest power of two.
167 if ((size
& (size
- 1)) != 0)
168 size
= 1 << fls(size
);
171 * Setup BAR[1] to all DRAM banks.
173 writel(dram
->cs
[0].base
, base
+ PCIE_BAR_LO_OFF(1));
174 writel(0, base
+ PCIE_BAR_HI_OFF(1));
175 writel(((size
- 1) & 0xffff0000) | 1, base
+ PCIE_BAR_CTRL_OFF(1));
178 void __init
orion_pcie_setup(void __iomem
*base
,
179 struct mbus_dram_target_info
*dram
)
185 * Point PCIe unit MBUS decode windows to DRAM space.
187 orion_pcie_setup_wins(base
, dram
);
190 * Master + slave enable.
192 cmd
= readw(base
+ PCIE_CMD_OFF
);
193 cmd
|= PCI_COMMAND_IO
;
194 cmd
|= PCI_COMMAND_MEMORY
;
195 cmd
|= PCI_COMMAND_MASTER
;
196 writew(cmd
, base
+ PCIE_CMD_OFF
);
199 * Enable interrupt lines A-D.
201 mask
= readl(base
+ PCIE_MASK_OFF
);
203 writel(mask
, base
+ PCIE_MASK_OFF
);
206 int orion_pcie_rd_conf(void __iomem
*base
, struct pci_bus
*bus
,
207 u32 devfn
, int where
, int size
, u32
*val
)
209 writel(PCIE_CONF_BUS(bus
->number
) |
210 PCIE_CONF_DEV(PCI_SLOT(devfn
)) |
211 PCIE_CONF_FUNC(PCI_FUNC(devfn
)) |
212 PCIE_CONF_REG(where
) | PCIE_CONF_ADDR_EN
,
213 base
+ PCIE_CONF_ADDR_OFF
);
215 *val
= readl(base
+ PCIE_CONF_DATA_OFF
);
218 *val
= (*val
>> (8 * (where
& 3))) & 0xff;
220 *val
= (*val
>> (8 * (where
& 3))) & 0xffff;
222 return PCIBIOS_SUCCESSFUL
;
225 int orion_pcie_rd_conf_tlp(void __iomem
*base
, struct pci_bus
*bus
,
226 u32 devfn
, int where
, int size
, u32
*val
)
228 writel(PCIE_CONF_BUS(bus
->number
) |
229 PCIE_CONF_DEV(PCI_SLOT(devfn
)) |
230 PCIE_CONF_FUNC(PCI_FUNC(devfn
)) |
231 PCIE_CONF_REG(where
) | PCIE_CONF_ADDR_EN
,
232 base
+ PCIE_CONF_ADDR_OFF
);
234 *val
= readl(base
+ PCIE_CONF_DATA_OFF
);
236 if (bus
->number
!= orion_pcie_get_local_bus_nr(base
) ||
237 PCI_FUNC(devfn
) != 0)
238 *val
= readl(base
+ PCIE_HEADER_LOG_4_OFF
);
241 *val
= (*val
>> (8 * (where
& 3))) & 0xff;
243 *val
= (*val
>> (8 * (where
& 3))) & 0xffff;
245 return PCIBIOS_SUCCESSFUL
;
248 int orion_pcie_rd_conf_wa(void __iomem
*wa_base
, struct pci_bus
*bus
,
249 u32 devfn
, int where
, int size
, u32
*val
)
251 *val
= readl(wa_base
+ (PCIE_CONF_BUS(bus
->number
) |
252 PCIE_CONF_DEV(PCI_SLOT(devfn
)) |
253 PCIE_CONF_FUNC(PCI_FUNC(devfn
)) |
254 PCIE_CONF_REG(where
)));
257 *val
= (*val
>> (8 * (where
& 3))) & 0xff;
259 *val
= (*val
>> (8 * (where
& 3))) & 0xffff;
261 return PCIBIOS_SUCCESSFUL
;
264 int orion_pcie_wr_conf(void __iomem
*base
, struct pci_bus
*bus
,
265 u32 devfn
, int where
, int size
, u32 val
)
267 int ret
= PCIBIOS_SUCCESSFUL
;
269 writel(PCIE_CONF_BUS(bus
->number
) |
270 PCIE_CONF_DEV(PCI_SLOT(devfn
)) |
271 PCIE_CONF_FUNC(PCI_FUNC(devfn
)) |
272 PCIE_CONF_REG(where
) | PCIE_CONF_ADDR_EN
,
273 base
+ PCIE_CONF_ADDR_OFF
);
276 writel(val
, base
+ PCIE_CONF_DATA_OFF
);
277 } else if (size
== 2) {
278 writew(val
, base
+ PCIE_CONF_DATA_OFF
+ (where
& 3));
279 } else if (size
== 1) {
280 writeb(val
, base
+ PCIE_CONF_DATA_OFF
+ (where
& 3));
282 ret
= PCIBIOS_BAD_REGISTER_NUMBER
;