Kconfig 1.9 KB

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