Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # MMC/SD card drivers
  3. #
  4. comment "MMC/SD Card Drivers"
  5. config MMC_BLOCK
  6. tristate "MMC block device driver"
  7. depends on BLOCK
  8. default y
  9. help
  10. Say Y here to enable the MMC block device driver support.
  11. This provides a block device driver, which you can use to
  12. mount the filesystem. Almost everyone wishing MMC support
  13. should say Y or M here.
  14. config MMC_BLOCK_BOUNCE
  15. bool "Use bounce buffer for simple hosts"
  16. depends on MMC_BLOCK
  17. default y
  18. help
  19. SD/MMC is a high latency protocol where it is crucial to
  20. send large requests in order to get high performance. Many
  21. controllers, however, are restricted to continuous memory
  22. (i.e. they can't do scatter-gather), something the kernel
  23. rarely can provide.
  24. Say Y here to help these restricted hosts by bouncing
  25. requests back and forth from a large buffer. You will get
  26. a big performance gain at the cost of up to 64 KiB of
  27. physical memory.
  28. If unsure, say Y here.
  29. config SDIO_UART
  30. tristate "SDIO UART/GPS class support"
  31. depends on MMC
  32. help
  33. SDIO function driver for SDIO cards that implements the UART
  34. class, as well as the GPS class which appears like a UART.