Kconfig 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # MMC subsystem configuration
  3. #
  4. menuconfig MMC
  5. tristate "MMC/SD/SDIO card support"
  6. depends on HAS_IOMEM
  7. help
  8. This selects MultiMediaCard, Secure Digital and Secure
  9. Digital I/O support.
  10. If you want MMC/SD/SDIO support, you should say Y here and
  11. also to your specific host controller driver.
  12. config MMC_DEBUG
  13. bool "MMC debugging"
  14. depends on MMC != n
  15. help
  16. This is an option for use by developers; most people should
  17. say N here. This enables MMC core and driver debugging.
  18. config MMC_PERF_PROFILING
  19. bool "MMC performance profiling"
  20. depends on MMC != n
  21. default n
  22. help
  23. If you say Y here, support will be added for collecting
  24. performance numbers at the MMC Queue and Host layers.
  25. config MMC_SUPPORT_STLOG
  26. bool "Enable storage log"
  27. depends on MMC && PROC_STLOG
  28. default y
  29. if MMC
  30. source "drivers/mmc/core/Kconfig"
  31. source "drivers/mmc/card/Kconfig"
  32. source "drivers/mmc/host/Kconfig"
  33. endif # MMC