[PATCH 4/6] gma500: cache GEM framebuffer pages wc not uc
Alan Cox
alan at lxorguk.ukuu.org.uk
Tue Apr 24 08:42:20 PDT 2012
From: Alan Cox <alan at linux.intel.com>
Fixes the case where the modesetting driver is slower than /dev/fb.
Signed-off-by: Alan Cox <alan at linux.intel.com>
Cc: stable at kernel.org
---
drivers/gpu/drm/gma500/gtt.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/gma500/gtt.c b/drivers/gpu/drm/gma500/gtt.c
index c6465b4..db2e823 100644
--- a/drivers/gpu/drm/gma500/gtt.c
+++ b/drivers/gpu/drm/gma500/gtt.c
@@ -93,7 +93,7 @@ static int psb_gtt_insert(struct drm_device *dev, struct gtt_range *r)
pages = r->pages;
/* Make sure changes are visible to the GPU */
- set_pages_array_uc(pages, r->npage);
+ set_pages_array_wc(pages, r->npage);
/* Write our page entries into the GTT itself */
for (i = r->roll; i < r->npage; i++) {
More information about the dri-devel
mailing list