Kconfig 525 B

12345678910111213141516171819202122
  1. menuconfig 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. config RT_ATA_AHCI
  8. bool "Advanced Host Controller Interface (AHCI)"
  9. depends on RT_USING_ATA
  10. depends on RT_USING_SCSI
  11. default y
  12. config RT_ATA_AHCI_PCI
  13. bool "AHCI support on PCI bus"
  14. depends on RT_ATA_AHCI
  15. depends on RT_USING_PCI
  16. default n
  17. if RT_USING_ATA
  18. osource "$(SOC_DM_ATA_DIR)/Kconfig"
  19. endif