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>
14 #include <linux/ssb/ssb.h>
15 #include <linux/ssb/ssb_regs.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/pci.h>
19 #include <pcmcia/cs_types.h>
20 #include <pcmcia/cs.h>
21 #include <pcmcia/cistpl.h>
22 #include <pcmcia/ds.h>
25 MODULE_DESCRIPTION("Sonics Silicon Backplane driver");
26 MODULE_LICENSE("GPL");
29 /* Temporary list of yet-to-be-attached buses */
30 static LIST_HEAD(attach_queue);
31 /* List if running buses */
32 static LIST_HEAD(buses);
33 /* Software ID counter */
34 static unsigned int next_busnumber;
35 /* buses_mutes locks the two buslists and the next_busnumber.
36 * Don't lock this directly, but use ssb_buses_[un]lock() below. */
37 static DEFINE_MUTEX(buses_mutex);
39 /* There are differences in the codeflow, if the bus is
40 * initialized from early boot, as various needed services
41 * are not available early. This is a mechanism to delay
42 * these initializations to after early boot has finished.
43 * It's also used to avoid mutex locking, as that's not
44 * available and needed early. */
45 static bool ssb_is_early_boot = 1;
47 static void ssb_buses_lock(void);
48 static void ssb_buses_unlock(void);
51 #ifdef CONFIG_SSB_PCIHOST
52 struct ssb_bus *ssb_pci_dev_to_bus(struct pci_dev *pdev)
57 list_for_each_entry(bus, &buses, list) {
58 if (bus->bustype == SSB_BUSTYPE_PCI &&
59 bus->host_pci == pdev)
68 #endif /* CONFIG_SSB_PCIHOST */
70 static struct ssb_device *ssb_device_get(struct ssb_device *dev)
77 static void ssb_device_put(struct ssb_device *dev)
83 static int ssb_bus_resume(struct ssb_bus *bus)
87 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
88 err = ssb_pcmcia_init(bus);
90 /* No need to disable XTAL, as we don't have one on PCMCIA. */
93 ssb_chipco_resume(&bus->chipco);
98 static int ssb_device_resume(struct device *dev)
100 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
101 struct ssb_driver *ssb_drv;
106 if (bus->suspend_cnt == bus->nr_devices) {
107 err = ssb_bus_resume(bus);
113 ssb_drv = drv_to_ssb_drv(dev->driver);
114 if (ssb_drv && ssb_drv->resume)
115 err = ssb_drv->resume(ssb_dev);
123 static void ssb_bus_suspend(struct ssb_bus *bus, pm_message_t state)
125 ssb_chipco_suspend(&bus->chipco, state);
126 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
128 /* Reset HW state information in memory, so that HW is
129 * completely reinitialized on resume. */
130 bus->mapped_device = NULL;
131 #ifdef CONFIG_SSB_DRIVER_PCICORE
132 bus->pcicore.setup_done = 0;
134 #ifdef CONFIG_SSB_DEBUG
139 static int ssb_device_suspend(struct device *dev, pm_message_t state)
141 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
142 struct ssb_driver *ssb_drv;
147 ssb_drv = drv_to_ssb_drv(dev->driver);
148 if (ssb_drv && ssb_drv->suspend)
149 err = ssb_drv->suspend(ssb_dev, state);
156 if (bus->suspend_cnt == bus->nr_devices) {
157 /* All devices suspended. Shutdown the bus. */
158 ssb_bus_suspend(bus, state);
165 #ifdef CONFIG_SSB_PCIHOST
166 int ssb_devices_freeze(struct ssb_bus *bus)
168 struct ssb_device *dev;
169 struct ssb_driver *drv;
172 pm_message_t state = PMSG_FREEZE;
174 /* First check that we are capable to freeze all devices. */
175 for (i = 0; i < bus->nr_devices; i++) {
176 dev = &(bus->devices[i]);
179 !device_is_registered(dev->dev))
181 drv = drv_to_ssb_drv(dev->dev->driver);
185 /* Nope, can't suspend this one. */
189 /* Now suspend all devices */
190 for (i = 0; i < bus->nr_devices; i++) {
191 dev = &(bus->devices[i]);
194 !device_is_registered(dev->dev))
196 drv = drv_to_ssb_drv(dev->dev->driver);
199 err = drv->suspend(dev, state);
201 ssb_printk(KERN_ERR PFX "Failed to freeze device %s\n",
209 for (i--; i >= 0; i--) {
210 dev = &(bus->devices[i]);
213 !device_is_registered(dev->dev))
215 drv = drv_to_ssb_drv(dev->dev->driver);
224 int ssb_devices_thaw(struct ssb_bus *bus)
226 struct ssb_device *dev;
227 struct ssb_driver *drv;
231 for (i = 0; i < bus->nr_devices; i++) {
232 dev = &(bus->devices[i]);
235 !device_is_registered(dev->dev))
237 drv = drv_to_ssb_drv(dev->dev->driver);
240 if (SSB_WARN_ON(!drv->resume))
242 err = drv->resume(dev);
244 ssb_printk(KERN_ERR PFX "Failed to thaw device %s\n",
251 #endif /* CONFIG_SSB_PCIHOST */
253 static void ssb_device_shutdown(struct device *dev)
255 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
256 struct ssb_driver *ssb_drv;
260 ssb_drv = drv_to_ssb_drv(dev->driver);
261 if (ssb_drv && ssb_drv->shutdown)
262 ssb_drv->shutdown(ssb_dev);
265 static int ssb_device_remove(struct device *dev)
267 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
268 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
270 if (ssb_drv && ssb_drv->remove)
271 ssb_drv->remove(ssb_dev);
272 ssb_device_put(ssb_dev);
277 static int ssb_device_probe(struct device *dev)
279 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
280 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
283 ssb_device_get(ssb_dev);
284 if (ssb_drv && ssb_drv->probe)
285 err = ssb_drv->probe(ssb_dev, &ssb_dev->id);
287 ssb_device_put(ssb_dev);
292 static int ssb_match_devid(const struct ssb_device_id *tabid,
293 const struct ssb_device_id *devid)
295 if ((tabid->vendor != devid->vendor) &&
296 tabid->vendor != SSB_ANY_VENDOR)
298 if ((tabid->coreid != devid->coreid) &&
299 tabid->coreid != SSB_ANY_ID)
301 if ((tabid->revision != devid->revision) &&
302 tabid->revision != SSB_ANY_REV)
307 static int ssb_bus_match(struct device *dev, struct device_driver *drv)
309 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
310 struct ssb_driver *ssb_drv = drv_to_ssb_drv(drv);
311 const struct ssb_device_id *id;
313 for (id = ssb_drv->id_table;
314 id->vendor || id->coreid || id->revision;
316 if (ssb_match_devid(id, &ssb_dev->id))
317 return 1; /* found */
323 static int ssb_device_uevent(struct device *dev, char **envp, int num_envp,
324 char *buffer, int buffer_size)
326 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
327 int ret, i = 0, length = 0;
332 ret = add_uevent_var(envp, num_envp, &i,
333 buffer, buffer_size, &length,
334 "MODALIAS=ssb:v%04Xid%04Xrev%02X",
335 ssb_dev->id.vendor, ssb_dev->id.coreid,
336 ssb_dev->id.revision);
342 static struct bus_type ssb_bustype = {
344 .match = ssb_bus_match,
345 .probe = ssb_device_probe,
346 .remove = ssb_device_remove,
347 .shutdown = ssb_device_shutdown,
348 .suspend = ssb_device_suspend,
349 .resume = ssb_device_resume,
350 .uevent = ssb_device_uevent,
353 static void ssb_buses_lock(void)
355 /* See the comment at the ssb_is_early_boot definition */
356 if (!ssb_is_early_boot)
357 mutex_lock(&buses_mutex);
360 static void ssb_buses_unlock(void)
362 /* See the comment at the ssb_is_early_boot definition */
363 if (!ssb_is_early_boot)
364 mutex_unlock(&buses_mutex);
367 static void ssb_devices_unregister(struct ssb_bus *bus)
369 struct ssb_device *sdev;
372 for (i = bus->nr_devices - 1; i >= 0; i--) {
373 sdev = &(bus->devices[i]);
375 device_unregister(sdev->dev);
379 void ssb_bus_unregister(struct ssb_bus *bus)
382 ssb_devices_unregister(bus);
383 list_del(&bus->list);
386 /* ssb_pcmcia_exit(bus); */
390 EXPORT_SYMBOL(ssb_bus_unregister);
392 static void ssb_release_dev(struct device *dev)
394 struct __ssb_dev_wrapper *devwrap;
396 devwrap = container_of(dev, struct __ssb_dev_wrapper, dev);
400 static int ssb_devices_register(struct ssb_bus *bus)
402 struct ssb_device *sdev;
404 struct __ssb_dev_wrapper *devwrap;
408 for (i = 0; i < bus->nr_devices; i++) {
409 sdev = &(bus->devices[i]);
411 /* We don't register SSB-system devices to the kernel,
412 * as the drivers for them are built into SSB. */
413 switch (sdev->id.coreid) {
414 case SSB_DEV_CHIPCOMMON:
419 case SSB_DEV_MIPS_3302:
424 devwrap = kzalloc(sizeof(*devwrap), GFP_KERNEL);
426 ssb_printk(KERN_ERR PFX
427 "Could not allocate device\n");
432 devwrap->sdev = sdev;
434 dev->release = ssb_release_dev;
435 dev->bus = &ssb_bustype;
436 snprintf(dev->bus_id, sizeof(dev->bus_id),
437 "ssb%u:%d", bus->busnumber, dev_idx);
439 switch (bus->bustype) {
440 case SSB_BUSTYPE_PCI:
441 #ifdef CONFIG_SSB_PCIHOST
442 sdev->irq = bus->host_pci->irq;
443 dev->parent = &bus->host_pci->dev;
446 case SSB_BUSTYPE_PCMCIA:
447 #ifdef CONFIG_SSB_PCMCIAHOST
448 dev->parent = &bus->host_pcmcia->dev;
451 case SSB_BUSTYPE_SSB:
456 err = device_register(dev);
458 ssb_printk(KERN_ERR PFX
459 "Could not register %s\n",
461 /* Set dev to NULL to not unregister
462 * dev on error unwinding. */
472 /* Unwind the already registered devices. */
473 ssb_devices_unregister(bus);
477 /* Needs ssb_buses_lock() */
478 static int ssb_attach_queued_buses(void)
480 struct ssb_bus *bus, *n;
482 int drop_them_all = 0;
484 list_for_each_entry_safe(bus, n, &attach_queue, list) {
486 list_del(&bus->list);
489 /* Can't init the PCIcore in ssb_bus_register(), as that
490 * is too early in boot for embedded systems
491 * (no udelay() available). So do it here in attach stage.
493 err = ssb_bus_powerup(bus, 0);
496 ssb_pcicore_init(&bus->pcicore);
497 ssb_bus_may_powerdown(bus);
499 err = ssb_devices_register(bus);
503 list_del(&bus->list);
506 list_move_tail(&bus->list, &buses);
512 static u16 ssb_ssb_read16(struct ssb_device *dev, u16 offset)
514 struct ssb_bus *bus = dev->bus;
516 offset += dev->core_index * SSB_CORE_SIZE;
517 return readw(bus->mmio + offset);
520 static u32 ssb_ssb_read32(struct ssb_device *dev, u16 offset)
522 struct ssb_bus *bus = dev->bus;
524 offset += dev->core_index * SSB_CORE_SIZE;
525 return readl(bus->mmio + offset);
528 static void ssb_ssb_write16(struct ssb_device *dev, u16 offset, u16 value)
530 struct ssb_bus *bus = dev->bus;
532 offset += dev->core_index * SSB_CORE_SIZE;
533 writew(value, bus->mmio + offset);
536 static void ssb_ssb_write32(struct ssb_device *dev, u16 offset, u32 value)
538 struct ssb_bus *bus = dev->bus;
540 offset += dev->core_index * SSB_CORE_SIZE;
541 writel(value, bus->mmio + offset);
544 /* Ops for the plain SSB bus without a host-device (no PCI or PCMCIA). */
545 static const struct ssb_bus_ops ssb_ssb_ops = {
546 .read16 = ssb_ssb_read16,
547 .read32 = ssb_ssb_read32,
548 .write16 = ssb_ssb_write16,
549 .write32 = ssb_ssb_write32,
552 static int ssb_fetch_invariants(struct ssb_bus *bus,
553 ssb_invariants_func_t get_invariants)
555 struct ssb_init_invariants iv;
558 memset(&iv, 0, sizeof(iv));
559 err = get_invariants(bus, &iv);
562 memcpy(&bus->boardinfo, &iv.boardinfo, sizeof(iv.boardinfo));
563 memcpy(&bus->sprom, &iv.sprom, sizeof(iv.sprom));
568 static int ssb_bus_register(struct ssb_bus *bus,
569 ssb_invariants_func_t get_invariants,
570 unsigned long baseaddr)
574 spin_lock_init(&bus->bar_lock);
575 INIT_LIST_HEAD(&bus->list);
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 /* The REJECT bit changed position in TMSLOW between
880 * Backplane revisions. */
881 switch (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV) {
882 case SSB_IDLOW_SSBREV_22:
883 return SSB_TMSLOW_REJECT_22;
884 case SSB_IDLOW_SSBREV_23:
885 return SSB_TMSLOW_REJECT_23;
889 return (SSB_TMSLOW_REJECT_22 | SSB_TMSLOW_REJECT_23);
892 int ssb_device_is_enabled(struct ssb_device *dev)
897 reject = ssb_tmslow_reject_bitmask(dev);
898 val = ssb_read32(dev, SSB_TMSLOW);
899 val &= SSB_TMSLOW_CLOCK | SSB_TMSLOW_RESET | reject;
901 return (val == SSB_TMSLOW_CLOCK);
903 EXPORT_SYMBOL(ssb_device_is_enabled);
905 static void ssb_flush_tmslow(struct ssb_device *dev)
907 /* Make _really_ sure the device has finished the TMSLOW
908 * register write transaction, as we risk running into
909 * a machine check exception otherwise.
910 * Do this by reading the register back to commit the
911 * PCI write and delay an additional usec for the device
912 * to react to the change. */
913 ssb_read32(dev, SSB_TMSLOW);
917 void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags)
921 ssb_device_disable(dev, core_specific_flags);
922 ssb_write32(dev, SSB_TMSLOW,
923 SSB_TMSLOW_RESET | SSB_TMSLOW_CLOCK |
924 SSB_TMSLOW_FGC | core_specific_flags);
925 ssb_flush_tmslow(dev);
927 /* Clear SERR if set. This is a hw bug workaround. */
928 if (ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_SERR)
929 ssb_write32(dev, SSB_TMSHIGH, 0);
931 val = ssb_read32(dev, SSB_IMSTATE);
932 if (val & (SSB_IMSTATE_IBE | SSB_IMSTATE_TO)) {
933 val &= ~(SSB_IMSTATE_IBE | SSB_IMSTATE_TO);
934 ssb_write32(dev, SSB_IMSTATE, val);
937 ssb_write32(dev, SSB_TMSLOW,
938 SSB_TMSLOW_CLOCK | SSB_TMSLOW_FGC |
939 core_specific_flags);
940 ssb_flush_tmslow(dev);
942 ssb_write32(dev, SSB_TMSLOW, SSB_TMSLOW_CLOCK |
943 core_specific_flags);
944 ssb_flush_tmslow(dev);
946 EXPORT_SYMBOL(ssb_device_enable);
948 /* Wait for a bit in a register to get set or unset.
949 * timeout is in units of ten-microseconds */
950 static int ssb_wait_bit(struct ssb_device *dev, u16 reg, u32 bitmask,
951 int timeout, int set)
956 for (i = 0; i < timeout; i++) {
957 val = ssb_read32(dev, reg);
962 if (!(val & bitmask))
967 printk(KERN_ERR PFX "Timeout waiting for bitmask %08X on "
968 "register %04X to %s.\n",
969 bitmask, reg, (set ? "set" : "clear"));
974 void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags)
978 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_RESET)
981 reject = ssb_tmslow_reject_bitmask(dev);
982 ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
983 ssb_wait_bit(dev, SSB_TMSLOW, reject, 1000, 1);
984 ssb_wait_bit(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
985 ssb_write32(dev, SSB_TMSLOW,
986 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
987 reject | SSB_TMSLOW_RESET |
988 core_specific_flags);
989 ssb_flush_tmslow(dev);
991 ssb_write32(dev, SSB_TMSLOW,
992 reject | SSB_TMSLOW_RESET |
993 core_specific_flags);
994 ssb_flush_tmslow(dev);
996 EXPORT_SYMBOL(ssb_device_disable);
998 u32 ssb_dma_translation(struct ssb_device *dev)
1000 switch (dev->bus->bustype) {
1001 case SSB_BUSTYPE_SSB:
1003 case SSB_BUSTYPE_PCI:
1004 case SSB_BUSTYPE_PCMCIA:
1009 EXPORT_SYMBOL(ssb_dma_translation);
1011 int ssb_dma_set_mask(struct ssb_device *ssb_dev, u64 mask)
1013 struct device *dev = ssb_dev->dev;
1015 #ifdef CONFIG_SSB_PCIHOST
1016 if (ssb_dev->bus->bustype == SSB_BUSTYPE_PCI &&
1017 !dma_supported(dev, mask))
1020 dev->coherent_dma_mask = mask;
1021 dev->dma_mask = &dev->coherent_dma_mask;
1025 EXPORT_SYMBOL(ssb_dma_set_mask);
1027 int ssb_bus_may_powerdown(struct ssb_bus *bus)
1029 struct ssb_chipcommon *cc;
1032 /* On buses where more than one core may be working
1033 * at a time, we must not powerdown stuff if there are
1034 * still cores that may want to run. */
1035 if (bus->bustype == SSB_BUSTYPE_SSB)
1039 ssb_chipco_set_clockmode(cc, SSB_CLKMODE_SLOW);
1040 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
1044 #ifdef CONFIG_SSB_DEBUG
1045 bus->powered_up = 0;
1049 ssb_printk(KERN_ERR PFX "Bus powerdown failed\n");
1052 EXPORT_SYMBOL(ssb_bus_may_powerdown);
1054 int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl)
1056 struct ssb_chipcommon *cc;
1058 enum ssb_clkmode mode;
1060 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
1064 mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
1065 ssb_chipco_set_clockmode(cc, mode);
1067 #ifdef CONFIG_SSB_DEBUG
1068 bus->powered_up = 1;
1072 ssb_printk(KERN_ERR PFX "Bus powerup failed\n");
1075 EXPORT_SYMBOL(ssb_bus_powerup);
1077 u32 ssb_admatch_base(u32 adm)
1081 switch (adm & SSB_ADM_TYPE) {
1083 base = (adm & SSB_ADM_BASE0);
1086 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1087 base = (adm & SSB_ADM_BASE1);
1090 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1091 base = (adm & SSB_ADM_BASE2);
1099 EXPORT_SYMBOL(ssb_admatch_base);
1101 u32 ssb_admatch_size(u32 adm)
1105 switch (adm & SSB_ADM_TYPE) {
1107 size = ((adm & SSB_ADM_SZ0) >> SSB_ADM_SZ0_SHIFT);
1110 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1111 size = ((adm & SSB_ADM_SZ1) >> SSB_ADM_SZ1_SHIFT);
1114 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1115 size = ((adm & SSB_ADM_SZ2) >> SSB_ADM_SZ2_SHIFT);
1120 size = (1 << (size + 1));
1124 EXPORT_SYMBOL(ssb_admatch_size);
1126 static int __init ssb_modinit(void)
1130 /* See the comment at the ssb_is_early_boot definition */
1131 ssb_is_early_boot = 0;
1132 err = bus_register(&ssb_bustype);
1136 /* Maybe we already registered some buses at early boot.
1137 * Check for this and attach them
1140 err = ssb_attach_queued_buses();
1143 bus_unregister(&ssb_bustype);
1145 err = b43_pci_ssb_bridge_init();
1147 ssb_printk(KERN_ERR "Broadcom 43xx PCI-SSB-bridge "
1148 "initialization failed");
1149 /* don't fail SSB init because of this */
1155 subsys_initcall(ssb_modinit);
1157 static void __exit ssb_modexit(void)
1159 b43_pci_ssb_bridge_exit();
1160 bus_unregister(&ssb_bustype);
1162 module_exit(ssb_modexit)