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_QDEV 12 13config IDE_ISA 14 bool 15 depends on ISA_BUS 16 select IDE_QDEV 17 18config IDE_PIIX 19 bool 20 select IDE_PCI 21 select IDE_QDEV 22 23config IDE_CMD646 24 bool 25 select IDE_PCI 26 select IDE_QDEV 27 28config IDE_MACIO 29 bool 30 select IDE_QDEV 31 32config IDE_MMIO 33 bool 34 select IDE_QDEV 35 36config IDE_VIA 37 bool 38 select IDE_PCI 39 select IDE_QDEV 40 41config MICRODRIVE 42 bool 43 select IDE_QDEV 44 depends on PCMCIA 45 46config AHCI 47 bool 48 select IDE_QDEV 49 50config AHCI_ICH9 51 bool 52 default y if PCI_DEVICES 53 depends on PCI 54 select AHCI 55 56config IDE_SII3112 57 bool 58 select IDE_PCI 59 select IDE_QDEV 60