summaryrefslogtreecommitdiffstats
path: root/drivers/video/bochs/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2021-01-19 05:41:44 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-01-19 05:41:44 +0100
commitb5d3c4c00dff9211fb271e644ae5e98aa0a0853e (patch)
tree8f9d871b2a51b27ad345bece85ce59ee4e8d6c52 /drivers/video/bochs/Kconfig
parent2ea982543a2570af2f7629e08bb6d3ff28b07e3a (diff)
parentaa3cdd7c55bfcbbc2da56220a809b5ac39ac3346 (diff)
downloadbarebox-b5d3c4c00dff9211fb271e644ae5e98aa0a0853e.tar.gz
barebox-b5d3c4c00dff9211fb271e644ae5e98aa0a0853e.tar.xz
Merge branch 'for-next/video'
Diffstat (limited to 'drivers/video/bochs/Kconfig')
-rw-r--r--drivers/video/bochs/Kconfig24
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/video/bochs/Kconfig b/drivers/video/bochs/Kconfig
new file mode 100644
index 0000000000..ae5d38a8ad
--- /dev/null
+++ b/drivers/video/bochs/Kconfig
@@ -0,0 +1,24 @@
+# SPDX-License-Identifier: GPL-2.0-only
+
+config DRIVER_VIDEO_BOCHS
+ select DRIVER_VIDEO_EDID
+ bool
+
+config DRIVER_VIDEO_BOCHS_PCI
+ bool "bochs dispi / QEMU standard VGA PCI driver"
+ select DRIVER_VIDEO_BOCHS
+ depends on PCI
+ help
+ Say yes here if you have a PCI VGA display controller that
+ implements the bochs dispi VBE extension. This is a very simple
+ interface to drive the graphical output of virtual machines
+ like bochs, VirtualBox and Qemu (-device VGA).
+
+config DRIVER_VIDEO_BOCHS_ISA
+ bool "bochs dispi / QEMU standard VGA ISA driver"
+ select DRIVER_VIDEO_BOCHS
+ help
+ Say yes here if you have a ISA (I/O ports) VGA display controller that
+ implements the bochs dispi VBE extension. This is a very simple
+ interface to drive the graphical output of virtual machines
+ like bochs, VirtualBox and Qemu (-device isa-vga).