aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Brodkin <abrodkin@synopsys.com>2016-04-27 09:02:39 -0400
committerAlexey Brodkin <abrodkin@synopsys.com>2016-04-29 07:22:32 -0400
commit8aeab995fa142523f376369e4ce0608df6727706 (patch)
treef3c63d317d6627afa3e9c61d0b61500cf55bf2e2
parentb89359bdf0f1e95a4c5f92300594ba9dde323fc4 (diff)
drm/arcpgu: use dedicated memory area for frame buffer
Now when ARC supports reserved memory areas and per-device coherent DMA allocations we may switch ARC PGU to use of those dedicated areas. One of the benefits we may move frame-buffer area out from IO Coherency aperture and so significantly reduce IOC utilization allowing less demanding peripherals to use all perks of IOC. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Dave Airlie <airlied@gmail.com> Cc: Daniel Vetter <daniel@ffwll.ch> Cc: linux-kernel@vger.kernel.org Cc: linux-snps-arc@lists.infradead.org
-rw-r--r--drivers/gpu/drm/arc/arcpgu_drv.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/arc/arcpgu_drv.c b/drivers/gpu/drm/arc/arcpgu_drv.c
index 5b35e5dbae38..76e187a5bde0 100644
--- a/drivers/gpu/drm/arc/arcpgu_drv.c
+++ b/drivers/gpu/drm/arc/arcpgu_drv.c
@@ -19,6 +19,7 @@
19#include <drm/drm_fb_cma_helper.h> 19#include <drm/drm_fb_cma_helper.h>
20#include <drm/drm_gem_cma_helper.h> 20#include <drm/drm_gem_cma_helper.h>
21#include <drm/drm_atomic_helper.h> 21#include <drm/drm_atomic_helper.h>
22#include <linux/of_reserved_mem.h>
22 23
23#include "arcpgu.h" 24#include "arcpgu.h"
24#include "arcpgu_regs.h" 25#include "arcpgu_regs.h"
@@ -135,6 +136,11 @@ static int arcpgu_load(struct drm_device *drm)
135 dev_info(drm->dev, "arc_pgu ID: 0x%x\n", 136 dev_info(drm->dev, "arc_pgu ID: 0x%x\n",
136 arc_pgu_read(arcpgu, ARCPGU_REG_ID)); 137 arc_pgu_read(arcpgu, ARCPGU_REG_ID));
137 138
139 /* Get the optional framebuffer memory resource */
140 ret = of_reserved_mem_device_init(drm->dev);
141 if (ret && ret != -ENODEV)
142 return ret;
143
138 if (dma_set_mask_and_coherent(drm->dev, DMA_BIT_MASK(32))) 144 if (dma_set_mask_and_coherent(drm->dev, DMA_BIT_MASK(32)))
139 return -ENODEV; 145 return -ENODEV;
140 146