]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/ata/Kconfig
Merge git://git.denx.de/u-boot-mmc
[people/ms/u-boot.git] / drivers / ata / Kconfig
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
10 config 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
23 menu "SATA/SCSI device support"
24
25 config SATA_CEVA
26 bool "Ceva Sata controller"
27 depends on AHCI
28 depends on DM_SCSI
29 help
30 This option enables Ceva Sata controller hard IP available on Xilinx
31 ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and
32 AHCI 1.3 specifications with hot-plug detect feature.
33
34
35 config DWC_AHCI
36 bool "Enable Synopsys DWC AHCI driver support"
37 select SCSI_AHCI
38 select PHY
39 depends on DM_SCSI
40 help
41 Enable this driver to support Sata devices through
42 Synopsys DWC AHCI module.
43
44 endmenu