zephyr/drivers/virtio/Kconfig
TOKITA Hiroshi 3f7e8f498e drivers: virtio: add VIRTIO MMIO transport driver
Add virtio-mmio driver

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
2025-06-07 15:39:06 +01:00

30 lines
580 B
Plaintext

# Copyright (c) 2024 Antmicro <www.antmicro.com>
# SPDX-License-Identifier: Apache-2.0
config VIRTIO
bool "support for VIRTIO"
help
Enable options for VIRTIO
if VIRTIO
config VIRTIO_PCI
bool "support for VIRTIO over PCI"
default y
depends on DT_HAS_VIRTIO_PCI_ENABLED
help
Enable options for VIRTIO over PCI
config VIRTIO_MMIO
bool "support for VIRTIO over MMIO"
default y
depends on DT_HAS_VIRTIO_MMIO_ENABLED
help
Enable options for VIRTIO over MMIO
endif # VIRTIO
module = VIRTIO
module-str = VIRTIO
source "subsys/logging/Kconfig.template.log_config"