From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: "Michel Dänzer" <michel@daenzer.net>
Cc: Dave Airlie <airlied@linux.ie>, linuxppc-dev@ozlabs.org
Subject: Re: [PATCH 3/3] agp/uninorth: Unify U3 and pre-U3 insert_memory and remove_memory hooks.
Date: Thu, 13 Aug 2009 17:05:48 +1000 [thread overview]
Message-ID: <1250147148.3587.115.camel@pasglop> (raw)
In-Reply-To: <1249422665-24437-3-git-send-email-michel@daenzer.net>
On Tue, 2009-08-04 at 23:51 +0200, Michel Dänzer wrote:
> From: Michel Dänzer <daenzer@vmware.com>
>
> Signed-off-by: Michel Dänzer <daenzer@vmware.com>
> ---
Hi Michel !
While your two previous patches apply just fine, this one doesn't,
the uninorth_insert_memory() function seems to be slightly different
upstream. Does this depend on some separate yet unapplied patches ?
I'm putting 1/3 and 2/3 into my -test branch and they should hit my
-next branch in a couple of days.
Or do you prefer us to merge that via Dave ?
The thing is, stuff in -powerpc is much more likely to get some amount
of testing on actual ppc hardware than stuff in random other trees :-)
Cheers,
Ben.
> drivers/char/agp/uninorth-agp.c | 64 +++++++--------------------------------
> 1 files changed, 11 insertions(+), 53 deletions(-)
>
> diff --git a/drivers/char/agp/uninorth-agp.c b/drivers/char/agp/uninorth-agp.c
> index bc8b43a..75aa33a 100644
> --- a/drivers/char/agp/uninorth-agp.c
> +++ b/drivers/char/agp/uninorth-agp.c
> @@ -144,53 +144,7 @@ static int uninorth_configure(void)
> return 0;
> }
>
> -static int uninorth_insert_memory(struct agp_memory *mem, off_t pg_start,
> - int type)
> -{
> - int i, j, num_entries;
> - void *temp;
> - int mask_type;
> -
> - if (type != mem->type)
> - return -EINVAL;
> -
> - mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
> - if (mask_type != 0) {
> - /* We know nothing of memory types */
> - return -EINVAL;
> - }
> -
> - if (mem->page_count == 0)
> - return 0;
> -
> - temp = agp_bridge->current_size;
> - num_entries = A_SIZE_32(temp)->num_entries;
> -
> - if ((pg_start + mem->page_count) > num_entries)
> - return -EINVAL;
> -
> - j = pg_start;
> -
> - while (j < (pg_start + mem->page_count)) {
> - if (agp_bridge->gatt_table[j])
> - return -EBUSY;
> - j++;
> - }
> -
> - for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
> - agp_bridge->gatt_table[j] =
> - cpu_to_le32((page_to_phys(mem->pages[i]) & 0xFFFFF000UL) | 0x1UL);
> - flush_dcache_range((unsigned long)__va(page_to_phys(mem->pages[i])),
> - (unsigned long)__va(page_to_phys(mem->pages[i]))+0x1000);
> - }
> - (void)in_le32((volatile u32*)&agp_bridge->gatt_table[pg_start]);
> - mb();
> -
> - uninorth_tlbflush(mem);
> - return 0;
> -}
> -
> -static int u3_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
> +static int uninorth_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
> {
> int i, num_entries;
> void *temp;
> @@ -219,14 +173,18 @@ static int u3_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
> for (i = 0; i < mem->page_count; ++i) {
> if (gp[i]) {
> dev_info(&agp_bridge->dev->dev,
> - "u3_insert_memory: entry 0x%x occupied (%x)\n",
> + "uninorth_insert_memory: entry 0x%x occupied (%x)\n",
> i, gp[i]);
> return -EBUSY;
> }
> }
>
> for (i = 0; i < mem->page_count; i++) {
> - gp[i] = (page_to_phys(mem->pages[i]) >> PAGE_SHIFT) | 0x80000000UL;
> + if (is_u3)
> + gp[i] = (page_to_phys(mem->pages[i]) >> PAGE_SHIFT) | 0x80000000UL;
> + else
> + gp[i] = cpu_to_le32((page_to_phys(mem->pages[i]) & 0xFFFFF000UL) |
> + 0x1UL);
> flush_dcache_range((unsigned long)__va(page_to_phys(mem->pages[i])),
> (unsigned long)__va(page_to_phys(mem->pages[i]))+0x1000);
> }
> @@ -236,7 +194,7 @@ static int u3_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
> return 0;
> }
>
> -int u3_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
> +int uninorth_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
> {
> size_t i;
> u32 *gp;
> @@ -551,7 +509,7 @@ const struct agp_bridge_driver uninorth_agp_driver = {
> .create_gatt_table = uninorth_create_gatt_table,
> .free_gatt_table = uninorth_free_gatt_table,
> .insert_memory = uninorth_insert_memory,
> - .remove_memory = agp_generic_remove_memory,
> + .remove_memory = uninorth_remove_memory,
> .alloc_by_type = agp_generic_alloc_by_type,
> .free_by_type = agp_generic_free_by_type,
> .agp_alloc_page = agp_generic_alloc_page,
> @@ -577,8 +535,8 @@ const struct agp_bridge_driver u3_agp_driver = {
> .agp_enable = uninorth_agp_enable,
> .create_gatt_table = uninorth_create_gatt_table,
> .free_gatt_table = uninorth_free_gatt_table,
> - .insert_memory = u3_insert_memory,
> - .remove_memory = u3_remove_memory,
> + .insert_memory = uninorth_insert_memory,
> + .remove_memory = uninorth_remove_memory,
> .alloc_by_type = agp_generic_alloc_by_type,
> .free_by_type = agp_generic_free_by_type,
> .agp_alloc_page = agp_generic_alloc_page,
> --
> 1.6.3.3
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
next prev parent reply other threads:[~2009-08-13 7:06 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-04 21:51 [PATCH 1/3] agp/uninorth: Allow larger aperture sizes on pre-U3 bridges Michel Dänzer
2009-08-04 21:51 ` [PATCH 2/3] agp/uninorth: Simplify cache flushing Michel Dänzer
2009-08-04 21:51 ` [PATCH 3/3] agp/uninorth: Unify U3 and pre-U3 insert_memory and remove_memory hooks Michel Dänzer
2009-08-13 7:05 ` Benjamin Herrenschmidt [this message]
2009-08-13 8:15 ` Michel Dänzer
2009-08-20 0:47 ` Benjamin Herrenschmidt
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=1250147148.3587.115.camel@pasglop \
--to=benh@kernel.crashing.org \
--cc=airlied@linux.ie \
--cc=linuxppc-dev@ozlabs.org \
--cc=michel@daenzer.net \
/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).