aboutsummaryrefslogtreecommitdiff
path: root/sys/isa/sio.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-01-18 09:30:58 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-01-18 09:30:58 +0000
commit5995e84e19c8215af48134d6cb41aa8eda3f9a0b (patch)
treeb0cb93513f22a870c5a3801d8dd40ffb6658fa99 /sys/isa/sio.c
parent714dabb963d0fc62a7bea0e56c02ddbfaec491fc (diff)
downloadsrc-5995e84e19c8215af48134d6cb41aa8eda3f9a0b.tar.gz
src-5995e84e19c8215af48134d6cb41aa8eda3f9a0b.zip
Add another four device ID's for isa pnp modems. The USR's seem to use
the same vendor and logical ID. The rest I am not sure whether they are vendor or logical, but it won't hurt if I've put a vendor ID here as merely will not match. These came from the old sio-pnp code, hence the uncertainty about which ID it is.
Notes
Notes: svn path=/head/; revision=56229
Diffstat (limited to 'sys/isa/sio.c')
-rw-r--r--sys/isa/sio.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/isa/sio.c b/sys/isa/sio.c
index b44d516939d5..ab8d99c2543a 100644
--- a/sys/isa/sio.c
+++ b/sys/isa/sio.c
@@ -559,6 +559,7 @@ static struct isa_pnp_id sio_ids[] = {
{0x0034490a, NULL}, /* BRI3400 - Internal ACF Modem */
{0x00b4490a, NULL}, /* BRIB400 - Boca 56k PnP */
{0x0030320d, NULL}, /* CIR3000 - Cirrus Logic V43 */
+ {0x0100440e, NULL}, /* CRD0001 - Cardinal MVP288IV ? */
{0x1200c31e, NULL}, /* GVC0012 - VF1128HV-R9 (win modem?) */
{0x0303c31e, NULL}, /* GVC0303 - MaxTech 33.6 PnP D/F/V */
{0x0505c31e, NULL}, /* GVC0505 - GVC 56k Faxmodem */
@@ -574,6 +575,7 @@ static struct isa_pnp_id sio_ids[] = {
{0x1000eb49, NULL}, /* ROK0010 - Rockwell ? */
{0x5002734a, NULL}, /* RSS0250 - 5614Jx3(G) Internal Modem */
{0xc100ad4d, NULL}, /* SMM00C1 - Leopard 56k PnP */
+ {0x9012b04e, NULL}, /* SUP1290 - Supra ? */
{0x1013b04e, NULL}, /* SUP1310 - SupraExpress 336i PnP */
{0x8013b04e, NULL}, /* SUP1380 - SupraExpress 288i PnP Voice */
{0x8113b04e, NULL}, /* SUP1381 - SupraExpress 336i PnP Voice */
@@ -581,11 +583,13 @@ static struct isa_pnp_id sio_ids[] = {
{0x7420b04e, NULL}, /* SUP2070 - Supra ? */
{0x8020b04e, NULL}, /* SUP2080 - Supra ? */
{0x8420b04e, NULL}, /* SUP2084 - SupraExpress 56i PnP */
+ {0x7121b04e, NULL}, /* SUP2171 - SupraExpress 56i Sp? */
{0x8024b04e, NULL}, /* SUP2480 - Supra ? */
{0x01007256, NULL}, /* USR0001 - U.S. Robotics Inc., Sportster W */
{0x02007256, NULL}, /* USR0002 - U.S. Robotics Inc. Sportster 33. */
{0x04007256, NULL}, /* USR0004 - USR Sportster 14.4k */
{0x06007256, NULL}, /* USR0006 - USR Sportster 33.6k */
+ {0x11007256, NULL}, /* USR0011 - USR ? */
{0x01017256, NULL}, /* USR0101 - USR ? */
{0x30207256, NULL}, /* USR2030 - U.S.Robotics Inc. Sportster 560 */
{0x50207256, NULL}, /* USR2050 - U.S.Robotics Inc. Sportster 33. */
@@ -593,12 +597,15 @@ static struct isa_pnp_id sio_ids[] = {
{0x30307256, NULL}, /* USR3030 - U.S. Robotics 56K FAX INT */
{0x31307256, NULL}, /* USR3031 - U.S. Robotics 56K FAX INT */
{0x70307256, NULL}, /* USR3070 - U.S. Robotics 56K Voice INT */
+ {0x90307256, NULL}, /* USR3090 - USR ? */
{0x90917256, NULL}, /* USR9190 - USR 56k Voice INT */
{0x0300695c, NULL}, /* WCI0003 - Fax/Voice/Modem/Speakphone/Asvd */
{0x61f7896a, NULL}, /* ZTIF761 - Zoom ComStar 33.6 */
{0}
};
+
+
static int
sio_isa_probe(dev)
device_t dev;