Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 1 | # |
| 2 | # Broadcom device configuration |
| 3 | # |
| 4 | |
| 5 | config NET_VENDOR_BROADCOM |
| 6 | bool "Broadcom devices" |
Jeff Kirsher | 88f0748 | 2011-08-23 01:29:52 -0700 | [diff] [blame] | 7 | default y |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 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 | |
| 19 | if NET_VENDOR_BROADCOM |
| 20 | |
| 21 | config B44 |
| 22 | tristate "Broadcom 440x/47xx ethernet support" |
| 23 | depends on SSB_POSSIBLE && HAS_DMA |
| 24 | select SSB |
| 25 | select MII |
Hauke Mehrtens | 86f4ea6 | 2013-12-20 02:16:10 +0100 | [diff] [blame] | 26 | select PHYLIB |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 27 | ---help--- |
| 28 | If you have a network (Ethernet) controller of this type, say Y |
Paul Gortmaker | 138b15e | 2015-06-21 16:28:02 -0400 | [diff] [blame] | 29 | or M here. |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 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 |
| 35 | config 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 |
| 42 | config B44_PCICORE_AUTOSELECT |
| 43 | bool |
| 44 | depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE |
| 45 | select SSB_DRIVER_PCICORE |
| 46 | default y |
| 47 | |
| 48 | config B44_PCI |
| 49 | bool |
| 50 | depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT |
| 51 | default y |
| 52 | |
| 53 | config BCM63XX_ENET |
| 54 | tristate "Broadcom 63xx internal mac support" |
| 55 | depends on BCM63XX |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 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 | |
Florian Fainelli | bdaa53b | 2014-02-13 16:08:49 -0800 | [diff] [blame] | 62 | config BCMGENET |
| 63 | tristate "Broadcom GENET internal MAC support" |
Florian Fainelli | bdaa53b | 2014-02-13 16:08:49 -0800 | [diff] [blame] | 64 | select MII |
| 65 | select PHYLIB |
Florian Fainelli | d8ced82 | 2014-12-15 09:57:13 -0800 | [diff] [blame] | 66 | select FIXED_PHY |
Florian Fainelli | bdaa53b | 2014-02-13 16:08:49 -0800 | [diff] [blame] | 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 | |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 72 | config BNX2 |
Rasesh Mody | 2e0bf12 | 2015-02-17 19:26:18 -0500 | [diff] [blame] | 73 | tristate "QLogic bnx2 support" |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 74 | depends on PCI |
| 75 | select CRC32 |
| 76 | select FW_LOADER |
| 77 | ---help--- |
Rasesh Mody | 2e0bf12 | 2015-02-17 19:26:18 -0500 | [diff] [blame] | 78 | This driver supports QLogic bnx2 gigabit Ethernet cards. |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 79 | |
| 80 | To compile this driver as a module, choose M here: the module |
| 81 | will be called bnx2. This is recommended. |
| 82 | |
| 83 | config CNIC |
Jitendra Kalsaria | d7afae0 | 2014-06-23 15:10:34 -0400 | [diff] [blame] | 84 | tristate "QLogic CNIC support" |
Anish Bhatt | c99d667 | 2014-09-04 17:12:57 -0700 | [diff] [blame] | 85 | depends on PCI && (IPV6 || IPV6=n) |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 86 | select BNX2 |
| 87 | select UIO |
| 88 | ---help--- |
Rasesh Mody | 2e0bf12 | 2015-02-17 19:26:18 -0500 | [diff] [blame] | 89 | This driver supports offload features of QLogic bnx2 gigabit |
| 90 | Ethernet cards. |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 91 | |
| 92 | To compile this driver as a module, choose M here: the module |
| 93 | will be called cnic. This is recommended. |
| 94 | |
| 95 | config 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 | |
| 108 | config TIGON3 |
| 109 | tristate "Broadcom Tigon3 support" |
| 110 | depends on PCI |
| 111 | select PHYLIB |
Paul Gortmaker | de0a414 | 2012-10-01 11:43:49 -0400 | [diff] [blame] | 112 | select HWMON |
Matt Carlson | be94730 | 2012-12-03 19:36:57 +0000 | [diff] [blame] | 113 | select PTP_1588_CLOCK |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 114 | ---help--- |
| 115 | This driver supports Broadcom Tigon3 based gigabit Ethernet cards. |
| 116 | |
| 117 | To compile this driver as a module, choose M here: the module |
| 118 | will be called tg3. This is recommended. |
| 119 | |
| 120 | config BNX2X |
| 121 | tristate "Broadcom NetXtremeII 10Gb support" |
| 122 | depends on PCI |
Randy Dunlap | f79918a | 2014-08-25 13:11:48 -0700 | [diff] [blame] | 123 | select PTP_1588_CLOCK |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 124 | select FW_LOADER |
| 125 | select ZLIB_INFLATE |
| 126 | select LIBCRC32C |
| 127 | select MDIO |
| 128 | ---help--- |
| 129 | This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards. |
| 130 | To compile this driver as a module, choose M here: the module |
| 131 | will be called bnx2x. This is recommended. |
| 132 | |
Ariel Elior | 6411280 | 2013-01-07 00:50:23 +0000 | [diff] [blame] | 133 | config BNX2X_SRIOV |
| 134 | bool "Broadcom 578xx and 57712 SR-IOV support" |
| 135 | depends on BNX2X && PCI_IOV |
| 136 | default y |
| 137 | ---help--- |
| 138 | This configuration parameter enables Single Root Input Output |
| 139 | Virtualization support in the 578xx and 57712 products. This |
| 140 | allows for virtual function acceleration in virtual environments. |
| 141 | |
Rafał Miłecki | dd4544f | 2013-01-08 20:06:23 +0000 | [diff] [blame] | 142 | config BGMAC |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 143 | tristate |
| 144 | help |
| 145 | This enables the integrated ethernet controller support for many |
| 146 | Broadcom (mostly iProc) SoCs. An appropriate bus interface driver |
| 147 | needs to be enabled to select this. |
| 148 | |
| 149 | config BGMAC_BCMA |
| 150 | tristate "Broadcom iProc GBit BCMA support" |
Arnd Bergmann | 1f820f5 | 2016-01-29 12:39:12 +0100 | [diff] [blame] | 151 | depends on BCMA && BCMA_HOST_SOC |
| 152 | depends on HAS_DMA |
| 153 | depends on BCM47XX || ARCH_BCM_5301X || COMPILE_TEST |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 154 | select BGMAC |
Hauke Mehrtens | 31bd297 | 2013-07-15 13:26:27 +0200 | [diff] [blame] | 155 | select PHYLIB |
Arnd Bergmann | 1f820f5 | 2016-01-29 12:39:12 +0100 | [diff] [blame] | 156 | select FIXED_PHY |
Rafał Miłecki | dd4544f | 2013-01-08 20:06:23 +0000 | [diff] [blame] | 157 | ---help--- |
| 158 | This driver supports GBit MAC and BCM4706 GBit MAC cores on BCMA bus. |
| 159 | They can be found on BCM47xx SoCs and provide gigabit ethernet. |
| 160 | In case of using this driver on BCM4706 it's also requires to enable |
| 161 | BCMA_DRIVER_GMAC_CMN to make it work. |
| 162 | |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 163 | config BGMAC_PLATFORM |
| 164 | tristate "Broadcom iProc GBit platform support" |
| 165 | depends on HAS_DMA |
| 166 | depends on ARCH_BCM_IPROC || COMPILE_TEST |
| 167 | depends on OF |
| 168 | select BGMAC |
| 169 | select PHYLIB |
| 170 | select FIXED_PHY |
| 171 | default ARCH_BCM_IPROC |
| 172 | ---help--- |
| 173 | Say Y here if you want to use the Broadcom iProc Gigabit Ethernet |
| 174 | controller through the generic platform interface |
| 175 | |
Florian Fainelli | a3862db | 2014-04-24 18:08:59 -0700 | [diff] [blame] | 176 | config SYSTEMPORT |
| 177 | tristate "Broadcom SYSTEMPORT internal MAC support" |
| 178 | depends on OF |
| 179 | select MII |
| 180 | select PHYLIB |
Florian Fainelli | 598ea82 | 2014-12-15 09:57:14 -0800 | [diff] [blame] | 181 | select FIXED_PHY |
Florian Fainelli | a3862db | 2014-04-24 18:08:59 -0700 | [diff] [blame] | 182 | help |
| 183 | This driver supports the built-in Ethernet MACs found in the |
| 184 | Broadcom BCM7xxx Set Top Box family chipset using an internal |
| 185 | Ethernet switch. |
| 186 | |
Michael Chan | c0c050c | 2015-10-22 16:01:17 -0400 | [diff] [blame] | 187 | config BNXT |
| 188 | tristate "Broadcom NetXtreme-C/E support" |
| 189 | depends on PCI |
| 190 | select FW_LOADER |
| 191 | select LIBCRC32C |
| 192 | ---help--- |
| 193 | This driver supports Broadcom NetXtreme-C/E 10/25/40/50 gigabit |
| 194 | Ethernet cards. To compile this driver as a module, choose M here: |
| 195 | the module will be called bnxt_en. This is recommended. |
| 196 | |
| 197 | config BNXT_SRIOV |
| 198 | bool "Broadcom NetXtreme-C/E SR-IOV support" |
| 199 | depends on BNXT && PCI_IOV |
| 200 | default y |
| 201 | ---help--- |
| 202 | This configuration parameter enables Single Root Input Output |
| 203 | Virtualization support in the NetXtreme-C/E products. This |
| 204 | allows for virtual function acceleration in virtual environments. |
| 205 | |
Michael Chan | 7df4ae9 | 2016-12-02 21:17:17 -0500 | [diff] [blame^] | 206 | config BNXT_DCB |
| 207 | bool "Data Center Bridging (DCB) Support" |
| 208 | default n |
| 209 | depends on BNXT && DCB |
| 210 | ---help--- |
| 211 | Say Y here if you want to use Data Center Bridging (DCB) in the |
| 212 | driver. |
| 213 | |
| 214 | If unsure, say N. |
| 215 | |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 216 | endif # NET_VENDOR_BROADCOM |