public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* report: success with agp_try_unsupported=1
@ 2001-09-24 21:40 Peter Jay Salzman
  2001-09-24 21:50 ` Robert Love
  2001-09-25  3:50 ` Keith Owens
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Jay Salzman @ 2001-09-24 21:40 UTC (permalink / raw)
  To: linux-kernel

dear all,

i just built a system:

	1.3GHz amd athlon
	epox 8kha ddr motherboard
		via kt266 (vt8366, vt8233)
	768MB ddr ram
	radeon QD with 64MB video buffer, tvio

i enabled agpgart, and got the message:


  Linux agpgart interface v0.99 (c) Jeff Hartmann
  agpgart: Maximum main memory to use for agp memory: 690M
  agpgart: Unsupported Via chipset (device id: 3099), you might want to try
    agp_try_unsupported=1.
  agpgart: no supported devices found.
  [drm] Initialized radeon 1.1.1 20010405 on minor 0


i rebuilt the kernel with agpgart built as a module.  rebooted.  loaded the
agp module with:

  insmod /usr/src/linux-2.4.9/drivers/char/agp/agpgart.o agp_try_unsupported=1

loaded the radeon driver with:

  insmod /usr/src/linux-2.4.9/drivers/char/drm/radeon.o

this was successful -- DRI was enabled when i started X (and i played quake3
to reward myself).

i read that success with agp_try_unsupported=1 should be reported here, so
i'm reporting it.  please feel free to ask further questions if you want to
know about my hardware.

i do have 2 questions:

1. modprobe didn't seem to know where agpgart.o and radeon.o lives, so i had
   to resort to insmod.  is there a way of telling modprobe where to look for
   modules?

2. i recompiled the kernel but built agpgart in rather than loading it as a
   module.  i then inserted the following line into /etc/lilo.conf:

      append="agp_try_unsupported=1"

   but it didn't seem to work.  someone told me that to get agp work to work
   for my system, agpgart MUST be built as a module and you MUST pass it the
   argument agp_try_unsupported=1.  in other words, you can't build it into
   the kernel and pass the argument as a kernel parameter at boot time.

   is that true?

please cc replies to p@dirac.org.

thanks guys!
pete

-- 
"You may not use the Software in connection with any site that disparages
Microsoft, MSN, MSNBC, Expedia, or their products or services ..."
                    -- Clause from license for FrontPage 2002

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

* Re: report: success with agp_try_unsupported=1
  2001-09-24 21:40 report: success with agp_try_unsupported=1 Peter Jay Salzman
@ 2001-09-24 21:50 ` Robert Love
  2001-09-24 21:59   ` Robert Love
  2001-09-25  3:50 ` Keith Owens
  1 sibling, 1 reply; 4+ messages in thread
From: Robert Love @ 2001-09-24 21:50 UTC (permalink / raw)
  To: Peter Jay Salzman; +Cc: linux-kernel

On Mon, 2001-09-24 at 17:40, Peter Jay Salzman wrote:
> i just built a system:
> 
> 	1.3GHz amd athlon
> 	epox 8kha ddr motherboard
> 		via kt266 (vt8366, vt8233)
> 	768MB ddr ram
> 	radeon QD with 64MB video buffer, tvio
> 
> i enabled agpgart, and got the message:
> 
> 
>   Linux agpgart interface v0.99 (c) Jeff Hartmann
>   agpgart: Maximum main memory to use for agp memory: 690M
>   agpgart: Unsupported Via chipset (device id: 3099), you might want to try
>     agp_try_unsupported=1.
>   agpgart: no supported devices found.
>   [drm] Initialized radeon 1.1.1 20010405 on minor 0

I will write a patch for this to add VIA KT266 support (so you don't
need to do the agp_try_unsupported=1 mess, it will be supported
natively).  Although, the patch is going to be against 2.4.10.

I'll send it out in a sec, start downloading 2.4.10 :)

> 2. i recompiled the kernel but built agpgart in rather than loading it as a
>    module.  i then inserted the following line into /etc/lilo.conf:
> 
>       append="agp_try_unsupported=1"
> 
>    but it didn't seem to work.  someone told me that to get agp work to work
>    for my system, agpgart MUST be built as a module and you MUST pass it the
>    argument agp_try_unsupported=1.  in other words, you can't build it into

Yes, I believe this is a bug.  Maybe I should take a look at it...

agpgart doesn't read the command line, or not correctly, or something.

-- 
Robert M. Love
rml at ufl.edu
rml at tech9.net


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

* Re: report: success with agp_try_unsupported=1
  2001-09-24 21:50 ` Robert Love
@ 2001-09-24 21:59   ` Robert Love
  0 siblings, 0 replies; 4+ messages in thread
From: Robert Love @ 2001-09-24 21:59 UTC (permalink / raw)
  To: Peter Jay Salzman; +Cc: linux-kernel

On Mon, 2001-09-24 at 17:50, Robert Love wrote:
> I will write a patch for this to add VIA KT266 support (so you don't
> need to do the agp_try_unsupported=1 mess, it will be supported
> natively).  Although, the patch is going to be against 2.4.10.

I take that back, no I won't :)

I think support was added during 2.4.10-pre from a merge with Alan's
tree.

Upgrade to 2.4.10 and see if not it works.

-- 
Robert M. Love
rml at ufl.edu
rml at tech9.net


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

* Re: report: success with agp_try_unsupported=1
  2001-09-24 21:40 report: success with agp_try_unsupported=1 Peter Jay Salzman
  2001-09-24 21:50 ` Robert Love
@ 2001-09-25  3:50 ` Keith Owens
  1 sibling, 0 replies; 4+ messages in thread
From: Keith Owens @ 2001-09-25  3:50 UTC (permalink / raw)
  To: Peter Jay Salzman; +Cc: linux-kernel

On Mon, 24 Sep 2001 14:40:06 -0700, 
Peter Jay Salzman <p@dirac.org> wrote:
>1. modprobe didn't seem to know where agpgart.o and radeon.o lives, so i had
>   to resort to insmod.  is there a way of telling modprobe where to look for
>   modules?

Probably old modutils, see Documentation/Changes and check your versions.


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

end of thread, other threads:[~2001-09-25  3:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-24 21:40 report: success with agp_try_unsupported=1 Peter Jay Salzman
2001-09-24 21:50 ` Robert Love
2001-09-24 21:59   ` Robert Love
2001-09-25  3:50 ` Keith Owens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox