Simon Glass | f2105c6 | 2017-06-14 21:28:26 -0600 | [diff] [blame] | 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 | |
Simon Glass | f2105c6 | 2017-06-14 21:28:26 -0600 | [diff] [blame] | 23 | menu "SATA/SCSI device support" |
| 24 | |
Bin Meng | a5c680f | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 25 | config AHCI_PCI |
| 26 | bool "Support for PCI-based AHCI controller" |
| 27 | depends on DM_SCSI |
| 28 | help |
| 29 | Enables support for the PCI-based AHCI controller. |
| 30 | |
Simon Glass | f2105c6 | 2017-06-14 21:28:26 -0600 | [diff] [blame] | 31 | config SATA_CEVA |
| 32 | bool "Ceva Sata controller" |
| 33 | depends on AHCI |
| 34 | depends on DM_SCSI |
| 35 | help |
| 36 | This option enables Ceva Sata controller hard IP available on Xilinx |
| 37 | ZynqMP. Support up to 2 external devices. Complient with SATA 3.1 and |
| 38 | AHCI 1.3 specifications with hot-plug detect feature. |
| 39 | |
| 40 | |
| 41 | config DWC_AHCI |
| 42 | bool "Enable Synopsys DWC AHCI driver support" |
| 43 | select SCSI_AHCI |
| 44 | select PHY |
| 45 | depends on DM_SCSI |
| 46 | help |
| 47 | Enable this driver to support Sata devices through |
| 48 | Synopsys DWC AHCI module. |
| 49 | |
Tuomas Tynkkynen | c88ecf4 | 2017-12-08 15:36:14 +0200 | [diff] [blame] | 50 | config SATA_SIL |
| 51 | bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support" |
| 52 | help |
| 53 | Enable this driver to support the SIL3131, SIL3132 and SIL3124 |
| 54 | SATA controllers. |
| 55 | |
Tuomas Tynkkynen | 32f0398 | 2017-12-08 15:36:15 +0200 | [diff] [blame^] | 56 | config SATA_SIL3114 |
| 57 | bool "Enable Silicon Image SIL3114 SATA driver support" |
| 58 | help |
| 59 | Enable this driver to support the SIL3114 SATA controllers. |
| 60 | |
Simon Glass | f2105c6 | 2017-06-14 21:28:26 -0600 | [diff] [blame] | 61 | endmenu |