Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.
  35. config MMC_TEST
  36. tristate "MMC host test driver"
  37. default n
  38. help
  39. Development driver that performs a series of reads and writes
  40. to a memory card in order to expose certain well known bugs
  41. in host controllers. The tests are executed by writing to the
  42. "test" file in sysfs under each card. Note that whatever is
  43. on your card will be overwritten by these tests.
  44. This driver is only of interest to those developing or
  45. testing a host driver. Most people should say N here.