Re: agp stuff

2003-03-12 Thread CARTER Anthony
Is your problem with sound or video?

If sound, then you need to recompile your Kernel as such:

mkdir /root/kernels
cp /usr/src/sys/i386/conf/GENERIC /root/kernels/MYKERNEL
ln -s /root/kernels/MYKERNEL /usr/src/sys/i386/conf/MYKERNEL

now edit the /root/MYKERNEL and at the end add:

options pcm
options sbc (this one is for some on-Motherboard sound)

Now, for your Nvidia problem, there is a quick solution for you, add:

options VESA

And select VESA for your card in the XFree86 Config setup. This will get
you to a stage in which you can at least run X in a decent usable
resolution. Now for the compile:

cd /usr/src
make buildworld (build kernel may need to rely on this)
make buildkernel KERNCONF=MYKERNEL
make installkernel KERNCONF=MYKERNEL

Hope this helps,

Anthony Carter

On Wed, 2003-03-12 at 00:13, David Holm wrote:
 Hi,
 I get the following error (or whatever) in my bootmessage:
 
 agp0: VIA Generic host to PCI bridge mem 0xf000-0xf7ff at device 0.0 o
 n pci0
 pcib1: could not get PCI interrupt routing table for \\_SB_.PCI0.AGP_ - AE_NOT_F
 OUND
 
 I tried playing around in the bios but couldn't find anything that would fix this. 
 Could this be
 what is causing all my nvidia problems? (and yeah, I'm running on a current kernel, 
 not
 RELENG_5_0)
 
 //David Holm
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-current in the body of the message

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message


Re: agp stuff

2003-03-12 Thread David Holm
Sound works, and as for nvidia it works as long as I don't run any 3d stuff. And the 
xf86
supplied driver works like a charm. But I'm working on some 3d code and need the 3d
acceleration, the odd thing is that it worked until I upgraded my server from 4.7 to 
5.0, I NFS
mount everything from the server except the system etc (so I was running on a CURRENT 
kernel on
the machine with the 3d hardware, but with XF86 etc compiled on 4.7).

//David

On 12 Mar 2003 11:01:10 +0100
CARTER Anthony [EMAIL PROTECTED] wrote:

 Is your problem with sound or video?
 
 If sound, then you need to recompile your Kernel as such:
 
 mkdir /root/kernels
 cp /usr/src/sys/i386/conf/GENERIC /root/kernels/MYKERNEL
 ln -s /root/kernels/MYKERNEL /usr/src/sys/i386/conf/MYKERNEL
 
 now edit the /root/MYKERNEL and at the end add:
 
 options   pcm
 options   sbc (this one is for some on-Motherboard sound)
 
 Now, for your Nvidia problem, there is a quick solution for you, add:
 
 options   VESA
 
 And select VESA for your card in the XFree86 Config setup. This will get
 you to a stage in which you can at least run X in a decent usable
 resolution. Now for the compile:
 
 cd /usr/src
 make buildworld   (build kernel may need to rely on this)
 make buildkernel KERNCONF=MYKERNEL
 make installkernel KERNCONF=MYKERNEL
 
 Hope this helps,
 
 Anthony Carter
 
 On Wed, 2003-03-12 at 00:13, David Holm wrote:
  Hi,
  I get the following error (or whatever) in my bootmessage:
  
  agp0: VIA Generic host to PCI bridge mem 0xf000-0xf7ff at device 0.0 o
  n pci0
  pcib1: could not get PCI interrupt routing table for \\_SB_.PCI0.AGP_ - AE_NOT_F
  OUND
  
  I tried playing around in the bios but couldn't find anything that would fix this. 
  Could
  this be what is causing all my nvidia problems? (and yeah, I'm running on a 
  current kernel,
  not RELENG_5_0)
  
  //David Holm
  
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-current in the body of the message
 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message


agp stuff

2003-03-11 Thread David Holm
Hi,
I get the following error (or whatever) in my bootmessage:

agp0: VIA Generic host to PCI bridge mem 0xf000-0xf7ff at device 0.0 o
n pci0
pcib1: could not get PCI interrupt routing table for \\_SB_.PCI0.AGP_ - AE_NOT_F
OUND

I tried playing around in the bios but couldn't find anything that would fix this. 
Could this be
what is causing all my nvidia problems? (and yeah, I'm running on a current kernel, not
RELENG_5_0)

//David Holm

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message


2 patches for via kt133 agp stuff.

2000-11-03 Thread Kenneth Wayne Culver

I have included two very small patches that identify the via kt133 agp
stuff on the athlon motherboards. I think the messages are ok, but if not,
somebody change them. :-)

--- pci/agp_via.c   Wed Jul 19 05:48:04 2000
+++ pci/agp_via.c.new   Fri Nov  3 14:50:58 2000
@@ -70,6 +70,8 @@
return ("VIA 82C598 (Apollo MVP3) host to PCI bridge");
case 0x06911106:
return ("VIA 82C691 (Apollo Pro) host to PCI bridge");
+   case 0x03051106:
+   return ("VIA VT8363 (KT133) host to PCI bridge");
};
 
if (pci_get_vendor(dev) == 0x1106)

--- pci/pcisupport.cWed Nov  1 14:19:36 2000
+++ pci/pcisupport.c.newFri Nov  3 14:51:06 2000
@@ -698,6 +698,8 @@
/* VIA Technologies -- vendor 0x1106 */
case 0x85981106:
return ("VIA 82C598MVP (Apollo MVP3) PCI-PCI (AGP) bridge");
+   case 0x83051106:
+   return ("VIA VT8363 (KT133) PCI-PCI (AGP) bridge");
 
/* AcerLabs -- vendor 0x10b9 */
/* Funny : The datasheet told me vendor id is "10b8",sub-vendor */





To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message