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 select PHYLIB 27 ---help--- 28 If you have a network (Ethernet) controller of this type, say Y 29 or M here. 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 BCMGENET 63 tristate "Broadcom GENET internal MAC support" 64 select MII 65 select PHYLIB 66 select FIXED_PHY 67 select BCM7XXX_PHY 68 help 69 This driver supports the built-in Ethernet MACs found in the 70 Broadcom BCM7xxx Set Top Box family chipset. 71 72config BNX2 73 tristate "QLogic bnx2 support" 74 depends on PCI 75 select CRC32 76 select FW_LOADER 77 ---help--- 78 This driver supports QLogic bnx2 gigabit Ethernet cards. 79 80 To compile this driver as a module, choose M here: the module 81 will be called bnx2. This is recommended. 82 83config CNIC 84 tristate "QLogic CNIC support" 85 depends on PCI && (IPV6 || IPV6=n) 86 select BNX2 87 select UIO 88 ---help--- 89 This driver supports offload features of QLogic bnx2 gigabit 90 Ethernet cards. 91 92 To compile this driver as a module, choose M here: the module 93 will be called cnic. This is recommended. 94 95config SB1250_MAC 96 tristate "SB1250 Gigabit Ethernet support" 97 depends on SIBYTE_SB1xxx_SOC 98 select PHYLIB 99 ---help--- 100 This driver supports Gigabit Ethernet interfaces based on the 101 Broadcom SiByte family of System-On-a-Chip parts. They include 102 the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455 103 and BCM1480 chips. 104 105 To compile this driver as a module, choose M here: the module 106 will be called sb1250-mac. 107 108config TIGON3 109 tristate "Broadcom Tigon3 support" 110 depends on PCI 111 select PHYLIB 112 imply PTP_1588_CLOCK 113 ---help--- 114 This driver supports Broadcom Tigon3 based gigabit Ethernet cards. 115 116 To compile this driver as a module, choose M here: the module 117 will be called tg3. This is recommended. 118 119config TIGON3_HWMON 120 bool "Broadcom Tigon3 HWMON support" 121 default y 122 depends on TIGON3 && HWMON && !(TIGON3=y && HWMON=m) 123 ---help--- 124 Say Y if you want to expose the thermal sensor on Tigon3 devices. 125 126config BNX2X 127 tristate "Broadcom NetXtremeII 10Gb support" 128 depends on PCI 129 imply PTP_1588_CLOCK 130 select FW_LOADER 131 select ZLIB_INFLATE 132 select LIBCRC32C 133 select MDIO 134 ---help--- 135 This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards. 136 To compile this driver as a module, choose M here: the module 137 will be called bnx2x. This is recommended. 138 139config BNX2X_SRIOV 140 bool "Broadcom 578xx and 57712 SR-IOV support" 141 depends on BNX2X && PCI_IOV 142 default y 143 ---help--- 144 This configuration parameter enables Single Root Input Output 145 Virtualization support in the 578xx and 57712 products. This 146 allows for virtual function acceleration in virtual environments. 147 148config BGMAC 149 tristate 150 help 151 This enables the integrated ethernet controller support for many 152 Broadcom (mostly iProc) SoCs. An appropriate bus interface driver 153 needs to be enabled to select this. 154 155config BGMAC_BCMA 156 tristate "Broadcom iProc GBit BCMA support" 157 depends on BCMA && BCMA_HOST_SOC 158 depends on HAS_DMA 159 depends on BCM47XX || ARCH_BCM_5301X || COMPILE_TEST 160 select BGMAC 161 select PHYLIB 162 select FIXED_PHY 163 ---help--- 164 This driver supports GBit MAC and BCM4706 GBit MAC cores on BCMA bus. 165 They can be found on BCM47xx SoCs and provide gigabit ethernet. 166 In case of using this driver on BCM4706 it's also requires to enable 167 BCMA_DRIVER_GMAC_CMN to make it work. 168 169config BGMAC_PLATFORM 170 tristate "Broadcom iProc GBit platform support" 171 depends on HAS_DMA 172 depends on ARCH_BCM_IPROC || COMPILE_TEST 173 depends on OF 174 select BGMAC 175 select PHYLIB 176 select FIXED_PHY 177 default ARCH_BCM_IPROC 178 ---help--- 179 Say Y here if you want to use the Broadcom iProc Gigabit Ethernet 180 controller through the generic platform interface 181 182config SYSTEMPORT 183 tristate "Broadcom SYSTEMPORT internal MAC support" 184 depends on OF 185 select MII 186 select PHYLIB 187 select FIXED_PHY 188 help 189 This driver supports the built-in Ethernet MACs found in the 190 Broadcom BCM7xxx Set Top Box family chipset using an internal 191 Ethernet switch. 192 193config BNXT 194 tristate "Broadcom NetXtreme-C/E support" 195 depends on PCI 196 select FW_LOADER 197 select LIBCRC32C 198 ---help--- 199 This driver supports Broadcom NetXtreme-C/E 10/25/40/50 gigabit 200 Ethernet cards. To compile this driver as a module, choose M here: 201 the module will be called bnxt_en. This is recommended. 202 203config BNXT_SRIOV 204 bool "Broadcom NetXtreme-C/E SR-IOV support" 205 depends on BNXT && PCI_IOV 206 default y 207 ---help--- 208 This configuration parameter enables Single Root Input Output 209 Virtualization support in the NetXtreme-C/E products. This 210 allows for virtual function acceleration in virtual environments. 211 212config BNXT_DCB 213 bool "Data Center Bridging (DCB) Support" 214 default n 215 depends on BNXT && DCB 216 ---help--- 217 Say Y here if you want to use Data Center Bridging (DCB) in the 218 driver. 219 220 If unsure, say N. 221 222endif # NET_VENDOR_BROADCOM 223