minor kernel config sync
[openwrt/svn-archive/archive.git] / target / linux / brcm47xx-2.6 / files / drivers / ssb / driver_pci / pcicore.c
1 /*
2 * Sonics Silicon Backplane
3 * Broadcom PCI-core driver
4 *
5 * Copyright 2005, Broadcom Corporation
6 * Copyright 2006, 2007, Michael Buesch <mb@bu3sch.de>
7 *
8 * Licensed under the GNU/GPL. See COPYING for details.
9 */
10
11 #include <linux/ssb/ssb.h>
12 #include <linux/pci.h>
13 #include <linux/delay.h>
14
15 #include "../ssb_private.h"
16
17 static inline
18 u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset)
19 {
20 return ssb_read32(pc->dev, offset);
21 }
22
23 static inline
24 void pcicore_write32(struct ssb_pcicore *pc, u16 offset, u32 value)
25 {
26 ssb_write32(pc->dev, offset, value);
27 }
28
29 /**************************************************
30 * Code for hostmode operation.
31 **************************************************/
32
33 #ifdef CONFIG_SSB_PCICORE_HOSTMODE
34
35 #include <asm/paccess.h>
36 /* Read the bus and catch bus exceptions. This is MIPS specific. */
37 #define mips_busprobe(val, addr) get_dbe((val), (addr))
38
39 /* Assume one-hot slot wiring */
40 #define SSB_PCI_SLOT_MAX 16
41
42 /* Global lock is OK, as we won't have more than one extpci anyway. */
43 static DEFINE_SPINLOCK(cfgspace_lock);
44 /* Core to access the external PCI config space. Can only have one. */
45 static struct ssb_pcicore *extpci_core;
46
47 u32 pci_iobase = 0x100;
48 u32 pci_membase = SSB_PCI_DMA;
49
50 int pcibios_plat_dev_init(struct pci_dev *d)
51 {
52 struct resource *res;
53 int pos, size;
54 u32 *base;
55
56 printk("PCI: Fixing up device %s\n", pci_name(d));
57
58 /* Fix up resource bases */
59 for (pos = 0; pos < 6; pos++) {
60 res = &d->resource[pos];
61 base = ((res->flags & IORESOURCE_IO) ? &pci_iobase : &pci_membase);
62 if (res->end) {
63 size = res->end - res->start + 1;
64 if (*base & (size - 1))
65 *base = (*base + size) & ~(size - 1);
66 res->start = *base;
67 res->end = res->start + size - 1;
68 *base += size;
69 pci_write_config_dword(d, PCI_BASE_ADDRESS_0 + (pos << 2), res->start);
70 }
71 /* Fix up PCI bridge BAR0 only */
72 if (d->bus->number == 0 && PCI_SLOT(d->devfn) == 0)
73 break;
74 }
75 /* Fix up interrupt lines */
76 d->irq = ssb_mips_irq(extpci_core->dev) + 2;
77 pci_write_config_byte(d, PCI_INTERRUPT_LINE, d->irq);
78
79 return 0;
80 }
81
82 static void __init ssb_fixup_pcibridge(struct pci_dev *dev)
83 {
84 if (dev->bus->number != 0 || PCI_SLOT(dev->devfn) != 0)
85 return;
86
87 printk("PCI: fixing up bridge\n");
88
89 /* Enable PCI bridge bus mastering and memory space */
90 pci_set_master(dev);
91 pcibios_enable_device(dev, ~0);
92
93 /* Enable PCI bridge BAR1 prefetch and burst */
94 pci_write_config_dword(dev, SSB_BAR1_CONTROL, 3);
95
96 /* Make sure our latency is high enough to handle the devices behind us */
97 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0xa8);
98 }
99 DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, ssb_fixup_pcibridge);
100
101 int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
102 {
103 return ssb_mips_irq(extpci_core->dev) + 2;
104 }
105
106 static u32 get_cfgspace_addr(struct ssb_pcicore *pc,
107 unsigned int bus, unsigned int dev,
108 unsigned int func, unsigned int off)
109 {
110 u32 addr = 0;
111 u32 tmp;
112
113 if (unlikely(pc->cardbusmode && dev > 1))
114 goto out;
115 if (bus == 0) {//FIXME busnumber ok?
116 /* Type 0 transaction */
117 if (unlikely(dev >= SSB_PCI_SLOT_MAX))
118 goto out;
119 /* Slide the window */
120 tmp = SSB_PCICORE_SBTOPCI_CFG0;
121 tmp |= ((1 << (dev + 16)) & SSB_PCICORE_SBTOPCI1_MASK);
122 pcicore_write32(pc, SSB_PCICORE_SBTOPCI1, tmp);
123 /* Calculate the address */
124 addr = SSB_PCI_CFG;
125 addr |= ((1 << (dev + 16)) & ~SSB_PCICORE_SBTOPCI1_MASK);
126 addr |= (func << 8);
127 addr |= (off & ~3);
128 } else {
129 /* Type 1 transaction */
130 pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
131 SSB_PCICORE_SBTOPCI_CFG1);
132 /* Calculate the address */
133 addr = SSB_PCI_CFG;
134 addr |= (bus << 16);
135 addr |= (dev << 11);
136 addr |= (func << 8);
137 addr |= (off & ~3);
138 }
139 out:
140 return addr;
141 }
142
143 static int ssb_extpci_read_config(struct ssb_pcicore *pc,
144 unsigned int bus, unsigned int dev,
145 unsigned int func, unsigned int off,
146 void *buf, int len)
147 {
148 int err = -EINVAL;
149 u32 addr, val;
150 void __iomem *mmio;
151
152 assert(pc->hostmode);
153 if (unlikely(len != 1 && len != 2 && len != 4))
154 goto out;
155 addr = get_cfgspace_addr(pc, bus, dev, func, off);
156 if (unlikely(!addr))
157 goto out;
158 err = -ENOMEM;
159 mmio = ioremap_nocache(addr, len);
160 if (!mmio)
161 goto out;
162
163 if (mips_busprobe(val, (u32 *) mmio)) {
164 val = 0xffffffff;
165 goto unmap;
166 }
167
168 val >>= (8 * (off & 3));
169
170 switch (len) {
171 case 1:
172 *((u8 *)buf) = (u8)val;
173 break;
174 case 2:
175 *((u16 *)buf) = (u16)val;
176 break;
177 case 4:
178 *((u32 *)buf) = (u32)val;
179 break;
180 }
181 err = 0;
182 unmap:
183 iounmap(mmio);
184 out:
185 return err;
186 }
187
188 static int ssb_extpci_write_config(struct ssb_pcicore *pc,
189 unsigned int bus, unsigned int dev,
190 unsigned int func, unsigned int off,
191 const void *buf, int len)
192 {
193 int err = -EINVAL;
194 u32 addr, val = 0;
195 void __iomem *mmio;
196
197 assert(pc->hostmode);
198 if (unlikely(len != 1 && len != 2 && len != 4))
199 goto out;
200 addr = get_cfgspace_addr(pc, bus, dev, func, off);
201 if (unlikely(!addr))
202 goto out;
203 err = -ENOMEM;
204 mmio = ioremap_nocache(addr, len);
205 if (!mmio)
206 goto out;
207
208 if (mips_busprobe(val, (u32 *) mmio)) {
209 val = 0xffffffff;
210 goto unmap;
211 }
212
213 switch (len) {
214 case 1:
215 val &= ~(0xFF << (8 * (off & 3)));
216 val |= *((const u8 *)buf) << (8 * (off & 3));
217 break;
218 case 2:
219 val &= ~(0xFFFF << (8 * (off & 3)));
220 val |= *((const u16 *)buf) << (8 * (off & 3));
221 break;
222 case 4:
223 val = *((const u32 *)buf);
224 break;
225 }
226 writel(val, mmio);
227
228 err = 0;
229 unmap:
230 iounmap(mmio);
231 out:
232 return err;
233 }
234
235 static int ssb_pcicore_read_config(struct pci_bus *bus, unsigned int devfn,
236 int reg, int size, u32 *val)
237 {
238 unsigned long flags;
239 int err;
240
241 spin_lock_irqsave(&cfgspace_lock, flags);
242 err = ssb_extpci_read_config(extpci_core, bus->number, PCI_SLOT(devfn),
243 PCI_FUNC(devfn), reg, val, size);
244 spin_unlock_irqrestore(&cfgspace_lock, flags);
245
246 return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
247 }
248
249 static int ssb_pcicore_write_config(struct pci_bus *bus, unsigned int devfn,
250 int reg, int size, u32 val)
251 {
252 unsigned long flags;
253 int err;
254
255 spin_lock_irqsave(&cfgspace_lock, flags);
256 err = ssb_extpci_write_config(extpci_core, bus->number, PCI_SLOT(devfn),
257 PCI_FUNC(devfn), reg, &val, size);
258 spin_unlock_irqrestore(&cfgspace_lock, flags);
259
260 return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
261 }
262
263 static struct pci_ops ssb_pcicore_pciops = {
264 .read = ssb_pcicore_read_config,
265 .write = ssb_pcicore_write_config,
266 };
267
268 static struct resource ssb_pcicore_mem_resource = {
269 .name = "SSB PCIcore external memory",
270 .start = SSB_PCI_DMA,
271 .end = (u32)SSB_PCI_DMA + (u32)SSB_PCI_DMA_SZ - 1,
272 .flags = IORESOURCE_MEM,
273 };
274
275 static struct resource ssb_pcicore_io_resource = {
276 .name = "SSB PCIcore external I/O",
277 .start = 0x100,
278 .end = 0x7FF,
279 .flags = IORESOURCE_IO,
280 };
281
282 static struct pci_controller ssb_pcicore_controller = {
283 .pci_ops = &ssb_pcicore_pciops,
284 .io_resource = &ssb_pcicore_io_resource,
285 .mem_resource = &ssb_pcicore_mem_resource,
286 .mem_offset = 0x24000000,
287 };
288
289 static void ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
290 {
291 u32 val;
292
293 assert(!extpci_core);
294 extpci_core = pc;
295
296 ssb_dprintk(KERN_INFO PFX "PCIcore in host mode found\n");
297 /* Reset devices on the external PCI bus */
298 val = SSB_PCICORE_CTL_RST_OE;
299 val |= SSB_PCICORE_CTL_CLK_OE;
300 pcicore_write32(pc, SSB_PCICORE_CTL, val);
301 val |= SSB_PCICORE_CTL_CLK; /* Clock on */
302 pcicore_write32(pc, SSB_PCICORE_CTL, val);
303 udelay(150);
304 val |= SSB_PCICORE_CTL_RST; /* Deassert RST# */
305 pcicore_write32(pc, SSB_PCICORE_CTL, val);
306 val = SSB_PCICORE_ARBCTL_INTERN;
307 pcicore_write32(pc, SSB_PCICORE_ARBCTL, val);
308 udelay(1);
309
310 //TODO cardbus mode
311
312 /* 64MB I/O window */
313 pcicore_write32(pc, SSB_PCICORE_SBTOPCI0,
314 SSB_PCICORE_SBTOPCI_IO);
315 /* 64MB config space */
316 pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
317 SSB_PCICORE_SBTOPCI_CFG0);
318 /* 1GB memory window */
319 pcicore_write32(pc, SSB_PCICORE_SBTOPCI2,
320 SSB_PCICORE_SBTOPCI_MEM | SSB_PCI_DMA);
321
322 /* Enable PCI bridge BAR0 prefetch and burst */
323 val = PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
324 ssb_extpci_write_config(pc, 0, 0, 0, PCI_COMMAND, &val, 4);
325
326 /* Enable PCI interrupts */
327 pcicore_write32(pc, SSB_PCICORE_IMASK,
328 SSB_PCICORE_IMASK_INTA);
329
330 /* Ok, ready to run, register it to the system.
331 * The following needs change, if we want to port hostmode
332 * to non-MIPS platform. */
333 set_io_port_base((unsigned long)ioremap_nocache(SSB_PCI_MEM, 0x04000000));
334 mdelay(300);
335 register_pci_controller(&ssb_pcicore_controller);
336 }
337
338 static int pcicore_is_in_hostmode(struct ssb_pcicore *pc)
339 {
340 struct ssb_bus *bus = pc->dev->bus;
341 u16 chipid_top;
342 u32 tmp;
343
344 chipid_top = (bus->chip_id & 0xFF00);
345 if (chipid_top != 0x4700 &&
346 chipid_top != 0x5300)
347 return 0;
348
349 if (bus->sprom.r1.boardflags_lo & SSB_PCICORE_BFL_NOPCI)
350 return 0;
351
352 /* The 200-pin BCM4712 package does not bond out PCI. Even when
353 * PCI is bonded out, some boards may leave the pins floating. */
354 if (bus->chip_id == 0x4712) {
355 if (bus->chip_package == SSB_CHIPPACK_BCM4712S)
356 return 0;
357 if (bus->chip_package == SSB_CHIPPACK_BCM4712M)
358 return 0;
359 }
360 if (bus->chip_id == 0x5350)
361 return 0;
362
363 return !mips_busprobe(tmp, (u32 *) (bus->mmio + (pc->dev->core_index * SSB_CORE_SIZE)));
364 }
365 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
366
367
368 /**************************************************
369 * Generic and Clientmode operation code.
370 **************************************************/
371
372 static void ssb_pcicore_init_clientmode(struct ssb_pcicore *pc)
373 {
374 /* Disable PCI interrupts. */
375 ssb_write32(pc->dev, SSB_INTVEC, 0);
376 }
377
378 void ssb_pcicore_init(struct ssb_pcicore *pc)
379 {
380 struct ssb_device *dev = pc->dev;
381 struct ssb_bus *bus;
382
383 if (!dev)
384 return;
385 bus = dev->bus;
386 ssb_device_enable(dev, 0);
387
388 #ifdef CONFIG_SSB_PCICORE_HOSTMODE
389 pc->hostmode = pcicore_is_in_hostmode(pc);
390 if (pc->hostmode)
391 ssb_pcicore_init_hostmode(pc);
392 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
393 if (!pc->hostmode)
394 ssb_pcicore_init_clientmode(pc);
395 }
396
397 static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address)
398 {
399 pcicore_write32(pc, 0x130, address);
400 return pcicore_read32(pc, 0x134);
401 }
402
403 static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data)
404 {
405 pcicore_write32(pc, 0x130, address);
406 pcicore_write32(pc, 0x134, data);
407 }
408
409 static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
410 u8 address, u16 data)
411 {
412 const u16 mdio_control = 0x128;
413 const u16 mdio_data = 0x12C;
414 u32 v;
415 int i;
416
417 v = 0x80; /* Enable Preamble Sequence */
418 v |= 0x2; /* MDIO Clock Divisor */
419 pcicore_write32(pc, mdio_control, v);
420
421 v = (1 << 30); /* Start of Transaction */
422 v |= (1 << 28); /* Write Transaction */
423 v |= (1 << 17); /* Turnaround */
424 v |= (u32)device << 22;
425 v |= (u32)address << 18;
426 v |= data;
427 pcicore_write32(pc, mdio_data, v);
428 udelay(10);
429 for (i = 0; i < 10; i++) {
430 v = pcicore_read32(pc, mdio_control);
431 if (v & 0x100 /* Trans complete */)
432 break;
433 msleep(1);
434 }
435 pcicore_write32(pc, mdio_control, 0);
436 }
437
438 static void ssb_broadcast_value(struct ssb_device *dev,
439 u32 address, u32 data)
440 {
441 /* This is used for both, PCI and ChipCommon core, so be careful. */
442 BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR);
443 BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA);
444
445 ssb_write32(dev, SSB_PCICORE_BCAST_ADDR, address);
446 ssb_read32(dev, SSB_PCICORE_BCAST_ADDR); /* flush */
447 ssb_write32(dev, SSB_PCICORE_BCAST_DATA, data);
448 ssb_read32(dev, SSB_PCICORE_BCAST_DATA); /* flush */
449 }
450
451 static void ssb_commit_settings(struct ssb_bus *bus)
452 {
453 struct ssb_device *dev;
454
455 dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev;
456 assert(dev);
457 /* This forces an update of the cached registers. */
458 ssb_broadcast_value(dev, 0xFD8, 0);
459 }
460
461 int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc,
462 struct ssb_device *dev)
463 {
464 struct ssb_device *pdev = pc->dev;
465 struct ssb_bus *bus;
466 int err = 0;
467 u32 tmp;
468
469 might_sleep();
470
471 if (!pdev)
472 goto out;
473 bus = pdev->bus;
474
475 /* Enable interrupts for this device. */
476 if (bus->host_pci &&
477 ((pdev->id.revision >= 6) || (pdev->id.coreid == SSB_DEV_PCIE))) {
478 u32 coremask;
479
480 /* Calculate the "coremask" for the device. */
481 coremask = (1 << dev->core_index);
482
483 err = pci_read_config_dword(bus->host_pci, SSB_PCI_IRQMASK, &tmp);
484 if (err)
485 goto out;
486 tmp |= coremask << 8;
487 err = pci_write_config_dword(bus->host_pci, SSB_PCI_IRQMASK, tmp);
488 if (err)
489 goto out;
490 } else {
491 u32 intvec;
492
493 intvec = ssb_read32(pdev, SSB_INTVEC);
494 tmp = ssb_read32(dev, SSB_TPSFLAG);
495 tmp &= SSB_TPSFLAG_BPFLAG;
496 intvec |= tmp;
497 ssb_write32(pdev, SSB_INTVEC, intvec);
498 }
499
500 /* Setup PCIcore operation. */
501 if (pc->setup_done)
502 goto out;
503 if (pdev->id.coreid == SSB_DEV_PCI) {
504 tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
505 tmp |= SSB_PCICORE_SBTOPCI_PREF;
506 tmp |= SSB_PCICORE_SBTOPCI_BURST;
507 pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
508
509 if (pdev->id.revision < 5) {
510 tmp = ssb_read32(pdev, SSB_IMCFGLO);
511 tmp &= ~SSB_IMCFGLO_SERTO;
512 tmp |= 2;
513 tmp &= ~SSB_IMCFGLO_REQTO;
514 tmp |= 3 << SSB_IMCFGLO_REQTO_SHIFT;
515 ssb_write32(pdev, SSB_IMCFGLO, tmp);
516 ssb_commit_settings(bus);
517 } else if (pdev->id.revision >= 11) {
518 tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
519 tmp |= SSB_PCICORE_SBTOPCI_MRM;
520 pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
521 }
522 } else {
523 assert(pdev->id.coreid == SSB_DEV_PCIE);
524 //TODO: Better make defines for all these magic PCIE values.
525 if ((pdev->id.revision == 0) || (pdev->id.revision == 1)) {
526 /* TLP Workaround register. */
527 tmp = ssb_pcie_read(pc, 0x4);
528 tmp |= 0x8;
529 ssb_pcie_write(pc, 0x4, tmp);
530 }
531 if (pdev->id.revision == 0) {
532 const u8 serdes_rx_device = 0x1F;
533
534 ssb_pcie_mdio_write(pc, serdes_rx_device,
535 2 /* Timer */, 0x8128);
536 ssb_pcie_mdio_write(pc, serdes_rx_device,
537 6 /* CDR */, 0x0100);
538 ssb_pcie_mdio_write(pc, serdes_rx_device,
539 7 /* CDR BW */, 0x1466);
540 } else if (pdev->id.revision == 1) {
541 /* DLLP Link Control register. */
542 tmp = ssb_pcie_read(pc, 0x100);
543 tmp |= 0x40;
544 ssb_pcie_write(pc, 0x100, tmp);
545 }
546 }
547 pc->setup_done = 1;
548 out:
549 return err;
550 }
551 EXPORT_SYMBOL(ssb_pcicore_dev_irqvecs_enable);