blob: 6f0b7723836470ac19d8c66ffef0435faafae563 [file] [log] [blame]
Simon Glass2c844c42017-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 Fordb10ba902018-02-06 12:43:56 -060012 select HAVE_BLOCK_DEVICE
Simon Glass2c844c42017-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 Tynkkynenfc1a4de2017-12-08 15:36:20 +020024config LIBATA
25 bool
26 help
27 Select this to build and link the libata helper functions.
28
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +020029config SCSI_AHCI
30 bool "Enable SCSI interface to SATA devices"
Tuomas Tynkkynenfc1a4de2017-12-08 15:36:20 +020031 select LIBATA
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +020032 help
33 Enable this to allow interfacing SATA devices via the SCSI layer.
34
Simon Glass2c844c42017-06-14 21:28:26 -060035menu "SATA/SCSI device support"
36
Bin Meng239a09b2017-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 Glass2c844c42017-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 Tynkkynen745edca2017-12-08 15:36:18 +020062config DWC_AHSATA
63 bool "Enable DWC AHSATA driver support"
Tuomas Tynkkynenfc1a4de2017-12-08 15:36:20 +020064 select LIBATA
Tom Rini2398bbc2021-02-09 21:42:44 -050065 depends on BLK
Tuomas Tynkkynen745edca2017-12-08 15:36:18 +020066 help
67 Enable this driver to support the DWC AHSATA SATA controller found
68 in i.MX5 and i.MX6 SoCs.
69
Soeren Moch5569bbd2019-03-01 13:10:59 +010070config DWC_AHSATA_AHCI
71 bool "Enable DWC AHSATA AHCI driver support"
72 depends on DWC_AHSATA
73 depends on AHCI
74 default y
75 help
76 Enable this option unless you need your private ahci implementation
77
Tuomas Tynkkynen8df5dd32017-12-08 15:36:17 +020078config FSL_SATA
79 bool "Enable Freescale SATA controller driver support"
Tom Rinie9fe9cb2021-04-21 15:32:26 -040080 select AHCI
Tuomas Tynkkynenfc1a4de2017-12-08 15:36:20 +020081 select LIBATA
Tom Rinie9fe9cb2021-04-21 15:32:26 -040082 depends on BLK
Tuomas Tynkkynen8df5dd32017-12-08 15:36:17 +020083 help
84 Enable this driver to support the SATA controller found in
85 some Freescale PowerPC SoCs.
86
Tuomas Tynkkynen9f1caca2017-12-08 15:36:16 +020087config SATA_MV
88 bool "Enable Marvell SATA controller driver support"
Stefan Roesee85955c2019-03-11 13:29:20 +010089 select AHCI
Tuomas Tynkkynenfc1a4de2017-12-08 15:36:20 +020090 select LIBATA
Stefan Roesee85955c2019-03-11 13:29:20 +010091 depends on BLK
Tuomas Tynkkynen9f1caca2017-12-08 15:36:16 +020092 help
93 Enable this driver to support the SATA controller found in
94 some Marvell SoCs.
95
Tuomas Tynkkynen104a5372017-12-08 15:36:14 +020096config SATA_SIL
97 bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
Tom Rinie9fe9cb2021-04-21 15:32:26 -040098 select AHCI
Tuomas Tynkkynenfc1a4de2017-12-08 15:36:20 +020099 select LIBATA
Tom Rinie9fe9cb2021-04-21 15:32:26 -0400100 depends on BLK
Tuomas Tynkkynen104a5372017-12-08 15:36:14 +0200101 help
102 Enable this driver to support the SIL3131, SIL3132 and SIL3124
103 SATA controllers.
104
Tuomas Tynkkynen1640cd42017-12-08 15:36:15 +0200105config SATA_SIL3114
106 bool "Enable Silicon Image SIL3114 SATA driver support"
Tuomas Tynkkynenfc1a4de2017-12-08 15:36:20 +0200107 select LIBATA
Tuomas Tynkkynen1640cd42017-12-08 15:36:15 +0200108 help
109 Enable this driver to support the SIL3114 SATA controllers.
110
Andre Przywara0931e372019-04-12 16:28:54 +0530111config SUNXI_AHCI
112 bool "Enable Allwinner SATA driver support"
113 depends on AHCI
114 default y if ARCH_SUNXI
115 help
116 Enable this driver to support the SATA controllers found in the
117 Allwinner A10, A20 and R40 SoCs.
118
Ken Ma3984dac2018-05-25 15:49:24 +0800119config AHCI_MVEBU
120 bool "Marvell EBU AHCI SATA support"
Stefan Roesec62067b2021-04-07 09:12:34 +0200121 depends on ARCH_MVEBU || ARCH_OCTEON
Ken Ma3984dac2018-05-25 15:49:24 +0800122 depends on AHCI
123 select SCSI_AHCI
Ken Mac3f0ca12018-05-25 15:49:26 +0800124 select DM_SCSI
Ken Ma3984dac2018-05-25 15:49:24 +0800125 help
126 This option enables support for the Marvell EBU SoC's
127 onboard AHCI SATA.
128
129 If unsure, say N.
Frank Wunderlich1e2dc602020-08-13 10:20:47 +0200130
131config MTK_AHCI
132 bool "Enable Mediatek AHCI driver support"
133 depends on AHCI
134 help
135 Enable this driver to support Sata devices through
136 Mediatek AHCI controller (e.g. MT7622).
137
Simon Glass2c844c42017-06-14 21:28:26 -0600138endmenu