drm: exynos: fix for mapping of dma buffers
authorRahul Sharma <rahul.sharma@samsung.com>
Mon, 5 Nov 2012 15:34:29 +0000 (21:04 +0530)
committerInki Dae <inki.dae@samsung.com>
Tue, 4 Dec 2012 05:46:00 +0000 (14:46 +0900)
commit4ddc404bc0b3750b015b021653a88943591f40f6
tree25a80c8528dde1b8147f6d1e26a3425933baf439
parentea6d66c3a797376d21b23dc8261733ce35970014
drm: exynos: fix for mapping of dma buffers

This patch fixes the problem of mapping contigous and non contigous dma buffers.

Currently page struct is calculated from the buf->dma_addr which is not the
physical address. It is replaced by buf->pages which points to the page struct
of the first page of contigous memory chunk. This gives the correct page frame
number for mapping.

Non-contigous dma buffers are described using SG table and SG lists. Each
valid SG List is pointing to a single page or group of pages which are
physically contigous. Current implementation just maps the first page of each
SG List and leave the other pages unmapped, leading to a crash. Given solution
finds the page struct for the faulting page through parsing SG table and map it.

Signed-off-by: Rahul Sharma <rahul.sharma@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
drivers/gpu/drm/exynos/exynos_drm_gem.c