Merge branch 'master' of git://git.denx.de/u-boot-sh
[oweals/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         select HAVE_BLOCK_DEVICE
13         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
24 config LIBATA
25         bool
26         help
27           Select this to build and link the libata helper functions.
28
29 config SCSI_AHCI
30         bool "Enable SCSI interface to SATA devices"
31         select LIBATA
32         help
33           Enable this to allow interfacing SATA devices via the SCSI layer.
34
35 menu "SATA/SCSI device support"
36
37 config 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
43 config 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
53 config 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
62 config FSL_AHCI
63         bool "Enable Freescale AHCI driver support"
64         select SCSI_AHCI
65         depends on AHCI
66         depends on DM_SCSI
67         help
68           Enable this driver to support Sata devices found in
69           some Freescale PowerPC SoCs.
70
71
72 config DWC_AHSATA
73         bool "Enable DWC AHSATA driver support"
74         select LIBATA
75         help
76           Enable this driver to support the DWC AHSATA SATA controller found
77           in i.MX5 and i.MX6 SoCs.
78
79 config DWC_AHSATA_AHCI
80         bool "Enable DWC AHSATA AHCI driver support"
81         depends on DWC_AHSATA
82         depends on AHCI
83         default y
84         help
85           Enable this option unless you need your private ahci implementation
86
87 config FSL_SATA
88         bool "Enable Freescale SATA controller driver support"
89         select LIBATA
90         select AHCI if BLK
91         help
92           Enable this driver to support the SATA controller found in
93           some Freescale PowerPC SoCs.
94
95 config MVSATA_IDE
96         bool "Enable Marvell SATA controller driver support via IDE interface"
97         help
98           Enable this driver to support the SATA controller found in
99           some Marvell SoCs, running in IDE compatibility mode using PIO.
100
101 config SATA_MV
102         bool "Enable Marvell SATA controller driver support"
103         select AHCI
104         select LIBATA
105         depends on BLK
106         help
107           Enable this driver to support the SATA controller found in
108           some Marvell SoCs.
109
110 config SATA_SIL
111         bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support"
112         select LIBATA
113         select AHCI if BLK
114         help
115           Enable this driver to support the SIL3131, SIL3132 and SIL3124
116           SATA controllers.
117
118 config SATA_SIL3114
119         bool "Enable Silicon Image SIL3114 SATA driver support"
120         select LIBATA
121         help
122           Enable this driver to support the SIL3114 SATA controllers.
123
124 config SUNXI_AHCI
125         bool "Enable Allwinner SATA driver support"
126         depends on AHCI
127         default y if ARCH_SUNXI
128         help
129           Enable this driver to support the SATA controllers found in the
130           Allwinner A10, A20 and R40 SoCs.
131
132 config AHCI_MVEBU
133         bool "Marvell EBU AHCI SATA support"
134         depends on ARCH_MVEBU
135         depends on AHCI
136         select SCSI_AHCI
137         select DM_SCSI
138         help
139           This option enables support for the Marvell EBU SoC's
140           onboard AHCI SATA.
141
142           If unsure, say N.
143 endmenu