Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # MMC core configuration
  4. #
  5. config PWRSEQ_EMMC
  6. tristate "HW reset support for eMMC"
  7. default y
  8. depends on OF
  9. help
  10. This selects Hardware reset support aka pwrseq-emmc for eMMC
  11. devices. By default this option is set to y.
  12. This driver can also be built as a module. If so, the module
  13. will be called pwrseq_emmc.
  14. config PWRSEQ_SD8787
  15. tristate "HW reset support for SD8787 BT + Wifi module"
  16. depends on OF && (MWIFIEX != n || BT_MRVL_SDIO != n || LIBERTAS_SDIO != n || WILC1000_SDIO != n)
  17. help
  18. This selects hardware reset support for the SD8787 BT + Wifi
  19. module. By default this option is set to n.
  20. This driver can also be built as a module. If so, the module
  21. will be called pwrseq_sd8787.
  22. config PWRSEQ_SIMPLE
  23. tristate "Simple HW reset support for MMC"
  24. default y
  25. depends on OF
  26. help
  27. This selects simple hardware reset support aka pwrseq-simple for MMC
  28. devices. By default this option is set to y.
  29. This driver can also be built as a module. If so, the module
  30. will be called pwrseq_simple.
  31. config MMC_BLOCK
  32. tristate "MMC block device driver"
  33. depends on BLOCK
  34. depends on RPMB || !RPMB
  35. imply IOSCHED_BFQ
  36. default y
  37. help
  38. Say Y here to enable the MMC block device driver support.
  39. This provides a block device driver, which you can use to
  40. mount the filesystem. Almost everyone wishing MMC support
  41. should say Y or M here.
  42. config MMC_BLOCK_MINORS
  43. int "Number of minors per block device"
  44. depends on MMC_BLOCK
  45. range 4 256
  46. default 8
  47. help
  48. Number of minors per block device. One is needed for every
  49. partition on the disk (plus one for the whole disk).
  50. Number of total MMC minors available is 256, so your number
  51. of supported block devices will be limited to 256 divided
  52. by this number.
  53. Default is 8 to be backwards compatible with previous
  54. hardwired device numbering.
  55. If unsure, say 8 here.
  56. config SDIO_UART
  57. tristate "SDIO UART/GPS class support"
  58. depends on TTY
  59. help
  60. SDIO function driver for SDIO cards that implements the UART
  61. class, as well as the GPS class which appears like a UART.
  62. config MMC_TEST
  63. tristate "MMC host test driver"
  64. help
  65. Development driver that performs a series of reads and writes
  66. to a memory card in order to expose certain well known bugs
  67. in host controllers. The tests are executed by writing to the
  68. "test" file in debugfs under each card. Note that whatever is
  69. on your card will be overwritten by these tests.
  70. This driver is only of interest to those developing or
  71. testing a host driver. Most people should say N here.
  72. config MMC_CRYPTO
  73. bool "MMC Crypto Engine Support"
  74. depends on BLK_INLINE_ENCRYPTION
  75. help
  76. Enable Crypto Engine Support in MMC.
  77. Enabling this makes it possible for the kernel to use the crypto
  78. capabilities of the MMC device (if present) to perform crypto
  79. operations on data being transferred to/from the device.