Re: ESS1869 logical ID

1999-09-29 Thread Doug Rabson

On 29 Sep 1999, John Saunders wrote:

  
  unknown0: ESS ES1869 Plug and Play AudioDrive on isa0
  pcm0: ESS1869 at port 0x220-0x22f,0x388-0x38b,0x330-0x331 irq 5 drq 1,0 on isa0
  unknown1: ESS ES1869 Plug and Play AudioDrive at port 0x201 on isa0
  unknown2: ESS ES1869 Plug and Play AudioDrive at port 0x168-0x16f,0x36e-0x36f 
irq 9 on isa0
  
 
 Interestingly, that last device "unknown2:" looks to be an IDE interface
 for a CDROM drive. Any plans, ideas, thoughts on the PnP system assigning
 the ATA driver to this device?

The IDs are there in the ata driver but I haven't actually tried it.

 
 The middle device could possibly be a game port, although the port looks
 strange as game ports are normally port 0x200.

I have a patch for pnp joystick support which I haven't got around to
testing yet. I expect to commit that fairly soon, hopefully after making
it work on alpha.

--
Doug Rabson Mail:  [EMAIL PROTECTED]
Nonlinear Systems Ltd.  Phone: +44 181 442 9037




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ESS1869 logical ID

1999-09-28 Thread Doug Rabson

On Tue, 28 Sep 1999, Wang Shidong wrote:

 Following the suggestion of Mr. Peter Wemm, I manage to get my ESS1869
 sound card work again. The attachments are the `dmesg' message and the
 `pnpinfo -v' output. I am grateful if the ID can be added.
 
 Thank you very much.

Can you confirm that this patch matches your card:

Index: sb.c
===
RCS file: /home/ncvs/src/sys/dev/pcm/isa/sb.c,v
retrieving revision 1.24
diff -u -r1.24 sb.c
--- sb.c1999/09/28 08:25:08 1.24
+++ sb.c1999/09/28 08:46:26
@@ -1274,6 +1274,10 @@
case 0x68187316: /* ESS1868 */
s = "ESS1868";
break;
+
+   case 0x69187316: /* ESS1869 */
+   s = "ESS1869";
+   break;
}
if (s) {
device_set_desc(dev, s);

--
Doug Rabson Mail:  [EMAIL PROTECTED]
Nonlinear Systems Ltd.  Phone: +44 181 442 9037




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message