From mezz@ns1.mezzweb.com  Thu Sep  2 22:12:56 2004
Return-Path: <mezz@ns1.mezzweb.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DEE6B16A4CE
	for <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <mezz@freebsd.org>
Reply-To: Jeremy Messenger <mezz@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [PATCH] Add nForce2 sound support for MSI K7N2 Delta2 Platinum
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         71317
>Category:       kern
>Synopsis:       [sound] [patch] Add nForce2 sound support for MSI K7N2 Delta2 Platinum
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    sanpei
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 02 22:20:23 GMT 2004
>Closed-Date:    Sat Mar 04 10:24:50 GMT 2006
>Last-Modified:  Sat Mar 04 10:24:50 GMT 2006
>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: <Nvidia nForce2> port 0xe400-0xe47f,0xe000-0xe0ff mem 0xe4004000-0xe4004fff irq 21 at device 6.0 on pci0
pcm0: [GIANT-LOCKED]
pcm0: <Avance Logic ALC655 AC97 Codec>
===========================================

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:
Responsible-Changed-From-To: freebsd-bugs->sound 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Thu Sep 9 21:43:33 GMT 2004 
Responsible-Changed-Why:  
Over to mailing list. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=71317 
State-Changed-From-To: open->patched 
State-Changed-By: sanpei 
State-Changed-When: Mon Sep 20 07:19:56 GMT 2004 
State-Changed-Why:  
Committed ich.c 1.44, Thanks 


Responsible-Changed-From-To: sound->sanpei 
Responsible-Changed-By: sanpei 
Responsible-Changed-When: Mon Sep 20 07:19:56 GMT 2004 
Responsible-Changed-Why:  
Committed ich.c 1.44, Thanks 

http://www.freebsd.org/cgi/query-pr.cgi?pr=71317 

From: Matteo Riondato <rionda@gufi.org>
To: bug-followup@freebsd.org
Cc: sanpei@freebsd.org
Subject: Re: kern/71317 [sound] [patch] Add nForce2 sound support for MSI K7N2 Delta2 Platinum
Date: Thu, 7 Apr 2005 22:20:27 +0200

 --7LkOrbQMr4cezO2T
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 This was committed and MFCed on Sat Oct 2 22:33:51 2004 UTC.
 As with kern/71726, I don't know if this file can be merged to
 RELENG_4, but it seems that it cannot be (it doesn't get merged to
 RELENG_4 since 19 months).
 If so, this PR can be closed.
 Best Regards
 
 
 --=20
 Rionda aka Matteo Riondato
 Disinformato per default
 G.U.F.I. Staff Member (http://www.gufi.org)
 FreeSBIE Developer (http://www.freesbie.org)
 
 --7LkOrbQMr4cezO2T
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.0 (FreeBSD)
 
 iD8DBQFCVZYK2Mp4pR7Fa+wRAtgXAKCjsl3srBCM5Yj1xNPdFrY2fKoinQCfTtsA
 Zu718nnEZoN+F0v/9BxCJak=
 =+yV7
 -----END PGP SIGNATURE-----
 
 --7LkOrbQMr4cezO2T--
State-Changed-From-To: patched->closed 
State-Changed-By: matteo 
State-Changed-When: Sat Mar 4 10:24:28 UTC 2006 
State-Changed-Why:  
Close this as it was fixed long ago 

http://www.freebsd.org/cgi/query-pr.cgi?pr=71317 
>Unformatted:
