271 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Broadcom device configuration4#5 6config NET_VENDOR_BROADCOM7 bool "Broadcom devices"8 default y9 depends on (SSB_POSSIBLE && HAS_DMA) || PCI || BCM63XX || \10 SIBYTE_SB1xxx_SOC11 help12 If you have a network (Ethernet) chipset belonging to this class,13 say Y.14 15 Note that the answer to this question does not directly affect16 the kernel: saying N will just cause the configurator to skip all17 the questions regarding Broadcom chipsets. If you say Y, you will18 be asked for your specific chipset/driver in the following questions.19 20if NET_VENDOR_BROADCOM21 22config B4423 tristate "Broadcom 440x/47xx ethernet support"24 depends on SSB_POSSIBLE && HAS_DMA25 select SSB26 select MII27 select PHYLIB28 help29 If you have a network (Ethernet) controller of this type, say Y30 or M here.31 32 To compile this driver as a module, choose M here. The module33 will be called b44.34 35# Auto-select SSB PCI-HOST support, if possible36config B44_PCI_AUTOSELECT37 bool38 depends on B44 && SSB_PCIHOST_POSSIBLE39 select SSB_PCIHOST40 default y41 42# Auto-select SSB PCICORE driver, if possible43config B44_PCICORE_AUTOSELECT44 bool45 depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE46 select SSB_DRIVER_PCICORE47 default y48 49config B44_PCI50 bool51 depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT52 default y53 54config BCM4908_ENET55 tristate "Broadcom BCM4908 internal mac support"56 depends on ARCH_BCMBCA || COMPILE_TEST57 default y if ARCH_BCMBCA58 help59 This driver supports Ethernet controller integrated into Broadcom60 BCM4908 family SoCs.61 62config BCM63XX_ENET63 tristate "Broadcom 63xx internal mac support"64 depends on BCM63XX65 select MII66 select PHYLIB67 help68 This driver supports the ethernet MACs in the Broadcom 63xx69 MIPS chipset family (BCM63XX).70 71config BCMGENET72 tristate "Broadcom GENET internal MAC support"73 depends on HAS_IOMEM74 depends on PTP_1588_CLOCK_OPTIONAL || !ARCH_BCM283575 select MII76 select PHYLIB77 select FIXED_PHY78 select BCM7XXX_PHY79 select MDIO_BCM_UNIMAC80 select DIMLIB81 select BROADCOM_PHY if ARCH_BCM283582 help83 This driver supports the built-in Ethernet MACs found in the84 Broadcom BCM7xxx Set Top Box family chipset.85 86config BNX287 tristate "QLogic bnx2 support"88 depends on PCI89 select CRC3290 select FW_LOADER91 help92 This driver supports QLogic bnx2 gigabit Ethernet cards.93 94 To compile this driver as a module, choose M here: the module95 will be called bnx2. This is recommended.96 97config CNIC98 tristate "QLogic CNIC support"99 depends on PCI && (IPV6 || IPV6=n)100 depends on MMU101 select BNX2102 select UIO103 help104 This driver supports offload features of QLogic bnx2 gigabit105 Ethernet cards.106 107 To compile this driver as a module, choose M here: the module108 will be called cnic. This is recommended.109 110config SB1250_MAC111 tristate "SB1250 Gigabit Ethernet support"112 depends on SIBYTE_SB1xxx_SOC113 select PHYLIB114 help115 This driver supports Gigabit Ethernet interfaces based on the116 Broadcom SiByte family of System-On-a-Chip parts. They include117 the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455118 and BCM1480 chips.119 120 To compile this driver as a module, choose M here: the module121 will be called sb1250-mac.122 123config TIGON3124 tristate "Broadcom Tigon3 support"125 depends on PCI126 depends on PTP_1588_CLOCK_OPTIONAL127 select PHYLIB128 help129 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.130 131 To compile this driver as a module, choose M here: the module132 will be called tg3. This is recommended.133 134config TIGON3_HWMON135 bool "Broadcom Tigon3 HWMON support"136 default y137 depends on TIGON3 && HWMON && !(TIGON3=y && HWMON=m)138 help139 Say Y if you want to expose the thermal sensor on Tigon3 devices.140 141config BNX2X142 tristate "Broadcom NetXtremeII 10Gb support"143 depends on PCI144 depends on PTP_1588_CLOCK_OPTIONAL145 select FW_LOADER146 select ZLIB_INFLATE147 select LIBCRC32C148 select MDIO149 help150 This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.151 To compile this driver as a module, choose M here: the module152 will be called bnx2x. This is recommended.153 154config BNX2X_SRIOV155 bool "Broadcom 578xx and 57712 SR-IOV support"156 depends on BNX2X && PCI_IOV157 default y158 help159 This configuration parameter enables Single Root Input Output160 Virtualization support in the 578xx and 57712 products. This161 allows for virtual function acceleration in virtual environments.162 163config BGMAC164 tristate165 help166 This enables the integrated ethernet controller support for many167 Broadcom (mostly iProc) SoCs. An appropriate bus interface driver168 needs to be enabled to select this.169 170config BGMAC_BCMA171 tristate "Broadcom iProc GBit BCMA support"172 depends on BCMA && BCMA_HOST_SOC173 depends on BCM47XX || ARCH_BCM_5301X || COMPILE_TEST174 select BGMAC175 select PHYLIB176 select FIXED_PHY177 help178 This driver supports GBit MAC and BCM4706 GBit MAC cores on BCMA bus.179 They can be found on BCM47xx SoCs and provide gigabit ethernet.180 In case of using this driver on BCM4706 it's also requires to enable181 BCMA_DRIVER_GMAC_CMN to make it work.182 183config BGMAC_PLATFORM184 tristate "Broadcom iProc GBit platform support"185 depends on ARCH_BCM_IPROC || COMPILE_TEST186 select BGMAC187 select PHYLIB188 select FIXED_PHY189 default ARCH_BCM_IPROC190 help191 Say Y here if you want to use the Broadcom iProc Gigabit Ethernet192 controller through the generic platform interface193 194config SYSTEMPORT195 tristate "Broadcom SYSTEMPORT internal MAC support"196 depends on HAS_IOMEM197 depends on NET_DSA || !NET_DSA198 select MII199 select PHYLIB200 select FIXED_PHY201 select DIMLIB202 help203 This driver supports the built-in Ethernet MACs found in the204 Broadcom BCM7xxx Set Top Box family chipset using an internal205 Ethernet switch.206 207config BNXT208 tristate "Broadcom NetXtreme-C/E support"209 depends on PCI210 depends on PTP_1588_CLOCK_OPTIONAL211 select FW_LOADER212 select LIBCRC32C213 select NET_DEVLINK214 select PAGE_POOL215 select DIMLIB216 select AUXILIARY_BUS217 help218 This driver supports Broadcom NetXtreme-C/E 10/25/40/50 gigabit219 Ethernet cards. To compile this driver as a module, choose M here:220 the module will be called bnxt_en. This is recommended.221 222config BNXT_SRIOV223 bool "Broadcom NetXtreme-C/E SR-IOV support"224 depends on BNXT && PCI_IOV225 default y226 help227 This configuration parameter enables Single Root Input Output228 Virtualization support in the NetXtreme-C/E products. This229 allows for virtual function acceleration in virtual environments.230 231config BNXT_FLOWER_OFFLOAD232 bool "TC Flower offload support for NetXtreme-C/E"233 depends on BNXT234 default y235 help236 This configuration parameter enables TC Flower packet classifier237 offload for eswitch. This option enables SR-IOV switchdev eswitch238 offload.239 240config BNXT_DCB241 bool "Data Center Bridging (DCB) Support"242 default n243 depends on BNXT && DCB244 help245 Say Y here if you want to use Data Center Bridging (DCB) in the246 driver.247 248 If unsure, say N.249 250config BNXT_HWMON251 bool "Broadcom NetXtreme-C/E HWMON support"252 default y253 depends on BNXT && HWMON && !(BNXT=y && HWMON=m)254 help255 Say Y if you want to expose the thermal sensor data on NetXtreme-C/E256 devices, via the hwmon sysfs interface.257 258config BCMASP259 tristate "Broadcom ASP 2.0 Ethernet support"260 depends on ARCH_BRCMSTB || COMPILE_TEST261 default ARCH_BRCMSTB262 depends on OF263 select MII264 select PHYLIB265 select MDIO_BCM_UNIMAC266 help267 This configuration enables the Broadcom ASP 2.0 Ethernet controller268 driver which is present in Broadcom STB SoCs such as 72165.269 270endif # NET_VENDOR_BROADCOM271