Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Aug 2003 21:23:27 +0200 (CEST)
From:      Mark Kettenis <kettenis@gnu.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   kern/55932: 
Message-ID:  <200308241923.h7OJNREF000866@elgar.kettenis.dyndns.org>
Resent-Message-ID: <200308241930.h7OJU5vZ029704@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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@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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308241923.h7OJNREF000866>