• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..16-May-2021-

KconfigH A D16-May-20212.8 KiB11995

MakefileH A D16-May-2021823 1916

READMEH A D16-May-2021956 2015

TODOH A D16-May-202196 43

bcma_private.hH A D16-May-20216.2 KiB216164

core.cH A D16-May-20213.6 KiB157123

driver_chipcommon.cH A D16-May-202110.3 KiB422319

driver_chipcommon_b.cH A D16-May-20211.4 KiB6343

driver_chipcommon_nflash.cH A D16-May-20211.1 KiB4526

driver_chipcommon_pflash.cH A D16-May-20211.1 KiB5032

driver_chipcommon_pmu.cH A D16-May-202119.4 KiB671539

driver_chipcommon_sflash.cH A D16-May-20214.2 KiB166134

driver_gmac_cmn.cH A D16-May-2021265 156

driver_gpio.cH A D16-May-20215.5 KiB233170

driver_mips.cH A D16-May-20219.5 KiB361280

driver_pci.cH A D16-May-20218.2 KiB307227

driver_pci_host.cH A D16-May-202117.4 KiB624450

driver_pcie2.cH A D16-May-20215.6 KiB202140

host_pci.cH A D16-May-20219.8 KiB391303

host_soc.cH A D16-May-20215.5 KiB279216

main.cH A D16-May-202116 KiB699543

scan.cH A D16-May-202113.8 KiB526436

scan.hH A D16-May-20211.7 KiB5848

sprom.cH A D16-May-202120.9 KiB649498

README

1Broadcom introduced new bus as replacement for older SSB. It is based on AMBA,
2however from programming point of view there is nothing AMBA specific we use.
3
4Standard AMBA drivers are platform specific, have hardcoded addresses and use
5AMBA standard fields like CID and PID.
6
7In case of Broadcom's cards every device consists of:
81) Broadcom specific AMBA device. It is put on AMBA bus, but can not be treated
9   as standard AMBA device. Reading it's CID or PID can cause machine lockup.
102) AMBA standard devices called ports or wrappers. They have CIDs (AMBA_CID)
11   and PIDs (0x103BB369), but we do not use that info for anything. One of that
12   devices is used for managing Broadcom specific core.
13
14Addresses of AMBA devices are not hardcoded in driver and have to be read from
15EPROM.
16
17In this situation we decided to introduce separated bus. It can contain up to
1816 devices identified by Broadcom specific fields: manufacturer, id, revision
19and class.
20