1# Copyright (c) 2024 Antmicro <www.antmicro.com> 2# SPDX-License-Identifier: Apache-2.0 3 4config VIRTIO 5 bool "support for VIRTIO" 6 help 7 Enable options for VIRTIO 8 9if VIRTIO 10 11module = VIRTIO 12module-str = VIRTIO 13source "subsys/logging/Kconfig.template.log_config" 14 15config VIRTIO_PCI 16 bool "support for VIRTIO over PCI" 17 default y 18 depends on DT_HAS_VIRTIO_PCI_ENABLED 19 help 20 Enable options for VIRTIO over PCI 21 22config VIRTIO_MMIO 23 bool "support for VIRTIO over MMIO" 24 default y 25 depends on DT_HAS_VIRTIO_MMIO_ENABLED 26 help 27 Enable options for VIRTIO over MMIO 28 29endif # VIRTIO 30