blob: ae91a2dd9183c829ee2177af54c6df627f9c75cb [file] [log] [blame]
Paul Mundt5713e602009-06-17 18:20:48 +09001/*
2 * Low-Level PCI Express Support for the SH7786
3 *
Paul Mundt7561f2d2010-02-08 16:36:56 +09004 * Copyright (C) 2009 - 2010 Paul Mundt
Paul Mundt5713e602009-06-17 18:20:48 +09005 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10#include <linux/pci.h>
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/io.h>
14#include <linux/delay.h>
15#include "pcie-sh7786.h"
16#include <asm/sizes.h>
17
18struct sh7786_pcie_port {
19 struct pci_channel *hose;
20 unsigned int index;
21 int endpoint;
22 int link;
23};
24
25static struct sh7786_pcie_port *sh7786_pcie_ports;
26static unsigned int nr_ports;
27
28static struct sh7786_pcie_hwops {
29 int (*core_init)(void);
30 int (*port_init_hw)(struct sh7786_pcie_port *port);
31} *sh7786_pcie_hwops;
32
Paul Mundt7561f2d2010-02-08 16:36:56 +090033static struct resource sh7786_pci0_resources[] = {
Paul Mundt5713e602009-06-17 18:20:48 +090034 {
Paul Mundt7561f2d2010-02-08 16:36:56 +090035 .name = "PCIe0 IO",
36 .start = 0xfd000000,
37 .end = 0xfd000000 + SZ_8M - 1,
38 .flags = IORESOURCE_IO,
39 }, {
40 .name = "PCIe0 MEM 0",
41 .start = 0xc0000000,
42 .end = 0xc0000000 + SZ_512M - 1,
43 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
44 }, {
45 .name = "PCIe0 MEM 1",
46 .start = 0x10000000,
47 .end = 0x10000000 + SZ_64M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090048 .flags = IORESOURCE_MEM,
49 }, {
Paul Mundt7561f2d2010-02-08 16:36:56 +090050 .name = "PCIe0 MEM 2",
51 .start = 0xfe100000,
52 .end = 0xfe100000 + SZ_1M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090053 },
54};
55
Paul Mundt7561f2d2010-02-08 16:36:56 +090056static struct resource sh7786_pci1_resources[] = {
57 {
58 .name = "PCIe1 IO",
59 .start = 0xfd800000,
60 .end = 0xfd800000 + SZ_8M - 1,
61 .flags = IORESOURCE_IO,
62 }, {
63 .name = "PCIe1 MEM 0",
64 .start = 0xa0000000,
65 .end = 0xa0000000 + SZ_512M - 1,
66 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
67 }, {
68 .name = "PCIe1 MEM 1",
69 .start = 0x30000000,
70 .end = 0x30000000 + SZ_256M - 1,
71 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
72 }, {
73 .name = "PCIe1 MEM 2",
74 .start = 0xfe300000,
75 .end = 0xfe300000 + SZ_1M - 1,
76 },
Paul Mundt5713e602009-06-17 18:20:48 +090077};
78
Paul Mundt7561f2d2010-02-08 16:36:56 +090079static struct resource sh7786_pci2_resources[] = {
Paul Mundt5713e602009-06-17 18:20:48 +090080 {
Paul Mundt7561f2d2010-02-08 16:36:56 +090081 .name = "PCIe2 IO",
82 .start = 0xfc800000,
83 .end = 0xfc800000 + SZ_4M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090084 }, {
Paul Mundt7561f2d2010-02-08 16:36:56 +090085 .name = "PCIe2 MEM 0",
86 .start = 0x80000000,
87 .end = 0x80000000 + SZ_512M - 1,
88 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
Paul Mundt5713e602009-06-17 18:20:48 +090089 }, {
Paul Mundt7561f2d2010-02-08 16:36:56 +090090 .name = "PCIe2 MEM 1",
91 .start = 0x20000000,
92 .end = 0x20000000 + SZ_256M - 1,
93 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
94 }, {
95 .name = "PCIe2 MEM 2",
96 .start = 0xfcd00000,
97 .end = 0xfcd00000 + SZ_1M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090098 },
99};
100
101extern struct pci_ops sh7786_pci_ops;
102
Paul Mundt7561f2d2010-02-08 16:36:56 +0900103#define DEFINE_CONTROLLER(start, idx) \
104{ \
105 .pci_ops = &sh7786_pci_ops, \
106 .resources = sh7786_pci##idx##_resources, \
107 .nr_resources = ARRAY_SIZE(sh7786_pci##idx##_resources), \
108 .reg_base = start, \
109 .mem_offset = 0, \
110 .io_offset = 0, \
Paul Mundt5713e602009-06-17 18:20:48 +0900111}
112
113static struct pci_channel sh7786_pci_channels[] = {
114 DEFINE_CONTROLLER(0xfe000000, 0),
115 DEFINE_CONTROLLER(0xfe200000, 1),
116 DEFINE_CONTROLLER(0xfcc00000, 2),
117};
118
119static int phy_wait_for_ack(struct pci_channel *chan)
120{
121 unsigned int timeout = 100;
122
123 while (timeout--) {
124 if (pci_read_reg(chan, SH4A_PCIEPHYADRR) & (1 << BITS_ACK))
125 return 0;
126
127 udelay(100);
128 }
129
130 return -ETIMEDOUT;
131}
132
133static int pci_wait_for_irq(struct pci_channel *chan, unsigned int mask)
134{
135 unsigned int timeout = 100;
136
137 while (timeout--) {
138 if ((pci_read_reg(chan, SH4A_PCIEINTR) & mask) == mask)
139 return 0;
140
141 udelay(100);
142 }
143
144 return -ETIMEDOUT;
145}
146
147static void phy_write_reg(struct pci_channel *chan, unsigned int addr,
148 unsigned int lane, unsigned int data)
149{
150 unsigned long phyaddr, ctrl;
151
152 phyaddr = (1 << BITS_CMD) + ((lane & 0xf) << BITS_LANE) +
153 ((addr & 0xff) << BITS_ADR);
154
155 /* Enable clock */
156 ctrl = pci_read_reg(chan, SH4A_PCIEPHYCTLR);
157 ctrl |= (1 << BITS_CKE);
158 pci_write_reg(chan, ctrl, SH4A_PCIEPHYCTLR);
159
160 /* Set write data */
161 pci_write_reg(chan, data, SH4A_PCIEPHYDOUTR);
162 pci_write_reg(chan, phyaddr, SH4A_PCIEPHYADRR);
163
164 phy_wait_for_ack(chan);
165
166 /* Clear command */
167 pci_write_reg(chan, 0, SH4A_PCIEPHYADRR);
168
169 phy_wait_for_ack(chan);
170
171 /* Disable clock */
172 ctrl = pci_read_reg(chan, SH4A_PCIEPHYCTLR);
173 ctrl &= ~(1 << BITS_CKE);
174 pci_write_reg(chan, ctrl, SH4A_PCIEPHYCTLR);
175}
176
177static int phy_init(struct pci_channel *chan)
178{
179 unsigned int timeout = 100;
180
181 /* Initialize the phy */
182 phy_write_reg(chan, 0x60, 0xf, 0x004b008b);
183 phy_write_reg(chan, 0x61, 0xf, 0x00007b41);
184 phy_write_reg(chan, 0x64, 0xf, 0x00ff4f00);
185 phy_write_reg(chan, 0x65, 0xf, 0x09070907);
186 phy_write_reg(chan, 0x66, 0xf, 0x00000010);
187 phy_write_reg(chan, 0x74, 0xf, 0x0007001c);
188 phy_write_reg(chan, 0x79, 0xf, 0x01fc000d);
189
190 /* Deassert Standby */
191 phy_write_reg(chan, 0x67, 0xf, 0x00000400);
192
193 while (timeout--) {
194 if (pci_read_reg(chan, SH4A_PCIEPHYSR))
195 return 0;
196
197 udelay(100);
198 }
199
200 return -ETIMEDOUT;
201}
202
203static int pcie_init(struct sh7786_pcie_port *port)
204{
205 struct pci_channel *chan = port->hose;
206 unsigned int data;
Paul Mundt7578a4c2010-02-10 16:00:58 +0900207 phys_addr_t memphys;
208 size_t memsize;
209 int ret, i;
Paul Mundt5713e602009-06-17 18:20:48 +0900210
211 /* Begin initialization */
212 pci_write_reg(chan, 0, SH4A_PCIETCTLR);
213
214 /* Initialize as type1. */
215 data = pci_read_reg(chan, SH4A_PCIEPCICONF3);
216 data &= ~(0x7f << 16);
217 data |= PCI_HEADER_TYPE_BRIDGE << 16;
218 pci_write_reg(chan, data, SH4A_PCIEPCICONF3);
219
220 /* Initialize default capabilities. */
221 data = pci_read_reg(chan, SH4A_PCIEEXPCAP0);
222 data &= ~(PCI_EXP_FLAGS_TYPE << 16);
223
224 if (port->endpoint)
225 data |= PCI_EXP_TYPE_ENDPOINT << 20;
226 else
227 data |= PCI_EXP_TYPE_ROOT_PORT << 20;
228
229 data |= PCI_CAP_ID_EXP;
230 pci_write_reg(chan, data, SH4A_PCIEEXPCAP0);
231
Paul Mundt7578a4c2010-02-10 16:00:58 +0900232 /* Enable data link layer active state reporting */
233 pci_write_reg(chan, PCI_EXP_LNKCAP_DLLLARC, SH4A_PCIEEXPCAP3);
234
235 /* Enable extended sync and ASPM L0s support */
Paul Mundt5713e602009-06-17 18:20:48 +0900236 data = pci_read_reg(chan, SH4A_PCIEEXPCAP4);
Paul Mundt7578a4c2010-02-10 16:00:58 +0900237 data &= ~PCI_EXP_LNKCTL_ASPMC;
238 data |= PCI_EXP_LNKCTL_ES | 1;
Paul Mundt5713e602009-06-17 18:20:48 +0900239 pci_write_reg(chan, data, SH4A_PCIEEXPCAP4);
240
Paul Mundt7578a4c2010-02-10 16:00:58 +0900241 /* Write out the physical slot number */
242 data = pci_read_reg(chan, SH4A_PCIEEXPCAP5);
243 data &= ~PCI_EXP_SLTCAP_PSN;
244 data |= (port->index + 1) << 19;
245 pci_write_reg(chan, data, SH4A_PCIEEXPCAP5);
246
Paul Mundt5713e602009-06-17 18:20:48 +0900247 /* Set the completion timer timeout to the maximum 32ms. */
248 data = pci_read_reg(chan, SH4A_PCIETLCTLR);
Paul Mundt7578a4c2010-02-10 16:00:58 +0900249 data &= ~0x3f00;
Paul Mundt5713e602009-06-17 18:20:48 +0900250 data |= 0x32 << 8;
251 pci_write_reg(chan, data, SH4A_PCIETLCTLR);
252
253 /*
254 * Set fast training sequences to the maximum 255,
255 * and enable MAC data scrambling.
256 */
257 data = pci_read_reg(chan, SH4A_PCIEMACCTLR);
258 data &= ~PCIEMACCTLR_SCR_DIS;
259 data |= (0xff << 16);
260 pci_write_reg(chan, data, SH4A_PCIEMACCTLR);
261
Paul Mundt7578a4c2010-02-10 16:00:58 +0900262 memphys = __pa(memory_start);
263 memsize = roundup_pow_of_two(memory_end - memory_start);
264
265 /*
266 * If there's more than 512MB of memory, we need to roll over to
267 * LAR1/LAMR1.
268 */
269 if (memsize > SZ_512M) {
270 __raw_writel(memphys + SZ_512M, chan->reg_base + SH4A_PCIELAR1);
271 __raw_writel(((memsize - SZ_512M) - SZ_256) | 1,
272 chan->reg_base + SH4A_PCIELAMR1);
273 memsize = SZ_512M;
274 } else {
275 /*
276 * Otherwise just zero it out and disable it.
277 */
278 __raw_writel(0, chan->reg_base + SH4A_PCIELAR1);
279 __raw_writel(0, chan->reg_base + SH4A_PCIELAMR1);
280 }
281
282 /*
283 * LAR0/LAMR0 covers up to the first 512MB, which is enough to
284 * cover all of lowmem on most platforms.
285 */
286 __raw_writel(memphys, chan->reg_base + SH4A_PCIELAR0);
287 __raw_writel((memsize - SZ_256) | 1, chan->reg_base + SH4A_PCIELAMR0);
288
Paul Mundt5713e602009-06-17 18:20:48 +0900289 /* Finish initialization */
290 data = pci_read_reg(chan, SH4A_PCIETCTLR);
291 data |= 0x1;
292 pci_write_reg(chan, data, SH4A_PCIETCTLR);
293
294 /* Enable DL_Active Interrupt generation */
295 data = pci_read_reg(chan, SH4A_PCIEDLINTENR);
296 data |= PCIEDLINTENR_DLL_ACT_ENABLE;
297 pci_write_reg(chan, data, SH4A_PCIEDLINTENR);
298
299 /* Disable MAC data scrambling. */
300 data = pci_read_reg(chan, SH4A_PCIEMACCTLR);
301 data |= PCIEMACCTLR_SCR_DIS | (0xff << 16);
302 pci_write_reg(chan, data, SH4A_PCIEMACCTLR);
303
304 ret = pci_wait_for_irq(chan, MASK_INT_TX_CTRL);
305 if (unlikely(ret != 0))
306 return -ENODEV;
307
Paul Mundt7578a4c2010-02-10 16:00:58 +0900308 data = pci_read_reg(chan, SH4A_PCIEPCICONF1);
309 data &= ~(PCI_STATUS_DEVSEL_MASK << 16);
310 data |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
311 (PCI_STATUS_CAP_LIST | PCI_STATUS_DEVSEL_FAST) << 16;
312 pci_write_reg(chan, data, SH4A_PCIEPCICONF1);
313
Paul Mundt5713e602009-06-17 18:20:48 +0900314 pci_write_reg(chan, 0x80888000, SH4A_PCIETXVC0DCTLR);
315 pci_write_reg(chan, 0x00222000, SH4A_PCIERXVC0DCTLR);
Paul Mundt5713e602009-06-17 18:20:48 +0900316
317 wmb();
318
319 data = pci_read_reg(chan, SH4A_PCIEMACSR);
320 printk(KERN_NOTICE "PCI: PCIe#%d link width %d\n",
321 port->index, (data >> 20) & 0x3f);
322
Paul Mundt5713e602009-06-17 18:20:48 +0900323
Paul Mundt7578a4c2010-02-10 16:00:58 +0900324 for (i = 0; i < chan->nr_resources; i++) {
325 struct resource *res = chan->resources + i;
326 resource_size_t size;
327 u32 enable_mask;
328
329 pci_write_reg(chan, 0x00000000, SH4A_PCIEPTCTLR(i));
330
331 size = resource_size(res);
332
333 /*
334 * The PAMR mask is calculated in units of 256kB, which
335 * keeps things pretty simple.
336 */
337 __raw_writel(((roundup_pow_of_two(size) / SZ_256K) - 1) << 18,
338 chan->reg_base + SH4A_PCIEPAMR(i));
339
340 pci_write_reg(chan, 0x00000000, SH4A_PCIEPARH(i));
341 pci_write_reg(chan, 0x00000000, SH4A_PCIEPARL(i));
342
343 enable_mask = MASK_PARE;
344 if (res->flags & IORESOURCE_IO)
345 enable_mask |= MASK_SPC;
346
347 pci_write_reg(chan, enable_mask, SH4A_PCIEPTCTLR(i));
348 }
Paul Mundt5713e602009-06-17 18:20:48 +0900349
350 return 0;
351}
352
353int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
354{
355 return 71;
356}
357
358static int sh7786_pcie_core_init(void)
359{
360 /* Return the number of ports */
361 return test_mode_pin(MODE_PIN12) ? 3 : 2;
362}
363
364static int __devinit sh7786_pcie_init_hw(struct sh7786_pcie_port *port)
365{
366 int ret;
367
368 ret = phy_init(port->hose);
369 if (unlikely(ret < 0))
370 return ret;
371
372 /*
373 * Check if we are configured in endpoint or root complex mode,
374 * this is a fixed pin setting that applies to all PCIe ports.
375 */
376 port->endpoint = test_mode_pin(MODE_PIN11);
377
378 ret = pcie_init(port);
379 if (unlikely(ret < 0))
380 return ret;
381
Paul Mundtbcf39352010-02-01 13:11:25 +0900382 return register_pci_controller(port->hose);
Paul Mundt5713e602009-06-17 18:20:48 +0900383}
384
385static struct sh7786_pcie_hwops sh7786_65nm_pcie_hwops __initdata = {
386 .core_init = sh7786_pcie_core_init,
387 .port_init_hw = sh7786_pcie_init_hw,
388};
389
390static int __init sh7786_pcie_init(void)
391{
392 int ret = 0, i;
393
394 printk(KERN_NOTICE "PCI: Starting intialization.\n");
395
396 sh7786_pcie_hwops = &sh7786_65nm_pcie_hwops;
397
398 nr_ports = sh7786_pcie_hwops->core_init();
399 BUG_ON(nr_ports > ARRAY_SIZE(sh7786_pci_channels));
400
401 if (unlikely(nr_ports == 0))
402 return -ENODEV;
403
404 sh7786_pcie_ports = kzalloc(nr_ports * sizeof(struct sh7786_pcie_port),
405 GFP_KERNEL);
406 if (unlikely(!sh7786_pcie_ports))
407 return -ENOMEM;
408
409 printk(KERN_NOTICE "PCI: probing %d ports.\n", nr_ports);
410
411 for (i = 0; i < nr_ports; i++) {
412 struct sh7786_pcie_port *port = sh7786_pcie_ports + i;
413
414 port->index = i;
415 port->hose = sh7786_pci_channels + i;
Paul Mundt7561f2d2010-02-08 16:36:56 +0900416 port->hose->io_map_base = port->hose->resources[0].start;
Paul Mundt5713e602009-06-17 18:20:48 +0900417
418 ret |= sh7786_pcie_hwops->port_init_hw(port);
419 }
420
421 if (unlikely(ret))
422 return ret;
423
424 return 0;
425}
426arch_initcall(sh7786_pcie_init);