All of lore.kernel.org
 help / color / mirror / Atom feed
* Usage of dma-buf sg-tables
@ 2013-11-01 13:33 Thomas Hellstrom
  2013-11-01 19:58 ` Daniel Vetter
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Hellstrom @ 2013-11-01 13:33 UTC (permalink / raw)
  To: dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org

Hi!

Considering that the linux DMA-API states that information in an sg-list 
may be destroyed when it's mapped,
it seems to me that at least  one of the drm prime functions use invalid 
assumptions.

In particular, I don't think it's safe to assume that pages in a single 
sg-list segment are contigous after mapping, so
if we want struct page pointers we should use

pfn = dma_to_phys((sg_dma_address(sg) + p_offset*PAGE_SIZE)) >> PAGE_SHIFT

and if the pfn is valid, convert it to a struct page.

(Incorrect code is, for example, in drm_prime_sg_to_page_addr_arrays)

Or does dma-buf require that page info in sg-lists need to be kept 
across the map operation?

BTW this brings up another question: It's stated that the above function 
is needed by the TTM driver in order to do
correct fault handling. This seems odd, TTM shouldn't be able to mmap() 
or fault an imported dma-buf, right?

Thanks,
Thomas

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-11-01 19:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-01 13:33 Usage of dma-buf sg-tables Thomas Hellstrom
2013-11-01 19:58 ` Daniel Vetter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.