From dfd1e98eac2093afd7f71596d526142fe88e2bab Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Wed, 5 Jan 2000 04:27:24 +0000 Subject: Add device driver support for USB ethernet adapters based on the Kawasaki LSI KL5KUSB101B chip, including the LinkSys USB10T, the Entrega NET-USB-E45, the Peracom USB Ethernet Adapter, the 3Com 3c19250 and the ADS Technologies USB-10BT. This device is 10mbs half-duplex only, so there's miibus or ifmedia support. This device also requires firmware to be loaded into it, however KLSI allows redistribution of the firmware images (I specifically asked about this; they said it was ok). Special thanks to Annelise Anderson for getting me in touch with KLSI (eventually) and thanks to KLSI for providing the necessary programming info. Highlights: - Add driver files to /sys/dev/usb - update usbdevs and regenerate attendate files - update usb_quirks.c - Update HARDWARE.TXT and RELNOTES.TXT for i386 and alpha - Update LINT, GENERIC and others for i386, alpha and pc98 - Add man page - Add module - Update sysinstall and userconfig.c --- sys/dev/usb/usbdevs_data.h | 48 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 3 deletions(-) (limited to 'sys/dev/usb/usbdevs_data.h') diff --git a/sys/dev/usb/usbdevs_data.h b/sys/dev/usb/usbdevs_data.h index 6aa755ee4f56..9082a206ae64 100644 --- a/sys/dev/usb/usbdevs_data.h +++ b/sys/dev/usb/usbdevs_data.h @@ -4,7 +4,7 @@ * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. * * generated from: - * FreeBSD: src/sys/dev/usb/usbdevs,v 1.1 1999/11/18 18:02:44 n_hibma Exp + * FreeBSD: src/sys/dev/usb/usbdevs,v 1.2 1999/12/28 02:00:56 wpaul Exp */ /* @@ -45,6 +45,12 @@ */ struct usb_knowndev usb_knowndevs[] = { + { + USB_VENDOR_KLSI, USB_PRODUCT_KLSI_USB101, + 0, + "Kawasaki LSI", + "USB ethernet", + }, { USB_VENDOR_HP, USB_PRODUCT_HP_4100C, 0, @@ -262,7 +268,7 @@ struct usb_knowndev usb_knowndevs[] = { "ISD USB Smart Cable", }, { - USB_VENDOR_3COM, USB_PRODUCT_3COM_USR56K, + USB_VENDOR_3COMUSR, USB_PRODUCT_3COMUSR_USR56K, 0, "U.S. Robotics", "U.S.Robotics 56000 Voice Faxmodem Pro", @@ -303,6 +309,12 @@ struct usb_knowndev usb_knowndevs[] = { "Dallas Semiconductor", "J-6502 speakers", }, + { + USB_VENDOR_3COM, USB_PRODUCT_3COM_3C19250, + 0, + "3Com Corp.", + "3C19250 Ethernet adapter", + }, { USB_VENDOR_KAWATSU, USB_PRODUCT_KAWATSU_MH4000P, 0, @@ -363,6 +375,18 @@ struct usb_knowndev usb_knowndevs[] = { "Peracom Networks Inc.", "Serial Converter", }, + { + USB_VENDOR_PERACOM, USB_PRODUCT_PERACOM_ENET, + 0, + "Peracom Networks Inc.", + "Ethernet adapter", + }, + { + USB_VENDOR_PERACOM, USB_PRODUCT_PERACOM_ENET2, + 0, + "Peracom Networks Inc.", + "Ethernet adapter", + }, { USB_VENDOR_WACOM, USB_PRODUCT_WACOM_CT0405U, 0, @@ -525,6 +549,12 @@ struct usb_knowndev usb_knowndevs[] = { "Entrega", "4S serial connector", }, + { + USB_VENDOR_ENTREGA, USB_PRODUCT_ENTREGA_E45, + 0, + "Entrega", + "E45 Ethernet adapter", + }, { USB_VENDOR_ENTREGA, USB_PRODUCT_ENTREGA_CENTRONICS, 0, @@ -627,6 +657,12 @@ struct usb_knowndev usb_knowndevs[] = { "Intel", "82930 test board", }, + { + USB_VENDOR_KLSI, 0, + USB_KNOWNDEV_NOPROD, + "Kawasaki LSI", + NULL, + }, { USB_VENDOR_HP, 0, USB_KNOWNDEV_NOPROD, @@ -772,7 +808,7 @@ struct usb_knowndev usb_knowndevs[] = { NULL, }, { - USB_VENDOR_3COM, 0, + USB_VENDOR_3COMUSR, 0, USB_KNOWNDEV_NOPROD, "U.S. Robotics", NULL, @@ -813,6 +849,12 @@ struct usb_knowndev usb_knowndevs[] = { "Dallas Semiconductor", NULL, }, + { + USB_VENDOR_3COM, 0, + USB_KNOWNDEV_NOPROD, + "3Com Corp.", + NULL, + }, { USB_VENDOR_BELKIN, 0, USB_KNOWNDEV_NOPROD, -- cgit v1.3