diff options
author | Harry Wentland <harry.wentland@amd.com> | 2023-11-08 19:36:22 +0300 |
---|---|---|
committer | Melissa Wen <melissa.srw@gmail.com> | 2024-01-02 16:04:54 +0300 |
commit | ffcc67cd79ff2e93fd0bdb837c99cbab6c59d38c (patch) | |
tree | e5c053f5a92dc808cc9563e5da71d0feede795e5 /drivers/gpu/drm/vkms | |
parent | cf8837d7204481026335461629b84ac7f4538fa5 (diff) | |
download | linux-ffcc67cd79ff2e93fd0bdb837c99cbab6c59d38c.tar.xz |
drm/vkms: Create separate Kconfig file for VKMS
This aligns with most other DRM drivers and will allow
us to add new VKMS config options without polluting
the DRM Kconfig.
v3:
- Change SPDX to GPL-2.0-only to match DRM KConfig
SPDX (Simon)
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Signed-off-by: Melissa Wen <melissa.srw@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231108163647.106853-4-harry.wentland@amd.com
Diffstat (limited to 'drivers/gpu/drm/vkms')
-rw-r--r-- | drivers/gpu/drm/vkms/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/gpu/drm/vkms/Kconfig b/drivers/gpu/drm/vkms/Kconfig new file mode 100644 index 000000000000..b9ecdebecb0b --- /dev/null +++ b/drivers/gpu/drm/vkms/Kconfig @@ -0,0 +1,15 @@ +# SPDX-License-Identifier: GPL-2.0-only + +config DRM_VKMS + tristate "Virtual KMS (EXPERIMENTAL)" + depends on DRM && MMU + select DRM_KMS_HELPER + select DRM_GEM_SHMEM_HELPER + select CRC32 + default n + help + Virtual Kernel Mode-Setting (VKMS) is used for testing or for + running GPU in a headless machines. Choose this option to get + a VKMS. + + If M is selected the module will be called vkms. |