Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config P54_COMMON
  3. tristate "Softmac Prism54 support"
  4. depends on MAC80211
  5. select FW_LOADER
  6. select CRC_CCITT
  7. help
  8. This is common code for isl38xx/stlc45xx based modules.
  9. This module does nothing by itself - the USB/PCI/SPI front-ends
  10. also need to be enabled in order to support any devices.
  11. These devices require softmac firmware which can be found at
  12. <http://wireless.wiki.kernel.org/en/users/Drivers/p54>
  13. If you choose to build a module, it'll be called p54common.
  14. config P54_USB
  15. tristate "Prism54 USB support"
  16. depends on P54_COMMON && USB
  17. select CRC32
  18. help
  19. This driver is for USB isl38xx based wireless cards.
  20. These devices require softmac firmware which can be found at
  21. <http://wireless.wiki.kernel.org/en/users/Drivers/p54>
  22. If you choose to build a module, it'll be called p54usb.
  23. config P54_PCI
  24. tristate "Prism54 PCI support"
  25. depends on P54_COMMON && PCI
  26. help
  27. This driver is for PCI isl38xx based wireless cards.
  28. This driver supports most devices that are supported by the
  29. fullmac prism54 driver plus many devices which are not
  30. supported by the fullmac driver/firmware.
  31. This driver requires softmac firmware which can be found at
  32. <http://wireless.wiki.kernel.org/en/users/Drivers/p54>
  33. If you choose to build a module, it'll be called p54pci.
  34. config P54_SPI
  35. tristate "Prism54 SPI (stlc45xx) support"
  36. depends on P54_COMMON && SPI_MASTER
  37. help
  38. This driver is for stlc4550 or stlc4560 based wireless chips
  39. such as Nokia's N800/N810 Portable Internet Tablet.
  40. If you choose to build a module, it'll be called p54spi.
  41. config P54_SPI_DEFAULT_EEPROM
  42. bool "Include fallback EEPROM blob"
  43. depends on P54_SPI
  44. default n
  45. help
  46. Unlike the PCI or USB devices, the SPI variants don't have
  47. a dedicated EEPROM chip to store all device specific values
  48. for calibration, country and interface settings.
  49. The driver will try to load the image "3826.eeprom", if the
  50. file is put at the right place. (usually /lib/firmware.)
  51. Only if this request fails, this option will provide a
  52. backup set of generic values to get the device working.
  53. Enabling this option adds about 4k to p54spi.
  54. config P54_LEDS
  55. bool
  56. depends on P54_COMMON && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = P54_COMMON)
  57. default y