Re: [PATCH 3/5] drm: add ARM64 flush implementations

2018-01-30 Thread Daniel Vetter
On Wed, Jan 24, 2018 at 12:00:59PM +, Robin Murphy wrote: > On 24/01/18 02:56, Gurchetan Singh wrote: > > This patch uses the __dma_map_area function to flush the cache > > on ARM64. > > > > v2: Don't use DMA API, call functions directly (Daniel) > > > > Signed-off-by: Gurchetan Singh > > --

Re: [PATCH 3/5] drm: add ARM64 flush implementations

2018-01-24 Thread Russell King - ARM Linux
On Wed, Jan 24, 2018 at 12:00:59PM +, Robin Murphy wrote: > On 24/01/18 02:56, Gurchetan Singh wrote: > >This patch uses the __dma_map_area function to flush the cache > >on ARM64. > > > >v2: Don't use DMA API, call functions directly (Daniel) > > > >Signed-off-by: Gurchetan Singh > >--- > >

Re: [PATCH 3/5] drm: add ARM64 flush implementations

2018-01-24 Thread Robin Murphy
On 24/01/18 12:36, Russell King - ARM Linux wrote: On Wed, Jan 24, 2018 at 12:00:59PM +, Robin Murphy wrote: On 24/01/18 02:56, Gurchetan Singh wrote: This patch uses the __dma_map_area function to flush the cache on ARM64. v2: Don't use DMA API, call functions directly (Daniel) Signed-of

Re: [PATCH 3/5] drm: add ARM64 flush implementations

2018-01-24 Thread Robin Murphy
On 24/01/18 02:56, Gurchetan Singh wrote: This patch uses the __dma_map_area function to flush the cache on ARM64. v2: Don't use DMA API, call functions directly (Daniel) Signed-off-by: Gurchetan Singh --- drivers/gpu/drm/drm_cache.c | 13 + 1 file changed, 13 insertions(+) dif

[PATCH 3/5] drm: add ARM64 flush implementations

2018-01-23 Thread Gurchetan Singh
This patch uses the __dma_map_area function to flush the cache on ARM64. v2: Don't use DMA API, call functions directly (Daniel) Signed-off-by: Gurchetan Singh --- drivers/gpu/drm/drm_cache.c | 13 + 1 file changed, 13 insertions(+) diff --git a/drivers/gpu/drm/drm_cache.c b/driver