From: Thomas Hellstrom <thomas@shipmail.org>
To: Jerome Glisse <jglisse@redhat.com>
Cc: dri-devel@lists.sf.net
Subject: Re: [PATCH 12/13] drm/ttm: remove io_ field from TTM V4
Date: Mon, 05 Apr 2010 14:17:15 +0200 [thread overview]
Message-ID: <4BB9D4CB.5030106@shipmail.org> (raw)
In-Reply-To: <1269535044-17930-13-git-send-email-jglisse@redhat.com>
Jerome Glisse wrote:
> All TTM driver have been converted to new io_mem_reserve/free
> interface which allow driver to choose and return proper io
> base, offset to core TTM for ioremapping if necessary. This
> patch remove what is now deadcode.
>
> V2 adapt to match with change in first patch of the patchset
> V3 update after io_mem_reserve/io_mem_free callback balancing
> V4 adjust to minor cleanup
>
> Signed-off-by: Jerome Glisse <jglisse@redhat.com>
>
Jerome, see comment below, apart from that, this is
Acked-by: Thomas Hellstrom <thellstrom@vmware.com>
> ---
> drivers/gpu/drm/ttm/ttm_bo.c | 22 ----------------------
> drivers/gpu/drm/ttm/ttm_bo_util.c | 29 +++++++++--------------------
> include/drm/ttm/ttm_bo_driver.h | 10 ----------
> 3 files changed, 9 insertions(+), 52 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
> index 2171f86..1f27cf2 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
> @@ -79,8 +79,6 @@ static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
> printk(KERN_ERR TTM_PFX " use_type: %d\n", man->use_type);
> printk(KERN_ERR TTM_PFX " flags: 0x%08X\n", man->flags);
> printk(KERN_ERR TTM_PFX " gpu_offset: 0x%08lX\n", man->gpu_offset);
> - printk(KERN_ERR TTM_PFX " io_offset: 0x%08lX\n", man->io_offset);
> - printk(KERN_ERR TTM_PFX " io_size: %ld\n", man->io_size);
> printk(KERN_ERR TTM_PFX " size: %llu\n", man->size);
> printk(KERN_ERR TTM_PFX " available_caching: 0x%08X\n",
> man->available_caching);
> @@ -1563,26 +1561,6 @@ bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
> return true;
> }
>
> -int ttm_bo_pci_offset(struct ttm_bo_device *bdev,
> - struct ttm_mem_reg *mem,
> - unsigned long *bus_base,
> - unsigned long *bus_offset, unsigned long *bus_size)
> -{
> - struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
> -
> - *bus_size = 0;
> - if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
> - return -EINVAL;
> -
> - if (ttm_mem_reg_is_pci(bdev, mem)) {
> - *bus_offset = mem->mm_node->start << PAGE_SHIFT;
> - *bus_size = mem->num_pages << PAGE_SHIFT;
> - *bus_base = man->io_offset + (uintptr_t)man->io_addr;
> - }
> -
> - return 0;
> -}
> -
> void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
> {
> struct ttm_bo_device *bdev = bo->bdev;
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
> index 878dc49..9f9b287 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_util.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
> @@ -83,31 +83,20 @@ EXPORT_SYMBOL(ttm_bo_move_ttm);
>
> int ttm_mem_io_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
> {
> - int ret;
> + int ret = 0;
>
> - if (bdev->driver->io_mem_reserve) {
> - if (!mem->bus.io_reserved) {
> - mem->bus.io_reserved = true;
> - ret = bdev->driver->io_mem_reserve(bdev, mem);
> - if (unlikely(ret != 0))
> - return ret;
> - }
> - } else {
> - ret = ttm_bo_pci_offset(bdev, mem, &mem->bus.base, &mem->bus.offset, &mem->bus.size);
> - if (unlikely(ret != 0))
> - return ret;
> - mem->bus.is_iomem = (mem->bus.size > 0) ? 1 : 0;
> + if (!mem->bus.io_reserved) {
> + mem->bus.io_reserved = true;
> + ret = bdev->driver->io_mem_reserve(bdev, mem);
> }
> - return 0;
> + return ret;
> }
>
> void ttm_mem_io_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
> {
> - if (bdev->driver->io_mem_reserve) {
> - if (mem->bus.io_reserved) {
> - mem->bus.io_reserved = false;
> - bdev->driver->io_mem_free(bdev, mem);
> - }
> + if (mem->bus.io_reserved) {
> + mem->bus.io_reserved = false;
> + bdev->driver->io_mem_free(bdev, mem);
> }
> }
>
> @@ -411,7 +400,7 @@ static int ttm_bo_ioremap(struct ttm_buffer_object *bo,
>
> if (!(man->flags & TTM_MEMTYPE_FLAG_NEEDS_IOREMAP)) {
> map->bo_kmap_type = ttm_bo_map_premapped;
> - map->virtual = (void *)(((u8 *) man->io_addr) + bus_offset);
> + map->virtual = (void *)(bus_base + bus_offset);
>
I think we should completely remove TTM_MEMTYPE_FLAG_NEEDS_IOREMAP. With
the new io_mem_reserve api that could be handled within the driver. I
don't think there are drivers using this flag yet, and besides, i don't
think the above code is correct anyway.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
next prev parent reply other threads:[~2010-04-05 12:17 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-25 16:37 unmappable vram V6 Jerome Glisse
2010-03-25 16:37 ` [PATCH 01/13] drm/ttm: split no_wait argument in 2 GPU or reserve wait Jerome Glisse
2010-03-25 16:37 ` [PATCH 02/13] drm/radeon/kms: update to TTM no_wait splitted argument Jerome Glisse
2010-03-25 16:37 ` [PATCH 03/13] drm/nouveau: " Jerome Glisse
2010-03-25 16:37 ` [PATCH 04/13] drm/vmwgfx: " Jerome Glisse
2010-03-25 16:37 ` [PATCH 05/13] drm/ttm: ttm_fault callback to allow driver to handle bo placement V4 Jerome Glisse
2010-03-25 16:37 ` [PATCH 06/13] drm/radeon/kms: add support for new fault callback V5 Jerome Glisse
2010-03-25 16:37 ` [PATCH 07/13] drm/nouveau/kms: add support for new TTM fault callback V3 Jerome Glisse
2010-03-25 16:37 ` [PATCH 08/13] drm/vmwgfx: " Jerome Glisse
2010-03-25 16:37 ` [PATCH 09/13] drm/radeon/kms: don't initialize TTM io memory manager field Jerome Glisse
2010-03-25 16:37 ` [PATCH 10/13] drm/nouveau/kms: " Jerome Glisse
2010-03-25 16:37 ` [PATCH 11/13] drm/vmwgfx: " Jerome Glisse
2010-03-25 16:37 ` [PATCH 12/13] drm/ttm: remove io_ field from TTM V4 Jerome Glisse
2010-03-25 16:37 ` [PATCH 13/13] drm/radeon/kms: enable use of unmappable VRAM V2 Jerome Glisse
2010-04-05 12:17 ` Thomas Hellstrom [this message]
2010-04-05 12:21 ` [PATCH 11/13] drm/vmwgfx: don't initialize TTM io memory manager field Thomas Hellstrom
2010-04-05 12:19 ` [PATCH 08/13] drm/vmwgfx: add support for new TTM fault callback V3 Thomas Hellstrom
2010-04-05 12:13 ` [PATCH 05/13] drm/ttm: ttm_fault callback to allow driver to handle bo placement V4 Thomas Hellstrom
2010-04-05 12:20 ` [PATCH 04/13] drm/vmwgfx: update to TTM no_wait splitted argument Thomas Hellstrom
2010-04-05 12:12 ` [PATCH 01/13] drm/ttm: split no_wait argument in 2 GPU or reserve wait Thomas Hellstrom
2010-04-05 12:23 ` unmappable vram V6 Thomas Hellstrom
2010-04-05 12:52 ` Jerome Glisse
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=4BB9D4CB.5030106@shipmail.org \
--to=thomas@shipmail.org \
--cc=dri-devel@lists.sf.net \
--cc=jglisse@redhat.com \
/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 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.