summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm/ttm_tt.c
diff options
context:
space:
mode:
authorKonrad Rzeszutek Wilk2010-12-02 16:24:13 +0100
committerKonrad Rzeszutek Wilk2011-01-27 22:07:58 +0100
commit27e8b237944af967e0a808580278d432cb028455 (patch)
tree28d1b8ef8ad2477afeb7874f3bdf5e86a9434e96 /drivers/gpu/drm/ttm/ttm_tt.c
parentttm: Utilize the DMA API for pages that have TTM_PAGE_FLAG_DMA32 set. (diff)
downloadkernel-qcow2-linux-27e8b237944af967e0a808580278d432cb028455.tar.gz
kernel-qcow2-linux-27e8b237944af967e0a808580278d432cb028455.tar.xz
kernel-qcow2-linux-27e8b237944af967e0a808580278d432cb028455.zip
ttm: Expand (*populate) to support an array of DMA addresses.
We pass in the array of ttm pages to be populated in the GART/MM of the card (or AGP). Patch titled: "ttm: Utilize the DMA API for pages that have TTM_PAGE_FLAG_DMA32 set." uses the DMA API to make those pages have a proper DMA addresses (in the situation where page_to_phys or virt_to_phys do not give use the DMA (bus) address). Since we are using the DMA API on those pages, we should pass in the DMA address to this function so it can save it in its proper fields (later patches use it). [v2: Added reviewed-by tag] Reviewed-by: Thomas Hellstrom <thellstrom@shipmail.org> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Tested-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_tt.c')
-rw-r--r--drivers/gpu/drm/ttm/ttm_tt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
index 0d39001259fb..86d5b1745a45 100644
--- a/drivers/gpu/drm/ttm/ttm_tt.c
+++ b/drivers/gpu/drm/ttm/ttm_tt.c
@@ -169,7 +169,7 @@ int ttm_tt_populate(struct ttm_tt *ttm)
}
be->func->populate(be, ttm->num_pages, ttm->pages,
- ttm->dummy_read_page);
+ ttm->dummy_read_page, ttm->dma_address);
ttm->state = tt_unbound;
return 0;
}