Kconfig 981 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config CW1200
  3. tristate "CW1200 WLAN support"
  4. depends on MAC80211 && CFG80211
  5. help
  6. This is a driver for the ST-E CW1100 & CW1200 WLAN chipsets.
  7. This option just enables the driver core, see below for
  8. specific bus support.
  9. if CW1200
  10. config CW1200_WLAN_SDIO
  11. tristate "Support SDIO platforms"
  12. depends on CW1200 && MMC
  13. help
  14. Enable support for the CW1200 connected via an SDIO bus.
  15. By default this driver only supports the Sagrad SG901-1091/1098 EVK
  16. and similar designs that utilize a hardware reset circuit. To
  17. support different CW1200 SDIO designs you will need to override
  18. the default platform data by calling cw1200_sdio_set_platform_data()
  19. in your board setup file.
  20. config CW1200_WLAN_SPI
  21. tristate "Support SPI platforms"
  22. depends on CW1200 && SPI
  23. help
  24. Enables support for the CW1200 connected via a SPI bus. You will
  25. need to add appropriate platform data glue in your board setup
  26. file.
  27. endif