xref: /openbmc/qemu/hw/ide/Kconfig (revision 7c28b925b7e176b4e44ed05d23cf883561000546)
1config IDE_CORE
2    bool
3
4config IDE_QDEV
5    bool
6    select IDE_CORE
7
8config IDE_PCI
9    bool
10    depends on PCI
11    select IDE_CORE
12
13config IDE_ISA
14    bool
15    select IDE_QDEV
16
17config IDE_PIIX
18    bool
19    select IDE_PCI
20    select IDE_QDEV
21
22config IDE_CMD646
23    bool
24    select IDE_PCI
25    select IDE_QDEV
26
27config IDE_MACIO
28    bool
29    select IDE_QDEV
30
31config IDE_MMIO
32    bool
33    select IDE_QDEV
34
35config IDE_VIA
36    bool
37    select IDE_PCI
38    select IDE_QDEV
39
40config MICRODRIVE
41    bool
42    select IDE_QDEV
43
44config AHCI
45    bool
46    default y if PCI_DEVICES
47    depends on PCI
48    select IDE_QDEV
49
50config IDE_SII3112
51    bool
52    select IDE_PCI
53    select IDE_QDEV
54