From owner-freebsd-bugs@FreeBSD.ORG Thu Sep 2 22:20:24 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BAA716A4CE for ; Thu, 2 Sep 2004 22:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EBD843D31 for ; Thu, 2 Sep 2004 22:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i82MKOpi002934 for ; Thu, 2 Sep 2004 22:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i82MKNtv002901; Thu, 2 Sep 2004 22:20:23 GMT (envelope-from gnats) Resent-Date: Thu, 2 Sep 2004 22:20:23 GMT Resent-Message-Id: <200409022220.i82MKNtv002901@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jeremy Messenger Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEE6B16A4CE for ; Thu, 2 Sep 2004 22:12:56 +0000 (GMT) Received: from ns1.mezzweb.com (ip68-103-32-140.ks.ok.cox.net [68.103.32.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6866043D53 for ; Thu, 2 Sep 2004 22:12:56 +0000 (GMT) (envelope-from mezz@ns1.mezzweb.com) Received: from ns1.mezzweb.com (localhost [127.0.0.1]) by ns1.mezzweb.com (8.12.11/8.12.11) with ESMTP id i82LfWj3000704 for ; Thu, 2 Sep 2004 16:41:32 -0500 (CDT) (envelope-from mezz@ns1.mezzweb.com) Received: (from mezz@localhost) by ns1.mezzweb.com (8.12.11/8.12.11/Submit) id i82LfV6I000703; Thu, 2 Sep 2004 16:41:31 -0500 (CDT) (envelope-from mezz) Message-Id: <200409022141.i82LfV6I000703@ns1.mezzweb.com> Date: Thu, 2 Sep 2004 16:41:31 -0500 (CDT) From: Jeremy Messenger To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/71317: [PATCH] Add nForce2 sound support for MSI K7N2 Delta2 Platinum X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jeremy Messenger List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 22:20:24 -0000 >Number: 71317 >Category: kern >Synopsis: [PATCH] Add nForce2 sound support for MSI K7N2 Delta2 Platinum >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: Thu Sep 02 22:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mezz >Release: FreeBSD 5.3-BETA2 i386 >Organization: >Environment: System: FreeBSD ns1.mezzweb.com 5.3-BETA2 FreeBSD 5.2-CURRENT #0: Tue Mar 30 01:17:23 CST 2004 mezz@mezz.mezzweb.com:/usr/src/sys/i386/compile/BSDROCKS i386 >Description: Add nForce2 sound support for MSI K7N2 Delta2 Platinum (MS-6570E-010). http://www.msicomputer.com/product/p_spec.asp?model=K7N2_Delta2_Platinum&class=mb - Integrated Hardware Sound Blaster/Direct Sound AC97 audio - Chip integrated (5.1 channel H/W audio) - Direct Sound AC97 audio - 6 channel analog output - Digital SPDIF out signal compatible W/S-Bracket Before pciconf: =========================================== none8@pci0:6:0: class=0x040100 card=0x00801462 chip=0x008a10de rev=0xa1 hdr=0x00 vendor = 'NVIDIA Corporation' class = multimedia subclass = audio =========================================== After pciconf: =========================================== pcm0@pci0:6:0: class=0x040100 card=0x00801462 chip=0x008a10de rev=0xa1 hdr=0x00 vendor = 'NVIDIA Corporation' class = multimedia subclass = audio =========================================== dmesg shows: =========================================== pcm0: port 0xe400-0xe47f,0xe000-0xe0ff mem 0xe4004000-0xe4004fff irq 21 at device 6.0 on pci0 pcm0: [GIANT-LOCKED] pcm0: =========================================== My sister and brother have tested it for me by use cdcontrol and xmms, they told me that they work great with this new nForce2 sound id added. >How-To-Repeat: n/a >Fix: Not sure if it should be either "Nvidia nForce2" or "Nvidia nForce2 MCP" for the name. --- patch-sys::dev::sound::pci::ich.c begins here --- --- sys/dev/sound/pci/ich.c.orig Thu Sep 2 11:44:48 2004 +++ sys/dev/sound/pci/ich.c Thu Sep 2 11:46:25 2004 @@ -648,6 +648,10 @@ device_set_desc(dev, "Nvidia nForce2"); return 0; + case 0x008a10de: + device_set_desc(dev, "Nvidia nForce2"); + return 0; + case 0x00da10de: device_set_desc(dev, "Nvidia nForce3"); return 0; --- patch-sys::dev::sound::pci::ich.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: