blob: 36e1748a4fa679b47e2ce6a6638922d677a44822 [file] [log] [blame]
Simon Glassf2105c62017-06-14 21:28:26 -06001config 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
10config SATA
11 bool "Support SATA controllers"
Adam Ford1811a922018-02-06 12:43:56 -060012 select HAVE_BLOCK_DEVICE
Simon Glassf2105c62017-06-14 21:28:26 -060013 help
14 This enables support for SATA (Serial Advanced Technology
15 Attachment), a serial bus standard for connecting to hard drives and
16 other storage devices.
17
18 SATA replaces PATA (originally just ATA), which stands for Parallel AT
19 Attachment, where AT refers to an IBM AT (Advanced Technology)
20 computer released in 1984.
21
22 See also CMD_SATA which provides command-line support.
23
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020024config LIBATA
25 bool
26 help
27 Select this to build and link the libata helper functions.
28
Tuomas Tynkkynen9fd95ef2017-12-08 15:36:19 +020029config SCSI_AHCI
30 bool "Enable SCSI interface to SATA devices"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020031 select LIBATA
Tuomas Tynkkynen9fd95ef2017-12-08 15:36:19 +020032 help
33 Enable this to allow interfacing SATA devices via the SCSI layer.
34
Simon Glassf2105c62017-06-14 21:28:26 -060035menu "SATA/SCSI device support"
36
Bin Menga5c680f2017-07-30 19:23:59 -070037config AHCI_PCI
38 bool "Support for PCI-based AHCI controller"
39 depends on DM_SCSI
40 help
41 Enables support for the PCI-based AHCI controller.
42
Simon Glassf2105c62017-06-14 21:28:26 -060043config SATA_CEVA
44 bool "Ceva Sata controller"
45 depends on AHCI
46 depends on DM_SCSI
47 help
48 This option enables Ceva Sata controller hard IP available on Xilinx
49 ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and
50 AHCI 1.3 specifications with hot-plug detect feature.
51
52
53config DWC_AHCI
54 bool "Enable Synopsys DWC AHCI driver support"
55 select SCSI_AHCI
56 select PHY
57 depends on DM_SCSI
58 help
59 Enable this driver to support Sata devices through
60 Synopsys DWC AHCI module.
61
Tuomas Tynkkynen477b16a2017-12-08 15:36:18 +020062config DWC_AHSATA
63 bool "Enable DWC AHSATA driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020064 select LIBATA
Tuomas Tynkkynen477b16a2017-12-08 15:36:18 +020065 help
66 Enable this driver to support the DWC AHSATA SATA controller found
67 in i.MX5 and i.MX6 SoCs.
68
Tuomas Tynkkynen9920d152017-12-08 15:36:17 +020069config FSL_SATA
70 bool "Enable Freescale SATA controller driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020071 select LIBATA
Tuomas Tynkkynen9920d152017-12-08 15:36:17 +020072 help
73 Enable this driver to support the SATA controller found in
74 some Freescale PowerPC SoCs.
75
Tuomas Tynkkynencf713382017-12-08 15:36:21 +020076config MVSATA_IDE
77 bool "Enable Marvell SATA controller driver support via IDE interface"
78 help
79 Enable this driver to support the SATA controller found in
80 some Marvell SoCs, running in IDE compatibility mode using PIO.
81
Tuomas Tynkkynenad0ac542017-12-08 15:36:16 +020082config SATA_MV
83 bool "Enable Marvell SATA controller driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020084 select LIBATA
Tuomas Tynkkynenad0ac542017-12-08 15:36:16 +020085 help
86 Enable this driver to support the SATA controller found in
87 some Marvell SoCs.
88
Tuomas Tynkkynenc88ecf42017-12-08 15:36:14 +020089config SATA_SIL
90 bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020091 select LIBATA
Tuomas Tynkkynenc88ecf42017-12-08 15:36:14 +020092 help
93 Enable this driver to support the SIL3131, SIL3132 and SIL3124
94 SATA controllers.
95
Tuomas Tynkkynen32f03982017-12-08 15:36:15 +020096config SATA_SIL3114
97 bool "Enable Silicon Image SIL3114 SATA driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020098 select LIBATA
Tuomas Tynkkynen32f03982017-12-08 15:36:15 +020099 help
100 Enable this driver to support the SIL3114 SATA controllers.
101
Ken Ma592b4a72018-05-25 15:49:24 +0800102config AHCI_MVEBU
103 bool "Marvell EBU AHCI SATA support"
104 depends on ARCH_MVEBU
105 depends on AHCI
106 select SCSI_AHCI
107 help
108 This option enables support for the Marvell EBU SoC's
109 onboard AHCI SATA.
110
111 If unsure, say N.
Simon Glassf2105c62017-06-14 21:28:26 -0600112endmenu