brintos

brintos / linux-shallow public Read only

0
0
Text · 2.3 KiB · bec5cdf Raw
92 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Atheros device configuration4#5 6config NET_VENDOR_ATHEROS7	bool "Atheros devices"8	default y9	depends on PCI || ATH79 || COMPILE_TEST10	help11	  If you have a network (Ethernet) card belonging to this class, say Y.12 13	  Note that the answer to this question doesn't directly affect the14	  kernel: saying N will just cause the configurator to skip all15	  the questions about Atheros devices. If you say Y, you will be asked16	  for your specific card in the following questions.17 18if NET_VENDOR_ATHEROS19 20config AG71XX21	tristate "Atheros AR7XXX/AR9XXX built-in ethernet mac support"22	depends on ATH79 || COMPILE_TEST23	select PHYLINK24	imply NET_SELFTESTS25	help26	  If you wish to compile a kernel for AR7XXX/91XXX and enable27	  ethernet support, then you should always answer Y to this.28 29config ATL230	tristate "Atheros L2 Fast Ethernet support"31	depends on PCI32	select CRC3233	select MII34	help35	  This driver supports the Atheros L2 fast ethernet adapter.36 37	  To compile this driver as a module, choose M here.  The module38	  will be called atl2.39 40config ATL141	tristate "Atheros/Attansic L1 Gigabit Ethernet support"42	depends on PCI43	select CRC3244	select MII45	help46	  This driver supports the Atheros/Attansic L1 gigabit ethernet47	  adapter.48 49	  To compile this driver as a module, choose M here.  The module50	  will be called atl1.51 52config ATL1E53	tristate "Atheros L1E Gigabit Ethernet support"54	depends on PCI55	select CRC3256	select MII57	help58	  This driver supports the Atheros L1E gigabit ethernet adapter.59 60	  To compile this driver as a module, choose M here.  The module61	  will be called atl1e.62 63config ATL1C64	tristate "Atheros L1C Gigabit Ethernet support"65	depends on PCI66	select CRC3267	select MII68	help69	  This driver supports the Atheros L1C gigabit ethernet adapter.70 71	  To compile this driver as a module, choose M here.  The module72	  will be called atl1c.73 74config ALX75	tristate "Qualcomm Atheros AR816x/AR817x support"76	depends on PCI77	select CRC3278	select MDIO79	help80	  This driver supports the Qualcomm Atheros L1F ethernet adapter,81	  i.e. the following chipsets:82 83	  1969:1091 - AR8161 Gigabit Ethernet84	  1969:1090 - AR8162 Fast Ethernet85	  1969:10A1 - AR8171 Gigabit Ethernet86	  1969:10A0 - AR8172 Fast Ethernet87 88	  To compile this driver as a module, choose M here.  The module89	  will be called alx.90 91endif # NET_VENDOR_ATHEROS92