Kconfig 975 B

12345678910111213141516171819202122232425262728
  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"
  18. help
  19. This will attempt to aggressively gate the clock to the MMC card.
  20. This is done to save power due to gating off the logic and bus
  21. noise when the MMC card is not in use. Your host driver has to
  22. support handling this in order for it to be of any use.
  23. If unsure, say N.