linux/drivers/bcma
Hauke Mehrtens 71783576b5 bcma: get IRQ numbers from dt
It is not possible to auto detect the irq numbers used by the cores on
an arm SoC. If bcma was registered with device tree it will search for
some device tree nodes with the irq number and add it to the core
configuration.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2014-11-11 16:31:11 -05:00
..
Kconfig
Makefile bcma: add support for chipcommon B core 2014-09-09 15:33:05 -04:00
README
TODO
bcma_private.h bcma: fill core details for every device 2014-10-27 14:16:13 -04:00
core.c
driver_chipcommon.c bcma: make it possible to specify a IRQ num in bcma_core_irq() 2014-11-11 16:31:11 -05:00
driver_chipcommon_b.c bcma: add support for chipcommon B core 2014-09-09 15:33:05 -04:00
driver_chipcommon_nflash.c
driver_chipcommon_pmu.c bcma: add support for BCM43131 that was found in Tenda W311E 2014-07-29 10:32:57 -04:00
driver_chipcommon_sflash.c
driver_gmac_cmn.c
driver_gpio.c bcma: make it possible to specify a IRQ num in bcma_core_irq() 2014-11-11 16:31:11 -05:00
driver_mips.c bcma: make it possible to specify a IRQ num in bcma_core_irq() 2014-11-11 16:31:11 -05:00
driver_pci.c
driver_pci_host.c bcma: make it possible to specify a IRQ num in bcma_core_irq() 2014-11-11 16:31:11 -05:00
driver_pcie2.c bcma: add driver for PCIe Gen 2 core 2014-07-07 16:32:16 -04:00
host_pci.c bcma: move bus struct setup into early part of host specific code 2014-09-09 15:27:18 -04:00
host_soc.c bcma: register bcma as device tree driver 2014-09-30 13:17:14 -04:00
main.c bcma: get IRQ numbers from dt 2014-11-11 16:31:11 -05:00
scan.c bcma: fill core details for every device 2014-10-27 14:16:13 -04:00
scan.h
sprom.c bcma: add support for BCM43131 that was found in Tenda W311E 2014-07-29 10:32:57 -04:00

README

Broadcom introduced new bus as replacement for older SSB. It is based on AMBA,
however from programming point of view there is nothing AMBA specific we use.

Standard AMBA drivers are platform specific, have hardcoded addresses and use
AMBA standard fields like CID and PID.

In case of Broadcom's cards every device consists of:
1) Broadcom specific AMBA device. It is put on AMBA bus, but can not be treated
   as standard AMBA device. Reading it's CID or PID can cause machine lockup.
2) AMBA standard devices called ports or wrappers. They have CIDs (AMBA_CID)
   and PIDs (0x103BB369), but we do not use that info for anything. One of that
   devices is used for managing Broadcom specific core.

Addresses of AMBA devices are not hardcoded in driver and have to be read from
EPROM.

In this situation we decided to introduce separated bus. It can contain up to
16 devices identified by Broadcom specific fields: manufacturer, id, revision
and class.