The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/drivers/bcma/

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

Name Size Last modified (GMT) Description
Back Parent directory 2013-02-02 13:04:39
File Kconfig 1695 bytes 2013-02-02 13:01:41
File Makefile 623 bytes 2012-12-25 01:42:39
File README 956 bytes 2011-08-10 17:02:49
File TODO 96 bytes 2011-08-10 17:02:49
C file bcma_private.h 2885 bytes 2013-02-02 13:01:41
C file core.c 3021 bytes 2012-12-25 01:42:39
C file driver_chipcommon.c 8695 bytes 2012-12-25 01:42:39
C file driver_chipcommon_nflash.c 1079 bytes 2012-12-25 01:42:39
C file driver_chipcommon_pmu.c 15649 bytes 2012-12-25 01:42:39
C file driver_chipcommon_sflash.c 4247 bytes 2013-02-02 13:01:41
C file driver_gmac_cmn.c 265 bytes 2013-02-02 13:01:41
C file driver_gpio.c 2495 bytes 2012-12-25 01:42:39
C file driver_mips.c 6911 bytes 2012-12-25 01:42:39
C file driver_pci.c 7692 bytes 2013-02-02 13:01:41
C file driver_pci_host.c 17209 bytes 2013-02-02 13:01:41
C file host_pci.c 7529 bytes 2013-02-02 13:01:41
C file host_soc.c 3683 bytes 2012-12-25 01:42:39
C file main.c 11366 bytes 2013-02-02 13:01:41
C file scan.c 14485 bytes 2012-12-25 01:42:39
C file scan.h 1696 bytes 2012-12-25 01:42:39
C file sprom.c 20402 bytes 2012-12-25 01:42:39

    1 Broadcom introduced new bus as replacement for older SSB. It is based on AMBA,
    2 however from programming point of view there is nothing AMBA specific we use.
    3 
    4 Standard AMBA drivers are platform specific, have hardcoded addresses and use
    5 AMBA standard fields like CID and PID.
    6 
    7 In case of Broadcom's cards every device consists of:
    8 1) 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.
   10 2) 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 
   14 Addresses of AMBA devices are not hardcoded in driver and have to be read from
   15 EPROM.
   16 
   17 In this situation we decided to introduce separated bus. It can contain up to
   18 16 devices identified by Broadcom specific fields: manufacturer, id, revision
   19 and class.

[ source navigation ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.