u3g.c revision 1.31.2.3 1 1.31.2.3 skrll /* $NetBSD: u3g.c,v 1.31.2.3 2014/12/03 12:52:07 skrll Exp $ */
2 1.9 martin
3 1.9 martin /*-
4 1.9 martin * Copyright (c) 2009 The NetBSD Foundation, Inc.
5 1.9 martin * All rights reserved.
6 1.9 martin *
7 1.9 martin * This code is derived from software contributed to The NetBSD Foundation.
8 1.9 martin *
9 1.9 martin * Redistribution and use in source and binary forms, with or without
10 1.9 martin * modification, are permitted provided that the following conditions
11 1.9 martin * are met:
12 1.9 martin * 1. Redistributions of source code must retain the above copyright
13 1.9 martin * notice, this list of conditions and the following disclaimer.
14 1.9 martin * 2. Redistributions in binary form must reproduce the above copyright
15 1.9 martin * notice, this list of conditions and the following disclaimer in the
16 1.9 martin * documentation and/or other materials provided with the distribution.
17 1.9 martin *
18 1.9 martin * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 1.9 martin * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 1.9 martin * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 1.9 martin * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 1.9 martin * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 1.9 martin * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 1.9 martin * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 1.9 martin * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 1.9 martin * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 1.9 martin * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 1.9 martin * POSSIBILITY OF SUCH DAMAGE.
29 1.9 martin */
30 1.7 plunky
31 1.1 joerg /*
32 1.1 joerg * Copyright (c) 2008 AnyWi Technologies
33 1.1 joerg * Author: Andrea Guzzo <aguzzo (at) anywi.com>
34 1.1 joerg * * based on uark.c 1.1 2006/08/14 08:30:22 jsg *
35 1.1 joerg * * parts from ubsa.c 183348 2008-09-25 12:00:56Z phk *
36 1.1 joerg *
37 1.1 joerg * Permission to use, copy, modify, and distribute this software for any
38 1.1 joerg * purpose with or without fee is hereby granted, provided that the above
39 1.1 joerg * copyright notice and this permission notice appear in all copies.
40 1.1 joerg *
41 1.1 joerg * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
42 1.1 joerg * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
43 1.1 joerg * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
44 1.1 joerg * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
45 1.1 joerg * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
46 1.1 joerg * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
47 1.1 joerg * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
48 1.1 joerg *
49 1.1 joerg * $FreeBSD$
50 1.1 joerg */
51 1.1 joerg
52 1.7 plunky #include <sys/cdefs.h>
53 1.31.2.3 skrll __KERNEL_RCSID(0, "$NetBSD: u3g.c,v 1.31.2.3 2014/12/03 12:52:07 skrll Exp $");
54 1.7 plunky
55 1.1 joerg #include <sys/param.h>
56 1.1 joerg #include <sys/systm.h>
57 1.1 joerg #include <sys/kernel.h>
58 1.1 joerg #include <sys/malloc.h>
59 1.1 joerg #include <sys/bus.h>
60 1.1 joerg #include <sys/conf.h>
61 1.1 joerg #include <sys/tty.h>
62 1.1 joerg
63 1.1 joerg #include <dev/usb/usb.h>
64 1.1 joerg #include <dev/usb/usbdi.h>
65 1.1 joerg #include <dev/usb/usbdivar.h>
66 1.1 joerg #include <dev/usb/usbdi_util.h>
67 1.1 joerg
68 1.1 joerg #include <dev/usb/ucomvar.h>
69 1.1 joerg
70 1.1 joerg #include "usbdevs.h"
71 1.1 joerg
72 1.9 martin /*
73 1.9 martin * We read/write data from/to the device in 4KB chunks to maximise
74 1.9 martin * performance.
75 1.9 martin */
76 1.9 martin #define U3G_BUFF_SIZE 4096
77 1.9 martin
78 1.9 martin /*
79 1.9 martin * Some 3G devices (the Huawei E160/E220 springs to mind here) buffer up
80 1.9 martin * data internally even when the USB pipes are closed. So on first open,
81 1.9 martin * we can receive a large chunk of stale data.
82 1.9 martin *
83 1.9 martin * This causes a real problem because the default TTYDEF_LFLAG (applied
84 1.9 martin * on first open) has the ECHO flag set, resulting in all the stale data
85 1.9 martin * being echoed straight back to the device by the tty(4) layer. Some
86 1.9 martin * devices (again, the Huawei E160/E220 for example) react to this spew
87 1.9 martin * by going catatonic.
88 1.9 martin *
89 1.9 martin * All this happens before the application gets a chance to disable ECHO.
90 1.9 martin *
91 1.9 martin * We work around this by ignoring all data received from the device for
92 1.9 martin * a period of two seconds, or until the application starts sending data -
93 1.9 martin * whichever comes first.
94 1.9 martin */
95 1.9 martin #define U3G_PURGE_SECS 2
96 1.9 martin
97 1.9 martin /*
98 1.9 martin * Define bits for the virtual modem control pins.
99 1.9 martin * The input pin states are reported via the interrupt pipe on some devices.
100 1.9 martin */
101 1.9 martin #define U3G_OUTPIN_DTR (1u << 0)
102 1.9 martin #define U3G_OUTPIN_RTS (1u << 1)
103 1.9 martin #define U3G_INPIN_DCD (1u << 0)
104 1.9 martin #define U3G_INPIN_DSR (1u << 1)
105 1.9 martin #define U3G_INPIN_RI (1u << 3)
106 1.9 martin
107 1.9 martin /*
108 1.9 martin * USB request to set the output pin status
109 1.9 martin */
110 1.9 martin #define U3G_SET_PIN 0x22
111 1.1 joerg
112 1.1 joerg struct u3g_softc {
113 1.9 martin device_t sc_dev;
114 1.9 martin usbd_device_handle sc_udev;
115 1.9 martin bool sc_dying; /* We're going away */
116 1.9 martin int sc_ifaceno; /* Device interface number */
117 1.9 martin
118 1.27 christos struct u3g_com {
119 1.27 christos device_t c_dev; /* Child ucom(4) handle */
120 1.9 martin
121 1.27 christos bool c_open; /* Device is in use */
122 1.27 christos bool c_purging; /* Purging stale data */
123 1.27 christos struct timeval c_purge_start; /* Control duration of purge */
124 1.27 christos
125 1.27 christos u_char c_msr; /* Emulated 'msr' */
126 1.27 christos uint16_t c_outpins; /* Output pin state */
127 1.27 christos } sc_com[10];
128 1.27 christos size_t sc_ncom;
129 1.9 martin
130 1.9 martin usbd_pipe_handle sc_intr_pipe; /* Interrupt pipe */
131 1.9 martin u_char *sc_intr_buff; /* Interrupt buffer */
132 1.1 joerg };
133 1.1 joerg
134 1.9 martin /*
135 1.9 martin * The device driver has two personalities. The first uses the 'usbdevif'
136 1.9 martin * interface attribute so that a match will claim the entire USB device
137 1.9 martin * for itself. This is used for when a device needs to be mode-switched
138 1.9 martin * and ensures any other interfaces present cannot be claimed by other
139 1.9 martin * drivers while the mode-switch is in progress.
140 1.9 martin *
141 1.9 martin * The second personality uses the 'usbifif' interface attribute so that
142 1.9 martin * it can claim the 3G modem interfaces for itself, leaving others (such
143 1.9 martin * as the mass storage interfaces on some devices) for other drivers.
144 1.9 martin */
145 1.9 martin static int u3ginit_match(device_t, cfdata_t, void *);
146 1.9 martin static void u3ginit_attach(device_t, device_t, void *);
147 1.9 martin static int u3ginit_detach(device_t, int);
148 1.9 martin
149 1.9 martin CFATTACH_DECL2_NEW(u3ginit, 0, u3ginit_match,
150 1.9 martin u3ginit_attach, u3ginit_detach, NULL, NULL, NULL);
151 1.9 martin
152 1.9 martin
153 1.9 martin static int u3g_match(device_t, cfdata_t, void *);
154 1.9 martin static void u3g_attach(device_t, device_t, void *);
155 1.9 martin static int u3g_detach(device_t, int);
156 1.9 martin static int u3g_activate(device_t, enum devact);
157 1.9 martin static void u3g_childdet(device_t, device_t);
158 1.9 martin
159 1.9 martin CFATTACH_DECL2_NEW(u3g, sizeof(struct u3g_softc), u3g_match,
160 1.9 martin u3g_attach, u3g_detach, u3g_activate, NULL, u3g_childdet);
161 1.9 martin
162 1.9 martin
163 1.9 martin static void u3g_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
164 1.9 martin static void u3g_get_status(void *, int, u_char *, u_char *);
165 1.9 martin static void u3g_set(void *, int, int, int);
166 1.9 martin static int u3g_open(void *, int);
167 1.9 martin static void u3g_close(void *, int);
168 1.9 martin static void u3g_read(void *, int, u_char **, uint32_t *);
169 1.31.2.1 skrll static void u3g_write(void *, int, u_char *, u_char *, uint32_t *);
170 1.9 martin
171 1.1 joerg struct ucom_methods u3g_methods = {
172 1.9 martin u3g_get_status,
173 1.9 martin u3g_set,
174 1.1 joerg NULL,
175 1.1 joerg NULL,
176 1.9 martin u3g_open,
177 1.9 martin u3g_close,
178 1.9 martin u3g_read,
179 1.9 martin u3g_write,
180 1.1 joerg };
181 1.1 joerg
182 1.9 martin /*
183 1.9 martin * Allegedly supported devices
184 1.9 martin */
185 1.1 joerg static const struct usb_devno u3g_devs[] = {
186 1.31.2.2 skrll { USB_VENDOR_DELL, USB_PRODUCT_DELL_W5500 },
187 1.1 joerg /* OEM: Huawei */
188 1.19 veego { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_E1750 },
189 1.18 apb { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_E1820 },
190 1.1 joerg { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_E220 },
191 1.26 khorben { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_EM770W },
192 1.11 pooka { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_K3765 },
193 1.13 riz { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_MOBILE },
194 1.28 nonaka { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_E171 },
195 1.31 christos { USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_E353 },
196 1.13 riz /* OEM: Merlin */
197 1.13 riz { USB_VENDOR_MERLIN, USB_PRODUCT_MERLIN_V620 },
198 1.1 joerg /* OEM: Novatel */
199 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_ES620 },
200 1.22 nonaka { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_EU8X0D },
201 1.1 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_MC950D },
202 1.13 riz #if 0
203 1.14 riz /* These are matched in u3ginit_match() */
204 1.13 riz { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_MC950D_DRIVER },
205 1.14 riz { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_U760_DRIVER },
206 1.13 riz #endif
207 1.13 riz { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_MERLINU740 },
208 1.13 riz { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_MERLINV620 },
209 1.13 riz { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_S720 },
210 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_U720 },
211 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_U727 },
212 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_U740_2 },
213 1.14 riz { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_U760 },
214 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_U870 },
215 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_V740 },
216 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_X950D },
217 1.3 joerg { USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_XU870 },
218 1.13 riz /* OEM: Option N.V. */
219 1.13 riz { USB_VENDOR_OPTIONNV, USB_PRODUCT_OPTIONNV_QUADPLUSUMTS },
220 1.13 riz { USB_VENDOR_OPTIONNV, USB_PRODUCT_OPTIONNV_HSDPA },
221 1.13 riz { USB_VENDOR_OPTIONNV, USB_PRODUCT_OPTIONNV_GTMAXHSUPA },
222 1.13 riz /* OEM: Qualcomm, Inc. */
223 1.25 nonaka { USB_VENDOR_QUALCOMM, USB_PRODUCT_QUALCOMM_NTT_DOCOMO_L02C_MODEM },
224 1.1 joerg
225 1.3 joerg /* OEM: Sierra Wireless: */
226 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC595U },
227 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC597E },
228 1.13 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC875U },
229 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC880 },
230 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC880E },
231 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC880U },
232 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC881 },
233 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC881E },
234 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AC881U },
235 1.13 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD580 },
236 1.13 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD595 },
237 1.13 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD875 },
238 1.13 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_C597 },
239 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_EM5625 },
240 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC5720 },
241 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC5720_2 },
242 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC5725 },
243 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8755 },
244 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8755_2 },
245 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8755_3 },
246 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8765 },
247 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8775_2 },
248 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8780 },
249 1.3 joerg { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8781 },
250 1.13 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MINI5725 },
251 1.12 riz { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_USB305 },
252 1.27 christos { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_250U },
253 1.17 scw /* Toshiba */
254 1.17 scw { USB_VENDOR_TOSHIBA, USB_PRODUCT_TOSHIBA_HSDPA_MODEM_EU870DT1 },
255 1.20 christos
256 1.29 soren /* ZTE */
257 1.29 soren { USB_VENDOR_ZTE, USB_PRODUCT_ZTE_MF622 },
258 1.29 soren { USB_VENDOR_ZTE, USB_PRODUCT_ZTE_MF626 },
259 1.29 soren { USB_VENDOR_ZTE, USB_PRODUCT_ZTE_MF628 },
260 1.29 soren { USB_VENDOR_ZTE, USB_PRODUCT_ZTE_MF820D },
261 1.29 soren
262 1.20 christos /* 4G Systems */
263 1.20 christos { USB_VENDOR_4GSYSTEMS, USB_PRODUCT_4GSYSTEMS_XSSTICK_P14 },
264 1.30 christos { USB_VENDOR_4GSYSTEMS, USB_PRODUCT_4GSYSTEMS_XSSTICK_W14 },
265 1.1 joerg };
266 1.1 joerg
267 1.1 joerg static int
268 1.20 christos send_bulkmsg(usbd_device_handle dev, void *cmd, size_t cmdlen)
269 1.2 joerg {
270 1.2 joerg usbd_interface_handle iface;
271 1.2 joerg usb_interface_descriptor_t *id;
272 1.2 joerg usb_endpoint_descriptor_t *ed;
273 1.2 joerg usbd_pipe_handle pipe;
274 1.2 joerg usbd_xfer_handle xfer;
275 1.2 joerg int err, i;
276 1.2 joerg
277 1.2 joerg /* Move the device into the configured state. */
278 1.9 martin err = usbd_set_config_index(dev, 0, 0);
279 1.2 joerg if (err) {
280 1.29 soren aprint_error("u3ginit: failed to set config index\n");
281 1.2 joerg return UMATCH_NONE;
282 1.2 joerg }
283 1.2 joerg
284 1.9 martin err = usbd_device2interface_handle(dev, 0, &iface);
285 1.2 joerg if (err != 0) {
286 1.11 pooka aprint_error("u3ginit: failed to get interface\n");
287 1.2 joerg return UMATCH_NONE;
288 1.2 joerg }
289 1.2 joerg
290 1.2 joerg id = usbd_get_interface_descriptor(iface);
291 1.2 joerg ed = NULL;
292 1.2 joerg for (i = 0 ; i < id->bNumEndpoints ; i++) {
293 1.2 joerg ed = usbd_interface2endpoint_descriptor(iface, i);
294 1.2 joerg if (ed == NULL)
295 1.2 joerg continue;
296 1.2 joerg if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_OUT)
297 1.2 joerg continue;
298 1.2 joerg if ((ed->bmAttributes & UE_XFERTYPE) == UE_BULK)
299 1.2 joerg break;
300 1.2 joerg }
301 1.2 joerg
302 1.2 joerg if (i == id->bNumEndpoints)
303 1.2 joerg return UMATCH_NONE;
304 1.2 joerg
305 1.11 pooka err = usbd_open_pipe(iface, ed->bEndpointAddress,
306 1.11 pooka USBD_EXCLUSIVE_USE, &pipe);
307 1.2 joerg if (err != 0) {
308 1.11 pooka aprint_error("u3ginit: failed to open bulk transfer pipe %d\n",
309 1.2 joerg ed->bEndpointAddress);
310 1.2 joerg return UMATCH_NONE;
311 1.2 joerg }
312 1.2 joerg
313 1.9 martin xfer = usbd_alloc_xfer(dev);
314 1.2 joerg if (xfer != NULL) {
315 1.11 pooka usbd_setup_xfer(xfer, pipe, NULL, cmd, cmdlen,
316 1.2 joerg USBD_SYNCHRONOUS, USBD_DEFAULT_TIMEOUT, NULL);
317 1.2 joerg
318 1.2 joerg err = usbd_transfer(xfer);
319 1.11 pooka
320 1.11 pooka #if 0 /* XXXpooka: at least my huawei "fails" this always, but still detaches */
321 1.2 joerg if (err)
322 1.11 pooka aprint_error("u3ginit: transfer failed\n");
323 1.11 pooka #else
324 1.11 pooka err = 0;
325 1.11 pooka #endif
326 1.2 joerg usbd_free_xfer(xfer);
327 1.2 joerg } else {
328 1.11 pooka aprint_error("u3ginit: failed to allocate xfer\n");
329 1.2 joerg err = USBD_NOMEM;
330 1.2 joerg }
331 1.2 joerg
332 1.2 joerg usbd_abort_pipe(pipe);
333 1.2 joerg usbd_close_pipe(pipe);
334 1.2 joerg
335 1.2 joerg return (err == USBD_NORMAL_COMPLETION ? UMATCH_HIGHEST : UMATCH_NONE);
336 1.2 joerg }
337 1.2 joerg
338 1.31 christos /* Byte 0..3: Command Block Wrapper (CBW) signature */
339 1.31 christos static void
340 1.31 christos set_cbw(unsigned char *cmd)
341 1.31 christos {
342 1.31.2.1 skrll cmd[0] = 0x55;
343 1.31 christos cmd[1] = 0x53;
344 1.31 christos cmd[2] = 0x42;
345 1.31 christos cmd[3] = 0x43;
346 1.31 christos }
347 1.31 christos
348 1.2 joerg static int
349 1.29 soren u3g_bulk_scsi_eject(usbd_device_handle dev)
350 1.11 pooka {
351 1.11 pooka unsigned char cmd[31];
352 1.11 pooka
353 1.11 pooka memset(cmd, 0, sizeof(cmd));
354 1.11 pooka /* Byte 0..3: Command Block Wrapper (CBW) signature */
355 1.31 christos set_cbw(cmd);
356 1.11 pooka /* 4..7: CBW Tag, has to unique, but only a single transfer used. */
357 1.11 pooka cmd[4] = 0x01;
358 1.11 pooka /* 8..11: CBW Transfer Length, no data here */
359 1.11 pooka /* 12: CBW Flag: output, so 0 */
360 1.11 pooka /* 13: CBW Lun: 0 */
361 1.11 pooka /* 14: CBW Length */
362 1.11 pooka cmd[14] = 0x06;
363 1.29 soren
364 1.11 pooka /* Rest is the SCSI payload */
365 1.29 soren
366 1.11 pooka /* 0: SCSI START/STOP opcode */
367 1.11 pooka cmd[15] = 0x1b;
368 1.11 pooka /* 1..3 unused */
369 1.11 pooka /* 4 Load/Eject command */
370 1.11 pooka cmd[19] = 0x02;
371 1.11 pooka /* 5: unused */
372 1.11 pooka
373 1.11 pooka return send_bulkmsg(dev, cmd, sizeof(cmd));
374 1.11 pooka }
375 1.11 pooka
376 1.11 pooka static int
377 1.29 soren u3g_bulk_ata_eject(usbd_device_handle dev)
378 1.29 soren {
379 1.29 soren unsigned char cmd[31];
380 1.29 soren
381 1.29 soren memset(cmd, 0, sizeof(cmd));
382 1.29 soren /* Byte 0..3: Command Block Wrapper (CBW) signature */
383 1.31 christos set_cbw(cmd);
384 1.29 soren /* 4..7: CBW Tag, has to unique, but only a single transfer used. */
385 1.29 soren cmd[4] = 0x01;
386 1.29 soren /* 8..11: CBW Transfer Length, no data here */
387 1.29 soren /* 12: CBW Flag: output, so 0 */
388 1.29 soren /* 13: CBW Lun: 0 */
389 1.29 soren /* 14: CBW Length */
390 1.29 soren cmd[14] = 0x06;
391 1.29 soren
392 1.29 soren /* Rest is the SCSI payload */
393 1.29 soren
394 1.29 soren /* 0: ATA pass-through */
395 1.29 soren cmd[15] = 0x85;
396 1.29 soren /* 1..3 unused */
397 1.29 soren /* 4 XXX What is this command? */
398 1.29 soren cmd[19] = 0x24;
399 1.29 soren /* 5: unused */
400 1.29 soren
401 1.29 soren return send_bulkmsg(dev, cmd, sizeof(cmd));
402 1.29 soren }
403 1.29 soren
404 1.29 soren static int
405 1.1 joerg u3g_huawei_reinit(usbd_device_handle dev)
406 1.1 joerg {
407 1.9 martin /*
408 1.9 martin * The Huawei device presents itself as a umass device with Windows
409 1.1 joerg * drivers on it. After installation of the driver, it reinits into a
410 1.1 joerg * 3G serial device.
411 1.1 joerg */
412 1.1 joerg usb_device_request_t req;
413 1.1 joerg usb_config_descriptor_t *cdesc;
414 1.1 joerg
415 1.1 joerg /* Get the config descriptor */
416 1.1 joerg cdesc = usbd_get_config_descriptor(dev);
417 1.9 martin if (cdesc == NULL) {
418 1.9 martin usb_device_descriptor_t dd;
419 1.9 martin
420 1.9 martin if (usbd_get_device_desc(dev, &dd) != 0)
421 1.9 martin return (UMATCH_NONE);
422 1.9 martin
423 1.9 martin if (dd.bNumConfigurations != 1)
424 1.9 martin return (UMATCH_NONE);
425 1.9 martin
426 1.9 martin if (usbd_set_config_index(dev, 0, 1) != 0)
427 1.9 martin return (UMATCH_NONE);
428 1.9 martin
429 1.9 martin cdesc = usbd_get_config_descriptor(dev);
430 1.9 martin
431 1.9 martin if (cdesc == NULL)
432 1.9 martin return (UMATCH_NONE);
433 1.9 martin }
434 1.1 joerg
435 1.9 martin /*
436 1.9 martin * One iface means umass mode, more than 1 (4 usually) means 3G mode.
437 1.9 martin *
438 1.9 martin * XXX: We should check the first interface's device class just to be
439 1.9 martin * sure. If it's a mass storage device, then we can be fairly certain
440 1.9 martin * it needs a mode-switch.
441 1.9 martin */
442 1.1 joerg if (cdesc->bNumInterface > 1)
443 1.9 martin return (UMATCH_NONE);
444 1.1 joerg
445 1.1 joerg req.bmRequestType = UT_WRITE_DEVICE;
446 1.1 joerg req.bRequest = UR_SET_FEATURE;
447 1.1 joerg USETW(req.wValue, UF_DEVICE_REMOTE_WAKEUP);
448 1.1 joerg USETW(req.wIndex, UHF_PORT_SUSPEND);
449 1.1 joerg USETW(req.wLength, 0);
450 1.1 joerg
451 1.1 joerg (void) usbd_do_request(dev, &req, 0);
452 1.1 joerg
453 1.11 pooka return (UMATCH_HIGHEST); /* Prevent umass from attaching */
454 1.11 pooka }
455 1.11 pooka
456 1.11 pooka static int
457 1.11 pooka u3g_huawei_k3765_reinit(usbd_device_handle dev)
458 1.11 pooka {
459 1.11 pooka unsigned char cmd[31];
460 1.11 pooka
461 1.11 pooka /* magic string adapted from some webpage */
462 1.11 pooka memset(cmd, 0, sizeof(cmd));
463 1.31 christos /* Byte 0..3: Command Block Wrapper (CBW) signature */
464 1.31 christos set_cbw(cmd);
465 1.31 christos
466 1.11 pooka cmd[15]= 0x11;
467 1.11 pooka cmd[16]= 0x06;
468 1.11 pooka
469 1.11 pooka return send_bulkmsg(dev, cmd, sizeof(cmd));
470 1.1 joerg }
471 1.1 joerg static int
472 1.28 nonaka u3g_huawei_e171_reinit(usbd_device_handle dev)
473 1.28 nonaka {
474 1.28 nonaka unsigned char cmd[31];
475 1.28 nonaka
476 1.28 nonaka /* magic string adapted from some webpage */
477 1.28 nonaka memset(cmd, 0, sizeof(cmd));
478 1.31 christos /* Byte 0..3: Command Block Wrapper (CBW) signature */
479 1.31 christos set_cbw(cmd);
480 1.31 christos
481 1.28 nonaka cmd[15]= 0x11;
482 1.28 nonaka cmd[16]= 0x06;
483 1.28 nonaka cmd[17]= 0x20;
484 1.28 nonaka cmd[20]= 0x01;
485 1.28 nonaka
486 1.28 nonaka return send_bulkmsg(dev, cmd, sizeof(cmd));
487 1.28 nonaka }
488 1.28 nonaka
489 1.28 nonaka static int
490 1.31 christos u3g_huawei_e353_reinit(usbd_device_handle dev)
491 1.31 christos {
492 1.31 christos unsigned char cmd[31];
493 1.31 christos
494 1.31 christos /* magic string adapted from some webpage */
495 1.31 christos memset(cmd, 0, sizeof(cmd));
496 1.31 christos /* Byte 0..3: Command Block Wrapper (CBW) signature */
497 1.31 christos set_cbw(cmd);
498 1.31 christos
499 1.31 christos cmd[4] = 0x7f;
500 1.31 christos cmd[9] = 0x02;
501 1.31 christos cmd[12] = 0x80;
502 1.31 christos cmd[14] = 0x0a;
503 1.31 christos cmd[15] = 0x11;
504 1.31 christos cmd[16] = 0x06;
505 1.31 christos cmd[17] = 0x20;
506 1.31 christos cmd[23] = 0x01;
507 1.31 christos
508 1.31 christos return send_bulkmsg(dev, cmd, sizeof(cmd));
509 1.31 christos }
510 1.31 christos
511 1.31 christos static int
512 1.4 christos u3g_sierra_reinit(usbd_device_handle dev)
513 1.4 christos {
514 1.4 christos /* Some Sierra devices presents themselves as a umass device with
515 1.4 christos * Windows drivers on it. After installation of the driver, it
516 1.4 christos * reinits into a * 3G serial device.
517 1.4 christos */
518 1.4 christos usb_device_request_t req;
519 1.4 christos
520 1.4 christos req.bmRequestType = UT_VENDOR;
521 1.4 christos req.bRequest = UR_SET_INTERFACE;
522 1.4 christos USETW(req.wValue, UF_DEVICE_REMOTE_WAKEUP);
523 1.4 christos USETW(req.wIndex, UHF_PORT_CONNECTION);
524 1.4 christos USETW(req.wLength, 0);
525 1.4 christos
526 1.4 christos (void) usbd_do_request(dev, &req, 0);
527 1.4 christos
528 1.4 christos return (UMATCH_HIGHEST); /* Match to prevent umass from attaching */
529 1.4 christos }
530 1.4 christos
531 1.20 christos static int
532 1.20 christos u3g_4gsystems_reinit(usbd_device_handle dev)
533 1.20 christos {
534 1.20 christos /* magic string adapted from usb_modeswitch database */
535 1.31 christos unsigned char cmd[31];
536 1.31 christos
537 1.31 christos memset(cmd, 0, sizeof(cmd));
538 1.31 christos /* Byte 0..3: Command Block Wrapper (CBW) signature */
539 1.31 christos set_cbw(cmd);
540 1.31 christos
541 1.31 christos cmd[4] = 0x12;
542 1.31 christos cmd[5] = 0x34;
543 1.31 christos cmd[6] = 0x56;
544 1.31 christos cmd[7] = 0x78;
545 1.31 christos cmd[8] = 0x80;
546 1.31 christos cmd[12] = 0x80;
547 1.31 christos cmd[14] = 0x06;
548 1.31 christos cmd[15] = 0x06;
549 1.31 christos cmd[16] = 0xf5;
550 1.31 christos cmd[17] = 0x04;
551 1.31 christos cmd[18] = 0x02;
552 1.31 christos cmd[19] = 0x52;
553 1.31 christos cmd[20] = 0x70;
554 1.20 christos
555 1.20 christos return send_bulkmsg(dev, cmd, sizeof(cmd));
556 1.20 christos }
557 1.20 christos
558 1.9 martin /*
559 1.9 martin * First personality:
560 1.9 martin *
561 1.9 martin * Claim the entire device if a mode-switch is required.
562 1.9 martin */
563 1.9 martin
564 1.4 christos static int
565 1.9 martin u3ginit_match(device_t parent, cfdata_t match, void *aux)
566 1.1 joerg {
567 1.1 joerg struct usb_attach_arg *uaa = aux;
568 1.1 joerg
569 1.11 pooka /*
570 1.11 pooka * Huawei changes product when it is configured as a modem.
571 1.11 pooka */
572 1.16 christos switch (uaa->vendor) {
573 1.16 christos case USB_VENDOR_HUAWEI:
574 1.11 pooka if (uaa->product == USB_PRODUCT_HUAWEI_K3765)
575 1.11 pooka return UMATCH_NONE;
576 1.11 pooka
577 1.15 kardel switch (uaa->product) {
578 1.15 kardel case USB_PRODUCT_HUAWEI_E1750INIT:
579 1.15 kardel case USB_PRODUCT_HUAWEI_K3765INIT:
580 1.11 pooka return u3g_huawei_k3765_reinit(uaa->device);
581 1.15 kardel break;
582 1.28 nonaka case USB_PRODUCT_HUAWEI_E171INIT:
583 1.28 nonaka return u3g_huawei_e171_reinit(uaa->device);
584 1.28 nonaka break;
585 1.31 christos case USB_PRODUCT_HUAWEI_E353INIT:
586 1.31 christos return u3g_huawei_e353_reinit(uaa->device);
587 1.31 christos break;
588 1.15 kardel default:
589 1.11 pooka return u3g_huawei_reinit(uaa->device);
590 1.15 kardel break;
591 1.15 kardel }
592 1.16 christos break;
593 1.1 joerg
594 1.16 christos case USB_VENDOR_NOVATEL2:
595 1.14 riz switch (uaa->product){
596 1.14 riz case USB_PRODUCT_NOVATEL2_MC950D_DRIVER:
597 1.14 riz case USB_PRODUCT_NOVATEL2_U760_DRIVER:
598 1.29 soren return u3g_bulk_scsi_eject(uaa->device);
599 1.14 riz break;
600 1.14 riz default:
601 1.14 riz break;
602 1.14 riz }
603 1.16 christos break;
604 1.16 christos
605 1.16 christos case USB_VENDOR_SIERRA:
606 1.16 christos if (uaa->product == USB_PRODUCT_SIERRA_INSTALLER)
607 1.16 christos return u3g_sierra_reinit(uaa->device);
608 1.16 christos break;
609 1.16 christos
610 1.29 soren case USB_VENDOR_QUALCOMM:
611 1.29 soren if (uaa->product == USB_PRODUCT_QUALCOMM_NTT_DOCOMO_L02C_STORAGE)
612 1.29 soren return u3g_bulk_scsi_eject(uaa->device);
613 1.16 christos break;
614 1.16 christos
615 1.29 soren case USB_VENDOR_ZTE:
616 1.29 soren switch (uaa->product){
617 1.29 soren case USB_PRODUCT_ZTE_INSTALLER:
618 1.29 soren case USB_PRODUCT_ZTE_MF820D_INSTALLER:
619 1.29 soren (void)u3g_bulk_ata_eject(uaa->device);
620 1.29 soren (void)u3g_bulk_scsi_eject(uaa->device);
621 1.29 soren return UMATCH_HIGHEST;
622 1.29 soren default:
623 1.29 soren break;
624 1.29 soren }
625 1.25 nonaka break;
626 1.25 nonaka
627 1.20 christos case USB_VENDOR_4GSYSTEMS:
628 1.21 christos if (uaa->product == USB_PRODUCT_4GSYSTEMS_XSSTICK_P14_INSTALLER)
629 1.20 christos return u3g_4gsystems_reinit(uaa->device);
630 1.20 christos break;
631 1.20 christos
632 1.16 christos default:
633 1.16 christos break;
634 1.14 riz }
635 1.2 joerg
636 1.1 joerg return UMATCH_NONE;
637 1.1 joerg }
638 1.1 joerg
639 1.1 joerg static void
640 1.9 martin u3ginit_attach(device_t parent, device_t self, void *aux)
641 1.1 joerg {
642 1.1 joerg struct usb_attach_arg *uaa = aux;
643 1.1 joerg
644 1.1 joerg aprint_naive("\n");
645 1.9 martin aprint_normal(": Switching to 3G mode\n");
646 1.1 joerg
647 1.14 riz if (uaa->vendor == USB_VENDOR_NOVATEL2) {
648 1.14 riz switch (uaa->product) {
649 1.14 riz case USB_PRODUCT_NOVATEL2_MC950D_DRIVER:
650 1.14 riz case USB_PRODUCT_NOVATEL2_U760_DRIVER:
651 1.14 riz /* About to disappear... */
652 1.14 riz return;
653 1.14 riz break;
654 1.14 riz default:
655 1.14 riz break;
656 1.14 riz }
657 1.2 joerg }
658 1.2 joerg
659 1.1 joerg /* Move the device into the configured state. */
660 1.9 martin (void) usbd_set_config_index(uaa->device, 0, 1);
661 1.9 martin }
662 1.9 martin
663 1.9 martin static int
664 1.9 martin u3ginit_detach(device_t self, int flags)
665 1.9 martin {
666 1.9 martin
667 1.9 martin return (0);
668 1.9 martin }
669 1.9 martin
670 1.9 martin
671 1.9 martin /*
672 1.9 martin * Second personality:
673 1.9 martin *
674 1.9 martin * Claim only those interfaces required for 3G modem operation.
675 1.9 martin */
676 1.9 martin
677 1.9 martin static int
678 1.9 martin u3g_match(device_t parent, cfdata_t match, void *aux)
679 1.9 martin {
680 1.9 martin struct usbif_attach_arg *uaa = aux;
681 1.9 martin usbd_interface_handle iface;
682 1.9 martin usb_interface_descriptor_t *id;
683 1.9 martin usbd_status error;
684 1.9 martin
685 1.9 martin if (!usb_lookup(u3g_devs, uaa->vendor, uaa->product))
686 1.9 martin return (UMATCH_NONE);
687 1.9 martin
688 1.9 martin error = usbd_device2interface_handle(uaa->device, uaa->ifaceno, &iface);
689 1.1 joerg if (error) {
690 1.9 martin printf("u3g_match: failed to get interface, err=%s\n",
691 1.9 martin usbd_errstr(error));
692 1.9 martin return (UMATCH_NONE);
693 1.9 martin }
694 1.9 martin
695 1.9 martin id = usbd_get_interface_descriptor(iface);
696 1.9 martin if (id == NULL) {
697 1.9 martin printf("u3g_match: failed to get interface descriptor\n");
698 1.9 martin return (UMATCH_NONE);
699 1.1 joerg }
700 1.1 joerg
701 1.9 martin /*
702 1.29 soren * Huawei modems use the vendor-specific class for all interfaces,
703 1.29 soren * both tty and CDC NCM, which we should avoid attaching to.
704 1.29 soren */
705 1.29 soren if (uaa->vendor == USB_VENDOR_HUAWEI && id->bInterfaceSubClass == 2 &&
706 1.29 soren (id->bInterfaceProtocol & 0xf) == 6) /* 0x16, 0x46, 0x76 */
707 1.29 soren return (UMATCH_NONE);
708 1.29 soren
709 1.29 soren /*
710 1.9 martin * 3G modems generally report vendor-specific class
711 1.9 martin *
712 1.9 martin * XXX: this may be too generalised.
713 1.9 martin */
714 1.9 martin return ((id->bInterfaceClass == UICLASS_VENDOR) ?
715 1.9 martin UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
716 1.9 martin }
717 1.9 martin
718 1.9 martin static void
719 1.9 martin u3g_attach(device_t parent, device_t self, void *aux)
720 1.9 martin {
721 1.9 martin struct u3g_softc *sc = device_private(self);
722 1.9 martin struct usbif_attach_arg *uaa = aux;
723 1.9 martin usbd_device_handle dev = uaa->device;
724 1.9 martin usbd_interface_handle iface;
725 1.9 martin usb_interface_descriptor_t *id;
726 1.9 martin usb_endpoint_descriptor_t *ed;
727 1.9 martin struct ucom_attach_args uca;
728 1.9 martin usbd_status error;
729 1.31.2.1 skrll int n, intr_address, intr_size;
730 1.1 joerg
731 1.9 martin aprint_naive("\n");
732 1.9 martin aprint_normal("\n");
733 1.1 joerg
734 1.9 martin sc->sc_dev = self;
735 1.9 martin sc->sc_dying = false;
736 1.9 martin sc->sc_udev = dev;
737 1.2 joerg
738 1.9 martin error = usbd_device2interface_handle(dev, uaa->ifaceno, &iface);
739 1.9 martin if (error) {
740 1.9 martin aprint_error_dev(self, "failed to get interface, err=%s\n",
741 1.9 martin usbd_errstr(error));
742 1.4 christos return;
743 1.4 christos }
744 1.4 christos
745 1.9 martin id = usbd_get_interface_descriptor(iface);
746 1.1 joerg
747 1.9 martin uca.info = "3G Modem";
748 1.9 martin uca.ibufsize = U3G_BUFF_SIZE;
749 1.9 martin uca.obufsize = U3G_BUFF_SIZE;
750 1.9 martin uca.ibufsizepad = U3G_BUFF_SIZE;
751 1.9 martin uca.opkthdrlen = 0;
752 1.9 martin uca.device = dev;
753 1.9 martin uca.iface = iface;
754 1.9 martin uca.methods = &u3g_methods;
755 1.9 martin uca.arg = sc;
756 1.27 christos uca.portno = -1;
757 1.9 martin uca.bulkin = uca.bulkout = -1;
758 1.9 martin
759 1.27 christos
760 1.9 martin sc->sc_ifaceno = uaa->ifaceno;
761 1.9 martin intr_address = -1;
762 1.9 martin intr_size = 0;
763 1.9 martin
764 1.9 martin for (n = 0; n < id->bNumEndpoints; n++) {
765 1.9 martin ed = usbd_interface2endpoint_descriptor(iface, n);
766 1.9 martin if (ed == NULL) {
767 1.9 martin aprint_error_dev(self, "no endpoint descriptor "
768 1.9 martin "for %d (interface: %d)\n", n, sc->sc_ifaceno);
769 1.9 martin sc->sc_dying = true;
770 1.1 joerg return;
771 1.1 joerg }
772 1.1 joerg
773 1.9 martin if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
774 1.9 martin UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
775 1.9 martin intr_address = ed->bEndpointAddress;
776 1.9 martin intr_size = UGETW(ed->wMaxPacketSize);
777 1.9 martin } else
778 1.9 martin if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
779 1.9 martin UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
780 1.9 martin uca.bulkin = ed->bEndpointAddress;
781 1.9 martin } else
782 1.9 martin if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
783 1.9 martin UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
784 1.9 martin uca.bulkout = ed->bEndpointAddress;
785 1.1 joerg }
786 1.27 christos if (uca.bulkin != -1 && uca.bulkout != -1) {
787 1.27 christos struct u3g_com *com;
788 1.27 christos if (sc->sc_ncom == __arraycount(sc->sc_com)) {
789 1.27 christos aprint_error_dev(self, "Need to configure "
790 1.27 christos "more than %zu ttys", sc->sc_ncom);
791 1.27 christos continue;
792 1.27 christos }
793 1.27 christos uca.portno = sc->sc_ncom++;
794 1.27 christos com = &sc->sc_com[uca.portno];
795 1.27 christos com->c_outpins = 0;
796 1.27 christos com->c_msr = UMSR_DSR | UMSR_CTS | UMSR_DCD;
797 1.27 christos com->c_open = false;
798 1.27 christos com->c_purging = false;
799 1.27 christos com->c_dev = config_found_sm_loc(self, "ucombus",
800 1.27 christos NULL, &uca, ucomprint, ucomsubmatch);
801 1.27 christos uca.bulkin = -1;
802 1.27 christos uca.bulkout = -1;
803 1.27 christos }
804 1.9 martin }
805 1.9 martin
806 1.27 christos if (sc->sc_ncom == 0) {
807 1.27 christos aprint_error_dev(self, "Missing bulk in/out for interface %d\n",
808 1.9 martin sc->sc_ifaceno);
809 1.9 martin sc->sc_dying = true;
810 1.9 martin return;
811 1.1 joerg }
812 1.1 joerg
813 1.9 martin /*
814 1.9 martin * If the interface has an interrupt pipe, open it immediately so
815 1.9 martin * that we can track input pin state changes regardless of whether
816 1.9 martin * the tty(4) device is open or not.
817 1.9 martin */
818 1.9 martin if (intr_address != -1) {
819 1.9 martin sc->sc_intr_buff = malloc(intr_size, M_USBDEV, M_WAITOK);
820 1.9 martin error = usbd_open_pipe_intr(iface, intr_address,
821 1.9 martin USBD_SHORT_XFER_OK, &sc->sc_intr_pipe, sc, sc->sc_intr_buff,
822 1.9 martin intr_size, u3g_intr, 100);
823 1.1 joerg if (error) {
824 1.9 martin aprint_error_dev(self, "cannot open interrupt pipe "
825 1.9 martin "(addr %d)\n", intr_address);
826 1.1 joerg return;
827 1.1 joerg }
828 1.9 martin } else {
829 1.9 martin sc->sc_intr_pipe = NULL;
830 1.9 martin sc->sc_intr_buff = NULL;
831 1.1 joerg }
832 1.1 joerg
833 1.1 joerg if (!pmf_device_register(self, NULL, NULL))
834 1.1 joerg aprint_error_dev(self, "couldn't establish power handler\n");
835 1.1 joerg }
836 1.1 joerg
837 1.1 joerg static int
838 1.1 joerg u3g_detach(device_t self, int flags)
839 1.1 joerg {
840 1.1 joerg struct u3g_softc *sc = device_private(self);
841 1.9 martin int rv;
842 1.1 joerg
843 1.9 martin if (sc->sc_dying)
844 1.2 joerg return 0;
845 1.2 joerg
846 1.1 joerg pmf_device_deregister(self);
847 1.1 joerg
848 1.27 christos for (size_t i = 0; i < sc->sc_ncom; i++)
849 1.27 christos if (sc->sc_com[i].c_dev != NULL) {
850 1.27 christos rv = config_detach(sc->sc_com[i].c_dev, flags);
851 1.27 christos if (rv != 0) {
852 1.27 christos aprint_verbose_dev(self, "Can't deallocate "
853 1.27 christos "port (%d)", rv);
854 1.27 christos }
855 1.1 joerg }
856 1.1 joerg
857 1.1 joerg if (sc->sc_intr_pipe != NULL) {
858 1.9 martin (void) usbd_abort_pipe(sc->sc_intr_pipe);
859 1.9 martin (void) usbd_close_pipe(sc->sc_intr_pipe);
860 1.1 joerg sc->sc_intr_pipe = NULL;
861 1.1 joerg }
862 1.9 martin if (sc->sc_intr_buff != NULL) {
863 1.9 martin free(sc->sc_intr_buff, M_USBDEV);
864 1.9 martin sc->sc_intr_buff = NULL;
865 1.9 martin }
866 1.1 joerg
867 1.9 martin return (0);
868 1.1 joerg }
869 1.1 joerg
870 1.1 joerg static void
871 1.1 joerg u3g_childdet(device_t self, device_t child)
872 1.1 joerg {
873 1.1 joerg struct u3g_softc *sc = device_private(self);
874 1.9 martin
875 1.27 christos for (size_t i = 0; i < sc->sc_ncom; i++)
876 1.27 christos if (sc->sc_com[i].c_dev == child)
877 1.27 christos sc->sc_com[i].c_dev = NULL;
878 1.9 martin }
879 1.9 martin
880 1.9 martin static int
881 1.9 martin u3g_activate(device_t self, enum devact act)
882 1.9 martin {
883 1.9 martin struct u3g_softc *sc = device_private(self);
884 1.27 christos int rv = 0;
885 1.9 martin
886 1.9 martin switch (act) {
887 1.9 martin case DVACT_DEACTIVATE:
888 1.27 christos for (size_t i = 0; i < sc->sc_ncom; i++)
889 1.27 christos if (sc->sc_com[i].c_dev != NULL &&
890 1.27 christos config_deactivate(sc->sc_com[i].c_dev) && rv == 0)
891 1.9 martin rv = -1;
892 1.9 martin else
893 1.9 martin rv = 0;
894 1.9 martin break;
895 1.9 martin
896 1.9 martin default:
897 1.9 martin break;
898 1.9 martin }
899 1.9 martin
900 1.27 christos return rv;
901 1.9 martin }
902 1.9 martin
903 1.9 martin static void
904 1.9 martin u3g_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
905 1.9 martin {
906 1.9 martin struct u3g_softc *sc = (struct u3g_softc *)priv;
907 1.9 martin u_char *buf;
908 1.27 christos int portno = 0; /* XXX */
909 1.27 christos struct u3g_com *com = &sc->sc_com[portno];
910 1.9 martin
911 1.9 martin if (sc->sc_dying)
912 1.9 martin return;
913 1.9 martin
914 1.9 martin if (status != USBD_NORMAL_COMPLETION) {
915 1.9 martin if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
916 1.9 martin return;
917 1.9 martin usbd_clear_endpoint_stall_async(sc->sc_intr_pipe);
918 1.9 martin return;
919 1.9 martin }
920 1.9 martin
921 1.9 martin buf = sc->sc_intr_buff;
922 1.9 martin if (buf[0] == 0xa1 && buf[1] == 0x20) {
923 1.9 martin u_char msr;
924 1.9 martin
925 1.27 christos msr = com->c_msr & ~(UMSR_DCD | UMSR_DSR | UMSR_RI);
926 1.9 martin
927 1.9 martin if (buf[8] & U3G_INPIN_DCD)
928 1.9 martin msr |= UMSR_DCD;
929 1.9 martin
930 1.9 martin if (buf[8] & U3G_INPIN_DSR)
931 1.9 martin msr |= UMSR_DSR;
932 1.9 martin
933 1.9 martin if (buf[8] & U3G_INPIN_RI)
934 1.9 martin msr |= UMSR_RI;
935 1.9 martin
936 1.27 christos if (msr != com->c_msr) {
937 1.27 christos com->c_msr = msr;
938 1.27 christos if (com->c_open)
939 1.27 christos ucom_status_change(device_private(com->c_dev));
940 1.9 martin }
941 1.9 martin }
942 1.9 martin }
943 1.9 martin
944 1.9 martin /*ARGSUSED*/
945 1.9 martin static void
946 1.9 martin u3g_get_status(void *arg, int portno, u_char *lsr, u_char *msr)
947 1.9 martin {
948 1.9 martin struct u3g_softc *sc = arg;
949 1.9 martin
950 1.9 martin if (lsr != NULL)
951 1.9 martin *lsr = 0; /* LSR isn't supported */
952 1.9 martin if (msr != NULL)
953 1.27 christos *msr = sc->sc_com[portno].c_msr;
954 1.9 martin }
955 1.9 martin
956 1.9 martin /*ARGSUSED*/
957 1.9 martin static void
958 1.9 martin u3g_set(void *arg, int portno, int reg, int onoff)
959 1.9 martin {
960 1.9 martin struct u3g_softc *sc = arg;
961 1.9 martin usb_device_request_t req;
962 1.9 martin uint16_t mask, new_state;
963 1.9 martin usbd_status err;
964 1.27 christos struct u3g_com *com = &sc->sc_com[portno];
965 1.9 martin
966 1.9 martin if (sc->sc_dying)
967 1.9 martin return;
968 1.9 martin
969 1.9 martin switch (reg) {
970 1.9 martin case UCOM_SET_DTR:
971 1.9 martin mask = U3G_OUTPIN_DTR;
972 1.9 martin break;
973 1.9 martin case UCOM_SET_RTS:
974 1.9 martin mask = U3G_OUTPIN_RTS;
975 1.9 martin break;
976 1.9 martin default:
977 1.9 martin return;
978 1.9 martin }
979 1.9 martin
980 1.27 christos new_state = com->c_outpins & ~mask;
981 1.9 martin if (onoff)
982 1.9 martin new_state |= mask;
983 1.9 martin
984 1.27 christos if (new_state == com->c_outpins)
985 1.9 martin return;
986 1.9 martin
987 1.27 christos com->c_outpins = new_state;
988 1.9 martin
989 1.9 martin req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
990 1.9 martin req.bRequest = U3G_SET_PIN;
991 1.9 martin USETW(req.wValue, new_state);
992 1.9 martin USETW(req.wIndex, sc->sc_ifaceno);
993 1.9 martin USETW(req.wLength, 0);
994 1.9 martin
995 1.9 martin err = usbd_do_request(sc->sc_udev, &req, 0);
996 1.9 martin if (err == USBD_STALLED)
997 1.31.2.3 skrll usbd_clear_endpoint_stall(sc->sc_udev->ud_pipe0);
998 1.9 martin }
999 1.9 martin
1000 1.9 martin /*ARGSUSED*/
1001 1.31.2.1 skrll static int
1002 1.9 martin u3g_open(void *arg, int portno)
1003 1.9 martin {
1004 1.9 martin struct u3g_softc *sc = arg;
1005 1.9 martin usb_device_request_t req;
1006 1.9 martin usb_endpoint_descriptor_t *ed;
1007 1.9 martin usb_interface_descriptor_t *id;
1008 1.9 martin usbd_interface_handle ih;
1009 1.9 martin usbd_status err;
1010 1.27 christos struct u3g_com *com = &sc->sc_com[portno];
1011 1.27 christos int i, nin;
1012 1.1 joerg
1013 1.9 martin if (sc->sc_dying)
1014 1.9 martin return (0);
1015 1.9 martin
1016 1.27 christos err = usbd_device2interface_handle(sc->sc_udev, sc->sc_ifaceno, &ih);
1017 1.9 martin if (err)
1018 1.9 martin return (EIO);
1019 1.9 martin
1020 1.9 martin id = usbd_get_interface_descriptor(ih);
1021 1.9 martin
1022 1.27 christos for (nin = i = 0; i < id->bNumEndpoints; i++) {
1023 1.9 martin ed = usbd_interface2endpoint_descriptor(ih, i);
1024 1.31.2.1 skrll if (ed == NULL)
1025 1.9 martin return (EIO);
1026 1.9 martin
1027 1.27 christos if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
1028 1.27 christos UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK &&
1029 1.27 christos nin++ == portno) {
1030 1.9 martin /* Issue ENDPOINT_HALT request */
1031 1.9 martin req.bmRequestType = UT_WRITE_ENDPOINT;
1032 1.9 martin req.bRequest = UR_CLEAR_FEATURE;
1033 1.9 martin USETW(req.wValue, UF_ENDPOINT_HALT);
1034 1.9 martin USETW(req.wIndex, ed->bEndpointAddress);
1035 1.9 martin USETW(req.wLength, 0);
1036 1.9 martin err = usbd_do_request(sc->sc_udev, &req, 0);
1037 1.9 martin if (err)
1038 1.9 martin return (EIO);
1039 1.9 martin }
1040 1.1 joerg }
1041 1.9 martin
1042 1.27 christos com->c_open = true;
1043 1.27 christos com->c_purging = true;
1044 1.27 christos getmicrotime(&com->c_purge_start);
1045 1.9 martin
1046 1.9 martin return (0);
1047 1.1 joerg }
1048 1.1 joerg
1049 1.9 martin /*ARGSUSED*/
1050 1.31.2.1 skrll static void
1051 1.9 martin u3g_close(void *arg, int portno)
1052 1.9 martin {
1053 1.9 martin struct u3g_softc *sc = arg;
1054 1.27 christos struct u3g_com *com = &sc->sc_com[portno];
1055 1.9 martin
1056 1.27 christos com->c_open = false;
1057 1.9 martin }
1058 1.9 martin
1059 1.9 martin /*ARGSUSED*/
1060 1.9 martin static void
1061 1.9 martin u3g_read(void *arg, int portno, u_char **cpp, uint32_t *ccp)
1062 1.9 martin {
1063 1.9 martin struct u3g_softc *sc = arg;
1064 1.9 martin struct timeval curr_tv, diff_tv;
1065 1.27 christos struct u3g_com *com = &sc->sc_com[portno];
1066 1.9 martin
1067 1.9 martin /*
1068 1.9 martin * If we're not purging input data following first open, do nothing.
1069 1.9 martin */
1070 1.27 christos if (com->c_purging == false)
1071 1.9 martin return;
1072 1.9 martin
1073 1.9 martin /*
1074 1.9 martin * Otherwise check if the purge timeout has expired
1075 1.9 martin */
1076 1.9 martin getmicrotime(&curr_tv);
1077 1.27 christos timersub(&curr_tv, &com->c_purge_start, &diff_tv);
1078 1.9 martin
1079 1.9 martin if (diff_tv.tv_sec >= U3G_PURGE_SECS) {
1080 1.9 martin /* Timeout expired. */
1081 1.27 christos com->c_purging = false;
1082 1.9 martin } else {
1083 1.9 martin /* Still purging. Adjust the caller's byte count. */
1084 1.9 martin *ccp = 0;
1085 1.9 martin }
1086 1.9 martin }
1087 1.9 martin
1088 1.9 martin /*ARGSUSED*/
1089 1.9 martin static void
1090 1.31.2.1 skrll u3g_write(void *arg, int portno, u_char *to, u_char *from, uint32_t *count)
1091 1.9 martin {
1092 1.9 martin struct u3g_softc *sc = arg;
1093 1.27 christos struct u3g_com *com = &sc->sc_com[portno];
1094 1.9 martin
1095 1.9 martin /*
1096 1.9 martin * Stop purging as soon as the first data is written to the device.
1097 1.9 martin */
1098 1.27 christos com->c_purging = false;
1099 1.9 martin memcpy(to, from, *count);
1100 1.9 martin }
1101