Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # Qualcomm network device configuration
0004 #
0005 
0006 config NET_VENDOR_QUALCOMM
0007         bool "Qualcomm devices"
0008         default y
0009         help
0010           If you have a network (Ethernet) card belonging to this class, say Y.
0011 
0012           Note that the answer to this question doesn't directly affect the
0013           kernel: saying N will just cause the configurator to skip all
0014           the questions about Qualcomm cards. If you say Y, you will be asked
0015           for your specific card in the following questions.
0016 
0017 if NET_VENDOR_QUALCOMM
0018 
0019 config QCA7000
0020         tristate
0021         help
0022           This enables support for the Qualcomm Atheros QCA7000.
0023 
0024 config QCA7000_SPI
0025         tristate "Qualcomm Atheros QCA7000 SPI support"
0026         select QCA7000
0027         depends on SPI_MASTER && OF
0028         help
0029           This SPI protocol driver supports the Qualcomm Atheros QCA7000.
0030 
0031           To compile this driver as a module, choose M here. The module
0032           will be called qcaspi.
0033 
0034 config QCA7000_UART
0035         tristate "Qualcomm Atheros QCA7000 UART support"
0036         select QCA7000
0037         depends on SERIAL_DEV_BUS && OF
0038         help
0039           This UART protocol driver supports the Qualcomm Atheros QCA7000.
0040 
0041           Currently the driver assumes these device UART settings:
0042             Data bits: 8
0043             Parity: None
0044             Stop bits: 1
0045             Flow control: None
0046 
0047           To compile this driver as a module, choose M here. The module
0048           will be called qcauart.
0049 
0050 config QCOM_EMAC
0051         tristate "Qualcomm Technologies, Inc. EMAC Gigabit Ethernet support"
0052         depends on HAS_DMA && HAS_IOMEM
0053         select CRC32
0054         select PHYLIB
0055         help
0056           This driver supports the Qualcomm Technologies, Inc. Gigabit
0057           Ethernet Media Access Controller (EMAC). The controller
0058           supports IEEE 802.3-2002, half-duplex mode at 10/100 Mb/s,
0059           full-duplex mode at 10/100/1000Mb/s, Wake On LAN (WOL) for
0060           low power, Receive-Side Scaling (RSS), and IEEE 1588-2008
0061           Precision Clock Synchronization Protocol.
0062 
0063 source "drivers/net/ethernet/qualcomm/rmnet/Kconfig"
0064 
0065 endif # NET_VENDOR_QUALCOMM