aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/os_types.h
diff options
context:
space:
mode:
authorDaniel Kolesa <daniel@octaforge.org>2020-08-08 22:44:58 +0200
committerAlex Deucher <alexander.deucher@amd.com>2020-08-10 17:26:53 -0400
commitc38d444e44badc557cf29fdfdfb823604890ccfa (patch)
tree85f4e091a156b787cca909edc6e6b732263ccccf /drivers/gpu/drm/amd/display/dc/os_types.h
parentdrm/amdgpu/display: use GFP_ATOMIC in dcn20_validate_bandwidth_internal (diff)
downloadlinux-dev-c38d444e44badc557cf29fdfdfb823604890ccfa.tar.xz
linux-dev-c38d444e44badc557cf29fdfdfb823604890ccfa.zip
drm/amd/display: add DCN support for aarch64
This adds ARM64 support into the DCN. This mainly enables support for Navi graphics cards. The dcn10 changes haven't been tested, since I don't have the relevant hardware available, but there is no way to conditionally disable them, so I've done them anyway. Signed-off-by: Daniel Kolesa <daniel@octaforge.org> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/os_types.h')
-rw-r--r--drivers/gpu/drm/amd/display/dc/os_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/os_types.h b/drivers/gpu/drm/amd/display/dc/os_types.h
index c3bbfe397e8d..330acaaed79a 100644
--- a/drivers/gpu/drm/amd/display/dc/os_types.h
+++ b/drivers/gpu/drm/amd/display/dc/os_types.h
@@ -55,6 +55,10 @@
#include <asm/fpu/api.h>
#define DC_FP_START() kernel_fpu_begin()
#define DC_FP_END() kernel_fpu_end()
+#elif defined(CONFIG_ARM64)
+#include <asm/neon.h>
+#define DC_FP_START() kernel_neon_begin()
+#define DC_FP_END() kernel_neon_end()
#elif defined(CONFIG_PPC64)
#include <asm/switch_to.h>
#include <asm/cputable.h>