1#
2# Broadcom device configuration
3#
4
5config NET_VENDOR_BROADCOM
6	bool "Broadcom devices"
7	default y
8	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
56	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
102	select HWMON
103	select PTP_1588_CLOCK
104	---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
122config 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
131config BGMAC
132	tristate "BCMA bus GBit core support"
133	depends on BCMA_HOST_SOC && HAS_DMA && BCM47XX
134	select PHYLIB
135	---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
141endif # NET_VENDOR_BROADCOM
142