Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 FSL_SATA
  58. bool "Enable Freescale SATA controller driver support"
  59. select LIBATA
  60. help
  61. Enable this driver to support the SATA controller found in
  62. some Freescale PowerPC SoCs.
  63. config MVSATA_IDE
  64. bool "Enable Marvell SATA controller driver support via IDE interface"
  65. help
  66. Enable this driver to support the SATA controller found in
  67. some Marvell SoCs, running in IDE compatibility mode using PIO.
  68. config SATA_MV
  69. bool "Enable Marvell SATA controller driver support"
  70. select LIBATA
  71. help
  72. Enable this driver to support the SATA controller found in
  73. some Marvell SoCs.
  74. config SATA_SIL
  75. bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
  76. select LIBATA
  77. help
  78. Enable this driver to support the SIL3131, SIL3132 and SIL3124
  79. SATA controllers.
  80. config SATA_SIL3114
  81. bool "Enable Silicon Image SIL3114 SATA driver support"
  82. select LIBATA
  83. help
  84. Enable this driver to support the SIL3114 SATA controllers.
  85. config AHCI_MVEBU
  86. bool "Marvell EBU AHCI SATA support"
  87. depends on ARCH_MVEBU
  88. depends on AHCI
  89. select SCSI_AHCI
  90. select DM_SCSI
  91. help
  92. This option enables support for the Marvell EBU SoC's
  93. onboard AHCI SATA.
  94. If unsure, say N.
  95. endmenu