Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. depends on BLK
  55. help
  56. Enable this driver to support the DWC AHSATA SATA controller found
  57. in i.MX5 and i.MX6 SoCs.
  58. config DWC_AHSATA_AHCI
  59. bool "Enable DWC AHSATA AHCI driver support"
  60. depends on DWC_AHSATA
  61. depends on AHCI
  62. default y
  63. help
  64. Enable this option unless you need your private ahci implementation
  65. config FSL_SATA
  66. bool "Enable Freescale SATA controller driver support"
  67. select AHCI
  68. select LIBATA
  69. depends on BLK
  70. help
  71. Enable this driver to support the SATA controller found in
  72. some Freescale PowerPC SoCs.
  73. config SATA_MV
  74. bool "Enable Marvell SATA controller driver support"
  75. select AHCI
  76. select LIBATA
  77. depends on BLK
  78. help
  79. Enable this driver to support the SATA controller found in
  80. some Marvell SoCs.
  81. config SATA_SIL
  82. bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
  83. select AHCI
  84. select LIBATA
  85. depends on BLK
  86. help
  87. Enable this driver to support the SIL3131, SIL3132 and SIL3124
  88. SATA controllers.
  89. config SATA_SIL3114
  90. bool "Enable Silicon Image SIL3114 SATA driver support"
  91. select LIBATA
  92. help
  93. Enable this driver to support the SIL3114 SATA controllers.
  94. config SUNXI_AHCI
  95. bool "Enable Allwinner SATA driver support"
  96. depends on AHCI
  97. default y if ARCH_SUNXI
  98. help
  99. Enable this driver to support the SATA controllers found in the
  100. Allwinner A10, A20 and R40 SoCs.
  101. config AHCI_MVEBU
  102. bool "Marvell EBU AHCI SATA support"
  103. depends on ARCH_MVEBU || ARCH_OCTEON
  104. depends on AHCI
  105. select SCSI_AHCI
  106. select DM_SCSI
  107. help
  108. This option enables support for the Marvell EBU SoC's
  109. onboard AHCI SATA.
  110. If unsure, say N.
  111. config MTK_AHCI
  112. bool "Enable Mediatek AHCI driver support"
  113. depends on AHCI
  114. help
  115. Enable this driver to support Sata devices through
  116. Mediatek AHCI controller (e.g. MT7622).
  117. endmenu