Loading...
Note: File does not exist in v3.1.
1#
2# Qualcomm network device configuration
3#
4
5config NET_VENDOR_QUALCOMM
6 bool "Qualcomm devices"
7 default y
8 ---help---
9 If you have a network (Ethernet) card belonging to this class, say Y.
10
11 Note that the answer to this question doesn't directly affect the
12 kernel: saying N will just cause the configurator to skip all
13 the questions about Qualcomm cards. If you say Y, you will be asked
14 for your specific card in the following questions.
15
16if NET_VENDOR_QUALCOMM
17
18config QCA7000
19 tristate
20 help
21 This enables support for the Qualcomm Atheros QCA7000.
22
23config QCA7000_SPI
24 tristate "Qualcomm Atheros QCA7000 SPI support"
25 select QCA7000
26 depends on SPI_MASTER && OF
27 ---help---
28 This SPI protocol driver supports the Qualcomm Atheros QCA7000.
29
30 To compile this driver as a module, choose M here. The module
31 will be called qcaspi.
32
33config QCA7000_UART
34 tristate "Qualcomm Atheros QCA7000 UART support"
35 select QCA7000
36 depends on SERIAL_DEV_BUS && OF
37 ---help---
38 This UART protocol driver supports the Qualcomm Atheros QCA7000.
39
40 Currently the driver assumes these device UART settings:
41 Data bits: 8
42 Parity: None
43 Stop bits: 1
44 Flow control: None
45
46 To compile this driver as a module, choose M here. The module
47 will be called qcauart.
48
49config QCOM_EMAC
50 tristate "Qualcomm Technologies, Inc. EMAC Gigabit Ethernet support"
51 depends on HAS_DMA && HAS_IOMEM
52 select CRC32
53 select PHYLIB
54 ---help---
55 This driver supports the Qualcomm Technologies, Inc. Gigabit
56 Ethernet Media Access Controller (EMAC). The controller
57 supports IEEE 802.3-2002, half-duplex mode at 10/100 Mb/s,
58 full-duplex mode at 10/100/1000Mb/s, Wake On LAN (WOL) for
59 low power, Receive-Side Scaling (RSS), and IEEE 1588-2008
60 Precision Clock Synchronization Protocol.
61
62source "drivers/net/ethernet/qualcomm/rmnet/Kconfig"
63
64endif # NET_VENDOR_QUALCOMM