blob: 52c96036dcc41ca5174f97b52c633126c8aea3cf [file] [log] [blame]
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001#
2# Broadcom device configuration
3#
4
5config NET_VENDOR_BROADCOM
6 bool "Broadcom devices"
Jeff Kirsher88f07482011-08-23 01:29:52 -07007 default y
Jeff Kirsheradfc5212011-04-07 06:03:04 -07008 depends on (SSB_POSSIBLE && HAS_DMA) || PCI || BCM63XX || \
9 SIBYTE_SB1xxx_SOC
10 ---help---
11 If you have a network (Ethernet) chipset belonging to this class,
12 say Y.
13
14 Note that the answer to this question does not directly affect
15 the kernel: saying N will just case the configurator to skip all
16 the questions regarding AMD chipsets. If you say Y, you will be asked
17 for your specific chipset/driver in the following questions.
18
19if NET_VENDOR_BROADCOM
20
21config B44
22 tristate "Broadcom 440x/47xx ethernet support"
23 depends on SSB_POSSIBLE && HAS_DMA
24 select SSB
25 select MII
26 ---help---
27 If you have a network (Ethernet) controller of this type, say Y
28 or M and read the Ethernet-HOWTO, available from
29 <http://www.tldp.org/docs.html#howto>.
30
31 To compile this driver as a module, choose M here. The module
32 will be called b44.
33
34# Auto-select SSB PCI-HOST support, if possible
35config B44_PCI_AUTOSELECT
36 bool
37 depends on B44 && SSB_PCIHOST_POSSIBLE
38 select SSB_PCIHOST
39 default y
40
41# Auto-select SSB PCICORE driver, if possible
42config B44_PCICORE_AUTOSELECT
43 bool
44 depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE
45 select SSB_DRIVER_PCICORE
46 default y
47
48config B44_PCI
49 bool
50 depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT
51 default y
52
53config BCM63XX_ENET
54 tristate "Broadcom 63xx internal mac support"
55 depends on BCM63XX
Jeff Kirsheradfc5212011-04-07 06:03:04 -070056 select MII
57 select PHYLIB
58 help
59 This driver supports the ethernet MACs in the Broadcom 63xx
60 MIPS chipset family (BCM63XX).
61
62config BNX2
63 tristate "Broadcom NetXtremeII support"
64 depends on PCI
65 select CRC32
66 select FW_LOADER
67 ---help---
68 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
69
70 To compile this driver as a module, choose M here: the module
71 will be called bnx2. This is recommended.
72
73config CNIC
74 tristate "Broadcom CNIC support"
75 depends on PCI
76 select BNX2
77 select UIO
78 ---help---
79 This driver supports offload features of Broadcom NetXtremeII
80 gigabit Ethernet cards.
81
82 To compile this driver as a module, choose M here: the module
83 will be called cnic. This is recommended.
84
85config SB1250_MAC
86 tristate "SB1250 Gigabit Ethernet support"
87 depends on SIBYTE_SB1xxx_SOC
88 select PHYLIB
89 ---help---
90 This driver supports Gigabit Ethernet interfaces based on the
91 Broadcom SiByte family of System-On-a-Chip parts. They include
92 the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455
93 and BCM1480 chips.
94
95 To compile this driver as a module, choose M here: the module
96 will be called sb1250-mac.
97
98config TIGON3
99 tristate "Broadcom Tigon3 support"
100 depends on PCI
101 select PHYLIB
Paul Gortmakerde0a4142012-10-01 11:43:49 -0400102 select HWMON
Matt Carlsonbe947302012-12-03 19:36:57 +0000103 select PTP_1588_CLOCK
Jeff Kirsheradfc5212011-04-07 06:03:04 -0700104 ---help---
105 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
106
107 To compile this driver as a module, choose M here: the module
108 will be called tg3. This is recommended.
109
110config BNX2X
111 tristate "Broadcom NetXtremeII 10Gb support"
112 depends on PCI
113 select FW_LOADER
114 select ZLIB_INFLATE
115 select LIBCRC32C
116 select MDIO
117 ---help---
118 This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
119 To compile this driver as a module, choose M here: the module
120 will be called bnx2x. This is recommended.
121
Ariel Elior64112802013-01-07 00:50:23 +0000122config BNX2X_SRIOV
123 bool "Broadcom 578xx and 57712 SR-IOV support"
124 depends on BNX2X && PCI_IOV
125 default y
126 ---help---
127 This configuration parameter enables Single Root Input Output
128 Virtualization support in the 578xx and 57712 products. This
129 allows for virtual function acceleration in virtual environments.
130
Rafał Miłeckidd4544f2013-01-08 20:06:23 +0000131config BGMAC
132 tristate "BCMA bus GBit core support"
133 depends on BCMA_HOST_SOC && HAS_DMA
Hauke Mehrtens31bd2972013-07-15 13:26:27 +0200134 select PHYLIB
Rafał Miłeckidd4544f2013-01-08 20:06:23 +0000135 ---help---
136 This driver supports GBit MAC and BCM4706 GBit MAC cores on BCMA bus.
137 They can be found on BCM47xx SoCs and provide gigabit ethernet.
138 In case of using this driver on BCM4706 it's also requires to enable
139 BCMA_DRIVER_GMAC_CMN to make it work.
140
Jeff Kirsheradfc5212011-04-07 06:03:04 -0700141endif # NET_VENDOR_BROADCOM