Home | History | Annotate | Line # | Download | only in usb
uftdi.c revision 1.76.6.2
      1 /*	$NetBSD: uftdi.c,v 1.76.6.2 2024/04/28 13:07:17 martin Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Lennart Augustsson (lennart (at) augustsson.net).
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 __KERNEL_RCSID(0, "$NetBSD: uftdi.c,v 1.76.6.2 2024/04/28 13:07:17 martin Exp $");
     34 
     35 #ifdef _KERNEL_OPT
     36 #include "opt_usb.h"
     37 #endif
     38 
     39 #include <sys/param.h>
     40 #include <sys/systm.h>
     41 #include <sys/kernel.h>
     42 #include <sys/device.h>
     43 #include <sys/conf.h>
     44 #include <sys/tty.h>
     45 
     46 #include <dev/usb/usb.h>
     47 
     48 #include <dev/usb/usbdi.h>
     49 #include <dev/usb/usbdi_util.h>
     50 #include <dev/usb/usbdivar.h>
     51 #include <dev/usb/usbdevs.h>
     52 
     53 #include <dev/usb/ucomvar.h>
     54 
     55 #include <dev/usb/uftdireg.h>
     56 
     57 #ifdef UFTDI_DEBUG
     58 #define DPRINTF(x)	if (uftdidebug) printf x
     59 #define DPRINTFN(n,x)	if (uftdidebug>(n)) printf x
     60 int uftdidebug = 0;
     61 #else
     62 #define DPRINTF(x)
     63 #define DPRINTFN(n,x)
     64 #endif
     65 
     66 #define UFTDI_CONFIG_NO		1
     67 
     68 /*
     69  * These are the default number of bytes transferred per frame if the
     70  * endpoint doesn't tell us.  The output buffer size is a hard limit
     71  * for devices that use a 6-bit size encoding.
     72  */
     73 #define UFTDIIBUFSIZE 64
     74 #define UFTDIOBUFSIZE 64
     75 
     76 /*
     77  * Magic constants!  Where do these come from?  They're what Linux uses...
     78  */
     79 #define	UFTDI_MAX_IBUFSIZE	512
     80 #define	UFTDI_MAX_OBUFSIZE	256
     81 
     82 struct uftdi_softc {
     83 	device_t		sc_dev;		/* base device */
     84 	struct usbd_device *	sc_udev;	/* device */
     85 	struct usbd_interface *	sc_iface;	/* interface */
     86 	int			sc_iface_no;
     87 
     88 	enum uftdi_type		sc_type;
     89 	u_int			sc_flags;
     90 #define FLAGS_BAUDCLK_12M	0x00000001
     91 #define FLAGS_ROUNDOFF_232A	0x00000002
     92 #define FLAGS_BAUDBITS_HINDEX	0x00000004
     93 	u_int			sc_hdrlen;
     94 	u_int			sc_chiptype;
     95 
     96 	u_char			sc_msr;
     97 	u_char			sc_lsr;
     98 
     99 	device_t		sc_subdev;
    100 
    101 	bool			sc_dying;
    102 
    103 	u_int			last_lcr;
    104 };
    105 
    106 static void	uftdi_get_status(void *, int, u_char *, u_char *);
    107 static void	uftdi_set(void *, int, int, int);
    108 static int	uftdi_param(void *, int, struct termios *);
    109 static int	uftdi_open(void *, int);
    110 static void	uftdi_read(void *, int, u_char **, uint32_t *);
    111 static void	uftdi_write(void *, int, u_char *, u_char *, uint32_t *);
    112 static void	uftdi_break(void *, int, int);
    113 
    114 static const struct ucom_methods uftdi_methods = {
    115 	.ucom_get_status = uftdi_get_status,
    116 	.ucom_set = uftdi_set,
    117 	.ucom_param = uftdi_param,
    118 	.ucom_open = uftdi_open,
    119 	.ucom_read = uftdi_read,
    120 	.ucom_write = uftdi_write,
    121 };
    122 
    123 /*
    124  * The devices default to UFTDI_TYPE_8U232AM.
    125  * Remember to update uftdi_attach() if it should be UFTDI_TYPE_SIO instead
    126  */
    127 static const struct usb_devno uftdi_devs[] = {
    128 	{ USB_VENDOR_BBELECTRONICS, USB_PRODUCT_BBELECTRONICS_USOTL4 },
    129 	{ USB_VENDOR_FALCOM, USB_PRODUCT_FALCOM_TWIST },
    130 	{ USB_VENDOR_FALCOM, USB_PRODUCT_FALCOM_SAMBA },
    131 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_230X },
    132 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_232H },
    133 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_232RL },
    134 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_2232C },
    135 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_4232H },
    136 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_8U100AX },
    137 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_8U232AM },
    138 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_KW },
    139 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_YS },
    140 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_Y6 },
    141 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_Y8 },
    142 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_IC },
    143 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_DB9 },
    144 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_RS232 },
    145 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MHAM_Y9 },
    146 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_COASTAL_TNCX },
    147 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_CTI_485_MINI },
    148 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_CTI_NANO_485 },
    149 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SEMC_DSS20 },
    150 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_LK202_24_USB },
    151 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_LK204_24_USB },
    152 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_MX200_USB },
    153 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_MX4_MX5_USB },
    154 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_CFA_631 },
    155 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_CFA_632 },
    156 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_CFA_633 },
    157 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_CFA_634 },
    158 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_LCD_CFA_635 },
    159 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_OPENRD_JTAGKEY },
    160 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_BEAGLEBONE },
    161 	{ USB_VENDOR_FTDI, USB_PRODUCT_FTDI_MAXSTREAM_PKG_U },
    162 	{ USB_VENDOR_xxFTDI, USB_PRODUCT_xxFTDI_SHEEVAPLUG_JTAG },
    163 	{ USB_VENDOR_INTREPIDCS, USB_PRODUCT_INTREPIDCS_VALUECAN },
    164 	{ USB_VENDOR_INTREPIDCS, USB_PRODUCT_INTREPIDCS_NEOVI },
    165 	{ USB_VENDOR_MELCO, USB_PRODUCT_MELCO_PCOPRS1 },
    166 	{ USB_VENDOR_RATOC, USB_PRODUCT_RATOC_REXUSB60F },
    167 	{ USB_VENDOR_RTSYS, USB_PRODUCT_RTSYS_CT57A },
    168 	{ USB_VENDOR_RTSYS, USB_PRODUCT_RTSYS_RTS03 },
    169 	{ USB_VENDOR_SEALEVEL, USB_PRODUCT_SEALEVEL_USBSERIAL },
    170 	{ USB_VENDOR_SEALEVEL, USB_PRODUCT_SEALEVEL_SEAPORT4P1 },
    171 	{ USB_VENDOR_SEALEVEL, USB_PRODUCT_SEALEVEL_SEAPORT4P2 },
    172 	{ USB_VENDOR_SEALEVEL, USB_PRODUCT_SEALEVEL_SEAPORT4P3 },
    173 	{ USB_VENDOR_SEALEVEL, USB_PRODUCT_SEALEVEL_SEAPORT4P4 },
    174 	{ USB_VENDOR_SIIG2, USB_PRODUCT_SIIG2_US2308 },
    175 	{ USB_VENDOR_MISC, USB_PRODUCT_MISC_TELLSTICK },
    176 	{ USB_VENDOR_MISC, USB_PRODUCT_MISC_TELLSTICK_DUO },
    177 };
    178 #define uftdi_lookup(v, p) usb_lookup(uftdi_devs, v, p)
    179 
    180 static int	uftdi_match(device_t, cfdata_t, void *);
    181 static void	uftdi_attach(device_t, device_t, void *);
    182 static void	uftdi_childdet(device_t, device_t);
    183 static int	uftdi_detach(device_t, int);
    184 
    185 CFATTACH_DECL2_NEW(uftdi, sizeof(struct uftdi_softc), uftdi_match,
    186     uftdi_attach, uftdi_detach, NULL, NULL, uftdi_childdet);
    187 
    188 struct uftdi_match_quirk_entry {
    189 	uint16_t	vendor_id;
    190 	uint16_t	product_id;
    191 	int		iface_no;
    192 	const char *	vendor_str;
    193 	const char *	product_str;
    194 	int		match_ret;
    195 };
    196 
    197 static const struct uftdi_match_quirk_entry uftdi_match_quirks[] = {
    198 	/*
    199 	 * The Tigard board (https://github.com/tigard-tools/tigard)
    200 	 * has two interfaces, one of which is meant to act as a
    201 	 * regular USB serial port (interface 0), the other of which
    202 	 * is meant for other protocols (SWD, JTAG, etc.).  We must
    203 	 * reject interface 1 so that ugenif matches, thus allowing
    204 	 * full user-space control of that port.
    205 	 */
    206 	{
    207 	  .vendor_id	= USB_VENDOR_FTDI,
    208 	  .product_id	= USB_PRODUCT_FTDI_SERIAL_2232C,
    209 	  .iface_no	= 1,
    210 	  .vendor_str	= "SecuringHardware.com",
    211 	  .product_str	= "Tigard V1.1",
    212 	  .match_ret	= UMATCH_NONE,
    213 	},
    214 	/*
    215 	 * The SiPEED Tang Nano 9K (and other SiPEED Tang FPGA development
    216 	 * boards) have an FT2232 on-board, wired up only for JTAG.
    217 	 */
    218 	{
    219 	  .vendor_id	= USB_VENDOR_FTDI,
    220 	  .product_id	= USB_PRODUCT_FTDI_SERIAL_2232C,
    221 	  .iface_no	= -1,
    222 	  .vendor_str	= "SIPEED",
    223 	  .product_str	= "JTAG Debugger",
    224 	  .match_ret	= UMATCH_NONE,
    225 	},
    226 };
    227 
    228 static int
    229 uftdi_quirk_match(struct usbif_attach_arg *uiaa, int rv)
    230 {
    231 	struct usbd_device *dev = uiaa->uiaa_device;
    232 	const struct uftdi_match_quirk_entry *q;
    233 	int i;
    234 
    235 	for (i = 0; i < __arraycount(uftdi_match_quirks); i++) {
    236 		q = &uftdi_match_quirks[i];
    237 		if (uiaa->uiaa_vendor != q->vendor_id ||
    238 		    uiaa->uiaa_product != q->product_id ||
    239 		    (q->iface_no != -1 && uiaa->uiaa_ifaceno != q->iface_no)) {
    240 			continue;
    241 		}
    242 		if (q->vendor_str != NULL &&
    243 		    (dev->ud_vendor == NULL ||
    244 		     strcmp(dev->ud_vendor, q->vendor_str) != 0)) {
    245 			continue;
    246 		}
    247 		if (q->product_str != NULL &&
    248 		    (dev->ud_product == NULL ||
    249 		     strcmp(dev->ud_product, q->product_str) != 0)) {
    250 			continue;
    251 		}
    252 		/*
    253 		 * Got a match!
    254 		 */
    255 		rv = q->match_ret;
    256 		break;
    257 	}
    258 	return rv;
    259 }
    260 
    261 static int
    262 uftdi_match(device_t parent, cfdata_t match, void *aux)
    263 {
    264 	struct usbif_attach_arg *uiaa = aux;
    265 	int rv;
    266 
    267 	DPRINTFN(20,("uftdi: vendor=%#x, product=%#x\n",
    268 		     uiaa->uiaa_vendor, uiaa->uiaa_product));
    269 
    270 	if (uiaa->uiaa_configno != UFTDI_CONFIG_NO)
    271 		return UMATCH_NONE;
    272 
    273 	rv = uftdi_lookup(uiaa->uiaa_vendor, uiaa->uiaa_product) != NULL ?
    274 		UMATCH_VENDOR_PRODUCT_CONF_IFACE : UMATCH_NONE;
    275 	if (rv != UMATCH_NONE) {
    276 		rv = uftdi_quirk_match(uiaa, rv);
    277 	}
    278 	return rv;
    279 }
    280 
    281 static void
    282 uftdi_attach(device_t parent, device_t self, void *aux)
    283 {
    284 	struct uftdi_softc *sc = device_private(self);
    285 	struct usbif_attach_arg *uiaa = aux;
    286 	struct usbd_device *dev = uiaa->uiaa_device;
    287 	struct usbd_interface *iface = uiaa->uiaa_iface;
    288 	usb_device_descriptor_t *ddesc;
    289 	usb_interface_descriptor_t *id;
    290 	usb_endpoint_descriptor_t *ed;
    291 	char *devinfop;
    292 	int i;
    293 	struct ucom_attach_args ucaa;
    294 
    295 	DPRINTFN(10,("\nuftdi_attach: sc=%p\n", sc));
    296 
    297 	aprint_naive("\n");
    298 	aprint_normal("\n");
    299 
    300 	devinfop = usbd_devinfo_alloc(dev, 0);
    301 	aprint_normal_dev(self, "%s\n", devinfop);
    302 	usbd_devinfo_free(devinfop);
    303 
    304 	sc->sc_dev = self;
    305 	sc->sc_udev = dev;
    306 	sc->sc_dying = false;
    307 	sc->sc_iface_no = uiaa->uiaa_ifaceno;
    308 	sc->sc_type = UFTDI_TYPE_8U232AM; /* most devices are post-8U232AM */
    309 	sc->sc_hdrlen = 0;
    310 
    311 	ddesc = usbd_get_device_descriptor(dev);
    312 	sc->sc_chiptype = UGETW(ddesc->bcdDevice);
    313 
    314 	switch (sc->sc_chiptype) {
    315 	case 0x0200:
    316 		if (ddesc->iSerialNumber != 0)
    317 			sc->sc_flags |= FLAGS_ROUNDOFF_232A;
    318 		ucaa.ucaa_portno = 0;
    319 		break;
    320 	case 0x0400:
    321 		ucaa.ucaa_portno = 0;
    322 		break;
    323 	case 0x0500:
    324 		sc->sc_flags |= FLAGS_BAUDBITS_HINDEX;
    325 		ucaa.ucaa_portno = FTDI_PIT_SIOA + sc->sc_iface_no;
    326 		break;
    327 	case 0x0600:
    328 		ucaa.ucaa_portno = 0;
    329 		break;
    330 	case 0x0700:
    331 	case 0x0800:
    332 	case 0x0900:
    333 		sc->sc_flags |= FLAGS_BAUDCLK_12M;
    334 		sc->sc_flags |= FLAGS_BAUDBITS_HINDEX;
    335 		ucaa.ucaa_portno = FTDI_PIT_SIOA + sc->sc_iface_no;
    336 		break;
    337 	case 0x1000:
    338 		sc->sc_flags |= FLAGS_BAUDBITS_HINDEX;
    339 		ucaa.ucaa_portno = FTDI_PIT_SIOA + sc->sc_iface_no;
    340 		break;
    341 	default:
    342 		if (sc->sc_chiptype < 0x0200) {
    343 			sc->sc_type = UFTDI_TYPE_SIO;
    344 			sc->sc_hdrlen = 1;
    345 		}
    346 		ucaa.ucaa_portno = 0;
    347 		break;
    348 	}
    349 
    350 	id = usbd_get_interface_descriptor(iface);
    351 
    352 	sc->sc_iface = iface;
    353 
    354 	ucaa.ucaa_bulkin = ucaa.ucaa_bulkout = -1;
    355 	ucaa.ucaa_ibufsize = ucaa.ucaa_obufsize = 0;
    356 	for (i = 0; i < id->bNumEndpoints; i++) {
    357 		int addr, dir, attr;
    358 		ed = usbd_interface2endpoint_descriptor(iface, i);
    359 		if (ed == NULL) {
    360 			aprint_error_dev(self,
    361 			    "could not read endpoint descriptor\n");
    362 			goto bad;
    363 		}
    364 
    365 		addr = ed->bEndpointAddress;
    366 		dir = UE_GET_DIR(ed->bEndpointAddress);
    367 		attr = ed->bmAttributes & UE_XFERTYPE;
    368 		if (dir == UE_DIR_IN && attr == UE_BULK) {
    369 			ucaa.ucaa_bulkin = addr;
    370 			ucaa.ucaa_ibufsize = UGETW(ed->wMaxPacketSize);
    371 			if (ucaa.ucaa_ibufsize >= UFTDI_MAX_IBUFSIZE)
    372 				ucaa.ucaa_ibufsize = UFTDI_MAX_IBUFSIZE;
    373 		} else if (dir == UE_DIR_OUT && attr == UE_BULK) {
    374 			ucaa.ucaa_bulkout = addr;
    375 			ucaa.ucaa_obufsize = UGETW(ed->wMaxPacketSize)
    376 			    - sc->sc_hdrlen;
    377 			if (ucaa.ucaa_obufsize >= UFTDI_MAX_OBUFSIZE)
    378 				ucaa.ucaa_obufsize = UFTDI_MAX_OBUFSIZE;
    379 			/* Limit length if we have a 6-bit header.  */
    380 			if ((sc->sc_hdrlen > 0) &&
    381 			    (ucaa.ucaa_obufsize > UFTDIOBUFSIZE))
    382 				ucaa.ucaa_obufsize = UFTDIOBUFSIZE;
    383 		} else {
    384 			aprint_error_dev(self, "unexpected endpoint\n");
    385 			goto bad;
    386 		}
    387 	}
    388 	if (ucaa.ucaa_bulkin == -1) {
    389 		aprint_error_dev(self, "Could not find data bulk in\n");
    390 		goto bad;
    391 	}
    392 	if (ucaa.ucaa_bulkout == -1) {
    393 		aprint_error_dev(self, "Could not find data bulk out\n");
    394 		goto bad;
    395 	}
    396 
    397 	/* ucaa_bulkin, ucaa_bulkout set above */
    398 	if (ucaa.ucaa_ibufsize == 0)
    399 		ucaa.ucaa_ibufsize = UFTDIIBUFSIZE;
    400 	ucaa.ucaa_ibufsizepad = ucaa.ucaa_ibufsize;
    401 	if (ucaa.ucaa_obufsize == 0)
    402 		ucaa.ucaa_obufsize = UFTDIOBUFSIZE - sc->sc_hdrlen;
    403 	ucaa.ucaa_opkthdrlen = sc->sc_hdrlen;
    404 	ucaa.ucaa_device = dev;
    405 	ucaa.ucaa_iface = iface;
    406 	ucaa.ucaa_methods = &uftdi_methods;
    407 	ucaa.ucaa_arg = sc;
    408 	ucaa.ucaa_info = NULL;
    409 
    410 	DPRINTF(("uftdi: in=%#x out=%#x isize=%#x osize=%#x\n",
    411 		ucaa.ucaa_bulkin, ucaa.ucaa_bulkout,
    412 		ucaa.ucaa_ibufsize, ucaa.ucaa_obufsize));
    413 	sc->sc_subdev = config_found(self, &ucaa, ucomprint,
    414 	    CFARGS(.submatch = ucomsubmatch));
    415 
    416 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev);
    417 
    418 	if (!pmf_device_register(self, NULL, NULL))
    419 		aprint_error_dev(self, "couldn't establish power handler\n");
    420 
    421 	return;
    422 
    423 bad:
    424 	DPRINTF(("uftdi_attach: ATTACH ERROR\n"));
    425 	sc->sc_dying = true;
    426 	return;
    427 }
    428 
    429 static void
    430 uftdi_childdet(device_t self, device_t child)
    431 {
    432 	struct uftdi_softc *sc = device_private(self);
    433 
    434 	KASSERT(child == sc->sc_subdev);
    435 	sc->sc_subdev = NULL;
    436 }
    437 
    438 static int
    439 uftdi_detach(device_t self, int flags)
    440 {
    441 	struct uftdi_softc *sc = device_private(self);
    442 	int rv = 0;
    443 
    444 	DPRINTF(("uftdi_detach: sc=%p flags=%d\n", sc, flags));
    445 
    446 	sc->sc_dying = true;
    447 
    448 	if (sc->sc_subdev != NULL) {
    449 		rv = config_detach(sc->sc_subdev, flags);
    450 		sc->sc_subdev = NULL;
    451 	}
    452 
    453 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev);
    454 
    455 	return rv;
    456 }
    457 
    458 static int
    459 uftdi_open(void *vsc, int portno)
    460 {
    461 	struct uftdi_softc *sc = vsc;
    462 	usb_device_request_t req;
    463 	usbd_status err;
    464 	struct termios t;
    465 
    466 	DPRINTF(("uftdi_open: sc=%p\n", sc));
    467 
    468 	if (sc->sc_dying)
    469 		return EIO;
    470 
    471 	/* Perform a full reset on the device */
    472 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    473 	req.bRequest = FTDI_SIO_RESET;
    474 	USETW(req.wValue, FTDI_SIO_RESET_SIO);
    475 	USETW(req.wIndex, portno);
    476 	USETW(req.wLength, 0);
    477 	err = usbd_do_request(sc->sc_udev, &req, NULL);
    478 	if (err)
    479 		return EIO;
    480 
    481 	/* Set 9600 baud, 2 stop bits, no parity, 8 bits */
    482 	t.c_ospeed = 9600;
    483 	t.c_cflag = CSTOPB | CS8;
    484 	(void)uftdi_param(sc, portno, &t);
    485 
    486 	/* Turn on RTS/CTS flow control */
    487 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    488 	req.bRequest = FTDI_SIO_SET_FLOW_CTRL;
    489 	USETW(req.wValue, 0);
    490 	USETW2(req.wIndex, FTDI_SIO_RTS_CTS_HS, portno);
    491 	USETW(req.wLength, 0);
    492 	err = usbd_do_request(sc->sc_udev, &req, NULL);
    493 	if (err)
    494 		return EIO;
    495 
    496 	return 0;
    497 }
    498 
    499 static void
    500 uftdi_read(void *vsc, int portno, u_char **ptr, uint32_t *count)
    501 {
    502 	struct uftdi_softc *sc = vsc;
    503 	u_char msr, lsr;
    504 
    505 	DPRINTFN(15,("uftdi_read: sc=%p, port=%d count=%d\n", sc, portno,
    506 		     *count));
    507 
    508 	msr = FTDI_GET_MSR(*ptr);
    509 	lsr = FTDI_GET_LSR(*ptr);
    510 
    511 #ifdef UFTDI_DEBUG
    512 	if (*count != 2)
    513 		DPRINTFN(10,("uftdi_read: sc=%p, port=%d count=%d data[0]="
    514 			    "0x%02x\n", sc, portno, *count, (*ptr)[2]));
    515 #endif
    516 
    517 	if (sc->sc_msr != msr ||
    518 	    (sc->sc_lsr & FTDI_LSR_MASK) != (lsr & FTDI_LSR_MASK)) {
    519 		DPRINTF(("uftdi_read: status change msr=0x%02x(0x%02x) "
    520 			 "lsr=0x%02x(0x%02x)\n", msr, sc->sc_msr,
    521 			 lsr, sc->sc_lsr));
    522 		sc->sc_msr = msr;
    523 		sc->sc_lsr = lsr;
    524 		ucom_status_change(device_private(sc->sc_subdev));
    525 	}
    526 
    527 	/* Adjust buffer pointer to skip status prefix */
    528 	*ptr += 2;
    529 }
    530 
    531 static void
    532 uftdi_write(void *vsc, int portno, u_char *to, u_char *from, uint32_t *count)
    533 {
    534 	struct uftdi_softc *sc = vsc;
    535 
    536 	DPRINTFN(10,("uftdi_write: sc=%p, port=%d count=%u data[0]=0x%02x\n",
    537 		     vsc, portno, *count, from[0]));
    538 
    539 	/* Make length tag and copy data */
    540 	if (sc->sc_hdrlen > 0)
    541 		*to = FTDI_OUT_TAG(*count, portno);
    542 
    543 	memcpy(to + sc->sc_hdrlen, from, *count);
    544 	*count += sc->sc_hdrlen;
    545 }
    546 
    547 static void
    548 uftdi_set(void *vsc, int portno, int reg, int onoff)
    549 {
    550 	struct uftdi_softc *sc = vsc;
    551 	usb_device_request_t req;
    552 	int ctl;
    553 
    554 	DPRINTF(("uftdi_set: sc=%p, port=%d reg=%d onoff=%d\n", vsc, portno,
    555 		 reg, onoff));
    556 
    557 	if (sc->sc_dying)
    558 		return;
    559 
    560 	switch (reg) {
    561 	case UCOM_SET_DTR:
    562 		ctl = onoff ? FTDI_SIO_SET_DTR_HIGH : FTDI_SIO_SET_DTR_LOW;
    563 		break;
    564 	case UCOM_SET_RTS:
    565 		ctl = onoff ? FTDI_SIO_SET_RTS_HIGH : FTDI_SIO_SET_RTS_LOW;
    566 		break;
    567 	case UCOM_SET_BREAK:
    568 		uftdi_break(sc, portno, onoff);
    569 		return;
    570 	default:
    571 		return;
    572 	}
    573 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    574 	req.bRequest = FTDI_SIO_MODEM_CTRL;
    575 	USETW(req.wValue, ctl);
    576 	USETW(req.wIndex, portno);
    577 	USETW(req.wLength, 0);
    578 	DPRINTFN(2,("uftdi_set: reqtype=0x%02x req=0x%02x value=0x%04x "
    579 		    "index=0x%04x len=%d\n", req.bmRequestType, req.bRequest,
    580 		    UGETW(req.wValue), UGETW(req.wIndex), UGETW(req.wLength)));
    581 	(void)usbd_do_request(sc->sc_udev, &req, NULL);
    582 }
    583 
    584 /*
    585  * Return true if the given speed is within operational tolerance of the target
    586  * speed.  FTDI recommends that the hardware speed be within 3% of nominal.
    587  */
    588 static inline bool
    589 uftdi_baud_within_tolerance(uint64_t speed, uint64_t target)
    590 {
    591 	return ((speed >= (target * 100) / 103) &&
    592 	    (speed <= (target * 100) / 97));
    593 }
    594 
    595 static int
    596 uftdi_encode_baudrate(struct uftdi_softc *sc, int speed, int *rate, int *ratehi)
    597 {
    598 	static const uint8_t encoded_fraction[8] = {
    599 	    0, 3, 2, 4, 1, 5, 6, 7
    600 	};
    601 	static const uint8_t roundoff_232a[16] = {
    602 	    0,  1,  0,  1,  0, -1,  2,  1,
    603 	    0, -1, -2, -3,  4,  3,  2,  1,
    604 	};
    605 	uint32_t clk, divisor, fastclk_flag, frac, hwspeed;
    606 
    607 	/*
    608 	 * If this chip has the fast clock capability and the speed is within
    609 	 * range, use the 12MHz clock, otherwise the standard clock is 3MHz.
    610 	 */
    611 	if ((sc->sc_flags & FLAGS_BAUDCLK_12M) && speed >= 1200) {
    612 		clk = 12000000;
    613 		fastclk_flag = (1 << 17);
    614 	} else {
    615 		clk = 3000000;
    616 		fastclk_flag = 0;
    617 	}
    618 
    619 	/*
    620 	 * Make sure the requested speed is reachable with the available clock
    621 	 * and a 14-bit divisor.
    622 	 */
    623 	if (speed < (clk >> 14) || speed > clk)
    624 		return -1;
    625 
    626 	/*
    627 	 * Calculate the divisor, initially yielding a fixed point number with a
    628 	 * 4-bit (1/16ths) fraction, then round it to the nearest fraction the
    629 	 * hardware can handle.  When the integral part of the divisor is
    630 	 * greater than one, the fractional part is in 1/8ths of the base clock.
    631 	 * The FT8U232AM chips can handle only 0.125, 0.250, and 0.5 fractions.
    632 	 * Later chips can handle all 1/8th fractions.
    633 	 *
    634 	 * If the integral part of the divisor is 1, a special rule applies: the
    635 	 * fractional part can only be .0 or .5 (this is a limitation of the
    636 	 * hardware).  We handle this by truncating the fraction rather than
    637 	 * rounding, because this only applies to the two fastest speeds the
    638 	 * chip can achieve and rounding doesn't matter, either you've asked for
    639 	 * that exact speed or you've asked for something the chip can't do.
    640 	 *
    641 	 * For the FT8U232AM chips, use a roundoff table to adjust the result
    642 	 * to the nearest 1/8th fraction that is supported by the hardware,
    643 	 * leaving a fixed-point number with a 3-bit fraction which exactly
    644 	 * represents the math the hardware divider will do.  For later-series
    645 	 * chips that support all 8 fractional divisors, just round 16ths to
    646 	 * 8ths by adding 1 and dividing by 2.
    647 	 */
    648 	divisor = (clk << 4) / speed;
    649 	if ((divisor & 0xf) == 1)
    650 		divisor &= 0xfffffff8;
    651 	else if (sc->sc_flags & FLAGS_ROUNDOFF_232A)
    652 		divisor += roundoff_232a[divisor & 0x0f];
    653 	else
    654 		divisor += 1;  /* Rounds odd 16ths up to next 8th. */
    655 	divisor >>= 1;
    656 
    657 	/*
    658 	 * Ensure the resulting hardware speed will be within operational
    659 	 * tolerance (within 3% of nominal).
    660 	 */
    661 	hwspeed = (clk << 3) / divisor;
    662 	if (!uftdi_baud_within_tolerance(hwspeed, speed))
    663 		return -1;
    664 
    665 	/*
    666 	 * Re-pack the divisor into hardware format. The lower 14-bits hold the
    667 	 * integral part, while the upper bits specify the fraction by indexing
    668 	 * a table of fractions within the hardware which is laid out as:
    669 	 *    {0.0, 0.5, 0.25, 0.125, 0.325, 0.625, 0.725, 0.875}
    670 	 * The A-series chips only have the first four table entries; the
    671 	 * roundoff table logic above ensures that the fractional part for those
    672 	 * chips will be one of the first four values.
    673 	 *
    674 	 * When the divisor is 1 a special encoding applies:  1.0 is encoded as
    675 	 * 0.0, and 1.5 is encoded as 1.0.  The rounding logic above has already
    676 	 * ensured that the fraction is either .0 or .5 if the integral is 1.
    677 	 */
    678 	frac = divisor & 0x07;
    679 	divisor >>= 3;
    680 	if (divisor == 1) {
    681 		if (frac == 0)
    682 			divisor = 0;	/* 1.0 becomes 0.0 */
    683 		else
    684 			frac = 0;	/* 1.5 becomes 1.0 */
    685 	}
    686 	divisor |= (encoded_fraction[frac] << 14) | fastclk_flag;
    687 
    688 	*rate = (uint16_t)divisor;
    689 	*ratehi = (uint16_t)(divisor >> 16);
    690 
    691 	/*
    692 	 * If this chip requires the baud bits to be in the high byte of the
    693 	 * index word, move the bits up to that location.
    694 	 */
    695 	if (sc->sc_flags & FLAGS_BAUDBITS_HINDEX)
    696 		*ratehi <<= 8;
    697 
    698 	return 0;
    699 }
    700 
    701 static int
    702 uftdi_param(void *vsc, int portno, struct termios *t)
    703 {
    704 	struct uftdi_softc *sc = vsc;
    705 	usb_device_request_t req;
    706 	usbd_status err;
    707 	int rate, ratehi, rerr, data, flow;
    708 
    709 	DPRINTF(("uftdi_param: sc=%p\n", sc));
    710 
    711 	if (sc->sc_dying)
    712 		return EIO;
    713 
    714 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    715 	req.bRequest = FTDI_SIO_SET_BITMODE;
    716 	USETW(req.wValue, FTDI_BITMODE_RESET << 8 | 0x00);
    717 	USETW(req.wIndex, portno);
    718 	USETW(req.wLength, 0);
    719 	err = usbd_do_request(sc->sc_udev, &req, NULL);
    720 	if (err)
    721 		return EIO;
    722 
    723 	switch (sc->sc_type) {
    724 	case UFTDI_TYPE_SIO:
    725 		switch (t->c_ospeed) {
    726 		case 300: rate = ftdi_sio_b300; break;
    727 		case 600: rate = ftdi_sio_b600; break;
    728 		case 1200: rate = ftdi_sio_b1200; break;
    729 		case 2400: rate = ftdi_sio_b2400; break;
    730 		case 4800: rate = ftdi_sio_b4800; break;
    731 		case 9600: rate = ftdi_sio_b9600; break;
    732 		case 19200: rate = ftdi_sio_b19200; break;
    733 		case 38400: rate = ftdi_sio_b38400; break;
    734 		case 57600: rate = ftdi_sio_b57600; break;
    735 		case 115200: rate = ftdi_sio_b115200; break;
    736 		default:
    737 			return EINVAL;
    738 		}
    739 		ratehi = 0;
    740 		break;
    741 	case UFTDI_TYPE_8U232AM:
    742 		rerr = uftdi_encode_baudrate(sc, t->c_ospeed, &rate, &ratehi);
    743 		if (rerr != 0)
    744 			return EINVAL;
    745 		break;
    746 	default:
    747 		return EINVAL;
    748 	}
    749 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    750 	req.bRequest = FTDI_SIO_SET_BAUD_RATE;
    751 	USETW(req.wValue, rate);
    752 	USETW(req.wIndex, portno | ratehi);
    753 	USETW(req.wLength, 0);
    754 	DPRINTFN(2,("uftdi_param: reqtype=0x%02x req=0x%02x value=0x%04x "
    755 		    "index=0x%04x len=%d\n", req.bmRequestType, req.bRequest,
    756 		    UGETW(req.wValue), UGETW(req.wIndex), UGETW(req.wLength)));
    757 	err = usbd_do_request(sc->sc_udev, &req, NULL);
    758 	if (err)
    759 		return EIO;
    760 
    761 	if (ISSET(t->c_cflag, CSTOPB))
    762 		data = FTDI_SIO_SET_DATA_STOP_BITS_2;
    763 	else
    764 		data = FTDI_SIO_SET_DATA_STOP_BITS_1;
    765 	if (ISSET(t->c_cflag, PARENB)) {
    766 		if (ISSET(t->c_cflag, PARODD))
    767 			data |= FTDI_SIO_SET_DATA_PARITY_ODD;
    768 		else
    769 			data |= FTDI_SIO_SET_DATA_PARITY_EVEN;
    770 	} else
    771 		data |= FTDI_SIO_SET_DATA_PARITY_NONE;
    772 	switch (ISSET(t->c_cflag, CSIZE)) {
    773 	case CS5:
    774 		data |= FTDI_SIO_SET_DATA_BITS(5);
    775 		break;
    776 	case CS6:
    777 		data |= FTDI_SIO_SET_DATA_BITS(6);
    778 		break;
    779 	case CS7:
    780 		data |= FTDI_SIO_SET_DATA_BITS(7);
    781 		break;
    782 	case CS8:
    783 		data |= FTDI_SIO_SET_DATA_BITS(8);
    784 		break;
    785 	}
    786 	sc->last_lcr = data;
    787 
    788 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    789 	req.bRequest = FTDI_SIO_SET_DATA;
    790 	USETW(req.wValue, data);
    791 	USETW(req.wIndex, portno);
    792 	USETW(req.wLength, 0);
    793 	DPRINTFN(2,("uftdi_param: reqtype=0x%02x req=0x%02x value=0x%04x "
    794 		    "index=0x%04x len=%d\n", req.bmRequestType, req.bRequest,
    795 		    UGETW(req.wValue), UGETW(req.wIndex), UGETW(req.wLength)));
    796 	err = usbd_do_request(sc->sc_udev, &req, NULL);
    797 	if (err)
    798 		return EIO;
    799 
    800 	if (ISSET(t->c_cflag, CRTSCTS)) {
    801 		flow = FTDI_SIO_RTS_CTS_HS;
    802 		USETW(req.wValue, 0);
    803 	} else if (ISSET(t->c_iflag, IXON) && ISSET(t->c_iflag, IXOFF)) {
    804 		flow = FTDI_SIO_XON_XOFF_HS;
    805 		USETW2(req.wValue, t->c_cc[VSTOP], t->c_cc[VSTART]);
    806 	} else {
    807 		flow = FTDI_SIO_DISABLE_FLOW_CTRL;
    808 		USETW(req.wValue, 0);
    809 	}
    810 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    811 	req.bRequest = FTDI_SIO_SET_FLOW_CTRL;
    812 	USETW2(req.wIndex, flow, portno);
    813 	USETW(req.wLength, 0);
    814 	err = usbd_do_request(sc->sc_udev, &req, NULL);
    815 	if (err)
    816 		return EIO;
    817 
    818 	return 0;
    819 }
    820 
    821 static void
    822 uftdi_get_status(void *vsc, int portno, u_char *lsr, u_char *msr)
    823 {
    824 	struct uftdi_softc *sc = vsc;
    825 
    826 	DPRINTF(("uftdi_status: msr=0x%02x lsr=0x%02x\n",
    827 		 sc->sc_msr, sc->sc_lsr));
    828 
    829 	if (sc->sc_dying)
    830 		return;
    831 
    832 	*msr = sc->sc_msr;
    833 	*lsr = sc->sc_lsr;
    834 }
    835 
    836 static void
    837 uftdi_break(void *vsc, int portno, int onoff)
    838 {
    839 	struct uftdi_softc *sc = vsc;
    840 	usb_device_request_t req;
    841 	int data;
    842 
    843 	DPRINTF(("uftdi_break: sc=%p, port=%d onoff=%d\n", vsc, portno,
    844 		  onoff));
    845 
    846 	if (onoff) {
    847 		data = sc->last_lcr | FTDI_SIO_SET_BREAK;
    848 	} else {
    849 		data = sc->last_lcr;
    850 	}
    851 
    852 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    853 	req.bRequest = FTDI_SIO_SET_DATA;
    854 	USETW(req.wValue, data);
    855 	USETW(req.wIndex, portno);
    856 	USETW(req.wLength, 0);
    857 	(void)usbd_do_request(sc->sc_udev, &req, NULL);
    858 }
    859