1 /* $NetBSD: uhmodem.c,v 1.8 2009/09/23 19:07:19 plunky Exp $ */
4 * Copyright (c) 2008 Yojiro UO <yuo@nui.org>.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
16 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 * Copyright (c) 2002, Alexander Kabaev <kan.FreeBSD.org>.
21 * All rights reserved.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
32 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
33 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 * Copyright (c) 2001 The NetBSD Foundation, Inc.
46 * All rights reserved.
48 * This code is derived from software contributed to The NetBSD Foundation
49 * by Ichiro FUKUHARA (ichiro@ichiro.org).
51 * Redistribution and use in source and binary forms, with or without
52 * modification, are permitted provided that the following conditions
54 * 1. Redistributions of source code must retain the above copyright
55 * notice, this list of conditions and the following disclaimer.
56 * 2. Redistributions in binary form must reproduce the above copyright
57 * notice, this list of conditions and the following disclaimer in the
58 * documentation and/or other materials provided with the distribution.
60 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
61 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
62 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
63 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
64 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
65 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
66 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
67 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
68 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
69 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
70 * POSSIBILITY OF SUCH DAMAGE.
73 #include <sys/cdefs.h>
74 __KERNEL_RCSID(0, "$NetBSD: uhmodem.c,v 1.8 2009/09/23 19:07:19 plunky Exp $");
76 #include <sys/param.h>
77 #include <sys/systm.h>
78 #include <sys/kernel.h>
79 #include <sys/malloc.h>
80 #include <sys/ioccom.h>
81 #include <sys/fcntl.h>
85 #include <sys/select.h>
87 #include <sys/device.h>
89 #include <sys/sysctl.h>
92 #include <dev/usb/usb.h>
93 #include <dev/usb/usbdi.h>
94 #include <dev/usb/usbdi_util.h>
95 #include <dev/usb/usbdivar.h>
97 #include <dev/usb/usbcdc.h>
98 #include <dev/usb/usbdevs.h>
99 #include <dev/usb/usb_quirks.h>
100 #include <dev/usb/ucomvar.h>
101 #include <dev/usb/ubsavar.h>
103 /* vendor specific bRequest */
104 #define UHMODEM_REGWRITE 0x20
105 #define UHMODEM_REGREAD 0x21
106 #define UHMODEM_SETUP 0x22
108 #define UHMODEMIBUFSIZE 4096
109 #define UHMODEMOBUFSIZE 4096
112 Static
int uhmodemdebug
= 0;
113 #define DPRINTFN(n, x) do { \
114 if (uhmodemdebug > (n)) \
118 #define DPRINTFN(n, x)
120 #define DPRINTF(x) DPRINTFN(0, x)
122 Static
int uhmodem_open(void *, int);
123 Static usbd_status
e220_modechange_request(usbd_device_handle
);
124 Static usbd_status
uhmodem_endpointhalt(struct ubsa_softc
*, int);
125 Static usbd_status
uhmodem_regwrite(usbd_device_handle
, uint8_t *, size_t);
126 Static usbd_status
uhmodem_regread(usbd_device_handle
, uint8_t *, size_t);
127 Static usbd_status
a2502_init(usbd_device_handle
);
129 Static usbd_status
uhmodem_regsetup(usbd_device_handle
, uint16_t);
130 Static usbd_status
e220_init(usbd_device_handle
);
133 struct uhmodem_softc
{
134 struct ubsa_softc sc_ubsa
;
137 struct ucom_methods uhmodem_methods
= {
148 struct uhmodem_type
{
149 struct usb_devno uhmodem_dev
;
150 u_int16_t uhmodem_coms
; /* number of serial interfaces on the device */
151 u_int16_t uhmodem_flags
;
154 #define E620 0x0004 /* XXX */
155 /* Whether or not it is a device different from E220 is not clear. */
158 Static
const struct uhmodem_type uhmodem_devs
[] = {
159 /* HUAWEI E220 / Emobile D0[12]HW */
160 {{ USB_VENDOR_HUAWEI
, USB_PRODUCT_HUAWEI_E220
}, 2, E220
},
161 /* ANYDATA / NTT DoCoMo A2502 */
162 {{ USB_VENDOR_ANYDATA
, USB_PRODUCT_ANYDATA_A2502
}, 3, A2502
},
164 {{ USB_VENDOR_HUAWEI
, USB_PRODUCT_HUAWEI_MOBILE
}, 3, E620
},
166 #define uhmodem_lookup(v, p) ((const struct uhmodem_type *)usb_lookup(uhmodem_devs, v, p))
168 int uhmodem_match(device_t
, cfdata_t
, void *);
169 void uhmodem_attach(device_t
, device_t
, void *);
170 void uhmodem_childdet(device_t
, device_t
);
171 int uhmodem_detach(device_t
, int);
172 int uhmodem_activate(device_t
, enum devact
);
173 extern struct cfdriver uhmodem_cd
;
174 CFATTACH_DECL2_NEW(uhmodem
, sizeof(struct uhmodem_softc
), uhmodem_match
,
175 uhmodem_attach
, uhmodem_detach
, uhmodem_activate
, NULL
, uhmodem_childdet
);
179 USB_IFMATCH_START(uhmodem
, uaa
);
181 if (uhmodem_lookup(uaa
->vendor
, uaa
->product
) != NULL
)
182 /* XXX interface# 0,1 provide modem function, but this driver
183 handles all modem in single device. */
184 if (uaa
->ifaceno
== 0)
185 return (UMATCH_VENDOR_PRODUCT
);
186 return (UMATCH_NONE
);
191 USB_IFATTACH_START(uhmodem
, sc
, uaa
);
192 usbd_device_handle dev
= uaa
->device
;
193 usb_config_descriptor_t
*cdesc
;
194 usb_interface_descriptor_t
*id
;
195 usb_endpoint_descriptor_t
*ed
;
198 struct ucom_attach_args uca
;
206 devinfop
= usbd_devinfo_alloc(dev
, 0);
207 aprint_normal_dev(self
, "%s\n", devinfop
);
208 usbd_devinfo_free(devinfop
);
210 sc
->sc_ubsa
.sc_dev
= self
;
211 sc
->sc_ubsa
.sc_udev
= dev
;
212 sc
->sc_ubsa
.sc_config_index
= UBSA_DEFAULT_CONFIG_INDEX
;
213 sc
->sc_ubsa
.sc_numif
= 1; /* defaut device has one interface */
215 /* Hauwei E220 need special request to change its mode to modem */
216 if ((uaa
->ifaceno
== 0) && (uaa
->class != 255)) {
217 err
= e220_modechange_request(dev
);
219 aprint_error_dev(self
, "failed to change mode: %s\n",
221 sc
->sc_ubsa
.sc_dying
= 1;
224 aprint_error_dev(self
,
225 "mass storage only mode, reattach to enable modem\n");
226 sc
->sc_ubsa
.sc_dying
= 1;
231 * initialize rts, dtr variables to something
232 * different from boolean 0, 1
234 sc
->sc_ubsa
.sc_dtr
= -1;
235 sc
->sc_ubsa
.sc_rts
= -1;
237 sc
->sc_ubsa
.sc_quadumts
= 1;
238 sc
->sc_ubsa
.sc_config_index
= 0;
239 sc
->sc_ubsa
.sc_numif
= uhmodem_lookup(uaa
->vendor
, uaa
->product
)->uhmodem_coms
;
240 sc
->sc_ubsa
.sc_devflags
= uhmodem_lookup(uaa
->vendor
, uaa
->product
)->uhmodem_flags
;
242 DPRINTF(("uhmodem attach: sc = %p\n", sc
));
244 /* Move the device into the configured state. */
245 err
= usbd_set_config_index(dev
, sc
->sc_ubsa
.sc_config_index
, 1);
247 aprint_error_dev(self
, "failed to set configuration: %s\n",
249 sc
->sc_ubsa
.sc_dying
= 1;
253 /* get the config descriptor */
254 cdesc
= usbd_get_config_descriptor(sc
->sc_ubsa
.sc_udev
);
256 aprint_error_dev(self
,
257 "failed to get configuration descriptor\n");
258 sc
->sc_ubsa
.sc_dying
= 1;
262 sc
->sc_ubsa
.sc_intr_number
= -1;
263 sc
->sc_ubsa
.sc_intr_pipe
= NULL
;
265 /* get the interfaces */
266 for (i
= 0; i
< sc
->sc_ubsa
.sc_numif
; i
++) {
267 err
= usbd_device2interface_handle(dev
, UBSA_IFACE_INDEX_OFFSET
+i
,
268 &sc
->sc_ubsa
.sc_iface
[i
]);
271 /* can not get main interface */
272 sc
->sc_ubsa
.sc_dying
= 1;
278 /* Find the endpoints */
279 id
= usbd_get_interface_descriptor(sc
->sc_ubsa
.sc_iface
[i
]);
280 sc
->sc_ubsa
.sc_iface_number
[i
] = id
->bInterfaceNumber
;
282 /* initialize endpoints */
283 uca
.bulkin
= uca
.bulkout
= -1;
285 for (j
= 0; j
< id
->bNumEndpoints
; j
++) {
286 ed
= usbd_interface2endpoint_descriptor(
287 sc
->sc_ubsa
.sc_iface
[i
], j
);
289 aprint_error_dev(self
,
290 "no endpoint descriptor for %d "
291 "(interface: %d)\n", j
, i
);
295 if (UE_GET_DIR(ed
->bEndpointAddress
) == UE_DIR_IN
&&
296 UE_GET_XFERTYPE(ed
->bmAttributes
) == UE_INTERRUPT
) {
297 sc
->sc_ubsa
.sc_intr_number
= ed
->bEndpointAddress
;
298 sc
->sc_ubsa
.sc_isize
= UGETW(ed
->wMaxPacketSize
);
299 } else if (UE_GET_DIR(ed
->bEndpointAddress
) == UE_DIR_IN
&&
300 UE_GET_XFERTYPE(ed
->bmAttributes
) == UE_BULK
) {
301 uca
.bulkin
= ed
->bEndpointAddress
;
302 } else if (UE_GET_DIR(ed
->bEndpointAddress
) == UE_DIR_OUT
&&
303 UE_GET_XFERTYPE(ed
->bmAttributes
) == UE_BULK
) {
304 uca
.bulkout
= ed
->bEndpointAddress
;
306 } /* end of Endpoint loop */
308 if (sc
->sc_ubsa
.sc_intr_number
== -1) {
309 aprint_error_dev(self
, "HUAWEI E220 need to re-attach "
310 "to enable modem function\n");
312 /* could not get intr for main tty */
313 sc
->sc_ubsa
.sc_dying
= 1;
318 if (uca
.bulkin
== -1) {
319 aprint_error_dev(self
,
320 "Could not find data bulk in\n");
321 sc
->sc_ubsa
.sc_dying
= 1;
325 if (uca
.bulkout
== -1) {
326 aprint_error_dev(self
,
327 "Could not find data bulk out\n");
328 sc
->sc_ubsa
.sc_dying
= 1;
334 snprintf(comname
, sizeof(comname
), "modem");
337 snprintf(comname
, sizeof(comname
), "alt#1");
340 snprintf(comname
, sizeof(comname
), "alt#2");
343 snprintf(comname
, sizeof(comname
), "int#%d", i
);
348 /* bulkin, bulkout set above */
349 uca
.ibufsize
= UHMODEMIBUFSIZE
;
350 uca
.obufsize
= UHMODEMOBUFSIZE
;
351 uca
.ibufsizepad
= UHMODEMIBUFSIZE
;
354 uca
.iface
= sc
->sc_ubsa
.sc_iface
[i
];
355 uca
.methods
= &uhmodem_methods
;
356 uca
.arg
= &sc
->sc_ubsa
;
358 DPRINTF(("uhmodem: int#=%d, in = 0x%x, out = 0x%x, intr = 0x%x\n",
359 i
, uca
.bulkin
, uca
.bulkout
, sc
->sc_ubsa
.sc_intr_number
));
360 sc
->sc_ubsa
.sc_subdevs
[i
] = config_found_sm_loc(self
, "ucombus", NULL
,
361 &uca
, ucomprint
, ucomsubmatch
);
363 /* issue endpoint halt to each interface */
364 err
= uhmodem_endpointhalt(&sc
->sc_ubsa
, i
);
366 aprint_error("%s: endpointhalt fail\n", __func__
);
368 usbd_delay_ms(sc
->sc_ubsa
.sc_udev
, 50);
369 } /* end of Interface loop */
371 usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH
, sc
->sc_ubsa
.sc_udev
,
372 USBDEV(sc
->sc_ubsa
.sc_dev
));
374 USB_ATTACH_SUCCESS_RETURN
;
377 USB_ATTACH_ERROR_RETURN
;
381 uhmodem_childdet(device_t self
, device_t child
)
384 struct uhmodem_softc
*sc
= device_private(self
);
386 for (i
= 0; i
< sc
->sc_ubsa
.sc_numif
; i
++) {
387 if (sc
->sc_ubsa
.sc_subdevs
[i
] == child
)
390 KASSERT(i
< sc
->sc_ubsa
.sc_numif
);
391 sc
->sc_ubsa
.sc_subdevs
[i
] = NULL
;
396 USB_DETACH_START(uhmodem
, sc
);
400 DPRINTF(("uhmodem_detach: sc = %p\n", sc
));
402 if (sc
->sc_ubsa
.sc_intr_pipe
!= NULL
) {
403 usbd_abort_pipe(sc
->sc_ubsa
.sc_intr_pipe
);
404 usbd_close_pipe(sc
->sc_ubsa
.sc_intr_pipe
);
405 free(sc
->sc_ubsa
.sc_intr_buf
, M_USBDEV
);
406 sc
->sc_ubsa
.sc_intr_pipe
= NULL
;
409 sc
->sc_ubsa
.sc_dying
= 1;
410 for (i
= 0; i
< sc
->sc_ubsa
.sc_numif
; i
++) {
411 if (sc
->sc_ubsa
.sc_subdevs
[i
] != NULL
)
412 rv
|= config_detach(sc
->sc_ubsa
.sc_subdevs
[i
], flags
);
415 usbd_add_drv_event(USB_EVENT_DRIVER_DETACH
, sc
->sc_ubsa
.sc_udev
,
416 USBDEV(sc
->sc_ubsa
.sc_dev
));
422 uhmodem_activate(device_t self
, enum devact act
)
424 struct uhmodem_softc
*sc
= device_private(self
);
427 case DVACT_DEACTIVATE
:
428 sc
->sc_ubsa
.sc_dying
= 1;
436 uhmodem_open(void *addr
, int portno
)
438 struct ubsa_softc
*sc
= addr
;
444 DPRINTF(("%s: sc = %p\n", __func__
, sc
));
446 err
= uhmodem_endpointhalt(sc
, 0);
448 aprint_error("%s: endpointhalt fail\n", __func__
);
450 usbd_delay_ms(sc
->sc_udev
, 50);
452 if (sc
->sc_devflags
& A2502
) {
453 err
= a2502_init(sc
->sc_udev
);
455 aprint_error("%s: a2502init fail\n", __func__
);
457 usbd_delay_ms(sc
->sc_udev
, 50);
459 #if 0 /* currently disabled */
460 if (sc
->sc_devflags
& E220
) {
461 err
= e220_init(sc
->sc_udev
);
463 aprint_error("%s: e220init fail\n", __func__
);
465 usbd_delay_ms(sc
->sc_udev
, 50);
468 if (sc
->sc_intr_number
!= -1 && sc
->sc_intr_pipe
== NULL
) {
469 sc
->sc_intr_buf
= malloc(sc
->sc_isize
, M_USBDEV
, M_WAITOK
);
470 /* XXX only iface# = 0 has intr line */
471 /* XXX E220 specific? need to check */
472 err
= usbd_open_pipe_intr(sc
->sc_iface
[0],
482 aprint_error_dev(sc
->sc_dev
,
483 "cannot open interrupt pipe (addr %d)\n",
493 * Hauwei E220 needs special request to enable modem function.
494 * -- DEVICE_REMOTE_WAKEUP ruquest to endpoint 2.
497 e220_modechange_request(usbd_device_handle dev
)
499 #define E220_MODE_CHANGE_REQUEST 0x2
500 usb_device_request_t req
;
503 req
.bmRequestType
= UT_WRITE_DEVICE
;
504 req
.bRequest
= UR_SET_FEATURE
;
505 USETW(req
.wValue
, UF_DEVICE_REMOTE_WAKEUP
);
506 USETW(req
.wIndex
, E220_MODE_CHANGE_REQUEST
);
507 USETW(req
.wLength
, 0);
509 DPRINTF(("%s: send e220 mode change request\n", __func__
));
510 err
= usbd_do_request(dev
, &req
, 0);
512 DPRINTF(("%s: E220 mode change fail\n", __func__
));
517 #undef E220_MODE_CHANGE_REQUEST
521 uhmodem_endpointhalt(struct ubsa_softc
*sc
, int iface
)
523 usb_device_request_t req
;
524 usb_endpoint_descriptor_t
*ed
;
525 usb_interface_descriptor_t
*id
;
529 /* Find the endpoints */
530 id
= usbd_get_interface_descriptor(sc
->sc_iface
[iface
]);
532 for (i
= 0; i
< id
->bNumEndpoints
; i
++) {
533 ed
= usbd_interface2endpoint_descriptor(sc
->sc_iface
[iface
], i
);
537 if (UE_GET_XFERTYPE(ed
->bmAttributes
) == UE_BULK
) {
538 /* issue ENDPOINT_HALT request */
539 req
.bmRequestType
= UT_WRITE_ENDPOINT
;
540 req
.bRequest
= UR_CLEAR_FEATURE
;
541 USETW(req
.wValue
, UF_ENDPOINT_HALT
);
542 USETW(req
.wIndex
, ed
->bEndpointAddress
);
543 USETW(req
.wLength
, 0);
544 err
= usbd_do_request(sc
->sc_udev
, &req
, 0);
546 DPRINTF(("%s: ENDPOINT_HALT to EP:%d fail\n",
547 __func__
, ed
->bEndpointAddress
));
552 } /* end of Endpoint loop */
558 uhmodem_regwrite(usbd_device_handle dev
, uint8_t *data
, size_t len
)
560 usb_device_request_t req
;
563 req
.bmRequestType
= UT_WRITE_CLASS_INTERFACE
;
564 req
.bRequest
= UHMODEM_REGWRITE
;
565 USETW(req
.wValue
, 0x0000);
566 USETW(req
.wIndex
, 0x0000);
567 USETW(req
.wLength
, len
);
568 err
= usbd_do_request(dev
, &req
, data
);
576 uhmodem_regread(usbd_device_handle dev
, uint8_t *data
, size_t len
)
578 usb_device_request_t req
;
581 req
.bmRequestType
= UT_READ_CLASS_INTERFACE
;
582 req
.bRequest
= UHMODEM_REGREAD
;
583 USETW(req
.wValue
, 0x0000);
584 USETW(req
.wIndex
, 0x0000);
585 USETW(req
.wLength
, len
);
586 err
= usbd_do_request(dev
, &req
, data
);
596 uhmodem_regsetup(usbd_device_handle dev
, uint16_t cmd
)
598 usb_device_request_t req
;
601 req
.bmRequestType
= UT_READ_CLASS_INTERFACE
;
602 req
.bRequest
= UHMODEM_SETUP
;
603 USETW(req
.wValue
, cmd
);
604 USETW(req
.wIndex
, 0x0000);
605 USETW(req
.wLength
, 0);
606 err
= usbd_do_request(dev
, &req
, 0);
616 a2502_init(usbd_device_handle dev
)
619 static uint8_t init_cmd
[] = {0x00, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x08};
623 if (uhmodem_regread(dev
, data
, 7)) {
624 DPRINTF(("%s: read fail\n", __func__
));
628 printf("%s: readdata: ", __func__
);
629 for (i
= 0; i
< 7; i
++)
630 printf("0x%x ", data
[i
]);
632 if (uhmodem_regwrite(dev
, init_cmd
, sizeof(init_cmd
)) ) {
633 DPRINTF(("%s: write fail\n", __func__
));
637 if (uhmodem_regread(dev
, data
, 7)) {
638 DPRINTF(("%s: read fail\n", __func__
));
642 printf("%s: readdata: ", __func__
);
644 for (i
= 0; i
< 7; i
++)
645 printf("0x%x ", data
[i
]);
654 * Windows device driver send these sequens of USB requests.
655 * However currently I can't understand what the messege is,
656 * disable this code when I get more information about it.
659 e220_init(usbd_device_handle dev
)
662 usb_device_request_t req
;
665 /* vendor specific unknown request */
666 req
.bmRequestType
= UT_WRITE_CLASS_INTERFACE
;
668 USETW(req
.wValue
, 0x0001);
669 USETW(req
.wIndex
, 0x0000);
670 USETW(req
.wLength
, 2);
673 if (usbd_do_request(dev
, &req
, data
))
676 /* vendor specific unknown sequence */
677 if(uhmodem_regsetup(dev
, 0x1))
680 if (uhmodem_regread(dev
, data
, 7))
685 if (uhmodem_regwrite(dev
, data
, sizeof(data
)) )
688 if (uhmodem_regread(dev
, data
, 7))
690 /* XXX should verify the read data ? */
692 if (uhmodem_regsetup(dev
, 0x3))
697 DPRINTF(("%s: E220 init request fail\n", __func__
));