Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1config BCMA_POSSIBLE
2 bool
3 depends on HAS_IOMEM && HAS_DMA
4 default y
5
6menu "Broadcom specific AMBA"
7 depends on BCMA_POSSIBLE
8
9config BCMA
10 tristate "BCMA support"
11 depends on BCMA_POSSIBLE
12 help
13 Bus driver for Broadcom specific Advanced Microcontroller Bus
14 Architecture.
15
16# Support for Block-I/O. SELECT this from the driver that needs it.
17config BCMA_BLOCKIO
18 bool
19 depends on BCMA
20
21config BCMA_HOST_PCI_POSSIBLE
22 bool
23 depends on BCMA && PCI = y
24 default y
25
26config BCMA_HOST_PCI
27 bool "Support for BCMA on PCI-host bus"
28 depends on BCMA_HOST_PCI_POSSIBLE
29 default y
30
31config BCMA_DRIVER_PCI_HOSTMODE
32 bool "Driver for PCI core working in hostmode"
33 depends on BCMA && MIPS && BCMA_HOST_PCI
34 help
35 PCI core hostmode operation (external PCI bus).
36
37config BCMA_HOST_SOC
38 bool
39 depends on BCMA_DRIVER_MIPS
40
41config BCMA_DRIVER_MIPS
42 bool "BCMA Broadcom MIPS core driver"
43 depends on BCMA && MIPS
44 help
45 Driver for the Broadcom MIPS core attached to Broadcom specific
46 Advanced Microcontroller Bus.
47
48 If unsure, say N
49
50config BCMA_SFLASH
51 bool
52 depends on BCMA_DRIVER_MIPS
53 default y
54
55config BCMA_NFLASH
56 bool
57 depends on BCMA_DRIVER_MIPS
58 default y
59
60config BCMA_DRIVER_GMAC_CMN
61 bool "BCMA Broadcom GBIT MAC COMMON core driver"
62 depends on BCMA
63 help
64 Driver for the Broadcom GBIT MAC COMMON core attached to Broadcom
65 specific Advanced Microcontroller Bus.
66
67 If unsure, say N
68
69config BCMA_DRIVER_GPIO
70 bool "BCMA GPIO driver"
71 depends on BCMA && GPIOLIB
72 help
73 Driver to provide access to the GPIO pins of the bcma bus.
74
75 If unsure, say N
76
77config BCMA_DEBUG
78 bool "BCMA debugging"
79 depends on BCMA
80 help
81 This turns on additional debugging messages.
82
83 If unsure, say N
84
85endmenu