xref: /freebsd/sys/dev/usb/serial/uplcom.c (revision f809f280e079432b896f3de6f15ca44a7bdab55f)
102ac6454SAndrew Thompson /*	$NetBSD: uplcom.c,v 1.21 2001/11/13 06:24:56 lukem Exp $	*/
202ac6454SAndrew Thompson 
302ac6454SAndrew Thompson #include <sys/cdefs.h>
402ac6454SAndrew Thompson __FBSDID("$FreeBSD$");
502ac6454SAndrew Thompson 
602ac6454SAndrew Thompson /*-
702ac6454SAndrew Thompson  * Copyright (c) 2001-2003, 2005 Shunsuke Akiyama <akiyama@jp.FreeBSD.org>.
802ac6454SAndrew Thompson  * All rights reserved.
902ac6454SAndrew Thompson  *
1002ac6454SAndrew Thompson  * Redistribution and use in source and binary forms, with or without
1102ac6454SAndrew Thompson  * modification, are permitted provided that the following conditions
1202ac6454SAndrew Thompson  * are met:
1302ac6454SAndrew Thompson  * 1. Redistributions of source code must retain the above copyright
1402ac6454SAndrew Thompson  *    notice, this list of conditions and the following disclaimer.
1502ac6454SAndrew Thompson  * 2. Redistributions in binary form must reproduce the above copyright
1602ac6454SAndrew Thompson  *    notice, this list of conditions and the following disclaimer in the
1702ac6454SAndrew Thompson  *    documentation and/or other materials provided with the distribution.
1802ac6454SAndrew Thompson  *
1902ac6454SAndrew Thompson  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2002ac6454SAndrew Thompson  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2102ac6454SAndrew Thompson  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2202ac6454SAndrew Thompson  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2302ac6454SAndrew Thompson  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2402ac6454SAndrew Thompson  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2502ac6454SAndrew Thompson  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2602ac6454SAndrew Thompson  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2702ac6454SAndrew Thompson  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2802ac6454SAndrew Thompson  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2902ac6454SAndrew Thompson  * SUCH DAMAGE.
3002ac6454SAndrew Thompson  */
3102ac6454SAndrew Thompson 
3202ac6454SAndrew Thompson /*-
3302ac6454SAndrew Thompson  * Copyright (c) 2001 The NetBSD Foundation, Inc.
3402ac6454SAndrew Thompson  * All rights reserved.
3502ac6454SAndrew Thompson  *
3602ac6454SAndrew Thompson  * This code is derived from software contributed to The NetBSD Foundation
3702ac6454SAndrew Thompson  * by Ichiro FUKUHARA (ichiro@ichiro.org).
3802ac6454SAndrew Thompson  *
3902ac6454SAndrew Thompson  * Redistribution and use in source and binary forms, with or without
4002ac6454SAndrew Thompson  * modification, are permitted provided that the following conditions
4102ac6454SAndrew Thompson  * are met:
4202ac6454SAndrew Thompson  * 1. Redistributions of source code must retain the above copyright
4302ac6454SAndrew Thompson  *    notice, this list of conditions and the following disclaimer.
4402ac6454SAndrew Thompson  * 2. Redistributions in binary form must reproduce the above copyright
4502ac6454SAndrew Thompson  *    notice, this list of conditions and the following disclaimer in the
4602ac6454SAndrew Thompson  *    documentation and/or other materials provided with the distribution.
4702ac6454SAndrew Thompson  *
4802ac6454SAndrew Thompson  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
4902ac6454SAndrew Thompson  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
5002ac6454SAndrew Thompson  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
5102ac6454SAndrew Thompson  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
5202ac6454SAndrew Thompson  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
5302ac6454SAndrew Thompson  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
5402ac6454SAndrew Thompson  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
5502ac6454SAndrew Thompson  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
5602ac6454SAndrew Thompson  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
5702ac6454SAndrew Thompson  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
5802ac6454SAndrew Thompson  * POSSIBILITY OF SUCH DAMAGE.
5902ac6454SAndrew Thompson  */
6002ac6454SAndrew Thompson 
6102ac6454SAndrew Thompson /*
6202ac6454SAndrew Thompson  * This driver supports several USB-to-RS232 serial adapters driven by
6302ac6454SAndrew Thompson  * Prolific PL-2303, PL-2303X and probably PL-2303HX USB-to-RS232
6402ac6454SAndrew Thompson  * bridge chip.  The adapters are sold under many different brand
6502ac6454SAndrew Thompson  * names.
6602ac6454SAndrew Thompson  *
6702ac6454SAndrew Thompson  * Datasheets are available at Prolific www site at
6802ac6454SAndrew Thompson  * http://www.prolific.com.tw.  The datasheets don't contain full
6902ac6454SAndrew Thompson  * programming information for the chip.
7002ac6454SAndrew Thompson  *
7102ac6454SAndrew Thompson  * PL-2303HX is probably programmed the same as PL-2303X.
7202ac6454SAndrew Thompson  *
7302ac6454SAndrew Thompson  * There are several differences between PL-2303 and PL-2303(H)X.
7402ac6454SAndrew Thompson  * PL-2303(H)X can do higher bitrate in bulk mode, has _probably_
7502ac6454SAndrew Thompson  * different command for controlling CRTSCTS and needs special
7602ac6454SAndrew Thompson  * sequence of commands for initialization which aren't also
7702ac6454SAndrew Thompson  * documented in the datasheet.
7802ac6454SAndrew Thompson  */
7902ac6454SAndrew Thompson 
80ed6d949aSAndrew Thompson #include <sys/stdint.h>
81ed6d949aSAndrew Thompson #include <sys/stddef.h>
82ed6d949aSAndrew Thompson #include <sys/param.h>
83ed6d949aSAndrew Thompson #include <sys/queue.h>
84ed6d949aSAndrew Thompson #include <sys/types.h>
85ed6d949aSAndrew Thompson #include <sys/systm.h>
86ed6d949aSAndrew Thompson #include <sys/kernel.h>
87ed6d949aSAndrew Thompson #include <sys/bus.h>
88ed6d949aSAndrew Thompson #include <sys/module.h>
89ed6d949aSAndrew Thompson #include <sys/lock.h>
90ed6d949aSAndrew Thompson #include <sys/mutex.h>
91ed6d949aSAndrew Thompson #include <sys/condvar.h>
92ed6d949aSAndrew Thompson #include <sys/sysctl.h>
93ed6d949aSAndrew Thompson #include <sys/sx.h>
94ed6d949aSAndrew Thompson #include <sys/unistd.h>
95ed6d949aSAndrew Thompson #include <sys/callout.h>
96ed6d949aSAndrew Thompson #include <sys/malloc.h>
97ed6d949aSAndrew Thompson #include <sys/priv.h>
98ed6d949aSAndrew Thompson 
9902ac6454SAndrew Thompson #include <dev/usb/usb.h>
100ed6d949aSAndrew Thompson #include <dev/usb/usbdi.h>
101ed6d949aSAndrew Thompson #include <dev/usb/usbdi_util.h>
10202ac6454SAndrew Thompson #include <dev/usb/usb_cdc.h>
103ed6d949aSAndrew Thompson #include "usbdevs.h"
10402ac6454SAndrew Thompson 
10502ac6454SAndrew Thompson #define	USB_DEBUG_VAR uplcom_debug
10602ac6454SAndrew Thompson #include <dev/usb/usb_debug.h>
10702ac6454SAndrew Thompson #include <dev/usb/usb_process.h>
10802ac6454SAndrew Thompson 
10902ac6454SAndrew Thompson #include <dev/usb/serial/usb_serial.h>
11002ac6454SAndrew Thompson 
111b850ecc1SAndrew Thompson #ifdef USB_DEBUG
11202ac6454SAndrew Thompson static int uplcom_debug = 0;
11302ac6454SAndrew Thompson 
1146472ac3dSEd Schouten static SYSCTL_NODE(_hw_usb, OID_AUTO, uplcom, CTLFLAG_RW, 0, "USB uplcom");
115ece4b0bdSHans Petter Selasky SYSCTL_INT(_hw_usb_uplcom, OID_AUTO, debug, CTLFLAG_RWTUN,
11602ac6454SAndrew Thompson     &uplcom_debug, 0, "Debug level");
11702ac6454SAndrew Thompson #endif
11802ac6454SAndrew Thompson 
11902ac6454SAndrew Thompson #define	UPLCOM_MODVER			1	/* module version */
12002ac6454SAndrew Thompson 
12102ac6454SAndrew Thompson #define	UPLCOM_CONFIG_INDEX		0
12202ac6454SAndrew Thompson #define	UPLCOM_IFACE_INDEX		0
12302ac6454SAndrew Thompson #define	UPLCOM_SECOND_IFACE_INDEX	1
12402ac6454SAndrew Thompson 
12502ac6454SAndrew Thompson #ifndef UPLCOM_INTR_INTERVAL
12602ac6454SAndrew Thompson #define	UPLCOM_INTR_INTERVAL		0	/* default */
12702ac6454SAndrew Thompson #endif
12802ac6454SAndrew Thompson 
12902ac6454SAndrew Thompson #define	UPLCOM_BULK_BUF_SIZE 1024	/* bytes */
13002ac6454SAndrew Thompson 
13102ac6454SAndrew Thompson #define	UPLCOM_SET_REQUEST		0x01
13202ac6454SAndrew Thompson #define	UPLCOM_SET_CRTSCTS		0x41
13302ac6454SAndrew Thompson #define	UPLCOM_SET_CRTSCTS_PL2303X	0x61
13402ac6454SAndrew Thompson #define	RSAQ_STATUS_CTS			0x80
13502ac6454SAndrew Thompson #define	RSAQ_STATUS_DSR			0x02
13602ac6454SAndrew Thompson #define	RSAQ_STATUS_DCD			0x01
13702ac6454SAndrew Thompson 
13802ac6454SAndrew Thompson #define	TYPE_PL2303			0
139bc65068dSGavin Atkinson #define	TYPE_PL2303HX			1
14002ac6454SAndrew Thompson 
14102ac6454SAndrew Thompson enum {
14202ac6454SAndrew Thompson 	UPLCOM_BULK_DT_WR,
14302ac6454SAndrew Thompson 	UPLCOM_BULK_DT_RD,
14402ac6454SAndrew Thompson 	UPLCOM_INTR_DT_RD,
14502ac6454SAndrew Thompson 	UPLCOM_N_TRANSFER,
14602ac6454SAndrew Thompson };
14702ac6454SAndrew Thompson 
14802ac6454SAndrew Thompson struct uplcom_softc {
149760bc48eSAndrew Thompson 	struct ucom_super_softc sc_super_ucom;
150760bc48eSAndrew Thompson 	struct ucom_softc sc_ucom;
15102ac6454SAndrew Thompson 
152760bc48eSAndrew Thompson 	struct usb_xfer *sc_xfer[UPLCOM_N_TRANSFER];
153760bc48eSAndrew Thompson 	struct usb_device *sc_udev;
154deefe583SAndrew Thompson 	struct mtx sc_mtx;
15502ac6454SAndrew Thompson 
15602ac6454SAndrew Thompson 	uint16_t sc_line;
15702ac6454SAndrew Thompson 
15802ac6454SAndrew Thompson 	uint8_t	sc_lsr;			/* local status register */
15902ac6454SAndrew Thompson 	uint8_t	sc_msr;			/* uplcom status register */
16002ac6454SAndrew Thompson 	uint8_t	sc_chiptype;		/* type of chip */
16102ac6454SAndrew Thompson 	uint8_t	sc_ctrl_iface_no;
16202ac6454SAndrew Thompson 	uint8_t	sc_data_iface_no;
16302ac6454SAndrew Thompson 	uint8_t	sc_iface_index[2];
16402ac6454SAndrew Thompson };
16502ac6454SAndrew Thompson 
16602ac6454SAndrew Thompson /* prototypes */
16702ac6454SAndrew Thompson 
168e0a69b51SAndrew Thompson static usb_error_t uplcom_reset(struct uplcom_softc *, struct usb_device *);
169bc65068dSGavin Atkinson static usb_error_t uplcom_pl2303_do(struct usb_device *, int8_t, uint8_t,
170bc65068dSGavin Atkinson 			uint16_t, uint16_t, uint16_t);
171bc65068dSGavin Atkinson static int	uplcom_pl2303_init(struct usb_device *, uint8_t);
1725805d178SHans Petter Selasky static void	uplcom_free(struct ucom_softc *);
173760bc48eSAndrew Thompson static void	uplcom_cfg_set_dtr(struct ucom_softc *, uint8_t);
174760bc48eSAndrew Thompson static void	uplcom_cfg_set_rts(struct ucom_softc *, uint8_t);
175760bc48eSAndrew Thompson static void	uplcom_cfg_set_break(struct ucom_softc *, uint8_t);
176760bc48eSAndrew Thompson static int	uplcom_pre_param(struct ucom_softc *, struct termios *);
177760bc48eSAndrew Thompson static void	uplcom_cfg_param(struct ucom_softc *, struct termios *);
178760bc48eSAndrew Thompson static void	uplcom_start_read(struct ucom_softc *);
179760bc48eSAndrew Thompson static void	uplcom_stop_read(struct ucom_softc *);
180760bc48eSAndrew Thompson static void	uplcom_start_write(struct ucom_softc *);
181760bc48eSAndrew Thompson static void	uplcom_stop_write(struct ucom_softc *);
182760bc48eSAndrew Thompson static void	uplcom_cfg_get_status(struct ucom_softc *, uint8_t *,
18302ac6454SAndrew Thompson 		    uint8_t *);
184655dc9d0SAndrew Thompson static void	uplcom_poll(struct ucom_softc *ucom);
18502ac6454SAndrew Thompson 
18602ac6454SAndrew Thompson static device_probe_t uplcom_probe;
18702ac6454SAndrew Thompson static device_attach_t uplcom_attach;
18802ac6454SAndrew Thompson static device_detach_t uplcom_detach;
189c01fc06eSHans Petter Selasky static void uplcom_free_softc(struct uplcom_softc *);
19002ac6454SAndrew Thompson 
191e0a69b51SAndrew Thompson static usb_callback_t uplcom_intr_callback;
192e0a69b51SAndrew Thompson static usb_callback_t uplcom_write_callback;
193e0a69b51SAndrew Thompson static usb_callback_t uplcom_read_callback;
19402ac6454SAndrew Thompson 
195760bc48eSAndrew Thompson static const struct usb_config uplcom_config_data[UPLCOM_N_TRANSFER] = {
19602ac6454SAndrew Thompson 
19702ac6454SAndrew Thompson 	[UPLCOM_BULK_DT_WR] = {
19802ac6454SAndrew Thompson 		.type = UE_BULK,
19902ac6454SAndrew Thompson 		.endpoint = UE_ADDR_ANY,
20002ac6454SAndrew Thompson 		.direction = UE_DIR_OUT,
2014eae601eSAndrew Thompson 		.bufsize = UPLCOM_BULK_BUF_SIZE,
2024eae601eSAndrew Thompson 		.flags = {.pipe_bof = 1,.force_short_xfer = 1,},
2034eae601eSAndrew Thompson 		.callback = &uplcom_write_callback,
20402ac6454SAndrew Thompson 		.if_index = 0,
20502ac6454SAndrew Thompson 	},
20602ac6454SAndrew Thompson 
20702ac6454SAndrew Thompson 	[UPLCOM_BULK_DT_RD] = {
20802ac6454SAndrew Thompson 		.type = UE_BULK,
20902ac6454SAndrew Thompson 		.endpoint = UE_ADDR_ANY,
21002ac6454SAndrew Thompson 		.direction = UE_DIR_IN,
2114eae601eSAndrew Thompson 		.bufsize = UPLCOM_BULK_BUF_SIZE,
2124eae601eSAndrew Thompson 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
2134eae601eSAndrew Thompson 		.callback = &uplcom_read_callback,
21402ac6454SAndrew Thompson 		.if_index = 0,
21502ac6454SAndrew Thompson 	},
21602ac6454SAndrew Thompson 
21702ac6454SAndrew Thompson 	[UPLCOM_INTR_DT_RD] = {
21802ac6454SAndrew Thompson 		.type = UE_INTERRUPT,
21902ac6454SAndrew Thompson 		.endpoint = UE_ADDR_ANY,
22002ac6454SAndrew Thompson 		.direction = UE_DIR_IN,
2214eae601eSAndrew Thompson 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
2224eae601eSAndrew Thompson 		.bufsize = 0,	/* use wMaxPacketSize */
2234eae601eSAndrew Thompson 		.callback = &uplcom_intr_callback,
22402ac6454SAndrew Thompson 		.if_index = 1,
22502ac6454SAndrew Thompson 	},
22602ac6454SAndrew Thompson };
22702ac6454SAndrew Thompson 
228a8675caeSAndrew Thompson static struct ucom_callback uplcom_callback = {
229a593f6b8SAndrew Thompson 	.ucom_cfg_get_status = &uplcom_cfg_get_status,
230a593f6b8SAndrew Thompson 	.ucom_cfg_set_dtr = &uplcom_cfg_set_dtr,
231a593f6b8SAndrew Thompson 	.ucom_cfg_set_rts = &uplcom_cfg_set_rts,
232a593f6b8SAndrew Thompson 	.ucom_cfg_set_break = &uplcom_cfg_set_break,
233a593f6b8SAndrew Thompson 	.ucom_cfg_param = &uplcom_cfg_param,
234a593f6b8SAndrew Thompson 	.ucom_pre_param = &uplcom_pre_param,
235a593f6b8SAndrew Thompson 	.ucom_start_read = &uplcom_start_read,
236a593f6b8SAndrew Thompson 	.ucom_stop_read = &uplcom_stop_read,
237a593f6b8SAndrew Thompson 	.ucom_start_write = &uplcom_start_write,
238a593f6b8SAndrew Thompson 	.ucom_stop_write = &uplcom_stop_write,
239655dc9d0SAndrew Thompson 	.ucom_poll = &uplcom_poll,
2405805d178SHans Petter Selasky 	.ucom_free = &uplcom_free,
24102ac6454SAndrew Thompson };
24202ac6454SAndrew Thompson 
243bc65068dSGavin Atkinson #define	UPLCOM_DEV(v,p)				\
244bc65068dSGavin Atkinson   { USB_VENDOR(USB_VENDOR_##v), USB_PRODUCT(USB_PRODUCT_##v##_##p) }
24502ac6454SAndrew Thompson 
246f1a16106SHans Petter Selasky static const STRUCT_USB_HOST_ID uplcom_devs[] = {
247f5113df9SGavin Atkinson 	UPLCOM_DEV(ACERP, S81),			/* BenQ S81 phone */
248f5113df9SGavin Atkinson 	UPLCOM_DEV(ADLINK, ND6530),		/* ADLINK ND-6530 USB-Serial */
249f5113df9SGavin Atkinson 	UPLCOM_DEV(ALCATEL, OT535),		/* Alcatel One Touch 535/735 */
250f5113df9SGavin Atkinson 	UPLCOM_DEV(ALCOR, AU9720),		/* Alcor AU9720 USB 2.0-RS232 */
251f5113df9SGavin Atkinson 	UPLCOM_DEV(ANCHOR, SERIAL),		/* Anchor Serial adapter */
252bc65068dSGavin Atkinson 	UPLCOM_DEV(ATEN, UC232A),		/* PLANEX USB-RS232 URS-03 */
25301a8f075SGavin Atkinson 	UPLCOM_DEV(BELKIN, F5U257),		/* Belkin F5U257 USB to Serial */
254bc65068dSGavin Atkinson 	UPLCOM_DEV(COREGA, CGUSBRS232R),	/* Corega CG-USBRS232R */
255f5113df9SGavin Atkinson 	UPLCOM_DEV(EPSON, CRESSI_EDY),		/* Cressi Edy diving computer */
256c6ac426dSGavin Atkinson 	UPLCOM_DEV(EPSON, N2ITION3),		/* Zeagle N2iTion3 diving computer */
25701a8f075SGavin Atkinson 	UPLCOM_DEV(ELECOM, UCSGT),		/* ELECOM UC-SGT Serial Adapter */
25801a8f075SGavin Atkinson 	UPLCOM_DEV(ELECOM, UCSGT0),		/* ELECOM UC-SGT Serial Adapter */
259bc65068dSGavin Atkinson 	UPLCOM_DEV(HAL, IMR001),		/* HAL Corporation Crossam2+USB */
260f5113df9SGavin Atkinson 	UPLCOM_DEV(HP, LD220),			/* HP LD220 POS Display */
261bc65068dSGavin Atkinson 	UPLCOM_DEV(IODATA, USBRSAQ),		/* I/O DATA USB-RSAQ */
262bc65068dSGavin Atkinson 	UPLCOM_DEV(IODATA, USBRSAQ5),		/* I/O DATA USB-RSAQ5 */
263f5113df9SGavin Atkinson 	UPLCOM_DEV(ITEGNO, WM1080A),		/* iTegno WM1080A GSM/GFPRS modem */
264f5113df9SGavin Atkinson 	UPLCOM_DEV(ITEGNO, WM2080A),		/* iTegno WM2080A CDMA modem */
265f5113df9SGavin Atkinson 	UPLCOM_DEV(LEADTEK, 9531),		/* Leadtek 9531 GPS */
266f5113df9SGavin Atkinson 	UPLCOM_DEV(MICROSOFT, 700WX),		/* Microsoft Palm 700WX */
267bc65068dSGavin Atkinson 	UPLCOM_DEV(MOBILEACTION, MA620),	/* Mobile Action MA-620 Infrared Adapter */
268f5113df9SGavin Atkinson 	UPLCOM_DEV(NETINDEX, WS002IN),		/* Willcom W-S002IN */
269f5113df9SGavin Atkinson 	UPLCOM_DEV(NOKIA2, CA42),		/* Nokia CA-42 cable */
270f5113df9SGavin Atkinson 	UPLCOM_DEV(OTI, DKU5),			/* OTI DKU-5 cable */
271f5113df9SGavin Atkinson 	UPLCOM_DEV(PANASONIC, TYTP50P6S),	/* Panasonic TY-TP50P6-S flat screen */
272f5113df9SGavin Atkinson 	UPLCOM_DEV(PLX, CA42),			/* PLX CA-42 clone cable */
273f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, ALLTRONIX_GPRS),	/* Alltronix ACM003U00 modem */
274f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, ALDIGA_AL11U),	/* AlDiga AL-11U modem */
275f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, DCU11),		/* DCU-11 Phone Cable */
276f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, HCR331),		/* HCR331 Card Reader */
277f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, MICROMAX_610U),	/* Micromax 610U modem */
278d01755edSGavin Atkinson 	UPLCOM_DEV(PROLIFIC, MOTOROLA),		/* Motorola cable */
279bc65068dSGavin Atkinson 	UPLCOM_DEV(PROLIFIC, PHAROS),		/* Prolific Pharos */
280f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, PL2303),		/* Generic adapter */
281bc65068dSGavin Atkinson 	UPLCOM_DEV(PROLIFIC, RSAQ2),		/* I/O DATA USB-RSAQ2 */
282bc65068dSGavin Atkinson 	UPLCOM_DEV(PROLIFIC, RSAQ3),		/* I/O DATA USB-RSAQ3 */
283635c9457SGavin Atkinson 	UPLCOM_DEV(PROLIFIC, UIC_MSR206),	/* UIC MSR206 Card Reader */
284f5113df9SGavin Atkinson 	UPLCOM_DEV(PROLIFIC2, PL2303),		/* Prolific adapter */
28501a8f075SGavin Atkinson 	UPLCOM_DEV(RADIOSHACK, USBCABLE),	/* Radio Shack USB Adapter */
286bc65068dSGavin Atkinson 	UPLCOM_DEV(RATOC, REXUSB60),		/* RATOC REX-USB60 */
287bc65068dSGavin Atkinson 	UPLCOM_DEV(SAGEM, USBSERIAL),		/* Sagem USB-Serial Controller */
288f5113df9SGavin Atkinson 	UPLCOM_DEV(SAMSUNG, I330),		/* Samsung I330 phone cradle */
289f5113df9SGavin Atkinson 	UPLCOM_DEV(SANWA, KB_USB2),		/* Sanwa KB-USB2 Multimeter cable */
29001a8f075SGavin Atkinson 	UPLCOM_DEV(SIEMENS3, EF81),		/* Siemens EF81 */
29101a8f075SGavin Atkinson 	UPLCOM_DEV(SIEMENS3, SX1),		/* Siemens SX1 */
29201a8f075SGavin Atkinson 	UPLCOM_DEV(SIEMENS3, X65),		/* Siemens X65 */
29301a8f075SGavin Atkinson 	UPLCOM_DEV(SIEMENS3, X75),		/* Siemens X75 */
294bc65068dSGavin Atkinson 	UPLCOM_DEV(SITECOM, SERIAL),		/* Sitecom USB to Serial */
29501a8f075SGavin Atkinson 	UPLCOM_DEV(SMART, PL2303),		/* SMART Technologies USB to Serial */
296f5113df9SGavin Atkinson 	UPLCOM_DEV(SONY, QN3),			/* Sony QN3 phone cable */
297f5113df9SGavin Atkinson 	UPLCOM_DEV(SONYERICSSON, DATAPILOT),	/* Sony Ericsson Datapilot */
298f5113df9SGavin Atkinson 	UPLCOM_DEV(SONYERICSSON, DCU10),	/* Sony Ericsson DCU-10 Cable */
299bc65068dSGavin Atkinson 	UPLCOM_DEV(SOURCENEXT, KEIKAI8),	/* SOURCENEXT KeikaiDenwa 8 */
300bc65068dSGavin Atkinson 	UPLCOM_DEV(SOURCENEXT, KEIKAI8_CHG),	/* SOURCENEXT KeikaiDenwa 8 with charger */
301f5113df9SGavin Atkinson 	UPLCOM_DEV(SPEEDDRAGON, MS3303H),	/* Speed Dragon USB-Serial */
302f5113df9SGavin Atkinson 	UPLCOM_DEV(SYNTECH, CPT8001C),		/* Syntech CPT-8001C Barcode scanner */
303bc65068dSGavin Atkinson 	UPLCOM_DEV(TDK, UHA6400),		/* TDK USB-PHS Adapter UHA6400 */
304f5113df9SGavin Atkinson 	UPLCOM_DEV(TDK, UPA9664),		/* TDK USB-PHS Adapter UPA9664 */
30501a8f075SGavin Atkinson 	UPLCOM_DEV(TRIPPLITE, U209),		/* Tripp-Lite U209-000-R USB to Serial */
306f5113df9SGavin Atkinson 	UPLCOM_DEV(YCCABLE, PL2303),		/* YC Cable USB-Serial */
30702ac6454SAndrew Thompson };
3089e6b5313SAndrew Thompson #undef UPLCOM_DEV
30902ac6454SAndrew Thompson 
31002ac6454SAndrew Thompson static device_method_t uplcom_methods[] = {
31102ac6454SAndrew Thompson 	DEVMETHOD(device_probe, uplcom_probe),
31202ac6454SAndrew Thompson 	DEVMETHOD(device_attach, uplcom_attach),
31302ac6454SAndrew Thompson 	DEVMETHOD(device_detach, uplcom_detach),
3145805d178SHans Petter Selasky 	DEVMETHOD_END
31502ac6454SAndrew Thompson };
31602ac6454SAndrew Thompson 
31702ac6454SAndrew Thompson static devclass_t uplcom_devclass;
31802ac6454SAndrew Thompson 
31902ac6454SAndrew Thompson static driver_t uplcom_driver = {
32002ac6454SAndrew Thompson 	.name = "uplcom",
32102ac6454SAndrew Thompson 	.methods = uplcom_methods,
32202ac6454SAndrew Thompson 	.size = sizeof(struct uplcom_softc),
32302ac6454SAndrew Thompson };
32402ac6454SAndrew Thompson 
3259aef556dSAndrew Thompson DRIVER_MODULE(uplcom, uhub, uplcom_driver, uplcom_devclass, NULL, 0);
32602ac6454SAndrew Thompson MODULE_DEPEND(uplcom, ucom, 1, 1, 1);
32702ac6454SAndrew Thompson MODULE_DEPEND(uplcom, usb, 1, 1, 1);
32802ac6454SAndrew Thompson MODULE_VERSION(uplcom, UPLCOM_MODVER);
329*f809f280SWarner Losh USB_PNP_HOST_INFO(uplcom_devs);
33002ac6454SAndrew Thompson 
33102ac6454SAndrew Thompson static int
33202ac6454SAndrew Thompson uplcom_probe(device_t dev)
33302ac6454SAndrew Thompson {
334760bc48eSAndrew Thompson 	struct usb_attach_arg *uaa = device_get_ivars(dev);
33502ac6454SAndrew Thompson 
33602ac6454SAndrew Thompson 	DPRINTFN(11, "\n");
33702ac6454SAndrew Thompson 
338f29a0724SAndrew Thompson 	if (uaa->usb_mode != USB_MODE_HOST) {
33902ac6454SAndrew Thompson 		return (ENXIO);
34002ac6454SAndrew Thompson 	}
34102ac6454SAndrew Thompson 	if (uaa->info.bConfigIndex != UPLCOM_CONFIG_INDEX) {
34202ac6454SAndrew Thompson 		return (ENXIO);
34302ac6454SAndrew Thompson 	}
34402ac6454SAndrew Thompson 	if (uaa->info.bIfaceIndex != UPLCOM_IFACE_INDEX) {
34502ac6454SAndrew Thompson 		return (ENXIO);
34602ac6454SAndrew Thompson 	}
347a593f6b8SAndrew Thompson 	return (usbd_lookup_id_by_uaa(uplcom_devs, sizeof(uplcom_devs), uaa));
34802ac6454SAndrew Thompson }
34902ac6454SAndrew Thompson 
35002ac6454SAndrew Thompson static int
35102ac6454SAndrew Thompson uplcom_attach(device_t dev)
35202ac6454SAndrew Thompson {
353760bc48eSAndrew Thompson 	struct usb_attach_arg *uaa = device_get_ivars(dev);
35402ac6454SAndrew Thompson 	struct uplcom_softc *sc = device_get_softc(dev);
355760bc48eSAndrew Thompson 	struct usb_interface *iface;
356760bc48eSAndrew Thompson 	struct usb_interface_descriptor *id;
357bc65068dSGavin Atkinson 	struct usb_device_descriptor *dd;
35802ac6454SAndrew Thompson 	int error;
35902ac6454SAndrew Thompson 
36002ac6454SAndrew Thompson 	DPRINTFN(11, "\n");
36102ac6454SAndrew Thompson 
362a593f6b8SAndrew Thompson 	device_set_usb_desc(dev);
363deefe583SAndrew Thompson 	mtx_init(&sc->sc_mtx, "uplcom", NULL, MTX_DEF);
3645805d178SHans Petter Selasky 	ucom_ref(&sc->sc_super_ucom);
36502ac6454SAndrew Thompson 
36602ac6454SAndrew Thompson 	DPRINTF("sc = %p\n", sc);
36702ac6454SAndrew Thompson 
36802ac6454SAndrew Thompson 	sc->sc_udev = uaa->device;
36902ac6454SAndrew Thompson 
370bc65068dSGavin Atkinson 	/* Determine the chip type.  This algorithm is taken from Linux. */
371bc65068dSGavin Atkinson 	dd = usbd_get_device_descriptor(sc->sc_udev);
372bc65068dSGavin Atkinson 	if (dd->bDeviceClass == 0x02)
373bc65068dSGavin Atkinson 		sc->sc_chiptype = TYPE_PL2303;
374bc65068dSGavin Atkinson 	else if (dd->bMaxPacketSize == 0x40)
375bc65068dSGavin Atkinson 		sc->sc_chiptype = TYPE_PL2303HX;
376bc65068dSGavin Atkinson 	else
377bc65068dSGavin Atkinson 		sc->sc_chiptype = TYPE_PL2303;
378bc65068dSGavin Atkinson 
37902ac6454SAndrew Thompson 	DPRINTF("chiptype: %s\n",
380bc65068dSGavin Atkinson 	    (sc->sc_chiptype == TYPE_PL2303HX) ?
38102ac6454SAndrew Thompson 	    "2303X" : "2303");
38202ac6454SAndrew Thompson 
38302ac6454SAndrew Thompson 	/*
38402ac6454SAndrew Thompson 	 * USB-RSAQ1 has two interface
38502ac6454SAndrew Thompson 	 *
38602ac6454SAndrew Thompson 	 *  USB-RSAQ1       | USB-RSAQ2
38702ac6454SAndrew Thompson 	 * -----------------+-----------------
38802ac6454SAndrew Thompson 	 * Interface 0      |Interface 0
38902ac6454SAndrew Thompson 	 *  Interrupt(0x81) | Interrupt(0x81)
39002ac6454SAndrew Thompson 	 * -----------------+ BulkIN(0x02)
39102ac6454SAndrew Thompson 	 * Interface 1	    | BulkOUT(0x83)
39202ac6454SAndrew Thompson 	 *   BulkIN(0x02)   |
39302ac6454SAndrew Thompson 	 *   BulkOUT(0x83)  |
39402ac6454SAndrew Thompson 	 */
39502ac6454SAndrew Thompson 
39602ac6454SAndrew Thompson 	sc->sc_ctrl_iface_no = uaa->info.bIfaceNum;
39702ac6454SAndrew Thompson 	sc->sc_iface_index[1] = UPLCOM_IFACE_INDEX;
39802ac6454SAndrew Thompson 
399a593f6b8SAndrew Thompson 	iface = usbd_get_iface(uaa->device, UPLCOM_SECOND_IFACE_INDEX);
40002ac6454SAndrew Thompson 	if (iface) {
401a593f6b8SAndrew Thompson 		id = usbd_get_interface_descriptor(iface);
40202ac6454SAndrew Thompson 		if (id == NULL) {
403767cb2e2SAndrew Thompson 			device_printf(dev, "no interface descriptor (2)\n");
40402ac6454SAndrew Thompson 			goto detach;
40502ac6454SAndrew Thompson 		}
40602ac6454SAndrew Thompson 		sc->sc_data_iface_no = id->bInterfaceNumber;
40702ac6454SAndrew Thompson 		sc->sc_iface_index[0] = UPLCOM_SECOND_IFACE_INDEX;
408a593f6b8SAndrew Thompson 		usbd_set_parent_iface(uaa->device,
40902ac6454SAndrew Thompson 		    UPLCOM_SECOND_IFACE_INDEX, uaa->info.bIfaceIndex);
41002ac6454SAndrew Thompson 	} else {
41102ac6454SAndrew Thompson 		sc->sc_data_iface_no = sc->sc_ctrl_iface_no;
41202ac6454SAndrew Thompson 		sc->sc_iface_index[0] = UPLCOM_IFACE_INDEX;
41302ac6454SAndrew Thompson 	}
41402ac6454SAndrew Thompson 
415a593f6b8SAndrew Thompson 	error = usbd_transfer_setup(uaa->device,
41602ac6454SAndrew Thompson 	    sc->sc_iface_index, sc->sc_xfer, uplcom_config_data,
417deefe583SAndrew Thompson 	    UPLCOM_N_TRANSFER, sc, &sc->sc_mtx);
41802ac6454SAndrew Thompson 	if (error) {
41902ac6454SAndrew Thompson 		DPRINTF("one or more missing USB endpoints, "
420a593f6b8SAndrew Thompson 		    "error=%s\n", usbd_errstr(error));
42102ac6454SAndrew Thompson 		goto detach;
42202ac6454SAndrew Thompson 	}
42302ac6454SAndrew Thompson 	error = uplcom_reset(sc, uaa->device);
42402ac6454SAndrew Thompson 	if (error) {
42502ac6454SAndrew Thompson 		device_printf(dev, "reset failed, error=%s\n",
426a593f6b8SAndrew Thompson 		    usbd_errstr(error));
42702ac6454SAndrew Thompson 		goto detach;
42802ac6454SAndrew Thompson 	}
4299efb7339SHans Petter Selasky 
4309efb7339SHans Petter Selasky 	if (sc->sc_chiptype != TYPE_PL2303HX) {
4319efb7339SHans Petter Selasky 		/* HX variants seem to lock up after a clear stall request. */
432deefe583SAndrew Thompson 		mtx_lock(&sc->sc_mtx);
433ed6d949aSAndrew Thompson 		usbd_xfer_set_stall(sc->sc_xfer[UPLCOM_BULK_DT_WR]);
434ed6d949aSAndrew Thompson 		usbd_xfer_set_stall(sc->sc_xfer[UPLCOM_BULK_DT_RD]);
435deefe583SAndrew Thompson 		mtx_unlock(&sc->sc_mtx);
4369efb7339SHans Petter Selasky 	} else {
4379efb7339SHans Petter Selasky 		if (uplcom_pl2303_do(sc->sc_udev, UT_WRITE_VENDOR_DEVICE,
4389efb7339SHans Petter Selasky 		    UPLCOM_SET_REQUEST, 8, 0, 0) ||
4399efb7339SHans Petter Selasky 		    uplcom_pl2303_do(sc->sc_udev, UT_WRITE_VENDOR_DEVICE,
4409efb7339SHans Petter Selasky 		    UPLCOM_SET_REQUEST, 9, 0, 0)) {
4419efb7339SHans Petter Selasky 			goto detach;
4429efb7339SHans Petter Selasky 		}
4439efb7339SHans Petter Selasky 	}
44402ac6454SAndrew Thompson 
445a593f6b8SAndrew Thompson 	error = ucom_attach(&sc->sc_super_ucom, &sc->sc_ucom, 1, sc,
446deefe583SAndrew Thompson 	    &uplcom_callback, &sc->sc_mtx);
44702ac6454SAndrew Thompson 	if (error) {
44802ac6454SAndrew Thompson 		goto detach;
44902ac6454SAndrew Thompson 	}
45002ac6454SAndrew Thompson 	/*
45102ac6454SAndrew Thompson 	 * do the initialization during attach so that the system does not
45202ac6454SAndrew Thompson 	 * sleep during open:
45302ac6454SAndrew Thompson 	 */
454bc65068dSGavin Atkinson 	if (uplcom_pl2303_init(uaa->device, sc->sc_chiptype)) {
455767cb2e2SAndrew Thompson 		device_printf(dev, "init failed\n");
45602ac6454SAndrew Thompson 		goto detach;
45702ac6454SAndrew Thompson 	}
4586416c259SNick Hibma 	ucom_set_pnpinfo_usb(&sc->sc_super_ucom, dev);
4596416c259SNick Hibma 
46002ac6454SAndrew Thompson 	return (0);
46102ac6454SAndrew Thompson 
46202ac6454SAndrew Thompson detach:
46302ac6454SAndrew Thompson 	uplcom_detach(dev);
46402ac6454SAndrew Thompson 	return (ENXIO);
46502ac6454SAndrew Thompson }
46602ac6454SAndrew Thompson 
46702ac6454SAndrew Thompson static int
46802ac6454SAndrew Thompson uplcom_detach(device_t dev)
46902ac6454SAndrew Thompson {
47002ac6454SAndrew Thompson 	struct uplcom_softc *sc = device_get_softc(dev);
47102ac6454SAndrew Thompson 
47202ac6454SAndrew Thompson 	DPRINTF("sc=%p\n", sc);
47302ac6454SAndrew Thompson 
474015bb88fSNick Hibma 	ucom_detach(&sc->sc_super_ucom, &sc->sc_ucom);
475a593f6b8SAndrew Thompson 	usbd_transfer_unsetup(sc->sc_xfer, UPLCOM_N_TRANSFER);
47602ac6454SAndrew Thompson 
477c01fc06eSHans Petter Selasky 	device_claim_softc(dev);
478c01fc06eSHans Petter Selasky 
479c01fc06eSHans Petter Selasky 	uplcom_free_softc(sc);
480c01fc06eSHans Petter Selasky 
48102ac6454SAndrew Thompson 	return (0);
48202ac6454SAndrew Thompson }
48302ac6454SAndrew Thompson 
4845805d178SHans Petter Selasky UCOM_UNLOAD_DRAIN(uplcom);
4855805d178SHans Petter Selasky 
4865805d178SHans Petter Selasky static void
487c01fc06eSHans Petter Selasky uplcom_free_softc(struct uplcom_softc *sc)
4885805d178SHans Petter Selasky {
4895805d178SHans Petter Selasky 	if (ucom_unref(&sc->sc_super_ucom)) {
4905805d178SHans Petter Selasky 		mtx_destroy(&sc->sc_mtx);
491c01fc06eSHans Petter Selasky 		device_free_softc(sc);
4925805d178SHans Petter Selasky 	}
4935805d178SHans Petter Selasky }
4945805d178SHans Petter Selasky 
4955805d178SHans Petter Selasky static void
4965805d178SHans Petter Selasky uplcom_free(struct ucom_softc *ucom)
4975805d178SHans Petter Selasky {
498c01fc06eSHans Petter Selasky 	uplcom_free_softc(ucom->sc_parent);
4995805d178SHans Petter Selasky }
5005805d178SHans Petter Selasky 
501e0a69b51SAndrew Thompson static usb_error_t
502760bc48eSAndrew Thompson uplcom_reset(struct uplcom_softc *sc, struct usb_device *udev)
50302ac6454SAndrew Thompson {
504760bc48eSAndrew Thompson 	struct usb_device_request req;
50502ac6454SAndrew Thompson 
50602ac6454SAndrew Thompson 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
50702ac6454SAndrew Thompson 	req.bRequest = UPLCOM_SET_REQUEST;
50802ac6454SAndrew Thompson 	USETW(req.wValue, 0);
50902ac6454SAndrew Thompson 	req.wIndex[0] = sc->sc_data_iface_no;
51002ac6454SAndrew Thompson 	req.wIndex[1] = 0;
51102ac6454SAndrew Thompson 	USETW(req.wLength, 0);
51202ac6454SAndrew Thompson 
513a593f6b8SAndrew Thompson 	return (usbd_do_request(udev, NULL, &req, NULL));
51402ac6454SAndrew Thompson }
51502ac6454SAndrew Thompson 
516bc65068dSGavin Atkinson static usb_error_t
517bc65068dSGavin Atkinson uplcom_pl2303_do(struct usb_device *udev, int8_t req_type, uint8_t request,
518bc65068dSGavin Atkinson     uint16_t value, uint16_t index, uint16_t length)
51902ac6454SAndrew Thompson {
520760bc48eSAndrew Thompson 	struct usb_device_request req;
521e0a69b51SAndrew Thompson 	usb_error_t err;
52202ac6454SAndrew Thompson 	uint8_t buf[4];
52302ac6454SAndrew Thompson 
524bc65068dSGavin Atkinson 	req.bmRequestType = req_type;
525bc65068dSGavin Atkinson 	req.bRequest = request;
526bc65068dSGavin Atkinson 	USETW(req.wValue, value);
527bc65068dSGavin Atkinson 	USETW(req.wIndex, index);
528bc65068dSGavin Atkinson 	USETW(req.wLength, length);
52902ac6454SAndrew Thompson 
530a593f6b8SAndrew Thompson 	err = usbd_do_request(udev, NULL, &req, buf);
53102ac6454SAndrew Thompson 	if (err) {
532a593f6b8SAndrew Thompson 		DPRINTF("error=%s\n", usbd_errstr(err));
533bc65068dSGavin Atkinson 		return (1);
534bc65068dSGavin Atkinson 	}
535bc65068dSGavin Atkinson 	return (0);
536bc65068dSGavin Atkinson }
537bc65068dSGavin Atkinson 
538bc65068dSGavin Atkinson static int
539bc65068dSGavin Atkinson uplcom_pl2303_init(struct usb_device *udev, uint8_t chiptype)
540bc65068dSGavin Atkinson {
541bc65068dSGavin Atkinson 	int err;
542bc65068dSGavin Atkinson 
543bc65068dSGavin Atkinson 	if (uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8484, 0, 1)
544bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_WRITE_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x0404, 0, 0)
545bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8484, 0, 1)
546bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8383, 0, 1)
547bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8484, 0, 1)
548bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_WRITE_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x0404, 1, 0)
549bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8484, 0, 1)
550bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8383, 0, 1)
551bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_WRITE_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0, 1, 0)
552bc65068dSGavin Atkinson 	    || uplcom_pl2303_do(udev, UT_WRITE_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 1, 0, 0))
55302ac6454SAndrew Thompson 		return (EIO);
554bc65068dSGavin Atkinson 
555bc65068dSGavin Atkinson 	if (chiptype == TYPE_PL2303HX)
556bc65068dSGavin Atkinson 		err = uplcom_pl2303_do(udev, UT_WRITE_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 2, 0x44, 0);
557bc65068dSGavin Atkinson 	else
558bc65068dSGavin Atkinson 		err = uplcom_pl2303_do(udev, UT_WRITE_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 2, 0x24, 0);
559bc65068dSGavin Atkinson 	if (err)
560bc65068dSGavin Atkinson 		return (EIO);
561bc65068dSGavin Atkinson 
56202ac6454SAndrew Thompson 	return (0);
56302ac6454SAndrew Thompson }
56402ac6454SAndrew Thompson 
56502ac6454SAndrew Thompson static void
566760bc48eSAndrew Thompson uplcom_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
56702ac6454SAndrew Thompson {
56802ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
569760bc48eSAndrew Thompson 	struct usb_device_request req;
57002ac6454SAndrew Thompson 
57102ac6454SAndrew Thompson 	DPRINTF("onoff = %d\n", onoff);
57202ac6454SAndrew Thompson 
57302ac6454SAndrew Thompson 	if (onoff)
57402ac6454SAndrew Thompson 		sc->sc_line |= UCDC_LINE_DTR;
57502ac6454SAndrew Thompson 	else
57602ac6454SAndrew Thompson 		sc->sc_line &= ~UCDC_LINE_DTR;
57702ac6454SAndrew Thompson 
57802ac6454SAndrew Thompson 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
57902ac6454SAndrew Thompson 	req.bRequest = UCDC_SET_CONTROL_LINE_STATE;
58002ac6454SAndrew Thompson 	USETW(req.wValue, sc->sc_line);
58102ac6454SAndrew Thompson 	req.wIndex[0] = sc->sc_data_iface_no;
58202ac6454SAndrew Thompson 	req.wIndex[1] = 0;
58302ac6454SAndrew Thompson 	USETW(req.wLength, 0);
58402ac6454SAndrew Thompson 
585a593f6b8SAndrew Thompson 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
58602ac6454SAndrew Thompson 	    &req, NULL, 0, 1000);
58702ac6454SAndrew Thompson }
58802ac6454SAndrew Thompson 
58902ac6454SAndrew Thompson static void
590760bc48eSAndrew Thompson uplcom_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
59102ac6454SAndrew Thompson {
59202ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
593760bc48eSAndrew Thompson 	struct usb_device_request req;
59402ac6454SAndrew Thompson 
59502ac6454SAndrew Thompson 	DPRINTF("onoff = %d\n", onoff);
59602ac6454SAndrew Thompson 
59702ac6454SAndrew Thompson 	if (onoff)
59802ac6454SAndrew Thompson 		sc->sc_line |= UCDC_LINE_RTS;
59902ac6454SAndrew Thompson 	else
60002ac6454SAndrew Thompson 		sc->sc_line &= ~UCDC_LINE_RTS;
60102ac6454SAndrew Thompson 
60202ac6454SAndrew Thompson 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
60302ac6454SAndrew Thompson 	req.bRequest = UCDC_SET_CONTROL_LINE_STATE;
60402ac6454SAndrew Thompson 	USETW(req.wValue, sc->sc_line);
60502ac6454SAndrew Thompson 	req.wIndex[0] = sc->sc_data_iface_no;
60602ac6454SAndrew Thompson 	req.wIndex[1] = 0;
60702ac6454SAndrew Thompson 	USETW(req.wLength, 0);
60802ac6454SAndrew Thompson 
609a593f6b8SAndrew Thompson 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
61002ac6454SAndrew Thompson 	    &req, NULL, 0, 1000);
61102ac6454SAndrew Thompson }
61202ac6454SAndrew Thompson 
61302ac6454SAndrew Thompson static void
614760bc48eSAndrew Thompson uplcom_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
61502ac6454SAndrew Thompson {
61602ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
617760bc48eSAndrew Thompson 	struct usb_device_request req;
61802ac6454SAndrew Thompson 	uint16_t temp;
61902ac6454SAndrew Thompson 
62002ac6454SAndrew Thompson 	DPRINTF("onoff = %d\n", onoff);
62102ac6454SAndrew Thompson 
62202ac6454SAndrew Thompson 	temp = (onoff ? UCDC_BREAK_ON : UCDC_BREAK_OFF);
62302ac6454SAndrew Thompson 
62402ac6454SAndrew Thompson 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
62502ac6454SAndrew Thompson 	req.bRequest = UCDC_SEND_BREAK;
62602ac6454SAndrew Thompson 	USETW(req.wValue, temp);
62702ac6454SAndrew Thompson 	req.wIndex[0] = sc->sc_data_iface_no;
62802ac6454SAndrew Thompson 	req.wIndex[1] = 0;
62902ac6454SAndrew Thompson 	USETW(req.wLength, 0);
63002ac6454SAndrew Thompson 
631a593f6b8SAndrew Thompson 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
63202ac6454SAndrew Thompson 	    &req, NULL, 0, 1000);
63302ac6454SAndrew Thompson }
63402ac6454SAndrew Thompson 
6356d917491SHans Petter Selasky static const uint32_t uplcom_rates[] = {
63602ac6454SAndrew Thompson 	75, 150, 300, 600, 1200, 1800, 2400, 3600, 4800, 7200, 9600, 14400,
63702ac6454SAndrew Thompson 	19200, 28800, 38400, 57600, 115200,
63802ac6454SAndrew Thompson 	/*
63902ac6454SAndrew Thompson 	 * Higher speeds are probably possible. PL2303X supports up to
64002ac6454SAndrew Thompson 	 * 6Mb and can set any rate
64102ac6454SAndrew Thompson 	 */
64202ac6454SAndrew Thompson 	230400, 460800, 614400, 921600, 1228800
64302ac6454SAndrew Thompson };
64402ac6454SAndrew Thompson 
64502ac6454SAndrew Thompson #define	N_UPLCOM_RATES	(sizeof(uplcom_rates)/sizeof(uplcom_rates[0]))
64602ac6454SAndrew Thompson 
64702ac6454SAndrew Thompson static int
648760bc48eSAndrew Thompson uplcom_pre_param(struct ucom_softc *ucom, struct termios *t)
64902ac6454SAndrew Thompson {
650fe0f6362SGavin Atkinson 	struct uplcom_softc *sc = ucom->sc_parent;
65102ac6454SAndrew Thompson 	uint8_t i;
65202ac6454SAndrew Thompson 
65302ac6454SAndrew Thompson 	DPRINTF("\n");
65402ac6454SAndrew Thompson 
655fe0f6362SGavin Atkinson 	/**
656fe0f6362SGavin Atkinson 	 * Check requested baud rate.
657fe0f6362SGavin Atkinson 	 *
658fe0f6362SGavin Atkinson 	 * The PL2303 can only set specific baud rates, up to 1228800 baud.
659fe0f6362SGavin Atkinson 	 * The PL2303X can set any baud rate up to 6Mb.
660fe0f6362SGavin Atkinson 	 * The PL2303HX rev. D can set any baud rate up to 12Mb.
661fe0f6362SGavin Atkinson 	 *
662fe0f6362SGavin Atkinson 	 * XXX: We currently cannot identify the PL2303HX rev. D, so treat
663fe0f6362SGavin Atkinson 	 *      it the same as the PL2303X.
664fe0f6362SGavin Atkinson 	 */
665bc65068dSGavin Atkinson 	if (sc->sc_chiptype != TYPE_PL2303HX) {
666fe0f6362SGavin Atkinson 		for (i = 0; i < N_UPLCOM_RATES; i++) {
667fe0f6362SGavin Atkinson 			if (uplcom_rates[i] == t->c_ospeed)
668fe0f6362SGavin Atkinson 				return (0);
66902ac6454SAndrew Thompson 		}
67002ac6454SAndrew Thompson  	} else {
671fe0f6362SGavin Atkinson 		if (t->c_ospeed <= 6000000)
672fe0f6362SGavin Atkinson 			return (0);
67302ac6454SAndrew Thompson 	}
67402ac6454SAndrew Thompson 
675fe0f6362SGavin Atkinson 	DPRINTF("uplcom_param: bad baud rate (%d)\n", t->c_ospeed);
676fe0f6362SGavin Atkinson 	return (EIO);
67702ac6454SAndrew Thompson }
67802ac6454SAndrew Thompson 
67902ac6454SAndrew Thompson static void
680760bc48eSAndrew Thompson uplcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
68102ac6454SAndrew Thompson {
68202ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
683760bc48eSAndrew Thompson 	struct usb_cdc_line_state ls;
684760bc48eSAndrew Thompson 	struct usb_device_request req;
68502ac6454SAndrew Thompson 
68602ac6454SAndrew Thompson 	DPRINTF("sc = %p\n", sc);
68702ac6454SAndrew Thompson 
688271ae033SHans Petter Selasky 	memset(&ls, 0, sizeof(ls));
68902ac6454SAndrew Thompson 
69002ac6454SAndrew Thompson 	USETDW(ls.dwDTERate, t->c_ospeed);
69102ac6454SAndrew Thompson 
69202ac6454SAndrew Thompson 	if (t->c_cflag & CSTOPB) {
69302ac6454SAndrew Thompson 		ls.bCharFormat = UCDC_STOP_BIT_2;
69402ac6454SAndrew Thompson 	} else {
69502ac6454SAndrew Thompson 		ls.bCharFormat = UCDC_STOP_BIT_1;
69602ac6454SAndrew Thompson 	}
69702ac6454SAndrew Thompson 
69802ac6454SAndrew Thompson 	if (t->c_cflag & PARENB) {
69902ac6454SAndrew Thompson 		if (t->c_cflag & PARODD) {
70002ac6454SAndrew Thompson 			ls.bParityType = UCDC_PARITY_ODD;
70102ac6454SAndrew Thompson 		} else {
70202ac6454SAndrew Thompson 			ls.bParityType = UCDC_PARITY_EVEN;
70302ac6454SAndrew Thompson 		}
70402ac6454SAndrew Thompson 	} else {
70502ac6454SAndrew Thompson 		ls.bParityType = UCDC_PARITY_NONE;
70602ac6454SAndrew Thompson 	}
70702ac6454SAndrew Thompson 
70802ac6454SAndrew Thompson 	switch (t->c_cflag & CSIZE) {
70902ac6454SAndrew Thompson 	case CS5:
71002ac6454SAndrew Thompson 		ls.bDataBits = 5;
71102ac6454SAndrew Thompson 		break;
71202ac6454SAndrew Thompson 	case CS6:
71302ac6454SAndrew Thompson 		ls.bDataBits = 6;
71402ac6454SAndrew Thompson 		break;
71502ac6454SAndrew Thompson 	case CS7:
71602ac6454SAndrew Thompson 		ls.bDataBits = 7;
71702ac6454SAndrew Thompson 		break;
71802ac6454SAndrew Thompson 	case CS8:
71902ac6454SAndrew Thompson 		ls.bDataBits = 8;
72002ac6454SAndrew Thompson 		break;
72102ac6454SAndrew Thompson 	}
72202ac6454SAndrew Thompson 
72302ac6454SAndrew Thompson 	DPRINTF("rate=%d fmt=%d parity=%d bits=%d\n",
72402ac6454SAndrew Thompson 	    UGETDW(ls.dwDTERate), ls.bCharFormat,
72502ac6454SAndrew Thompson 	    ls.bParityType, ls.bDataBits);
72602ac6454SAndrew Thompson 
72702ac6454SAndrew Thompson 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
72802ac6454SAndrew Thompson 	req.bRequest = UCDC_SET_LINE_CODING;
72902ac6454SAndrew Thompson 	USETW(req.wValue, 0);
73002ac6454SAndrew Thompson 	req.wIndex[0] = sc->sc_data_iface_no;
73102ac6454SAndrew Thompson 	req.wIndex[1] = 0;
73202ac6454SAndrew Thompson 	USETW(req.wLength, UCDC_LINE_STATE_LENGTH);
73302ac6454SAndrew Thompson 
734a593f6b8SAndrew Thompson 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
73502ac6454SAndrew Thompson 	    &req, &ls, 0, 1000);
73602ac6454SAndrew Thompson 
73702ac6454SAndrew Thompson 	if (t->c_cflag & CRTSCTS) {
73802ac6454SAndrew Thompson 
73902ac6454SAndrew Thompson 		DPRINTF("crtscts = on\n");
74002ac6454SAndrew Thompson 
74102ac6454SAndrew Thompson 		req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
74202ac6454SAndrew Thompson 		req.bRequest = UPLCOM_SET_REQUEST;
74302ac6454SAndrew Thompson 		USETW(req.wValue, 0);
744bc65068dSGavin Atkinson 		if (sc->sc_chiptype == TYPE_PL2303HX)
74502ac6454SAndrew Thompson 			USETW(req.wIndex, UPLCOM_SET_CRTSCTS_PL2303X);
74602ac6454SAndrew Thompson 		else
74702ac6454SAndrew Thompson 			USETW(req.wIndex, UPLCOM_SET_CRTSCTS);
74802ac6454SAndrew Thompson 		USETW(req.wLength, 0);
74902ac6454SAndrew Thompson 
750a593f6b8SAndrew Thompson 		ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
75102ac6454SAndrew Thompson 		    &req, NULL, 0, 1000);
75202ac6454SAndrew Thompson 	} else {
75302ac6454SAndrew Thompson 		req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
75402ac6454SAndrew Thompson 		req.bRequest = UPLCOM_SET_REQUEST;
75502ac6454SAndrew Thompson 		USETW(req.wValue, 0);
75602ac6454SAndrew Thompson 		USETW(req.wIndex, 0);
75702ac6454SAndrew Thompson 		USETW(req.wLength, 0);
758a593f6b8SAndrew Thompson 		ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
75902ac6454SAndrew Thompson 		    &req, NULL, 0, 1000);
76002ac6454SAndrew Thompson 	}
76102ac6454SAndrew Thompson }
76202ac6454SAndrew Thompson 
76302ac6454SAndrew Thompson static void
764760bc48eSAndrew Thompson uplcom_start_read(struct ucom_softc *ucom)
76502ac6454SAndrew Thompson {
76602ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
76702ac6454SAndrew Thompson 
76802ac6454SAndrew Thompson 	/* start interrupt endpoint */
769a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[UPLCOM_INTR_DT_RD]);
77002ac6454SAndrew Thompson 
77102ac6454SAndrew Thompson 	/* start read endpoint */
772a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[UPLCOM_BULK_DT_RD]);
77302ac6454SAndrew Thompson }
77402ac6454SAndrew Thompson 
77502ac6454SAndrew Thompson static void
776760bc48eSAndrew Thompson uplcom_stop_read(struct ucom_softc *ucom)
77702ac6454SAndrew Thompson {
77802ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
77902ac6454SAndrew Thompson 
78002ac6454SAndrew Thompson 	/* stop interrupt endpoint */
781a593f6b8SAndrew Thompson 	usbd_transfer_stop(sc->sc_xfer[UPLCOM_INTR_DT_RD]);
78202ac6454SAndrew Thompson 
78302ac6454SAndrew Thompson 	/* stop read endpoint */
784a593f6b8SAndrew Thompson 	usbd_transfer_stop(sc->sc_xfer[UPLCOM_BULK_DT_RD]);
78502ac6454SAndrew Thompson }
78602ac6454SAndrew Thompson 
78702ac6454SAndrew Thompson static void
788760bc48eSAndrew Thompson uplcom_start_write(struct ucom_softc *ucom)
78902ac6454SAndrew Thompson {
79002ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
79102ac6454SAndrew Thompson 
792a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[UPLCOM_BULK_DT_WR]);
79302ac6454SAndrew Thompson }
79402ac6454SAndrew Thompson 
79502ac6454SAndrew Thompson static void
796760bc48eSAndrew Thompson uplcom_stop_write(struct ucom_softc *ucom)
79702ac6454SAndrew Thompson {
79802ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
79902ac6454SAndrew Thompson 
800a593f6b8SAndrew Thompson 	usbd_transfer_stop(sc->sc_xfer[UPLCOM_BULK_DT_WR]);
80102ac6454SAndrew Thompson }
80202ac6454SAndrew Thompson 
80302ac6454SAndrew Thompson static void
804760bc48eSAndrew Thompson uplcom_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
80502ac6454SAndrew Thompson {
80602ac6454SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
80702ac6454SAndrew Thompson 
80802ac6454SAndrew Thompson 	DPRINTF("\n");
80902ac6454SAndrew Thompson 
81002ac6454SAndrew Thompson 	*lsr = sc->sc_lsr;
81102ac6454SAndrew Thompson 	*msr = sc->sc_msr;
81202ac6454SAndrew Thompson }
81302ac6454SAndrew Thompson 
81402ac6454SAndrew Thompson static void
815ed6d949aSAndrew Thompson uplcom_intr_callback(struct usb_xfer *xfer, usb_error_t error)
81602ac6454SAndrew Thompson {
817ed6d949aSAndrew Thompson 	struct uplcom_softc *sc = usbd_xfer_softc(xfer);
818ed6d949aSAndrew Thompson 	struct usb_page_cache *pc;
81902ac6454SAndrew Thompson 	uint8_t buf[9];
820ed6d949aSAndrew Thompson 	int actlen;
821ed6d949aSAndrew Thompson 
822ed6d949aSAndrew Thompson 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
82302ac6454SAndrew Thompson 
82402ac6454SAndrew Thompson 	switch (USB_GET_STATE(xfer)) {
82502ac6454SAndrew Thompson 	case USB_ST_TRANSFERRED:
82602ac6454SAndrew Thompson 
827ed6d949aSAndrew Thompson 		DPRINTF("actlen = %u\n", actlen);
82802ac6454SAndrew Thompson 
829ed6d949aSAndrew Thompson 		if (actlen >= 9) {
83002ac6454SAndrew Thompson 
831ed6d949aSAndrew Thompson 			pc = usbd_xfer_get_frame(xfer, 0);
832ed6d949aSAndrew Thompson 			usbd_copy_out(pc, 0, buf, sizeof(buf));
83302ac6454SAndrew Thompson 
83402ac6454SAndrew Thompson 			DPRINTF("status = 0x%02x\n", buf[8]);
83502ac6454SAndrew Thompson 
83602ac6454SAndrew Thompson 			sc->sc_lsr = 0;
83702ac6454SAndrew Thompson 			sc->sc_msr = 0;
83802ac6454SAndrew Thompson 
83902ac6454SAndrew Thompson 			if (buf[8] & RSAQ_STATUS_CTS) {
84002ac6454SAndrew Thompson 				sc->sc_msr |= SER_CTS;
84102ac6454SAndrew Thompson 			}
84202ac6454SAndrew Thompson 			if (buf[8] & RSAQ_STATUS_DSR) {
84302ac6454SAndrew Thompson 				sc->sc_msr |= SER_DSR;
84402ac6454SAndrew Thompson 			}
84502ac6454SAndrew Thompson 			if (buf[8] & RSAQ_STATUS_DCD) {
84602ac6454SAndrew Thompson 				sc->sc_msr |= SER_DCD;
84702ac6454SAndrew Thompson 			}
848a593f6b8SAndrew Thompson 			ucom_status_change(&sc->sc_ucom);
84902ac6454SAndrew Thompson 		}
85002ac6454SAndrew Thompson 	case USB_ST_SETUP:
85102ac6454SAndrew Thompson tr_setup:
852ed6d949aSAndrew Thompson 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
853a593f6b8SAndrew Thompson 		usbd_transfer_submit(xfer);
85402ac6454SAndrew Thompson 		return;
85502ac6454SAndrew Thompson 
85602ac6454SAndrew Thompson 	default:			/* Error */
857ed6d949aSAndrew Thompson 		if (error != USB_ERR_CANCELLED) {
85802ac6454SAndrew Thompson 			/* try to clear stall first */
859ed6d949aSAndrew Thompson 			usbd_xfer_set_stall(xfer);
86002ac6454SAndrew Thompson 			goto tr_setup;
86102ac6454SAndrew Thompson 		}
86202ac6454SAndrew Thompson 		return;
86302ac6454SAndrew Thompson 	}
86402ac6454SAndrew Thompson }
86502ac6454SAndrew Thompson 
86602ac6454SAndrew Thompson static void
867ed6d949aSAndrew Thompson uplcom_write_callback(struct usb_xfer *xfer, usb_error_t error)
86802ac6454SAndrew Thompson {
869ed6d949aSAndrew Thompson 	struct uplcom_softc *sc = usbd_xfer_softc(xfer);
870ed6d949aSAndrew Thompson 	struct usb_page_cache *pc;
87102ac6454SAndrew Thompson 	uint32_t actlen;
87202ac6454SAndrew Thompson 
87302ac6454SAndrew Thompson 	switch (USB_GET_STATE(xfer)) {
87402ac6454SAndrew Thompson 	case USB_ST_SETUP:
87502ac6454SAndrew Thompson 	case USB_ST_TRANSFERRED:
87602ac6454SAndrew Thompson tr_setup:
877ed6d949aSAndrew Thompson 		pc = usbd_xfer_get_frame(xfer, 0);
878ed6d949aSAndrew Thompson 		if (ucom_get_data(&sc->sc_ucom, pc, 0,
87902ac6454SAndrew Thompson 		    UPLCOM_BULK_BUF_SIZE, &actlen)) {
88002ac6454SAndrew Thompson 
88102ac6454SAndrew Thompson 			DPRINTF("actlen = %d\n", actlen);
88202ac6454SAndrew Thompson 
883ed6d949aSAndrew Thompson 			usbd_xfer_set_frame_len(xfer, 0, actlen);
884a593f6b8SAndrew Thompson 			usbd_transfer_submit(xfer);
88502ac6454SAndrew Thompson 		}
88602ac6454SAndrew Thompson 		return;
88702ac6454SAndrew Thompson 
88802ac6454SAndrew Thompson 	default:			/* Error */
889ed6d949aSAndrew Thompson 		if (error != USB_ERR_CANCELLED) {
89002ac6454SAndrew Thompson 			/* try to clear stall first */
891ed6d949aSAndrew Thompson 			usbd_xfer_set_stall(xfer);
89202ac6454SAndrew Thompson 			goto tr_setup;
89302ac6454SAndrew Thompson 		}
89402ac6454SAndrew Thompson 		return;
89502ac6454SAndrew Thompson 	}
89602ac6454SAndrew Thompson }
89702ac6454SAndrew Thompson 
89802ac6454SAndrew Thompson static void
899ed6d949aSAndrew Thompson uplcom_read_callback(struct usb_xfer *xfer, usb_error_t error)
90002ac6454SAndrew Thompson {
901ed6d949aSAndrew Thompson 	struct uplcom_softc *sc = usbd_xfer_softc(xfer);
902ed6d949aSAndrew Thompson 	struct usb_page_cache *pc;
903ed6d949aSAndrew Thompson 	int actlen;
904ed6d949aSAndrew Thompson 
905ed6d949aSAndrew Thompson 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
90602ac6454SAndrew Thompson 
90702ac6454SAndrew Thompson 	switch (USB_GET_STATE(xfer)) {
90802ac6454SAndrew Thompson 	case USB_ST_TRANSFERRED:
909ed6d949aSAndrew Thompson 		pc = usbd_xfer_get_frame(xfer, 0);
910ed6d949aSAndrew Thompson 		ucom_put_data(&sc->sc_ucom, pc, 0, actlen);
91102ac6454SAndrew Thompson 
91202ac6454SAndrew Thompson 	case USB_ST_SETUP:
91302ac6454SAndrew Thompson tr_setup:
914ed6d949aSAndrew Thompson 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
915a593f6b8SAndrew Thompson 		usbd_transfer_submit(xfer);
91602ac6454SAndrew Thompson 		return;
91702ac6454SAndrew Thompson 
91802ac6454SAndrew Thompson 	default:			/* Error */
919ed6d949aSAndrew Thompson 		if (error != USB_ERR_CANCELLED) {
92002ac6454SAndrew Thompson 			/* try to clear stall first */
921ed6d949aSAndrew Thompson 			usbd_xfer_set_stall(xfer);
92202ac6454SAndrew Thompson 			goto tr_setup;
92302ac6454SAndrew Thompson 		}
92402ac6454SAndrew Thompson 		return;
92502ac6454SAndrew Thompson 	}
92602ac6454SAndrew Thompson }
927655dc9d0SAndrew Thompson 
928655dc9d0SAndrew Thompson static void
929655dc9d0SAndrew Thompson uplcom_poll(struct ucom_softc *ucom)
930655dc9d0SAndrew Thompson {
931655dc9d0SAndrew Thompson 	struct uplcom_softc *sc = ucom->sc_parent;
932655dc9d0SAndrew Thompson 	usbd_transfer_poll(sc->sc_xfer, UPLCOM_N_TRANSFER);
933655dc9d0SAndrew Thompson }
934