blob: 8061e8ef449f0222f5a1da0e59d22a6d76af3aa5 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Timur Tabi6db71992011-06-09 15:52:06 -05002#
3# Virtualization support drivers
4#
5
6menuconfig VIRT_DRIVERS
7 bool "Virtualization drivers"
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09008 help
Timur Tabi6db71992011-06-09 15:52:06 -05009 Say Y here to get to see options for device drivers that support
10 virtualization environments.
11
12 If you say N, all options in this submenu will be skipped and disabled.
13
14if VIRT_DRIVERS
15
16config FSL_HV_MANAGER
17 tristate "Freescale hypervisor management driver"
18 depends on FSL_SOC
Stuart Yoder40656392012-07-03 05:48:54 +000019 select EPAPR_PARAVIRT
Timur Tabi6db71992011-06-09 15:52:06 -050020 help
21 The Freescale hypervisor management driver provides several services
22 to drivers and applications related to the Freescale hypervisor:
23
24 1) An ioctl interface for querying and managing partitions.
25
26 2) A file interface to reading incoming doorbells.
27
28 3) An interrupt handler for shutting down the partition upon
29 receiving the shutdown doorbell from a manager partition.
30
31 4) A kernel interface for receiving callbacks when a managed
32 partition shuts down.
33
Hans de Goede0ba002b2017-11-30 17:01:27 +010034source "drivers/virt/vboxguest/Kconfig"
Andra Paraschiv07499cc2020-09-21 15:17:28 +030035
36source "drivers/virt/nitro_enclaves/Kconfig"
Shuo Liu666834c2021-02-07 11:10:27 +080037
38source "drivers/virt/acrn/Kconfig"
Timur Tabi6db71992011-06-09 15:52:06 -050039endif