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_printk(KERN_ERR PFX "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)
447 ssb_devices_unregister(bus);
448 list_del(&bus->list);
451 ssb_pcmcia_exit(bus);
455 EXPORT_SYMBOL(ssb_bus_unregister);
457 static void ssb_release_dev(struct device *dev)
459 struct __ssb_dev_wrapper *devwrap;
461 devwrap = container_of(dev, struct __ssb_dev_wrapper, dev);
465 static int ssb_devices_register(struct ssb_bus *bus)
467 struct ssb_device *sdev;
469 struct __ssb_dev_wrapper *devwrap;
473 for (i = 0; i < bus->nr_devices; i++) {
474 sdev = &(bus->devices[i]);
476 /* We don't register SSB-system devices to the kernel,
477 * as the drivers for them are built into SSB. */
478 switch (sdev->id.coreid) {
479 case SSB_DEV_CHIPCOMMON:
484 case SSB_DEV_MIPS_3302:
489 devwrap = kzalloc(sizeof(*devwrap), GFP_KERNEL);
491 ssb_printk(KERN_ERR PFX
492 "Could not allocate device\n");
497 devwrap->sdev = sdev;
499 dev->release = ssb_release_dev;
500 dev->bus = &ssb_bustype;
501 dev_set_name(dev, "ssb%u:%d", bus->busnumber, dev_idx);
503 switch (bus->bustype) {
504 case SSB_BUSTYPE_PCI:
505 #ifdef CONFIG_SSB_PCIHOST
506 sdev->irq = bus->host_pci->irq;
507 dev->parent = &bus->host_pci->dev;
508 sdev->dma_dev = dev->parent;
511 case SSB_BUSTYPE_PCMCIA:
512 #ifdef CONFIG_SSB_PCMCIAHOST
513 sdev->irq = bus->host_pcmcia->irq;
514 dev->parent = &bus->host_pcmcia->dev;
517 case SSB_BUSTYPE_SDIO:
518 #ifdef CONFIG_SSB_SDIOHOST
519 dev->parent = &bus->host_sdio->dev;
522 case SSB_BUSTYPE_SSB:
523 dev->dma_mask = &dev->coherent_dma_mask;
529 err = device_register(dev);
531 ssb_printk(KERN_ERR PFX
532 "Could not register %s\n",
534 /* Set dev to NULL to not unregister
535 * dev on error unwinding. */
545 /* Unwind the already registered devices. */
546 ssb_devices_unregister(bus);
550 /* Needs ssb_buses_lock() */
551 static int __devinit ssb_attach_queued_buses(void)
553 struct ssb_bus *bus, *n;
555 int drop_them_all = 0;
557 list_for_each_entry_safe(bus, n, &attach_queue, list) {
559 list_del(&bus->list);
562 /* Can't init the PCIcore in ssb_bus_register(), as that
563 * is too early in boot for embedded systems
564 * (no udelay() available). So do it here in attach stage.
566 err = ssb_bus_powerup(bus, 0);
569 ssb_pcicore_init(&bus->pcicore);
570 if (bus->bustype == SSB_BUSTYPE_SSB)
571 ssb_watchdog_register(bus);
572 ssb_bus_may_powerdown(bus);
574 err = ssb_devices_register(bus);
578 list_del(&bus->list);
581 list_move_tail(&bus->list, &buses);
587 static u8 ssb_ssb_read8(struct ssb_device *dev, u16 offset)
589 struct ssb_bus *bus = dev->bus;
591 offset += dev->core_index * SSB_CORE_SIZE;
592 return readb(bus->mmio + offset);
595 static u16 ssb_ssb_read16(struct ssb_device *dev, u16 offset)
597 struct ssb_bus *bus = dev->bus;
599 offset += dev->core_index * SSB_CORE_SIZE;
600 return readw(bus->mmio + offset);
603 static u32 ssb_ssb_read32(struct ssb_device *dev, u16 offset)
605 struct ssb_bus *bus = dev->bus;
607 offset += dev->core_index * SSB_CORE_SIZE;
608 return readl(bus->mmio + offset);
611 #ifdef CONFIG_SSB_BLOCKIO
612 static void ssb_ssb_block_read(struct ssb_device *dev, void *buffer,
613 size_t count, u16 offset, u8 reg_width)
615 struct ssb_bus *bus = dev->bus;
618 offset += dev->core_index * SSB_CORE_SIZE;
619 addr = bus->mmio + offset;
626 *buf = __raw_readb(addr);
633 __le16 *buf = buffer;
635 SSB_WARN_ON(count & 1);
637 *buf = (__force __le16)__raw_readw(addr);
644 __le32 *buf = buffer;
646 SSB_WARN_ON(count & 3);
648 *buf = (__force __le32)__raw_readl(addr);
658 #endif /* CONFIG_SSB_BLOCKIO */
660 static void ssb_ssb_write8(struct ssb_device *dev, u16 offset, u8 value)
662 struct ssb_bus *bus = dev->bus;
664 offset += dev->core_index * SSB_CORE_SIZE;
665 writeb(value, bus->mmio + offset);
668 static void ssb_ssb_write16(struct ssb_device *dev, u16 offset, u16 value)
670 struct ssb_bus *bus = dev->bus;
672 offset += dev->core_index * SSB_CORE_SIZE;
673 writew(value, bus->mmio + offset);
676 static void ssb_ssb_write32(struct ssb_device *dev, u16 offset, u32 value)
678 struct ssb_bus *bus = dev->bus;
680 offset += dev->core_index * SSB_CORE_SIZE;
681 writel(value, bus->mmio + offset);
684 #ifdef CONFIG_SSB_BLOCKIO
685 static void ssb_ssb_block_write(struct ssb_device *dev, const void *buffer,
686 size_t count, u16 offset, u8 reg_width)
688 struct ssb_bus *bus = dev->bus;
691 offset += dev->core_index * SSB_CORE_SIZE;
692 addr = bus->mmio + offset;
696 const u8 *buf = buffer;
699 __raw_writeb(*buf, addr);
706 const __le16 *buf = buffer;
708 SSB_WARN_ON(count & 1);
710 __raw_writew((__force u16)(*buf), addr);
717 const __le32 *buf = buffer;
719 SSB_WARN_ON(count & 3);
721 __raw_writel((__force u32)(*buf), addr);
731 #endif /* CONFIG_SSB_BLOCKIO */
733 /* Ops for the plain SSB bus without a host-device (no PCI or PCMCIA). */
734 static const struct ssb_bus_ops ssb_ssb_ops = {
735 .read8 = ssb_ssb_read8,
736 .read16 = ssb_ssb_read16,
737 .read32 = ssb_ssb_read32,
738 .write8 = ssb_ssb_write8,
739 .write16 = ssb_ssb_write16,
740 .write32 = ssb_ssb_write32,
741 #ifdef CONFIG_SSB_BLOCKIO
742 .block_read = ssb_ssb_block_read,
743 .block_write = ssb_ssb_block_write,
747 static int ssb_fetch_invariants(struct ssb_bus *bus,
748 ssb_invariants_func_t get_invariants)
750 struct ssb_init_invariants iv;
753 memset(&iv, 0, sizeof(iv));
754 err = get_invariants(bus, &iv);
757 memcpy(&bus->boardinfo, &iv.boardinfo, sizeof(iv.boardinfo));
758 memcpy(&bus->sprom, &iv.sprom, sizeof(iv.sprom));
759 bus->has_cardbus_slot = iv.has_cardbus_slot;
764 static int __devinit ssb_bus_register(struct ssb_bus *bus,
765 ssb_invariants_func_t get_invariants,
766 unsigned long baseaddr)
770 spin_lock_init(&bus->bar_lock);
771 INIT_LIST_HEAD(&bus->list);
772 #ifdef CONFIG_SSB_EMBEDDED
773 spin_lock_init(&bus->gpio_lock);
776 /* Powerup the bus */
777 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
781 /* Init SDIO-host device (if any), before the scan */
782 err = ssb_sdio_init(bus);
784 goto err_disable_xtal;
787 bus->busnumber = next_busnumber;
788 /* Scan for devices (cores) */
789 err = ssb_bus_scan(bus, baseaddr);
793 /* Init PCI-host device (if any) */
794 err = ssb_pci_init(bus);
797 /* Init PCMCIA-host device (if any) */
798 err = ssb_pcmcia_init(bus);
802 /* Initialize basic system devices (if available) */
803 err = ssb_bus_powerup(bus, 0);
805 goto err_pcmcia_exit;
806 ssb_chipcommon_init(&bus->chipco);
807 ssb_extif_init(&bus->extif);
808 ssb_mipscore_init(&bus->mipscore);
809 err = ssb_gpio_init(bus);
810 if (err == -ENOTSUPP)
811 ssb_dprintk(KERN_DEBUG PFX "GPIO driver not activated\n");
813 ssb_dprintk(KERN_ERR PFX
814 "Error registering GPIO driver: %i\n", err);
815 err = ssb_fetch_invariants(bus, get_invariants);
817 ssb_bus_may_powerdown(bus);
818 goto err_pcmcia_exit;
820 ssb_bus_may_powerdown(bus);
822 /* Queue it for attach.
823 * See the comment at the ssb_is_early_boot definition. */
824 list_add_tail(&bus->list, &attach_queue);
825 if (!ssb_is_early_boot) {
826 /* This is not early boot, so we must attach the bus now */
827 err = ssb_attach_queued_buses();
838 list_del(&bus->list);
840 ssb_pcmcia_exit(bus);
849 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
853 #ifdef CONFIG_SSB_PCIHOST
854 int __devinit ssb_bus_pcibus_register(struct ssb_bus *bus,
855 struct pci_dev *host_pci)
859 bus->bustype = SSB_BUSTYPE_PCI;
860 bus->host_pci = host_pci;
861 bus->ops = &ssb_pci_ops;
863 err = ssb_bus_register(bus, ssb_pci_get_invariants, 0);
865 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found on "
866 "PCI device %s\n", dev_name(&host_pci->dev));
868 ssb_printk(KERN_ERR PFX "Failed to register PCI version"
869 " of SSB with error %d\n", err);
874 EXPORT_SYMBOL(ssb_bus_pcibus_register);
875 #endif /* CONFIG_SSB_PCIHOST */
877 #ifdef CONFIG_SSB_PCMCIAHOST
878 int __devinit ssb_bus_pcmciabus_register(struct ssb_bus *bus,
879 struct pcmcia_device *pcmcia_dev,
880 unsigned long baseaddr)
884 bus->bustype = SSB_BUSTYPE_PCMCIA;
885 bus->host_pcmcia = pcmcia_dev;
886 bus->ops = &ssb_pcmcia_ops;
888 err = ssb_bus_register(bus, ssb_pcmcia_get_invariants, baseaddr);
890 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found on "
891 "PCMCIA device %s\n", pcmcia_dev->devname);
896 EXPORT_SYMBOL(ssb_bus_pcmciabus_register);
897 #endif /* CONFIG_SSB_PCMCIAHOST */
899 #ifdef CONFIG_SSB_SDIOHOST
900 int __devinit ssb_bus_sdiobus_register(struct ssb_bus *bus,
901 struct sdio_func *func,
906 bus->bustype = SSB_BUSTYPE_SDIO;
907 bus->host_sdio = func;
908 bus->ops = &ssb_sdio_ops;
909 bus->quirks = quirks;
911 err = ssb_bus_register(bus, ssb_sdio_get_invariants, ~0);
913 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found on "
914 "SDIO device %s\n", sdio_func_id(func));
919 EXPORT_SYMBOL(ssb_bus_sdiobus_register);
920 #endif /* CONFIG_SSB_PCMCIAHOST */
922 int __devinit ssb_bus_ssbbus_register(struct ssb_bus *bus,
923 unsigned long baseaddr,
924 ssb_invariants_func_t get_invariants)
928 bus->bustype = SSB_BUSTYPE_SSB;
929 bus->ops = &ssb_ssb_ops;
931 err = ssb_bus_register(bus, get_invariants, baseaddr);
933 ssb_printk(KERN_INFO PFX "Sonics Silicon Backplane found at "
934 "address 0x%08lX\n", baseaddr);
940 int __ssb_driver_register(struct ssb_driver *drv, struct module *owner)
942 drv->drv.name = drv->name;
943 drv->drv.bus = &ssb_bustype;
944 drv->drv.owner = owner;
946 return driver_register(&drv->drv);
948 EXPORT_SYMBOL(__ssb_driver_register);
950 void ssb_driver_unregister(struct ssb_driver *drv)
952 driver_unregister(&drv->drv);
954 EXPORT_SYMBOL(ssb_driver_unregister);
956 void ssb_set_devtypedata(struct ssb_device *dev, void *data)
958 struct ssb_bus *bus = dev->bus;
959 struct ssb_device *ent;
962 for (i = 0; i < bus->nr_devices; i++) {
963 ent = &(bus->devices[i]);
964 if (ent->id.vendor != dev->id.vendor)
966 if (ent->id.coreid != dev->id.coreid)
969 ent->devtypedata = data;
972 EXPORT_SYMBOL(ssb_set_devtypedata);
974 static u32 clkfactor_f6_resolve(u32 v)
976 /* map the magic values */
978 case SSB_CHIPCO_CLK_F6_2:
980 case SSB_CHIPCO_CLK_F6_3:
982 case SSB_CHIPCO_CLK_F6_4:
984 case SSB_CHIPCO_CLK_F6_5:
986 case SSB_CHIPCO_CLK_F6_6:
988 case SSB_CHIPCO_CLK_F6_7:
994 /* Calculate the speed the backplane would run at a given set of clockcontrol values */
995 u32 ssb_calc_clock_rate(u32 plltype, u32 n, u32 m)
997 u32 n1, n2, clock, m1, m2, m3, mc;
999 n1 = (n & SSB_CHIPCO_CLK_N1);
1000 n2 = ((n & SSB_CHIPCO_CLK_N2) >> SSB_CHIPCO_CLK_N2_SHIFT);
1003 case SSB_PLLTYPE_6: /* 100/200 or 120/240 only */
1004 if (m & SSB_CHIPCO_CLK_T6_MMASK)
1005 return SSB_CHIPCO_CLK_T6_M1;
1006 return SSB_CHIPCO_CLK_T6_M0;
1007 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
1008 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
1009 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
1010 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
1011 n1 = clkfactor_f6_resolve(n1);
1012 n2 += SSB_CHIPCO_CLK_F5_BIAS;
1014 case SSB_PLLTYPE_2: /* 48Mhz, 4 dividers */
1015 n1 += SSB_CHIPCO_CLK_T2_BIAS;
1016 n2 += SSB_CHIPCO_CLK_T2_BIAS;
1017 SSB_WARN_ON(!((n1 >= 2) && (n1 <= 7)));
1018 SSB_WARN_ON(!((n2 >= 5) && (n2 <= 23)));
1020 case SSB_PLLTYPE_5: /* 25Mhz, 4 dividers */
1027 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
1028 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
1029 clock = SSB_CHIPCO_CLK_BASE2 * n1 * n2;
1032 clock = SSB_CHIPCO_CLK_BASE1 * n1 * n2;
1037 m1 = (m & SSB_CHIPCO_CLK_M1);
1038 m2 = ((m & SSB_CHIPCO_CLK_M2) >> SSB_CHIPCO_CLK_M2_SHIFT);
1039 m3 = ((m & SSB_CHIPCO_CLK_M3) >> SSB_CHIPCO_CLK_M3_SHIFT);
1040 mc = ((m & SSB_CHIPCO_CLK_MC) >> SSB_CHIPCO_CLK_MC_SHIFT);
1043 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
1044 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
1045 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
1046 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
1047 m1 = clkfactor_f6_resolve(m1);
1048 if ((plltype == SSB_PLLTYPE_1) ||
1049 (plltype == SSB_PLLTYPE_3))
1050 m2 += SSB_CHIPCO_CLK_F5_BIAS;
1052 m2 = clkfactor_f6_resolve(m2);
1053 m3 = clkfactor_f6_resolve(m3);
1056 case SSB_CHIPCO_CLK_MC_BYPASS:
1058 case SSB_CHIPCO_CLK_MC_M1:
1059 return (clock / m1);
1060 case SSB_CHIPCO_CLK_MC_M1M2:
1061 return (clock / (m1 * m2));
1062 case SSB_CHIPCO_CLK_MC_M1M2M3:
1063 return (clock / (m1 * m2 * m3));
1064 case SSB_CHIPCO_CLK_MC_M1M3:
1065 return (clock / (m1 * m3));
1069 m1 += SSB_CHIPCO_CLK_T2_BIAS;
1070 m2 += SSB_CHIPCO_CLK_T2M2_BIAS;
1071 m3 += SSB_CHIPCO_CLK_T2_BIAS;
1072 SSB_WARN_ON(!((m1 >= 2) && (m1 <= 7)));
1073 SSB_WARN_ON(!((m2 >= 3) && (m2 <= 10)));
1074 SSB_WARN_ON(!((m3 >= 2) && (m3 <= 7)));
1076 if (!(mc & SSB_CHIPCO_CLK_T2MC_M1BYP))
1078 if (!(mc & SSB_CHIPCO_CLK_T2MC_M2BYP))
1080 if (!(mc & SSB_CHIPCO_CLK_T2MC_M3BYP))
1089 /* Get the current speed the backplane is running at */
1090 u32 ssb_clockspeed(struct ssb_bus *bus)
1094 u32 clkctl_n, clkctl_m;
1096 if (bus->chipco.capabilities & SSB_CHIPCO_CAP_PMU)
1097 return ssb_pmu_get_controlclock(&bus->chipco);
1099 if (ssb_extif_available(&bus->extif))
1100 ssb_extif_get_clockcontrol(&bus->extif, &plltype,
1101 &clkctl_n, &clkctl_m);
1102 else if (bus->chipco.dev)
1103 ssb_chipco_get_clockcontrol(&bus->chipco, &plltype,
1104 &clkctl_n, &clkctl_m);
1108 if (bus->chip_id == 0x5365) {
1111 rate = ssb_calc_clock_rate(plltype, clkctl_n, clkctl_m);
1112 if (plltype == SSB_PLLTYPE_3) /* 25Mhz, 2 dividers */
1118 EXPORT_SYMBOL(ssb_clockspeed);
1120 static u32 ssb_tmslow_reject_bitmask(struct ssb_device *dev)
1122 u32 rev = ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV;
1124 /* The REJECT bit seems to be different for Backplane rev 2.3 */
1126 case SSB_IDLOW_SSBREV_22:
1127 case SSB_IDLOW_SSBREV_24:
1128 case SSB_IDLOW_SSBREV_26:
1129 return SSB_TMSLOW_REJECT;
1130 case SSB_IDLOW_SSBREV_23:
1131 return SSB_TMSLOW_REJECT_23;
1132 case SSB_IDLOW_SSBREV_25: /* TODO - find the proper REJECT bit */
1133 case SSB_IDLOW_SSBREV_27: /* same here */
1134 return SSB_TMSLOW_REJECT; /* this is a guess */
1136 WARN(1, KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev);
1138 return (SSB_TMSLOW_REJECT | SSB_TMSLOW_REJECT_23);
1141 int ssb_device_is_enabled(struct ssb_device *dev)
1146 reject = ssb_tmslow_reject_bitmask(dev);
1147 val = ssb_read32(dev, SSB_TMSLOW);
1148 val &= SSB_TMSLOW_CLOCK | SSB_TMSLOW_RESET | reject;
1150 return (val == SSB_TMSLOW_CLOCK);
1152 EXPORT_SYMBOL(ssb_device_is_enabled);
1154 static void ssb_flush_tmslow(struct ssb_device *dev)
1156 /* Make _really_ sure the device has finished the TMSLOW
1157 * register write transaction, as we risk running into
1158 * a machine check exception otherwise.
1159 * Do this by reading the register back to commit the
1160 * PCI write and delay an additional usec for the device
1161 * to react to the change. */
1162 ssb_read32(dev, SSB_TMSLOW);
1166 void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags)
1170 ssb_device_disable(dev, core_specific_flags);
1171 ssb_write32(dev, SSB_TMSLOW,
1172 SSB_TMSLOW_RESET | SSB_TMSLOW_CLOCK |
1173 SSB_TMSLOW_FGC | core_specific_flags);
1174 ssb_flush_tmslow(dev);
1176 /* Clear SERR if set. This is a hw bug workaround. */
1177 if (ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_SERR)
1178 ssb_write32(dev, SSB_TMSHIGH, 0);
1180 val = ssb_read32(dev, SSB_IMSTATE);
1181 if (val & (SSB_IMSTATE_IBE | SSB_IMSTATE_TO)) {
1182 val &= ~(SSB_IMSTATE_IBE | SSB_IMSTATE_TO);
1183 ssb_write32(dev, SSB_IMSTATE, val);
1186 ssb_write32(dev, SSB_TMSLOW,
1187 SSB_TMSLOW_CLOCK | SSB_TMSLOW_FGC |
1188 core_specific_flags);
1189 ssb_flush_tmslow(dev);
1191 ssb_write32(dev, SSB_TMSLOW, SSB_TMSLOW_CLOCK |
1192 core_specific_flags);
1193 ssb_flush_tmslow(dev);
1195 EXPORT_SYMBOL(ssb_device_enable);
1197 /* Wait for bitmask in a register to get set or cleared.
1198 * timeout is in units of ten-microseconds */
1199 static int ssb_wait_bits(struct ssb_device *dev, u16 reg, u32 bitmask,
1200 int timeout, int set)
1205 for (i = 0; i < timeout; i++) {
1206 val = ssb_read32(dev, reg);
1208 if ((val & bitmask) == bitmask)
1211 if (!(val & bitmask))
1216 printk(KERN_ERR PFX "Timeout waiting for bitmask %08X on "
1217 "register %04X to %s.\n",
1218 bitmask, reg, (set ? "set" : "clear"));
1223 void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags)
1227 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_RESET)
1230 reject = ssb_tmslow_reject_bitmask(dev);
1232 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_CLOCK) {
1233 ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
1234 ssb_wait_bits(dev, SSB_TMSLOW, reject, 1000, 1);
1235 ssb_wait_bits(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
1237 if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
1238 val = ssb_read32(dev, SSB_IMSTATE);
1239 val |= SSB_IMSTATE_REJECT;
1240 ssb_write32(dev, SSB_IMSTATE, val);
1241 ssb_wait_bits(dev, SSB_IMSTATE, SSB_IMSTATE_BUSY, 1000,
1245 ssb_write32(dev, SSB_TMSLOW,
1246 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
1247 reject | SSB_TMSLOW_RESET |
1248 core_specific_flags);
1249 ssb_flush_tmslow(dev);
1251 if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
1252 val = ssb_read32(dev, SSB_IMSTATE);
1253 val &= ~SSB_IMSTATE_REJECT;
1254 ssb_write32(dev, SSB_IMSTATE, val);
1258 ssb_write32(dev, SSB_TMSLOW,
1259 reject | SSB_TMSLOW_RESET |
1260 core_specific_flags);
1261 ssb_flush_tmslow(dev);
1263 EXPORT_SYMBOL(ssb_device_disable);
1265 /* Some chipsets need routing known for PCIe and 64-bit DMA */
1266 static bool ssb_dma_translation_special_bit(struct ssb_device *dev)
1268 u16 chip_id = dev->bus->chip_id;
1270 if (dev->id.coreid == SSB_DEV_80211) {
1271 return (chip_id == 0x4322 || chip_id == 43221 ||
1272 chip_id == 43231 || chip_id == 43222);
1278 u32 ssb_dma_translation(struct ssb_device *dev)
1280 switch (dev->bus->bustype) {
1281 case SSB_BUSTYPE_SSB:
1283 case SSB_BUSTYPE_PCI:
1284 if (pci_is_pcie(dev->bus->host_pci) &&
1285 ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_DMA64) {
1286 return SSB_PCIE_DMA_H32;
1288 if (ssb_dma_translation_special_bit(dev))
1289 return SSB_PCIE_DMA_H32;
1294 __ssb_dma_not_implemented(dev);
1298 EXPORT_SYMBOL(ssb_dma_translation);
1300 int ssb_bus_may_powerdown(struct ssb_bus *bus)
1302 struct ssb_chipcommon *cc;
1305 /* On buses where more than one core may be working
1306 * at a time, we must not powerdown stuff if there are
1307 * still cores that may want to run. */
1308 if (bus->bustype == SSB_BUSTYPE_SSB)
1315 if (cc->dev->id.revision < 5)
1318 ssb_chipco_set_clockmode(cc, SSB_CLKMODE_SLOW);
1319 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
1323 #ifdef CONFIG_SSB_DEBUG
1324 bus->powered_up = 0;
1328 ssb_printk(KERN_ERR PFX "Bus powerdown failed\n");
1331 EXPORT_SYMBOL(ssb_bus_may_powerdown);
1333 int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl)
1336 enum ssb_clkmode mode;
1338 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
1342 #ifdef CONFIG_SSB_DEBUG
1343 bus->powered_up = 1;
1346 mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
1347 ssb_chipco_set_clockmode(&bus->chipco, mode);
1351 ssb_printk(KERN_ERR PFX "Bus powerup failed\n");
1354 EXPORT_SYMBOL(ssb_bus_powerup);
1356 static void ssb_broadcast_value(struct ssb_device *dev,
1357 u32 address, u32 data)
1359 #ifdef CONFIG_SSB_DRIVER_PCICORE
1360 /* This is used for both, PCI and ChipCommon core, so be careful. */
1361 BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR);
1362 BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA);
1365 ssb_write32(dev, SSB_CHIPCO_BCAST_ADDR, address);
1366 ssb_read32(dev, SSB_CHIPCO_BCAST_ADDR); /* flush */
1367 ssb_write32(dev, SSB_CHIPCO_BCAST_DATA, data);
1368 ssb_read32(dev, SSB_CHIPCO_BCAST_DATA); /* flush */
1371 void ssb_commit_settings(struct ssb_bus *bus)
1373 struct ssb_device *dev;
1375 #ifdef CONFIG_SSB_DRIVER_PCICORE
1376 dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev;
1378 dev = bus->chipco.dev;
1382 /* This forces an update of the cached registers. */
1383 ssb_broadcast_value(dev, 0xFD8, 0);
1385 EXPORT_SYMBOL(ssb_commit_settings);
1387 u32 ssb_admatch_base(u32 adm)
1391 switch (adm & SSB_ADM_TYPE) {
1393 base = (adm & SSB_ADM_BASE0);
1396 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1397 base = (adm & SSB_ADM_BASE1);
1400 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1401 base = (adm & SSB_ADM_BASE2);
1409 EXPORT_SYMBOL(ssb_admatch_base);
1411 u32 ssb_admatch_size(u32 adm)
1415 switch (adm & SSB_ADM_TYPE) {
1417 size = ((adm & SSB_ADM_SZ0) >> SSB_ADM_SZ0_SHIFT);
1420 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1421 size = ((adm & SSB_ADM_SZ1) >> SSB_ADM_SZ1_SHIFT);
1424 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1425 size = ((adm & SSB_ADM_SZ2) >> SSB_ADM_SZ2_SHIFT);
1430 size = (1 << (size + 1));
1434 EXPORT_SYMBOL(ssb_admatch_size);
1436 static int __init ssb_modinit(void)
1440 /* See the comment at the ssb_is_early_boot definition */
1441 ssb_is_early_boot = 0;
1442 err = bus_register(&ssb_bustype);
1446 /* Maybe we already registered some buses at early boot.
1447 * Check for this and attach them
1450 err = ssb_attach_queued_buses();
1453 bus_unregister(&ssb_bustype);
1457 err = b43_pci_ssb_bridge_init();
1459 ssb_printk(KERN_ERR "Broadcom 43xx PCI-SSB-bridge "
1460 "initialization failed\n");
1461 /* don't fail SSB init because of this */
1464 err = ssb_gige_init();
1466 ssb_printk(KERN_ERR "SSB Broadcom Gigabit Ethernet "
1467 "driver initialization failed\n");
1468 /* don't fail SSB init because of this */
1474 /* ssb must be initialized after PCI but before the ssb drivers.
1475 * That means we must use some initcall between subsys_initcall
1476 * and device_initcall. */
1477 fs_initcall(ssb_modinit);
1479 static void __exit ssb_modexit(void)
1482 b43_pci_ssb_bridge_exit();
1483 bus_unregister(&ssb_bustype);
1485 module_exit(ssb_modexit)