2 * Copyright (c) 2003 Scott Long
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/sys/dev/usb/umct.c,v 1.5 2003/11/16 12:13:39 akiyama Exp $
27 * $DragonFly: src/sys/dev/usbmisc/umct/umct.c,v 1.1 2003/12/30 01:01:47 dillon Exp $
31 * Driver for the MCT (Magic Control Technology) USB-RS232 Converter.
32 * Based on the superb documentation from the linux mct_u232 driver by
33 * Wolfgang Grandeggar <wolfgang@cec.ch>.
34 * This device smells a lot like the Belkin F5U103, except that it has
35 * suffered some mild brain-damage. This driver is based off of the ubsa.c
36 * driver from Alexander Kabaev <kan@freebsd.org>. Merging the two together
37 * might be useful, though the subtle differences might lead to lots of
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/kernel.h>
44 #include <sys/malloc.h>
47 #include <sys/interrupt.h>
49 #include <dev/usb/usb.h>
50 #include <dev/usb/usbdi.h>
51 #include <dev/usb/usbdi_util.h>
52 #include <dev/usb/usbdevs.h>
53 #include <dev/usb/ucomvar.h>
55 /* The UMCT advertises the standard 8250 UART registers */
56 #define UMCT_GET_MSR 2 /* Get Modem Status Register */
57 #define UMCT_GET_MSR_SIZE 1
58 #define UMCT_GET_LCR 6 /* Get Line Control Register */
59 #define UMCT_GET_LCR_SIZE 1
60 #define UMCT_SET_BAUD 5 /* Set the Baud Rate Divisor */
61 #define UMCT_SET_BAUD_SIZE 4
62 #define UMCT_SET_LCR 7 /* Set Line Control Register */
63 #define UMCT_SET_LCR_SIZE 1
64 #define UMCT_SET_MCR 10 /* Set Modem Control Register */
65 #define UMCT_SET_MCR_SIZE 1
67 #define UMCT_INTR_INTERVAL 100
68 #define UMCT_IFACE_INDEX 0
69 #define UMCT_CONFIG_INDEX 1
72 struct ucom_softc sc_ucom;
74 usbd_interface_handle sc_intr_iface;
76 usbd_pipe_handle sc_intr_pipe;
86 Static void umct_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
87 Static void umct_get_status(void *, int, u_char *, u_char *);
88 Static void umct_set(void *, int, int, int);
89 Static int umct_param(void *, int, struct termios *);
90 Static int umct_open(void *, int);
91 Static void umct_close(void *, int);
92 Static void umct_notify(void *);
94 Static struct ucom_callback umct_callback = {
95 umct_get_status, /* ucom_get_status */
96 umct_set, /* ucom_set */
97 umct_param, /* ucom_param */
98 NULL, /* ucom_ioctl */
99 umct_open, /* ucom_open */
100 umct_close, /* ucom_close */
101 NULL, /* ucom_read */
102 NULL /* ucom_write */
105 Static const struct umct_product {
108 } umct_products[] = {
109 { USB_VENDOR_MCT, USB_PRODUCT_MCT_USB232 },
110 { USB_VENDOR_MCT, USB_PRODUCT_MCT_SITECOM_USB232 },
111 { USB_VENDOR_MCT, USB_PRODUCT_MCT_DU_H3SP_USB232 },
112 { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U109 },
116 Static device_probe_t umct_match;
117 Static device_attach_t umct_attach;
118 Static device_detach_t umct_detach;
120 Static device_method_t umct_methods[] = {
121 DEVMETHOD(device_probe, umct_match),
122 DEVMETHOD(device_attach, umct_attach),
123 DEVMETHOD(device_detach, umct_detach),
127 Static driver_t umct_driver = {
130 sizeof(struct umct_softc)
133 DRIVER_MODULE(umct, uhub, umct_driver, ucom_devclass, usbd_driver_load, 0);
134 MODULE_DEPEND(umct, usb, 1, 1, 1);
135 MODULE_DEPEND(umct, ucom, UCOM_MINVER, UCOM_PREFVER, UCOM_MAXVER);
136 MODULE_VERSION(umct, 1);
138 Static struct ithd *umct_ithd;
142 USB_MATCH_START(umct, uaa);
145 if (uaa->iface != NULL)
146 return (UMATCH_NONE);
148 for (i = 0; umct_products[i].vendor != 0; i++) {
149 if (umct_products[i].vendor == uaa->vendor &&
150 umct_products[i].product == uaa->product) {
151 return (UMATCH_VENDOR_PRODUCT);
155 return (UMATCH_NONE);
160 USB_ATTACH_START(umct, sc, uaa);
161 usbd_device_handle dev;
162 struct ucom_softc *ucom;
163 usb_config_descriptor_t *cdesc;
164 usb_interface_descriptor_t *id;
165 usb_endpoint_descriptor_t *ed;
172 devinfo = malloc(1024, M_USBDEV, M_NOWAIT | M_ZERO);
175 bzero(sc, sizeof(struct umct_softc));
179 ucom->sc_iface = uaa->iface;
181 usbd_devinfo(dev, 0, devinfo);
182 device_set_desc_copy(self, devinfo);
183 devname = USBDEVNAME(ucom->sc_dev);
184 printf("%s: %s\n", devname, devinfo);
186 ucom->sc_bulkout_no = -1;
187 ucom->sc_bulkin_no = -1;
188 sc->sc_intr_number = -1;
189 sc->sc_intr_pipe = NULL;
191 err = usbd_set_config_index(dev, UMCT_CONFIG_INDEX, 1);
193 printf("%s: failed to set configuration: %s\n",
194 devname, usbd_errstr(err));
199 cdesc = usbd_get_config_descriptor(ucom->sc_udev);
201 printf("%s: failed to get configuration descriptor\n", devname);
206 err = usbd_device2interface_handle(dev, UMCT_IFACE_INDEX,
209 printf("%s: failed to get interface: %s\n", devname,
215 id = usbd_get_interface_descriptor(ucom->sc_iface);
216 sc->sc_iface_number = id->bInterfaceNumber;
218 for (i = 0; i < id->bNumEndpoints; i++) {
219 ed = usbd_interface2endpoint_descriptor(ucom->sc_iface, i);
221 printf("%s: no endpoint descriptor for %d\n",
228 * The real bulk-in endpoint is also marked as an interrupt.
229 * The only way to differentiate it from the real interrupt
230 * endpoint is to look at the wMaxPacketSize field.
232 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN) {
233 if (UGETW(ed->wMaxPacketSize) == 0x2) {
234 sc->sc_intr_number = ed->bEndpointAddress;
235 sc->sc_isize = UGETW(ed->wMaxPacketSize);
237 ucom->sc_bulkin_no = ed->bEndpointAddress;
238 ucom->sc_ibufsize = UGETW(ed->wMaxPacketSize);
243 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT) {
244 ucom->sc_bulkout_no = ed->bEndpointAddress;
245 if (uaa->product == USB_PRODUCT_MCT_SITECOM_USB232)
246 ucom->sc_obufsize = 16; /* device is broken */
248 ucom->sc_obufsize = UGETW(ed->wMaxPacketSize);
252 printf("%s: warning - unsupported endpoint 0x%x\n", devname,
253 ed->bEndpointAddress);
256 if (sc->sc_intr_number == -1) {
257 printf("%s: Could not fint interrupt in\n", devname);
262 sc->sc_intr_iface = ucom->sc_iface;
264 if (ucom->sc_bulkout_no == -1) {
265 printf("%s: Could not find data bulk out\n", devname);
270 ucom->sc_parent = sc;
271 ucom->sc_portno = UCOM_UNK_PORTNO;
272 ucom->sc_opkthdrlen = 0;
273 ucom->sc_callback = &umct_callback;
275 swi_add(&umct_ithd, "ucom", umct_notify, sc, SWI_TTY, 0,
278 free(devinfo, M_USBDEV);
279 USB_ATTACH_SUCCESS_RETURN;
282 free(devinfo, M_USBDEV);
283 USB_ATTACH_ERROR_RETURN;
288 USB_DETACH_START(umct, sc);
291 if (sc->sc_intr_pipe != NULL) {
292 usbd_abort_pipe(sc->sc_intr_pipe);
293 usbd_close_pipe(sc->sc_intr_pipe);
294 free(sc->sc_intr_buf, M_USBDEV);
295 sc->sc_intr_pipe = NULL;
298 sc->sc_ucom.sc_dying = 1;
299 ithread_remove_handler(sc->sc_swicookie);
300 rv = ucom_detach(&sc->sc_ucom);
305 umct_request(struct umct_softc *sc, uint8_t request, int len, uint32_t value)
307 usb_device_request_t req;
311 req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
312 req.bRequest = request;
313 USETW(req.wValue, 0);
314 USETW(req.wIndex, sc->sc_iface_number);
315 USETW(req.wLength, len);
318 err = usbd_do_request(sc->sc_ucom.sc_udev, &req, oval);
320 printf("%s: ubsa_request: %s\n",
321 USBDEVNAME(sc->sc_ucom.sc_dev), usbd_errstr(err));
326 umct_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
328 struct umct_softc *sc;
331 sc = (struct umct_softc *)priv;
332 buf = sc->sc_intr_buf;
333 if (sc->sc_ucom.sc_dying)
336 if (status != USBD_NORMAL_COMPLETION) {
337 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
340 usbd_clear_endpoint_stall_async(sc->sc_intr_pipe);
348 * Defer notifying the ucom layer as it doesn't like to be bothered
349 * from an interrupt context.
351 swi_sched(sc->sc_swicookie, 0);
355 umct_notify(void *arg)
357 struct umct_softc *sc;
359 sc = (struct umct_softc *)arg;
360 if (sc->sc_ucom.sc_dying == 0)
361 ucom_status_change(&sc->sc_ucom);
365 umct_get_status(void *addr, int portno, u_char *lsr, u_char *msr)
367 struct umct_softc *sc;
379 umct_set(void *addr, int portno, int reg, int onoff)
381 struct umct_softc *sc;
387 sc->sc_lcr |= (onoff) ? 0x40 : 0;
388 umct_request(sc, UMCT_SET_LCR, UMCT_SET_LCR_SIZE, sc->sc_lcr);
392 sc->sc_mcr |= (onoff) ? 0x01 : 0;
393 umct_request(sc, UMCT_SET_MCR, UMCT_SET_MCR_SIZE, sc->sc_mcr);
397 sc->sc_mcr |= (onoff) ? 0x02 : 0;
398 umct_request(sc, UMCT_SET_MCR, UMCT_SET_MCR_SIZE, sc->sc_mcr);
406 umct_calc_baud(u_int baud)
409 case B300: return (0x1);
410 case B600: return (0x2);
411 case B1200: return (0x3);
412 case B2400: return (0x4);
413 case B4800: return (0x6);
414 case B9600: return (0x8);
415 case B19200: return (0x9);
416 case B38400: return (0xa);
417 case B57600: return (0xb);
418 case 115200: return (0xc);
428 umct_param(void *addr, int portno, struct termios *ti)
430 struct umct_softc *sc;
434 value = umct_calc_baud(ti->c_ospeed);
435 umct_request(sc, UMCT_SET_BAUD, UMCT_SET_BAUD_SIZE, value);
437 value = sc->sc_lcr & 0x40;
439 switch (ti->c_cflag & CSIZE) {
440 case CS5: value |= 0x0; break;
441 case CS6: value |= 0x1; break;
442 case CS7: value |= 0x2; break;
443 case CS8: value |= 0x3; break;
444 default: value |= 0x0; break;
447 value |= (ti->c_cflag & CSTOPB) ? 0x4 : 0;
448 if (ti->c_cflag & PARENB) {
450 value |= (ti->c_cflag & PARODD) ? 0x0 : 0x10;
454 * XXX There doesn't seem to be a way to tell the device to use flow
459 umct_request(sc, UMCT_SET_LCR, UMCT_SET_LCR_SIZE, value);
465 umct_open(void *addr, int portno)
467 struct umct_softc *sc;
471 if (sc->sc_ucom.sc_dying) {
475 if (sc->sc_intr_number != -1 && sc->sc_intr_pipe == NULL) {
476 sc->sc_intr_buf = malloc(sc->sc_isize, M_USBDEV, M_WAITOK);
477 err = usbd_open_pipe_intr(sc->sc_intr_iface, sc->sc_intr_number,
478 USBD_SHORT_XFER_OK, &sc->sc_intr_pipe, sc, sc->sc_intr_buf,
479 sc->sc_isize, umct_intr, UMCT_INTR_INTERVAL);
481 printf("%s: cannot open interrupt pipe (addr %d)\n",
482 USBDEVNAME(sc->sc_ucom.sc_dev),
484 free(sc->sc_intr_buf, M_USBDEV);
493 umct_close(void *addr, int portno)
495 struct umct_softc *sc;
499 if (sc->sc_ucom.sc_dying)
502 if (sc->sc_intr_pipe != NULL) {
503 err = usbd_abort_pipe(sc->sc_intr_pipe);
505 printf("%s: abort interrupt pipe failed: %s\n",
506 USBDEVNAME(sc->sc_ucom.sc_dev), usbd_errstr(err));
507 err = usbd_close_pipe(sc->sc_intr_pipe);
509 printf("%s: close interrupt pipe failed: %s\n",
510 USBDEVNAME(sc->sc_ucom.sc_dev), usbd_errstr(err));
511 free(sc->sc_intr_buf, M_USBDEV);
512 sc->sc_intr_pipe = NULL;