From: Thomas Hellstrom <thomas@shipmail.org>
To: Konrad Rzeszutek Wilk <"konrad.wilk@oracle.com"@freedesktop.org>
Cc: "dri-devel@lists.freedesktop.org" <dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH 1/5] ttm: Introduce a placeholder for DMA (bus) addresses.
Date: Thu, 27 Jan 2011 10:13:49 +0100 [thread overview]
Message-ID: <4D41374D.9020409@shipmail.org> (raw)
In-Reply-To: <1294420304-24811-2-git-send-email-konrad.wilk@oracle.com>
Hi!
Please see below comment, Otherwise
Reviewed-by: Thomas Hellstrom <thomas@shipmail.org>
On 01/07/2011 06:11 PM, Konrad Rzeszutek Wilk wrote:
> This is right now limited to only non-pool constructs.
>
> Signed-off-by: Konrad Rzeszutek Wilk<konrad.wilk at oracle.com>
> ---
> drivers/gpu/drm/ttm/ttm_page_alloc.c | 9 ++++++---
> drivers/gpu/drm/ttm/ttm_tt.c | 10 ++++++++--
> include/drm/ttm/ttm_bo_driver.h | 2 ++
> include/drm/ttm/ttm_page_alloc.h | 8 ++++++--
> 4 files changed, 22 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
> index b1e02ff..6859288 100644
> --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
> +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
> @@ -38,6 +38,7 @@
> #include<linux/mm.h>
> #include<linux/seq_file.h> /* for seq_printf */
> #include<linux/slab.h>
> +#include<linux/dma-mapping.h>
>
> #include<asm/atomic.h>
>
> @@ -662,7 +663,8 @@ out:
> * cached pages.
> */
> int ttm_get_pages(struct list_head *pages, int flags,
> - enum ttm_caching_state cstate, unsigned count)
> + enum ttm_caching_state cstate, unsigned count,
> + dma_addr_t *dma_address)
>
Indentation looks suspicious here and in other function prototypes...
> {
> struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
> struct page *p = NULL;
> @@ -720,7 +722,7 @@ int ttm_get_pages(struct list_head *pages, int flags,
> printk(KERN_ERR TTM_PFX
> "Failed to allocate extra pages "
> "for large request.");
> - ttm_put_pages(pages, 0, flags, cstate);
> + ttm_put_pages(pages, 0, flags, cstate, NULL);
> return r;
> }
> }
> @@ -731,7 +733,8 @@ int ttm_get_pages(struct list_head *pages, int flags,
>
> /* Put all pages in pages list to correct pool to wait for reuse */
> void ttm_put_pages(struct list_head *pages, unsigned page_count, int flags,
> - enum ttm_caching_state cstate)
> + enum ttm_caching_state cstate,
> + dma_addr_t *dma_address)
> {
> unsigned long irq_flags;
> struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
> diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
> index af789dc..0d39001 100644
> --- a/drivers/gpu/drm/ttm/ttm_tt.c
> +++ b/drivers/gpu/drm/ttm/ttm_tt.c
> @@ -49,12 +49,16 @@ static int ttm_tt_swapin(struct ttm_tt *ttm);
> static void ttm_tt_alloc_page_directory(struct ttm_tt *ttm)
> {
> ttm->pages = drm_calloc_large(ttm->num_pages, sizeof(*ttm->pages));
> + ttm->dma_address = drm_calloc_large(ttm->num_pages,
> + sizeof(*ttm->dma_address));
> }
>
> static void ttm_tt_free_page_directory(struct ttm_tt *ttm)
> {
> drm_free_large(ttm->pages);
> ttm->pages = NULL;
> + drm_free_large(ttm->dma_address);
> + ttm->dma_address = NULL;
> }
>
> static void ttm_tt_free_user_pages(struct ttm_tt *ttm)
> @@ -105,7 +109,8 @@ static struct page *__ttm_tt_get_page(struct ttm_tt *ttm, int index)
>
> INIT_LIST_HEAD(&h);
>
> - ret = ttm_get_pages(&h, ttm->page_flags, ttm->caching_state, 1);
> + ret = ttm_get_pages(&h, ttm->page_flags, ttm->caching_state, 1,
> + &ttm->dma_address[index]);
>
> if (ret != 0)
> return NULL;
> @@ -298,7 +303,8 @@ static void ttm_tt_free_alloced_pages(struct ttm_tt *ttm)
> count++;
> }
> }
> - ttm_put_pages(&h, count, ttm->page_flags, ttm->caching_state);
> + ttm_put_pages(&h, count, ttm->page_flags, ttm->caching_state,
> + ttm->dma_address);
> ttm->state = tt_unpopulated;
> ttm->first_himem_page = ttm->num_pages;
> ttm->last_lomem_page = -1;
> diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h
> index 8e0c848..6dc4fcc 100644
> --- a/include/drm/ttm/ttm_bo_driver.h
> +++ b/include/drm/ttm/ttm_bo_driver.h
> @@ -149,6 +149,7 @@ enum ttm_caching_state {
> * @swap_storage: Pointer to shmem struct file for swap storage.
> * @caching_state: The current caching state of the pages.
> * @state: The current binding state of the pages.
> + * @dma_address: The DMA (bus) addresses of the pages (if TTM_PAGE_FLAG_DMA32)
> *
> * This is a structure holding the pages, caching- and aperture binding
> * status for a buffer object that isn't backed by fixed (VRAM / AGP)
> @@ -173,6 +174,7 @@ struct ttm_tt {
> tt_unbound,
> tt_unpopulated,
> } state;
> + dma_addr_t *dma_address;
> };
>
> #define TTM_MEMTYPE_FLAG_FIXED (1<< 0) /* Fixed (on-card) PCI memory */
> diff --git a/include/drm/ttm/ttm_page_alloc.h b/include/drm/ttm/ttm_page_alloc.h
> index 1168214..8062890 100644
> --- a/include/drm/ttm/ttm_page_alloc.h
> +++ b/include/drm/ttm/ttm_page_alloc.h
> @@ -36,11 +36,13 @@
> * @flags: ttm flags for page allocation.
> * @cstate: ttm caching state for the page.
> * @count: number of pages to allocate.
> + * @dma_address: The DMA (bus) address of pages (if TTM_PAGE_FLAG_DMA32 set).
> */
> int ttm_get_pages(struct list_head *pages,
> int flags,
> enum ttm_caching_state cstate,
> - unsigned count);
> + unsigned count,
> + dma_addr_t *dma_address);
> /**
> * Put linked list of pages to pool.
> *
> @@ -49,11 +51,13 @@ int ttm_get_pages(struct list_head *pages,
> * count.
> * @flags: ttm flags for page allocation.
> * @cstate: ttm caching state.
> + * @dma_address: The DMA (bus) address of pages (if TTM_PAGE_FLAG_DMA32 set).
> */
> void ttm_put_pages(struct list_head *pages,
> unsigned page_count,
> int flags,
> - enum ttm_caching_state cstate);
> + enum ttm_caching_state cstate,
> + dma_addr_t *dma_address);
> /**
> * Initialize pool allocator.
> */
>
next prev parent reply other threads:[~2011-01-27 9:13 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-07 17:11 [RFC PATCH v2] Utilize the PCI API in the TTM framework Konrad Rzeszutek Wilk
2011-01-07 17:11 ` [PATCH 1/5] ttm: Introduce a placeholder for DMA (bus) addresses Konrad Rzeszutek Wilk
2011-01-27 9:13 ` Thomas Hellstrom [this message]
2011-01-07 17:11 ` [PATCH 2/5] tm: Utilize the dma_addr_t array for pages that are to in DMA32 pool Konrad Rzeszutek Wilk
2011-01-27 9:17 ` Thomas Hellstrom
2011-01-07 17:11 ` [PATCH 3/5] ttm: Expand (*populate) to support an array of DMA addresses Konrad Rzeszutek Wilk
2011-01-27 9:19 ` Thomas Hellstrom
2011-01-27 21:10 ` Konrad Rzeszutek Wilk
2011-01-07 17:11 ` [PATCH 4/5] radeon/ttm/PCIe: Use dma_addr if TTM has set it Konrad Rzeszutek Wilk
2011-01-27 21:20 ` Konrad Rzeszutek Wilk
2011-01-28 14:42 ` Jerome Glisse
2011-01-28 15:03 ` Konrad Rzeszutek Wilk
2011-02-16 15:54 ` Konrad Rzeszutek Wilk
2011-02-16 18:51 ` Jerome Glisse
2011-01-07 17:11 ` [PATCH 5/5] nouveau/ttm/PCIe: " Konrad Rzeszutek Wilk
2011-01-27 21:22 ` Konrad Rzeszutek Wilk
2011-01-07 22:21 ` [RFC PATCH v2] Utilize the PCI API in the TTM framework Ian Campbell
2011-01-08 10:41 ` Thomas Hellstrom
2011-01-10 14:25 ` Thomas Hellstrom
2011-01-10 15:21 ` Konrad Rzeszutek Wilk
2011-01-10 15:58 ` Thomas Hellstrom
2011-01-10 16:45 ` Konrad Rzeszutek Wilk
2011-01-10 20:50 ` Thomas Hellstrom
2011-01-11 15:55 ` Konrad Rzeszutek Wilk
2011-01-11 16:21 ` Alex Deucher
2011-01-11 16:59 ` Konrad Rzeszutek Wilk
2011-01-11 18:12 ` Alex Deucher
2011-01-11 18:28 ` Konrad Rzeszutek Wilk
2011-01-11 19:28 ` Alex Deucher
2011-01-12 9:12 ` Thomas Hellstrom
2011-01-12 15:19 ` Konrad Rzeszutek Wilk
2011-01-24 14:49 ` Konrad Rzeszutek Wilk
2011-01-27 9:28 ` Thomas Hellstrom
2011-01-27 21:13 ` Konrad Rzeszutek Wilk
2011-03-21 13:11 ` Michel Dänzer
2011-03-21 23:18 ` Konrad Rzeszutek Wilk
2011-03-22 13:13 ` Michel Dänzer
2011-03-22 14:54 ` Konrad Rzeszutek Wilk
2011-03-22 15:10 ` Michel Dänzer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D41374D.9020409@shipmail.org \
--to=thomas@shipmail.org \
--cc="konrad.wilk@oracle.com"@freedesktop.org \
--cc=dri-devel@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).