drm/ttm: Add ttm_set_pages_wc and ttm_set_pages_uc helper
authorHuang Rui <ray.huang@amd.com>
Wed, 1 Aug 2018 05:49:32 +0000 (13:49 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 1 Aug 2018 22:23:05 +0000 (17:23 -0500)
These two helpers will be used on set page caching.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
include/drm/ttm/ttm_set_memory.h

index a70723c..7c492b4 100644 (file)
@@ -57,6 +57,18 @@ static inline int ttm_set_pages_wb(struct page *page, int numpages)
        return set_pages_wb(page, numpages);
 }
 
+static inline int ttm_set_pages_wc(struct page *page, int numpages)
+{
+       unsigned long addr = (unsigned long)page_address(page);
+
+       return set_memory_wc(addr, numpages);
+}
+
+static inline int ttm_set_pages_uc(struct page *page, int numpages)
+{
+       return set_pages_uc(page, numpages);
+}
+
 #else /* for CONFIG_X86 */
 
 #if IS_ENABLED(CONFIG_AGP)
@@ -123,6 +135,16 @@ static inline int ttm_set_pages_wb(struct page *page, int numpages)
 
 #endif /* for CONFIG_AGP */
 
+static inline int ttm_set_pages_wc(struct page *page, int numpages)
+{
+       return 0;
+}
+
+static inline int ttm_set_pages_uc(struct page *page, int numpages)
+{
+       return 0;
+}
+
 #endif /* for CONFIG_X86 */
 
 #endif