kern/55932:

Mark Kettenis kettenis at gnu.org
Sun Aug 24 12:30:08 PDT 2003


>Number:         55932
>Category:       kern
>Synopsis:       
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Aug 24 12:30:05 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Mark Kettenis
>Release:        FreeBSD 5.1-CURRENT amd64
>Organization:
>Environment:
FreeBSD delius.kettenis.dyndns.org 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Sat Aug 23 19:12:27 CEST 2003     kettenis at delius.kettenis.dyndns.org:/usr/obj/usr/src/sys/DELIUS  amd64

	
>Description:
	FreeBSD doesn't recognize the AC'97 part of the AMD-8111 chipset
>How-To-Repeat:
	
>Fix:
	The attached patch adds the AMD-8111 chipset to the ich sound
driver.  With this patch, things seem to work fine.  Documentation about the chipset is available here:

http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/24674.pdf

with errata here:

http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25720.pdf

--- src/sys/dev/sound/pci/ich.c.orig	Fri Aug 22 09:04:10 2003
+++ src/sys/dev/sound/pci/ich.c	Sat Aug 23 18:04:20 2003
@@ -652,6 +652,10 @@
 		device_set_desc(dev, "AMD-768");
 		return 0;
 
+	case 0x746d1022:
+		device_set_desc(dev, "AMD-8111");
+		return 0;
+
 	default:
 		return ENXIO;
 	}



>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list