Kconfig 1.8 KB

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