Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. config AHCI
  2. bool "Support SATA controllers with driver model"
  3. depends on DM
  4. help
  5. This enables a uclass for disk controllers in U-Boot. Various driver
  6. types can use this, such as AHCI/SATA. It does not provide any standard
  7. operations at present. The block device interface has not been converted
  8. to driver model.
  9. config SATA
  10. bool "Support SATA controllers"
  11. select HAVE_BLOCK_DEVICE
  12. help
  13. This enables support for SATA (Serial Advanced Technology
  14. Attachment), a serial bus standard for connecting to hard drives and
  15. other storage devices.
  16. SATA replaces PATA (originally just ATA), which stands for Parallel AT
  17. Attachment, where AT refers to an IBM AT (Advanced Technology)
  18. computer released in 1984.
  19. See also CMD_SATA which provides command-line support.
  20. config LIBATA
  21. bool
  22. help
  23. Select this to build and link the libata helper functions.
  24. config SCSI_AHCI
  25. bool "Enable SCSI interface to SATA devices"
  26. select LIBATA
  27. help
  28. Enable this to allow interfacing SATA devices via the SCSI layer.
  29. menu "SATA/SCSI device support"
  30. config AHCI_PCI
  31. bool "Support for PCI-based AHCI controller"
  32. depends on DM_SCSI
  33. help
  34. Enables support for the PCI-based AHCI controller.
  35. config SATA_CEVA
  36. bool "Ceva Sata controller"
  37. depends on AHCI
  38. depends on DM_SCSI
  39. help
  40. This option enables Ceva Sata controller hard IP available on Xilinx
  41. ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and
  42. AHCI 1.3 specifications with hot-plug detect feature.
  43. config DWC_AHCI
  44. bool "Enable Synopsys DWC AHCI driver support"
  45. select SCSI_AHCI
  46. select PHY
  47. depends on DM_SCSI
  48. help
  49. Enable this driver to support Sata devices through
  50. Synopsys DWC AHCI module.
  51. config DWC_AHSATA
  52. bool "Enable DWC AHSATA driver support"
  53. select LIBATA
  54. help
  55. Enable this driver to support the DWC AHSATA SATA controller found
  56. in i.MX5 and i.MX6 SoCs.
  57. config DWC_AHSATA_AHCI
  58. bool "Enable DWC AHSATA AHCI driver support"
  59. depends on DWC_AHSATA
  60. depends on AHCI
  61. default y
  62. help
  63. Enable this option unless you need your private ahci implementation
  64. config FSL_SATA
  65. bool "Enable Freescale SATA controller driver support"
  66. select LIBATA
  67. select AHCI if BLK
  68. help
  69. Enable this driver to support the SATA controller found in
  70. some Freescale PowerPC SoCs.
  71. config MVSATA_IDE
  72. bool "Enable Marvell SATA controller driver support via IDE interface"
  73. help
  74. Enable this driver to support the SATA controller found in
  75. some Marvell SoCs, running in IDE compatibility mode using PIO.
  76. config SATA_MV
  77. bool "Enable Marvell SATA controller driver support"
  78. select AHCI
  79. select LIBATA
  80. depends on BLK
  81. help
  82. Enable this driver to support the SATA controller found in
  83. some Marvell SoCs.
  84. config SATA_SIL
  85. bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
  86. select LIBATA
  87. select AHCI if BLK
  88. help
  89. Enable this driver to support the SIL3131, SIL3132 and SIL3124
  90. SATA controllers.
  91. config SATA_SIL3114
  92. bool "Enable Silicon Image SIL3114 SATA driver support"
  93. select LIBATA
  94. help
  95. Enable this driver to support the SIL3114 SATA controllers.
  96. config SUNXI_AHCI
  97. bool "Enable Allwinner SATA driver support"
  98. depends on AHCI
  99. default y if ARCH_SUNXI
  100. help
  101. Enable this driver to support the SATA controllers found in the
  102. Allwinner A10, A20 and R40 SoCs.
  103. config AHCI_MVEBU
  104. bool "Marvell EBU AHCI SATA support"
  105. depends on ARCH_MVEBU
  106. depends on AHCI
  107. select SCSI_AHCI
  108. select DM_SCSI
  109. help
  110. This option enables support for the Marvell EBU SoC's
  111. onboard AHCI SATA.
  112. If unsure, say N.
  113. config MTK_AHCI
  114. bool "Enable Mediatek AHCI driver support"
  115. depends on AHCI
  116. help
  117. Enable this driver to support Sata devices through
  118. Mediatek AHCI controller (e.g. MT7622).
  119. endmenu