diff options
author | Zack Rusin <zackr@vmware.com> | 2021-05-04 23:57:40 -0400 |
---|---|---|
committer | Zack Rusin <zackr@vmware.com> | 2021-05-11 13:37:16 -0400 |
commit | 523375c943e51a52bacb69fbd2b0d71a4e990878 (patch) | |
tree | 12bfa7f70921d647fa6fe17ff0212edc86d4ed73 /drivers/gpu/drm/vmwgfx/Kconfig | |
parent | 2cd80dbd35518d5900d83cdb3fb3295e5e9d820b (diff) |
drm/vmwgfx: Port vmwgfx to arm64
This change fixes all of the arm64 issues we've had in the driver.
ARM support is provided in svga version 3, for which support we've added
in previous changes. svga version 3 currently lacks many of the
advanced features (in particular 3D support is lacking) but
that will change in time.
Signed-off-by: Zack Rusin <zackr@vmware.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210505035740.286923-7-zackr@vmware.com
Diffstat (limited to 'drivers/gpu/drm/vmwgfx/Kconfig')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/Kconfig b/drivers/gpu/drm/vmwgfx/Kconfig index b3a34196935b..0060ef842b5a 100644 --- a/drivers/gpu/drm/vmwgfx/Kconfig +++ b/drivers/gpu/drm/vmwgfx/Kconfig @@ -1,7 +1,8 @@ # SPDX-License-Identifier: GPL-2.0 config DRM_VMWGFX tristate "DRM driver for VMware Virtual GPU" - depends on DRM && PCI && X86 && MMU + depends on DRM && PCI && MMU + depends on X86 || ARM64 select DRM_TTM select MAPPING_DIRTY_HELPERS # Only needed for the transitional use of drm_crtc_init - can be removed |