Date: Sat, 4 Nov 2006 15:15:26 +0100 From: Matteo Pillon <matteo.pillon@gmail.com> To: multimedia@freebsd.org Subject: agp not detected Message-ID: <20061104141526.GA10111@pmatthew.homeunix.org>
next in thread | raw e-mail | index | archive | help
My agp interface is not detected in 6.2-PRERELEASE, as the id is not
listed in the driver.
This simple patch solves the issue:
*** agp_ati.c.orig Fri Jul 28 12:34:31 2006
--- agp_ati.c Fri Jul 28 12:35:08 2006
***************
*** 89,94 ****
--- 89,96 ----
return ("ATI RS100 AGP bridge");
case 0xcab21002:
return ("ATI RS200 AGP bridge");
+ case 0xcbb21002:
+ return ("ATI RS200M AGP bridge");
case 0xcab31002:
return ("ATI RS250 AGP bridge");
case 0x58301002:
***************
*** 182,187 ****
--- 184,190 ----
switch (pci_get_devid(dev)) {
case 0xcab01002: /* ATI RS100 AGP bridge */
case 0xcab21002: /*ATI RS200 AGP bridge */
+ case 0xcbb21002: /*ATI RS200M AGP bridge */
case 0xcab31002: /* ATI RS250 AGP bridge */
sc->is_rs300 = 0;
apsize_reg = ATI_RS100_APSIZE;
The machine is a notebook based on a radeon igp solution.
Bye.
--
* Pillon Matteo
JID: pmatthew@ilc.pd.it
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20061104141526.GA10111>
