2 * Sonics Silicon Backplane
5 * Copyright 2005, Broadcom Corporation
6 * Copyright 2006, 2007, Michael Buesch <mb@bu3sch.de>
8 * Licensed under the GNU/GPL. See COPYING for details.
11 #include "ssb_private.h"
13 #include <linux/delay.h>
15 #include <linux/ssb/ssb.h>
16 #include <linux/ssb/ssb_regs.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/pci.h>
20 #include <pcmcia/cs_types.h>
21 #include <pcmcia/cs.h>
22 #include <pcmcia/cistpl.h>
23 #include <pcmcia/ds.h>
26 MODULE_DESCRIPTION("Sonics Silicon Backplane driver");
27 MODULE_LICENSE("GPL");
30 /* Temporary list of yet-to-be-attached buses */
31 static LIST_HEAD(attach_queue);
32 /* List if running buses */
33 static LIST_HEAD(buses);
34 /* Software ID counter */
35 static unsigned int next_busnumber;
36 /* buses_mutes locks the two buslists and the next_busnumber.
37 * Don't lock this directly, but use ssb_buses_[un]lock() below. */
38 static DEFINE_MUTEX(buses_mutex);
40 /* There are differences in the codeflow, if the bus is
41 * initialized from early boot, as various needed services
42 * are not available early. This is a mechanism to delay
43 * these initializations to after early boot has finished.
44 * It's also used to avoid mutex locking, as that's not
45 * available and needed early. */
46 static bool ssb_is_early_boot = 1;
48 static void ssb_buses_lock(void);
49 static void ssb_buses_unlock(void);
52 #ifdef CONFIG_SSB_PCIHOST
53 struct ssb_bus *ssb_pci_dev_to_bus(struct pci_dev *pdev)
58 list_for_each_entry(bus, &buses, list) {
59 if (bus->bustype == SSB_BUSTYPE_PCI &&
60 bus->host_pci == pdev)
69 #endif /* CONFIG_SSB_PCIHOST */
71 static struct ssb_device *ssb_device_get(struct ssb_device *dev)
78 static void ssb_device_put(struct ssb_device *dev)
84 static int ssb_bus_resume(struct ssb_bus *bus)
88 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
89 err = ssb_pcmcia_init(bus);
91 /* No need to disable XTAL, as we don't have one on PCMCIA. */
94 ssb_chipco_resume(&bus->chipco);
99 static int ssb_device_resume(struct device *dev)
101 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
102 struct ssb_driver *ssb_drv;
107 if (bus->suspend_cnt == bus->nr_devices) {
108 err = ssb_bus_resume(bus);
114 ssb_drv = drv_to_ssb_drv(dev->driver);
115 if (ssb_drv && ssb_drv->resume)
116 err = ssb_drv->resume(ssb_dev);
124 static void ssb_bus_suspend(struct ssb_bus *bus, pm_message_t state)
126 ssb_chipco_suspend(&bus->chipco, state);
127 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
129 /* Reset HW state information in memory, so that HW is
130 * completely reinitialized on resume. */
131 bus->mapped_device = NULL;
132 #ifdef CONFIG_SSB_DRIVER_PCICORE
133 bus->pcicore.setup_done = 0;
135 #ifdef CONFIG_SSB_DEBUG
140 static int ssb_device_suspend(struct device *dev, pm_message_t state)
142 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
143 struct ssb_driver *ssb_drv;
148 ssb_drv = drv_to_ssb_drv(dev->driver);
149 if (ssb_drv && ssb_drv->suspend)
150 err = ssb_drv->suspend(ssb_dev, state);
157 if (bus->suspend_cnt == bus->nr_devices) {
158 /* All devices suspended. Shutdown the bus. */
159 ssb_bus_suspend(bus, state);
166 #ifdef CONFIG_SSB_PCIHOST
167 int ssb_devices_freeze(struct ssb_bus *bus)
169 struct ssb_device *dev;
170 struct ssb_driver *drv;
173 pm_message_t state = PMSG_FREEZE;
175 /* First check that we are capable to freeze all devices. */
176 for (i = 0; i < bus->nr_devices; i++) {
177 dev = &(bus->devices[i]);
180 !device_is_registered(dev->dev))
182 drv = drv_to_ssb_drv(dev->dev->driver);
186 /* Nope, can't suspend this one. */
190 /* Now suspend all devices */
191 for (i = 0; i < bus->nr_devices; i++) {
192 dev = &(bus->devices[i]);
195 !device_is_registered(dev->dev))
197 drv = drv_to_ssb_drv(dev->dev->driver);
200 err = drv->suspend(dev, state);
202 ssb_printk(KERN_ERR PFX "Failed to freeze device %s\n",
210 for (i--; i >= 0; i--) {
211 dev = &(bus->devices[i]);
214 !device_is_registered(dev->dev))
216 drv = drv_to_ssb_drv(dev->dev->driver);
225 int ssb_devices_thaw(struct ssb_bus *bus)
227 struct ssb_device *dev;
228 struct ssb_driver *drv;
232 for (i = 0; i < bus->nr_devices; i++) {
233 dev = &(bus->devices[i]);
236 !device_is_registered(dev->dev))
238 drv = drv_to_ssb_drv(dev->dev->driver);
241 if (SSB_WARN_ON(!drv->resume))
243 err = drv->resume(dev);
245 ssb_printk(KERN_ERR PFX "Failed to thaw device %s\n",
252 #endif /* CONFIG_SSB_PCIHOST */
254 static void ssb_device_shutdown(struct device *dev)
256 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
257 struct ssb_driver *ssb_drv;
261 ssb_drv = drv_to_ssb_drv(dev->driver);
262 if (ssb_drv && ssb_drv->shutdown)
263 ssb_drv->shutdown(ssb_dev);
266 static int ssb_device_remove(struct device *dev)
268 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
269 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
271 if (ssb_drv && ssb_drv->remove)
272 ssb_drv->remove(ssb_dev);
273 ssb_device_put(ssb_dev);
278 static int ssb_device_probe(struct device *dev)
280 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
281 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
284 ssb_device_get(ssb_dev);
285 if (ssb_drv && ssb_drv->probe)
286 err = ssb_drv->probe(ssb_dev, &ssb_dev->id);
288 ssb_device_put(ssb_dev);
293 static int ssb_match_devid(const struct ssb_device_id *tabid,
294 const struct ssb_device_id *devid)
296 if ((tabid->vendor != devid->vendor) &&
297 tabid->vendor != SSB_ANY_VENDOR)
299 if ((tabid->coreid != devid->coreid) &&
300 tabid->coreid != SSB_ANY_ID)
302 if ((tabid->revision != devid->revision) &&
303 tabid->revision != SSB_ANY_REV)
308 static int ssb_bus_match(struct device *dev, struct device_driver *drv)
310 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
311 struct ssb_driver *ssb_drv = drv_to_ssb_drv(drv);
312 const struct ssb_device_id *id;
314 for (id = ssb_drv->id_table;
315 id->vendor || id->coreid || id->revision;
317 if (ssb_match_devid(id, &ssb_dev->id))
318 return 1; /* found */
324 static int ssb_device_uevent(struct device *dev, struct kobj_uevent_env *env)
326 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
331 return add_uevent_var(env,
332 "MODALIAS=ssb:v%04Xid%04Xrev%02X",
333 ssb_dev->id.vendor, ssb_dev->id.coreid,
334 ssb_dev->id.revision);
337 static struct bus_type ssb_bustype = {
339 .match = ssb_bus_match,
340 .probe = ssb_device_probe,
341 .remove = ssb_device_remove,
342 .shutdown = ssb_device_shutdown,
343 .suspend = ssb_device_suspend,
344 .resume = ssb_device_resume,
345 .uevent = ssb_device_uevent,
348 static void ssb_buses_lock(void)
350 /* See the comment at the ssb_is_early_boot definition */
351 if (!ssb_is_early_boot)
352 mutex_lock(&buses_mutex);
355 static void ssb_buses_unlock(void)
357 /* See the comment at the ssb_is_early_boot definition */
358 if (!ssb_is_early_boot)
359 mutex_unlock(&buses_mutex);
362 static void ssb_devices_unregister(struct ssb_bus *bus)
364 struct ssb_device *sdev;
367 for (i = bus->nr_devices - 1; i >= 0; i--) {
368 sdev = &(bus->devices[i]);
370 device_unregister(sdev->dev);
374 void ssb_bus_unregister(struct ssb_bus *bus)
377 ssb_devices_unregister(bus);
378 list_del(&bus->list);
381 /* ssb_pcmcia_exit(bus); */
385 EXPORT_SYMBOL(ssb_bus_unregister);
387 static void ssb_release_dev(struct device *dev)
389 struct __ssb_dev_wrapper *devwrap;
391 devwrap = container_of(dev, struct __ssb_dev_wrapper, dev);
395 static int ssb_devices_register(struct ssb_bus *bus)
397 struct ssb_device *sdev;
399 struct __ssb_dev_wrapper *devwrap;
403 for (i = 0; i < bus->nr_devices; i++) {
404 sdev = &(bus->devices[i]);
406 /* We don't register SSB-system devices to the kernel,
407 * as the drivers for them are built into SSB. */
408 switch (sdev->id.coreid) {
409 case SSB_DEV_CHIPCOMMON:
414 case SSB_DEV_MIPS_3302:
419 devwrap = kzalloc(sizeof(*devwrap), GFP_KERNEL);
421 ssb_printk(KERN_ERR PFX
422 "Could not allocate device\n");
427 devwrap->sdev = sdev;
429 dev->release = ssb_release_dev;
430 dev->bus = &ssb_bustype;
431 snprintf(dev->bus_id, sizeof(dev->bus_id),
432 "ssb%u:%d", bus->busnumber, dev_idx);
434 switch (bus->bustype) {
435 case SSB_BUSTYPE_PCI:
436 #ifdef CONFIG_SSB_PCIHOST
437 sdev->irq = bus->host_pci->irq;
438 dev->parent = &bus->host_pci->dev;
441 case SSB_BUSTYPE_PCMCIA:
442 #ifdef CONFIG_SSB_PCMCIAHOST
443 sdev->irq = bus->host_pcmcia->irq.AssignedIRQ;
444 dev->parent = &bus->host_pcmcia->dev;
447 case SSB_BUSTYPE_SSB:
452 err = device_register(dev);
454 ssb_printk(KERN_ERR PFX
455 "Could not register %s\n",
457 /* Set dev to NULL to not unregister
458 * dev on error unwinding. */
468 /* Unwind the already registered devices. */
469 ssb_devices_unregister(bus);
473 /* Needs ssb_buses_lock() */
474 static int ssb_attach_queued_buses(void)
476 struct ssb_bus *bus, *n;
478 int drop_them_all = 0;
480 list_for_each_entry_safe(bus, n, &attach_queue, list) {
482 list_del(&bus->list);
485 /* Can't init the PCIcore in ssb_bus_register(), as that
486 * is too early in boot for embedded systems
487 * (no udelay() available). So do it here in attach stage.
489 err = ssb_bus_powerup(bus, 0);
492 ssb_pcicore_init(&bus->pcicore);
493 ssb_bus_may_powerdown(bus);
495 err = ssb_devices_register(bus);
499 list_del(&bus->list);
502 list_move_tail(&bus->list, &buses);
508 static u16 ssb_ssb_read16(struct ssb_device *dev, u16 offset)
510 struct ssb_bus *bus = dev->bus;
512 offset += dev->core_index * SSB_CORE_SIZE;
513 return readw(bus->mmio + offset);
516 static u32 ssb_ssb_read32(struct ssb_device *dev, u16 offset)
518 struct ssb_bus *bus = dev->bus;
520 offset += dev->core_index * SSB_CORE_SIZE;
521 return readl(bus->mmio + offset);
524 static void ssb_ssb_write16(struct ssb_device *dev, u16 offset, u16 value)
526 struct ssb_bus *bus = dev->bus;
528 offset += dev->core_index * SSB_CORE_SIZE;
529 writew(value, bus->mmio + offset);
532 static void ssb_ssb_write32(struct ssb_device *dev, u16 offset, u32 value)
534 struct ssb_bus *bus = dev->bus;
536 offset += dev->core_index * SSB_CORE_SIZE;
537 writel(value, bus->mmio + offset);
540 /* Ops for the plain SSB bus without a host-device (no PCI or PCMCIA). */
541 static const struct ssb_bus_ops ssb_ssb_ops = {
542 .read16 = ssb_ssb_read16,
543 .read32 = ssb_ssb_read32,
544 .write16 = ssb_ssb_write16,
545 .write32 = ssb_ssb_write32,
548 static int ssb_fetch_invariants(struct ssb_bus *bus,
549 ssb_invariants_func_t get_invariants)
551 struct ssb_init_invariants iv;
554 memset(&iv, 0, sizeof(iv));
555 err = get_invariants(bus, &iv);
558 memcpy(&bus->boardinfo, &iv.boardinfo, sizeof(iv.boardinfo));
559 memcpy(&bus->sprom, &iv.sprom, sizeof(iv.sprom));
560 bus->has_cardbus_slot = iv.has_cardbus_slot;
565 static int ssb_bus_register(struct ssb_bus *bus,
566 ssb_invariants_func_t get_invariants,
567 unsigned long baseaddr)
571 spin_lock_init(&bus->bar_lock);
572 INIT_LIST_HEAD(&bus->list);
573 #ifdef CONFIG_SSB_EMBEDDED
574 spin_lock_init(&bus->gpio_lock);
577 /* Powerup the bus */
578 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
582 bus->busnumber = next_busnumber;
583 /* Scan for devices (cores) */
584 err = ssb_bus_scan(bus, baseaddr);
586 goto err_disable_xtal;
588 /* Init PCI-host device (if any) */
589 err = ssb_pci_init(bus);
592 /* Init PCMCIA-host device (if any) */
593 err = ssb_pcmcia_init(bus);
597 /* Initialize basic system devices (if available) */
598 err = ssb_bus_powerup(bus, 0);
600 goto err_pcmcia_exit;
601 ssb_chipcommon_init(&bus->chipco);
602 ssb_mipscore_init(&bus->mipscore);
603 err = ssb_fetch_invariants(bus, get_invariants);
605 ssb_bus_may_powerdown(bus);
606 goto err_pcmcia_exit;
608 ssb_bus_may_powerdown(bus);
610 /* Queue it for attach.
611 * See the comment at the ssb_is_early_boot definition. */
612 list_add_tail(&bus->list, &attach_queue);
613 if (!ssb_is_early_boot) {
614 /* This is not early boot, so we must attach the bus now */
615 err = ssb_attach_queued_buses();
626 list_del(&bus->list);
628 /* ssb_pcmcia_exit(bus); */
635 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
639 #ifdef CONFIG_SSB_PCIHOST
640 int ssb_bus_pcibus_register(struct ssb_bus *bus,
641 struct pci_dev *host_pci)
645 bus->bustype = SSB_BUSTYPE_PCI;
646 bus->host_pci = host_pci;
647 bus->ops = &ssb_pci_ops;
649 err = ssb_bus_register(bus, ssb_pci_get_invariants, 0);
651 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found on "
652 "PCI device %s\n", host_pci->dev.bus_id);
657 EXPORT_SYMBOL(ssb_bus_pcibus_register);
658 #endif /* CONFIG_SSB_PCIHOST */
660 #ifdef CONFIG_SSB_PCMCIAHOST
661 int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
662 struct pcmcia_device *pcmcia_dev,
663 unsigned long baseaddr)
667 bus->bustype = SSB_BUSTYPE_PCMCIA;
668 bus->host_pcmcia = pcmcia_dev;
669 bus->ops = &ssb_pcmcia_ops;
671 err = ssb_bus_register(bus, ssb_pcmcia_get_invariants, baseaddr);
673 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found on "
674 "PCMCIA device %s\n", pcmcia_dev->devname);
679 EXPORT_SYMBOL(ssb_bus_pcmciabus_register);
680 #endif /* CONFIG_SSB_PCMCIAHOST */
682 int ssb_bus_ssbbus_register(struct ssb_bus *bus,
683 unsigned long baseaddr,
684 ssb_invariants_func_t get_invariants)
688 bus->bustype = SSB_BUSTYPE_SSB;
689 bus->ops = &ssb_ssb_ops;
691 err = ssb_bus_register(bus, get_invariants, baseaddr);
693 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found at "
694 "address 0x%08lX\n", baseaddr);
700 int __ssb_driver_register(struct ssb_driver *drv, struct module *owner)
702 drv->drv.name = drv->name;
703 drv->drv.bus = &ssb_bustype;
704 drv->drv.owner = owner;
706 return driver_register(&drv->drv);
708 EXPORT_SYMBOL(__ssb_driver_register);
710 void ssb_driver_unregister(struct ssb_driver *drv)
712 driver_unregister(&drv->drv);
714 EXPORT_SYMBOL(ssb_driver_unregister);
716 void ssb_set_devtypedata(struct ssb_device *dev, void *data)
718 struct ssb_bus *bus = dev->bus;
719 struct ssb_device *ent;
722 for (i = 0; i < bus->nr_devices; i++) {
723 ent = &(bus->devices[i]);
724 if (ent->id.vendor != dev->id.vendor)
726 if (ent->id.coreid != dev->id.coreid)
729 ent->devtypedata = data;
732 EXPORT_SYMBOL(ssb_set_devtypedata);
734 static u32 clkfactor_f6_resolve(u32 v)
736 /* map the magic values */
738 case SSB_CHIPCO_CLK_F6_2:
740 case SSB_CHIPCO_CLK_F6_3:
742 case SSB_CHIPCO_CLK_F6_4:
744 case SSB_CHIPCO_CLK_F6_5:
746 case SSB_CHIPCO_CLK_F6_6:
748 case SSB_CHIPCO_CLK_F6_7:
754 /* Calculate the speed the backplane would run at a given set of clockcontrol values */
755 u32 ssb_calc_clock_rate(u32 plltype, u32 n, u32 m)
757 u32 n1, n2, clock, m1, m2, m3, mc;
759 n1 = (n & SSB_CHIPCO_CLK_N1);
760 n2 = ((n & SSB_CHIPCO_CLK_N2) >> SSB_CHIPCO_CLK_N2_SHIFT);
763 case SSB_PLLTYPE_6: /* 100/200 or 120/240 only */
764 if (m & SSB_CHIPCO_CLK_T6_MMASK)
765 return SSB_CHIPCO_CLK_T6_M0;
766 return SSB_CHIPCO_CLK_T6_M1;
767 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
768 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
769 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
770 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
771 n1 = clkfactor_f6_resolve(n1);
772 n2 += SSB_CHIPCO_CLK_F5_BIAS;
774 case SSB_PLLTYPE_2: /* 48Mhz, 4 dividers */
775 n1 += SSB_CHIPCO_CLK_T2_BIAS;
776 n2 += SSB_CHIPCO_CLK_T2_BIAS;
777 SSB_WARN_ON(!((n1 >= 2) && (n1 <= 7)));
778 SSB_WARN_ON(!((n2 >= 5) && (n2 <= 23)));
780 case SSB_PLLTYPE_5: /* 25Mhz, 4 dividers */
787 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
788 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
789 clock = SSB_CHIPCO_CLK_BASE2 * n1 * n2;
792 clock = SSB_CHIPCO_CLK_BASE1 * n1 * n2;
797 m1 = (m & SSB_CHIPCO_CLK_M1);
798 m2 = ((m & SSB_CHIPCO_CLK_M2) >> SSB_CHIPCO_CLK_M2_SHIFT);
799 m3 = ((m & SSB_CHIPCO_CLK_M3) >> SSB_CHIPCO_CLK_M3_SHIFT);
800 mc = ((m & SSB_CHIPCO_CLK_MC) >> SSB_CHIPCO_CLK_MC_SHIFT);
803 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
804 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
805 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
806 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
807 m1 = clkfactor_f6_resolve(m1);
808 if ((plltype == SSB_PLLTYPE_1) ||
809 (plltype == SSB_PLLTYPE_3))
810 m2 += SSB_CHIPCO_CLK_F5_BIAS;
812 m2 = clkfactor_f6_resolve(m2);
813 m3 = clkfactor_f6_resolve(m3);
816 case SSB_CHIPCO_CLK_MC_BYPASS:
818 case SSB_CHIPCO_CLK_MC_M1:
820 case SSB_CHIPCO_CLK_MC_M1M2:
821 return (clock / (m1 * m2));
822 case SSB_CHIPCO_CLK_MC_M1M2M3:
823 return (clock / (m1 * m2 * m3));
824 case SSB_CHIPCO_CLK_MC_M1M3:
825 return (clock / (m1 * m3));
829 m1 += SSB_CHIPCO_CLK_T2_BIAS;
830 m2 += SSB_CHIPCO_CLK_T2M2_BIAS;
831 m3 += SSB_CHIPCO_CLK_T2_BIAS;
832 SSB_WARN_ON(!((m1 >= 2) && (m1 <= 7)));
833 SSB_WARN_ON(!((m2 >= 3) && (m2 <= 10)));
834 SSB_WARN_ON(!((m3 >= 2) && (m3 <= 7)));
836 if (!(mc & SSB_CHIPCO_CLK_T2MC_M1BYP))
838 if (!(mc & SSB_CHIPCO_CLK_T2MC_M2BYP))
840 if (!(mc & SSB_CHIPCO_CLK_T2MC_M3BYP))
849 /* Get the current speed the backplane is running at */
850 u32 ssb_clockspeed(struct ssb_bus *bus)
854 u32 clkctl_n, clkctl_m;
856 if (ssb_extif_available(&bus->extif))
857 ssb_extif_get_clockcontrol(&bus->extif, &plltype,
858 &clkctl_n, &clkctl_m);
859 else if (bus->chipco.dev)
860 ssb_chipco_get_clockcontrol(&bus->chipco, &plltype,
861 &clkctl_n, &clkctl_m);
865 if (bus->chip_id == 0x5365) {
868 rate = ssb_calc_clock_rate(plltype, clkctl_n, clkctl_m);
869 if (plltype == SSB_PLLTYPE_3) /* 25Mhz, 2 dividers */
875 EXPORT_SYMBOL(ssb_clockspeed);
877 static u32 ssb_tmslow_reject_bitmask(struct ssb_device *dev)
879 u32 rev = ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV;
881 /* The REJECT bit changed position in TMSLOW between
882 * Backplane revisions. */
884 case SSB_IDLOW_SSBREV_22:
885 return SSB_TMSLOW_REJECT_22;
886 case SSB_IDLOW_SSBREV_23:
887 return SSB_TMSLOW_REJECT_23;
888 case SSB_IDLOW_SSBREV_24: /* TODO - find the proper REJECT bits */
889 case SSB_IDLOW_SSBREV_25: /* same here */
890 case SSB_IDLOW_SSBREV_26: /* same here */
891 case SSB_IDLOW_SSBREV_27: /* same here */
892 return SSB_TMSLOW_REJECT_23; /* this is a guess */
894 printk(KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev);
897 return (SSB_TMSLOW_REJECT_22 | SSB_TMSLOW_REJECT_23);
900 int ssb_device_is_enabled(struct ssb_device *dev)
905 reject = ssb_tmslow_reject_bitmask(dev);
906 val = ssb_read32(dev, SSB_TMSLOW);
907 val &= SSB_TMSLOW_CLOCK | SSB_TMSLOW_RESET | reject;
909 return (val == SSB_TMSLOW_CLOCK);
911 EXPORT_SYMBOL(ssb_device_is_enabled);
913 static void ssb_flush_tmslow(struct ssb_device *dev)
915 /* Make _really_ sure the device has finished the TMSLOW
916 * register write transaction, as we risk running into
917 * a machine check exception otherwise.
918 * Do this by reading the register back to commit the
919 * PCI write and delay an additional usec for the device
920 * to react to the change. */
921 ssb_read32(dev, SSB_TMSLOW);
925 void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags)
929 ssb_device_disable(dev, core_specific_flags);
930 ssb_write32(dev, SSB_TMSLOW,
931 SSB_TMSLOW_RESET | SSB_TMSLOW_CLOCK |
932 SSB_TMSLOW_FGC | core_specific_flags);
933 ssb_flush_tmslow(dev);
935 /* Clear SERR if set. This is a hw bug workaround. */
936 if (ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_SERR)
937 ssb_write32(dev, SSB_TMSHIGH, 0);
939 val = ssb_read32(dev, SSB_IMSTATE);
940 if (val & (SSB_IMSTATE_IBE | SSB_IMSTATE_TO)) {
941 val &= ~(SSB_IMSTATE_IBE | SSB_IMSTATE_TO);
942 ssb_write32(dev, SSB_IMSTATE, val);
945 ssb_write32(dev, SSB_TMSLOW,
946 SSB_TMSLOW_CLOCK | SSB_TMSLOW_FGC |
947 core_specific_flags);
948 ssb_flush_tmslow(dev);
950 ssb_write32(dev, SSB_TMSLOW, SSB_TMSLOW_CLOCK |
951 core_specific_flags);
952 ssb_flush_tmslow(dev);
954 EXPORT_SYMBOL(ssb_device_enable);
956 /* Wait for a bit in a register to get set or unset.
957 * timeout is in units of ten-microseconds */
958 static int ssb_wait_bit(struct ssb_device *dev, u16 reg, u32 bitmask,
959 int timeout, int set)
964 for (i = 0; i < timeout; i++) {
965 val = ssb_read32(dev, reg);
970 if (!(val & bitmask))
975 printk(KERN_ERR PFX "Timeout waiting for bitmask %08X on "
976 "register %04X to %s.\n",
977 bitmask, reg, (set ? "set" : "clear"));
982 void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags)
986 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_RESET)
989 reject = ssb_tmslow_reject_bitmask(dev);
990 ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
991 ssb_wait_bit(dev, SSB_TMSLOW, reject, 1000, 1);
992 ssb_wait_bit(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
993 ssb_write32(dev, SSB_TMSLOW,
994 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
995 reject | SSB_TMSLOW_RESET |
996 core_specific_flags);
997 ssb_flush_tmslow(dev);
999 ssb_write32(dev, SSB_TMSLOW,
1000 reject | SSB_TMSLOW_RESET |
1001 core_specific_flags);
1002 ssb_flush_tmslow(dev);
1004 EXPORT_SYMBOL(ssb_device_disable);
1006 u32 ssb_dma_translation(struct ssb_device *dev)
1008 switch (dev->bus->bustype) {
1009 case SSB_BUSTYPE_SSB:
1011 case SSB_BUSTYPE_PCI:
1012 case SSB_BUSTYPE_PCMCIA:
1017 EXPORT_SYMBOL(ssb_dma_translation);
1019 int ssb_dma_set_mask(struct ssb_device *ssb_dev, u64 mask)
1021 struct device *dev = ssb_dev->dev;
1023 #ifdef CONFIG_SSB_PCIHOST
1024 if (ssb_dev->bus->bustype == SSB_BUSTYPE_PCI &&
1025 !dma_supported(dev, mask))
1028 dev->coherent_dma_mask = mask;
1029 dev->dma_mask = &dev->coherent_dma_mask;
1033 EXPORT_SYMBOL(ssb_dma_set_mask);
1035 int ssb_bus_may_powerdown(struct ssb_bus *bus)
1037 struct ssb_chipcommon *cc;
1040 /* On buses where more than one core may be working
1041 * at a time, we must not powerdown stuff if there are
1042 * still cores that may want to run. */
1043 if (bus->bustype == SSB_BUSTYPE_SSB)
1047 ssb_chipco_set_clockmode(cc, SSB_CLKMODE_SLOW);
1048 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
1052 #ifdef CONFIG_SSB_DEBUG
1053 bus->powered_up = 0;
1057 ssb_printk(KERN_ERR PFX "Bus powerdown failed\n");
1060 EXPORT_SYMBOL(ssb_bus_may_powerdown);
1062 int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl)
1064 struct ssb_chipcommon *cc;
1066 enum ssb_clkmode mode;
1068 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
1072 mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
1073 ssb_chipco_set_clockmode(cc, mode);
1075 #ifdef CONFIG_SSB_DEBUG
1076 bus->powered_up = 1;
1080 ssb_printk(KERN_ERR PFX "Bus powerup failed\n");
1083 EXPORT_SYMBOL(ssb_bus_powerup);
1085 u32 ssb_admatch_base(u32 adm)
1089 switch (adm & SSB_ADM_TYPE) {
1091 base = (adm & SSB_ADM_BASE0);
1094 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1095 base = (adm & SSB_ADM_BASE1);
1098 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1099 base = (adm & SSB_ADM_BASE2);
1107 EXPORT_SYMBOL(ssb_admatch_base);
1109 u32 ssb_admatch_size(u32 adm)
1113 switch (adm & SSB_ADM_TYPE) {
1115 size = ((adm & SSB_ADM_SZ0) >> SSB_ADM_SZ0_SHIFT);
1118 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1119 size = ((adm & SSB_ADM_SZ1) >> SSB_ADM_SZ1_SHIFT);
1122 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1123 size = ((adm & SSB_ADM_SZ2) >> SSB_ADM_SZ2_SHIFT);
1128 size = (1 << (size + 1));
1132 EXPORT_SYMBOL(ssb_admatch_size);
1134 static int __init ssb_modinit(void)
1138 /* See the comment at the ssb_is_early_boot definition */
1139 ssb_is_early_boot = 0;
1140 err = bus_register(&ssb_bustype);
1144 /* Maybe we already registered some buses at early boot.
1145 * Check for this and attach them
1148 err = ssb_attach_queued_buses();
1151 bus_unregister(&ssb_bustype);
1153 err = b43_pci_ssb_bridge_init();
1155 ssb_printk(KERN_ERR "Broadcom 43xx PCI-SSB-bridge "
1156 "initialization failed");
1157 /* don't fail SSB init because of this */
1163 /* ssb must be initialized after PCI but before the ssb drivers.
1164 * That means we must use some initcall between subsys_initcall
1165 * and device_initcall. */
1166 fs_initcall(ssb_modinit);
1168 static void __exit ssb_modexit(void)
1170 b43_pci_ssb_bridge_exit();
1171 bus_unregister(&ssb_bustype);
1173 module_exit(ssb_modexit)