Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #
  2. # GCT GDM72xx WiMAX driver configuration
  3. #
  4. menuconfig WIMAX_GDM72XX
  5. tristate "GCT GDM72xx WiMAX support"
  6. depends on NET && (USB || MMC)
  7. help
  8. Support a WiMAX module based on the GCT GDM72xx WiMAX chip.
  9. if WIMAX_GDM72XX
  10. config WIMAX_GDM72XX_QOS
  11. bool "Enable QoS support"
  12. default n
  13. help
  14. Enable Quality of Service support based on the data protocol of
  15. transmitting packets.
  16. config WIMAX_GDM72XX_K_MODE
  17. bool "Enable K mode"
  18. default n
  19. help
  20. Enable support for proprietary functions for KT (Korea Telecom).
  21. config WIMAX_GDM72XX_WIMAX2
  22. bool "Enable WiMAX2 support"
  23. default n
  24. help
  25. Enable support for transmitting multiple packets (packet
  26. aggregation) from the WiMAX module to the host processor.
  27. choice
  28. prompt "Select interface"
  29. config WIMAX_GDM72XX_USB
  30. bool "USB interface"
  31. depends on (USB = y || USB = WIMAX_GDM72XX)
  32. help
  33. Select this option if the WiMAX module interfaces with the host
  34. processor via USB.
  35. config WIMAX_GDM72XX_SDIO
  36. bool "SDIO interface"
  37. depends on (MMC = y || MMC = WIMAX_GDM72XX)
  38. help
  39. Select this option if the WiMAX module interfaces with the host
  40. processor via SDIO.
  41. endchoice
  42. if WIMAX_GDM72XX_USB
  43. config WIMAX_GDM72XX_USB_PM
  44. bool "Enable power management support"
  45. depends on PM
  46. help
  47. Enable USB power management in order to reduce power consumption
  48. while the interface is not in use.
  49. endif # WIMAX_GDM72XX_USB
  50. endif # WIMAX_GDM72XX