Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # MMC core configuration
  3. #
  4. config MMC_UNSAFE_RESUME
  5. bool "Assume MMC/SD cards are non-removable (DANGEROUS)"
  6. help
  7. If you say Y here, the MMC layer will assume that all cards
  8. stayed in their respective slots during the suspend. The
  9. normal behaviour is to remove them at suspend and
  10. redetecting them at resume. Breaking this assumption will
  11. in most cases result in data corruption.
  12. This option is usually just for embedded systems which use
  13. a MMC/SD card for rootfs. Most people should say N here.
  14. This option sets a default which can be overridden by the
  15. module parameter "removable=0" or "removable=1".
  16. config MMC_CLKGATE
  17. bool "MMC host clock gating (EXPERIMENTAL)"
  18. depends on EXPERIMENTAL
  19. help
  20. This will attempt to aggressively gate the clock to the MMC card.
  21. This is done to save power due to gating off the logic and bus
  22. noise when the MMC card is not in use. Your host driver has to
  23. support handling this in order for it to be of any use.
  24. If unsure, say N.
  25. config MMC_EMBEDDED_SDIO
  26. boolean "MMC embedded SDIO device support (EXPERIMENTAL)"
  27. depends on EXPERIMENTAL
  28. help
  29. If you say Y here, support will be added for embedded SDIO
  30. devices which do not contain the necessary enumeration
  31. support in hardware to be properly detected.
  32. config MMC_PARANOID_SD_INIT
  33. bool "Enable paranoid SD card initialization (EXPERIMENTAL)"
  34. depends on EXPERIMENTAL
  35. help
  36. If you say Y here, the MMC layer will be extra paranoid
  37. about re-trying SD init requests. This can be a useful
  38. work-around for buggy controllers and hardware. Enable
  39. if you are experiencing issues with SD detection.