blob: 990de72309a222b032798a641042651db467f5e8 [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"
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
17 SATA replaces PATA (originally just ATA), which stands for Parallel AT
18 Attachment, where AT refers to an IBM AT (Advanced Technology)
19 computer released in 1984.
20
21 See also CMD_SATA which provides command-line support.
22
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020023config LIBATA
24 bool
25 help
26 Select this to build and link the libata helper functions.
27
Tuomas Tynkkynen9fd95ef2017-12-08 15:36:19 +020028config SCSI_AHCI
29 bool "Enable SCSI interface to SATA devices"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020030 select LIBATA
Tuomas Tynkkynen9fd95ef2017-12-08 15:36:19 +020031 help
32 Enable this to allow interfacing SATA devices via the SCSI layer.
33
Simon Glassf2105c62017-06-14 21:28:26 -060034menu "SATA/SCSI device support"
35
Bin Menga5c680f2017-07-30 19:23:59 -070036config AHCI_PCI
37 bool "Support for PCI-based AHCI controller"
38 depends on DM_SCSI
39 help
40 Enables support for the PCI-based AHCI controller.
41
Simon Glassf2105c62017-06-14 21:28:26 -060042config SATA_CEVA
43 bool "Ceva Sata controller"
44 depends on AHCI
45 depends on DM_SCSI
46 help
47 This option enables Ceva Sata controller hard IP available on Xilinx
48 ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and
49 AHCI 1.3 specifications with hot-plug detect feature.
50
51
52config DWC_AHCI
53 bool "Enable Synopsys DWC AHCI driver support"
54 select SCSI_AHCI
55 select PHY
56 depends on DM_SCSI
57 help
58 Enable this driver to support Sata devices through
59 Synopsys DWC AHCI module.
60
Tuomas Tynkkynen477b16a2017-12-08 15:36:18 +020061config DWC_AHSATA
62 bool "Enable DWC AHSATA driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020063 select LIBATA
Tuomas Tynkkynen477b16a2017-12-08 15:36:18 +020064 help
65 Enable this driver to support the DWC AHSATA SATA controller found
66 in i.MX5 and i.MX6 SoCs.
67
Tuomas Tynkkynen9920d152017-12-08 15:36:17 +020068config FSL_SATA
69 bool "Enable Freescale SATA controller driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020070 select LIBATA
Tuomas Tynkkynen9920d152017-12-08 15:36:17 +020071 help
72 Enable this driver to support the SATA controller found in
73 some Freescale PowerPC SoCs.
74
Tuomas Tynkkynencf713382017-12-08 15:36:21 +020075config MVSATA_IDE
76 bool "Enable Marvell SATA controller driver support via IDE interface"
77 help
78 Enable this driver to support the SATA controller found in
79 some Marvell SoCs, running in IDE compatibility mode using PIO.
80
Tuomas Tynkkynenad0ac542017-12-08 15:36:16 +020081config SATA_MV
82 bool "Enable Marvell SATA controller driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020083 select LIBATA
Tuomas Tynkkynenad0ac542017-12-08 15:36:16 +020084 help
85 Enable this driver to support the SATA controller found in
86 some Marvell SoCs.
87
Tuomas Tynkkynenc88ecf42017-12-08 15:36:14 +020088config SATA_SIL
89 bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020090 select LIBATA
Tuomas Tynkkynenc88ecf42017-12-08 15:36:14 +020091 help
92 Enable this driver to support the SIL3131, SIL3132 and SIL3124
93 SATA controllers.
94
Tuomas Tynkkynen32f03982017-12-08 15:36:15 +020095config SATA_SIL3114
96 bool "Enable Silicon Image SIL3114 SATA driver support"
Tuomas Tynkkynenb82e6672017-12-08 15:36:20 +020097 select LIBATA
Tuomas Tynkkynen32f03982017-12-08 15:36:15 +020098 help
99 Enable this driver to support the SIL3114 SATA controllers.
100
Simon Glassf2105c62017-06-14 21:28:26 -0600101endmenu