2 * Sonics Silicon Backplane
5 * Copyright 2005, Broadcom Corporation
8 * Licensed under the GNU/GPL. See COPYING for details.
11 #include "ssb_private.h"
13 #include <linux/delay.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/ssb/ssb.h>
18 #include <linux/ssb/ssb_regs.h>
19 #include <linux/ssb/ssb_driver_gige.h>
20 #include <linux/dma-mapping.h>
21 #include <linux/pci.h>
22 #include <linux/mmc/sdio_func.h>
23 #include <linux/slab.h>
25 #include <pcmcia/cistpl.h>
26 #include <pcmcia/ds.h>
29 MODULE_DESCRIPTION("Sonics Silicon Backplane driver");
30 MODULE_LICENSE("GPL");
33 /* Temporary list of yet-to-be-attached buses */
34 static LIST_HEAD(attach_queue);
35 /* List if running buses */
36 static LIST_HEAD(buses);
37 /* Software ID counter */
38 static unsigned int next_busnumber;
39 /* buses_mutes locks the two buslists and the next_busnumber.
40 * Don't lock this directly, but use ssb_buses_[un]lock() below. */
41 static DEFINE_MUTEX(buses_mutex);
43 /* There are differences in the codeflow, if the bus is
44 * initialized from early boot, as various needed services
45 * are not available early. This is a mechanism to delay
46 * these initializations to after early boot has finished.
47 * It's also used to avoid mutex locking, as that's not
48 * available and needed early. */
49 static bool ssb_is_early_boot = 1;
51 static void ssb_buses_lock(void);
52 static void ssb_buses_unlock(void);
55 #ifdef CONFIG_SSB_PCIHOST
56 struct ssb_bus *ssb_pci_dev_to_bus(struct pci_dev *pdev)
61 list_for_each_entry(bus, &buses, list) {
62 if (bus->bustype == SSB_BUSTYPE_PCI &&
63 bus->host_pci == pdev)
72 #endif /* CONFIG_SSB_PCIHOST */
74 #ifdef CONFIG_SSB_PCMCIAHOST
75 struct ssb_bus *ssb_pcmcia_dev_to_bus(struct pcmcia_device *pdev)
80 list_for_each_entry(bus, &buses, list) {
81 if (bus->bustype == SSB_BUSTYPE_PCMCIA &&
82 bus->host_pcmcia == pdev)
91 #endif /* CONFIG_SSB_PCMCIAHOST */
93 #ifdef CONFIG_SSB_SDIOHOST
94 struct ssb_bus *ssb_sdio_func_to_bus(struct sdio_func *func)
99 list_for_each_entry(bus, &buses, list) {
100 if (bus->bustype == SSB_BUSTYPE_SDIO &&
101 bus->host_sdio == func)
110 #endif /* CONFIG_SSB_SDIOHOST */
112 int ssb_for_each_bus_call(unsigned long data,
113 int (*func)(struct ssb_bus *bus, unsigned long data))
119 list_for_each_entry(bus, &buses, list) {
120 res = func(bus, data);
131 static struct ssb_device *ssb_device_get(struct ssb_device *dev)
134 get_device(dev->dev);
138 static void ssb_device_put(struct ssb_device *dev)
141 put_device(dev->dev);
144 static int ssb_device_resume(struct device *dev)
146 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
147 struct ssb_driver *ssb_drv;
151 ssb_drv = drv_to_ssb_drv(dev->driver);
152 if (ssb_drv && ssb_drv->resume)
153 err = ssb_drv->resume(ssb_dev);
161 static int ssb_device_suspend(struct device *dev, pm_message_t state)
163 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
164 struct ssb_driver *ssb_drv;
168 ssb_drv = drv_to_ssb_drv(dev->driver);
169 if (ssb_drv && ssb_drv->suspend)
170 err = ssb_drv->suspend(ssb_dev, state);
178 int ssb_bus_resume(struct ssb_bus *bus)
182 /* Reset HW state information in memory, so that HW is
183 * completely reinitialized. */
184 bus->mapped_device = NULL;
185 #ifdef CONFIG_SSB_DRIVER_PCICORE
186 bus->pcicore.setup_done = 0;
189 err = ssb_bus_powerup(bus, 0);
192 err = ssb_pcmcia_hardware_setup(bus);
194 ssb_bus_may_powerdown(bus);
197 ssb_chipco_resume(&bus->chipco);
198 ssb_bus_may_powerdown(bus);
202 EXPORT_SYMBOL(ssb_bus_resume);
204 int ssb_bus_suspend(struct ssb_bus *bus)
206 ssb_chipco_suspend(&bus->chipco);
207 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
211 EXPORT_SYMBOL(ssb_bus_suspend);
213 #ifdef CONFIG_SSB_SPROM
214 /** ssb_devices_freeze - Freeze all devices on the bus.
216 * After freezing no device driver will be handling a device
217 * on this bus anymore. ssb_devices_thaw() must be called after
218 * a successful freeze to reactivate the devices.
221 * @ctx: Context structure. Pass this to ssb_devices_thaw().
223 int ssb_devices_freeze(struct ssb_bus *bus, struct ssb_freeze_context *ctx)
225 struct ssb_device *sdev;
226 struct ssb_driver *sdrv;
229 memset(ctx, 0, sizeof(*ctx));
231 SSB_WARN_ON(bus->nr_devices > ARRAY_SIZE(ctx->device_frozen));
233 for (i = 0; i < bus->nr_devices; i++) {
234 sdev = ssb_device_get(&bus->devices[i]);
236 if (!sdev->dev || !sdev->dev->driver ||
237 !device_is_registered(sdev->dev)) {
238 ssb_device_put(sdev);
241 sdrv = drv_to_ssb_drv(sdev->dev->driver);
242 if (SSB_WARN_ON(!sdrv->remove))
245 ctx->device_frozen[i] = 1;
251 /** ssb_devices_thaw - Unfreeze all devices on the bus.
253 * This will re-attach the device drivers and re-init the devices.
255 * @ctx: The context structure from ssb_devices_freeze()
257 int ssb_devices_thaw(struct ssb_freeze_context *ctx)
259 struct ssb_bus *bus = ctx->bus;
260 struct ssb_device *sdev;
261 struct ssb_driver *sdrv;
265 for (i = 0; i < bus->nr_devices; i++) {
266 if (!ctx->device_frozen[i])
268 sdev = &bus->devices[i];
270 if (SSB_WARN_ON(!sdev->dev || !sdev->dev->driver))
272 sdrv = drv_to_ssb_drv(sdev->dev->driver);
273 if (SSB_WARN_ON(!sdrv || !sdrv->probe))
276 err = sdrv->probe(sdev, &sdev->id);
278 ssb_err("Failed to thaw device %s\n",
279 dev_name(sdev->dev));
282 ssb_device_put(sdev);
287 #endif /* CONFIG_SSB_SPROM */
289 static void ssb_device_shutdown(struct device *dev)
291 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
292 struct ssb_driver *ssb_drv;
296 ssb_drv = drv_to_ssb_drv(dev->driver);
297 if (ssb_drv && ssb_drv->shutdown)
298 ssb_drv->shutdown(ssb_dev);
301 static int ssb_device_remove(struct device *dev)
303 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
304 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
306 if (ssb_drv && ssb_drv->remove)
307 ssb_drv->remove(ssb_dev);
308 ssb_device_put(ssb_dev);
313 static int ssb_device_probe(struct device *dev)
315 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
316 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
319 ssb_device_get(ssb_dev);
320 if (ssb_drv && ssb_drv->probe)
321 err = ssb_drv->probe(ssb_dev, &ssb_dev->id);
323 ssb_device_put(ssb_dev);
328 static int ssb_match_devid(const struct ssb_device_id *tabid,
329 const struct ssb_device_id *devid)
331 if ((tabid->vendor != devid->vendor) &&
332 tabid->vendor != SSB_ANY_VENDOR)
334 if ((tabid->coreid != devid->coreid) &&
335 tabid->coreid != SSB_ANY_ID)
337 if ((tabid->revision != devid->revision) &&
338 tabid->revision != SSB_ANY_REV)
343 static int ssb_bus_match(struct device *dev, struct device_driver *drv)
345 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
346 struct ssb_driver *ssb_drv = drv_to_ssb_drv(drv);
347 const struct ssb_device_id *id;
349 for (id = ssb_drv->id_table;
350 id->vendor || id->coreid || id->revision;
352 if (ssb_match_devid(id, &ssb_dev->id))
353 return 1; /* found */
359 static int ssb_device_uevent(struct device *dev, struct kobj_uevent_env *env)
361 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
366 return add_uevent_var(env,
367 "MODALIAS=ssb:v%04Xid%04Xrev%02X",
368 ssb_dev->id.vendor, ssb_dev->id.coreid,
369 ssb_dev->id.revision);
372 #define ssb_config_attr(attrib, field, format_string) \
374 attrib##_show(struct device *dev, struct device_attribute *attr, char *buf) \
376 return sprintf(buf, format_string, dev_to_ssb_dev(dev)->field); \
379 ssb_config_attr(core_num, core_index, "%u\n")
380 ssb_config_attr(coreid, id.coreid, "0x%04x\n")
381 ssb_config_attr(vendor, id.vendor, "0x%04x\n")
382 ssb_config_attr(revision, id.revision, "%u\n")
383 ssb_config_attr(irq, irq, "%u\n")
385 name_show(struct device *dev, struct device_attribute *attr, char *buf)
387 return sprintf(buf, "%s\n",
388 ssb_core_name(dev_to_ssb_dev(dev)->id.coreid));
391 static struct device_attribute ssb_device_attrs[] = {
401 static struct bus_type ssb_bustype = {
403 .match = ssb_bus_match,
404 .probe = ssb_device_probe,
405 .remove = ssb_device_remove,
406 .shutdown = ssb_device_shutdown,
407 .suspend = ssb_device_suspend,
408 .resume = ssb_device_resume,
409 .uevent = ssb_device_uevent,
410 .dev_attrs = ssb_device_attrs,
413 static void ssb_buses_lock(void)
415 /* See the comment at the ssb_is_early_boot definition */
416 if (!ssb_is_early_boot)
417 mutex_lock(&buses_mutex);
420 static void ssb_buses_unlock(void)
422 /* See the comment at the ssb_is_early_boot definition */
423 if (!ssb_is_early_boot)
424 mutex_unlock(&buses_mutex);
427 static void ssb_devices_unregister(struct ssb_bus *bus)
429 struct ssb_device *sdev;
432 for (i = bus->nr_devices - 1; i >= 0; i--) {
433 sdev = &(bus->devices[i]);
435 device_unregister(sdev->dev);
438 #ifdef CONFIG_SSB_EMBEDDED
439 if (bus->bustype == SSB_BUSTYPE_SSB)
440 platform_device_unregister(bus->watchdog);
444 void ssb_bus_unregister(struct ssb_bus *bus)
448 err = ssb_gpio_unregister(bus);
450 ssb_dbg("Some GPIOs are still in use\n");
452 ssb_dbg("Can not unregister GPIO driver: %i\n", err);
455 ssb_devices_unregister(bus);
456 list_del(&bus->list);
459 ssb_pcmcia_exit(bus);
463 EXPORT_SYMBOL(ssb_bus_unregister);
465 static void ssb_release_dev(struct device *dev)
467 struct __ssb_dev_wrapper *devwrap;
469 devwrap = container_of(dev, struct __ssb_dev_wrapper, dev);
473 static int ssb_devices_register(struct ssb_bus *bus)
475 struct ssb_device *sdev;
477 struct __ssb_dev_wrapper *devwrap;
481 for (i = 0; i < bus->nr_devices; i++) {
482 sdev = &(bus->devices[i]);
484 /* We don't register SSB-system devices to the kernel,
485 * as the drivers for them are built into SSB. */
486 switch (sdev->id.coreid) {
487 case SSB_DEV_CHIPCOMMON:
492 case SSB_DEV_MIPS_3302:
497 devwrap = kzalloc(sizeof(*devwrap), GFP_KERNEL);
499 ssb_err("Could not allocate device\n");
504 devwrap->sdev = sdev;
506 dev->release = ssb_release_dev;
507 dev->bus = &ssb_bustype;
508 dev_set_name(dev, "ssb%u:%d", bus->busnumber, dev_idx);
510 switch (bus->bustype) {
511 case SSB_BUSTYPE_PCI:
512 #ifdef CONFIG_SSB_PCIHOST
513 sdev->irq = bus->host_pci->irq;
514 dev->parent = &bus->host_pci->dev;
515 sdev->dma_dev = dev->parent;
518 case SSB_BUSTYPE_PCMCIA:
519 #ifdef CONFIG_SSB_PCMCIAHOST
520 sdev->irq = bus->host_pcmcia->irq;
521 dev->parent = &bus->host_pcmcia->dev;
524 case SSB_BUSTYPE_SDIO:
525 #ifdef CONFIG_SSB_SDIOHOST
526 dev->parent = &bus->host_sdio->dev;
529 case SSB_BUSTYPE_SSB:
530 dev->dma_mask = &dev->coherent_dma_mask;
536 err = device_register(dev);
538 ssb_err("Could not register %s\n", dev_name(dev));
539 /* Set dev to NULL to not unregister
540 * dev on error unwinding. */
548 #ifdef CONFIG_SSB_DRIVER_MIPS
549 if (bus->mipscore.pflash.present) {
550 err = platform_device_register(&ssb_pflash_dev);
552 pr_err("Error registering parallel flash\n");
558 /* Unwind the already registered devices. */
559 ssb_devices_unregister(bus);
563 /* Needs ssb_buses_lock() */
564 static int ssb_attach_queued_buses(void)
566 struct ssb_bus *bus, *n;
568 int drop_them_all = 0;
570 list_for_each_entry_safe(bus, n, &attach_queue, list) {
572 list_del(&bus->list);
575 /* Can't init the PCIcore in ssb_bus_register(), as that
576 * is too early in boot for embedded systems
577 * (no udelay() available). So do it here in attach stage.
579 err = ssb_bus_powerup(bus, 0);
582 ssb_pcicore_init(&bus->pcicore);
583 if (bus->bustype == SSB_BUSTYPE_SSB)
584 ssb_watchdog_register(bus);
585 ssb_bus_may_powerdown(bus);
587 err = ssb_devices_register(bus);
591 list_del(&bus->list);
594 list_move_tail(&bus->list, &buses);
600 static u8 ssb_ssb_read8(struct ssb_device *dev, u16 offset)
602 struct ssb_bus *bus = dev->bus;
604 offset += dev->core_index * SSB_CORE_SIZE;
605 return readb(bus->mmio + offset);
608 static u16 ssb_ssb_read16(struct ssb_device *dev, u16 offset)
610 struct ssb_bus *bus = dev->bus;
612 offset += dev->core_index * SSB_CORE_SIZE;
613 return readw(bus->mmio + offset);
616 static u32 ssb_ssb_read32(struct ssb_device *dev, u16 offset)
618 struct ssb_bus *bus = dev->bus;
620 offset += dev->core_index * SSB_CORE_SIZE;
621 return readl(bus->mmio + offset);
624 #ifdef CONFIG_SSB_BLOCKIO
625 static void ssb_ssb_block_read(struct ssb_device *dev, void *buffer,
626 size_t count, u16 offset, u8 reg_width)
628 struct ssb_bus *bus = dev->bus;
631 offset += dev->core_index * SSB_CORE_SIZE;
632 addr = bus->mmio + offset;
639 *buf = __raw_readb(addr);
646 __le16 *buf = buffer;
648 SSB_WARN_ON(count & 1);
650 *buf = (__force __le16)__raw_readw(addr);
657 __le32 *buf = buffer;
659 SSB_WARN_ON(count & 3);
661 *buf = (__force __le32)__raw_readl(addr);
671 #endif /* CONFIG_SSB_BLOCKIO */
673 static void ssb_ssb_write8(struct ssb_device *dev, u16 offset, u8 value)
675 struct ssb_bus *bus = dev->bus;
677 offset += dev->core_index * SSB_CORE_SIZE;
678 writeb(value, bus->mmio + offset);
681 static void ssb_ssb_write16(struct ssb_device *dev, u16 offset, u16 value)
683 struct ssb_bus *bus = dev->bus;
685 offset += dev->core_index * SSB_CORE_SIZE;
686 writew(value, bus->mmio + offset);
689 static void ssb_ssb_write32(struct ssb_device *dev, u16 offset, u32 value)
691 struct ssb_bus *bus = dev->bus;
693 offset += dev->core_index * SSB_CORE_SIZE;
694 writel(value, bus->mmio + offset);
697 #ifdef CONFIG_SSB_BLOCKIO
698 static void ssb_ssb_block_write(struct ssb_device *dev, const void *buffer,
699 size_t count, u16 offset, u8 reg_width)
701 struct ssb_bus *bus = dev->bus;
704 offset += dev->core_index * SSB_CORE_SIZE;
705 addr = bus->mmio + offset;
709 const u8 *buf = buffer;
712 __raw_writeb(*buf, addr);
719 const __le16 *buf = buffer;
721 SSB_WARN_ON(count & 1);
723 __raw_writew((__force u16)(*buf), addr);
730 const __le32 *buf = buffer;
732 SSB_WARN_ON(count & 3);
734 __raw_writel((__force u32)(*buf), addr);
744 #endif /* CONFIG_SSB_BLOCKIO */
746 /* Ops for the plain SSB bus without a host-device (no PCI or PCMCIA). */
747 static const struct ssb_bus_ops ssb_ssb_ops = {
748 .read8 = ssb_ssb_read8,
749 .read16 = ssb_ssb_read16,
750 .read32 = ssb_ssb_read32,
751 .write8 = ssb_ssb_write8,
752 .write16 = ssb_ssb_write16,
753 .write32 = ssb_ssb_write32,
754 #ifdef CONFIG_SSB_BLOCKIO
755 .block_read = ssb_ssb_block_read,
756 .block_write = ssb_ssb_block_write,
760 static int ssb_fetch_invariants(struct ssb_bus *bus,
761 ssb_invariants_func_t get_invariants)
763 struct ssb_init_invariants iv;
766 memset(&iv, 0, sizeof(iv));
767 err = get_invariants(bus, &iv);
770 memcpy(&bus->boardinfo, &iv.boardinfo, sizeof(iv.boardinfo));
771 memcpy(&bus->sprom, &iv.sprom, sizeof(iv.sprom));
772 bus->has_cardbus_slot = iv.has_cardbus_slot;
777 static int ssb_bus_register(struct ssb_bus *bus,
778 ssb_invariants_func_t get_invariants,
779 unsigned long baseaddr)
783 spin_lock_init(&bus->bar_lock);
784 INIT_LIST_HEAD(&bus->list);
785 #ifdef CONFIG_SSB_EMBEDDED
786 spin_lock_init(&bus->gpio_lock);
789 /* Powerup the bus */
790 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
794 /* Init SDIO-host device (if any), before the scan */
795 err = ssb_sdio_init(bus);
797 goto err_disable_xtal;
800 bus->busnumber = next_busnumber;
801 /* Scan for devices (cores) */
802 err = ssb_bus_scan(bus, baseaddr);
806 /* Init PCI-host device (if any) */
807 err = ssb_pci_init(bus);
810 /* Init PCMCIA-host device (if any) */
811 err = ssb_pcmcia_init(bus);
815 /* Initialize basic system devices (if available) */
816 err = ssb_bus_powerup(bus, 0);
818 goto err_pcmcia_exit;
819 ssb_chipcommon_init(&bus->chipco);
820 ssb_extif_init(&bus->extif);
821 ssb_mipscore_init(&bus->mipscore);
822 err = ssb_gpio_init(bus);
823 if (err == -ENOTSUPP)
824 ssb_dbg("GPIO driver not activated\n");
826 ssb_dbg("Error registering GPIO driver: %i\n", err);
827 err = ssb_fetch_invariants(bus, get_invariants);
829 ssb_bus_may_powerdown(bus);
830 goto err_pcmcia_exit;
832 ssb_bus_may_powerdown(bus);
834 /* Queue it for attach.
835 * See the comment at the ssb_is_early_boot definition. */
836 list_add_tail(&bus->list, &attach_queue);
837 if (!ssb_is_early_boot) {
838 /* This is not early boot, so we must attach the bus now */
839 err = ssb_attach_queued_buses();
850 list_del(&bus->list);
852 ssb_pcmcia_exit(bus);
861 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
865 #ifdef CONFIG_SSB_PCIHOST
866 int ssb_bus_pcibus_register(struct ssb_bus *bus, struct pci_dev *host_pci)
870 bus->bustype = SSB_BUSTYPE_PCI;
871 bus->host_pci = host_pci;
872 bus->ops = &ssb_pci_ops;
874 err = ssb_bus_register(bus, ssb_pci_get_invariants, 0);
876 ssb_info("Sonics Silicon Backplane found on PCI device %s\n",
877 dev_name(&host_pci->dev));
879 ssb_err("Failed to register PCI version of SSB with error %d\n",
885 EXPORT_SYMBOL(ssb_bus_pcibus_register);
886 #endif /* CONFIG_SSB_PCIHOST */
888 #ifdef CONFIG_SSB_PCMCIAHOST
889 int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
890 struct pcmcia_device *pcmcia_dev,
891 unsigned long baseaddr)
895 bus->bustype = SSB_BUSTYPE_PCMCIA;
896 bus->host_pcmcia = pcmcia_dev;
897 bus->ops = &ssb_pcmcia_ops;
899 err = ssb_bus_register(bus, ssb_pcmcia_get_invariants, baseaddr);
901 ssb_info("Sonics Silicon Backplane found on PCMCIA device %s\n",
902 pcmcia_dev->devname);
907 EXPORT_SYMBOL(ssb_bus_pcmciabus_register);
908 #endif /* CONFIG_SSB_PCMCIAHOST */
910 #ifdef CONFIG_SSB_SDIOHOST
911 int ssb_bus_sdiobus_register(struct ssb_bus *bus, struct sdio_func *func,
916 bus->bustype = SSB_BUSTYPE_SDIO;
917 bus->host_sdio = func;
918 bus->ops = &ssb_sdio_ops;
919 bus->quirks = quirks;
921 err = ssb_bus_register(bus, ssb_sdio_get_invariants, ~0);
923 ssb_info("Sonics Silicon Backplane found on SDIO device %s\n",
929 EXPORT_SYMBOL(ssb_bus_sdiobus_register);
930 #endif /* CONFIG_SSB_PCMCIAHOST */
932 int ssb_bus_ssbbus_register(struct ssb_bus *bus, unsigned long baseaddr,
933 ssb_invariants_func_t get_invariants)
937 bus->bustype = SSB_BUSTYPE_SSB;
938 bus->ops = &ssb_ssb_ops;
940 err = ssb_bus_register(bus, get_invariants, baseaddr);
942 ssb_info("Sonics Silicon Backplane found at address 0x%08lX\n",
949 int __ssb_driver_register(struct ssb_driver *drv, struct module *owner)
951 drv->drv.name = drv->name;
952 drv->drv.bus = &ssb_bustype;
953 drv->drv.owner = owner;
955 return driver_register(&drv->drv);
957 EXPORT_SYMBOL(__ssb_driver_register);
959 void ssb_driver_unregister(struct ssb_driver *drv)
961 driver_unregister(&drv->drv);
963 EXPORT_SYMBOL(ssb_driver_unregister);
965 void ssb_set_devtypedata(struct ssb_device *dev, void *data)
967 struct ssb_bus *bus = dev->bus;
968 struct ssb_device *ent;
971 for (i = 0; i < bus->nr_devices; i++) {
972 ent = &(bus->devices[i]);
973 if (ent->id.vendor != dev->id.vendor)
975 if (ent->id.coreid != dev->id.coreid)
978 ent->devtypedata = data;
981 EXPORT_SYMBOL(ssb_set_devtypedata);
983 static u32 clkfactor_f6_resolve(u32 v)
985 /* map the magic values */
987 case SSB_CHIPCO_CLK_F6_2:
989 case SSB_CHIPCO_CLK_F6_3:
991 case SSB_CHIPCO_CLK_F6_4:
993 case SSB_CHIPCO_CLK_F6_5:
995 case SSB_CHIPCO_CLK_F6_6:
997 case SSB_CHIPCO_CLK_F6_7:
1003 /* Calculate the speed the backplane would run at a given set of clockcontrol values */
1004 u32 ssb_calc_clock_rate(u32 plltype, u32 n, u32 m)
1006 u32 n1, n2, clock, m1, m2, m3, mc;
1008 n1 = (n & SSB_CHIPCO_CLK_N1);
1009 n2 = ((n & SSB_CHIPCO_CLK_N2) >> SSB_CHIPCO_CLK_N2_SHIFT);
1012 case SSB_PLLTYPE_6: /* 100/200 or 120/240 only */
1013 if (m & SSB_CHIPCO_CLK_T6_MMASK)
1014 return SSB_CHIPCO_CLK_T6_M1;
1015 return SSB_CHIPCO_CLK_T6_M0;
1016 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
1017 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
1018 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
1019 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
1020 n1 = clkfactor_f6_resolve(n1);
1021 n2 += SSB_CHIPCO_CLK_F5_BIAS;
1023 case SSB_PLLTYPE_2: /* 48Mhz, 4 dividers */
1024 n1 += SSB_CHIPCO_CLK_T2_BIAS;
1025 n2 += SSB_CHIPCO_CLK_T2_BIAS;
1026 SSB_WARN_ON(!((n1 >= 2) && (n1 <= 7)));
1027 SSB_WARN_ON(!((n2 >= 5) && (n2 <= 23)));
1029 case SSB_PLLTYPE_5: /* 25Mhz, 4 dividers */
1036 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
1037 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
1038 clock = SSB_CHIPCO_CLK_BASE2 * n1 * n2;
1041 clock = SSB_CHIPCO_CLK_BASE1 * n1 * n2;
1046 m1 = (m & SSB_CHIPCO_CLK_M1);
1047 m2 = ((m & SSB_CHIPCO_CLK_M2) >> SSB_CHIPCO_CLK_M2_SHIFT);
1048 m3 = ((m & SSB_CHIPCO_CLK_M3) >> SSB_CHIPCO_CLK_M3_SHIFT);
1049 mc = ((m & SSB_CHIPCO_CLK_MC) >> SSB_CHIPCO_CLK_MC_SHIFT);
1052 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
1053 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
1054 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
1055 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
1056 m1 = clkfactor_f6_resolve(m1);
1057 if ((plltype == SSB_PLLTYPE_1) ||
1058 (plltype == SSB_PLLTYPE_3))
1059 m2 += SSB_CHIPCO_CLK_F5_BIAS;
1061 m2 = clkfactor_f6_resolve(m2);
1062 m3 = clkfactor_f6_resolve(m3);
1065 case SSB_CHIPCO_CLK_MC_BYPASS:
1067 case SSB_CHIPCO_CLK_MC_M1:
1068 return (clock / m1);
1069 case SSB_CHIPCO_CLK_MC_M1M2:
1070 return (clock / (m1 * m2));
1071 case SSB_CHIPCO_CLK_MC_M1M2M3:
1072 return (clock / (m1 * m2 * m3));
1073 case SSB_CHIPCO_CLK_MC_M1M3:
1074 return (clock / (m1 * m3));
1078 m1 += SSB_CHIPCO_CLK_T2_BIAS;
1079 m2 += SSB_CHIPCO_CLK_T2M2_BIAS;
1080 m3 += SSB_CHIPCO_CLK_T2_BIAS;
1081 SSB_WARN_ON(!((m1 >= 2) && (m1 <= 7)));
1082 SSB_WARN_ON(!((m2 >= 3) && (m2 <= 10)));
1083 SSB_WARN_ON(!((m3 >= 2) && (m3 <= 7)));
1085 if (!(mc & SSB_CHIPCO_CLK_T2MC_M1BYP))
1087 if (!(mc & SSB_CHIPCO_CLK_T2MC_M2BYP))
1089 if (!(mc & SSB_CHIPCO_CLK_T2MC_M3BYP))
1098 /* Get the current speed the backplane is running at */
1099 u32 ssb_clockspeed(struct ssb_bus *bus)
1103 u32 clkctl_n, clkctl_m;
1105 if (bus->chipco.capabilities & SSB_CHIPCO_CAP_PMU)
1106 return ssb_pmu_get_controlclock(&bus->chipco);
1108 if (ssb_extif_available(&bus->extif))
1109 ssb_extif_get_clockcontrol(&bus->extif, &plltype,
1110 &clkctl_n, &clkctl_m);
1111 else if (bus->chipco.dev)
1112 ssb_chipco_get_clockcontrol(&bus->chipco, &plltype,
1113 &clkctl_n, &clkctl_m);
1117 if (bus->chip_id == 0x5365) {
1120 rate = ssb_calc_clock_rate(plltype, clkctl_n, clkctl_m);
1121 if (plltype == SSB_PLLTYPE_3) /* 25Mhz, 2 dividers */
1127 EXPORT_SYMBOL(ssb_clockspeed);
1129 static u32 ssb_tmslow_reject_bitmask(struct ssb_device *dev)
1131 u32 rev = ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV;
1133 /* The REJECT bit seems to be different for Backplane rev 2.3 */
1135 case SSB_IDLOW_SSBREV_22:
1136 case SSB_IDLOW_SSBREV_24:
1137 case SSB_IDLOW_SSBREV_26:
1138 return SSB_TMSLOW_REJECT;
1139 case SSB_IDLOW_SSBREV_23:
1140 return SSB_TMSLOW_REJECT_23;
1141 case SSB_IDLOW_SSBREV_25: /* TODO - find the proper REJECT bit */
1142 case SSB_IDLOW_SSBREV_27: /* same here */
1143 return SSB_TMSLOW_REJECT; /* this is a guess */
1145 WARN(1, KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev);
1147 return (SSB_TMSLOW_REJECT | SSB_TMSLOW_REJECT_23);
1150 int ssb_device_is_enabled(struct ssb_device *dev)
1155 reject = ssb_tmslow_reject_bitmask(dev);
1156 val = ssb_read32(dev, SSB_TMSLOW);
1157 val &= SSB_TMSLOW_CLOCK | SSB_TMSLOW_RESET | reject;
1159 return (val == SSB_TMSLOW_CLOCK);
1161 EXPORT_SYMBOL(ssb_device_is_enabled);
1163 static void ssb_flush_tmslow(struct ssb_device *dev)
1165 /* Make _really_ sure the device has finished the TMSLOW
1166 * register write transaction, as we risk running into
1167 * a machine check exception otherwise.
1168 * Do this by reading the register back to commit the
1169 * PCI write and delay an additional usec for the device
1170 * to react to the change. */
1171 ssb_read32(dev, SSB_TMSLOW);
1175 void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags)
1179 ssb_device_disable(dev, core_specific_flags);
1180 ssb_write32(dev, SSB_TMSLOW,
1181 SSB_TMSLOW_RESET | SSB_TMSLOW_CLOCK |
1182 SSB_TMSLOW_FGC | core_specific_flags);
1183 ssb_flush_tmslow(dev);
1185 /* Clear SERR if set. This is a hw bug workaround. */
1186 if (ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_SERR)
1187 ssb_write32(dev, SSB_TMSHIGH, 0);
1189 val = ssb_read32(dev, SSB_IMSTATE);
1190 if (val & (SSB_IMSTATE_IBE | SSB_IMSTATE_TO)) {
1191 val &= ~(SSB_IMSTATE_IBE | SSB_IMSTATE_TO);
1192 ssb_write32(dev, SSB_IMSTATE, val);
1195 ssb_write32(dev, SSB_TMSLOW,
1196 SSB_TMSLOW_CLOCK | SSB_TMSLOW_FGC |
1197 core_specific_flags);
1198 ssb_flush_tmslow(dev);
1200 ssb_write32(dev, SSB_TMSLOW, SSB_TMSLOW_CLOCK |
1201 core_specific_flags);
1202 ssb_flush_tmslow(dev);
1204 EXPORT_SYMBOL(ssb_device_enable);
1206 /* Wait for bitmask in a register to get set or cleared.
1207 * timeout is in units of ten-microseconds */
1208 static int ssb_wait_bits(struct ssb_device *dev, u16 reg, u32 bitmask,
1209 int timeout, int set)
1214 for (i = 0; i < timeout; i++) {
1215 val = ssb_read32(dev, reg);
1217 if ((val & bitmask) == bitmask)
1220 if (!(val & bitmask))
1225 printk(KERN_ERR PFX "Timeout waiting for bitmask %08X on "
1226 "register %04X to %s.\n",
1227 bitmask, reg, (set ? "set" : "clear"));
1232 void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags)
1236 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_RESET)
1239 reject = ssb_tmslow_reject_bitmask(dev);
1241 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_CLOCK) {
1242 ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
1243 ssb_wait_bits(dev, SSB_TMSLOW, reject, 1000, 1);
1244 ssb_wait_bits(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
1246 if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
1247 val = ssb_read32(dev, SSB_IMSTATE);
1248 val |= SSB_IMSTATE_REJECT;
1249 ssb_write32(dev, SSB_IMSTATE, val);
1250 ssb_wait_bits(dev, SSB_IMSTATE, SSB_IMSTATE_BUSY, 1000,
1254 ssb_write32(dev, SSB_TMSLOW,
1255 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
1256 reject | SSB_TMSLOW_RESET |
1257 core_specific_flags);
1258 ssb_flush_tmslow(dev);
1260 if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
1261 val = ssb_read32(dev, SSB_IMSTATE);
1262 val &= ~SSB_IMSTATE_REJECT;
1263 ssb_write32(dev, SSB_IMSTATE, val);
1267 ssb_write32(dev, SSB_TMSLOW,
1268 reject | SSB_TMSLOW_RESET |
1269 core_specific_flags);
1270 ssb_flush_tmslow(dev);
1272 EXPORT_SYMBOL(ssb_device_disable);
1274 /* Some chipsets need routing known for PCIe and 64-bit DMA */
1275 static bool ssb_dma_translation_special_bit(struct ssb_device *dev)
1277 u16 chip_id = dev->bus->chip_id;
1279 if (dev->id.coreid == SSB_DEV_80211) {
1280 return (chip_id == 0x4322 || chip_id == 43221 ||
1281 chip_id == 43231 || chip_id == 43222);
1287 u32 ssb_dma_translation(struct ssb_device *dev)
1289 switch (dev->bus->bustype) {
1290 case SSB_BUSTYPE_SSB:
1292 case SSB_BUSTYPE_PCI:
1293 if (pci_is_pcie(dev->bus->host_pci) &&
1294 ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_DMA64) {
1295 return SSB_PCIE_DMA_H32;
1297 if (ssb_dma_translation_special_bit(dev))
1298 return SSB_PCIE_DMA_H32;
1303 __ssb_dma_not_implemented(dev);
1307 EXPORT_SYMBOL(ssb_dma_translation);
1309 int ssb_bus_may_powerdown(struct ssb_bus *bus)
1311 struct ssb_chipcommon *cc;
1314 /* On buses where more than one core may be working
1315 * at a time, we must not powerdown stuff if there are
1316 * still cores that may want to run. */
1317 if (bus->bustype == SSB_BUSTYPE_SSB)
1324 if (cc->dev->id.revision < 5)
1327 ssb_chipco_set_clockmode(cc, SSB_CLKMODE_SLOW);
1328 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
1332 #ifdef CONFIG_SSB_DEBUG
1333 bus->powered_up = 0;
1337 ssb_err("Bus powerdown failed\n");
1340 EXPORT_SYMBOL(ssb_bus_may_powerdown);
1342 int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl)
1345 enum ssb_clkmode mode;
1347 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
1351 #ifdef CONFIG_SSB_DEBUG
1352 bus->powered_up = 1;
1355 mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
1356 ssb_chipco_set_clockmode(&bus->chipco, mode);
1360 ssb_err("Bus powerup failed\n");
1363 EXPORT_SYMBOL(ssb_bus_powerup);
1365 static void ssb_broadcast_value(struct ssb_device *dev,
1366 u32 address, u32 data)
1368 #ifdef CONFIG_SSB_DRIVER_PCICORE
1369 /* This is used for both, PCI and ChipCommon core, so be careful. */
1370 BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR);
1371 BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA);
1374 ssb_write32(dev, SSB_CHIPCO_BCAST_ADDR, address);
1375 ssb_read32(dev, SSB_CHIPCO_BCAST_ADDR); /* flush */
1376 ssb_write32(dev, SSB_CHIPCO_BCAST_DATA, data);
1377 ssb_read32(dev, SSB_CHIPCO_BCAST_DATA); /* flush */
1380 void ssb_commit_settings(struct ssb_bus *bus)
1382 struct ssb_device *dev;
1384 #ifdef CONFIG_SSB_DRIVER_PCICORE
1385 dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev;
1387 dev = bus->chipco.dev;
1391 /* This forces an update of the cached registers. */
1392 ssb_broadcast_value(dev, 0xFD8, 0);
1394 EXPORT_SYMBOL(ssb_commit_settings);
1396 u32 ssb_admatch_base(u32 adm)
1400 switch (adm & SSB_ADM_TYPE) {
1402 base = (adm & SSB_ADM_BASE0);
1405 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1406 base = (adm & SSB_ADM_BASE1);
1409 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1410 base = (adm & SSB_ADM_BASE2);
1418 EXPORT_SYMBOL(ssb_admatch_base);
1420 u32 ssb_admatch_size(u32 adm)
1424 switch (adm & SSB_ADM_TYPE) {
1426 size = ((adm & SSB_ADM_SZ0) >> SSB_ADM_SZ0_SHIFT);
1429 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1430 size = ((adm & SSB_ADM_SZ1) >> SSB_ADM_SZ1_SHIFT);
1433 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1434 size = ((adm & SSB_ADM_SZ2) >> SSB_ADM_SZ2_SHIFT);
1439 size = (1 << (size + 1));
1443 EXPORT_SYMBOL(ssb_admatch_size);
1445 static int __init ssb_modinit(void)
1449 /* See the comment at the ssb_is_early_boot definition */
1450 ssb_is_early_boot = 0;
1451 err = bus_register(&ssb_bustype);
1455 /* Maybe we already registered some buses at early boot.
1456 * Check for this and attach them
1459 err = ssb_attach_queued_buses();
1462 bus_unregister(&ssb_bustype);
1466 err = b43_pci_ssb_bridge_init();
1468 ssb_err("Broadcom 43xx PCI-SSB-bridge initialization failed\n");
1469 /* don't fail SSB init because of this */
1472 err = ssb_gige_init();
1474 ssb_err("SSB Broadcom Gigabit Ethernet driver initialization failed\n");
1475 /* don't fail SSB init because of this */
1481 /* ssb must be initialized after PCI but before the ssb drivers.
1482 * That means we must use some initcall between subsys_initcall
1483 * and device_initcall. */
1484 fs_initcall(ssb_modinit);
1486 static void __exit ssb_modexit(void)
1489 b43_pci_ssb_bridge_exit();
1490 bus_unregister(&ssb_bustype);
1492 module_exit(ssb_modexit)