All of lore.kernel.org
 help / color / mirror / Atom feed
* DRM not working with 2.6.11.5
@ 2005-04-16  7:09 ross
  2005-04-16  8:47 ` Dave Airlie
  0 siblings, 1 reply; 5+ messages in thread
From: ross @ 2005-04-16  7:09 UTC (permalink / raw)
  To: linux-kernel

Hello everyone,

I recently upgraded to 2.6.11.5 (back when it came out) from 2.4.
One of the reasons I upgraded was to get DRM working with my computer
again.

The AGP and DRM modules load fine, but when xdm starts, I have no
direct rendering.

The machine is an ASUS A7V8x-x with VIA chipset KT400.  The video card
is a Matrox G400 DualHead.  I've had the exact same video card working
with different motherboards.


Here is the only DRM output relevant to AGP/DRM:

Linux agpgart interface v0.100 (c) Dave Jones
[drm] Initialized drm 1.0.0 20040925
[drm:drm_fill_in_dev] *ERROR* Cannot initialize the agpgart module.
DRM: Fill_in_dev failed.

Thanks very much for any tips!


-- 
Ross Vandegrift
ross@lug.udel.edu

"The good Christian should beware of mathematicians, and all those who
make empty prophecies. The danger already exists that the mathematicians
have made a covenant with the devil to darken the spirit and to confine
man in the bonds of Hell."
	--St. Augustine, De Genesi ad Litteram, Book II, xviii, 37

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

* Re: DRM not working with 2.6.11.5
  2005-04-16  7:09 DRM not working with 2.6.11.5 ross
@ 2005-04-16  8:47 ` Dave Airlie
  2005-04-16 15:37   ` ross
  2005-04-16 16:41   ` Dave Jones
  0 siblings, 2 replies; 5+ messages in thread
From: Dave Airlie @ 2005-04-16  8:47 UTC (permalink / raw)
  To: ross@lug.udel.edu; +Cc: linux-kernel

> 
> The AGP and DRM modules load fine, but when xdm starts, I have no
> direct rendering.
> 
> The machine is an ASUS A7V8x-x with VIA chipset KT400.  The video card
> is a Matrox G400 DualHead.  I've had the exact same video card working
> with different motherboards.
> 
> Here is the only DRM output relevant to AGP/DRM:
> 
> Linux agpgart interface v0.100 (c) Dave Jones
> [drm] Initialized drm 1.0.0 20040925
> [drm:drm_fill_in_dev] *ERROR* Cannot initialize the agpgart module.

You didn't load the agp chipset module..
it would be nice if it happened automatically...

Dave.

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

* Re: DRM not working with 2.6.11.5
  2005-04-16  8:47 ` Dave Airlie
@ 2005-04-16 15:37   ` ross
  2005-04-16 16:41   ` Dave Jones
  1 sibling, 0 replies; 5+ messages in thread
From: ross @ 2005-04-16 15:37 UTC (permalink / raw)
  To: Dave Airlie; +Cc: ross@lug.udel.edu, linux-kernel

On Sat, Apr 16, 2005 at 06:47:13PM +1000, Dave Airlie wrote:
> You didn't load the agp chipset module..
> it would be nice if it happened automatically...

Spot on - thanks man.  Will update rc scripts from 2.4.  Thanks!

-- 
Ross Vandegrift
ross@lug.udel.edu

"The good Christian should beware of mathematicians, and all those who
make empty prophecies. The danger already exists that the mathematicians
have made a covenant with the devil to darken the spirit and to confine
man in the bonds of Hell."
	--St. Augustine, De Genesi ad Litteram, Book II, xviii, 37

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

* Re: DRM not working with 2.6.11.5
  2005-04-16  8:47 ` Dave Airlie
  2005-04-16 15:37   ` ross
@ 2005-04-16 16:41   ` Dave Jones
  2005-04-17  9:04     ` Arjan van de Ven
  1 sibling, 1 reply; 5+ messages in thread
From: Dave Jones @ 2005-04-16 16:41 UTC (permalink / raw)
  To: Dave Airlie; +Cc: ross@lug.udel.edu, linux-kernel

On Sat, Apr 16, 2005 at 06:47:13PM +1000, Dave Airlie wrote:
 > > 
 > > The AGP and DRM modules load fine, but when xdm starts, I have no
 > > direct rendering.
 > > 
 > > The machine is an ASUS A7V8x-x with VIA chipset KT400.  The video card
 > > is a Matrox G400 DualHead.  I've had the exact same video card working
 > > with different motherboards.
 > > 
 > > Here is the only DRM output relevant to AGP/DRM:
 > > 
 > > Linux agpgart interface v0.100 (c) Dave Jones
 > > [drm] Initialized drm 1.0.0 20040925
 > > [drm:drm_fill_in_dev] *ERROR* Cannot initialize the agpgart module.
 > 
 > You didn't load the agp chipset module..
 > it would be nice if it happened automatically...

Adam Jackson was looking into this a few days ago by making
the generic agpgart.o send hotplug events to trigger a load
of the submodules. If he comes up with something I'll throw
it at -mm if it looks sane.

		Dave


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

* Re: DRM not working with 2.6.11.5
  2005-04-16 16:41   ` Dave Jones
@ 2005-04-17  9:04     ` Arjan van de Ven
  0 siblings, 0 replies; 5+ messages in thread
From: Arjan van de Ven @ 2005-04-17  9:04 UTC (permalink / raw)
  To: Dave Jones; +Cc: Dave Airlie, ross@lug.udel.edu, linux-kernel


> Adam Jackson was looking into this a few days ago by making
> the generic agpgart.o send hotplug events to trigger a load
> of the submodules. If he comes up with something I'll throw
> it at -mm if it looks sane.


is that needed? If the agp submodules advertise a list of pci id's isn't
that enough to get them auto loaded ?

(that works for all other modules in the kernel... ;)


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

end of thread, other threads:[~2005-04-17  9:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-16  7:09 DRM not working with 2.6.11.5 ross
2005-04-16  8:47 ` Dave Airlie
2005-04-16 15:37   ` ross
2005-04-16 16:41   ` Dave Jones
2005-04-17  9:04     ` Arjan van de Ven

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.