Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Jul 2000 23:37:59 -0400 (EDT)
From:      Kenneth Wayne Culver <culverk@wam.umd.edu>
To:        freebsd-current@freebsd.org
Subject:   patch to be committed please?
Message-ID:  <Pine.GSO.4.21.0007012334420.12634-100000@rac1.wam.umd.edu>

next in thread | raw e-mail | index | archive | help
Here is a patch with the changes I made to get my soundcard to work. It
was pretty simple, it was just a matter of one more id that needed to be
added so that the ac97 stuff could be turned on. It was trying to do a
pre-ac97 2.1 init instead of what I should have been doing. Anyway, it
works now. :-)

Here it is:

--- es137x.c.old	Sun May 28 11:15:14 2000
+++ es137x.c	Sat Jul  1 23:22:00 2000
@@ -68,6 +68,7 @@
 #define ES1370_PCI_ID 0x50001274
 #define ES1371_PCI_ID 0x13711274
 #define ES1371_PCI_ID2 0x13713274
+#define ES1371_PCI_ID3 0x58801274
 
 #define ES_BUFFSIZE 4096
 
@@ -493,7 +494,7 @@
 	es->ctrl = 0;
 	es->sctrl = 0;
 	/* initialize the chips */
-	if (rev == 7 || rev >= 9) {
+	if (rev == 7 || rev >= 9 || rev == 2) {
 #define ES1371_BINTSUMM_OFF 0x07
 		bus_space_write_4(es->st, es->sh, ES1371_BINTSUMM_OFF, 0x20);
 		if (debug > 0) printf("es_init rev == 7 || rev >= 9\n");
@@ -724,7 +725,8 @@
 		device_set_desc(dev, "AudioPCI ES1370");
 		return 0;
 	} else if (pci_get_devid(dev) == ES1371_PCI_ID ||
-		   pci_get_devid(dev) == ES1371_PCI_ID2) {
+		   pci_get_devid(dev) == ES1371_PCI_ID2 ||
+		   pci_get_devid(dev) == ES1371_PCI_ID3) {
 		device_set_desc(dev, "AudioPCI ES1371");
 		return 0;
 	}
@@ -789,7 +791,8 @@
 	}
 
 	if (pci_get_devid(dev) == ES1371_PCI_ID ||
-	    pci_get_devid(dev) == ES1371_PCI_ID2) {
+	    pci_get_devid(dev) == ES1371_PCI_ID2 || 
+	    pci_get_devid(dev) == ES1371_PCI_ID3) {
 		if(-1 == es1371_init(es, pci_get_revid(dev))) {
 			device_printf(dev, "unable to initialize the card\n");
 			goto bad;



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.21.0007012334420.12634-100000>