uplcom.c revision 1.37 1 1.37 martin /* $NetBSD: uplcom.c,v 1.37 2004/05/20 09:23:33 martin Exp $ */
2 1.1 ichiro /*
3 1.3 ichiro * Copyright (c) 2001 The NetBSD Foundation, Inc.
4 1.1 ichiro * All rights reserved.
5 1.1 ichiro *
6 1.1 ichiro * This code is derived from software contributed to The NetBSD Foundation
7 1.12 ichiro * by Ichiro FUKUHARA (ichiro (at) ichiro.org).
8 1.1 ichiro *
9 1.1 ichiro * Redistribution and use in source and binary forms, with or without
10 1.1 ichiro * modification, are permitted provided that the following conditions
11 1.1 ichiro * are met:
12 1.1 ichiro * 1. Redistributions of source code must retain the above copyright
13 1.1 ichiro * notice, this list of conditions and the following disclaimer.
14 1.1 ichiro * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 ichiro * notice, this list of conditions and the following disclaimer in the
16 1.1 ichiro * documentation and/or other materials provided with the distribution.
17 1.1 ichiro * 3. All advertising materials mentioning features or use of this software
18 1.1 ichiro * must display the following acknowledgement:
19 1.1 ichiro * This product includes software developed by the NetBSD
20 1.1 ichiro * Foundation, Inc. and its contributors.
21 1.1 ichiro * 4. Neither the name of The NetBSD Foundation nor the names of its
22 1.1 ichiro * contributors may be used to endorse or promote products derived
23 1.1 ichiro * from this software without specific prior written permission.
24 1.1 ichiro *
25 1.1 ichiro * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 1.1 ichiro * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 ichiro * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 ichiro * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 1.1 ichiro * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 ichiro * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 ichiro * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 ichiro * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 ichiro * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 ichiro * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 ichiro * POSSIBILITY OF SUCH DAMAGE.
36 1.1 ichiro */
37 1.1 ichiro
38 1.1 ichiro /*
39 1.31 wiz * General information: http://www.prolific.com.tw/fr_pl2303.htm
40 1.31 wiz * http://www.hitachi-hitec.com/jyouhou/prolific/2303.pdf
41 1.1 ichiro */
42 1.21 lukem
43 1.21 lukem #include <sys/cdefs.h>
44 1.37 martin __KERNEL_RCSID(0, "$NetBSD: uplcom.c,v 1.37 2004/05/20 09:23:33 martin Exp $");
45 1.1 ichiro
46 1.1 ichiro #include <sys/param.h>
47 1.1 ichiro #include <sys/systm.h>
48 1.1 ichiro #include <sys/kernel.h>
49 1.12 ichiro #include <sys/malloc.h>
50 1.1 ichiro #include <sys/ioctl.h>
51 1.1 ichiro #include <sys/conf.h>
52 1.1 ichiro #include <sys/tty.h>
53 1.1 ichiro #include <sys/file.h>
54 1.1 ichiro #include <sys/select.h>
55 1.1 ichiro #include <sys/proc.h>
56 1.1 ichiro #include <sys/device.h>
57 1.1 ichiro #include <sys/poll.h>
58 1.1 ichiro
59 1.1 ichiro #include <dev/usb/usb.h>
60 1.1 ichiro #include <dev/usb/usbcdc.h>
61 1.1 ichiro
62 1.1 ichiro #include <dev/usb/usbdi.h>
63 1.1 ichiro #include <dev/usb/usbdi_util.h>
64 1.1 ichiro #include <dev/usb/usbdevs.h>
65 1.1 ichiro #include <dev/usb/usb_quirks.h>
66 1.1 ichiro
67 1.1 ichiro #include <dev/usb/usbdevs.h>
68 1.1 ichiro #include <dev/usb/ucomvar.h>
69 1.1 ichiro
70 1.1 ichiro #ifdef UPLCOM_DEBUG
71 1.1 ichiro #define DPRINTFN(n, x) if (uplcomdebug > (n)) logprintf x
72 1.12 ichiro int uplcomdebug = 0;
73 1.1 ichiro #else
74 1.1 ichiro #define DPRINTFN(n, x)
75 1.1 ichiro #endif
76 1.1 ichiro #define DPRINTF(x) DPRINTFN(0, x)
77 1.1 ichiro
78 1.1 ichiro #define UPLCOM_CONFIG_INDEX 0
79 1.10 ichiro #define UPLCOM_IFACE_INDEX 0
80 1.10 ichiro #define UPLCOM_SECOND_IFACE_INDEX 1
81 1.1 ichiro
82 1.19 ichiro #define UPLCOM_SET_REQUEST 0x01
83 1.19 ichiro #define UPLCOM_SET_CRTSCTS 0x41
84 1.12 ichiro #define RSAQ_STATUS_DSR 0x02
85 1.12 ichiro #define RSAQ_STATUS_DCD 0x01
86 1.12 ichiro
87 1.37 martin #define UPLCOM_FLOW_OUT_CTS 0x0001
88 1.37 martin #define UPLCOM_FLOW_OUT_DSR 0x0002
89 1.37 martin #define UPLCOM_FLOW_IN_DSR 0x0004
90 1.37 martin #define UPLCOM_FLOW_IN_DTR 0x0008
91 1.37 martin #define UPLCOM_FLOW_IN_RTS 0x0010
92 1.37 martin #define UPLCOM_FLOW_OUT_RTS 0x0020
93 1.37 martin #define UPLCOM_FLOW_OUT_XON 0x0080
94 1.37 martin #define UPLCOM_FLOW_IN_XON 0x0100
95 1.37 martin
96 1.1 ichiro struct uplcom_softc {
97 1.1 ichiro USBBASEDEVICE sc_dev; /* base device */
98 1.1 ichiro usbd_device_handle sc_udev; /* USB device */
99 1.14 ichiro usbd_interface_handle sc_iface; /* interface */
100 1.1 ichiro int sc_iface_number; /* interface number */
101 1.1 ichiro
102 1.20 ichiro usbd_interface_handle sc_intr_iface; /* interrupt interface */
103 1.12 ichiro int sc_intr_number; /* interrupt number */
104 1.12 ichiro usbd_pipe_handle sc_intr_pipe; /* interrupt pipe */
105 1.12 ichiro u_char *sc_intr_buf; /* interrupt buffer */
106 1.12 ichiro int sc_isize;
107 1.12 ichiro
108 1.1 ichiro usb_cdc_line_state_t sc_line_state; /* current line state */
109 1.37 martin int sc_dtr; /* current DTR state */
110 1.37 martin int sc_rts; /* current RTS state */
111 1.1 ichiro
112 1.12 ichiro device_ptr_t sc_subdev; /* ucom device */
113 1.1 ichiro
114 1.13 ichiro u_char sc_dying; /* disconnecting */
115 1.12 ichiro
116 1.12 ichiro u_char sc_lsr; /* Local status register */
117 1.12 ichiro u_char sc_msr; /* uplcom status register */
118 1.1 ichiro };
119 1.1 ichiro
120 1.1 ichiro /*
121 1.1 ichiro * These are the maximum number of bytes transferred per frame.
122 1.1 ichiro * The output buffer size cannot be increased due to the size encoding.
123 1.1 ichiro */
124 1.6 augustss #define UPLCOMIBUFSIZE 256
125 1.6 augustss #define UPLCOMOBUFSIZE 256
126 1.1 ichiro
127 1.11 ichiro Static usbd_status uplcom_reset(struct uplcom_softc *);
128 1.1 ichiro Static usbd_status uplcom_set_line_coding(struct uplcom_softc *sc,
129 1.6 augustss usb_cdc_line_state_t *state);
130 1.19 ichiro Static usbd_status uplcom_set_crtscts(struct uplcom_softc *);
131 1.12 ichiro Static void uplcom_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
132 1.1 ichiro
133 1.12 ichiro Static void uplcom_set(void *, int, int, int);
134 1.12 ichiro Static void uplcom_dtr(struct uplcom_softc *, int);
135 1.12 ichiro Static void uplcom_rts(struct uplcom_softc *, int);
136 1.12 ichiro Static void uplcom_break(struct uplcom_softc *, int);
137 1.12 ichiro Static void uplcom_set_line_state(struct uplcom_softc *);
138 1.12 ichiro Static void uplcom_get_status(void *, int portno, u_char *lsr, u_char *msr);
139 1.12 ichiro #if TODO
140 1.24 augustss Static int uplcom_ioctl(void *, int, u_long, caddr_t, int, usb_proc_ptr );
141 1.12 ichiro #endif
142 1.12 ichiro Static int uplcom_param(void *, int, struct termios *);
143 1.12 ichiro Static int uplcom_open(void *, int);
144 1.12 ichiro Static void uplcom_close(void *, int);
145 1.1 ichiro
146 1.1 ichiro struct ucom_methods uplcom_methods = {
147 1.12 ichiro uplcom_get_status,
148 1.1 ichiro uplcom_set,
149 1.1 ichiro uplcom_param,
150 1.12 ichiro NULL, /* uplcom_ioctl, TODO */
151 1.11 ichiro uplcom_open,
152 1.11 ichiro uplcom_close,
153 1.1 ichiro NULL,
154 1.1 ichiro NULL,
155 1.1 ichiro };
156 1.1 ichiro
157 1.23 augustss static const struct usb_devno uplcom_devs[] = {
158 1.1 ichiro /* I/O DATA USB-RSAQ2 */
159 1.17 jhawk { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_RSAQ2 },
160 1.13 ichiro /* I/O DATA USB-RSAQ */
161 1.10 ichiro { USB_VENDOR_IODATA, USB_PRODUCT_IODATA_USBRSAQ },
162 1.16 ichiro /* PLANEX USB-RS232 URS-03 */
163 1.16 ichiro { USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC232A },
164 1.17 jhawk /* IOGEAR/ATEN UC-232A */
165 1.18 jhawk { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303 },
166 1.34 augustss /* IOGEAR/ATENTRIPPLITE */
167 1.34 augustss { USB_VENDOR_TRIPPLITE, USB_PRODUCT_TRIPPLITE_U209 },
168 1.22 augustss /* ELECOM UC-SGT */
169 1.22 augustss { USB_VENDOR_ELECOM, USB_PRODUCT_ELECOM_UCSGT },
170 1.25 ichiro /* RATOC REX-USB60 */
171 1.25 ichiro { USB_VENDOR_RATOC, USB_PRODUCT_RATOC_REXUSB60 },
172 1.26 ichiro /* TDK USB-PHS Adapter UHA6400 */
173 1.26 ichiro { USB_VENDOR_TDK, USB_PRODUCT_TDK_UHA6400 },
174 1.27 ichiro /* TDK USB-PDC Adapter UPA9664 */
175 1.27 ichiro { USB_VENDOR_TDK, USB_PRODUCT_TDK_UPA9664 },
176 1.30 augustss /* Sony Ericsson USB Cable */
177 1.30 augustss { USB_VENDOR_SONYERICSSON, USB_PRODUCT_SONYERICSSON_DCU10 },
178 1.32 augustss /* SOURCENEXT KeikaiDenwa 8 */
179 1.32 augustss { USB_VENDOR_SOURCENEXT, USB_PRODUCT_SOURCENEXT_KEIKAI8 },
180 1.32 augustss /* SOURCENEXT KeikaiDenwa 8 with charger */
181 1.32 augustss { USB_VENDOR_SOURCENEXT, USB_PRODUCT_SOURCENEXT_KEIKAI8_CHG },
182 1.32 augustss /* HAL Corporation Crossam2+USB */
183 1.32 augustss { USB_VENDOR_HAL, USB_PRODUCT_HAL_IMR001 },
184 1.1 ichiro };
185 1.23 augustss #define uplcom_lookup(v, p) usb_lookup(uplcom_devs, v, p)
186 1.32 augustss
187 1.1 ichiro
188 1.1 ichiro USB_DECLARE_DRIVER(uplcom);
189 1.1 ichiro
190 1.1 ichiro USB_MATCH(uplcom)
191 1.1 ichiro {
192 1.1 ichiro USB_MATCH_START(uplcom, uaa);
193 1.1 ichiro
194 1.6 augustss if (uaa->iface != NULL)
195 1.1 ichiro return (UMATCH_NONE);
196 1.1 ichiro
197 1.23 augustss return (uplcom_lookup(uaa->vendor, uaa->product) != NULL ?
198 1.23 augustss UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
199 1.1 ichiro }
200 1.1 ichiro
201 1.1 ichiro USB_ATTACH(uplcom)
202 1.1 ichiro {
203 1.1 ichiro USB_ATTACH_START(uplcom, sc, uaa);
204 1.1 ichiro usbd_device_handle dev = uaa->device;
205 1.10 ichiro usb_config_descriptor_t *cdesc;
206 1.1 ichiro usb_interface_descriptor_t *id;
207 1.1 ichiro usb_endpoint_descriptor_t *ed;
208 1.28 augustss
209 1.1 ichiro char devinfo[1024];
210 1.1 ichiro char *devname = USBDEVNAME(sc->sc_dev);
211 1.1 ichiro usbd_status err;
212 1.1 ichiro int i;
213 1.1 ichiro struct ucom_attach_args uca;
214 1.1 ichiro
215 1.36 itojun usbd_devinfo(dev, 0, devinfo, sizeof(devinfo));
216 1.10 ichiro USB_ATTACH_SETUP;
217 1.10 ichiro printf("%s: %s\n", devname, devinfo);
218 1.10 ichiro
219 1.10 ichiro sc->sc_udev = dev;
220 1.10 ichiro
221 1.1 ichiro DPRINTF(("\n\nuplcom attach: sc=%p\n", sc));
222 1.1 ichiro
223 1.28 augustss /* initialize endpoints */
224 1.13 ichiro uca.bulkin = uca.bulkout = -1;
225 1.13 ichiro sc->sc_intr_number = -1;
226 1.13 ichiro sc->sc_intr_pipe = NULL;
227 1.13 ichiro
228 1.6 augustss /* Move the device into the configured state. */
229 1.1 ichiro err = usbd_set_config_index(dev, UPLCOM_CONFIG_INDEX, 1);
230 1.1 ichiro if (err) {
231 1.1 ichiro printf("\n%s: failed to set configuration, err=%s\n",
232 1.1 ichiro devname, usbd_errstr(err));
233 1.13 ichiro sc->sc_dying = 1;
234 1.1 ichiro USB_ATTACH_ERROR_RETURN;
235 1.1 ichiro }
236 1.1 ichiro
237 1.10 ichiro /* get the config descriptor */
238 1.10 ichiro cdesc = usbd_get_config_descriptor(sc->sc_udev);
239 1.10 ichiro
240 1.10 ichiro if (cdesc == NULL) {
241 1.10 ichiro printf("%s: failed to get configuration descriptor\n",
242 1.10 ichiro USBDEVNAME(sc->sc_dev));
243 1.13 ichiro sc->sc_dying = 1;
244 1.10 ichiro USB_ATTACH_ERROR_RETURN;
245 1.10 ichiro }
246 1.10 ichiro
247 1.13 ichiro /* get the (first/common) interface */
248 1.28 augustss err = usbd_device2interface_handle(dev, UPLCOM_IFACE_INDEX,
249 1.10 ichiro &sc->sc_iface);
250 1.1 ichiro if (err) {
251 1.1 ichiro printf("\n%s: failed to get interface, err=%s\n",
252 1.1 ichiro devname, usbd_errstr(err));
253 1.13 ichiro sc->sc_dying = 1;
254 1.1 ichiro USB_ATTACH_ERROR_RETURN;
255 1.1 ichiro }
256 1.13 ichiro
257 1.13 ichiro /* Find the interrupt endpoints */
258 1.13 ichiro
259 1.13 ichiro id = usbd_get_interface_descriptor(sc->sc_iface);
260 1.13 ichiro sc->sc_iface_number = id->bInterfaceNumber;
261 1.13 ichiro
262 1.13 ichiro for (i = 0; i < id->bNumEndpoints; i++) {
263 1.13 ichiro ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
264 1.13 ichiro if (ed == NULL) {
265 1.13 ichiro printf("%s: no endpoint descriptor for %d\n",
266 1.13 ichiro USBDEVNAME(sc->sc_dev), i);
267 1.13 ichiro sc->sc_dying = 1;
268 1.13 ichiro USB_ATTACH_ERROR_RETURN;
269 1.13 ichiro }
270 1.13 ichiro
271 1.13 ichiro if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
272 1.13 ichiro UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
273 1.13 ichiro sc->sc_intr_number = ed->bEndpointAddress;
274 1.13 ichiro sc->sc_isize = UGETW(ed->wMaxPacketSize);
275 1.28 augustss }
276 1.13 ichiro }
277 1.13 ichiro
278 1.13 ichiro if (sc->sc_intr_number== -1) {
279 1.13 ichiro printf("%s: Could not find interrupt in\n",
280 1.13 ichiro USBDEVNAME(sc->sc_dev));
281 1.13 ichiro sc->sc_dying = 1;
282 1.13 ichiro USB_ATTACH_ERROR_RETURN;
283 1.13 ichiro }
284 1.13 ichiro
285 1.20 ichiro /* keep interface for interrupt */
286 1.20 ichiro sc->sc_intr_iface = sc->sc_iface;
287 1.20 ichiro
288 1.10 ichiro /*
289 1.13 ichiro * USB-RSAQ1 has two interface
290 1.13 ichiro *
291 1.13 ichiro * USB-RSAQ1 | USB-RSAQ2
292 1.13 ichiro * -----------------+-----------------
293 1.14 ichiro * Interface 0 |Interface 0
294 1.14 ichiro * Interrupt(0x81) | Interrupt(0x81)
295 1.13 ichiro * -----------------+ BulkIN(0x02)
296 1.14 ichiro * Interface 1 | BulkOUT(0x83)
297 1.28 augustss * BulkIN(0x02) |
298 1.13 ichiro * BulkOUT(0x83) |
299 1.10 ichiro */
300 1.10 ichiro if (cdesc->bNumInterface == 2) {
301 1.28 augustss err = usbd_device2interface_handle(dev,
302 1.13 ichiro UPLCOM_SECOND_IFACE_INDEX, &sc->sc_iface);
303 1.10 ichiro if (err) {
304 1.10 ichiro printf("\n%s: failed to get second interface, err=%s\n",
305 1.10 ichiro devname, usbd_errstr(err));
306 1.13 ichiro sc->sc_dying = 1;
307 1.10 ichiro USB_ATTACH_ERROR_RETURN;
308 1.10 ichiro }
309 1.28 augustss }
310 1.1 ichiro
311 1.13 ichiro /* Find the bulk{in,out} endpoints */
312 1.1 ichiro
313 1.12 ichiro id = usbd_get_interface_descriptor(sc->sc_iface);
314 1.1 ichiro sc->sc_iface_number = id->bInterfaceNumber;
315 1.1 ichiro
316 1.1 ichiro for (i = 0; i < id->bNumEndpoints; i++) {
317 1.12 ichiro ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
318 1.1 ichiro if (ed == NULL) {
319 1.1 ichiro printf("%s: no endpoint descriptor for %d\n",
320 1.1 ichiro USBDEVNAME(sc->sc_dev), i);
321 1.13 ichiro sc->sc_dying = 1;
322 1.1 ichiro USB_ATTACH_ERROR_RETURN;
323 1.1 ichiro }
324 1.1 ichiro
325 1.1 ichiro if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
326 1.1 ichiro UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
327 1.1 ichiro uca.bulkin = ed->bEndpointAddress;
328 1.1 ichiro } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
329 1.1 ichiro UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
330 1.1 ichiro uca.bulkout = ed->bEndpointAddress;
331 1.1 ichiro }
332 1.1 ichiro }
333 1.1 ichiro
334 1.1 ichiro if (uca.bulkin == -1) {
335 1.1 ichiro printf("%s: Could not find data bulk in\n",
336 1.1 ichiro USBDEVNAME(sc->sc_dev));
337 1.13 ichiro sc->sc_dying = 1;
338 1.1 ichiro USB_ATTACH_ERROR_RETURN;
339 1.1 ichiro }
340 1.1 ichiro
341 1.1 ichiro if (uca.bulkout == -1) {
342 1.1 ichiro printf("%s: Could not find data bulk out\n",
343 1.1 ichiro USBDEVNAME(sc->sc_dev));
344 1.13 ichiro sc->sc_dying = 1;
345 1.12 ichiro USB_ATTACH_ERROR_RETURN;
346 1.12 ichiro }
347 1.12 ichiro
348 1.37 martin sc->sc_dtr = sc->sc_rts = -1;
349 1.1 ichiro uca.portno = UCOM_UNK_PORTNO;
350 1.1 ichiro /* bulkin, bulkout set above */
351 1.1 ichiro uca.ibufsize = UPLCOMIBUFSIZE;
352 1.1 ichiro uca.obufsize = UPLCOMOBUFSIZE;
353 1.1 ichiro uca.ibufsizepad = UPLCOMIBUFSIZE;
354 1.4 ichiro uca.opkthdrlen = 0;
355 1.1 ichiro uca.device = dev;
356 1.12 ichiro uca.iface = sc->sc_iface;
357 1.1 ichiro uca.methods = &uplcom_methods;
358 1.1 ichiro uca.arg = sc;
359 1.8 augustss uca.info = NULL;
360 1.1 ichiro
361 1.11 ichiro err = uplcom_reset(sc);
362 1.11 ichiro
363 1.1 ichiro if (err) {
364 1.11 ichiro printf("%s: reset failed, %s\n", USBDEVNAME(sc->sc_dev),
365 1.1 ichiro usbd_errstr(err));
366 1.13 ichiro sc->sc_dying = 1;
367 1.1 ichiro USB_ATTACH_ERROR_RETURN;
368 1.1 ichiro }
369 1.1 ichiro
370 1.7 augustss usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
371 1.7 augustss USBDEV(sc->sc_dev));
372 1.7 augustss
373 1.12 ichiro DPRINTF(("uplcom: in=0x%x out=0x%x intr=0x%x\n",
374 1.12 ichiro uca.bulkin, uca.bulkout, sc->sc_intr_number ));
375 1.1 ichiro sc->sc_subdev = config_found_sm(self, &uca, ucomprint, ucomsubmatch);
376 1.1 ichiro
377 1.1 ichiro USB_ATTACH_SUCCESS_RETURN;
378 1.1 ichiro }
379 1.1 ichiro
380 1.1 ichiro USB_DETACH(uplcom)
381 1.1 ichiro {
382 1.1 ichiro USB_DETACH_START(uplcom, sc);
383 1.1 ichiro int rv = 0;
384 1.1 ichiro
385 1.1 ichiro DPRINTF(("uplcom_detach: sc=%p flags=%d\n", sc, flags));
386 1.12 ichiro
387 1.12 ichiro if (sc->sc_intr_pipe != NULL) {
388 1.12 ichiro usbd_abort_pipe(sc->sc_intr_pipe);
389 1.12 ichiro usbd_close_pipe(sc->sc_intr_pipe);
390 1.12 ichiro free(sc->sc_intr_buf, M_USBDEV);
391 1.12 ichiro sc->sc_intr_pipe = NULL;
392 1.12 ichiro }
393 1.12 ichiro
394 1.1 ichiro sc->sc_dying = 1;
395 1.6 augustss if (sc->sc_subdev != NULL) {
396 1.1 ichiro rv = config_detach(sc->sc_subdev, flags);
397 1.6 augustss sc->sc_subdev = NULL;
398 1.6 augustss }
399 1.7 augustss
400 1.7 augustss usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
401 1.7 augustss USBDEV(sc->sc_dev));
402 1.1 ichiro
403 1.1 ichiro return (rv);
404 1.1 ichiro }
405 1.1 ichiro
406 1.1 ichiro int
407 1.1 ichiro uplcom_activate(device_ptr_t self, enum devact act)
408 1.1 ichiro {
409 1.1 ichiro struct uplcom_softc *sc = (struct uplcom_softc *)self;
410 1.1 ichiro int rv = 0;
411 1.1 ichiro
412 1.1 ichiro switch (act) {
413 1.1 ichiro case DVACT_ACTIVATE:
414 1.1 ichiro return (EOPNOTSUPP);
415 1.1 ichiro
416 1.1 ichiro case DVACT_DEACTIVATE:
417 1.1 ichiro if (sc->sc_subdev != NULL)
418 1.1 ichiro rv = config_deactivate(sc->sc_subdev);
419 1.1 ichiro sc->sc_dying = 1;
420 1.1 ichiro break;
421 1.1 ichiro }
422 1.1 ichiro return (rv);
423 1.1 ichiro }
424 1.1 ichiro
425 1.1 ichiro usbd_status
426 1.11 ichiro uplcom_reset(struct uplcom_softc *sc)
427 1.1 ichiro {
428 1.1 ichiro usb_device_request_t req;
429 1.1 ichiro usbd_status err;
430 1.1 ichiro
431 1.19 ichiro req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
432 1.19 ichiro req.bRequest = UPLCOM_SET_REQUEST;
433 1.19 ichiro USETW(req.wValue, 0);
434 1.1 ichiro USETW(req.wIndex, sc->sc_iface_number);
435 1.28 augustss USETW(req.wLength, 0);
436 1.28 augustss
437 1.28 augustss err = usbd_do_request(sc->sc_udev, &req, 0);
438 1.1 ichiro if (err)
439 1.1 ichiro return (EIO);
440 1.1 ichiro
441 1.1 ichiro return (0);
442 1.1 ichiro }
443 1.1 ichiro
444 1.1 ichiro void
445 1.1 ichiro uplcom_set_line_state(struct uplcom_softc *sc)
446 1.1 ichiro {
447 1.1 ichiro usb_device_request_t req;
448 1.1 ichiro int ls;
449 1.1 ichiro
450 1.37 martin /* make sure we have initialized state for sc_dtr and sc_rts */
451 1.37 martin if (sc->sc_dtr == -1)
452 1.37 martin sc->sc_dtr = 0;
453 1.37 martin if (sc->sc_rts == -1)
454 1.37 martin sc->sc_rts = 0;
455 1.37 martin
456 1.37 martin ls = (sc->sc_dtr ? UPLCOM_FLOW_OUT_DSR : 0) |
457 1.37 martin (sc->sc_rts ? UPLCOM_FLOW_OUT_CTS : 0);
458 1.37 martin
459 1.1 ichiro req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
460 1.1 ichiro req.bRequest = UCDC_SET_CONTROL_LINE_STATE;
461 1.1 ichiro USETW(req.wValue, ls);
462 1.1 ichiro USETW(req.wIndex, sc->sc_iface_number);
463 1.1 ichiro USETW(req.wLength, 0);
464 1.1 ichiro
465 1.1 ichiro (void)usbd_do_request(sc->sc_udev, &req, 0);
466 1.1 ichiro
467 1.1 ichiro }
468 1.1 ichiro
469 1.1 ichiro void
470 1.1 ichiro uplcom_set(void *addr, int portno, int reg, int onoff)
471 1.1 ichiro {
472 1.1 ichiro struct uplcom_softc *sc = addr;
473 1.1 ichiro
474 1.1 ichiro switch (reg) {
475 1.1 ichiro case UCOM_SET_DTR:
476 1.1 ichiro uplcom_dtr(sc, onoff);
477 1.1 ichiro break;
478 1.1 ichiro case UCOM_SET_RTS:
479 1.1 ichiro uplcom_rts(sc, onoff);
480 1.1 ichiro break;
481 1.1 ichiro case UCOM_SET_BREAK:
482 1.1 ichiro uplcom_break(sc, onoff);
483 1.1 ichiro break;
484 1.1 ichiro default:
485 1.1 ichiro break;
486 1.1 ichiro }
487 1.1 ichiro }
488 1.1 ichiro
489 1.1 ichiro void
490 1.1 ichiro uplcom_dtr(struct uplcom_softc *sc, int onoff)
491 1.1 ichiro {
492 1.1 ichiro
493 1.11 ichiro DPRINTF(("uplcom_dtr: onoff=%d\n", onoff));
494 1.1 ichiro
495 1.37 martin if (sc->sc_dtr != -1 && !sc->sc_dtr == !onoff)
496 1.1 ichiro return;
497 1.37 martin
498 1.37 martin sc->sc_dtr = !!onoff;
499 1.1 ichiro
500 1.1 ichiro uplcom_set_line_state(sc);
501 1.1 ichiro }
502 1.1 ichiro
503 1.1 ichiro void
504 1.1 ichiro uplcom_rts(struct uplcom_softc *sc, int onoff)
505 1.1 ichiro {
506 1.1 ichiro DPRINTF(("uplcom_rts: onoff=%d\n", onoff));
507 1.1 ichiro
508 1.37 martin if (sc->sc_rts != -1 && !sc->sc_rts == !onoff)
509 1.1 ichiro return;
510 1.37 martin
511 1.37 martin sc->sc_rts = !!onoff;
512 1.1 ichiro
513 1.1 ichiro uplcom_set_line_state(sc);
514 1.4 ichiro }
515 1.4 ichiro
516 1.4 ichiro void
517 1.4 ichiro uplcom_break(struct uplcom_softc *sc, int onoff)
518 1.4 ichiro {
519 1.4 ichiro usb_device_request_t req;
520 1.4 ichiro
521 1.4 ichiro DPRINTF(("uplcom_break: onoff=%d\n", onoff));
522 1.4 ichiro
523 1.4 ichiro req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
524 1.4 ichiro req.bRequest = UCDC_SEND_BREAK;
525 1.4 ichiro USETW(req.wValue, onoff ? UCDC_BREAK_ON : UCDC_BREAK_OFF);
526 1.4 ichiro USETW(req.wIndex, sc->sc_iface_number);
527 1.4 ichiro USETW(req.wLength, 0);
528 1.4 ichiro
529 1.4 ichiro (void)usbd_do_request(sc->sc_udev, &req, 0);
530 1.1 ichiro }
531 1.1 ichiro
532 1.1 ichiro usbd_status
533 1.19 ichiro uplcom_set_crtscts(struct uplcom_softc *sc)
534 1.19 ichiro {
535 1.19 ichiro usb_device_request_t req;
536 1.19 ichiro usbd_status err;
537 1.19 ichiro
538 1.19 ichiro DPRINTF(("uplcom_set_crtscts: on\n"));
539 1.19 ichiro
540 1.19 ichiro req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
541 1.19 ichiro req.bRequest = UPLCOM_SET_REQUEST;
542 1.19 ichiro USETW(req.wValue, 0);
543 1.19 ichiro USETW(req.wIndex, UPLCOM_SET_CRTSCTS);
544 1.19 ichiro USETW(req.wLength, 0);
545 1.19 ichiro
546 1.19 ichiro err = usbd_do_request(sc->sc_udev, &req, 0);
547 1.19 ichiro if (err) {
548 1.19 ichiro DPRINTF(("uplcom_set_crtscts: failed, err=%s\n",
549 1.19 ichiro usbd_errstr(err)));
550 1.19 ichiro return (err);
551 1.19 ichiro }
552 1.19 ichiro
553 1.19 ichiro return (USBD_NORMAL_COMPLETION);
554 1.19 ichiro }
555 1.19 ichiro
556 1.19 ichiro usbd_status
557 1.1 ichiro uplcom_set_line_coding(struct uplcom_softc *sc, usb_cdc_line_state_t *state)
558 1.1 ichiro {
559 1.1 ichiro usb_device_request_t req;
560 1.1 ichiro usbd_status err;
561 1.1 ichiro
562 1.1 ichiro DPRINTF(("uplcom_set_line_coding: rate=%d fmt=%d parity=%d bits=%d\n",
563 1.1 ichiro UGETDW(state->dwDTERate), state->bCharFormat,
564 1.1 ichiro state->bParityType, state->bDataBits));
565 1.1 ichiro
566 1.1 ichiro if (memcmp(state, &sc->sc_line_state, UCDC_LINE_STATE_LENGTH) == 0) {
567 1.1 ichiro DPRINTF(("uplcom_set_line_coding: already set\n"));
568 1.1 ichiro return (USBD_NORMAL_COMPLETION);
569 1.1 ichiro }
570 1.1 ichiro
571 1.1 ichiro req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
572 1.1 ichiro req.bRequest = UCDC_SET_LINE_CODING;
573 1.1 ichiro USETW(req.wValue, 0);
574 1.1 ichiro USETW(req.wIndex, sc->sc_iface_number);
575 1.1 ichiro USETW(req.wLength, UCDC_LINE_STATE_LENGTH);
576 1.1 ichiro
577 1.1 ichiro err = usbd_do_request(sc->sc_udev, &req, state);
578 1.1 ichiro if (err) {
579 1.1 ichiro DPRINTF(("uplcom_set_line_coding: failed, err=%s\n",
580 1.1 ichiro usbd_errstr(err)));
581 1.1 ichiro return (err);
582 1.1 ichiro }
583 1.1 ichiro
584 1.1 ichiro sc->sc_line_state = *state;
585 1.1 ichiro
586 1.1 ichiro return (USBD_NORMAL_COMPLETION);
587 1.1 ichiro }
588 1.1 ichiro
589 1.1 ichiro int
590 1.1 ichiro uplcom_param(void *addr, int portno, struct termios *t)
591 1.1 ichiro {
592 1.1 ichiro struct uplcom_softc *sc = addr;
593 1.1 ichiro usbd_status err;
594 1.1 ichiro usb_cdc_line_state_t ls;
595 1.1 ichiro
596 1.1 ichiro DPRINTF(("uplcom_param: sc=%p\n", sc));
597 1.1 ichiro
598 1.1 ichiro USETDW(ls.dwDTERate, t->c_ospeed);
599 1.1 ichiro if (ISSET(t->c_cflag, CSTOPB))
600 1.1 ichiro ls.bCharFormat = UCDC_STOP_BIT_2;
601 1.1 ichiro else
602 1.1 ichiro ls.bCharFormat = UCDC_STOP_BIT_1;
603 1.1 ichiro if (ISSET(t->c_cflag, PARENB)) {
604 1.1 ichiro if (ISSET(t->c_cflag, PARODD))
605 1.1 ichiro ls.bParityType = UCDC_PARITY_ODD;
606 1.1 ichiro else
607 1.1 ichiro ls.bParityType = UCDC_PARITY_EVEN;
608 1.1 ichiro } else
609 1.1 ichiro ls.bParityType = UCDC_PARITY_NONE;
610 1.1 ichiro switch (ISSET(t->c_cflag, CSIZE)) {
611 1.1 ichiro case CS5:
612 1.1 ichiro ls.bDataBits = 5;
613 1.1 ichiro break;
614 1.1 ichiro case CS6:
615 1.1 ichiro ls.bDataBits = 6;
616 1.1 ichiro break;
617 1.1 ichiro case CS7:
618 1.1 ichiro ls.bDataBits = 7;
619 1.1 ichiro break;
620 1.1 ichiro case CS8:
621 1.1 ichiro ls.bDataBits = 8;
622 1.1 ichiro break;
623 1.1 ichiro }
624 1.1 ichiro
625 1.1 ichiro err = uplcom_set_line_coding(sc, &ls);
626 1.1 ichiro if (err) {
627 1.1 ichiro DPRINTF(("uplcom_param: err=%s\n", usbd_errstr(err)));
628 1.1 ichiro return (EIO);
629 1.1 ichiro }
630 1.19 ichiro
631 1.19 ichiro if (ISSET(t->c_cflag, CRTSCTS))
632 1.19 ichiro uplcom_set_crtscts(sc);
633 1.19 ichiro
634 1.37 martin if (sc->sc_rts == -1 || sc->sc_dtr == -1)
635 1.37 martin uplcom_set_line_state(sc);
636 1.37 martin
637 1.19 ichiro if (err) {
638 1.19 ichiro DPRINTF(("uplcom_param: err=%s\n", usbd_errstr(err)));
639 1.19 ichiro return (EIO);
640 1.19 ichiro }
641 1.19 ichiro
642 1.1 ichiro return (0);
643 1.11 ichiro }
644 1.11 ichiro
645 1.11 ichiro int
646 1.11 ichiro uplcom_open(void *addr, int portno)
647 1.11 ichiro {
648 1.11 ichiro struct uplcom_softc *sc = addr;
649 1.12 ichiro int err;
650 1.28 augustss
651 1.11 ichiro if (sc->sc_dying)
652 1.11 ichiro return (EIO);
653 1.11 ichiro
654 1.12 ichiro DPRINTF(("uplcom_open: sc=%p\n", sc));
655 1.11 ichiro
656 1.12 ichiro if (sc->sc_intr_number != -1 && sc->sc_intr_pipe == NULL) {
657 1.12 ichiro sc->sc_intr_buf = malloc(sc->sc_isize, M_USBDEV, M_WAITOK);
658 1.20 ichiro err = usbd_open_pipe_intr(sc->sc_intr_iface, sc->sc_intr_number,
659 1.12 ichiro USBD_SHORT_XFER_OK, &sc->sc_intr_pipe, sc,
660 1.12 ichiro sc->sc_intr_buf, sc->sc_isize,
661 1.12 ichiro uplcom_intr, USBD_DEFAULT_INTERVAL);
662 1.12 ichiro if (err) {
663 1.12 ichiro DPRINTF(("%s: cannot open interrupt pipe (addr %d)\n",
664 1.12 ichiro USBDEVNAME(sc->sc_dev), sc->sc_intr_number));
665 1.12 ichiro return (EIO);
666 1.12 ichiro }
667 1.12 ichiro }
668 1.11 ichiro
669 1.11 ichiro return (0);
670 1.11 ichiro }
671 1.11 ichiro
672 1.11 ichiro void
673 1.28 augustss uplcom_close(void *addr, int portno)
674 1.11 ichiro {
675 1.11 ichiro struct uplcom_softc *sc = addr;
676 1.12 ichiro int err;
677 1.12 ichiro
678 1.12 ichiro if (sc->sc_dying)
679 1.12 ichiro return;
680 1.12 ichiro
681 1.12 ichiro DPRINTF(("uplcom_close: close\n"));
682 1.12 ichiro
683 1.12 ichiro if (sc->sc_intr_pipe != NULL) {
684 1.12 ichiro err = usbd_abort_pipe(sc->sc_intr_pipe);
685 1.12 ichiro if (err)
686 1.12 ichiro printf("%s: abort interrupt pipe failed: %s\n",
687 1.12 ichiro USBDEVNAME(sc->sc_dev), usbd_errstr(err));
688 1.12 ichiro err = usbd_close_pipe(sc->sc_intr_pipe);
689 1.12 ichiro if (err)
690 1.12 ichiro printf("%s: close interrupt pipe failed: %s\n",
691 1.12 ichiro USBDEVNAME(sc->sc_dev), usbd_errstr(err));
692 1.12 ichiro free(sc->sc_intr_buf, M_USBDEV);
693 1.12 ichiro sc->sc_intr_pipe = NULL;
694 1.12 ichiro }
695 1.12 ichiro }
696 1.12 ichiro
697 1.12 ichiro void
698 1.12 ichiro uplcom_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
699 1.12 ichiro {
700 1.12 ichiro struct uplcom_softc *sc = priv;
701 1.12 ichiro u_char *buf = sc->sc_intr_buf;
702 1.12 ichiro u_char pstatus;
703 1.11 ichiro
704 1.11 ichiro if (sc->sc_dying)
705 1.11 ichiro return;
706 1.11 ichiro
707 1.12 ichiro if (status != USBD_NORMAL_COMPLETION) {
708 1.12 ichiro if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
709 1.12 ichiro return;
710 1.12 ichiro
711 1.12 ichiro DPRINTF(("%s: abnormal status: %s\n", USBDEVNAME(sc->sc_dev),
712 1.12 ichiro usbd_errstr(status)));
713 1.12 ichiro usbd_clear_endpoint_stall_async(sc->sc_intr_pipe);
714 1.12 ichiro return;
715 1.12 ichiro }
716 1.12 ichiro
717 1.12 ichiro DPRINTF(("%s: uplcom status = %02x\n", USBDEVNAME(sc->sc_dev), buf[8]));
718 1.12 ichiro
719 1.15 augustss sc->sc_lsr = sc->sc_msr = 0;
720 1.15 augustss pstatus = buf[8];
721 1.15 augustss if (ISSET(pstatus, RSAQ_STATUS_DSR))
722 1.15 augustss sc->sc_msr |= UMSR_DSR;
723 1.15 augustss if (ISSET(pstatus, RSAQ_STATUS_DCD))
724 1.15 augustss sc->sc_msr |= UMSR_DCD;
725 1.15 augustss ucom_status_change((struct ucom_softc *) sc->sc_subdev);
726 1.12 ichiro }
727 1.12 ichiro
728 1.12 ichiro void
729 1.12 ichiro uplcom_get_status(void *addr, int portno, u_char *lsr, u_char *msr)
730 1.12 ichiro {
731 1.12 ichiro struct uplcom_softc *sc = addr;
732 1.12 ichiro
733 1.12 ichiro DPRINTF(("uplcom_get_status:\n"));
734 1.12 ichiro
735 1.12 ichiro if (lsr != NULL)
736 1.12 ichiro *lsr = sc->sc_lsr;
737 1.12 ichiro if (msr != NULL)
738 1.12 ichiro *msr = sc->sc_msr;
739 1.12 ichiro }
740 1.12 ichiro
741 1.12 ichiro #if TODO
742 1.12 ichiro int
743 1.12 ichiro uplcom_ioctl(void *addr, int portno, u_long cmd, caddr_t data, int flag,
744 1.24 augustss usb_proc_ptr p)
745 1.12 ichiro {
746 1.12 ichiro struct uplcom_softc *sc = addr;
747 1.12 ichiro int error = 0;
748 1.12 ichiro
749 1.12 ichiro if (sc->sc_dying)
750 1.12 ichiro return (EIO);
751 1.12 ichiro
752 1.12 ichiro DPRINTF(("uplcom_ioctl: cmd=0x%08lx\n", cmd));
753 1.12 ichiro
754 1.12 ichiro switch (cmd) {
755 1.12 ichiro case TIOCNOTTY:
756 1.12 ichiro case TIOCMGET:
757 1.12 ichiro case TIOCMSET:
758 1.12 ichiro case USB_GET_CM_OVER_DATA:
759 1.12 ichiro case USB_SET_CM_OVER_DATA:
760 1.12 ichiro break;
761 1.12 ichiro
762 1.12 ichiro default:
763 1.12 ichiro DPRINTF(("uplcom_ioctl: unknown\n"));
764 1.12 ichiro error = ENOTTY;
765 1.12 ichiro break;
766 1.11 ichiro }
767 1.11 ichiro
768 1.12 ichiro return (error);
769 1.1 ichiro }
770 1.12 ichiro #endif
771