2 +++ b/Documentation/ABI/testing/sysfs-bus-bcma
4 +What: /sys/bus/bcma/devices/.../manuf
7 +Contact: Rafał Miłecki <zajec5@gmail.com>
9 + Each BCMA core has it's manufacturer id. See
10 + include/linux/bcma/bcma.h for possible values.
12 +What: /sys/bus/bcma/devices/.../id
14 +KernelVersion: 2.6.40
15 +Contact: Rafał Miłecki <zajec5@gmail.com>
17 + There are a few types of BCMA cores, they can be identified by
20 +What: /sys/bus/bcma/devices/.../rev
22 +KernelVersion: 2.6.40
23 +Contact: Rafał Miłecki <zajec5@gmail.com>
25 + BCMA cores of the same type can still slightly differ depending
26 + on their revision. Use it for detailed programming.
28 +What: /sys/bus/bcma/devices/.../class
30 +KernelVersion: 2.6.40
31 +Contact: Rafał Miłecki <zajec5@gmail.com>
33 + Each BCMA core is identified by few fields, including class it
34 + belongs to. See include/linux/bcma/bcma.h for possible values.
37 @@ -4716,6 +4716,13 @@ S: Maintained
41 +BROADCOM SPECIFIC AMBA DRIVER (BCMA)
42 +M: Rafał Miłecki <zajec5@gmail.com>
43 +L: linux-wireless@vger.kernel.org
46 +F: include/linux/bcma/
48 SONY VAIO CONTROL DEVICE DRIVER
49 M: Mattia Dongili <malattia@linux.it>
50 L: linux-acpi@vger.kernel.org
53 @@ -68,6 +68,8 @@ source "drivers/watchdog/Kconfig"
55 source "drivers/ssb/Kconfig"
57 +source "drivers/bcma/Kconfig"
59 source "drivers/mfd/Kconfig"
61 source "drivers/regulator/Kconfig"
62 --- a/drivers/Makefile
63 +++ b/drivers/Makefile
64 @@ -105,6 +105,7 @@ obj-$(CONFIG_HID) += hid/
65 obj-$(CONFIG_PPC_PS3) += ps3/
66 obj-$(CONFIG_OF) += of/
67 obj-$(CONFIG_SSB) += ssb/
68 +obj-$(CONFIG_BCMA) += bcma/
69 obj-$(CONFIG_VIRTIO) += virtio/
70 obj-$(CONFIG_VLYNQ) += vlynq/
71 obj-$(CONFIG_STAGING) += staging/
73 +++ b/drivers/bcma/Kconfig
77 + depends on HAS_IOMEM && HAS_DMA
80 +menu "Broadcom specific AMBA"
81 + depends on BCMA_POSSIBLE
84 + tristate "BCMA support"
85 + depends on BCMA_POSSIBLE
87 + Bus driver for Broadcom specific Advanced Microcontroller Bus
90 +# Support for Block-I/O. SELECT this from the driver that needs it.
95 +config BCMA_HOST_PCI_POSSIBLE
97 + depends on BCMA && PCI = y
100 +config BCMA_HOST_PCI
101 + bool "Support for BCMA on PCI-host bus"
102 + depends on BCMA_HOST_PCI_POSSIBLE
104 +config BCMA_DRIVER_PCI_HOSTMODE
105 + bool "Driver for PCI core working in hostmode"
106 + depends on BCMA && MIPS
108 + PCI core hostmode operation (external PCI bus).
110 +config BCMA_HOST_SOC
112 + depends on BCMA_DRIVER_MIPS
114 +config BCMA_DRIVER_MIPS
115 + bool "BCMA Broadcom MIPS core driver"
116 + depends on BCMA && MIPS
118 + Driver for the Broadcom MIPS core attached to Broadcom specific
119 + Advanced Microcontroller Bus.
124 + bool "BCMA debugging"
127 + This turns on additional debugging messages.
133 +++ b/drivers/bcma/Makefile
135 +bcma-y += main.o scan.o core.o sprom.o
136 +bcma-y += driver_chipcommon.o driver_chipcommon_pmu.o
137 +bcma-y += driver_pci.o
138 +bcma-$(CONFIG_BCMA_DRIVER_PCI_HOSTMODE) += driver_pci_host.o
139 +bcma-$(CONFIG_BCMA_DRIVER_MIPS) += driver_mips.o
140 +bcma-$(CONFIG_BCMA_HOST_PCI) += host_pci.o
141 +bcma-$(CONFIG_BCMA_HOST_SOC) += host_soc.o
142 +obj-$(CONFIG_BCMA) += bcma.o
144 +ccflags-$(CONFIG_BCMA_DEBUG) := -DDEBUG
146 +++ b/drivers/bcma/README
148 +Broadcom introduced new bus as replacement for older SSB. It is based on AMBA,
149 +however from programming point of view there is nothing AMBA specific we use.
151 +Standard AMBA drivers are platform specific, have hardcoded addresses and use
152 +AMBA standard fields like CID and PID.
154 +In case of Broadcom's cards every device consists of:
155 +1) Broadcom specific AMBA device. It is put on AMBA bus, but can not be treated
156 + as standard AMBA device. Reading it's CID or PID can cause machine lockup.
157 +2) AMBA standard devices called ports or wrappers. They have CIDs (AMBA_CID)
158 + and PIDs (0x103BB369), but we do not use that info for anything. One of that
159 + devices is used for managing Broadcom specific core.
161 +Addresses of AMBA devices are not hardcoded in driver and have to be read from
164 +In this situation we decided to introduce separated bus. It can contain up to
165 +16 devices identified by Broadcom specific fields: manufacturer, id, revision
168 +++ b/drivers/bcma/TODO
171 +- Defines for PCI core driver
172 +- Create kernel Documentation (use info from README)
174 +++ b/drivers/bcma/bcma_private.h
176 +#ifndef LINUX_BCMA_PRIVATE_H_
177 +#define LINUX_BCMA_PRIVATE_H_
180 +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
183 +#include <linux/bcma/bcma.h>
184 +#include <linux/delay.h>
186 +#define BCMA_CORE_SIZE 0x1000
191 +int bcma_bus_register(struct bcma_bus *bus);
192 +void bcma_bus_unregister(struct bcma_bus *bus);
193 +int __init bcma_bus_early_register(struct bcma_bus *bus,
194 + struct bcma_device *core_cc,
195 + struct bcma_device *core_mips);
197 +int bcma_bus_resume(struct bcma_bus *bus);
201 +int bcma_bus_scan(struct bcma_bus *bus);
202 +int __init bcma_bus_scan_early(struct bcma_bus *bus,
203 + struct bcma_device_id *match,
204 + struct bcma_device *core);
205 +void bcma_init_bus(struct bcma_bus *bus);
208 +int bcma_sprom_get(struct bcma_bus *bus);
210 +/* driver_chipcommon.c */
211 +#ifdef CONFIG_BCMA_DRIVER_MIPS
212 +void bcma_chipco_serial_init(struct bcma_drv_cc *cc);
213 +#endif /* CONFIG_BCMA_DRIVER_MIPS */
215 +/* driver_chipcommon_pmu.c */
216 +u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc);
217 +u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc);
219 +#ifdef CONFIG_BCMA_HOST_PCI
221 +extern int __init bcma_host_pci_init(void);
222 +extern void __exit bcma_host_pci_exit(void);
223 +#endif /* CONFIG_BCMA_HOST_PCI */
225 +#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
226 +void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc);
227 +#endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
231 +++ b/drivers/bcma/core.c
234 + * Broadcom specific AMBA
237 + * Licensed under the GNU/GPL. See COPYING for details.
240 +#include "bcma_private.h"
241 +#include <linux/bcma/bcma.h>
243 +bool bcma_core_is_enabled(struct bcma_device *core)
245 + if ((bcma_aread32(core, BCMA_IOCTL) & (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC))
248 + if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET)
252 +EXPORT_SYMBOL_GPL(bcma_core_is_enabled);
254 +void bcma_core_disable(struct bcma_device *core, u32 flags)
256 + if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET)
259 + bcma_awrite32(core, BCMA_IOCTL, flags);
260 + bcma_aread32(core, BCMA_IOCTL);
263 + bcma_awrite32(core, BCMA_RESET_CTL, BCMA_RESET_CTL_RESET);
266 +EXPORT_SYMBOL_GPL(bcma_core_disable);
268 +int bcma_core_enable(struct bcma_device *core, u32 flags)
270 + bcma_core_disable(core, flags);
272 + bcma_awrite32(core, BCMA_IOCTL, (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC | flags));
273 + bcma_aread32(core, BCMA_IOCTL);
275 + bcma_awrite32(core, BCMA_RESET_CTL, 0);
278 + bcma_awrite32(core, BCMA_IOCTL, (BCMA_IOCTL_CLK | flags));
279 + bcma_aread32(core, BCMA_IOCTL);
284 +EXPORT_SYMBOL_GPL(bcma_core_enable);
286 +void bcma_core_set_clockmode(struct bcma_device *core,
287 + enum bcma_clkmode clkmode)
291 + WARN_ON(core->id.id != BCMA_CORE_CHIPCOMMON &&
292 + core->id.id != BCMA_CORE_PCIE &&
293 + core->id.id != BCMA_CORE_80211);
296 + case BCMA_CLKMODE_FAST:
297 + bcma_set32(core, BCMA_CLKCTLST, BCMA_CLKCTLST_FORCEHT);
299 + for (i = 0; i < 1500; i++) {
300 + if (bcma_read32(core, BCMA_CLKCTLST) &
301 + BCMA_CLKCTLST_HAVEHT) {
308 + pr_err("HT force timeout\n");
310 + case BCMA_CLKMODE_DYNAMIC:
311 + pr_warning("Dynamic clockmode not supported yet!\n");
315 +EXPORT_SYMBOL_GPL(bcma_core_set_clockmode);
317 +void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status, bool on)
321 + WARN_ON(req & ~BCMA_CLKCTLST_EXTRESREQ);
322 + WARN_ON(status & ~BCMA_CLKCTLST_EXTRESST);
325 + bcma_set32(core, BCMA_CLKCTLST, req);
326 + for (i = 0; i < 10000; i++) {
327 + if ((bcma_read32(core, BCMA_CLKCTLST) & status) ==
335 + pr_err("PLL enable timeout\n");
337 + pr_warning("Disabling PLL not supported yet!\n");
340 +EXPORT_SYMBOL_GPL(bcma_core_pll_ctl);
342 +u32 bcma_core_dma_translation(struct bcma_device *core)
344 + switch (core->bus->hosttype) {
345 + case BCMA_HOSTTYPE_SOC:
347 + case BCMA_HOSTTYPE_PCI:
348 + if (bcma_aread32(core, BCMA_IOST) & BCMA_IOST_DMA64)
349 + return BCMA_DMA_TRANSLATION_DMA64_CMT;
351 + return BCMA_DMA_TRANSLATION_DMA32_CMT;
353 + pr_err("DMA translation unknown for host %d\n",
354 + core->bus->hosttype);
356 + return BCMA_DMA_TRANSLATION_NONE;
358 +EXPORT_SYMBOL(bcma_core_dma_translation);
360 +++ b/drivers/bcma/driver_chipcommon.c
363 + * Broadcom specific AMBA
364 + * ChipCommon core driver
366 + * Copyright 2005, Broadcom Corporation
367 + * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
369 + * Licensed under the GNU/GPL. See COPYING for details.
372 +#include "bcma_private.h"
373 +#include <linux/bcma/bcma.h>
375 +static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset,
376 + u32 mask, u32 value)
379 + value |= bcma_cc_read32(cc, offset) & ~mask;
380 + bcma_cc_write32(cc, offset, value);
385 +void bcma_core_chipcommon_init(struct bcma_drv_cc *cc)
388 + u32 leddc_off = 90;
390 + if (cc->setup_done)
393 + if (cc->core->id.rev >= 11)
394 + cc->status = bcma_cc_read32(cc, BCMA_CC_CHIPSTAT);
395 + cc->capabilities = bcma_cc_read32(cc, BCMA_CC_CAP);
396 + if (cc->core->id.rev >= 35)
397 + cc->capabilities_ext = bcma_cc_read32(cc, BCMA_CC_CAP_EXT);
399 + if (cc->core->id.rev >= 20) {
400 + bcma_cc_write32(cc, BCMA_CC_GPIOPULLUP, 0);
401 + bcma_cc_write32(cc, BCMA_CC_GPIOPULLDOWN, 0);
404 + if (cc->capabilities & BCMA_CC_CAP_PMU)
406 + if (cc->capabilities & BCMA_CC_CAP_PCTL)
407 + pr_err("Power control not implemented!\n");
409 + if (cc->core->id.rev >= 16) {
410 + if (cc->core->bus->sprom.leddc_on_time &&
411 + cc->core->bus->sprom.leddc_off_time) {
412 + leddc_on = cc->core->bus->sprom.leddc_on_time;
413 + leddc_off = cc->core->bus->sprom.leddc_off_time;
415 + bcma_cc_write32(cc, BCMA_CC_GPIOTIMER,
416 + ((leddc_on << BCMA_CC_GPIOTIMER_ONTIME_SHIFT) |
417 + (leddc_off << BCMA_CC_GPIOTIMER_OFFTIME_SHIFT)));
420 + cc->setup_done = true;
423 +/* Set chip watchdog reset timer to fire in 'ticks' backplane cycles */
424 +void bcma_chipco_watchdog_timer_set(struct bcma_drv_cc *cc, u32 ticks)
427 + bcma_cc_write32(cc, BCMA_CC_WATCHDOG, ticks);
430 +void bcma_chipco_irq_mask(struct bcma_drv_cc *cc, u32 mask, u32 value)
432 + bcma_cc_write32_masked(cc, BCMA_CC_IRQMASK, mask, value);
435 +u32 bcma_chipco_irq_status(struct bcma_drv_cc *cc, u32 mask)
437 + return bcma_cc_read32(cc, BCMA_CC_IRQSTAT) & mask;
440 +u32 bcma_chipco_gpio_in(struct bcma_drv_cc *cc, u32 mask)
442 + return bcma_cc_read32(cc, BCMA_CC_GPIOIN) & mask;
445 +u32 bcma_chipco_gpio_out(struct bcma_drv_cc *cc, u32 mask, u32 value)
447 + return bcma_cc_write32_masked(cc, BCMA_CC_GPIOOUT, mask, value);
450 +u32 bcma_chipco_gpio_outen(struct bcma_drv_cc *cc, u32 mask, u32 value)
452 + return bcma_cc_write32_masked(cc, BCMA_CC_GPIOOUTEN, mask, value);
455 +u32 bcma_chipco_gpio_control(struct bcma_drv_cc *cc, u32 mask, u32 value)
457 + return bcma_cc_write32_masked(cc, BCMA_CC_GPIOCTL, mask, value);
459 +EXPORT_SYMBOL_GPL(bcma_chipco_gpio_control);
461 +u32 bcma_chipco_gpio_intmask(struct bcma_drv_cc *cc, u32 mask, u32 value)
463 + return bcma_cc_write32_masked(cc, BCMA_CC_GPIOIRQ, mask, value);
466 +u32 bcma_chipco_gpio_polarity(struct bcma_drv_cc *cc, u32 mask, u32 value)
468 + return bcma_cc_write32_masked(cc, BCMA_CC_GPIOPOL, mask, value);
471 +#ifdef CONFIG_BCMA_DRIVER_MIPS
472 +void bcma_chipco_serial_init(struct bcma_drv_cc *cc)
477 + unsigned int ccrev = cc->core->id.rev;
478 + struct bcma_serial_port *ports = cc->serial_ports;
480 + if (ccrev >= 11 && ccrev != 15) {
481 + /* Fixed ALP clock */
482 + baud_base = bcma_pmu_alp_clock(cc);
484 + /* Turn off UART clock before switching clocksource. */
485 + bcma_cc_write32(cc, BCMA_CC_CORECTL,
486 + bcma_cc_read32(cc, BCMA_CC_CORECTL)
487 + & ~BCMA_CC_CORECTL_UARTCLKEN);
489 + /* Set the override bit so we don't divide it */
490 + bcma_cc_write32(cc, BCMA_CC_CORECTL,
491 + bcma_cc_read32(cc, BCMA_CC_CORECTL)
492 + | BCMA_CC_CORECTL_UARTCLK0);
494 + /* Re-enable the UART clock. */
495 + bcma_cc_write32(cc, BCMA_CC_CORECTL,
496 + bcma_cc_read32(cc, BCMA_CC_CORECTL)
497 + | BCMA_CC_CORECTL_UARTCLKEN);
500 + pr_err("serial not supported on this device ccrev: 0x%x\n",
505 + irq = bcma_core_mips_irq(cc->core);
507 + /* Determine the registers of the UARTs */
508 + cc->nr_serial_ports = (cc->capabilities & BCMA_CC_CAP_NRUART);
509 + for (i = 0; i < cc->nr_serial_ports; i++) {
510 + ports[i].regs = cc->core->io_addr + BCMA_CC_UART0_DATA +
512 + ports[i].irq = irq;
513 + ports[i].baud_base = baud_base;
514 + ports[i].reg_shift = 0;
517 +#endif /* CONFIG_BCMA_DRIVER_MIPS */
519 +++ b/drivers/bcma/driver_chipcommon_pmu.c
522 + * Broadcom specific AMBA
523 + * ChipCommon Power Management Unit driver
525 + * Copyright 2009, Michael Buesch <m@bues.ch>
526 + * Copyright 2007, Broadcom Corporation
528 + * Licensed under the GNU/GPL. See COPYING for details.
531 +#include "bcma_private.h"
532 +#include <linux/bcma/bcma.h>
534 +static u32 bcma_chipco_pll_read(struct bcma_drv_cc *cc, u32 offset)
536 + bcma_cc_write32(cc, BCMA_CC_PLLCTL_ADDR, offset);
537 + bcma_cc_read32(cc, BCMA_CC_PLLCTL_ADDR);
538 + return bcma_cc_read32(cc, BCMA_CC_PLLCTL_DATA);
541 +void bcma_chipco_pll_write(struct bcma_drv_cc *cc, u32 offset, u32 value)
543 + bcma_cc_write32(cc, BCMA_CC_PLLCTL_ADDR, offset);
544 + bcma_cc_read32(cc, BCMA_CC_PLLCTL_ADDR);
545 + bcma_cc_write32(cc, BCMA_CC_PLLCTL_DATA, value);
547 +EXPORT_SYMBOL_GPL(bcma_chipco_pll_write);
549 +void bcma_chipco_pll_maskset(struct bcma_drv_cc *cc, u32 offset, u32 mask,
552 + bcma_cc_write32(cc, BCMA_CC_PLLCTL_ADDR, offset);
553 + bcma_cc_read32(cc, BCMA_CC_PLLCTL_ADDR);
554 + bcma_cc_maskset32(cc, BCMA_CC_PLLCTL_DATA, mask, set);
556 +EXPORT_SYMBOL_GPL(bcma_chipco_pll_maskset);
558 +void bcma_chipco_chipctl_maskset(struct bcma_drv_cc *cc,
559 + u32 offset, u32 mask, u32 set)
561 + bcma_cc_write32(cc, BCMA_CC_CHIPCTL_ADDR, offset);
562 + bcma_cc_read32(cc, BCMA_CC_CHIPCTL_ADDR);
563 + bcma_cc_maskset32(cc, BCMA_CC_CHIPCTL_DATA, mask, set);
565 +EXPORT_SYMBOL_GPL(bcma_chipco_chipctl_maskset);
567 +void bcma_chipco_regctl_maskset(struct bcma_drv_cc *cc, u32 offset, u32 mask,
570 + bcma_cc_write32(cc, BCMA_CC_REGCTL_ADDR, offset);
571 + bcma_cc_read32(cc, BCMA_CC_REGCTL_ADDR);
572 + bcma_cc_maskset32(cc, BCMA_CC_REGCTL_DATA, mask, set);
574 +EXPORT_SYMBOL_GPL(bcma_chipco_regctl_maskset);
576 +static void bcma_pmu_pll_init(struct bcma_drv_cc *cc)
578 + struct bcma_bus *bus = cc->core->bus;
580 + switch (bus->chipinfo.id) {
587 + pr_err("PLL init unknown for device 0x%04X\n",
592 +static void bcma_pmu_resources_init(struct bcma_drv_cc *cc)
594 + struct bcma_bus *bus = cc->core->bus;
595 + u32 min_msk = 0, max_msk = 0;
597 + switch (bus->chipinfo.id) {
606 + pr_err("PMU resource config unknown for device 0x%04X\n",
610 + /* Set the resource masks. */
612 + bcma_cc_write32(cc, BCMA_CC_PMU_MINRES_MSK, min_msk);
614 + bcma_cc_write32(cc, BCMA_CC_PMU_MAXRES_MSK, max_msk);
617 +void bcma_pmu_swreg_init(struct bcma_drv_cc *cc)
619 + struct bcma_bus *bus = cc->core->bus;
621 + switch (bus->chipinfo.id) {
628 + pr_err("PMU switch/regulators init unknown for device "
629 + "0x%04X\n", bus->chipinfo.id);
633 +/* Disable to allow reading SPROM. Don't know the adventages of enabling it. */
634 +void bcma_chipco_bcm4331_ext_pa_lines_ctl(struct bcma_drv_cc *cc, bool enable)
636 + struct bcma_bus *bus = cc->core->bus;
639 + val = bcma_cc_read32(cc, BCMA_CC_CHIPCTL);
641 + val |= BCMA_CHIPCTL_4331_EXTPA_EN;
642 + if (bus->chipinfo.pkg == 9 || bus->chipinfo.pkg == 11)
643 + val |= BCMA_CHIPCTL_4331_EXTPA_ON_GPIO2_5;
645 + val &= ~BCMA_CHIPCTL_4331_EXTPA_EN;
646 + val &= ~BCMA_CHIPCTL_4331_EXTPA_ON_GPIO2_5;
648 + bcma_cc_write32(cc, BCMA_CC_CHIPCTL, val);
651 +void bcma_pmu_workarounds(struct bcma_drv_cc *cc)
653 + struct bcma_bus *bus = cc->core->bus;
655 + switch (bus->chipinfo.id) {
657 + bcma_chipco_chipctl_maskset(cc, 0, ~0, 0x7);
660 + /* BCM4331 workaround is SPROM-related, we put it in sprom.c */
663 + if (bus->chipinfo.rev == 0) {
664 + pr_err("Workarounds for 43224 rev 0 not fully "
666 + bcma_chipco_chipctl_maskset(cc, 0, ~0, 0x00F000F0);
668 + bcma_chipco_chipctl_maskset(cc, 0, ~0, 0xF0);
674 + pr_err("Workarounds unknown for device 0x%04X\n",
679 +void bcma_pmu_init(struct bcma_drv_cc *cc)
683 + pmucap = bcma_cc_read32(cc, BCMA_CC_PMU_CAP);
684 + cc->pmu.rev = (pmucap & BCMA_CC_PMU_CAP_REVISION);
686 + pr_debug("Found rev %u PMU (capabilities 0x%08X)\n", cc->pmu.rev,
689 + if (cc->pmu.rev == 1)
690 + bcma_cc_mask32(cc, BCMA_CC_PMU_CTL,
691 + ~BCMA_CC_PMU_CTL_NOILPONW);
693 + bcma_cc_set32(cc, BCMA_CC_PMU_CTL,
694 + BCMA_CC_PMU_CTL_NOILPONW);
696 + if (cc->core->id.id == 0x4329 && cc->core->id.rev == 2)
697 + pr_err("Fix for 4329b0 bad LPOM state not implemented!\n");
699 + bcma_pmu_pll_init(cc);
700 + bcma_pmu_resources_init(cc);
701 + bcma_pmu_swreg_init(cc);
702 + bcma_pmu_workarounds(cc);
705 +u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc)
707 + struct bcma_bus *bus = cc->core->bus;
709 + switch (bus->chipinfo.id) {
718 + return 20000 * 1000;
722 + return 25000 * 1000;
724 + pr_warning("No ALP clock specified for %04X device, "
725 + "pmu rev. %d, using default %d Hz\n",
726 + bus->chipinfo.id, cc->pmu.rev, BCMA_CC_PMU_ALP_CLOCK);
728 + return BCMA_CC_PMU_ALP_CLOCK;
731 +/* Find the output of the "m" pll divider given pll controls that start with
732 + * pllreg "pll0" i.e. 12 for main 6 for phy, 0 for misc.
734 +static u32 bcma_pmu_clock(struct bcma_drv_cc *cc, u32 pll0, u32 m)
736 + u32 tmp, div, ndiv, p1, p2, fc;
737 + struct bcma_bus *bus = cc->core->bus;
739 + BUG_ON((pll0 & 3) || (pll0 > BCMA_CC_PMU4716_MAINPLL_PLL0));
741 + BUG_ON(!m || m > 4);
743 + if (bus->chipinfo.id == 0x5357 || bus->chipinfo.id == 0x4749) {
744 + /* Detect failure in clock setting */
745 + tmp = bcma_cc_read32(cc, BCMA_CC_CHIPSTAT);
747 + return 133 * 1000000;
750 + tmp = bcma_chipco_pll_read(cc, pll0 + BCMA_CC_PPL_P1P2_OFF);
751 + p1 = (tmp & BCMA_CC_PPL_P1_MASK) >> BCMA_CC_PPL_P1_SHIFT;
752 + p2 = (tmp & BCMA_CC_PPL_P2_MASK) >> BCMA_CC_PPL_P2_SHIFT;
754 + tmp = bcma_chipco_pll_read(cc, pll0 + BCMA_CC_PPL_M14_OFF);
755 + div = (tmp >> ((m - 1) * BCMA_CC_PPL_MDIV_WIDTH)) &
756 + BCMA_CC_PPL_MDIV_MASK;
758 + tmp = bcma_chipco_pll_read(cc, pll0 + BCMA_CC_PPL_NM5_OFF);
759 + ndiv = (tmp & BCMA_CC_PPL_NDIV_MASK) >> BCMA_CC_PPL_NDIV_SHIFT;
761 + /* Do calculation in Mhz */
762 + fc = bcma_pmu_alp_clock(cc) / 1000000;
763 + fc = (p1 * ndiv * fc) / p2;
765 + /* Return clock in Hertz */
766 + return (fc / div) * 1000000;
769 +/* query bus clock frequency for PMU-enabled chipcommon */
770 +u32 bcma_pmu_get_clockcontrol(struct bcma_drv_cc *cc)
772 + struct bcma_bus *bus = cc->core->bus;
774 + switch (bus->chipinfo.id) {
778 + return bcma_pmu_clock(cc, BCMA_CC_PMU4716_MAINPLL_PLL0,
779 + BCMA_CC_PMU5_MAINPLL_SSB);
781 + return bcma_pmu_clock(cc, BCMA_CC_PMU5356_MAINPLL_PLL0,
782 + BCMA_CC_PMU5_MAINPLL_SSB);
785 + return bcma_pmu_clock(cc, BCMA_CC_PMU5357_MAINPLL_PLL0,
786 + BCMA_CC_PMU5_MAINPLL_SSB);
788 + return bcma_pmu_clock(cc, BCMA_CC_PMU4706_MAINPLL_PLL0,
789 + BCMA_CC_PMU5_MAINPLL_SSB);
793 + pr_warning("No backplane clock specified for %04X device, "
794 + "pmu rev. %d, using default %d Hz\n",
795 + bus->chipinfo.id, cc->pmu.rev, BCMA_CC_PMU_HT_CLOCK);
797 + return BCMA_CC_PMU_HT_CLOCK;
800 +/* query cpu clock frequency for PMU-enabled chipcommon */
801 +u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc)
803 + struct bcma_bus *bus = cc->core->bus;
805 + if (bus->chipinfo.id == 53572)
808 + if (cc->pmu.rev >= 5) {
810 + switch (bus->chipinfo.id) {
812 + pll = BCMA_CC_PMU5356_MAINPLL_PLL0;
816 + pll = BCMA_CC_PMU5357_MAINPLL_PLL0;
819 + pll = BCMA_CC_PMU4716_MAINPLL_PLL0;
823 + /* TODO: if (bus->chipinfo.id == 0x5300)
824 + return si_4706_pmu_clock(sih, osh, cc, PMU4706_MAINPLL_PLL0, PMU5_MAINPLL_CPU); */
825 + return bcma_pmu_clock(cc, pll, BCMA_CC_PMU5_MAINPLL_CPU);
828 + return bcma_pmu_get_clockcontrol(cc);
831 +++ b/drivers/bcma/driver_pci.c
834 + * Broadcom specific AMBA
837 + * Copyright 2005, Broadcom Corporation
838 + * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
840 + * Licensed under the GNU/GPL. See COPYING for details.
843 +#include "bcma_private.h"
844 +#include <linux/bcma/bcma.h>
846 +/**************************************************
848 + **************************************************/
850 +static u32 bcma_pcie_read(struct bcma_drv_pci *pc, u32 address)
852 + pcicore_write32(pc, 0x130, address);
853 + pcicore_read32(pc, 0x130);
854 + return pcicore_read32(pc, 0x134);
858 +static void bcma_pcie_write(struct bcma_drv_pci *pc, u32 address, u32 data)
860 + pcicore_write32(pc, 0x130, address);
861 + pcicore_read32(pc, 0x130);
862 + pcicore_write32(pc, 0x134, data);
866 +static void bcma_pcie_mdio_set_phy(struct bcma_drv_pci *pc, u8 phy)
868 + const u16 mdio_control = 0x128;
869 + const u16 mdio_data = 0x12C;
873 + v = (1 << 30); /* Start of Transaction */
874 + v |= (1 << 28); /* Write Transaction */
875 + v |= (1 << 17); /* Turnaround */
878 + pcicore_write32(pc, mdio_data, v);
881 + for (i = 0; i < 200; i++) {
882 + v = pcicore_read32(pc, mdio_control);
883 + if (v & 0x100 /* Trans complete */)
889 +static u16 bcma_pcie_mdio_read(struct bcma_drv_pci *pc, u8 device, u8 address)
891 + const u16 mdio_control = 0x128;
892 + const u16 mdio_data = 0x12C;
893 + int max_retries = 10;
898 + v = 0x80; /* Enable Preamble Sequence */
899 + v |= 0x2; /* MDIO Clock Divisor */
900 + pcicore_write32(pc, mdio_control, v);
902 + if (pc->core->id.rev >= 10) {
904 + bcma_pcie_mdio_set_phy(pc, device);
907 + v = (1 << 30); /* Start of Transaction */
908 + v |= (1 << 29); /* Read Transaction */
909 + v |= (1 << 17); /* Turnaround */
910 + if (pc->core->id.rev < 10)
911 + v |= (u32)device << 22;
912 + v |= (u32)address << 18;
913 + pcicore_write32(pc, mdio_data, v);
914 + /* Wait for the device to complete the transaction */
916 + for (i = 0; i < max_retries; i++) {
917 + v = pcicore_read32(pc, mdio_control);
918 + if (v & 0x100 /* Trans complete */) {
920 + ret = pcicore_read32(pc, mdio_data);
925 + pcicore_write32(pc, mdio_control, 0);
929 +static void bcma_pcie_mdio_write(struct bcma_drv_pci *pc, u8 device,
930 + u8 address, u16 data)
932 + const u16 mdio_control = 0x128;
933 + const u16 mdio_data = 0x12C;
934 + int max_retries = 10;
938 + v = 0x80; /* Enable Preamble Sequence */
939 + v |= 0x2; /* MDIO Clock Divisor */
940 + pcicore_write32(pc, mdio_control, v);
942 + if (pc->core->id.rev >= 10) {
944 + bcma_pcie_mdio_set_phy(pc, device);
947 + v = (1 << 30); /* Start of Transaction */
948 + v |= (1 << 28); /* Write Transaction */
949 + v |= (1 << 17); /* Turnaround */
950 + if (pc->core->id.rev < 10)
951 + v |= (u32)device << 22;
952 + v |= (u32)address << 18;
954 + pcicore_write32(pc, mdio_data, v);
955 + /* Wait for the device to complete the transaction */
957 + for (i = 0; i < max_retries; i++) {
958 + v = pcicore_read32(pc, mdio_control);
959 + if (v & 0x100 /* Trans complete */)
963 + pcicore_write32(pc, mdio_control, 0);
966 +/**************************************************
968 + **************************************************/
970 +static u8 bcma_pcicore_polarity_workaround(struct bcma_drv_pci *pc)
972 + return (bcma_pcie_read(pc, 0x204) & 0x10) ? 0xC0 : 0x80;
975 +static void bcma_pcicore_serdes_workaround(struct bcma_drv_pci *pc)
977 + const u8 serdes_pll_device = 0x1D;
978 + const u8 serdes_rx_device = 0x1F;
981 + bcma_pcie_mdio_write(pc, serdes_rx_device, 1 /* Control */,
982 + bcma_pcicore_polarity_workaround(pc));
983 + tmp = bcma_pcie_mdio_read(pc, serdes_pll_device, 1 /* Control */);
985 + bcma_pcie_mdio_write(pc, serdes_pll_device, 1, tmp & ~0x4000);
988 +/**************************************************
990 + **************************************************/
992 +static void bcma_core_pci_clientmode_init(struct bcma_drv_pci *pc)
994 + bcma_pcicore_serdes_workaround(pc);
997 +static bool bcma_core_pci_is_in_hostmode(struct bcma_drv_pci *pc)
999 + struct bcma_bus *bus = pc->core->bus;
1002 + chipid_top = (bus->chipinfo.id & 0xFF00);
1003 + if (chipid_top != 0x4700 &&
1004 + chipid_top != 0x5300)
1007 +#ifdef CONFIG_SSB_DRIVER_PCICORE
1008 + if (bus->sprom.boardflags_lo & SSB_BFL_NOPCI)
1010 +#endif /* CONFIG_SSB_DRIVER_PCICORE */
1013 + /* TODO: on BCMA we use address from EROM instead of magic formula */
1015 + return !mips_busprobe32(tmp, (bus->mmio +
1016 + (pc->core->core_index * BCMA_CORE_SIZE)));
1022 +void bcma_core_pci_init(struct bcma_drv_pci *pc)
1024 + if (pc->setup_done)
1027 + if (bcma_core_pci_is_in_hostmode(pc)) {
1028 +#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
1029 + bcma_core_pci_hostmode_init(pc);
1031 + pr_err("Driver compiled without support for hostmode PCI\n");
1032 +#endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
1034 + bcma_core_pci_clientmode_init(pc);
1037 + pc->setup_done = true;
1040 +int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc, struct bcma_device *core,
1043 + struct pci_dev *pdev = pc->core->bus->host_pci;
1044 + u32 coremask, tmp;
1047 + if (core->bus->hosttype != BCMA_HOSTTYPE_PCI) {
1048 + /* This bcma device is not on a PCI host-bus. So the IRQs are
1049 + * not routed through the PCI core.
1050 + * So we must not enable routing through the PCI core. */
1054 + err = pci_read_config_dword(pdev, BCMA_PCI_IRQMASK, &tmp);
1058 + coremask = BIT(core->core_index) << 8;
1064 + err = pci_write_config_dword(pdev, BCMA_PCI_IRQMASK, tmp);
1069 +EXPORT_SYMBOL_GPL(bcma_core_pci_irq_ctl);
1071 +++ b/drivers/bcma/host_pci.c
1074 + * Broadcom specific AMBA
1077 + * Licensed under the GNU/GPL. See COPYING for details.
1080 +#include "bcma_private.h"
1081 +#include <linux/slab.h>
1082 +#include <linux/bcma/bcma.h>
1083 +#include <linux/pci.h>
1084 +#include <linux/module.h>
1086 +static void bcma_host_pci_switch_core(struct bcma_device *core)
1088 + pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN,
1090 + pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN2,
1092 + core->bus->mapped_core = core;
1093 + pr_debug("Switched to core: 0x%X\n", core->id.id);
1096 +/* Provides access to the requested core. Returns base offset that has to be
1097 + * used. It makes use of fixed windows when possible. */
1098 +static u16 bcma_host_pci_provide_access_to_core(struct bcma_device *core)
1100 + switch (core->id.id) {
1101 + case BCMA_CORE_CHIPCOMMON:
1102 + return 3 * BCMA_CORE_SIZE;
1103 + case BCMA_CORE_PCIE:
1104 + return 2 * BCMA_CORE_SIZE;
1107 + if (core->bus->mapped_core != core)
1108 + bcma_host_pci_switch_core(core);
1112 +static u8 bcma_host_pci_read8(struct bcma_device *core, u16 offset)
1114 + offset += bcma_host_pci_provide_access_to_core(core);
1115 + return ioread8(core->bus->mmio + offset);
1118 +static u16 bcma_host_pci_read16(struct bcma_device *core, u16 offset)
1120 + offset += bcma_host_pci_provide_access_to_core(core);
1121 + return ioread16(core->bus->mmio + offset);
1124 +static u32 bcma_host_pci_read32(struct bcma_device *core, u16 offset)
1126 + offset += bcma_host_pci_provide_access_to_core(core);
1127 + return ioread32(core->bus->mmio + offset);
1130 +static void bcma_host_pci_write8(struct bcma_device *core, u16 offset,
1133 + offset += bcma_host_pci_provide_access_to_core(core);
1134 + iowrite8(value, core->bus->mmio + offset);
1137 +static void bcma_host_pci_write16(struct bcma_device *core, u16 offset,
1140 + offset += bcma_host_pci_provide_access_to_core(core);
1141 + iowrite16(value, core->bus->mmio + offset);
1144 +static void bcma_host_pci_write32(struct bcma_device *core, u16 offset,
1147 + offset += bcma_host_pci_provide_access_to_core(core);
1148 + iowrite32(value, core->bus->mmio + offset);
1151 +#ifdef CONFIG_BCMA_BLOCKIO
1152 +void bcma_host_pci_block_read(struct bcma_device *core, void *buffer,
1153 + size_t count, u16 offset, u8 reg_width)
1155 + void __iomem *addr = core->bus->mmio + offset;
1156 + if (core->bus->mapped_core != core)
1157 + bcma_host_pci_switch_core(core);
1158 + switch (reg_width) {
1160 + ioread8_rep(addr, buffer, count);
1163 + WARN_ON(count & 1);
1164 + ioread16_rep(addr, buffer, count >> 1);
1167 + WARN_ON(count & 3);
1168 + ioread32_rep(addr, buffer, count >> 2);
1175 +void bcma_host_pci_block_write(struct bcma_device *core, const void *buffer,
1176 + size_t count, u16 offset, u8 reg_width)
1178 + void __iomem *addr = core->bus->mmio + offset;
1179 + if (core->bus->mapped_core != core)
1180 + bcma_host_pci_switch_core(core);
1181 + switch (reg_width) {
1183 + iowrite8_rep(addr, buffer, count);
1186 + WARN_ON(count & 1);
1187 + iowrite16_rep(addr, buffer, count >> 1);
1190 + WARN_ON(count & 3);
1191 + iowrite32_rep(addr, buffer, count >> 2);
1199 +static u32 bcma_host_pci_aread32(struct bcma_device *core, u16 offset)
1201 + if (core->bus->mapped_core != core)
1202 + bcma_host_pci_switch_core(core);
1203 + return ioread32(core->bus->mmio + (1 * BCMA_CORE_SIZE) + offset);
1206 +static void bcma_host_pci_awrite32(struct bcma_device *core, u16 offset,
1209 + if (core->bus->mapped_core != core)
1210 + bcma_host_pci_switch_core(core);
1211 + iowrite32(value, core->bus->mmio + (1 * BCMA_CORE_SIZE) + offset);
1214 +const struct bcma_host_ops bcma_host_pci_ops = {
1215 + .read8 = bcma_host_pci_read8,
1216 + .read16 = bcma_host_pci_read16,
1217 + .read32 = bcma_host_pci_read32,
1218 + .write8 = bcma_host_pci_write8,
1219 + .write16 = bcma_host_pci_write16,
1220 + .write32 = bcma_host_pci_write32,
1221 +#ifdef CONFIG_BCMA_BLOCKIO
1222 + .block_read = bcma_host_pci_block_read,
1223 + .block_write = bcma_host_pci_block_write,
1225 + .aread32 = bcma_host_pci_aread32,
1226 + .awrite32 = bcma_host_pci_awrite32,
1229 +static int bcma_host_pci_probe(struct pci_dev *dev,
1230 + const struct pci_device_id *id)
1232 + struct bcma_bus *bus;
1233 + int err = -ENOMEM;
1238 + bus = kzalloc(sizeof(*bus), GFP_KERNEL);
1242 + /* Basic PCI configuration */
1243 + err = pci_enable_device(dev);
1245 + goto err_kfree_bus;
1247 + name = dev_name(&dev->dev);
1248 + if (dev->driver && dev->driver->name)
1249 + name = dev->driver->name;
1250 + err = pci_request_regions(dev, name);
1252 + goto err_pci_disable;
1253 + pci_set_master(dev);
1255 + /* Disable the RETRY_TIMEOUT register (0x41) to keep
1256 + * PCI Tx retries from interfering with C3 CPU state */
1257 + pci_read_config_dword(dev, 0x40, &val);
1258 + if ((val & 0x0000ff00) != 0)
1259 + pci_write_config_dword(dev, 0x40, val & 0xffff00ff);
1261 + /* SSB needed additional powering up, do we have any AMBA PCI cards? */
1262 + if (!dev->is_pcie)
1263 + pr_err("PCI card detected, report problems.\n");
1267 + bus->mmio = pci_iomap(dev, 0, ~0UL);
1269 + goto err_pci_release_regions;
1271 + /* Host specific */
1272 + bus->host_pci = dev;
1273 + bus->hosttype = BCMA_HOSTTYPE_PCI;
1274 + bus->ops = &bcma_host_pci_ops;
1277 + err = bcma_bus_register(bus);
1279 + goto err_pci_unmap_mmio;
1281 + pci_set_drvdata(dev, bus);
1286 +err_pci_unmap_mmio:
1287 + pci_iounmap(dev, bus->mmio);
1288 +err_pci_release_regions:
1289 + pci_release_regions(dev);
1291 + pci_disable_device(dev);
1297 +static void bcma_host_pci_remove(struct pci_dev *dev)
1299 + struct bcma_bus *bus = pci_get_drvdata(dev);
1301 + bcma_bus_unregister(bus);
1302 + pci_iounmap(dev, bus->mmio);
1303 + pci_release_regions(dev);
1304 + pci_disable_device(dev);
1306 + pci_set_drvdata(dev, NULL);
1310 +static int bcma_host_pci_suspend(struct pci_dev *dev, pm_message_t state)
1312 + /* Host specific */
1313 + pci_save_state(dev);
1314 + pci_disable_device(dev);
1315 + pci_set_power_state(dev, pci_choose_state(dev, state));
1320 +static int bcma_host_pci_resume(struct pci_dev *dev)
1322 + struct bcma_bus *bus = pci_get_drvdata(dev);
1325 + /* Host specific */
1326 + pci_set_power_state(dev, 0);
1327 + err = pci_enable_device(dev);
1330 + pci_restore_state(dev);
1332 + /* Bus specific */
1333 + err = bcma_bus_resume(bus);
1339 +#else /* CONFIG_PM */
1340 +# define bcma_host_pci_suspend NULL
1341 +# define bcma_host_pci_resume NULL
1342 +#endif /* CONFIG_PM */
1344 +static DEFINE_PCI_DEVICE_TABLE(bcma_pci_bridge_tbl) = {
1345 + { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x0576) },
1346 + { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4331) },
1347 + { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4353) },
1348 + { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4357) },
1349 + { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4727) },
1352 +MODULE_DEVICE_TABLE(pci, bcma_pci_bridge_tbl);
1354 +static struct pci_driver bcma_pci_bridge_driver = {
1355 + .name = "bcma-pci-bridge",
1356 + .id_table = bcma_pci_bridge_tbl,
1357 + .probe = bcma_host_pci_probe,
1358 + .remove = bcma_host_pci_remove,
1359 + .suspend = bcma_host_pci_suspend,
1360 + .resume = bcma_host_pci_resume,
1363 +int __init bcma_host_pci_init(void)
1365 + return pci_register_driver(&bcma_pci_bridge_driver);
1368 +void __exit bcma_host_pci_exit(void)
1370 + pci_unregister_driver(&bcma_pci_bridge_driver);
1373 +++ b/drivers/bcma/main.c
1376 + * Broadcom specific AMBA
1379 + * Licensed under the GNU/GPL. See COPYING for details.
1382 +#include "bcma_private.h"
1383 +#include <linux/module.h>
1384 +#include <linux/bcma/bcma.h>
1385 +#include <linux/slab.h>
1387 +MODULE_DESCRIPTION("Broadcom's specific AMBA driver");
1388 +MODULE_LICENSE("GPL");
1390 +static int bcma_bus_match(struct device *dev, struct device_driver *drv);
1391 +static int bcma_device_probe(struct device *dev);
1392 +static int bcma_device_remove(struct device *dev);
1393 +static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env);
1395 +static ssize_t manuf_show(struct device *dev, struct device_attribute *attr, char *buf)
1397 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1398 + return sprintf(buf, "0x%03X\n", core->id.manuf);
1400 +static ssize_t id_show(struct device *dev, struct device_attribute *attr, char *buf)
1402 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1403 + return sprintf(buf, "0x%03X\n", core->id.id);
1405 +static ssize_t rev_show(struct device *dev, struct device_attribute *attr, char *buf)
1407 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1408 + return sprintf(buf, "0x%02X\n", core->id.rev);
1410 +static ssize_t class_show(struct device *dev, struct device_attribute *attr, char *buf)
1412 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1413 + return sprintf(buf, "0x%X\n", core->id.class);
1415 +static struct device_attribute bcma_device_attrs[] = {
1423 +static struct bus_type bcma_bus_type = {
1425 + .match = bcma_bus_match,
1426 + .probe = bcma_device_probe,
1427 + .remove = bcma_device_remove,
1428 + .uevent = bcma_device_uevent,
1429 + .dev_attrs = bcma_device_attrs,
1432 +static struct bcma_device *bcma_find_core(struct bcma_bus *bus, u16 coreid)
1434 + struct bcma_device *core;
1436 + list_for_each_entry(core, &bus->cores, list) {
1437 + if (core->id.id == coreid)
1443 +static void bcma_release_core_dev(struct device *dev)
1445 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1446 + if (core->io_addr)
1447 + iounmap(core->io_addr);
1448 + if (core->io_wrap)
1449 + iounmap(core->io_wrap);
1453 +static int bcma_register_cores(struct bcma_bus *bus)
1455 + struct bcma_device *core;
1456 + int err, dev_id = 0;
1458 + list_for_each_entry(core, &bus->cores, list) {
1459 + /* We support that cores ourself */
1460 + switch (core->id.id) {
1461 + case BCMA_CORE_CHIPCOMMON:
1462 + case BCMA_CORE_PCI:
1463 + case BCMA_CORE_PCIE:
1464 + case BCMA_CORE_MIPS_74K:
1468 + core->dev.release = bcma_release_core_dev;
1469 + core->dev.bus = &bcma_bus_type;
1470 + dev_set_name(&core->dev, "bcma%d:%d", 0/*bus->num*/, dev_id);
1472 + switch (bus->hosttype) {
1473 + case BCMA_HOSTTYPE_PCI:
1474 + core->dev.parent = &bus->host_pci->dev;
1475 + core->dma_dev = &bus->host_pci->dev;
1476 + core->irq = bus->host_pci->irq;
1478 + case BCMA_HOSTTYPE_SOC:
1479 + core->dev.dma_mask = &core->dev.coherent_dma_mask;
1480 + core->dma_dev = &core->dev;
1482 + case BCMA_HOSTTYPE_SDIO:
1486 + err = device_register(&core->dev);
1488 + pr_err("Could not register dev for core 0x%03X\n",
1492 + core->dev_registered = true;
1499 +static void bcma_unregister_cores(struct bcma_bus *bus)
1501 + struct bcma_device *core;
1503 + list_for_each_entry(core, &bus->cores, list) {
1504 + if (core->dev_registered)
1505 + device_unregister(&core->dev);
1509 +int bcma_bus_register(struct bcma_bus *bus)
1512 + struct bcma_device *core;
1514 + /* Scan for devices (cores) */
1515 + err = bcma_bus_scan(bus);
1517 + pr_err("Failed to scan: %d\n", err);
1521 + /* Init CC core */
1522 + core = bcma_find_core(bus, BCMA_CORE_CHIPCOMMON);
1524 + bus->drv_cc.core = core;
1525 + bcma_core_chipcommon_init(&bus->drv_cc);
1528 + /* Init MIPS core */
1529 + core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
1531 + bus->drv_mips.core = core;
1532 + bcma_core_mips_init(&bus->drv_mips);
1535 + /* Init PCIE core */
1536 + core = bcma_find_core(bus, BCMA_CORE_PCIE);
1538 + bus->drv_pci.core = core;
1539 + bcma_core_pci_init(&bus->drv_pci);
1542 + /* Try to get SPROM */
1543 + err = bcma_sprom_get(bus);
1544 + if (err == -ENOENT) {
1545 + pr_err("No SPROM available\n");
1547 + pr_err("Failed to get SPROM: %d\n", err);
1551 + /* Register found cores */
1552 + bcma_register_cores(bus);
1554 + pr_info("Bus registered\n");
1559 +void bcma_bus_unregister(struct bcma_bus *bus)
1561 + bcma_unregister_cores(bus);
1564 +int __init bcma_bus_early_register(struct bcma_bus *bus,
1565 + struct bcma_device *core_cc,
1566 + struct bcma_device *core_mips)
1569 + struct bcma_device *core;
1570 + struct bcma_device_id match;
1572 + bcma_init_bus(bus);
1574 + match.manuf = BCMA_MANUF_BCM;
1575 + match.id = BCMA_CORE_CHIPCOMMON;
1576 + match.class = BCMA_CL_SIM;
1577 + match.rev = BCMA_ANY_REV;
1579 + /* Scan for chip common core */
1580 + err = bcma_bus_scan_early(bus, &match, core_cc);
1582 + pr_err("Failed to scan for common core: %d\n", err);
1586 + match.manuf = BCMA_MANUF_MIPS;
1587 + match.id = BCMA_CORE_MIPS_74K;
1588 + match.class = BCMA_CL_SIM;
1589 + match.rev = BCMA_ANY_REV;
1591 + /* Scan for mips core */
1592 + err = bcma_bus_scan_early(bus, &match, core_mips);
1594 + pr_err("Failed to scan for mips core: %d\n", err);
1598 + /* Init CC core */
1599 + core = bcma_find_core(bus, BCMA_CORE_CHIPCOMMON);
1601 + bus->drv_cc.core = core;
1602 + bcma_core_chipcommon_init(&bus->drv_cc);
1605 + /* Init MIPS core */
1606 + core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
1608 + bus->drv_mips.core = core;
1609 + bcma_core_mips_init(&bus->drv_mips);
1612 + pr_info("Early bus registered\n");
1618 +int bcma_bus_resume(struct bcma_bus *bus)
1620 + struct bcma_device *core;
1622 + /* Init CC core */
1623 + core = bcma_find_core(bus, BCMA_CORE_CHIPCOMMON);
1625 + bus->drv_cc.setup_done = false;
1626 + bcma_core_chipcommon_init(&bus->drv_cc);
1633 +int __bcma_driver_register(struct bcma_driver *drv, struct module *owner)
1635 + drv->drv.name = drv->name;
1636 + drv->drv.bus = &bcma_bus_type;
1637 + drv->drv.owner = owner;
1639 + return driver_register(&drv->drv);
1641 +EXPORT_SYMBOL_GPL(__bcma_driver_register);
1643 +void bcma_driver_unregister(struct bcma_driver *drv)
1645 + driver_unregister(&drv->drv);
1647 +EXPORT_SYMBOL_GPL(bcma_driver_unregister);
1649 +static int bcma_bus_match(struct device *dev, struct device_driver *drv)
1651 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1652 + struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
1653 + const struct bcma_device_id *cid = &core->id;
1654 + const struct bcma_device_id *did;
1656 + for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) {
1657 + if ((did->manuf == cid->manuf || did->manuf == BCMA_ANY_MANUF) &&
1658 + (did->id == cid->id || did->id == BCMA_ANY_ID) &&
1659 + (did->rev == cid->rev || did->rev == BCMA_ANY_REV) &&
1660 + (did->class == cid->class || did->class == BCMA_ANY_CLASS))
1666 +static int bcma_device_probe(struct device *dev)
1668 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1669 + struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
1674 + err = adrv->probe(core);
1679 +static int bcma_device_remove(struct device *dev)
1681 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1682 + struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
1686 + adrv->remove(core);
1691 +static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env)
1693 + struct bcma_device *core = container_of(dev, struct bcma_device, dev);
1695 + return add_uevent_var(env,
1696 + "MODALIAS=bcma:m%04Xid%04Xrev%02Xcl%02X",
1697 + core->id.manuf, core->id.id,
1698 + core->id.rev, core->id.class);
1701 +static int __init bcma_modinit(void)
1705 + err = bus_register(&bcma_bus_type);
1709 +#ifdef CONFIG_BCMA_HOST_PCI
1710 + err = bcma_host_pci_init();
1712 + pr_err("PCI host initialization failed\n");
1719 +fs_initcall(bcma_modinit);
1721 +static void __exit bcma_modexit(void)
1723 +#ifdef CONFIG_BCMA_HOST_PCI
1724 + bcma_host_pci_exit();
1726 + bus_unregister(&bcma_bus_type);
1728 +module_exit(bcma_modexit)
1730 +++ b/drivers/bcma/scan.c
1733 + * Broadcom specific AMBA
1736 + * Licensed under the GNU/GPL. See COPYING for details.
1740 +#include "bcma_private.h"
1742 +#include <linux/bcma/bcma.h>
1743 +#include <linux/bcma/bcma_regs.h>
1744 +#include <linux/pci.h>
1745 +#include <linux/io.h>
1746 +#include <linux/dma-mapping.h>
1747 +#include <linux/slab.h>
1749 +struct bcma_device_id_name {
1753 +struct bcma_device_id_name bcma_device_names[] = {
1754 + { BCMA_CORE_OOB_ROUTER, "OOB Router" },
1755 + { BCMA_CORE_INVALID, "Invalid" },
1756 + { BCMA_CORE_CHIPCOMMON, "ChipCommon" },
1757 + { BCMA_CORE_ILINE20, "ILine 20" },
1758 + { BCMA_CORE_SRAM, "SRAM" },
1759 + { BCMA_CORE_SDRAM, "SDRAM" },
1760 + { BCMA_CORE_PCI, "PCI" },
1761 + { BCMA_CORE_MIPS, "MIPS" },
1762 + { BCMA_CORE_ETHERNET, "Fast Ethernet" },
1763 + { BCMA_CORE_V90, "V90" },
1764 + { BCMA_CORE_USB11_HOSTDEV, "USB 1.1 Hostdev" },
1765 + { BCMA_CORE_ADSL, "ADSL" },
1766 + { BCMA_CORE_ILINE100, "ILine 100" },
1767 + { BCMA_CORE_IPSEC, "IPSEC" },
1768 + { BCMA_CORE_UTOPIA, "UTOPIA" },
1769 + { BCMA_CORE_PCMCIA, "PCMCIA" },
1770 + { BCMA_CORE_INTERNAL_MEM, "Internal Memory" },
1771 + { BCMA_CORE_MEMC_SDRAM, "MEMC SDRAM" },
1772 + { BCMA_CORE_OFDM, "OFDM" },
1773 + { BCMA_CORE_EXTIF, "EXTIF" },
1774 + { BCMA_CORE_80211, "IEEE 802.11" },
1775 + { BCMA_CORE_PHY_A, "PHY A" },
1776 + { BCMA_CORE_PHY_B, "PHY B" },
1777 + { BCMA_CORE_PHY_G, "PHY G" },
1778 + { BCMA_CORE_MIPS_3302, "MIPS 3302" },
1779 + { BCMA_CORE_USB11_HOST, "USB 1.1 Host" },
1780 + { BCMA_CORE_USB11_DEV, "USB 1.1 Device" },
1781 + { BCMA_CORE_USB20_HOST, "USB 2.0 Host" },
1782 + { BCMA_CORE_USB20_DEV, "USB 2.0 Device" },
1783 + { BCMA_CORE_SDIO_HOST, "SDIO Host" },
1784 + { BCMA_CORE_ROBOSWITCH, "Roboswitch" },
1785 + { BCMA_CORE_PARA_ATA, "PATA" },
1786 + { BCMA_CORE_SATA_XORDMA, "SATA XOR-DMA" },
1787 + { BCMA_CORE_ETHERNET_GBIT, "GBit Ethernet" },
1788 + { BCMA_CORE_PCIE, "PCIe" },
1789 + { BCMA_CORE_PHY_N, "PHY N" },
1790 + { BCMA_CORE_SRAM_CTL, "SRAM Controller" },
1791 + { BCMA_CORE_MINI_MACPHY, "Mini MACPHY" },
1792 + { BCMA_CORE_ARM_1176, "ARM 1176" },
1793 + { BCMA_CORE_ARM_7TDMI, "ARM 7TDMI" },
1794 + { BCMA_CORE_PHY_LP, "PHY LP" },
1795 + { BCMA_CORE_PMU, "PMU" },
1796 + { BCMA_CORE_PHY_SSN, "PHY SSN" },
1797 + { BCMA_CORE_SDIO_DEV, "SDIO Device" },
1798 + { BCMA_CORE_ARM_CM3, "ARM CM3" },
1799 + { BCMA_CORE_PHY_HT, "PHY HT" },
1800 + { BCMA_CORE_MIPS_74K, "MIPS 74K" },
1801 + { BCMA_CORE_MAC_GBIT, "GBit MAC" },
1802 + { BCMA_CORE_DDR12_MEM_CTL, "DDR1/DDR2 Memory Controller" },
1803 + { BCMA_CORE_PCIE_RC, "PCIe Root Complex" },
1804 + { BCMA_CORE_OCP_OCP_BRIDGE, "OCP to OCP Bridge" },
1805 + { BCMA_CORE_SHARED_COMMON, "Common Shared" },
1806 + { BCMA_CORE_OCP_AHB_BRIDGE, "OCP to AHB Bridge" },
1807 + { BCMA_CORE_SPI_HOST, "SPI Host" },
1808 + { BCMA_CORE_I2S, "I2S" },
1809 + { BCMA_CORE_SDR_DDR1_MEM_CTL, "SDR/DDR1 Memory Controller" },
1810 + { BCMA_CORE_SHIM, "SHIM" },
1811 + { BCMA_CORE_DEFAULT, "Default" },
1813 +const char *bcma_device_name(struct bcma_device_id *id)
1817 + if (id->manuf == BCMA_MANUF_BCM) {
1818 + for (i = 0; i < ARRAY_SIZE(bcma_device_names); i++) {
1819 + if (bcma_device_names[i].id == id->id)
1820 + return bcma_device_names[i].name;
1826 +static u32 bcma_scan_read32(struct bcma_bus *bus, u8 current_coreidx,
1829 + return readl(bus->mmio + offset);
1832 +static void bcma_scan_switch_core(struct bcma_bus *bus, u32 addr)
1834 + if (bus->hosttype == BCMA_HOSTTYPE_PCI)
1835 + pci_write_config_dword(bus->host_pci, BCMA_PCI_BAR0_WIN,
1839 +static u32 bcma_erom_get_ent(struct bcma_bus *bus, u32 **eromptr)
1841 + u32 ent = readl(*eromptr);
1846 +static void bcma_erom_push_ent(u32 **eromptr)
1851 +static s32 bcma_erom_get_ci(struct bcma_bus *bus, u32 **eromptr)
1853 + u32 ent = bcma_erom_get_ent(bus, eromptr);
1854 + if (!(ent & SCAN_ER_VALID))
1856 + if ((ent & SCAN_ER_TAG) != SCAN_ER_TAG_CI)
1861 +static bool bcma_erom_is_end(struct bcma_bus *bus, u32 **eromptr)
1863 + u32 ent = bcma_erom_get_ent(bus, eromptr);
1864 + bcma_erom_push_ent(eromptr);
1865 + return (ent == (SCAN_ER_TAG_END | SCAN_ER_VALID));
1868 +static bool bcma_erom_is_bridge(struct bcma_bus *bus, u32 **eromptr)
1870 + u32 ent = bcma_erom_get_ent(bus, eromptr);
1871 + bcma_erom_push_ent(eromptr);
1872 + return (((ent & SCAN_ER_VALID)) &&
1873 + ((ent & SCAN_ER_TAGX) == SCAN_ER_TAG_ADDR) &&
1874 + ((ent & SCAN_ADDR_TYPE) == SCAN_ADDR_TYPE_BRIDGE));
1877 +static void bcma_erom_skip_component(struct bcma_bus *bus, u32 **eromptr)
1881 + ent = bcma_erom_get_ent(bus, eromptr);
1882 + if ((ent & SCAN_ER_VALID) &&
1883 + ((ent & SCAN_ER_TAG) == SCAN_ER_TAG_CI))
1885 + if (ent == (SCAN_ER_TAG_END | SCAN_ER_VALID))
1888 + bcma_erom_push_ent(eromptr);
1891 +static s32 bcma_erom_get_mst_port(struct bcma_bus *bus, u32 **eromptr)
1893 + u32 ent = bcma_erom_get_ent(bus, eromptr);
1894 + if (!(ent & SCAN_ER_VALID))
1896 + if ((ent & SCAN_ER_TAG) != SCAN_ER_TAG_MP)
1901 +static s32 bcma_erom_get_addr_desc(struct bcma_bus *bus, u32 **eromptr,
1902 + u32 type, u8 port)
1904 + u32 addrl, addrh, sizel, sizeh = 0;
1907 + u32 ent = bcma_erom_get_ent(bus, eromptr);
1908 + if ((!(ent & SCAN_ER_VALID)) ||
1909 + ((ent & SCAN_ER_TAGX) != SCAN_ER_TAG_ADDR) ||
1910 + ((ent & SCAN_ADDR_TYPE) != type) ||
1911 + (((ent & SCAN_ADDR_PORT) >> SCAN_ADDR_PORT_SHIFT) != port)) {
1912 + bcma_erom_push_ent(eromptr);
1916 + addrl = ent & SCAN_ADDR_ADDR;
1917 + if (ent & SCAN_ADDR_AG32)
1918 + addrh = bcma_erom_get_ent(bus, eromptr);
1922 + if ((ent & SCAN_ADDR_SZ) == SCAN_ADDR_SZ_SZD) {
1923 + size = bcma_erom_get_ent(bus, eromptr);
1924 + sizel = size & SCAN_SIZE_SZ;
1925 + if (size & SCAN_SIZE_SG32)
1926 + sizeh = bcma_erom_get_ent(bus, eromptr);
1928 + sizel = SCAN_ADDR_SZ_BASE <<
1929 + ((ent & SCAN_ADDR_SZ) >> SCAN_ADDR_SZ_SHIFT);
1934 +static struct bcma_device *bcma_find_core_by_index(struct bcma_bus *bus,
1937 + struct bcma_device *core;
1939 + list_for_each_entry(core, &bus->cores, list) {
1940 + if (core->core_index == index)
1946 +static int bcma_get_next_core(struct bcma_bus *bus, u32 __iomem **eromptr,
1947 + struct bcma_device_id *match, int core_num,
1948 + struct bcma_device *core)
1953 + u8 ports[2], wrappers[2];
1956 + cia = bcma_erom_get_ci(bus, eromptr);
1958 + bcma_erom_push_ent(eromptr);
1959 + if (bcma_erom_is_end(bus, eromptr))
1963 + cib = bcma_erom_get_ci(bus, eromptr);
1968 + core->id.class = (cia & SCAN_CIA_CLASS) >> SCAN_CIA_CLASS_SHIFT;
1969 + core->id.id = (cia & SCAN_CIA_ID) >> SCAN_CIA_ID_SHIFT;
1970 + core->id.manuf = (cia & SCAN_CIA_MANUF) >> SCAN_CIA_MANUF_SHIFT;
1971 + ports[0] = (cib & SCAN_CIB_NMP) >> SCAN_CIB_NMP_SHIFT;
1972 + ports[1] = (cib & SCAN_CIB_NSP) >> SCAN_CIB_NSP_SHIFT;
1973 + wrappers[0] = (cib & SCAN_CIB_NMW) >> SCAN_CIB_NMW_SHIFT;
1974 + wrappers[1] = (cib & SCAN_CIB_NSW) >> SCAN_CIB_NSW_SHIFT;
1975 + core->id.rev = (cib & SCAN_CIB_REV) >> SCAN_CIB_REV_SHIFT;
1977 + if (((core->id.manuf == BCMA_MANUF_ARM) &&
1978 + (core->id.id == 0xFFF)) ||
1979 + (ports[1] == 0)) {
1980 + bcma_erom_skip_component(bus, eromptr);
1984 + /* check if component is a core at all */
1985 + if (wrappers[0] + wrappers[1] == 0) {
1986 + /* we could save addrl of the router
1987 + if (cid == BCMA_CORE_OOB_ROUTER)
1989 + bcma_erom_skip_component(bus, eromptr);
1993 + if (bcma_erom_is_bridge(bus, eromptr)) {
1994 + bcma_erom_skip_component(bus, eromptr);
1998 + if (bcma_find_core_by_index(bus, core_num)) {
1999 + bcma_erom_skip_component(bus, eromptr);
2003 + if (match && ((match->manuf != BCMA_ANY_MANUF &&
2004 + match->manuf != core->id.manuf) ||
2005 + (match->id != BCMA_ANY_ID && match->id != core->id.id) ||
2006 + (match->rev != BCMA_ANY_REV && match->rev != core->id.rev) ||
2007 + (match->class != BCMA_ANY_CLASS && match->class != core->id.class)
2009 + bcma_erom_skip_component(bus, eromptr);
2013 + /* get & parse master ports */
2014 + for (i = 0; i < ports[0]; i++) {
2015 + s32 mst_port_d = bcma_erom_get_mst_port(bus, eromptr);
2016 + if (mst_port_d < 0)
2020 + /* get & parse slave ports */
2021 + for (i = 0; i < ports[1]; i++) {
2022 + for (j = 0; ; j++) {
2023 + tmp = bcma_erom_get_addr_desc(bus, eromptr,
2024 + SCAN_ADDR_TYPE_SLAVE, i);
2026 + /* no more entries for port _i_ */
2027 + /* pr_debug("erom: slave port %d "
2028 + * "has %d descriptors\n", i, j); */
2031 + if (i == 0 && j == 0)
2037 + /* get & parse master wrappers */
2038 + for (i = 0; i < wrappers[0]; i++) {
2039 + for (j = 0; ; j++) {
2040 + tmp = bcma_erom_get_addr_desc(bus, eromptr,
2041 + SCAN_ADDR_TYPE_MWRAP, i);
2043 + /* no more entries for port _i_ */
2044 + /* pr_debug("erom: master wrapper %d "
2045 + * "has %d descriptors\n", i, j); */
2048 + if (i == 0 && j == 0)
2054 + /* get & parse slave wrappers */
2055 + for (i = 0; i < wrappers[1]; i++) {
2056 + u8 hack = (ports[1] == 1) ? 0 : 1;
2057 + for (j = 0; ; j++) {
2058 + tmp = bcma_erom_get_addr_desc(bus, eromptr,
2059 + SCAN_ADDR_TYPE_SWRAP, i + hack);
2061 + /* no more entries for port _i_ */
2062 + /* pr_debug("erom: master wrapper %d "
2063 + * has %d descriptors\n", i, j); */
2066 + if (wrappers[0] == 0 && !i && !j)
2071 + if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
2072 + core->io_addr = ioremap_nocache(core->addr, BCMA_CORE_SIZE);
2073 + if (!core->io_addr)
2075 + core->io_wrap = ioremap_nocache(core->wrap, BCMA_CORE_SIZE);
2076 + if (!core->io_wrap) {
2077 + iounmap(core->io_addr);
2084 +void bcma_init_bus(struct bcma_bus *bus)
2088 + if (bus->init_done)
2091 + INIT_LIST_HEAD(&bus->cores);
2092 + bus->nr_cores = 0;
2094 + bcma_scan_switch_core(bus, BCMA_ADDR_BASE);
2096 + tmp = bcma_scan_read32(bus, 0, BCMA_CC_ID);
2097 + bus->chipinfo.id = (tmp & BCMA_CC_ID_ID) >> BCMA_CC_ID_ID_SHIFT;
2098 + bus->chipinfo.rev = (tmp & BCMA_CC_ID_REV) >> BCMA_CC_ID_REV_SHIFT;
2099 + bus->chipinfo.pkg = (tmp & BCMA_CC_ID_PKG) >> BCMA_CC_ID_PKG_SHIFT;
2100 + bus->init_done = true;
2103 +int bcma_bus_scan(struct bcma_bus *bus)
2106 + u32 __iomem *eromptr, *eromend;
2108 + int err, core_num = 0;
2110 + bcma_init_bus(bus);
2112 + erombase = bcma_scan_read32(bus, 0, BCMA_CC_EROM);
2113 + if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
2114 + eromptr = ioremap_nocache(erombase, BCMA_CORE_SIZE);
2118 + eromptr = bus->mmio;
2121 + eromend = eromptr + BCMA_CORE_SIZE / sizeof(u32);
2123 + bcma_scan_switch_core(bus, erombase);
2125 + while (eromptr < eromend) {
2126 + struct bcma_device *core = kzalloc(sizeof(*core), GFP_KERNEL);
2129 + INIT_LIST_HEAD(&core->list);
2132 + err = bcma_get_next_core(bus, &eromptr, NULL, core_num, core);
2133 + if (err == -ENODEV) {
2136 + } else if (err == -ENXIO)
2138 + else if (err == -ESPIPE)
2143 + core->core_index = core_num++;
2146 + pr_info("Core %d found: %s "
2147 + "(manuf 0x%03X, id 0x%03X, rev 0x%02X, class 0x%X)\n",
2148 + core->core_index, bcma_device_name(&core->id),
2149 + core->id.manuf, core->id.id, core->id.rev,
2152 + list_add(&core->list, &bus->cores);
2155 + if (bus->hosttype == BCMA_HOSTTYPE_SOC)
2161 +int __init bcma_bus_scan_early(struct bcma_bus *bus,
2162 + struct bcma_device_id *match,
2163 + struct bcma_device *core)
2166 + u32 __iomem *eromptr, *eromend;
2168 + int err = -ENODEV;
2171 + erombase = bcma_scan_read32(bus, 0, BCMA_CC_EROM);
2172 + if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
2173 + eromptr = ioremap_nocache(erombase, BCMA_CORE_SIZE);
2177 + eromptr = bus->mmio;
2180 + eromend = eromptr + BCMA_CORE_SIZE / sizeof(u32);
2182 + bcma_scan_switch_core(bus, erombase);
2184 + while (eromptr < eromend) {
2185 + memset(core, 0, sizeof(*core));
2186 + INIT_LIST_HEAD(&core->list);
2189 + err = bcma_get_next_core(bus, &eromptr, match, core_num, core);
2190 + if (err == -ENODEV) {
2193 + } else if (err == -ENXIO)
2195 + else if (err == -ESPIPE)
2200 + core->core_index = core_num++;
2202 + pr_info("Core %d found: %s "
2203 + "(manuf 0x%03X, id 0x%03X, rev 0x%02X, class 0x%X)\n",
2204 + core->core_index, bcma_device_name(&core->id),
2205 + core->id.manuf, core->id.id, core->id.rev,
2208 + list_add(&core->list, &bus->cores);
2213 + if (bus->hosttype == BCMA_HOSTTYPE_SOC)
2219 +++ b/drivers/bcma/scan.h
2221 +#ifndef BCMA_SCAN_H_
2222 +#define BCMA_SCAN_H_
2224 +#define BCMA_ADDR_BASE 0x18000000
2225 +#define BCMA_WRAP_BASE 0x18100000
2227 +#define SCAN_ER_VALID 0x00000001
2228 +#define SCAN_ER_TAGX 0x00000006 /* we have to ignore 0x8 bit when checking tag for SCAN_ER_TAG_ADDR */
2229 +#define SCAN_ER_TAG 0x0000000E
2230 +#define SCAN_ER_TAG_CI 0x00000000
2231 +#define SCAN_ER_TAG_MP 0x00000002
2232 +#define SCAN_ER_TAG_ADDR 0x00000004
2233 +#define SCAN_ER_TAG_END 0x0000000E
2234 +#define SCAN_ER_BAD 0xFFFFFFFF
2236 +#define SCAN_CIA_CLASS 0x000000F0
2237 +#define SCAN_CIA_CLASS_SHIFT 4
2238 +#define SCAN_CIA_ID 0x000FFF00
2239 +#define SCAN_CIA_ID_SHIFT 8
2240 +#define SCAN_CIA_MANUF 0xFFF00000
2241 +#define SCAN_CIA_MANUF_SHIFT 20
2243 +#define SCAN_CIB_NMP 0x000001F0
2244 +#define SCAN_CIB_NMP_SHIFT 4
2245 +#define SCAN_CIB_NSP 0x00003E00
2246 +#define SCAN_CIB_NSP_SHIFT 9
2247 +#define SCAN_CIB_NMW 0x0007C000
2248 +#define SCAN_CIB_NMW_SHIFT 14
2249 +#define SCAN_CIB_NSW 0x00F80000
2250 +#define SCAN_CIB_NSW_SHIFT 17
2251 +#define SCAN_CIB_REV 0xFF000000
2252 +#define SCAN_CIB_REV_SHIFT 24
2254 +#define SCAN_ADDR_AG32 0x00000008
2255 +#define SCAN_ADDR_SZ 0x00000030
2256 +#define SCAN_ADDR_SZ_SHIFT 4
2257 +#define SCAN_ADDR_SZ_4K 0x00000000
2258 +#define SCAN_ADDR_SZ_8K 0x00000010
2259 +#define SCAN_ADDR_SZ_16K 0x00000020
2260 +#define SCAN_ADDR_SZ_SZD 0x00000030
2261 +#define SCAN_ADDR_TYPE 0x000000C0
2262 +#define SCAN_ADDR_TYPE_SLAVE 0x00000000
2263 +#define SCAN_ADDR_TYPE_BRIDGE 0x00000040
2264 +#define SCAN_ADDR_TYPE_SWRAP 0x00000080
2265 +#define SCAN_ADDR_TYPE_MWRAP 0x000000C0
2266 +#define SCAN_ADDR_PORT 0x00000F00
2267 +#define SCAN_ADDR_PORT_SHIFT 8
2268 +#define SCAN_ADDR_ADDR 0xFFFFF000
2270 +#define SCAN_ADDR_SZ_BASE 0x00001000 /* 4KB */
2272 +#define SCAN_SIZE_SZ_ALIGN 0x00000FFF
2273 +#define SCAN_SIZE_SZ 0xFFFFF000
2274 +#define SCAN_SIZE_SG32 0x00000008
2276 +#endif /* BCMA_SCAN_H_ */
2278 +++ b/include/linux/bcma/bcma.h
2280 +#ifndef LINUX_BCMA_H_
2281 +#define LINUX_BCMA_H_
2283 +#include <linux/pci.h>
2284 +#include <linux/mod_devicetable.h>
2286 +#include <linux/bcma/bcma_driver_chipcommon.h>
2287 +#include <linux/bcma/bcma_driver_pci.h>
2288 +#include <linux/bcma/bcma_driver_mips.h>
2289 +#include <linux/ssb/ssb.h> /* SPROM sharing */
2291 +#include "bcma_regs.h"
2293 +struct bcma_device;
2296 +enum bcma_hosttype {
2297 + BCMA_HOSTTYPE_PCI,
2298 + BCMA_HOSTTYPE_SDIO,
2299 + BCMA_HOSTTYPE_SOC,
2302 +struct bcma_chipinfo {
2308 +enum bcma_clkmode {
2309 + BCMA_CLKMODE_FAST,
2310 + BCMA_CLKMODE_DYNAMIC,
2313 +struct bcma_host_ops {
2314 + u8 (*read8)(struct bcma_device *core, u16 offset);
2315 + u16 (*read16)(struct bcma_device *core, u16 offset);
2316 + u32 (*read32)(struct bcma_device *core, u16 offset);
2317 + void (*write8)(struct bcma_device *core, u16 offset, u8 value);
2318 + void (*write16)(struct bcma_device *core, u16 offset, u16 value);
2319 + void (*write32)(struct bcma_device *core, u16 offset, u32 value);
2320 +#ifdef CONFIG_BCMA_BLOCKIO
2321 + void (*block_read)(struct bcma_device *core, void *buffer,
2322 + size_t count, u16 offset, u8 reg_width);
2323 + void (*block_write)(struct bcma_device *core, const void *buffer,
2324 + size_t count, u16 offset, u8 reg_width);
2327 + u32 (*aread32)(struct bcma_device *core, u16 offset);
2328 + void (*awrite32)(struct bcma_device *core, u16 offset, u32 value);
2331 +/* Core manufacturers */
2332 +#define BCMA_MANUF_ARM 0x43B
2333 +#define BCMA_MANUF_MIPS 0x4A7
2334 +#define BCMA_MANUF_BCM 0x4BF
2336 +/* Core class values. */
2337 +#define BCMA_CL_SIM 0x0
2338 +#define BCMA_CL_EROM 0x1
2339 +#define BCMA_CL_CORESIGHT 0x9
2340 +#define BCMA_CL_VERIF 0xB
2341 +#define BCMA_CL_OPTIMO 0xD
2342 +#define BCMA_CL_GEN 0xE
2343 +#define BCMA_CL_PRIMECELL 0xF
2345 +/* Core-ID values. */
2346 +#define BCMA_CORE_OOB_ROUTER 0x367 /* Out of band */
2347 +#define BCMA_CORE_INVALID 0x700
2348 +#define BCMA_CORE_CHIPCOMMON 0x800
2349 +#define BCMA_CORE_ILINE20 0x801
2350 +#define BCMA_CORE_SRAM 0x802
2351 +#define BCMA_CORE_SDRAM 0x803
2352 +#define BCMA_CORE_PCI 0x804
2353 +#define BCMA_CORE_MIPS 0x805
2354 +#define BCMA_CORE_ETHERNET 0x806
2355 +#define BCMA_CORE_V90 0x807
2356 +#define BCMA_CORE_USB11_HOSTDEV 0x808
2357 +#define BCMA_CORE_ADSL 0x809
2358 +#define BCMA_CORE_ILINE100 0x80A
2359 +#define BCMA_CORE_IPSEC 0x80B
2360 +#define BCMA_CORE_UTOPIA 0x80C
2361 +#define BCMA_CORE_PCMCIA 0x80D
2362 +#define BCMA_CORE_INTERNAL_MEM 0x80E
2363 +#define BCMA_CORE_MEMC_SDRAM 0x80F
2364 +#define BCMA_CORE_OFDM 0x810
2365 +#define BCMA_CORE_EXTIF 0x811
2366 +#define BCMA_CORE_80211 0x812
2367 +#define BCMA_CORE_PHY_A 0x813
2368 +#define BCMA_CORE_PHY_B 0x814
2369 +#define BCMA_CORE_PHY_G 0x815
2370 +#define BCMA_CORE_MIPS_3302 0x816
2371 +#define BCMA_CORE_USB11_HOST 0x817
2372 +#define BCMA_CORE_USB11_DEV 0x818
2373 +#define BCMA_CORE_USB20_HOST 0x819
2374 +#define BCMA_CORE_USB20_DEV 0x81A
2375 +#define BCMA_CORE_SDIO_HOST 0x81B
2376 +#define BCMA_CORE_ROBOSWITCH 0x81C
2377 +#define BCMA_CORE_PARA_ATA 0x81D
2378 +#define BCMA_CORE_SATA_XORDMA 0x81E
2379 +#define BCMA_CORE_ETHERNET_GBIT 0x81F
2380 +#define BCMA_CORE_PCIE 0x820
2381 +#define BCMA_CORE_PHY_N 0x821
2382 +#define BCMA_CORE_SRAM_CTL 0x822
2383 +#define BCMA_CORE_MINI_MACPHY 0x823
2384 +#define BCMA_CORE_ARM_1176 0x824
2385 +#define BCMA_CORE_ARM_7TDMI 0x825
2386 +#define BCMA_CORE_PHY_LP 0x826
2387 +#define BCMA_CORE_PMU 0x827
2388 +#define BCMA_CORE_PHY_SSN 0x828
2389 +#define BCMA_CORE_SDIO_DEV 0x829
2390 +#define BCMA_CORE_ARM_CM3 0x82A
2391 +#define BCMA_CORE_PHY_HT 0x82B
2392 +#define BCMA_CORE_MIPS_74K 0x82C
2393 +#define BCMA_CORE_MAC_GBIT 0x82D
2394 +#define BCMA_CORE_DDR12_MEM_CTL 0x82E
2395 +#define BCMA_CORE_PCIE_RC 0x82F /* PCIe Root Complex */
2396 +#define BCMA_CORE_OCP_OCP_BRIDGE 0x830
2397 +#define BCMA_CORE_SHARED_COMMON 0x831
2398 +#define BCMA_CORE_OCP_AHB_BRIDGE 0x832
2399 +#define BCMA_CORE_SPI_HOST 0x833
2400 +#define BCMA_CORE_I2S 0x834
2401 +#define BCMA_CORE_SDR_DDR1_MEM_CTL 0x835 /* SDR/DDR1 memory controller core */
2402 +#define BCMA_CORE_SHIM 0x837 /* SHIM component in ubus/6362 */
2403 +#define BCMA_CORE_DEFAULT 0xFFF
2405 +#define BCMA_MAX_NR_CORES 16
2407 +struct bcma_device {
2408 + struct bcma_bus *bus;
2409 + struct bcma_device_id id;
2411 + struct device dev;
2412 + struct device *dma_dev;
2415 + bool dev_registered;
2422 + void __iomem *io_addr;
2423 + void __iomem *io_wrap;
2426 + struct list_head list;
2429 +static inline void *bcma_get_drvdata(struct bcma_device *core)
2431 + return core->drvdata;
2433 +static inline void bcma_set_drvdata(struct bcma_device *core, void *drvdata)
2435 + core->drvdata = drvdata;
2438 +struct bcma_driver {
2440 + const struct bcma_device_id *id_table;
2442 + int (*probe)(struct bcma_device *dev);
2443 + void (*remove)(struct bcma_device *dev);
2444 + int (*suspend)(struct bcma_device *dev, pm_message_t state);
2445 + int (*resume)(struct bcma_device *dev);
2446 + void (*shutdown)(struct bcma_device *dev);
2448 + struct device_driver drv;
2451 +int __bcma_driver_register(struct bcma_driver *drv, struct module *owner);
2452 +#define bcma_driver_register(drv) \
2453 + __bcma_driver_register(drv, THIS_MODULE)
2455 +extern void bcma_driver_unregister(struct bcma_driver *drv);
2458 + /* The MMIO area. */
2459 + void __iomem *mmio;
2461 + const struct bcma_host_ops *ops;
2463 + enum bcma_hosttype hosttype;
2465 + /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */
2466 + struct pci_dev *host_pci;
2467 + /* Pointer to the SDIO device (only for BCMA_HOSTTYPE_SDIO) */
2468 + struct sdio_func *host_sdio;
2471 + struct bcma_chipinfo chipinfo;
2473 + struct bcma_device *mapped_core;
2474 + struct list_head cores;
2478 + struct bcma_drv_cc drv_cc;
2479 + struct bcma_drv_pci drv_pci;
2480 + struct bcma_drv_mips drv_mips;
2482 + /* We decided to share SPROM struct with SSB as long as we do not need
2483 + * any hacks for BCMA. This simplifies drivers code. */
2484 + struct ssb_sprom sprom;
2487 +static inline u32 bcma_read8(struct bcma_device *core, u16 offset)
2489 + return core->bus->ops->read8(core, offset);
2491 +static inline u32 bcma_read16(struct bcma_device *core, u16 offset)
2493 + return core->bus->ops->read16(core, offset);
2495 +static inline u32 bcma_read32(struct bcma_device *core, u16 offset)
2497 + return core->bus->ops->read32(core, offset);
2500 +void bcma_write8(struct bcma_device *core, u16 offset, u32 value)
2502 + core->bus->ops->write8(core, offset, value);
2505 +void bcma_write16(struct bcma_device *core, u16 offset, u32 value)
2507 + core->bus->ops->write16(core, offset, value);
2510 +void bcma_write32(struct bcma_device *core, u16 offset, u32 value)
2512 + core->bus->ops->write32(core, offset, value);
2514 +#ifdef CONFIG_BCMA_BLOCKIO
2515 +static inline void bcma_block_read(struct bcma_device *core, void *buffer,
2516 + size_t count, u16 offset, u8 reg_width)
2518 + core->bus->ops->block_read(core, buffer, count, offset, reg_width);
2520 +static inline void bcma_block_write(struct bcma_device *core,
2521 + const void *buffer, size_t count,
2522 + u16 offset, u8 reg_width)
2524 + core->bus->ops->block_write(core, buffer, count, offset, reg_width);
2527 +static inline u32 bcma_aread32(struct bcma_device *core, u16 offset)
2529 + return core->bus->ops->aread32(core, offset);
2532 +void bcma_awrite32(struct bcma_device *core, u16 offset, u32 value)
2534 + core->bus->ops->awrite32(core, offset, value);
2537 +static inline void bcma_mask32(struct bcma_device *cc, u16 offset, u32 mask)
2539 + bcma_write32(cc, offset, bcma_read32(cc, offset) & mask);
2541 +static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set)
2543 + bcma_write32(cc, offset, bcma_read32(cc, offset) | set);
2545 +static inline void bcma_maskset32(struct bcma_device *cc,
2546 + u16 offset, u32 mask, u32 set)
2548 + bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set);
2550 +static inline void bcma_mask16(struct bcma_device *cc, u16 offset, u16 mask)
2552 + bcma_write16(cc, offset, bcma_read16(cc, offset) & mask);
2554 +static inline void bcma_set16(struct bcma_device *cc, u16 offset, u16 set)
2556 + bcma_write16(cc, offset, bcma_read16(cc, offset) | set);
2558 +static inline void bcma_maskset16(struct bcma_device *cc,
2559 + u16 offset, u16 mask, u16 set)
2561 + bcma_write16(cc, offset, (bcma_read16(cc, offset) & mask) | set);
2564 +extern bool bcma_core_is_enabled(struct bcma_device *core);
2565 +extern void bcma_core_disable(struct bcma_device *core, u32 flags);
2566 +extern int bcma_core_enable(struct bcma_device *core, u32 flags);
2567 +extern void bcma_core_set_clockmode(struct bcma_device *core,
2568 + enum bcma_clkmode clkmode);
2569 +extern void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status,
2571 +#define BCMA_DMA_TRANSLATION_MASK 0xC0000000
2572 +#define BCMA_DMA_TRANSLATION_NONE 0x00000000
2573 +#define BCMA_DMA_TRANSLATION_DMA32_CMT 0x40000000 /* Client Mode Translation for 32-bit DMA */
2574 +#define BCMA_DMA_TRANSLATION_DMA64_CMT 0x80000000 /* Client Mode Translation for 64-bit DMA */
2575 +extern u32 bcma_core_dma_translation(struct bcma_device *core);
2577 +#endif /* LINUX_BCMA_H_ */
2579 +++ b/include/linux/bcma/bcma_driver_chipcommon.h
2581 +#ifndef LINUX_BCMA_DRIVER_CC_H_
2582 +#define LINUX_BCMA_DRIVER_CC_H_
2584 +/** ChipCommon core registers. **/
2585 +#define BCMA_CC_ID 0x0000
2586 +#define BCMA_CC_ID_ID 0x0000FFFF
2587 +#define BCMA_CC_ID_ID_SHIFT 0
2588 +#define BCMA_CC_ID_REV 0x000F0000
2589 +#define BCMA_CC_ID_REV_SHIFT 16
2590 +#define BCMA_CC_ID_PKG 0x00F00000
2591 +#define BCMA_CC_ID_PKG_SHIFT 20
2592 +#define BCMA_CC_ID_NRCORES 0x0F000000
2593 +#define BCMA_CC_ID_NRCORES_SHIFT 24
2594 +#define BCMA_CC_ID_TYPE 0xF0000000
2595 +#define BCMA_CC_ID_TYPE_SHIFT 28
2596 +#define BCMA_CC_CAP 0x0004 /* Capabilities */
2597 +#define BCMA_CC_CAP_NRUART 0x00000003 /* # of UARTs */
2598 +#define BCMA_CC_CAP_MIPSEB 0x00000004 /* MIPS in BigEndian Mode */
2599 +#define BCMA_CC_CAP_UARTCLK 0x00000018 /* UART clock select */
2600 +#define BCMA_CC_CAP_UARTCLK_INT 0x00000008 /* UARTs are driven by internal divided clock */
2601 +#define BCMA_CC_CAP_UARTGPIO 0x00000020 /* UARTs on GPIO 15-12 */
2602 +#define BCMA_CC_CAP_EXTBUS 0x000000C0 /* External buses present */
2603 +#define BCMA_CC_CAP_FLASHT 0x00000700 /* Flash Type */
2604 +#define BCMA_CC_FLASHT_NONE 0x00000000 /* No flash */
2605 +#define BCMA_CC_FLASHT_STSER 0x00000100 /* ST serial flash */
2606 +#define BCMA_CC_FLASHT_ATSER 0x00000200 /* Atmel serial flash */
2607 +#define BCMA_CC_FLASHT_NFLASH 0x00000200
2608 +#define BCMA_CC_FLASHT_PARA 0x00000700 /* Parallel flash */
2609 +#define BCMA_CC_CAP_PLLT 0x00038000 /* PLL Type */
2610 +#define BCMA_PLLTYPE_NONE 0x00000000
2611 +#define BCMA_PLLTYPE_1 0x00010000 /* 48Mhz base, 3 dividers */
2612 +#define BCMA_PLLTYPE_2 0x00020000 /* 48Mhz, 4 dividers */
2613 +#define BCMA_PLLTYPE_3 0x00030000 /* 25Mhz, 2 dividers */
2614 +#define BCMA_PLLTYPE_4 0x00008000 /* 48Mhz, 4 dividers */
2615 +#define BCMA_PLLTYPE_5 0x00018000 /* 25Mhz, 4 dividers */
2616 +#define BCMA_PLLTYPE_6 0x00028000 /* 100/200 or 120/240 only */
2617 +#define BCMA_PLLTYPE_7 0x00038000 /* 25Mhz, 4 dividers */
2618 +#define BCMA_CC_CAP_PCTL 0x00040000 /* Power Control */
2619 +#define BCMA_CC_CAP_OTPS 0x00380000 /* OTP size */
2620 +#define BCMA_CC_CAP_OTPS_SHIFT 19
2621 +#define BCMA_CC_CAP_OTPS_BASE 5
2622 +#define BCMA_CC_CAP_JTAGM 0x00400000 /* JTAG master present */
2623 +#define BCMA_CC_CAP_BROM 0x00800000 /* Internal boot ROM active */
2624 +#define BCMA_CC_CAP_64BIT 0x08000000 /* 64-bit Backplane */
2625 +#define BCMA_CC_CAP_PMU 0x10000000 /* PMU available (rev >= 20) */
2626 +#define BCMA_CC_CAP_ECI 0x20000000 /* ECI available (rev >= 20) */
2627 +#define BCMA_CC_CAP_SPROM 0x40000000 /* SPROM present */
2628 +#define BCMA_CC_CORECTL 0x0008
2629 +#define BCMA_CC_CORECTL_UARTCLK0 0x00000001 /* Drive UART with internal clock */
2630 +#define BCMA_CC_CORECTL_SE 0x00000002 /* sync clk out enable (corerev >= 3) */
2631 +#define BCMA_CC_CORECTL_UARTCLKEN 0x00000008 /* UART clock enable (rev >= 21) */
2632 +#define BCMA_CC_BIST 0x000C
2633 +#define BCMA_CC_OTPS 0x0010 /* OTP status */
2634 +#define BCMA_CC_OTPS_PROGFAIL 0x80000000
2635 +#define BCMA_CC_OTPS_PROTECT 0x00000007
2636 +#define BCMA_CC_OTPS_HW_PROTECT 0x00000001
2637 +#define BCMA_CC_OTPS_SW_PROTECT 0x00000002
2638 +#define BCMA_CC_OTPS_CID_PROTECT 0x00000004
2639 +#define BCMA_CC_OTPC 0x0014 /* OTP control */
2640 +#define BCMA_CC_OTPC_RECWAIT 0xFF000000
2641 +#define BCMA_CC_OTPC_PROGWAIT 0x00FFFF00
2642 +#define BCMA_CC_OTPC_PRW_SHIFT 8
2643 +#define BCMA_CC_OTPC_MAXFAIL 0x00000038
2644 +#define BCMA_CC_OTPC_VSEL 0x00000006
2645 +#define BCMA_CC_OTPC_SELVL 0x00000001
2646 +#define BCMA_CC_OTPP 0x0018 /* OTP prog */
2647 +#define BCMA_CC_OTPP_COL 0x000000FF
2648 +#define BCMA_CC_OTPP_ROW 0x0000FF00
2649 +#define BCMA_CC_OTPP_ROW_SHIFT 8
2650 +#define BCMA_CC_OTPP_READERR 0x10000000
2651 +#define BCMA_CC_OTPP_VALUE 0x20000000
2652 +#define BCMA_CC_OTPP_READ 0x40000000
2653 +#define BCMA_CC_OTPP_START 0x80000000
2654 +#define BCMA_CC_OTPP_BUSY 0x80000000
2655 +#define BCMA_CC_IRQSTAT 0x0020
2656 +#define BCMA_CC_IRQMASK 0x0024
2657 +#define BCMA_CC_IRQ_GPIO 0x00000001 /* gpio intr */
2658 +#define BCMA_CC_IRQ_EXT 0x00000002 /* ro: ext intr pin (corerev >= 3) */
2659 +#define BCMA_CC_IRQ_WDRESET 0x80000000 /* watchdog reset occurred */
2660 +#define BCMA_CC_CHIPCTL 0x0028 /* Rev >= 11 only */
2661 +#define BCMA_CC_CHIPSTAT 0x002C /* Rev >= 11 only */
2662 +#define BCMA_CC_JCMD 0x0030 /* Rev >= 10 only */
2663 +#define BCMA_CC_JCMD_START 0x80000000
2664 +#define BCMA_CC_JCMD_BUSY 0x80000000
2665 +#define BCMA_CC_JCMD_PAUSE 0x40000000
2666 +#define BCMA_CC_JCMD0_ACC_MASK 0x0000F000
2667 +#define BCMA_CC_JCMD0_ACC_IRDR 0x00000000
2668 +#define BCMA_CC_JCMD0_ACC_DR 0x00001000
2669 +#define BCMA_CC_JCMD0_ACC_IR 0x00002000
2670 +#define BCMA_CC_JCMD0_ACC_RESET 0x00003000
2671 +#define BCMA_CC_JCMD0_ACC_IRPDR 0x00004000
2672 +#define BCMA_CC_JCMD0_ACC_PDR 0x00005000
2673 +#define BCMA_CC_JCMD0_IRW_MASK 0x00000F00
2674 +#define BCMA_CC_JCMD_ACC_MASK 0x000F0000 /* Changes for corerev 11 */
2675 +#define BCMA_CC_JCMD_ACC_IRDR 0x00000000
2676 +#define BCMA_CC_JCMD_ACC_DR 0x00010000
2677 +#define BCMA_CC_JCMD_ACC_IR 0x00020000
2678 +#define BCMA_CC_JCMD_ACC_RESET 0x00030000
2679 +#define BCMA_CC_JCMD_ACC_IRPDR 0x00040000
2680 +#define BCMA_CC_JCMD_ACC_PDR 0x00050000
2681 +#define BCMA_CC_JCMD_IRW_MASK 0x00001F00
2682 +#define BCMA_CC_JCMD_IRW_SHIFT 8
2683 +#define BCMA_CC_JCMD_DRW_MASK 0x0000003F
2684 +#define BCMA_CC_JIR 0x0034 /* Rev >= 10 only */
2685 +#define BCMA_CC_JDR 0x0038 /* Rev >= 10 only */
2686 +#define BCMA_CC_JCTL 0x003C /* Rev >= 10 only */
2687 +#define BCMA_CC_JCTL_FORCE_CLK 4 /* Force clock */
2688 +#define BCMA_CC_JCTL_EXT_EN 2 /* Enable external targets */
2689 +#define BCMA_CC_JCTL_EN 1 /* Enable Jtag master */
2690 +#define BCMA_CC_FLASHCTL 0x0040
2691 +#define BCMA_CC_FLASHCTL_START 0x80000000
2692 +#define BCMA_CC_FLASHCTL_BUSY BCMA_CC_FLASHCTL_START
2693 +#define BCMA_CC_FLASHADDR 0x0044
2694 +#define BCMA_CC_FLASHDATA 0x0048
2695 +#define BCMA_CC_BCAST_ADDR 0x0050
2696 +#define BCMA_CC_BCAST_DATA 0x0054
2697 +#define BCMA_CC_GPIOPULLUP 0x0058 /* Rev >= 20 only */
2698 +#define BCMA_CC_GPIOPULLDOWN 0x005C /* Rev >= 20 only */
2699 +#define BCMA_CC_GPIOIN 0x0060
2700 +#define BCMA_CC_GPIOOUT 0x0064
2701 +#define BCMA_CC_GPIOOUTEN 0x0068
2702 +#define BCMA_CC_GPIOCTL 0x006C
2703 +#define BCMA_CC_GPIOPOL 0x0070
2704 +#define BCMA_CC_GPIOIRQ 0x0074
2705 +#define BCMA_CC_WATCHDOG 0x0080
2706 +#define BCMA_CC_GPIOTIMER 0x0088 /* LED powersave (corerev >= 16) */
2707 +#define BCMA_CC_GPIOTIMER_OFFTIME 0x0000FFFF
2708 +#define BCMA_CC_GPIOTIMER_OFFTIME_SHIFT 0
2709 +#define BCMA_CC_GPIOTIMER_ONTIME 0xFFFF0000
2710 +#define BCMA_CC_GPIOTIMER_ONTIME_SHIFT 16
2711 +#define BCMA_CC_GPIOTOUTM 0x008C /* LED powersave (corerev >= 16) */
2712 +#define BCMA_CC_CLOCK_N 0x0090
2713 +#define BCMA_CC_CLOCK_SB 0x0094
2714 +#define BCMA_CC_CLOCK_PCI 0x0098
2715 +#define BCMA_CC_CLOCK_M2 0x009C
2716 +#define BCMA_CC_CLOCK_MIPS 0x00A0
2717 +#define BCMA_CC_CLKDIV 0x00A4 /* Rev >= 3 only */
2718 +#define BCMA_CC_CLKDIV_SFLASH 0x0F000000
2719 +#define BCMA_CC_CLKDIV_SFLASH_SHIFT 24
2720 +#define BCMA_CC_CLKDIV_OTP 0x000F0000
2721 +#define BCMA_CC_CLKDIV_OTP_SHIFT 16
2722 +#define BCMA_CC_CLKDIV_JTAG 0x00000F00
2723 +#define BCMA_CC_CLKDIV_JTAG_SHIFT 8
2724 +#define BCMA_CC_CLKDIV_UART 0x000000FF
2725 +#define BCMA_CC_CAP_EXT 0x00AC /* Capabilities */
2726 +#define BCMA_CC_PLLONDELAY 0x00B0 /* Rev >= 4 only */
2727 +#define BCMA_CC_FREFSELDELAY 0x00B4 /* Rev >= 4 only */
2728 +#define BCMA_CC_SLOWCLKCTL 0x00B8 /* 6 <= Rev <= 9 only */
2729 +#define BCMA_CC_SLOWCLKCTL_SRC 0x00000007 /* slow clock source mask */
2730 +#define BCMA_CC_SLOWCLKCTL_SRC_LPO 0x00000000 /* source of slow clock is LPO */
2731 +#define BCMA_CC_SLOWCLKCTL_SRC_XTAL 0x00000001 /* source of slow clock is crystal */
2732 +#define BCMA_CC_SLOECLKCTL_SRC_PCI 0x00000002 /* source of slow clock is PCI */
2733 +#define BCMA_CC_SLOWCLKCTL_LPOFREQ 0x00000200 /* LPOFreqSel, 1: 160Khz, 0: 32KHz */
2734 +#define BCMA_CC_SLOWCLKCTL_LPOPD 0x00000400 /* LPOPowerDown, 1: LPO is disabled, 0: LPO is enabled */
2735 +#define BCMA_CC_SLOWCLKCTL_FSLOW 0x00000800 /* ForceSlowClk, 1: sb/cores running on slow clock, 0: power logic control */
2736 +#define BCMA_CC_SLOWCLKCTL_IPLL 0x00001000 /* IgnorePllOffReq, 1/0: power logic ignores/honors PLL clock disable requests from core */
2737 +#define BCMA_CC_SLOWCLKCTL_ENXTAL 0x00002000 /* XtalControlEn, 1/0: power logic does/doesn't disable crystal when appropriate */
2738 +#define BCMA_CC_SLOWCLKCTL_XTALPU 0x00004000 /* XtalPU (RO), 1/0: crystal running/disabled */
2739 +#define BCMA_CC_SLOWCLKCTL_CLKDIV 0xFFFF0000 /* ClockDivider (SlowClk = 1/(4+divisor)) */
2740 +#define BCMA_CC_SLOWCLKCTL_CLKDIV_SHIFT 16
2741 +#define BCMA_CC_SYSCLKCTL 0x00C0 /* Rev >= 3 only */
2742 +#define BCMA_CC_SYSCLKCTL_IDLPEN 0x00000001 /* ILPen: Enable Idle Low Power */
2743 +#define BCMA_CC_SYSCLKCTL_ALPEN 0x00000002 /* ALPen: Enable Active Low Power */
2744 +#define BCMA_CC_SYSCLKCTL_PLLEN 0x00000004 /* ForcePLLOn */
2745 +#define BCMA_CC_SYSCLKCTL_FORCEALP 0x00000008 /* Force ALP (or HT if ALPen is not set */
2746 +#define BCMA_CC_SYSCLKCTL_FORCEHT 0x00000010 /* Force HT */
2747 +#define BCMA_CC_SYSCLKCTL_CLKDIV 0xFFFF0000 /* ClkDiv (ILP = 1/(4+divisor)) */
2748 +#define BCMA_CC_SYSCLKCTL_CLKDIV_SHIFT 16
2749 +#define BCMA_CC_CLKSTSTR 0x00C4 /* Rev >= 3 only */
2750 +#define BCMA_CC_EROM 0x00FC
2751 +#define BCMA_CC_PCMCIA_CFG 0x0100
2752 +#define BCMA_CC_PCMCIA_MEMWAIT 0x0104
2753 +#define BCMA_CC_PCMCIA_ATTRWAIT 0x0108
2754 +#define BCMA_CC_PCMCIA_IOWAIT 0x010C
2755 +#define BCMA_CC_IDE_CFG 0x0110
2756 +#define BCMA_CC_IDE_MEMWAIT 0x0114
2757 +#define BCMA_CC_IDE_ATTRWAIT 0x0118
2758 +#define BCMA_CC_IDE_IOWAIT 0x011C
2759 +#define BCMA_CC_PROG_CFG 0x0120
2760 +#define BCMA_CC_PROG_WAITCNT 0x0124
2761 +#define BCMA_CC_FLASH_CFG 0x0128
2762 +#define BCMA_CC_FLASH_CFG_DS 0x0010 /* Data size, 0=8bit, 1=16bit */
2763 +#define BCMA_CC_FLASH_WAITCNT 0x012C
2764 +/* 0x1E0 is defined as shared BCMA_CLKCTLST */
2765 +#define BCMA_CC_HW_WORKAROUND 0x01E4 /* Hardware workaround (rev >= 20) */
2766 +#define BCMA_CC_UART0_DATA 0x0300
2767 +#define BCMA_CC_UART0_IMR 0x0304
2768 +#define BCMA_CC_UART0_FCR 0x0308
2769 +#define BCMA_CC_UART0_LCR 0x030C
2770 +#define BCMA_CC_UART0_MCR 0x0310
2771 +#define BCMA_CC_UART0_LSR 0x0314
2772 +#define BCMA_CC_UART0_MSR 0x0318
2773 +#define BCMA_CC_UART0_SCRATCH 0x031C
2774 +#define BCMA_CC_UART1_DATA 0x0400
2775 +#define BCMA_CC_UART1_IMR 0x0404
2776 +#define BCMA_CC_UART1_FCR 0x0408
2777 +#define BCMA_CC_UART1_LCR 0x040C
2778 +#define BCMA_CC_UART1_MCR 0x0410
2779 +#define BCMA_CC_UART1_LSR 0x0414
2780 +#define BCMA_CC_UART1_MSR 0x0418
2781 +#define BCMA_CC_UART1_SCRATCH 0x041C
2782 +/* PMU registers (rev >= 20) */
2783 +#define BCMA_CC_PMU_CTL 0x0600 /* PMU control */
2784 +#define BCMA_CC_PMU_CTL_ILP_DIV 0xFFFF0000 /* ILP div mask */
2785 +#define BCMA_CC_PMU_CTL_ILP_DIV_SHIFT 16
2786 +#define BCMA_CC_PMU_CTL_PLL_UPD 0x00000400
2787 +#define BCMA_CC_PMU_CTL_NOILPONW 0x00000200 /* No ILP on wait */
2788 +#define BCMA_CC_PMU_CTL_HTREQEN 0x00000100 /* HT req enable */
2789 +#define BCMA_CC_PMU_CTL_ALPREQEN 0x00000080 /* ALP req enable */
2790 +#define BCMA_CC_PMU_CTL_XTALFREQ 0x0000007C /* Crystal freq */
2791 +#define BCMA_CC_PMU_CTL_XTALFREQ_SHIFT 2
2792 +#define BCMA_CC_PMU_CTL_ILPDIVEN 0x00000002 /* ILP div enable */
2793 +#define BCMA_CC_PMU_CTL_LPOSEL 0x00000001 /* LPO sel */
2794 +#define BCMA_CC_PMU_CAP 0x0604 /* PMU capabilities */
2795 +#define BCMA_CC_PMU_CAP_REVISION 0x000000FF /* Revision mask */
2796 +#define BCMA_CC_PMU_STAT 0x0608 /* PMU status */
2797 +#define BCMA_CC_PMU_STAT_INTPEND 0x00000040 /* Interrupt pending */
2798 +#define BCMA_CC_PMU_STAT_SBCLKST 0x00000030 /* Backplane clock status? */
2799 +#define BCMA_CC_PMU_STAT_HAVEALP 0x00000008 /* ALP available */
2800 +#define BCMA_CC_PMU_STAT_HAVEHT 0x00000004 /* HT available */
2801 +#define BCMA_CC_PMU_STAT_RESINIT 0x00000003 /* Res init */
2802 +#define BCMA_CC_PMU_RES_STAT 0x060C /* PMU res status */
2803 +#define BCMA_CC_PMU_RES_PEND 0x0610 /* PMU res pending */
2804 +#define BCMA_CC_PMU_TIMER 0x0614 /* PMU timer */
2805 +#define BCMA_CC_PMU_MINRES_MSK 0x0618 /* PMU min res mask */
2806 +#define BCMA_CC_PMU_MAXRES_MSK 0x061C /* PMU max res mask */
2807 +#define BCMA_CC_PMU_RES_TABSEL 0x0620 /* PMU res table sel */
2808 +#define BCMA_CC_PMU_RES_DEPMSK 0x0624 /* PMU res dep mask */
2809 +#define BCMA_CC_PMU_RES_UPDNTM 0x0628 /* PMU res updown timer */
2810 +#define BCMA_CC_PMU_RES_TIMER 0x062C /* PMU res timer */
2811 +#define BCMA_CC_PMU_CLKSTRETCH 0x0630 /* PMU clockstretch */
2812 +#define BCMA_CC_PMU_WATCHDOG 0x0634 /* PMU watchdog */
2813 +#define BCMA_CC_PMU_RES_REQTS 0x0640 /* PMU res req timer sel */
2814 +#define BCMA_CC_PMU_RES_REQT 0x0644 /* PMU res req timer */
2815 +#define BCMA_CC_PMU_RES_REQM 0x0648 /* PMU res req mask */
2816 +#define BCMA_CC_CHIPCTL_ADDR 0x0650
2817 +#define BCMA_CC_CHIPCTL_DATA 0x0654
2818 +#define BCMA_CC_REGCTL_ADDR 0x0658
2819 +#define BCMA_CC_REGCTL_DATA 0x065C
2820 +#define BCMA_CC_PLLCTL_ADDR 0x0660
2821 +#define BCMA_CC_PLLCTL_DATA 0x0664
2822 +#define BCMA_CC_SPROM 0x0800 /* SPROM beginning */
2823 +#define BCMA_CC_SPROM_PCIE6 0x0830 /* SPROM beginning on PCIe rev >= 6 */
2825 +/* Divider allocation in 4716/47162/5356 */
2826 +#define BCMA_CC_PMU5_MAINPLL_CPU 1
2827 +#define BCMA_CC_PMU5_MAINPLL_MEM 2
2828 +#define BCMA_CC_PMU5_MAINPLL_SSB 3
2830 +/* PLL usage in 4716/47162 */
2831 +#define BCMA_CC_PMU4716_MAINPLL_PLL0 12
2833 +/* PLL usage in 5356/5357 */
2834 +#define BCMA_CC_PMU5356_MAINPLL_PLL0 0
2835 +#define BCMA_CC_PMU5357_MAINPLL_PLL0 0
2838 +#define BCMA_CC_PMU4706_MAINPLL_PLL0 0
2840 +/* ALP clock on pre-PMU chips */
2841 +#define BCMA_CC_PMU_ALP_CLOCK 20000000
2842 +/* HT clock for systems with PMU-enabled chipcommon */
2843 +#define BCMA_CC_PMU_HT_CLOCK 80000000
2845 +/* PMU rev 5 (& 6) */
2846 +#define BCMA_CC_PPL_P1P2_OFF 0
2847 +#define BCMA_CC_PPL_P1_MASK 0x0f000000
2848 +#define BCMA_CC_PPL_P1_SHIFT 24
2849 +#define BCMA_CC_PPL_P2_MASK 0x00f00000
2850 +#define BCMA_CC_PPL_P2_SHIFT 20
2851 +#define BCMA_CC_PPL_M14_OFF 1
2852 +#define BCMA_CC_PPL_MDIV_MASK 0x000000ff
2853 +#define BCMA_CC_PPL_MDIV_WIDTH 8
2854 +#define BCMA_CC_PPL_NM5_OFF 2
2855 +#define BCMA_CC_PPL_NDIV_MASK 0xfff00000
2856 +#define BCMA_CC_PPL_NDIV_SHIFT 20
2857 +#define BCMA_CC_PPL_FMAB_OFF 3
2858 +#define BCMA_CC_PPL_MRAT_MASK 0xf0000000
2859 +#define BCMA_CC_PPL_MRAT_SHIFT 28
2860 +#define BCMA_CC_PPL_ABRAT_MASK 0x08000000
2861 +#define BCMA_CC_PPL_ABRAT_SHIFT 27
2862 +#define BCMA_CC_PPL_FDIV_MASK 0x07ffffff
2863 +#define BCMA_CC_PPL_PLLCTL_OFF 4
2864 +#define BCMA_CC_PPL_PCHI_OFF 5
2865 +#define BCMA_CC_PPL_PCHI_MASK 0x0000003f
2867 +/* BCM4331 ChipControl numbers. */
2868 +#define BCMA_CHIPCTL_4331_BT_COEXIST BIT(0) /* 0 disable */
2869 +#define BCMA_CHIPCTL_4331_SECI BIT(1) /* 0 SECI is disabled (JATG functional) */
2870 +#define BCMA_CHIPCTL_4331_EXT_LNA BIT(2) /* 0 disable */
2871 +#define BCMA_CHIPCTL_4331_SPROM_GPIO13_15 BIT(3) /* sprom/gpio13-15 mux */
2872 +#define BCMA_CHIPCTL_4331_EXTPA_EN BIT(4) /* 0 ext pa disable, 1 ext pa enabled */
2873 +#define BCMA_CHIPCTL_4331_GPIOCLK_ON_SPROMCS BIT(5) /* set drive out GPIO_CLK on sprom_cs pin */
2874 +#define BCMA_CHIPCTL_4331_PCIE_MDIO_ON_SPROMCS BIT(6) /* use sprom_cs pin as PCIE mdio interface */
2875 +#define BCMA_CHIPCTL_4331_EXTPA_ON_GPIO2_5 BIT(7) /* aband extpa will be at gpio2/5 and sprom_dout */
2876 +#define BCMA_CHIPCTL_4331_OVR_PIPEAUXCLKEN BIT(8) /* override core control on pipe_AuxClkEnable */
2877 +#define BCMA_CHIPCTL_4331_OVR_PIPEAUXPWRDOWN BIT(9) /* override core control on pipe_AuxPowerDown */
2878 +#define BCMA_CHIPCTL_4331_PCIE_AUXCLKEN BIT(10) /* pcie_auxclkenable */
2879 +#define BCMA_CHIPCTL_4331_PCIE_PIPE_PLLDOWN BIT(11) /* pcie_pipe_pllpowerdown */
2880 +#define BCMA_CHIPCTL_4331_BT_SHD0_ON_GPIO4 BIT(16) /* enable bt_shd0 at gpio4 */
2881 +#define BCMA_CHIPCTL_4331_BT_SHD1_ON_GPIO5 BIT(17) /* enable bt_shd1 at gpio5 */
2883 +/* Data for the PMU, if available.
2884 + * Check availability with ((struct bcma_chipcommon)->capabilities & BCMA_CC_CAP_PMU)
2886 +struct bcma_chipcommon_pmu {
2887 + u8 rev; /* PMU revision */
2888 + u32 crystalfreq; /* The active crystal frequency (in kHz) */
2891 +#ifdef CONFIG_BCMA_DRIVER_MIPS
2892 +struct bcma_pflash {
2898 +struct bcma_serial_port {
2900 + unsigned long clockspeed;
2902 + unsigned int baud_base;
2903 + unsigned int reg_shift;
2905 +#endif /* CONFIG_BCMA_DRIVER_MIPS */
2907 +struct bcma_drv_cc {
2908 + struct bcma_device *core;
2911 + u32 capabilities_ext;
2913 + /* Fast Powerup Delay constant */
2914 + u16 fast_pwrup_delay;
2915 + struct bcma_chipcommon_pmu pmu;
2916 +#ifdef CONFIG_BCMA_DRIVER_MIPS
2917 + struct bcma_pflash pflash;
2919 + int nr_serial_ports;
2920 + struct bcma_serial_port serial_ports[4];
2921 +#endif /* CONFIG_BCMA_DRIVER_MIPS */
2924 +/* Register access */
2925 +#define bcma_cc_read32(cc, offset) \
2926 + bcma_read32((cc)->core, offset)
2927 +#define bcma_cc_write32(cc, offset, val) \
2928 + bcma_write32((cc)->core, offset, val)
2930 +#define bcma_cc_mask32(cc, offset, mask) \
2931 + bcma_cc_write32(cc, offset, bcma_cc_read32(cc, offset) & (mask))
2932 +#define bcma_cc_set32(cc, offset, set) \
2933 + bcma_cc_write32(cc, offset, bcma_cc_read32(cc, offset) | (set))
2934 +#define bcma_cc_maskset32(cc, offset, mask, set) \
2935 + bcma_cc_write32(cc, offset, (bcma_cc_read32(cc, offset) & (mask)) | (set))
2937 +extern void bcma_core_chipcommon_init(struct bcma_drv_cc *cc);
2939 +extern void bcma_chipco_suspend(struct bcma_drv_cc *cc);
2940 +extern void bcma_chipco_resume(struct bcma_drv_cc *cc);
2942 +void bcma_chipco_bcm4331_ext_pa_lines_ctl(struct bcma_drv_cc *cc, bool enable);
2944 +extern void bcma_chipco_watchdog_timer_set(struct bcma_drv_cc *cc,
2947 +void bcma_chipco_irq_mask(struct bcma_drv_cc *cc, u32 mask, u32 value);
2949 +u32 bcma_chipco_irq_status(struct bcma_drv_cc *cc, u32 mask);
2951 +/* Chipcommon GPIO pin access. */
2952 +u32 bcma_chipco_gpio_in(struct bcma_drv_cc *cc, u32 mask);
2953 +u32 bcma_chipco_gpio_out(struct bcma_drv_cc *cc, u32 mask, u32 value);
2954 +u32 bcma_chipco_gpio_outen(struct bcma_drv_cc *cc, u32 mask, u32 value);
2955 +u32 bcma_chipco_gpio_control(struct bcma_drv_cc *cc, u32 mask, u32 value);
2956 +u32 bcma_chipco_gpio_intmask(struct bcma_drv_cc *cc, u32 mask, u32 value);
2957 +u32 bcma_chipco_gpio_polarity(struct bcma_drv_cc *cc, u32 mask, u32 value);
2960 +extern void bcma_pmu_init(struct bcma_drv_cc *cc);
2962 +extern void bcma_chipco_pll_write(struct bcma_drv_cc *cc, u32 offset,
2964 +extern void bcma_chipco_pll_maskset(struct bcma_drv_cc *cc, u32 offset,
2965 + u32 mask, u32 set);
2966 +extern void bcma_chipco_chipctl_maskset(struct bcma_drv_cc *cc,
2967 + u32 offset, u32 mask, u32 set);
2968 +extern void bcma_chipco_regctl_maskset(struct bcma_drv_cc *cc,
2969 + u32 offset, u32 mask, u32 set);
2971 +#endif /* LINUX_BCMA_DRIVER_CC_H_ */
2973 +++ b/include/linux/bcma/bcma_driver_pci.h
2975 +#ifndef LINUX_BCMA_DRIVER_PCI_H_
2976 +#define LINUX_BCMA_DRIVER_PCI_H_
2978 +#include <linux/types.h>
2982 +/** PCI core registers. **/
2983 +#define BCMA_CORE_PCI_CTL 0x0000 /* PCI Control */
2984 +#define BCMA_CORE_PCI_CTL_RST_OE 0x00000001 /* PCI_RESET Output Enable */
2985 +#define BCMA_CORE_PCI_CTL_RST 0x00000002 /* PCI_RESET driven out to pin */
2986 +#define BCMA_CORE_PCI_CTL_CLK_OE 0x00000004 /* Clock gate Output Enable */
2987 +#define BCMA_CORE_PCI_CTL_CLK 0x00000008 /* Gate for clock driven out to pin */
2988 +#define BCMA_CORE_PCI_ARBCTL 0x0010 /* PCI Arbiter Control */
2989 +#define BCMA_CORE_PCI_ARBCTL_INTERN 0x00000001 /* Use internal arbiter */
2990 +#define BCMA_CORE_PCI_ARBCTL_EXTERN 0x00000002 /* Use external arbiter */
2991 +#define BCMA_CORE_PCI_ARBCTL_PARKID 0x00000006 /* Mask, selects which agent is parked on an idle bus */
2992 +#define BCMA_CORE_PCI_ARBCTL_PARKID_LAST 0x00000000 /* Last requestor */
2993 +#define BCMA_CORE_PCI_ARBCTL_PARKID_4710 0x00000002 /* 4710 */
2994 +#define BCMA_CORE_PCI_ARBCTL_PARKID_EXT0 0x00000004 /* External requestor 0 */
2995 +#define BCMA_CORE_PCI_ARBCTL_PARKID_EXT1 0x00000006 /* External requestor 1 */
2996 +#define BCMA_CORE_PCI_ISTAT 0x0020 /* Interrupt status */
2997 +#define BCMA_CORE_PCI_ISTAT_INTA 0x00000001 /* PCI INTA# */
2998 +#define BCMA_CORE_PCI_ISTAT_INTB 0x00000002 /* PCI INTB# */
2999 +#define BCMA_CORE_PCI_ISTAT_SERR 0x00000004 /* PCI SERR# (write to clear) */
3000 +#define BCMA_CORE_PCI_ISTAT_PERR 0x00000008 /* PCI PERR# (write to clear) */
3001 +#define BCMA_CORE_PCI_ISTAT_PME 0x00000010 /* PCI PME# */
3002 +#define BCMA_CORE_PCI_IMASK 0x0024 /* Interrupt mask */
3003 +#define BCMA_CORE_PCI_IMASK_INTA 0x00000001 /* PCI INTA# */
3004 +#define BCMA_CORE_PCI_IMASK_INTB 0x00000002 /* PCI INTB# */
3005 +#define BCMA_CORE_PCI_IMASK_SERR 0x00000004 /* PCI SERR# */
3006 +#define BCMA_CORE_PCI_IMASK_PERR 0x00000008 /* PCI PERR# */
3007 +#define BCMA_CORE_PCI_IMASK_PME 0x00000010 /* PCI PME# */
3008 +#define BCMA_CORE_PCI_MBOX 0x0028 /* Backplane to PCI Mailbox */
3009 +#define BCMA_CORE_PCI_MBOX_F0_0 0x00000100 /* PCI function 0, INT 0 */
3010 +#define BCMA_CORE_PCI_MBOX_F0_1 0x00000200 /* PCI function 0, INT 1 */
3011 +#define BCMA_CORE_PCI_MBOX_F1_0 0x00000400 /* PCI function 1, INT 0 */
3012 +#define BCMA_CORE_PCI_MBOX_F1_1 0x00000800 /* PCI function 1, INT 1 */
3013 +#define BCMA_CORE_PCI_MBOX_F2_0 0x00001000 /* PCI function 2, INT 0 */
3014 +#define BCMA_CORE_PCI_MBOX_F2_1 0x00002000 /* PCI function 2, INT 1 */
3015 +#define BCMA_CORE_PCI_MBOX_F3_0 0x00004000 /* PCI function 3, INT 0 */
3016 +#define BCMA_CORE_PCI_MBOX_F3_1 0x00008000 /* PCI function 3, INT 1 */
3017 +#define BCMA_CORE_PCI_BCAST_ADDR 0x0050 /* Backplane Broadcast Address */
3018 +#define BCMA_CORE_PCI_BCAST_ADDR_MASK 0x000000FF
3019 +#define BCMA_CORE_PCI_BCAST_DATA 0x0054 /* Backplane Broadcast Data */
3020 +#define BCMA_CORE_PCI_GPIO_IN 0x0060 /* rev >= 2 only */
3021 +#define BCMA_CORE_PCI_GPIO_OUT 0x0064 /* rev >= 2 only */
3022 +#define BCMA_CORE_PCI_GPIO_ENABLE 0x0068 /* rev >= 2 only */
3023 +#define BCMA_CORE_PCI_GPIO_CTL 0x006C /* rev >= 2 only */
3024 +#define BCMA_CORE_PCI_SBTOPCI0 0x0100 /* Backplane to PCI translation 0 (sbtopci0) */
3025 +#define BCMA_CORE_PCI_SBTOPCI0_MASK 0xFC000000
3026 +#define BCMA_CORE_PCI_SBTOPCI1 0x0104 /* Backplane to PCI translation 1 (sbtopci1) */
3027 +#define BCMA_CORE_PCI_SBTOPCI1_MASK 0xFC000000
3028 +#define BCMA_CORE_PCI_SBTOPCI2 0x0108 /* Backplane to PCI translation 2 (sbtopci2) */
3029 +#define BCMA_CORE_PCI_SBTOPCI2_MASK 0xC0000000
3030 +#define BCMA_CORE_PCI_PCICFG0 0x0400 /* PCI config space 0 (rev >= 8) */
3031 +#define BCMA_CORE_PCI_PCICFG1 0x0500 /* PCI config space 1 (rev >= 8) */
3032 +#define BCMA_CORE_PCI_PCICFG2 0x0600 /* PCI config space 2 (rev >= 8) */
3033 +#define BCMA_CORE_PCI_PCICFG3 0x0700 /* PCI config space 3 (rev >= 8) */
3034 +#define BCMA_CORE_PCI_SPROM(wordoffset) (0x0800 + ((wordoffset) * 2)) /* SPROM shadow area (72 bytes) */
3037 +#define BCMA_CORE_PCI_SBTOPCI_MEM 0x00000000
3038 +#define BCMA_CORE_PCI_SBTOPCI_IO 0x00000001
3039 +#define BCMA_CORE_PCI_SBTOPCI_CFG0 0x00000002
3040 +#define BCMA_CORE_PCI_SBTOPCI_CFG1 0x00000003
3041 +#define BCMA_CORE_PCI_SBTOPCI_PREF 0x00000004 /* Prefetch enable */
3042 +#define BCMA_CORE_PCI_SBTOPCI_BURST 0x00000008 /* Burst enable */
3043 +#define BCMA_CORE_PCI_SBTOPCI_MRM 0x00000020 /* Memory Read Multiple */
3044 +#define BCMA_CORE_PCI_SBTOPCI_RC 0x00000030 /* Read Command mask (rev >= 11) */
3045 +#define BCMA_CORE_PCI_SBTOPCI_RC_READ 0x00000000 /* Memory read */
3046 +#define BCMA_CORE_PCI_SBTOPCI_RC_READL 0x00000010 /* Memory read line */
3047 +#define BCMA_CORE_PCI_SBTOPCI_RC_READM 0x00000020 /* Memory read multiple */
3049 +/* PCIcore specific boardflags */
3050 +#define BCMA_CORE_PCI_BFL_NOPCI 0x00000400 /* Board leaves PCI floating */
3052 +struct bcma_drv_pci {
3053 + struct bcma_device *core;
3057 +/* Register access */
3058 +#define pcicore_read32(pc, offset) bcma_read32((pc)->core, offset)
3059 +#define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val)
3061 +extern void bcma_core_pci_init(struct bcma_drv_pci *pc);
3062 +extern int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc,
3063 + struct bcma_device *core, bool enable);
3065 +#endif /* LINUX_BCMA_DRIVER_PCI_H_ */
3067 +++ b/include/linux/bcma/bcma_regs.h
3069 +#ifndef LINUX_BCMA_REGS_H_
3070 +#define LINUX_BCMA_REGS_H_
3072 +/* Some single registers are shared between many cores */
3073 +/* BCMA_CLKCTLST: ChipCommon (rev >= 20), PCIe, 80211 */
3074 +#define BCMA_CLKCTLST 0x01E0 /* Clock control and status */
3075 +#define BCMA_CLKCTLST_FORCEALP 0x00000001 /* Force ALP request */
3076 +#define BCMA_CLKCTLST_FORCEHT 0x00000002 /* Force HT request */
3077 +#define BCMA_CLKCTLST_FORCEILP 0x00000004 /* Force ILP request */
3078 +#define BCMA_CLKCTLST_HAVEALPREQ 0x00000008 /* ALP available request */
3079 +#define BCMA_CLKCTLST_HAVEHTREQ 0x00000010 /* HT available request */
3080 +#define BCMA_CLKCTLST_HWCROFF 0x00000020 /* Force HW clock request off */
3081 +#define BCMA_CLKCTLST_EXTRESREQ 0x00000700 /* Mask of external resource requests */
3082 +#define BCMA_CLKCTLST_HAVEALP 0x00010000 /* ALP available */
3083 +#define BCMA_CLKCTLST_HAVEHT 0x00020000 /* HT available */
3084 +#define BCMA_CLKCTLST_BP_ON_ALP 0x00040000 /* RO: running on ALP clock */
3085 +#define BCMA_CLKCTLST_BP_ON_HT 0x00080000 /* RO: running on HT clock */
3086 +#define BCMA_CLKCTLST_EXTRESST 0x07000000 /* Mask of external resource status */
3087 +/* Is there any BCM4328 on BCMA bus? */
3088 +#define BCMA_CLKCTLST_4328A0_HAVEHT 0x00010000 /* 4328a0 has reversed bits */
3089 +#define BCMA_CLKCTLST_4328A0_HAVEALP 0x00020000 /* 4328a0 has reversed bits */
3091 +/* Agent registers (common for every core) */
3092 +#define BCMA_IOCTL 0x0408 /* IO control */
3093 +#define BCMA_IOCTL_CLK 0x0001
3094 +#define BCMA_IOCTL_FGC 0x0002
3095 +#define BCMA_IOCTL_CORE_BITS 0x3FFC
3096 +#define BCMA_IOCTL_PME_EN 0x4000
3097 +#define BCMA_IOCTL_BIST_EN 0x8000
3098 +#define BCMA_IOST 0x0500 /* IO status */
3099 +#define BCMA_IOST_CORE_BITS 0x0FFF
3100 +#define BCMA_IOST_DMA64 0x1000
3101 +#define BCMA_IOST_GATED_CLK 0x2000
3102 +#define BCMA_IOST_BIST_ERROR 0x4000
3103 +#define BCMA_IOST_BIST_DONE 0x8000
3104 +#define BCMA_RESET_CTL 0x0800
3105 +#define BCMA_RESET_CTL_RESET 0x0001
3107 +/* BCMA PCI config space registers. */
3108 +#define BCMA_PCI_PMCSR 0x44
3109 +#define BCMA_PCI_PE 0x100
3110 +#define BCMA_PCI_BAR0_WIN 0x80 /* Backplane address space 0 */
3111 +#define BCMA_PCI_BAR1_WIN 0x84 /* Backplane address space 1 */
3112 +#define BCMA_PCI_SPROMCTL 0x88 /* SPROM control */
3113 +#define BCMA_PCI_SPROMCTL_WE 0x10 /* SPROM write enable */
3114 +#define BCMA_PCI_BAR1_CONTROL 0x8c /* Address space 1 burst control */
3115 +#define BCMA_PCI_IRQS 0x90 /* PCI interrupts */
3116 +#define BCMA_PCI_IRQMASK 0x94 /* PCI IRQ control and mask (pcirev >= 6 only) */
3117 +#define BCMA_PCI_BACKPLANE_IRQS 0x98 /* Backplane Interrupts */
3118 +#define BCMA_PCI_BAR0_WIN2 0xAC
3119 +#define BCMA_PCI_GPIO_IN 0xB0 /* GPIO Input (pcirev >= 3 only) */
3120 +#define BCMA_PCI_GPIO_OUT 0xB4 /* GPIO Output (pcirev >= 3 only) */
3121 +#define BCMA_PCI_GPIO_OUT_ENABLE 0xB8 /* GPIO Output Enable/Disable (pcirev >= 3 only) */
3122 +#define BCMA_PCI_GPIO_SCS 0x10 /* PCI config space bit 4 for 4306c0 slow clock source */
3123 +#define BCMA_PCI_GPIO_HWRAD 0x20 /* PCI config space GPIO 13 for hw radio disable */
3124 +#define BCMA_PCI_GPIO_XTAL 0x40 /* PCI config space GPIO 14 for Xtal powerup */
3125 +#define BCMA_PCI_GPIO_PLL 0x80 /* PCI config space GPIO 15 for PLL powerdown */
3127 +#endif /* LINUX_BCMA_REGS_H_ */
3128 --- a/include/linux/mod_devicetable.h
3129 +++ b/include/linux/mod_devicetable.h
3130 @@ -382,6 +382,23 @@ struct ssb_device_id {
3131 #define SSB_ANY_ID 0xFFFF
3132 #define SSB_ANY_REV 0xFF
3134 +/* Broadcom's specific AMBA core, see drivers/bcma/ */
3135 +struct bcma_device_id {
3141 +#define BCMA_CORE(_manuf, _id, _rev, _class) \
3142 + { .manuf = _manuf, .id = _id, .rev = _rev, .class = _class, }
3143 +#define BCMA_CORETABLE_END \
3146 +#define BCMA_ANY_MANUF 0xFFFF
3147 +#define BCMA_ANY_ID 0xFFFF
3148 +#define BCMA_ANY_REV 0xFF
3149 +#define BCMA_ANY_CLASS 0xFF
3151 struct virtio_device_id {
3154 --- a/scripts/mod/file2alias.c
3155 +++ b/scripts/mod/file2alias.c
3156 @@ -633,6 +633,24 @@ static int do_ssb_entry(const char *file
3160 +/* Looks like: bcma:mNidNrevNclN. */
3161 +static int do_bcma_entry(const char *filename,
3162 + struct bcma_device_id *id, char *alias)
3164 + id->manuf = TO_NATIVE(id->manuf);
3165 + id->id = TO_NATIVE(id->id);
3166 + id->rev = TO_NATIVE(id->rev);
3167 + id->class = TO_NATIVE(id->class);
3169 + strcpy(alias, "bcma:");
3170 + ADD(alias, "m", id->manuf != BCMA_ANY_MANUF, id->manuf);
3171 + ADD(alias, "id", id->id != BCMA_ANY_ID, id->id);
3172 + ADD(alias, "rev", id->rev != BCMA_ANY_REV, id->rev);
3173 + ADD(alias, "cl", id->class != BCMA_ANY_CLASS, id->class);
3174 + add_wildcard(alias);
3178 /* Looks like: virtio:dNvN */
3179 static int do_virtio_entry(const char *filename, struct virtio_device_id *id,
3181 @@ -845,6 +863,10 @@ void handle_moddevtable(struct module *m
3182 do_table(symval, sym->st_size,
3183 sizeof(struct ssb_device_id), "ssb",
3185 + else if (sym_is(symname, "__mod_bcma_device_table"))
3186 + do_table(symval, sym->st_size,
3187 + sizeof(struct bcma_device_id), "bcma",
3188 + do_bcma_entry, mod);
3189 else if (sym_is(symname, "__mod_virtio_device_table"))
3190 do_table(symval, sym->st_size,
3191 sizeof(struct virtio_device_id), "virtio",
3193 +++ b/drivers/bcma/sprom.c
3196 + * Broadcom specific AMBA
3199 + * Licensed under the GNU/GPL. See COPYING for details.
3202 +#include "bcma_private.h"
3204 +#include <linux/bcma/bcma.h>
3205 +#include <linux/bcma/bcma_regs.h>
3206 +#include <linux/pci.h>
3207 +#include <linux/io.h>
3208 +#include <linux/dma-mapping.h>
3209 +#include <linux/slab.h>
3211 +#define SPOFF(offset) ((offset) / sizeof(u16))
3213 +/**************************************************
3215 + **************************************************/
3217 +static void bcma_sprom_read(struct bcma_bus *bus, u16 offset, u16 *sprom)
3220 + for (i = 0; i < SSB_SPROMSIZE_WORDS_R4; i++)
3221 + sprom[i] = bcma_read16(bus->drv_cc.core,
3222 + offset + (i * 2));
3225 +/**************************************************
3227 + **************************************************/
3229 +static inline u8 bcma_crc8(u8 crc, u8 data)
3231 + /* Polynomial: x^8 + x^7 + x^6 + x^4 + x^2 + 1 */
3232 + static const u8 t[] = {
3233 + 0x00, 0xF7, 0xB9, 0x4E, 0x25, 0xD2, 0x9C, 0x6B,
3234 + 0x4A, 0xBD, 0xF3, 0x04, 0x6F, 0x98, 0xD6, 0x21,
3235 + 0x94, 0x63, 0x2D, 0xDA, 0xB1, 0x46, 0x08, 0xFF,
3236 + 0xDE, 0x29, 0x67, 0x90, 0xFB, 0x0C, 0x42, 0xB5,
3237 + 0x7F, 0x88, 0xC6, 0x31, 0x5A, 0xAD, 0xE3, 0x14,
3238 + 0x35, 0xC2, 0x8C, 0x7B, 0x10, 0xE7, 0xA9, 0x5E,
3239 + 0xEB, 0x1C, 0x52, 0xA5, 0xCE, 0x39, 0x77, 0x80,
3240 + 0xA1, 0x56, 0x18, 0xEF, 0x84, 0x73, 0x3D, 0xCA,
3241 + 0xFE, 0x09, 0x47, 0xB0, 0xDB, 0x2C, 0x62, 0x95,
3242 + 0xB4, 0x43, 0x0D, 0xFA, 0x91, 0x66, 0x28, 0xDF,
3243 + 0x6A, 0x9D, 0xD3, 0x24, 0x4F, 0xB8, 0xF6, 0x01,
3244 + 0x20, 0xD7, 0x99, 0x6E, 0x05, 0xF2, 0xBC, 0x4B,
3245 + 0x81, 0x76, 0x38, 0xCF, 0xA4, 0x53, 0x1D, 0xEA,
3246 + 0xCB, 0x3C, 0x72, 0x85, 0xEE, 0x19, 0x57, 0xA0,
3247 + 0x15, 0xE2, 0xAC, 0x5B, 0x30, 0xC7, 0x89, 0x7E,
3248 + 0x5F, 0xA8, 0xE6, 0x11, 0x7A, 0x8D, 0xC3, 0x34,
3249 + 0xAB, 0x5C, 0x12, 0xE5, 0x8E, 0x79, 0x37, 0xC0,
3250 + 0xE1, 0x16, 0x58, 0xAF, 0xC4, 0x33, 0x7D, 0x8A,
3251 + 0x3F, 0xC8, 0x86, 0x71, 0x1A, 0xED, 0xA3, 0x54,
3252 + 0x75, 0x82, 0xCC, 0x3B, 0x50, 0xA7, 0xE9, 0x1E,
3253 + 0xD4, 0x23, 0x6D, 0x9A, 0xF1, 0x06, 0x48, 0xBF,
3254 + 0x9E, 0x69, 0x27, 0xD0, 0xBB, 0x4C, 0x02, 0xF5,
3255 + 0x40, 0xB7, 0xF9, 0x0E, 0x65, 0x92, 0xDC, 0x2B,
3256 + 0x0A, 0xFD, 0xB3, 0x44, 0x2F, 0xD8, 0x96, 0x61,
3257 + 0x55, 0xA2, 0xEC, 0x1B, 0x70, 0x87, 0xC9, 0x3E,
3258 + 0x1F, 0xE8, 0xA6, 0x51, 0x3A, 0xCD, 0x83, 0x74,
3259 + 0xC1, 0x36, 0x78, 0x8F, 0xE4, 0x13, 0x5D, 0xAA,
3260 + 0x8B, 0x7C, 0x32, 0xC5, 0xAE, 0x59, 0x17, 0xE0,
3261 + 0x2A, 0xDD, 0x93, 0x64, 0x0F, 0xF8, 0xB6, 0x41,
3262 + 0x60, 0x97, 0xD9, 0x2E, 0x45, 0xB2, 0xFC, 0x0B,
3263 + 0xBE, 0x49, 0x07, 0xF0, 0x9B, 0x6C, 0x22, 0xD5,
3264 + 0xF4, 0x03, 0x4D, 0xBA, 0xD1, 0x26, 0x68, 0x9F,
3266 + return t[crc ^ data];
3269 +static u8 bcma_sprom_crc(const u16 *sprom)
3274 + for (word = 0; word < SSB_SPROMSIZE_WORDS_R4 - 1; word++) {
3275 + crc = bcma_crc8(crc, sprom[word] & 0x00FF);
3276 + crc = bcma_crc8(crc, (sprom[word] & 0xFF00) >> 8);
3278 + crc = bcma_crc8(crc, sprom[SSB_SPROMSIZE_WORDS_R4 - 1] & 0x00FF);
3284 +static int bcma_sprom_check_crc(const u16 *sprom)
3290 + crc = bcma_sprom_crc(sprom);
3291 + tmp = sprom[SSB_SPROMSIZE_WORDS_R4 - 1] & SSB_SPROM_REVISION_CRC;
3292 + expected_crc = tmp >> SSB_SPROM_REVISION_CRC_SHIFT;
3293 + if (crc != expected_crc)
3299 +static int bcma_sprom_valid(const u16 *sprom)
3304 + err = bcma_sprom_check_crc(sprom);
3308 + revision = sprom[SSB_SPROMSIZE_WORDS_R4 - 1] & SSB_SPROM_REVISION_REV;
3309 + if (revision != 8 && revision != 9) {
3310 + pr_err("Unsupported SPROM revision: %d\n", revision);
3317 +/**************************************************
3318 + * SPROM extraction.
3319 + **************************************************/
3321 +static void bcma_sprom_extract_r8(struct bcma_bus *bus, const u16 *sprom)
3326 + bus->sprom.revision = sprom[SSB_SPROMSIZE_WORDS_R4 - 1] &
3327 + SSB_SPROM_REVISION_REV;
3329 + for (i = 0; i < 3; i++) {
3330 + v = sprom[SPOFF(SSB_SPROM8_IL0MAC) + i];
3331 + *(((__be16 *)bus->sprom.il0mac) + i) = cpu_to_be16(v);
3334 + bus->sprom.board_rev = sprom[SPOFF(SSB_SPROM8_BOARDREV)];
3336 + bus->sprom.txpid2g[0] = (sprom[SPOFF(SSB_SPROM4_TXPID2G01)] &
3337 + SSB_SPROM4_TXPID2G0) >> SSB_SPROM4_TXPID2G0_SHIFT;
3338 + bus->sprom.txpid2g[1] = (sprom[SPOFF(SSB_SPROM4_TXPID2G01)] &
3339 + SSB_SPROM4_TXPID2G1) >> SSB_SPROM4_TXPID2G1_SHIFT;
3340 + bus->sprom.txpid2g[2] = (sprom[SPOFF(SSB_SPROM4_TXPID2G23)] &
3341 + SSB_SPROM4_TXPID2G2) >> SSB_SPROM4_TXPID2G2_SHIFT;
3342 + bus->sprom.txpid2g[3] = (sprom[SPOFF(SSB_SPROM4_TXPID2G23)] &
3343 + SSB_SPROM4_TXPID2G3) >> SSB_SPROM4_TXPID2G3_SHIFT;
3345 + bus->sprom.txpid5gl[0] = (sprom[SPOFF(SSB_SPROM4_TXPID5GL01)] &
3346 + SSB_SPROM4_TXPID5GL0) >> SSB_SPROM4_TXPID5GL0_SHIFT;
3347 + bus->sprom.txpid5gl[1] = (sprom[SPOFF(SSB_SPROM4_TXPID5GL01)] &
3348 + SSB_SPROM4_TXPID5GL1) >> SSB_SPROM4_TXPID5GL1_SHIFT;
3349 + bus->sprom.txpid5gl[2] = (sprom[SPOFF(SSB_SPROM4_TXPID5GL23)] &
3350 + SSB_SPROM4_TXPID5GL2) >> SSB_SPROM4_TXPID5GL2_SHIFT;
3351 + bus->sprom.txpid5gl[3] = (sprom[SPOFF(SSB_SPROM4_TXPID5GL23)] &
3352 + SSB_SPROM4_TXPID5GL3) >> SSB_SPROM4_TXPID5GL3_SHIFT;
3354 + bus->sprom.txpid5g[0] = (sprom[SPOFF(SSB_SPROM4_TXPID5G01)] &
3355 + SSB_SPROM4_TXPID5G0) >> SSB_SPROM4_TXPID5G0_SHIFT;
3356 + bus->sprom.txpid5g[1] = (sprom[SPOFF(SSB_SPROM4_TXPID5G01)] &
3357 + SSB_SPROM4_TXPID5G1) >> SSB_SPROM4_TXPID5G1_SHIFT;
3358 + bus->sprom.txpid5g[2] = (sprom[SPOFF(SSB_SPROM4_TXPID5G23)] &
3359 + SSB_SPROM4_TXPID5G2) >> SSB_SPROM4_TXPID5G2_SHIFT;
3360 + bus->sprom.txpid5g[3] = (sprom[SPOFF(SSB_SPROM4_TXPID5G23)] &
3361 + SSB_SPROM4_TXPID5G3) >> SSB_SPROM4_TXPID5G3_SHIFT;
3363 + bus->sprom.txpid5gh[0] = (sprom[SPOFF(SSB_SPROM4_TXPID5GH01)] &
3364 + SSB_SPROM4_TXPID5GH0) >> SSB_SPROM4_TXPID5GH0_SHIFT;
3365 + bus->sprom.txpid5gh[1] = (sprom[SPOFF(SSB_SPROM4_TXPID5GH01)] &
3366 + SSB_SPROM4_TXPID5GH1) >> SSB_SPROM4_TXPID5GH1_SHIFT;
3367 + bus->sprom.txpid5gh[2] = (sprom[SPOFF(SSB_SPROM4_TXPID5GH23)] &
3368 + SSB_SPROM4_TXPID5GH2) >> SSB_SPROM4_TXPID5GH2_SHIFT;
3369 + bus->sprom.txpid5gh[3] = (sprom[SPOFF(SSB_SPROM4_TXPID5GH23)] &
3370 + SSB_SPROM4_TXPID5GH3) >> SSB_SPROM4_TXPID5GH3_SHIFT;
3372 + bus->sprom.boardflags_lo = sprom[SPOFF(SSB_SPROM8_BFLLO)];
3373 + bus->sprom.boardflags_hi = sprom[SPOFF(SSB_SPROM8_BFLHI)];
3374 + bus->sprom.boardflags2_lo = sprom[SPOFF(SSB_SPROM8_BFL2LO)];
3375 + bus->sprom.boardflags2_hi = sprom[SPOFF(SSB_SPROM8_BFL2HI)];
3377 + bus->sprom.country_code = sprom[SPOFF(SSB_SPROM8_CCODE)];
3379 + bus->sprom.fem.ghz2.tssipos = (sprom[SPOFF(SSB_SPROM8_FEM2G)] &
3380 + SSB_SROM8_FEM_TSSIPOS) >> SSB_SROM8_FEM_TSSIPOS_SHIFT;
3381 + bus->sprom.fem.ghz2.extpa_gain = (sprom[SPOFF(SSB_SPROM8_FEM2G)] &
3382 + SSB_SROM8_FEM_EXTPA_GAIN) >> SSB_SROM8_FEM_EXTPA_GAIN_SHIFT;
3383 + bus->sprom.fem.ghz2.pdet_range = (sprom[SPOFF(SSB_SPROM8_FEM2G)] &
3384 + SSB_SROM8_FEM_PDET_RANGE) >> SSB_SROM8_FEM_PDET_RANGE_SHIFT;
3385 + bus->sprom.fem.ghz2.tr_iso = (sprom[SPOFF(SSB_SPROM8_FEM2G)] &
3386 + SSB_SROM8_FEM_TR_ISO) >> SSB_SROM8_FEM_TR_ISO_SHIFT;
3387 + bus->sprom.fem.ghz2.antswlut = (sprom[SPOFF(SSB_SPROM8_FEM2G)] &
3388 + SSB_SROM8_FEM_ANTSWLUT) >> SSB_SROM8_FEM_ANTSWLUT_SHIFT;
3390 + bus->sprom.fem.ghz5.tssipos = (sprom[SPOFF(SSB_SPROM8_FEM5G)] &
3391 + SSB_SROM8_FEM_TSSIPOS) >> SSB_SROM8_FEM_TSSIPOS_SHIFT;
3392 + bus->sprom.fem.ghz5.extpa_gain = (sprom[SPOFF(SSB_SPROM8_FEM5G)] &
3393 + SSB_SROM8_FEM_EXTPA_GAIN) >> SSB_SROM8_FEM_EXTPA_GAIN_SHIFT;
3394 + bus->sprom.fem.ghz5.pdet_range = (sprom[SPOFF(SSB_SPROM8_FEM5G)] &
3395 + SSB_SROM8_FEM_PDET_RANGE) >> SSB_SROM8_FEM_PDET_RANGE_SHIFT;
3396 + bus->sprom.fem.ghz5.tr_iso = (sprom[SPOFF(SSB_SPROM8_FEM5G)] &
3397 + SSB_SROM8_FEM_TR_ISO) >> SSB_SROM8_FEM_TR_ISO_SHIFT;
3398 + bus->sprom.fem.ghz5.antswlut = (sprom[SPOFF(SSB_SPROM8_FEM5G)] &
3399 + SSB_SROM8_FEM_ANTSWLUT) >> SSB_SROM8_FEM_ANTSWLUT_SHIFT;
3402 +int bcma_sprom_get(struct bcma_bus *bus)
3408 + if (!bus->drv_cc.core)
3409 + return -EOPNOTSUPP;
3411 + if (!(bus->drv_cc.capabilities & BCMA_CC_CAP_SPROM))
3414 + sprom = kcalloc(SSB_SPROMSIZE_WORDS_R4, sizeof(u16),
3419 + if (bus->chipinfo.id == 0x4331)
3420 + bcma_chipco_bcm4331_ext_pa_lines_ctl(&bus->drv_cc, false);
3422 + /* Most cards have SPROM moved by additional offset 0x30 (48 dwords).
3423 + * According to brcm80211 this applies to cards with PCIe rev >= 6
3424 + * TODO: understand this condition and use it */
3425 + offset = (bus->chipinfo.id == 0x4331) ? BCMA_CC_SPROM :
3426 + BCMA_CC_SPROM_PCIE6;
3427 + bcma_sprom_read(bus, offset, sprom);
3429 + if (bus->chipinfo.id == 0x4331)
3430 + bcma_chipco_bcm4331_ext_pa_lines_ctl(&bus->drv_cc, true);
3432 + err = bcma_sprom_valid(sprom);
3436 + bcma_sprom_extract_r8(bus, sprom);
3443 +++ b/drivers/bcma/driver_pci_host.c
3446 + * Broadcom specific AMBA
3447 + * PCI Core in hostmode
3449 + * Licensed under the GNU/GPL. See COPYING for details.
3452 +#include "bcma_private.h"
3453 +#include <linux/bcma/bcma.h>
3455 +void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc)
3457 + pr_err("No support for PCI core in hostmode yet\n");
3460 +++ b/drivers/bcma/driver_mips.c
3463 + * Broadcom specific AMBA
3464 + * Broadcom MIPS32 74K core driver
3466 + * Copyright 2009, Broadcom Corporation
3467 + * Copyright 2006, 2007, Michael Buesch <mb@bu3sch.de>
3468 + * Copyright 2010, Bernhard Loos <bernhardloos@googlemail.com>
3469 + * Copyright 2011, Hauke Mehrtens <hauke@hauke-m.de>
3471 + * Licensed under the GNU/GPL. See COPYING for details.
3474 +#include "bcma_private.h"
3476 +#include <linux/bcma/bcma.h>
3478 +#include <linux/serial.h>
3479 +#include <linux/serial_core.h>
3480 +#include <linux/serial_reg.h>
3481 +#include <linux/time.h>
3483 +/* The 47162a0 hangs when reading MIPS DMP registers registers */
3484 +static inline bool bcma_core_mips_bcm47162a0_quirk(struct bcma_device *dev)
3486 + return dev->bus->chipinfo.id == 47162 && dev->bus->chipinfo.rev == 0 &&
3487 + dev->id.id == BCMA_CORE_MIPS_74K;
3490 +/* The 5357b0 hangs when reading USB20H DMP registers */
3491 +static inline bool bcma_core_mips_bcm5357b0_quirk(struct bcma_device *dev)
3493 + return (dev->bus->chipinfo.id == 0x5357 ||
3494 + dev->bus->chipinfo.id == 0x4749) &&
3495 + dev->bus->chipinfo.pkg == 11 &&
3496 + dev->id.id == BCMA_CORE_USB20_HOST;
3499 +static inline u32 mips_read32(struct bcma_drv_mips *mcore,
3502 + return bcma_read32(mcore->core, offset);
3505 +static inline void mips_write32(struct bcma_drv_mips *mcore,
3509 + bcma_write32(mcore->core, offset, value);
3512 +static const u32 ipsflag_irq_mask[] = {
3514 + BCMA_MIPS_IPSFLAG_IRQ1,
3515 + BCMA_MIPS_IPSFLAG_IRQ2,
3516 + BCMA_MIPS_IPSFLAG_IRQ3,
3517 + BCMA_MIPS_IPSFLAG_IRQ4,
3520 +static const u32 ipsflag_irq_shift[] = {
3522 + BCMA_MIPS_IPSFLAG_IRQ1_SHIFT,
3523 + BCMA_MIPS_IPSFLAG_IRQ2_SHIFT,
3524 + BCMA_MIPS_IPSFLAG_IRQ3_SHIFT,
3525 + BCMA_MIPS_IPSFLAG_IRQ4_SHIFT,
3528 +static u32 bcma_core_mips_irqflag(struct bcma_device *dev)
3532 + if (bcma_core_mips_bcm47162a0_quirk(dev))
3533 + return dev->core_index;
3534 + if (bcma_core_mips_bcm5357b0_quirk(dev))
3535 + return dev->core_index;
3536 + flag = bcma_aread32(dev, BCMA_MIPS_OOBSELOUTA30);
3538 + return flag & 0x1F;
3541 +/* Get the MIPS IRQ assignment for a specified device.
3542 + * If unassigned, 0 is returned.
3544 +unsigned int bcma_core_mips_irq(struct bcma_device *dev)
3546 + struct bcma_device *mdev = dev->bus->drv_mips.core;
3550 + irqflag = bcma_core_mips_irqflag(dev);
3552 + for (irq = 1; irq <= 4; irq++)
3553 + if (bcma_read32(mdev, BCMA_MIPS_MIPS74K_INTMASK(irq)) &
3559 +EXPORT_SYMBOL(bcma_core_mips_irq);
3561 +static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq)
3563 + unsigned int oldirq = bcma_core_mips_irq(dev);
3564 + struct bcma_bus *bus = dev->bus;
3565 + struct bcma_device *mdev = bus->drv_mips.core;
3568 + irqflag = bcma_core_mips_irqflag(dev);
3569 + BUG_ON(oldirq == 6);
3571 + dev->irq = irq + 2;
3573 + /* clear the old irq */
3575 + bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0),
3576 + bcma_read32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0)) &
3579 + bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(irq), 0);
3581 + /* assign the new one */
3583 + bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0),
3584 + bcma_read32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0)) |
3587 + u32 oldirqflag = bcma_read32(mdev,
3588 + BCMA_MIPS_MIPS74K_INTMASK(irq));
3590 + struct bcma_device *core;
3592 + /* backplane irq line is in use, find out who uses
3593 + * it and set user to irq 0
3595 + list_for_each_entry_reverse(core, &bus->cores, list) {
3596 + if ((1 << bcma_core_mips_irqflag(core)) ==
3598 + bcma_core_mips_set_irq(core, 0);
3603 + bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(irq),
3607 + pr_info("set_irq: core 0x%04x, irq %d => %d\n",
3608 + dev->id.id, oldirq + 2, irq + 2);
3611 +static void bcma_core_mips_print_irq(struct bcma_device *dev, unsigned int irq)
3614 + static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
3615 + printk(KERN_INFO KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id);
3616 + for (i = 0; i <= 6; i++)
3617 + printk(" %s%s", irq_name[i], i == irq ? "*" : " ");
3621 +static void bcma_core_mips_dump_irq(struct bcma_bus *bus)
3623 + struct bcma_device *core;
3625 + list_for_each_entry_reverse(core, &bus->cores, list) {
3626 + bcma_core_mips_print_irq(core, bcma_core_mips_irq(core));
3630 +u32 bcma_cpu_clock(struct bcma_drv_mips *mcore)
3632 + struct bcma_bus *bus = mcore->core->bus;
3634 + if (bus->drv_cc.capabilities & BCMA_CC_CAP_PMU)
3635 + return bcma_pmu_get_clockcpu(&bus->drv_cc);
3637 + pr_err("No PMU available, need this to get the cpu clock\n");
3640 +EXPORT_SYMBOL(bcma_cpu_clock);
3642 +static void bcma_core_mips_flash_detect(struct bcma_drv_mips *mcore)
3644 + struct bcma_bus *bus = mcore->core->bus;
3646 + switch (bus->drv_cc.capabilities & BCMA_CC_CAP_FLASHT) {
3647 + case BCMA_CC_FLASHT_STSER:
3648 + case BCMA_CC_FLASHT_ATSER:
3649 + pr_err("Serial flash not supported.\n");
3651 + case BCMA_CC_FLASHT_PARA:
3652 + pr_info("found parallel flash.\n");
3653 + bus->drv_cc.pflash.window = 0x1c000000;
3654 + bus->drv_cc.pflash.window_size = 0x02000000;
3656 + if ((bcma_read32(bus->drv_cc.core, BCMA_CC_FLASH_CFG) &
3657 + BCMA_CC_FLASH_CFG_DS) == 0)
3658 + bus->drv_cc.pflash.buswidth = 1;
3660 + bus->drv_cc.pflash.buswidth = 2;
3663 + pr_err("flash not supported.\n");
3667 +void bcma_core_mips_init(struct bcma_drv_mips *mcore)
3669 + struct bcma_bus *bus;
3670 + struct bcma_device *core;
3671 + bus = mcore->core->bus;
3673 + pr_info("Initializing MIPS core...\n");
3675 + if (!mcore->setup_done)
3676 + mcore->assigned_irqs = 1;
3678 + /* Assign IRQs to all cores on the bus */
3679 + list_for_each_entry_reverse(core, &bus->cores, list) {
3684 + mips_irq = bcma_core_mips_irq(core);
3688 + core->irq = mips_irq + 2;
3689 + if (core->irq > 5)
3691 + switch (core->id.id) {
3692 + case BCMA_CORE_PCI:
3693 + case BCMA_CORE_PCIE:
3694 + case BCMA_CORE_ETHERNET:
3695 + case BCMA_CORE_ETHERNET_GBIT:
3696 + case BCMA_CORE_MAC_GBIT:
3697 + case BCMA_CORE_80211:
3698 + case BCMA_CORE_USB20_HOST:
3699 + /* These devices get their own IRQ line if available,
3700 + * the rest goes on IRQ0
3702 + if (mcore->assigned_irqs <= 4)
3703 + bcma_core_mips_set_irq(core,
3704 + mcore->assigned_irqs++);
3708 + pr_info("IRQ reconfiguration done\n");
3709 + bcma_core_mips_dump_irq(bus);
3711 + if (mcore->setup_done)
3714 + bcma_chipco_serial_init(&bus->drv_cc);
3715 + bcma_core_mips_flash_detect(mcore);
3716 + mcore->setup_done = true;
3719 +++ b/drivers/bcma/host_soc.c
3722 + * Broadcom specific AMBA
3723 + * System on Chip (SoC) Host
3725 + * Licensed under the GNU/GPL. See COPYING for details.
3728 +#include "bcma_private.h"
3730 +#include <linux/bcma/bcma.h>
3731 +#include <linux/bcma/bcma_soc.h>
3733 +static u8 bcma_host_soc_read8(struct bcma_device *core, u16 offset)
3735 + return readb(core->io_addr + offset);
3738 +static u16 bcma_host_soc_read16(struct bcma_device *core, u16 offset)
3740 + return readw(core->io_addr + offset);
3743 +static u32 bcma_host_soc_read32(struct bcma_device *core, u16 offset)
3745 + return readl(core->io_addr + offset);
3748 +static void bcma_host_soc_write8(struct bcma_device *core, u16 offset,
3751 + writeb(value, core->io_addr + offset);
3754 +static void bcma_host_soc_write16(struct bcma_device *core, u16 offset,
3757 + writew(value, core->io_addr + offset);
3760 +static void bcma_host_soc_write32(struct bcma_device *core, u16 offset,
3763 + writel(value, core->io_addr + offset);
3766 +#ifdef CONFIG_BCMA_BLOCKIO
3767 +static void bcma_host_soc_block_read(struct bcma_device *core, void *buffer,
3768 + size_t count, u16 offset, u8 reg_width)
3770 + void __iomem *addr = core->io_addr + offset;
3772 + switch (reg_width) {
3773 + case sizeof(u8): {
3777 + *buf = __raw_readb(addr);
3783 + case sizeof(u16): {
3784 + __le16 *buf = buffer;
3786 + WARN_ON(count & 1);
3788 + *buf = (__force __le16)__raw_readw(addr);
3794 + case sizeof(u32): {
3795 + __le32 *buf = buffer;
3797 + WARN_ON(count & 3);
3799 + *buf = (__force __le32)__raw_readl(addr);
3810 +static void bcma_host_soc_block_write(struct bcma_device *core,
3811 + const void *buffer,
3812 + size_t count, u16 offset, u8 reg_width)
3814 + void __iomem *addr = core->io_addr + offset;
3816 + switch (reg_width) {
3817 + case sizeof(u8): {
3818 + const u8 *buf = buffer;
3821 + __raw_writeb(*buf, addr);
3827 + case sizeof(u16): {
3828 + const __le16 *buf = buffer;
3830 + WARN_ON(count & 1);
3832 + __raw_writew((__force u16)(*buf), addr);
3838 + case sizeof(u32): {
3839 + const __le32 *buf = buffer;
3841 + WARN_ON(count & 3);
3843 + __raw_writel((__force u32)(*buf), addr);
3853 +#endif /* CONFIG_BCMA_BLOCKIO */
3855 +static u32 bcma_host_soc_aread32(struct bcma_device *core, u16 offset)
3857 + return readl(core->io_wrap + offset);
3860 +static void bcma_host_soc_awrite32(struct bcma_device *core, u16 offset,
3863 + writel(value, core->io_wrap + offset);
3866 +const struct bcma_host_ops bcma_host_soc_ops = {
3867 + .read8 = bcma_host_soc_read8,
3868 + .read16 = bcma_host_soc_read16,
3869 + .read32 = bcma_host_soc_read32,
3870 + .write8 = bcma_host_soc_write8,
3871 + .write16 = bcma_host_soc_write16,
3872 + .write32 = bcma_host_soc_write32,
3873 +#ifdef CONFIG_BCMA_BLOCKIO
3874 + .block_read = bcma_host_soc_block_read,
3875 + .block_write = bcma_host_soc_block_write,
3877 + .aread32 = bcma_host_soc_aread32,
3878 + .awrite32 = bcma_host_soc_awrite32,
3881 +int __init bcma_host_soc_register(struct bcma_soc *soc)
3883 + struct bcma_bus *bus = &soc->bus;
3886 + /* iomap only first core. We have to read some register on this core
3887 + * to scan the bus.
3889 + bus->mmio = ioremap_nocache(BCMA_ADDR_BASE, BCMA_CORE_SIZE * 1);
3893 + /* Host specific */
3894 + bus->hosttype = BCMA_HOSTTYPE_SOC;
3895 + bus->ops = &bcma_host_soc_ops;
3898 + err = bcma_bus_early_register(bus, &soc->core_cc, &soc->core_mips);
3900 + iounmap(bus->mmio);
3905 +++ b/include/linux/bcma/bcma_driver_mips.h
3907 +#ifndef LINUX_BCMA_DRIVER_MIPS_H_
3908 +#define LINUX_BCMA_DRIVER_MIPS_H_
3910 +#define BCMA_MIPS_IPSFLAG 0x0F08
3911 +/* which sbflags get routed to mips interrupt 1 */
3912 +#define BCMA_MIPS_IPSFLAG_IRQ1 0x0000003F
3913 +#define BCMA_MIPS_IPSFLAG_IRQ1_SHIFT 0
3914 +/* which sbflags get routed to mips interrupt 2 */
3915 +#define BCMA_MIPS_IPSFLAG_IRQ2 0x00003F00
3916 +#define BCMA_MIPS_IPSFLAG_IRQ2_SHIFT 8
3917 +/* which sbflags get routed to mips interrupt 3 */
3918 +#define BCMA_MIPS_IPSFLAG_IRQ3 0x003F0000
3919 +#define BCMA_MIPS_IPSFLAG_IRQ3_SHIFT 16
3920 +/* which sbflags get routed to mips interrupt 4 */
3921 +#define BCMA_MIPS_IPSFLAG_IRQ4 0x3F000000
3922 +#define BCMA_MIPS_IPSFLAG_IRQ4_SHIFT 24
3924 +/* MIPS 74K core registers */
3925 +#define BCMA_MIPS_MIPS74K_CORECTL 0x0000
3926 +#define BCMA_MIPS_MIPS74K_EXCEPTBASE 0x0004
3927 +#define BCMA_MIPS_MIPS74K_BIST 0x000C
3928 +#define BCMA_MIPS_MIPS74K_INTMASK_INT0 0x0014
3929 +#define BCMA_MIPS_MIPS74K_INTMASK(int) \
3930 + ((int) * 4 + BCMA_MIPS_MIPS74K_INTMASK_INT0)
3931 +#define BCMA_MIPS_MIPS74K_NMIMASK 0x002C
3932 +#define BCMA_MIPS_MIPS74K_GPIOSEL 0x0040
3933 +#define BCMA_MIPS_MIPS74K_GPIOOUT 0x0044
3934 +#define BCMA_MIPS_MIPS74K_GPIOEN 0x0048
3935 +#define BCMA_MIPS_MIPS74K_CLKCTLST 0x01E0
3937 +#define BCMA_MIPS_OOBSELOUTA30 0x100
3939 +struct bcma_device;
3941 +struct bcma_drv_mips {
3942 + struct bcma_device *core;
3944 + unsigned int assigned_irqs;
3947 +#ifdef CONFIG_BCMA_DRIVER_MIPS
3948 +extern void bcma_core_mips_init(struct bcma_drv_mips *mcore);
3950 +static inline void bcma_core_mips_init(struct bcma_drv_mips *mcore) { }
3953 +extern u32 bcma_cpu_clock(struct bcma_drv_mips *mcore);
3955 +extern unsigned int bcma_core_mips_irq(struct bcma_device *dev);
3957 +#endif /* LINUX_BCMA_DRIVER_MIPS_H_ */
3959 +++ b/include/linux/bcma/bcma_soc.h
3961 +#ifndef LINUX_BCMA_SOC_H_
3962 +#define LINUX_BCMA_SOC_H_
3964 +#include <linux/bcma/bcma.h>
3967 + struct bcma_bus bus;
3968 + struct bcma_device core_cc;
3969 + struct bcma_device core_mips;
3972 +int __init bcma_host_soc_register(struct bcma_soc *soc);
3974 +int bcma_bus_register(struct bcma_bus *bus);
3976 +#endif /* LINUX_BCMA_SOC_H_ */