diff options
author | Huacai Chen <chenhc@lemote.com> | 2016-04-19 19:19:11 +0800 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-04-22 10:24:11 +1000 |
commit | 221004c66a58949a0f25c937a6789c0839feb530 (patch) | |
tree | 6b7fb0d0838f6a03da5cf29f85fdf4327dea8714 /include/drm | |
parent | 005e8dad01d2a7b98948927d7e0c4c7c61ec2d69 (diff) | |
download | linux-221004c66a58949a0f25c937a6789c0839feb530.tar.gz linux-221004c66a58949a0f25c937a6789c0839feb530.tar.bz2 linux-221004c66a58949a0f25c937a6789c0839feb530.zip |
drm: Loongson-3 doesn't fully support wc memory
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Cc: stable@vger.kernel.org
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drm_cache.h b/include/drm/drm_cache.h index 461a0558bca4..cebecff536a3 100644 --- a/include/drm/drm_cache.h +++ b/include/drm/drm_cache.h @@ -39,6 +39,8 @@ static inline bool drm_arch_can_wc_memory(void) { #if defined(CONFIG_PPC) && !defined(CONFIG_NOT_COHERENT_CACHE) return false; +#elif defined(CONFIG_MIPS) && defined(CONFIG_CPU_LOONGSON3) + return false; #else return true; #endif |