brintos

brintos / linux-shallow public Read only

0
0
Text · 1.9 KiB · 9210ff3 Raw
67 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Qualcomm network device configuration4#5 6config NET_VENDOR_QUALCOMM7	bool "Qualcomm devices"8	default y9	help10	  If you have a network (Ethernet) card belonging to this class, say Y.11 12	  Note that the answer to this question doesn't directly affect the13	  kernel: saying N will just cause the configurator to skip all14	  the questions about Qualcomm cards. If you say Y, you will be asked15	  for your specific card in the following questions.16 17if NET_VENDOR_QUALCOMM18 19config QCA700020	tristate21	help22	  This enables support for the Qualcomm Atheros QCA7000.23 24config QCA7000_SPI25	tristate "Qualcomm Atheros QCA7000 SPI support"26	select QCA700027	depends on SPI_MASTER && OF28	help29	  This SPI protocol driver supports the Qualcomm Atheros QCA7000.30 31	  To compile this driver as a module, choose M here. The module32	  will be called qcaspi.33 34config QCA7000_UART35	tristate "Qualcomm Atheros QCA7000 UART support"36	select QCA700037	depends on SERIAL_DEV_BUS && OF38	help39	  This UART protocol driver supports the Qualcomm Atheros QCA7000.40 41	  Currently the driver assumes these device UART settings:42	    Data bits: 843	    Parity: None44	    Stop bits: 145	    Flow control: None46 47	  To compile this driver as a module, choose M here. The module48	  will be called qcauart.49 50config QCOM_EMAC51	tristate "Qualcomm Technologies, Inc. EMAC Gigabit Ethernet support"52	depends on HAS_DMA && HAS_IOMEM53	select CRC3254	select PHYLIB55	select MDIO_DEVRES56	help57	  This driver supports the Qualcomm Technologies, Inc. Gigabit58	  Ethernet Media Access Controller (EMAC). The controller59	  supports IEEE 802.3-2002, half-duplex mode at 10/100 Mb/s,60	  full-duplex mode at 10/100/1000Mb/s, Wake On LAN (WOL) for61	  low power, Receive-Side Scaling (RSS), and IEEE 1588-200862	  Precision Clock Synchronization Protocol.63 64source "drivers/net/ethernet/qualcomm/rmnet/Kconfig"65 66endif # NET_VENDOR_QUALCOMM67