* Re: [AGPGART] Map the graphic card to the bridge its connected to.
[not found] <200503070222.j272MJai027858@hera.kernel.org>
@ 2005-03-10 23:02 ` Benjamin Herrenschmidt
2005-03-11 0:59 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Herrenschmidt @ 2005-03-10 23:02 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: davej, Linus Torvalds, Paul Mackerras
On Wed, 2005-02-23 at 02:25 +0000, Linux Kernel Mailing List wrote:
> ChangeSet 1.1982.82.19, 2005/02/22 21:25:33-05:00, davej@delerium.kernelslacker.org
>
> [AGPGART] Map the graphic card to the bridge its connected to.
>
> Signed-off-by: Dave Jones <davej@redhat.com>
>
>
>
> generic.c | 5 +++++
> 1 files changed, 5 insertions(+)
>
>
> diff -Nru a/drivers/char/agp/generic.c b/drivers/char/agp/generic.c
> --- a/drivers/char/agp/generic.c 2005-03-06 18:22:31 -08:00
> +++ b/drivers/char/agp/generic.c 2005-03-06 18:22:31 -08:00
> @@ -636,6 +636,11 @@
> pci_dev_put(device);
> continue;
> }
> + if ((device->bus->self->vendor != bridge->dev->vendor) &&
> + (device->bus->self->device != bridge->dev->device)) {
> + pci_dev_put(device);
> + continue;
> + }
> }
>
That sounds totally bogus and blows up on pmac, please revert.
device->bus may be a host bridge, which has no bus->self -> Ooops.
Unfortunately, there is no sane way to match a host bridge with it's
eventual "self" device if it has any. The only way would be to scan for
devices of class host bridge, but that isn't even 100% reliable.
The result is that the self device (AGP bridge device) is generally a
sibling of the actual AGP card, which is source of interesting problems,
especially with power management.
Ideally, the AGP property should be implemented at the "bus instance"
level, but we don't really have a real pci bus driver layer at this
point, and we can't use normal PCI discovery to find host bridges, so
that would require arch support.
In the meantime, please revert the above, it will just blow up on a
number of setups.
Ben.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [AGPGART] Map the graphic card to the bridge its connected to.
2005-03-10 23:02 ` [AGPGART] Map the graphic card to the bridge its connected to Benjamin Herrenschmidt
@ 2005-03-11 0:59 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 2+ messages in thread
From: Benjamin Herrenschmidt @ 2005-03-11 0:59 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: davej, Linus Torvalds, Paul Mackerras
On Fri, 2005-03-11 at 10:02 +1100, Benjamin Herrenschmidt wrote:
> On Wed, 2005-02-23 at 02:25 +0000, Linux Kernel Mailing List wrote:
> > ChangeSet 1.1982.82.19, 2005/02/22 21:25:33-05:00, davej@delerium.kernelslacker.org
> >
> > [AGPGART] Map the graphic card to the bridge its connected to.
> >
> > Signed-off-by: Dave Jones <davej@redhat.com>
Note that the effect of reverting the patch gets a broken result too
(btw... the code had a spurrious pci_dev_put() too ...)
Anyway, paulus is working on a solution that should be good enough for
both cases where the AGP bridge is a sibling of the device, and where
the bridge is a parent of the device. Patch soon...
Ben.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-03-11 1:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200503070222.j272MJai027858@hera.kernel.org>
2005-03-10 23:02 ` [AGPGART] Map the graphic card to the bridge its connected to Benjamin Herrenschmidt
2005-03-11 0:59 ` Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox