blob: 4f79fd9059e0ac7f9a8ca2a6b31d60c17cdd1406 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Paul Mundt5713e602009-06-17 18:20:48 +090016#include "pcie-sh7786.h"
17#include <asm/sizes.h>
18
19struct sh7786_pcie_port {
20 struct pci_channel *hose;
21 unsigned int index;
22 int endpoint;
23 int link;
24};
25
26static struct sh7786_pcie_port *sh7786_pcie_ports;
27static unsigned int nr_ports;
28
29static struct sh7786_pcie_hwops {
30 int (*core_init)(void);
31 int (*port_init_hw)(struct sh7786_pcie_port *port);
32} *sh7786_pcie_hwops;
33
Paul Mundt7561f2d2010-02-08 16:36:56 +090034static struct resource sh7786_pci0_resources[] = {
Paul Mundt5713e602009-06-17 18:20:48 +090035 {
Paul Mundt7561f2d2010-02-08 16:36:56 +090036 .name = "PCIe0 IO",
37 .start = 0xfd000000,
38 .end = 0xfd000000 + SZ_8M - 1,
39 .flags = IORESOURCE_IO,
40 }, {
41 .name = "PCIe0 MEM 0",
42 .start = 0xc0000000,
43 .end = 0xc0000000 + SZ_512M - 1,
44 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
45 }, {
46 .name = "PCIe0 MEM 1",
47 .start = 0x10000000,
48 .end = 0x10000000 + SZ_64M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090049 .flags = IORESOURCE_MEM,
50 }, {
Paul Mundt7561f2d2010-02-08 16:36:56 +090051 .name = "PCIe0 MEM 2",
52 .start = 0xfe100000,
53 .end = 0xfe100000 + SZ_1M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090054 },
55};
56
Paul Mundt7561f2d2010-02-08 16:36:56 +090057static struct resource sh7786_pci1_resources[] = {
58 {
59 .name = "PCIe1 IO",
60 .start = 0xfd800000,
61 .end = 0xfd800000 + SZ_8M - 1,
62 .flags = IORESOURCE_IO,
63 }, {
64 .name = "PCIe1 MEM 0",
65 .start = 0xa0000000,
66 .end = 0xa0000000 + SZ_512M - 1,
67 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
68 }, {
69 .name = "PCIe1 MEM 1",
70 .start = 0x30000000,
71 .end = 0x30000000 + SZ_256M - 1,
72 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
73 }, {
74 .name = "PCIe1 MEM 2",
75 .start = 0xfe300000,
76 .end = 0xfe300000 + SZ_1M - 1,
77 },
Paul Mundt5713e602009-06-17 18:20:48 +090078};
79
Paul Mundt7561f2d2010-02-08 16:36:56 +090080static struct resource sh7786_pci2_resources[] = {
Paul Mundt5713e602009-06-17 18:20:48 +090081 {
Paul Mundt7561f2d2010-02-08 16:36:56 +090082 .name = "PCIe2 IO",
83 .start = 0xfc800000,
84 .end = 0xfc800000 + SZ_4M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090085 }, {
Paul Mundt7561f2d2010-02-08 16:36:56 +090086 .name = "PCIe2 MEM 0",
87 .start = 0x80000000,
88 .end = 0x80000000 + SZ_512M - 1,
89 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
Paul Mundt5713e602009-06-17 18:20:48 +090090 }, {
Paul Mundt7561f2d2010-02-08 16:36:56 +090091 .name = "PCIe2 MEM 1",
92 .start = 0x20000000,
93 .end = 0x20000000 + SZ_256M - 1,
94 .flags = IORESOURCE_MEM | IORESOURCE_MEM_32BIT,
95 }, {
96 .name = "PCIe2 MEM 2",
97 .start = 0xfcd00000,
98 .end = 0xfcd00000 + SZ_1M - 1,
Paul Mundt5713e602009-06-17 18:20:48 +090099 },
100};
101
102extern struct pci_ops sh7786_pci_ops;
103
Paul Mundt7561f2d2010-02-08 16:36:56 +0900104#define DEFINE_CONTROLLER(start, idx) \
105{ \
106 .pci_ops = &sh7786_pci_ops, \
107 .resources = sh7786_pci##idx##_resources, \
108 .nr_resources = ARRAY_SIZE(sh7786_pci##idx##_resources), \
109 .reg_base = start, \
110 .mem_offset = 0, \
111 .io_offset = 0, \
Paul Mundt5713e602009-06-17 18:20:48 +0900112}
113
114static struct pci_channel sh7786_pci_channels[] = {
115 DEFINE_CONTROLLER(0xfe000000, 0),
116 DEFINE_CONTROLLER(0xfe200000, 1),
117 DEFINE_CONTROLLER(0xfcc00000, 2),
118};
119
120static int phy_wait_for_ack(struct pci_channel *chan)
121{
122 unsigned int timeout = 100;
123
124 while (timeout--) {
125 if (pci_read_reg(chan, SH4A_PCIEPHYADRR) & (1 << BITS_ACK))
126 return 0;
127
128 udelay(100);
129 }
130
131 return -ETIMEDOUT;
132}
133
134static int pci_wait_for_irq(struct pci_channel *chan, unsigned int mask)
135{
136 unsigned int timeout = 100;
137
138 while (timeout--) {
139 if ((pci_read_reg(chan, SH4A_PCIEINTR) & mask) == mask)
140 return 0;
141
142 udelay(100);
143 }
144
145 return -ETIMEDOUT;
146}
147
148static void phy_write_reg(struct pci_channel *chan, unsigned int addr,
149 unsigned int lane, unsigned int data)
150{
Paul Mundt53178d72010-08-20 16:04:59 +0900151 unsigned long phyaddr;
Paul Mundt5713e602009-06-17 18:20:48 +0900152
153 phyaddr = (1 << BITS_CMD) + ((lane & 0xf) << BITS_LANE) +
154 ((addr & 0xff) << BITS_ADR);
155
Paul Mundt5713e602009-06-17 18:20:48 +0900156 /* Set write data */
157 pci_write_reg(chan, data, SH4A_PCIEPHYDOUTR);
158 pci_write_reg(chan, phyaddr, SH4A_PCIEPHYADRR);
159
160 phy_wait_for_ack(chan);
161
162 /* Clear command */
Paul Mundt53178d72010-08-20 16:04:59 +0900163 pci_write_reg(chan, 0, SH4A_PCIEPHYDOUTR);
Paul Mundt5713e602009-06-17 18:20:48 +0900164 pci_write_reg(chan, 0, SH4A_PCIEPHYADRR);
165
166 phy_wait_for_ack(chan);
Paul Mundt5713e602009-06-17 18:20:48 +0900167}
168
169static int phy_init(struct pci_channel *chan)
170{
Paul Mundt53178d72010-08-20 16:04:59 +0900171 unsigned long ctrl;
Paul Mundt5713e602009-06-17 18:20:48 +0900172 unsigned int timeout = 100;
173
Paul Mundt53178d72010-08-20 16:04:59 +0900174 /* Enable clock */
175 ctrl = pci_read_reg(chan, SH4A_PCIEPHYCTLR);
176 ctrl |= (1 << BITS_CKE);
177 pci_write_reg(chan, ctrl, SH4A_PCIEPHYCTLR);
178
Paul Mundt5713e602009-06-17 18:20:48 +0900179 /* Initialize the phy */
180 phy_write_reg(chan, 0x60, 0xf, 0x004b008b);
181 phy_write_reg(chan, 0x61, 0xf, 0x00007b41);
182 phy_write_reg(chan, 0x64, 0xf, 0x00ff4f00);
183 phy_write_reg(chan, 0x65, 0xf, 0x09070907);
184 phy_write_reg(chan, 0x66, 0xf, 0x00000010);
185 phy_write_reg(chan, 0x74, 0xf, 0x0007001c);
186 phy_write_reg(chan, 0x79, 0xf, 0x01fc000d);
Paul Mundt53178d72010-08-20 16:04:59 +0900187 phy_write_reg(chan, 0xb0, 0xf, 0x00000610);
Paul Mundt5713e602009-06-17 18:20:48 +0900188
189 /* Deassert Standby */
Paul Mundt53178d72010-08-20 16:04:59 +0900190 phy_write_reg(chan, 0x67, 0x1, 0x00000400);
191
192 /* Disable clock */
193 ctrl = pci_read_reg(chan, SH4A_PCIEPHYCTLR);
194 ctrl &= ~(1 << BITS_CKE);
195 pci_write_reg(chan, ctrl, SH4A_PCIEPHYCTLR);
Paul Mundt5713e602009-06-17 18:20:48 +0900196
197 while (timeout--) {
198 if (pci_read_reg(chan, SH4A_PCIEPHYSR))
199 return 0;
200
201 udelay(100);
202 }
203
204 return -ETIMEDOUT;
205}
206
Paul Mundt2dbfa1e2010-09-07 16:11:04 +0900207static void pcie_reset(struct sh7786_pcie_port *port)
208{
209 struct pci_channel *chan = port->hose;
210
211 pci_write_reg(chan, 1, SH4A_PCIESRSTR);
212 pci_write_reg(chan, 0, SH4A_PCIETCTLR);
213 pci_write_reg(chan, 0, SH4A_PCIESRSTR);
214 pci_write_reg(chan, 0, SH4A_PCIETXVC0SR);
215}
216
Paul Mundt5713e602009-06-17 18:20:48 +0900217static int pcie_init(struct sh7786_pcie_port *port)
218{
219 struct pci_channel *chan = port->hose;
220 unsigned int data;
Paul Mundt7578a4c2010-02-10 16:00:58 +0900221 phys_addr_t memphys;
222 size_t memsize;
Paul Mundtda03a632010-09-07 17:03:10 +0900223 int ret, i, win;
Paul Mundt5713e602009-06-17 18:20:48 +0900224
225 /* Begin initialization */
Paul Mundt2dbfa1e2010-09-07 16:11:04 +0900226 pcie_reset(port);
Paul Mundt5713e602009-06-17 18:20:48 +0900227
228 /* Initialize as type1. */
229 data = pci_read_reg(chan, SH4A_PCIEPCICONF3);
230 data &= ~(0x7f << 16);
231 data |= PCI_HEADER_TYPE_BRIDGE << 16;
232 pci_write_reg(chan, data, SH4A_PCIEPCICONF3);
233
234 /* Initialize default capabilities. */
235 data = pci_read_reg(chan, SH4A_PCIEEXPCAP0);
236 data &= ~(PCI_EXP_FLAGS_TYPE << 16);
237
238 if (port->endpoint)
239 data |= PCI_EXP_TYPE_ENDPOINT << 20;
240 else
241 data |= PCI_EXP_TYPE_ROOT_PORT << 20;
242
243 data |= PCI_CAP_ID_EXP;
244 pci_write_reg(chan, data, SH4A_PCIEEXPCAP0);
245
Paul Mundt7578a4c2010-02-10 16:00:58 +0900246 /* Enable data link layer active state reporting */
247 pci_write_reg(chan, PCI_EXP_LNKCAP_DLLLARC, SH4A_PCIEEXPCAP3);
248
249 /* Enable extended sync and ASPM L0s support */
Paul Mundt5713e602009-06-17 18:20:48 +0900250 data = pci_read_reg(chan, SH4A_PCIEEXPCAP4);
Paul Mundt7578a4c2010-02-10 16:00:58 +0900251 data &= ~PCI_EXP_LNKCTL_ASPMC;
252 data |= PCI_EXP_LNKCTL_ES | 1;
Paul Mundt5713e602009-06-17 18:20:48 +0900253 pci_write_reg(chan, data, SH4A_PCIEEXPCAP4);
254
Paul Mundt7578a4c2010-02-10 16:00:58 +0900255 /* Write out the physical slot number */
256 data = pci_read_reg(chan, SH4A_PCIEEXPCAP5);
257 data &= ~PCI_EXP_SLTCAP_PSN;
258 data |= (port->index + 1) << 19;
259 pci_write_reg(chan, data, SH4A_PCIEEXPCAP5);
260
Paul Mundt5713e602009-06-17 18:20:48 +0900261 /* Set the completion timer timeout to the maximum 32ms. */
262 data = pci_read_reg(chan, SH4A_PCIETLCTLR);
Paul Mundt7578a4c2010-02-10 16:00:58 +0900263 data &= ~0x3f00;
Paul Mundt5713e602009-06-17 18:20:48 +0900264 data |= 0x32 << 8;
265 pci_write_reg(chan, data, SH4A_PCIETLCTLR);
266
267 /*
268 * Set fast training sequences to the maximum 255,
269 * and enable MAC data scrambling.
270 */
271 data = pci_read_reg(chan, SH4A_PCIEMACCTLR);
272 data &= ~PCIEMACCTLR_SCR_DIS;
273 data |= (0xff << 16);
274 pci_write_reg(chan, data, SH4A_PCIEMACCTLR);
275
Paul Mundt7578a4c2010-02-10 16:00:58 +0900276 memphys = __pa(memory_start);
277 memsize = roundup_pow_of_two(memory_end - memory_start);
278
279 /*
280 * If there's more than 512MB of memory, we need to roll over to
281 * LAR1/LAMR1.
282 */
283 if (memsize > SZ_512M) {
284 __raw_writel(memphys + SZ_512M, chan->reg_base + SH4A_PCIELAR1);
285 __raw_writel(((memsize - SZ_512M) - SZ_256) | 1,
286 chan->reg_base + SH4A_PCIELAMR1);
287 memsize = SZ_512M;
288 } else {
289 /*
290 * Otherwise just zero it out and disable it.
291 */
292 __raw_writel(0, chan->reg_base + SH4A_PCIELAR1);
293 __raw_writel(0, chan->reg_base + SH4A_PCIELAMR1);
294 }
295
296 /*
297 * LAR0/LAMR0 covers up to the first 512MB, which is enough to
298 * cover all of lowmem on most platforms.
299 */
300 __raw_writel(memphys, chan->reg_base + SH4A_PCIELAR0);
301 __raw_writel((memsize - SZ_256) | 1, chan->reg_base + SH4A_PCIELAMR0);
302
Paul Mundt53178d72010-08-20 16:04:59 +0900303 __raw_writel(memphys, chan->reg_base + SH4A_PCIEPCICONF4);
304 __raw_writel(0, chan->reg_base + SH4A_PCIEPCICONF5);
305
Paul Mundt5713e602009-06-17 18:20:48 +0900306 /* Finish initialization */
307 data = pci_read_reg(chan, SH4A_PCIETCTLR);
308 data |= 0x1;
309 pci_write_reg(chan, data, SH4A_PCIETCTLR);
310
311 /* Enable DL_Active Interrupt generation */
312 data = pci_read_reg(chan, SH4A_PCIEDLINTENR);
313 data |= PCIEDLINTENR_DLL_ACT_ENABLE;
314 pci_write_reg(chan, data, SH4A_PCIEDLINTENR);
315
316 /* Disable MAC data scrambling. */
317 data = pci_read_reg(chan, SH4A_PCIEMACCTLR);
318 data |= PCIEMACCTLR_SCR_DIS | (0xff << 16);
319 pci_write_reg(chan, data, SH4A_PCIEMACCTLR);
320
321 ret = pci_wait_for_irq(chan, MASK_INT_TX_CTRL);
322 if (unlikely(ret != 0))
323 return -ENODEV;
324
Paul Mundt7578a4c2010-02-10 16:00:58 +0900325 data = pci_read_reg(chan, SH4A_PCIEPCICONF1);
326 data &= ~(PCI_STATUS_DEVSEL_MASK << 16);
327 data |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
328 (PCI_STATUS_CAP_LIST | PCI_STATUS_DEVSEL_FAST) << 16;
329 pci_write_reg(chan, data, SH4A_PCIEPCICONF1);
330
Paul Mundt5713e602009-06-17 18:20:48 +0900331 pci_write_reg(chan, 0x80888000, SH4A_PCIETXVC0DCTLR);
332 pci_write_reg(chan, 0x00222000, SH4A_PCIERXVC0DCTLR);
Paul Mundt5713e602009-06-17 18:20:48 +0900333
334 wmb();
335
336 data = pci_read_reg(chan, SH4A_PCIEMACSR);
337 printk(KERN_NOTICE "PCI: PCIe#%d link width %d\n",
338 port->index, (data >> 20) & 0x3f);
339
Paul Mundtda03a632010-09-07 17:03:10 +0900340 for (i = win = 0; i < chan->nr_resources; i++) {
Paul Mundt7578a4c2010-02-10 16:00:58 +0900341 struct resource *res = chan->resources + i;
342 resource_size_t size;
343 u32 enable_mask;
344
Paul Mundtda03a632010-09-07 17:03:10 +0900345 /*
346 * We can't use the 32-bit mode windows in legacy 29-bit
347 * mode, so just skip them entirely.
348 */
349 if ((res->flags & IORESOURCE_MEM_32BIT) && __in_29bit_mode())
350 continue;
351
352 pci_write_reg(chan, 0x00000000, SH4A_PCIEPTCTLR(win));
Paul Mundt7578a4c2010-02-10 16:00:58 +0900353
354 size = resource_size(res);
355
356 /*
357 * The PAMR mask is calculated in units of 256kB, which
358 * keeps things pretty simple.
359 */
360 __raw_writel(((roundup_pow_of_two(size) / SZ_256K) - 1) << 18,
Paul Mundtda03a632010-09-07 17:03:10 +0900361 chan->reg_base + SH4A_PCIEPAMR(win));
Paul Mundt7578a4c2010-02-10 16:00:58 +0900362
Paul Mundtda03a632010-09-07 17:03:10 +0900363 pci_write_reg(chan, res->start, SH4A_PCIEPARL(win));
364 pci_write_reg(chan, 0x00000000, SH4A_PCIEPARH(win));
Paul Mundt7578a4c2010-02-10 16:00:58 +0900365
366 enable_mask = MASK_PARE;
367 if (res->flags & IORESOURCE_IO)
368 enable_mask |= MASK_SPC;
369
Paul Mundtda03a632010-09-07 17:03:10 +0900370 pci_write_reg(chan, enable_mask, SH4A_PCIEPTCTLR(win));
371
372 win++;
Paul Mundt7578a4c2010-02-10 16:00:58 +0900373 }
Paul Mundt5713e602009-06-17 18:20:48 +0900374
375 return 0;
376}
377
378int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
379{
380 return 71;
381}
382
383static int sh7786_pcie_core_init(void)
384{
385 /* Return the number of ports */
386 return test_mode_pin(MODE_PIN12) ? 3 : 2;
387}
388
389static int __devinit sh7786_pcie_init_hw(struct sh7786_pcie_port *port)
390{
391 int ret;
392
393 ret = phy_init(port->hose);
394 if (unlikely(ret < 0))
395 return ret;
396
397 /*
398 * Check if we are configured in endpoint or root complex mode,
399 * this is a fixed pin setting that applies to all PCIe ports.
400 */
401 port->endpoint = test_mode_pin(MODE_PIN11);
402
403 ret = pcie_init(port);
404 if (unlikely(ret < 0))
405 return ret;
406
Paul Mundtbcf39352010-02-01 13:11:25 +0900407 return register_pci_controller(port->hose);
Paul Mundt5713e602009-06-17 18:20:48 +0900408}
409
410static struct sh7786_pcie_hwops sh7786_65nm_pcie_hwops __initdata = {
411 .core_init = sh7786_pcie_core_init,
412 .port_init_hw = sh7786_pcie_init_hw,
413};
414
415static int __init sh7786_pcie_init(void)
416{
417 int ret = 0, i;
418
419 printk(KERN_NOTICE "PCI: Starting intialization.\n");
420
421 sh7786_pcie_hwops = &sh7786_65nm_pcie_hwops;
422
423 nr_ports = sh7786_pcie_hwops->core_init();
424 BUG_ON(nr_ports > ARRAY_SIZE(sh7786_pci_channels));
425
426 if (unlikely(nr_ports == 0))
427 return -ENODEV;
428
429 sh7786_pcie_ports = kzalloc(nr_ports * sizeof(struct sh7786_pcie_port),
430 GFP_KERNEL);
431 if (unlikely(!sh7786_pcie_ports))
432 return -ENOMEM;
433
434 printk(KERN_NOTICE "PCI: probing %d ports.\n", nr_ports);
435
436 for (i = 0; i < nr_ports; i++) {
437 struct sh7786_pcie_port *port = sh7786_pcie_ports + i;
438
439 port->index = i;
440 port->hose = sh7786_pci_channels + i;
Paul Mundt7561f2d2010-02-08 16:36:56 +0900441 port->hose->io_map_base = port->hose->resources[0].start;
Paul Mundt5713e602009-06-17 18:20:48 +0900442
443 ret |= sh7786_pcie_hwops->port_init_hw(port);
444 }
445
446 if (unlikely(ret))
447 return ret;
448
449 return 0;
450}
451arch_initcall(sh7786_pcie_init);