1menuconfig RT_USING_ATA 2 bool "Using Advanced Technology Attachment (ATA) device drivers" 3 depends on RT_USING_DM 4 depends on RT_USING_BLK 5 depends on RT_USING_DMA 6 default n 7 8config RT_ATA_AHCI 9 bool "Advanced Host Controller Interface (AHCI)" 10 depends on RT_USING_ATA 11 depends on RT_USING_SCSI 12 default y 13 14config RT_ATA_AHCI_PCI 15 bool "AHCI support on PCI bus" 16 depends on RT_ATA_AHCI 17 depends on RT_USING_PCI 18 default n 19 20if RT_USING_ATA 21 osource "$(SOC_DM_ATA_DIR)/Kconfig" 22endif 23