uchcom.c revision 1.38 1 1.38 nisimura /* $NetBSD: uchcom.c,v 1.38 2021/07/14 07:34:16 nisimura Exp $ */
2 1.1 tshiozak
3 1.1 tshiozak /*
4 1.1 tshiozak * Copyright (c) 2007 The NetBSD Foundation, Inc.
5 1.1 tshiozak * All rights reserved.
6 1.1 tshiozak *
7 1.1 tshiozak * This code is derived from software contributed to The NetBSD Foundation
8 1.1 tshiozak * by Takuya SHIOZAKI (tshiozak (at) netbsd.org).
9 1.1 tshiozak *
10 1.1 tshiozak * Redistribution and use in source and binary forms, with or without
11 1.1 tshiozak * modification, are permitted provided that the following conditions
12 1.1 tshiozak * are met:
13 1.1 tshiozak * 1. Redistributions of source code must retain the above copyright
14 1.1 tshiozak * notice, this list of conditions and the following disclaimer.
15 1.1 tshiozak * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 tshiozak * notice, this list of conditions and the following disclaimer in the
17 1.1 tshiozak * documentation and/or other materials provided with the distribution.
18 1.1 tshiozak *
19 1.1 tshiozak * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 tshiozak * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 tshiozak * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 tshiozak * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 tshiozak * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 tshiozak * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 tshiozak * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 tshiozak * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 tshiozak * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 tshiozak * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 tshiozak * POSSIBILITY OF SUCH DAMAGE.
30 1.1 tshiozak */
31 1.1 tshiozak
32 1.1 tshiozak #include <sys/cdefs.h>
33 1.38 nisimura __KERNEL_RCSID(0, "$NetBSD: uchcom.c,v 1.38 2021/07/14 07:34:16 nisimura Exp $");
34 1.16 skrll
35 1.16 skrll #ifdef _KERNEL_OPT
36 1.16 skrll #include "opt_usb.h"
37 1.16 skrll #endif
38 1.1 tshiozak
39 1.1 tshiozak /*
40 1.1 tshiozak * driver for WinChipHead CH341/340, the worst USB-serial chip in the world.
41 1.1 tshiozak */
42 1.1 tshiozak
43 1.1 tshiozak #include <sys/param.h>
44 1.1 tshiozak #include <sys/systm.h>
45 1.1 tshiozak #include <sys/kernel.h>
46 1.14 skrll #include <sys/kmem.h>
47 1.1 tshiozak #include <sys/ioctl.h>
48 1.1 tshiozak #include <sys/conf.h>
49 1.1 tshiozak #include <sys/tty.h>
50 1.1 tshiozak #include <sys/file.h>
51 1.1 tshiozak #include <sys/select.h>
52 1.1 tshiozak #include <sys/proc.h>
53 1.1 tshiozak #include <sys/device.h>
54 1.1 tshiozak #include <sys/poll.h>
55 1.1 tshiozak
56 1.1 tshiozak #include <dev/usb/usb.h>
57 1.1 tshiozak
58 1.1 tshiozak #include <dev/usb/usbdi.h>
59 1.1 tshiozak #include <dev/usb/usbdi_util.h>
60 1.1 tshiozak #include <dev/usb/usbdevs.h>
61 1.1 tshiozak
62 1.1 tshiozak #include <dev/usb/ucomvar.h>
63 1.1 tshiozak
64 1.1 tshiozak #ifdef UCHCOM_DEBUG
65 1.10 dyoung #define DPRINTFN(n, x) if (uchcomdebug > (n)) printf x
66 1.1 tshiozak int uchcomdebug = 0;
67 1.1 tshiozak #else
68 1.1 tshiozak #define DPRINTFN(n, x)
69 1.1 tshiozak #endif
70 1.1 tshiozak #define DPRINTF(x) DPRINTFN(0, x)
71 1.1 tshiozak
72 1.1 tshiozak #define UCHCOM_IFACE_INDEX 0
73 1.1 tshiozak #define UCHCOM_CONFIG_INDEX 0
74 1.1 tshiozak
75 1.1 tshiozak #define UCHCOM_INPUT_BUF_SIZE 8
76 1.1 tshiozak
77 1.1 tshiozak #define UCHCOM_REQ_GET_VERSION 0x5F
78 1.1 tshiozak #define UCHCOM_REQ_READ_REG 0x95
79 1.1 tshiozak #define UCHCOM_REQ_WRITE_REG 0x9A
80 1.1 tshiozak #define UCHCOM_REQ_RESET 0xA1
81 1.1 tshiozak #define UCHCOM_REQ_SET_DTRRTS 0xA4
82 1.1 tshiozak
83 1.1 tshiozak #define UCHCOM_REG_STAT1 0x06
84 1.1 tshiozak #define UCHCOM_REG_STAT2 0x07
85 1.1 tshiozak #define UCHCOM_REG_BPS_PRE 0x12
86 1.1 tshiozak #define UCHCOM_REG_BPS_DIV 0x13
87 1.26 jakllsch #define UCHCOM_REG_BREAK 0x05
88 1.26 jakllsch #define UCHCOM_REG_LCR 0x18
89 1.1 tshiozak #define UCHCOM_REG_LCR2 0x25
90 1.1 tshiozak
91 1.1 tshiozak #define UCHCOM_VER_20 0x20
92 1.17 bouyer #define UCHCOM_VER_30 0x30
93 1.1 tshiozak
94 1.19 jakllsch #define UCHCOM_BPS_PRE_IMM 0x80 /* CH341: immediate RX forwarding */
95 1.19 jakllsch
96 1.1 tshiozak #define UCHCOM_DTR_MASK 0x20
97 1.1 tshiozak #define UCHCOM_RTS_MASK 0x40
98 1.1 tshiozak
99 1.26 jakllsch #define UCHCOM_BREAK_MASK 0x01
100 1.1 tshiozak
101 1.26 jakllsch #define UCHCOM_LCR_CS5 0x00
102 1.26 jakllsch #define UCHCOM_LCR_CS6 0x01
103 1.26 jakllsch #define UCHCOM_LCR_CS7 0x02
104 1.26 jakllsch #define UCHCOM_LCR_CS8 0x03
105 1.26 jakllsch #define UCHCOM_LCR_STOPB 0x04
106 1.26 jakllsch #define UCHCOM_LCR_PARENB 0x08
107 1.26 jakllsch #define UCHCOM_LCR_PARODD 0x00
108 1.26 jakllsch #define UCHCOM_LCR_PAREVEN 0x10
109 1.26 jakllsch #define UCHCOM_LCR_PARMARK 0x20
110 1.26 jakllsch #define UCHCOM_LCR_PARSPACE 0x30
111 1.26 jakllsch #define UCHCOM_LCR_TXE 0x40
112 1.26 jakllsch #define UCHCOM_LCR_RXE 0x80
113 1.1 tshiozak
114 1.1 tshiozak #define UCHCOM_INTR_STAT1 0x02
115 1.1 tshiozak #define UCHCOM_INTR_STAT2 0x03
116 1.1 tshiozak #define UCHCOM_INTR_LEAST 4
117 1.1 tshiozak
118 1.1 tshiozak #define UCHCOMIBUFSIZE 256
119 1.1 tshiozak #define UCHCOMOBUFSIZE 256
120 1.1 tshiozak
121 1.1 tshiozak struct uchcom_softc
122 1.1 tshiozak {
123 1.10 dyoung device_t sc_dev;
124 1.14 skrll struct usbd_device * sc_udev;
125 1.10 dyoung device_t sc_subdev;
126 1.14 skrll struct usbd_interface * sc_iface;
127 1.29 mrg bool sc_dying;
128 1.1 tshiozak /* */
129 1.1 tshiozak int sc_intr_endpoint;
130 1.1 tshiozak int sc_intr_size;
131 1.14 skrll struct usbd_pipe * sc_intr_pipe;
132 1.1 tshiozak u_char *sc_intr_buf;
133 1.1 tshiozak /* */
134 1.1 tshiozak uint8_t sc_version;
135 1.1 tshiozak int sc_dtr;
136 1.1 tshiozak int sc_rts;
137 1.1 tshiozak u_char sc_lsr;
138 1.1 tshiozak u_char sc_msr;
139 1.1 tshiozak };
140 1.1 tshiozak
141 1.1 tshiozak struct uchcom_endpoints
142 1.1 tshiozak {
143 1.1 tshiozak int ep_bulkin;
144 1.1 tshiozak int ep_bulkout;
145 1.1 tshiozak int ep_intr;
146 1.1 tshiozak int ep_intr_size;
147 1.1 tshiozak };
148 1.1 tshiozak
149 1.1 tshiozak struct uchcom_divider
150 1.1 tshiozak {
151 1.1 tshiozak uint8_t dv_prescaler;
152 1.1 tshiozak uint8_t dv_div;
153 1.1 tshiozak };
154 1.1 tshiozak
155 1.38 nisimura /* 0,1,2,3,7 are prescale factors for given 4x 12000000 clock formula */
156 1.27 jakllsch static const uint32_t rates4x[8] = {
157 1.27 jakllsch [0] = 4 * 12000000 / 1024,
158 1.27 jakllsch [1] = 4 * 12000000 / 128,
159 1.27 jakllsch [2] = 4 * 12000000 / 16,
160 1.27 jakllsch [3] = 4 * 12000000 / 2,
161 1.27 jakllsch [7] = 4 * 12000000,
162 1.1 tshiozak };
163 1.1 tshiozak
164 1.1 tshiozak static const struct usb_devno uchcom_devs[] = {
165 1.21 jakllsch { USB_VENDOR_QINHENG2, USB_PRODUCT_QINHENG2_CH341SER },
166 1.21 jakllsch { USB_VENDOR_QINHENG, USB_PRODUCT_QINHENG_CH340 },
167 1.21 jakllsch { USB_VENDOR_QINHENG, USB_PRODUCT_QINHENG_CH341_ASP },
168 1.1 tshiozak };
169 1.1 tshiozak #define uchcom_lookup(v, p) usb_lookup(uchcom_devs, v, p)
170 1.1 tshiozak
171 1.29 mrg static void uchcom_get_status(void *, int, u_char *, u_char *);
172 1.29 mrg static void uchcom_set(void *, int, int, int);
173 1.29 mrg static int uchcom_param(void *, int, struct termios *);
174 1.29 mrg static int uchcom_open(void *, int);
175 1.29 mrg static void uchcom_close(void *, int);
176 1.29 mrg static void uchcom_intr(struct usbd_xfer *, void *,
177 1.1 tshiozak usbd_status);
178 1.1 tshiozak
179 1.1 tshiozak static int set_config(struct uchcom_softc *);
180 1.14 skrll static int find_ifaces(struct uchcom_softc *, struct usbd_interface **);
181 1.1 tshiozak static int find_endpoints(struct uchcom_softc *,
182 1.1 tshiozak struct uchcom_endpoints *);
183 1.1 tshiozak static void close_intr_pipe(struct uchcom_softc *);
184 1.1 tshiozak
185 1.1 tshiozak
186 1.34 maxv static const struct ucom_methods uchcom_methods = {
187 1.1 tshiozak .ucom_get_status = uchcom_get_status,
188 1.1 tshiozak .ucom_set = uchcom_set,
189 1.1 tshiozak .ucom_param = uchcom_param,
190 1.1 tshiozak .ucom_open = uchcom_open,
191 1.1 tshiozak .ucom_close = uchcom_close,
192 1.1 tshiozak };
193 1.1 tshiozak
194 1.33 mrg static int uchcom_match(device_t, cfdata_t, void *);
195 1.33 mrg static void uchcom_attach(device_t, device_t, void *);
196 1.33 mrg static void uchcom_childdet(device_t, device_t);
197 1.33 mrg static int uchcom_detach(device_t, int);
198 1.2 dyoung
199 1.6 cube CFATTACH_DECL2_NEW(uchcom,
200 1.2 dyoung sizeof(struct uchcom_softc),
201 1.2 dyoung uchcom_match,
202 1.2 dyoung uchcom_attach,
203 1.2 dyoung uchcom_detach,
204 1.33 mrg NULL,
205 1.2 dyoung NULL,
206 1.2 dyoung uchcom_childdet);
207 1.1 tshiozak
208 1.1 tshiozak /* ----------------------------------------------------------------------
209 1.1 tshiozak * driver entry points
210 1.1 tshiozak */
211 1.1 tshiozak
212 1.33 mrg static int
213 1.10 dyoung uchcom_match(device_t parent, cfdata_t match, void *aux)
214 1.1 tshiozak {
215 1.10 dyoung struct usb_attach_arg *uaa = aux;
216 1.1 tshiozak
217 1.14 skrll return (uchcom_lookup(uaa->uaa_vendor, uaa->uaa_product) != NULL ?
218 1.1 tshiozak UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
219 1.1 tshiozak }
220 1.1 tshiozak
221 1.33 mrg static void
222 1.10 dyoung uchcom_attach(device_t parent, device_t self, void *aux)
223 1.1 tshiozak {
224 1.10 dyoung struct uchcom_softc *sc = device_private(self);
225 1.10 dyoung struct usb_attach_arg *uaa = aux;
226 1.14 skrll struct usbd_device *dev = uaa->uaa_device;
227 1.1 tshiozak char *devinfop;
228 1.1 tshiozak struct uchcom_endpoints endpoints;
229 1.14 skrll struct ucom_attach_args ucaa;
230 1.1 tshiozak
231 1.8 plunky aprint_naive("\n");
232 1.8 plunky aprint_normal("\n");
233 1.8 plunky
234 1.1 tshiozak devinfop = usbd_devinfo_alloc(dev, 0);
235 1.6 cube aprint_normal_dev(self, "%s\n", devinfop);
236 1.1 tshiozak usbd_devinfo_free(devinfop);
237 1.1 tshiozak
238 1.6 cube sc->sc_dev = self;
239 1.33 mrg sc->sc_udev = dev;
240 1.29 mrg sc->sc_dying = false;
241 1.1 tshiozak sc->sc_dtr = sc->sc_rts = -1;
242 1.1 tshiozak sc->sc_lsr = sc->sc_msr = 0;
243 1.1 tshiozak
244 1.1 tshiozak DPRINTF(("\n\nuchcom attach: sc=%p\n", sc));
245 1.1 tshiozak
246 1.1 tshiozak if (set_config(sc))
247 1.1 tshiozak goto failed;
248 1.1 tshiozak
249 1.1 tshiozak if (find_ifaces(sc, &sc->sc_iface))
250 1.1 tshiozak goto failed;
251 1.1 tshiozak
252 1.1 tshiozak if (find_endpoints(sc, &endpoints))
253 1.1 tshiozak goto failed;
254 1.1 tshiozak
255 1.1 tshiozak sc->sc_intr_endpoint = endpoints.ep_intr;
256 1.1 tshiozak sc->sc_intr_size = endpoints.ep_intr_size;
257 1.1 tshiozak
258 1.1 tshiozak /* setup ucom layer */
259 1.14 skrll ucaa.ucaa_portno = UCOM_UNK_PORTNO;
260 1.14 skrll ucaa.ucaa_bulkin = endpoints.ep_bulkin;
261 1.14 skrll ucaa.ucaa_bulkout = endpoints.ep_bulkout;
262 1.14 skrll ucaa.ucaa_ibufsize = UCHCOMIBUFSIZE;
263 1.14 skrll ucaa.ucaa_obufsize = UCHCOMOBUFSIZE;
264 1.14 skrll ucaa.ucaa_ibufsizepad = UCHCOMIBUFSIZE;
265 1.14 skrll ucaa.ucaa_opkthdrlen = 0;
266 1.14 skrll ucaa.ucaa_device = dev;
267 1.14 skrll ucaa.ucaa_iface = sc->sc_iface;
268 1.14 skrll ucaa.ucaa_methods = &uchcom_methods;
269 1.14 skrll ucaa.ucaa_arg = sc;
270 1.14 skrll ucaa.ucaa_info = NULL;
271 1.1 tshiozak
272 1.15 msaitoh usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev);
273 1.1 tshiozak
274 1.37 thorpej sc->sc_subdev = config_found(self, &ucaa, ucomprint,
275 1.37 thorpej CFARG_SUBMATCH, ucomsubmatch,
276 1.37 thorpej CFARG_EOL);
277 1.1 tshiozak
278 1.10 dyoung return;
279 1.1 tshiozak
280 1.1 tshiozak failed:
281 1.29 mrg sc->sc_dying = true;
282 1.10 dyoung return;
283 1.1 tshiozak }
284 1.1 tshiozak
285 1.33 mrg static void
286 1.2 dyoung uchcom_childdet(device_t self, device_t child)
287 1.2 dyoung {
288 1.2 dyoung struct uchcom_softc *sc = device_private(self);
289 1.2 dyoung
290 1.2 dyoung KASSERT(sc->sc_subdev == child);
291 1.2 dyoung sc->sc_subdev = NULL;
292 1.2 dyoung }
293 1.2 dyoung
294 1.33 mrg static int
295 1.10 dyoung uchcom_detach(device_t self, int flags)
296 1.1 tshiozak {
297 1.10 dyoung struct uchcom_softc *sc = device_private(self);
298 1.1 tshiozak int rv = 0;
299 1.1 tshiozak
300 1.1 tshiozak DPRINTF(("uchcom_detach: sc=%p flags=%d\n", sc, flags));
301 1.1 tshiozak
302 1.1 tshiozak close_intr_pipe(sc);
303 1.1 tshiozak
304 1.29 mrg sc->sc_dying = true;
305 1.29 mrg
306 1.33 mrg if (sc->sc_subdev != NULL) {
307 1.1 tshiozak rv = config_detach(sc->sc_subdev, flags);
308 1.33 mrg sc->sc_subdev = NULL;
309 1.33 mrg }
310 1.1 tshiozak
311 1.15 msaitoh usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev);
312 1.1 tshiozak
313 1.1 tshiozak return rv;
314 1.1 tshiozak }
315 1.1 tshiozak
316 1.1 tshiozak static int
317 1.1 tshiozak set_config(struct uchcom_softc *sc)
318 1.1 tshiozak {
319 1.1 tshiozak usbd_status err;
320 1.1 tshiozak
321 1.1 tshiozak err = usbd_set_config_index(sc->sc_udev, UCHCOM_CONFIG_INDEX, 1);
322 1.1 tshiozak if (err) {
323 1.6 cube aprint_error_dev(sc->sc_dev,
324 1.6 cube "failed to set configuration: %s\n", usbd_errstr(err));
325 1.1 tshiozak return -1;
326 1.1 tshiozak }
327 1.1 tshiozak
328 1.1 tshiozak return 0;
329 1.1 tshiozak }
330 1.1 tshiozak
331 1.1 tshiozak static int
332 1.14 skrll find_ifaces(struct uchcom_softc *sc, struct usbd_interface **riface)
333 1.1 tshiozak {
334 1.1 tshiozak usbd_status err;
335 1.1 tshiozak
336 1.1 tshiozak err = usbd_device2interface_handle(sc->sc_udev, UCHCOM_IFACE_INDEX,
337 1.1 tshiozak riface);
338 1.1 tshiozak if (err) {
339 1.6 cube aprint_error("\n%s: failed to get interface: %s\n",
340 1.10 dyoung device_xname(sc->sc_dev), usbd_errstr(err));
341 1.1 tshiozak return -1;
342 1.1 tshiozak }
343 1.1 tshiozak
344 1.1 tshiozak return 0;
345 1.1 tshiozak }
346 1.1 tshiozak
347 1.1 tshiozak static int
348 1.1 tshiozak find_endpoints(struct uchcom_softc *sc, struct uchcom_endpoints *endpoints)
349 1.1 tshiozak {
350 1.1 tshiozak int i, bin=-1, bout=-1, intr=-1, isize=0;
351 1.1 tshiozak usb_interface_descriptor_t *id;
352 1.1 tshiozak usb_endpoint_descriptor_t *ed;
353 1.1 tshiozak
354 1.1 tshiozak id = usbd_get_interface_descriptor(sc->sc_iface);
355 1.1 tshiozak
356 1.1 tshiozak for (i = 0; i < id->bNumEndpoints; i++) {
357 1.1 tshiozak ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
358 1.1 tshiozak if (ed == NULL) {
359 1.6 cube aprint_error_dev(sc->sc_dev,
360 1.6 cube "no endpoint descriptor for %d\n", i);
361 1.1 tshiozak return -1;
362 1.1 tshiozak }
363 1.1 tshiozak
364 1.1 tshiozak if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
365 1.1 tshiozak UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
366 1.1 tshiozak intr = ed->bEndpointAddress;
367 1.1 tshiozak isize = UGETW(ed->wMaxPacketSize);
368 1.1 tshiozak } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
369 1.1 tshiozak UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
370 1.1 tshiozak bin = ed->bEndpointAddress;
371 1.1 tshiozak } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
372 1.1 tshiozak UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
373 1.1 tshiozak bout = ed->bEndpointAddress;
374 1.1 tshiozak }
375 1.1 tshiozak }
376 1.1 tshiozak
377 1.1 tshiozak if (intr == -1 || bin == -1 || bout == -1) {
378 1.1 tshiozak if (intr == -1) {
379 1.6 cube aprint_error_dev(sc->sc_dev,
380 1.6 cube "no interrupt end point\n");
381 1.1 tshiozak }
382 1.1 tshiozak if (bin == -1) {
383 1.6 cube aprint_error_dev(sc->sc_dev,
384 1.6 cube "no data bulk in end point\n");
385 1.1 tshiozak }
386 1.1 tshiozak if (bout == -1) {
387 1.6 cube aprint_error_dev(sc->sc_dev,
388 1.6 cube "no data bulk out end point\n");
389 1.1 tshiozak }
390 1.1 tshiozak return -1;
391 1.1 tshiozak }
392 1.1 tshiozak if (isize < UCHCOM_INTR_LEAST) {
393 1.6 cube aprint_error_dev(sc->sc_dev, "intr pipe is too short\n");
394 1.1 tshiozak return -1;
395 1.1 tshiozak }
396 1.1 tshiozak
397 1.1 tshiozak DPRINTF(("%s: bulkin=%d, bulkout=%d, intr=%d, isize=%d\n",
398 1.10 dyoung device_xname(sc->sc_dev), bin, bout, intr, isize));
399 1.1 tshiozak
400 1.1 tshiozak endpoints->ep_intr = intr;
401 1.1 tshiozak endpoints->ep_intr_size = isize;
402 1.1 tshiozak endpoints->ep_bulkin = bin;
403 1.1 tshiozak endpoints->ep_bulkout = bout;
404 1.1 tshiozak
405 1.1 tshiozak return 0;
406 1.1 tshiozak }
407 1.1 tshiozak
408 1.1 tshiozak
409 1.1 tshiozak /* ----------------------------------------------------------------------
410 1.1 tshiozak * low level i/o
411 1.1 tshiozak */
412 1.1 tshiozak
413 1.1 tshiozak static __inline usbd_status
414 1.1 tshiozak generic_control_out(struct uchcom_softc *sc, uint8_t reqno,
415 1.1 tshiozak uint16_t value, uint16_t index)
416 1.1 tshiozak {
417 1.1 tshiozak usb_device_request_t req;
418 1.1 tshiozak
419 1.1 tshiozak req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
420 1.1 tshiozak req.bRequest = reqno;
421 1.1 tshiozak USETW(req.wValue, value);
422 1.1 tshiozak USETW(req.wIndex, index);
423 1.1 tshiozak USETW(req.wLength, 0);
424 1.1 tshiozak
425 1.1 tshiozak return usbd_do_request(sc->sc_udev, &req, 0);
426 1.1 tshiozak }
427 1.1 tshiozak
428 1.1 tshiozak static __inline usbd_status
429 1.1 tshiozak generic_control_in(struct uchcom_softc *sc, uint8_t reqno,
430 1.1 tshiozak uint16_t value, uint16_t index, void *buf, int buflen,
431 1.1 tshiozak int *actlen)
432 1.1 tshiozak {
433 1.1 tshiozak usb_device_request_t req;
434 1.1 tshiozak
435 1.1 tshiozak req.bmRequestType = UT_READ_VENDOR_DEVICE;
436 1.1 tshiozak req.bRequest = reqno;
437 1.1 tshiozak USETW(req.wValue, value);
438 1.1 tshiozak USETW(req.wIndex, index);
439 1.1 tshiozak USETW(req.wLength, (uint16_t)buflen);
440 1.1 tshiozak
441 1.1 tshiozak return usbd_do_request_flags(sc->sc_udev, &req, buf,
442 1.1 tshiozak USBD_SHORT_XFER_OK, actlen,
443 1.1 tshiozak USBD_DEFAULT_TIMEOUT);
444 1.1 tshiozak }
445 1.1 tshiozak
446 1.1 tshiozak static __inline usbd_status
447 1.1 tshiozak write_reg(struct uchcom_softc *sc,
448 1.1 tshiozak uint8_t reg1, uint8_t val1, uint8_t reg2, uint8_t val2)
449 1.1 tshiozak {
450 1.36 christos DPRINTF(("%s: write reg 0x%02X<-0x%02X, 0x%02X<-0x%02X\n",
451 1.18 jakllsch device_xname(sc->sc_dev),
452 1.1 tshiozak (unsigned)reg1, (unsigned)val1,
453 1.1 tshiozak (unsigned)reg2, (unsigned)val2));
454 1.1 tshiozak return generic_control_out(
455 1.1 tshiozak sc, UCHCOM_REQ_WRITE_REG,
456 1.1 tshiozak reg1|((uint16_t)reg2<<8), val1|((uint16_t)val2<<8));
457 1.1 tshiozak }
458 1.1 tshiozak
459 1.1 tshiozak static __inline usbd_status
460 1.1 tshiozak read_reg(struct uchcom_softc *sc,
461 1.1 tshiozak uint8_t reg1, uint8_t *rval1, uint8_t reg2, uint8_t *rval2)
462 1.1 tshiozak {
463 1.1 tshiozak uint8_t buf[UCHCOM_INPUT_BUF_SIZE];
464 1.1 tshiozak usbd_status err;
465 1.1 tshiozak int actin;
466 1.1 tshiozak
467 1.1 tshiozak err = generic_control_in(
468 1.1 tshiozak sc, UCHCOM_REQ_READ_REG,
469 1.14 skrll reg1|((uint16_t)reg2<<8), 0, buf, sizeof(buf), &actin);
470 1.1 tshiozak if (err)
471 1.1 tshiozak return err;
472 1.1 tshiozak
473 1.36 christos DPRINTF(("%s: read reg 0x%02X->0x%02X, 0x%02X->0x%02X\n",
474 1.18 jakllsch device_xname(sc->sc_dev),
475 1.1 tshiozak (unsigned)reg1, (unsigned)buf[0],
476 1.1 tshiozak (unsigned)reg2, (unsigned)buf[1]));
477 1.1 tshiozak
478 1.1 tshiozak if (rval1) *rval1 = buf[0];
479 1.1 tshiozak if (rval2) *rval2 = buf[1];
480 1.1 tshiozak
481 1.1 tshiozak return USBD_NORMAL_COMPLETION;
482 1.1 tshiozak }
483 1.1 tshiozak
484 1.1 tshiozak static __inline usbd_status
485 1.1 tshiozak get_version(struct uchcom_softc *sc, uint8_t *rver)
486 1.1 tshiozak {
487 1.1 tshiozak uint8_t buf[UCHCOM_INPUT_BUF_SIZE];
488 1.1 tshiozak usbd_status err;
489 1.1 tshiozak int actin;
490 1.1 tshiozak
491 1.1 tshiozak err = generic_control_in(
492 1.14 skrll sc, UCHCOM_REQ_GET_VERSION, 0, 0, buf, sizeof(buf), &actin);
493 1.1 tshiozak if (err)
494 1.1 tshiozak return err;
495 1.1 tshiozak
496 1.1 tshiozak if (rver) *rver = buf[0];
497 1.1 tshiozak
498 1.1 tshiozak return USBD_NORMAL_COMPLETION;
499 1.1 tshiozak }
500 1.1 tshiozak
501 1.1 tshiozak static __inline usbd_status
502 1.1 tshiozak get_status(struct uchcom_softc *sc, uint8_t *rval)
503 1.1 tshiozak {
504 1.1 tshiozak return read_reg(sc, UCHCOM_REG_STAT1, rval, UCHCOM_REG_STAT2, NULL);
505 1.1 tshiozak }
506 1.1 tshiozak
507 1.1 tshiozak static __inline usbd_status
508 1.1 tshiozak set_dtrrts_10(struct uchcom_softc *sc, uint8_t val)
509 1.1 tshiozak {
510 1.1 tshiozak return write_reg(sc, UCHCOM_REG_STAT1, val, UCHCOM_REG_STAT1, val);
511 1.1 tshiozak }
512 1.1 tshiozak
513 1.1 tshiozak static __inline usbd_status
514 1.1 tshiozak set_dtrrts_20(struct uchcom_softc *sc, uint8_t val)
515 1.1 tshiozak {
516 1.1 tshiozak return generic_control_out(sc, UCHCOM_REQ_SET_DTRRTS, val, 0);
517 1.1 tshiozak }
518 1.1 tshiozak
519 1.1 tshiozak
520 1.1 tshiozak /* ----------------------------------------------------------------------
521 1.1 tshiozak * middle layer
522 1.1 tshiozak */
523 1.1 tshiozak
524 1.1 tshiozak static int
525 1.1 tshiozak update_version(struct uchcom_softc *sc)
526 1.1 tshiozak {
527 1.1 tshiozak usbd_status err;
528 1.1 tshiozak
529 1.1 tshiozak err = get_version(sc, &sc->sc_version);
530 1.1 tshiozak if (err) {
531 1.22 jakllsch device_printf(sc->sc_dev, "cannot get version: %s\n",
532 1.6 cube usbd_errstr(err));
533 1.1 tshiozak return EIO;
534 1.1 tshiozak }
535 1.17 bouyer DPRINTF(("%s: update_version %d\n", device_xname(sc->sc_dev), sc->sc_version));
536 1.1 tshiozak
537 1.1 tshiozak return 0;
538 1.1 tshiozak }
539 1.1 tshiozak
540 1.1 tshiozak static void
541 1.1 tshiozak convert_status(struct uchcom_softc *sc, uint8_t cur)
542 1.1 tshiozak {
543 1.1 tshiozak sc->sc_dtr = !(cur & UCHCOM_DTR_MASK);
544 1.1 tshiozak sc->sc_rts = !(cur & UCHCOM_RTS_MASK);
545 1.1 tshiozak
546 1.1 tshiozak cur = ~cur & 0x0F;
547 1.1 tshiozak sc->sc_msr = (cur << 4) | ((sc->sc_msr >> 4) ^ cur);
548 1.1 tshiozak }
549 1.1 tshiozak
550 1.1 tshiozak static int
551 1.1 tshiozak update_status(struct uchcom_softc *sc)
552 1.1 tshiozak {
553 1.1 tshiozak usbd_status err;
554 1.1 tshiozak uint8_t cur;
555 1.1 tshiozak
556 1.1 tshiozak err = get_status(sc, &cur);
557 1.1 tshiozak if (err) {
558 1.22 jakllsch device_printf(sc->sc_dev,
559 1.6 cube "cannot update status: %s\n", usbd_errstr(err));
560 1.1 tshiozak return EIO;
561 1.1 tshiozak }
562 1.1 tshiozak convert_status(sc, cur);
563 1.1 tshiozak
564 1.1 tshiozak return 0;
565 1.1 tshiozak }
566 1.1 tshiozak
567 1.1 tshiozak
568 1.1 tshiozak static int
569 1.1 tshiozak set_dtrrts(struct uchcom_softc *sc, int dtr, int rts)
570 1.1 tshiozak {
571 1.1 tshiozak usbd_status err;
572 1.1 tshiozak uint8_t val = 0;
573 1.1 tshiozak
574 1.1 tshiozak if (dtr) val |= UCHCOM_DTR_MASK;
575 1.1 tshiozak if (rts) val |= UCHCOM_RTS_MASK;
576 1.1 tshiozak
577 1.1 tshiozak if (sc->sc_version < UCHCOM_VER_20)
578 1.1 tshiozak err = set_dtrrts_10(sc, ~val);
579 1.1 tshiozak else
580 1.1 tshiozak err = set_dtrrts_20(sc, ~val);
581 1.1 tshiozak
582 1.1 tshiozak if (err) {
583 1.22 jakllsch device_printf(sc->sc_dev, "cannot set DTR/RTS: %s\n",
584 1.6 cube usbd_errstr(err));
585 1.1 tshiozak return EIO;
586 1.1 tshiozak }
587 1.1 tshiozak
588 1.1 tshiozak return 0;
589 1.1 tshiozak }
590 1.1 tshiozak
591 1.1 tshiozak static int
592 1.1 tshiozak set_break(struct uchcom_softc *sc, int onoff)
593 1.1 tshiozak {
594 1.1 tshiozak usbd_status err;
595 1.26 jakllsch uint8_t brk, lcr;
596 1.1 tshiozak
597 1.26 jakllsch err = read_reg(sc, UCHCOM_REG_BREAK, &brk, UCHCOM_REG_LCR, &lcr);
598 1.1 tshiozak if (err)
599 1.1 tshiozak return EIO;
600 1.1 tshiozak if (onoff) {
601 1.1 tshiozak /* on - clear bits */
602 1.26 jakllsch brk &= ~UCHCOM_BREAK_MASK;
603 1.26 jakllsch lcr &= ~UCHCOM_LCR_TXE;
604 1.1 tshiozak } else {
605 1.1 tshiozak /* off - set bits */
606 1.26 jakllsch brk |= UCHCOM_BREAK_MASK;
607 1.26 jakllsch lcr |= UCHCOM_LCR_TXE;
608 1.1 tshiozak }
609 1.26 jakllsch err = write_reg(sc, UCHCOM_REG_BREAK, brk, UCHCOM_REG_LCR, lcr);
610 1.1 tshiozak if (err)
611 1.1 tshiozak return EIO;
612 1.1 tshiozak
613 1.1 tshiozak return 0;
614 1.1 tshiozak }
615 1.1 tshiozak
616 1.1 tshiozak static int
617 1.1 tshiozak calc_divider_settings(struct uchcom_divider *dp, uint32_t rate)
618 1.1 tshiozak {
619 1.38 nisimura /*
620 1.38 nisimura * combined with rates4x[] defined above, this routine generates,
621 1.38 nisimura * 1200: prescale = 1/0x1, divisor = 178/0xb2
622 1.38 nisimura * 2400: prescale = 1/0x1, divisor = 217/0xd9
623 1.38 nisimura * 4800: prescale = 2/0x2, divisor = 100/0x64
624 1.38 nisimura * 9600: prescale = 2/0x2, divisor = 178/0xb2
625 1.38 nisimura * 19200: prescale = 2/0x2, divisor = 217/0xd9
626 1.38 nisimura * 38400: prescale = 3/0x3, divisor = 100/0x64
627 1.38 nisimura * 57600: prescale = 2/0x2, divisor = 243/0xf3
628 1.38 nisimura * 115200: prescale = 3/0x3, divisor = 204/0xcc
629 1.38 nisimura * 921600: prescale = 7/0x7, divisor = 243/0xf3
630 1.38 nisimura * 500000: prescale = 3/0x3, divisor = 244/0xf4
631 1.38 nisimura * 1000000: prescale = 3/0x3, divisor = 250/0xfa
632 1.38 nisimura * 1500000: prescale = 3/0x3, divisor = 252/0xfc
633 1.38 nisimura * 2000000: prescale = 3/0x3, divisor = 253/0xfd
634 1.38 nisimura * 2500000: unsupported
635 1.38 nisimura * 3000000: prescale = 3/0x3, divisor = 254/0xfe
636 1.38 nisimura */
637 1.27 jakllsch size_t i;
638 1.27 jakllsch uint32_t best, div, pre;
639 1.27 jakllsch const uint32_t rate4x = rate * 4U;
640 1.27 jakllsch
641 1.27 jakllsch if (rate == 0 || rate > 3000000)
642 1.27 jakllsch return -1;
643 1.27 jakllsch
644 1.27 jakllsch pre = __arraycount(rates4x);
645 1.27 jakllsch best = UINT32_MAX;
646 1.27 jakllsch
647 1.27 jakllsch for (i = 0; i < __arraycount(rates4x); i++) {
648 1.27 jakllsch uint32_t score, try;
649 1.27 jakllsch try = rates4x[i] * 2 / rate4x;
650 1.27 jakllsch try = (try / 2) + (try & 1);
651 1.27 jakllsch if (try < 2)
652 1.27 jakllsch continue;
653 1.27 jakllsch if (try > 255)
654 1.27 jakllsch try = 255;
655 1.27 jakllsch score = abs((int)rate4x - rates4x[i] / try);
656 1.27 jakllsch if (score < best) {
657 1.27 jakllsch best = score;
658 1.27 jakllsch pre = i;
659 1.27 jakllsch div = try;
660 1.1 tshiozak }
661 1.1 tshiozak }
662 1.1 tshiozak
663 1.27 jakllsch if (pre >= __arraycount(rates4x))
664 1.27 jakllsch return -1;
665 1.27 jakllsch if ((rates4x[pre] / div / 4) < (rate * 99 / 100))
666 1.27 jakllsch return -1;
667 1.27 jakllsch if ((rates4x[pre] / div / 4) > (rate * 101 / 100))
668 1.27 jakllsch return -1;
669 1.27 jakllsch
670 1.27 jakllsch dp->dv_prescaler = pre;
671 1.38 nisimura dp->dv_div = 256 - div;
672 1.1 tshiozak
673 1.1 tshiozak return 0;
674 1.1 tshiozak }
675 1.1 tshiozak
676 1.1 tshiozak static int
677 1.1 tshiozak set_dte_rate(struct uchcom_softc *sc, uint32_t rate)
678 1.1 tshiozak {
679 1.1 tshiozak usbd_status err;
680 1.1 tshiozak struct uchcom_divider dv;
681 1.1 tshiozak
682 1.1 tshiozak if (calc_divider_settings(&dv, rate))
683 1.1 tshiozak return EINVAL;
684 1.1 tshiozak
685 1.1 tshiozak if ((err = write_reg(sc,
686 1.19 jakllsch UCHCOM_REG_BPS_PRE,
687 1.19 jakllsch dv.dv_prescaler | UCHCOM_BPS_PRE_IMM,
688 1.23 jakllsch UCHCOM_REG_BPS_DIV, dv.dv_div))) {
689 1.22 jakllsch device_printf(sc->sc_dev, "cannot set DTE rate: %s\n",
690 1.6 cube usbd_errstr(err));
691 1.1 tshiozak return EIO;
692 1.1 tshiozak }
693 1.1 tshiozak
694 1.1 tshiozak return 0;
695 1.1 tshiozak }
696 1.1 tshiozak
697 1.1 tshiozak static int
698 1.1 tshiozak set_line_control(struct uchcom_softc *sc, tcflag_t cflag)
699 1.1 tshiozak {
700 1.26 jakllsch usbd_status err;
701 1.26 jakllsch uint8_t lcr = 0, lcr2 = 0;
702 1.1 tshiozak
703 1.26 jakllsch err = read_reg(sc, UCHCOM_REG_LCR, &lcr, UCHCOM_REG_LCR2, &lcr2);
704 1.26 jakllsch if (err) {
705 1.26 jakllsch device_printf(sc->sc_dev, "cannot get LCR: %s\n",
706 1.26 jakllsch usbd_errstr(err));
707 1.26 jakllsch return EIO;
708 1.26 jakllsch }
709 1.26 jakllsch
710 1.26 jakllsch lcr = UCHCOM_LCR_RXE | UCHCOM_LCR_TXE;
711 1.1 tshiozak
712 1.26 jakllsch switch (ISSET(cflag, CSIZE)) {
713 1.26 jakllsch case CS5:
714 1.26 jakllsch lcr |= UCHCOM_LCR_CS5;
715 1.26 jakllsch break;
716 1.26 jakllsch case CS6:
717 1.26 jakllsch lcr |= UCHCOM_LCR_CS6;
718 1.26 jakllsch break;
719 1.26 jakllsch case CS7:
720 1.26 jakllsch lcr |= UCHCOM_LCR_CS7;
721 1.26 jakllsch break;
722 1.26 jakllsch case CS8:
723 1.26 jakllsch lcr |= UCHCOM_LCR_CS8;
724 1.26 jakllsch break;
725 1.26 jakllsch }
726 1.1 tshiozak
727 1.26 jakllsch if (ISSET(cflag, PARENB)) {
728 1.26 jakllsch lcr |= UCHCOM_LCR_PARENB;
729 1.26 jakllsch if (!ISSET(cflag, PARODD))
730 1.26 jakllsch lcr |= UCHCOM_LCR_PAREVEN;
731 1.26 jakllsch }
732 1.1 tshiozak
733 1.26 jakllsch if (ISSET(cflag, CSTOPB)) {
734 1.26 jakllsch lcr |= UCHCOM_LCR_STOPB;
735 1.26 jakllsch }
736 1.1 tshiozak
737 1.26 jakllsch err = write_reg(sc, UCHCOM_REG_LCR, lcr, UCHCOM_REG_LCR2, lcr2);
738 1.26 jakllsch if (err) {
739 1.26 jakllsch device_printf(sc->sc_dev, "cannot set LCR: %s\n",
740 1.26 jakllsch usbd_errstr(err));
741 1.26 jakllsch return EIO;
742 1.1 tshiozak }
743 1.1 tshiozak
744 1.1 tshiozak return 0;
745 1.1 tshiozak }
746 1.1 tshiozak
747 1.1 tshiozak static int
748 1.1 tshiozak clear_chip(struct uchcom_softc *sc)
749 1.1 tshiozak {
750 1.1 tshiozak usbd_status err;
751 1.1 tshiozak
752 1.10 dyoung DPRINTF(("%s: clear\n", device_xname(sc->sc_dev)));
753 1.1 tshiozak err = generic_control_out(sc, UCHCOM_REQ_RESET, 0, 0);
754 1.1 tshiozak if (err) {
755 1.22 jakllsch device_printf(sc->sc_dev, "cannot clear: %s\n",
756 1.6 cube usbd_errstr(err));
757 1.1 tshiozak return EIO;
758 1.1 tshiozak }
759 1.38 nisimura /*
760 1.38 nisimura * this REQ_RESET call ends up with
761 1.38 nisimura * LCR=0xc0 (8N1)
762 1.38 nisimura * PRE=0x02, DIV=0xb2 (19200)
763 1.38 nisimura */
764 1.1 tshiozak return 0;
765 1.1 tshiozak }
766 1.1 tshiozak
767 1.1 tshiozak static int
768 1.1 tshiozak setup_comm(struct uchcom_softc *sc)
769 1.1 tshiozak {
770 1.1 tshiozak int ret;
771 1.1 tshiozak
772 1.1 tshiozak ret = update_version(sc);
773 1.1 tshiozak if (ret)
774 1.1 tshiozak return ret;
775 1.1 tshiozak
776 1.1 tshiozak ret = clear_chip(sc);
777 1.1 tshiozak if (ret)
778 1.1 tshiozak return ret;
779 1.1 tshiozak
780 1.1 tshiozak ret = set_dte_rate(sc, TTYDEF_SPEED);
781 1.1 tshiozak if (ret)
782 1.1 tshiozak return ret;
783 1.1 tshiozak
784 1.1 tshiozak ret = set_line_control(sc, CS8);
785 1.1 tshiozak if (ret)
786 1.1 tshiozak return ret;
787 1.1 tshiozak
788 1.1 tshiozak ret = update_status(sc);
789 1.1 tshiozak if (ret)
790 1.1 tshiozak return ret;
791 1.1 tshiozak
792 1.1 tshiozak sc->sc_dtr = sc->sc_rts = 1;
793 1.1 tshiozak ret = set_dtrrts(sc, sc->sc_dtr, sc->sc_rts);
794 1.1 tshiozak if (ret)
795 1.1 tshiozak return ret;
796 1.1 tshiozak
797 1.1 tshiozak return 0;
798 1.1 tshiozak }
799 1.1 tshiozak
800 1.1 tshiozak static int
801 1.1 tshiozak setup_intr_pipe(struct uchcom_softc *sc)
802 1.1 tshiozak {
803 1.1 tshiozak usbd_status err;
804 1.1 tshiozak
805 1.1 tshiozak if (sc->sc_intr_endpoint != -1 && sc->sc_intr_pipe == NULL) {
806 1.14 skrll sc->sc_intr_buf = kmem_alloc(sc->sc_intr_size, KM_SLEEP);
807 1.1 tshiozak err = usbd_open_pipe_intr(sc->sc_iface,
808 1.1 tshiozak sc->sc_intr_endpoint,
809 1.1 tshiozak USBD_SHORT_XFER_OK,
810 1.1 tshiozak &sc->sc_intr_pipe, sc,
811 1.1 tshiozak sc->sc_intr_buf,
812 1.1 tshiozak sc->sc_intr_size,
813 1.1 tshiozak uchcom_intr, USBD_DEFAULT_INTERVAL);
814 1.1 tshiozak if (err) {
815 1.22 jakllsch device_printf(sc->sc_dev,
816 1.6 cube "cannot open interrupt pipe: %s\n",
817 1.6 cube usbd_errstr(err));
818 1.1 tshiozak return EIO;
819 1.1 tshiozak }
820 1.1 tshiozak }
821 1.1 tshiozak return 0;
822 1.1 tshiozak }
823 1.1 tshiozak
824 1.1 tshiozak static void
825 1.1 tshiozak close_intr_pipe(struct uchcom_softc *sc)
826 1.1 tshiozak {
827 1.1 tshiozak
828 1.1 tshiozak if (sc->sc_intr_pipe != NULL) {
829 1.32 mrg usbd_abort_pipe(sc->sc_intr_pipe);
830 1.32 mrg usbd_close_pipe(sc->sc_intr_pipe);
831 1.32 mrg sc->sc_intr_pipe = NULL;
832 1.32 mrg }
833 1.32 mrg if (sc->sc_intr_buf != NULL) {
834 1.14 skrll kmem_free(sc->sc_intr_buf, sc->sc_intr_size);
835 1.32 mrg sc->sc_intr_buf = NULL;
836 1.1 tshiozak }
837 1.1 tshiozak }
838 1.1 tshiozak
839 1.1 tshiozak
840 1.1 tshiozak /* ----------------------------------------------------------------------
841 1.1 tshiozak * methods for ucom
842 1.1 tshiozak */
843 1.29 mrg static void
844 1.1 tshiozak uchcom_get_status(void *arg, int portno, u_char *rlsr, u_char *rmsr)
845 1.1 tshiozak {
846 1.1 tshiozak struct uchcom_softc *sc = arg;
847 1.1 tshiozak
848 1.1 tshiozak if (sc->sc_dying)
849 1.1 tshiozak return;
850 1.1 tshiozak
851 1.1 tshiozak *rlsr = sc->sc_lsr;
852 1.1 tshiozak *rmsr = sc->sc_msr;
853 1.1 tshiozak }
854 1.1 tshiozak
855 1.29 mrg static void
856 1.1 tshiozak uchcom_set(void *arg, int portno, int reg, int onoff)
857 1.1 tshiozak {
858 1.1 tshiozak struct uchcom_softc *sc = arg;
859 1.1 tshiozak
860 1.1 tshiozak if (sc->sc_dying)
861 1.1 tshiozak return;
862 1.1 tshiozak
863 1.1 tshiozak switch (reg) {
864 1.1 tshiozak case UCOM_SET_DTR:
865 1.1 tshiozak sc->sc_dtr = !!onoff;
866 1.1 tshiozak set_dtrrts(sc, sc->sc_dtr, sc->sc_rts);
867 1.1 tshiozak break;
868 1.1 tshiozak case UCOM_SET_RTS:
869 1.1 tshiozak sc->sc_rts = !!onoff;
870 1.1 tshiozak set_dtrrts(sc, sc->sc_dtr, sc->sc_rts);
871 1.1 tshiozak break;
872 1.1 tshiozak case UCOM_SET_BREAK:
873 1.1 tshiozak set_break(sc, onoff);
874 1.1 tshiozak break;
875 1.1 tshiozak }
876 1.1 tshiozak }
877 1.1 tshiozak
878 1.29 mrg static int
879 1.1 tshiozak uchcom_param(void *arg, int portno, struct termios *t)
880 1.1 tshiozak {
881 1.1 tshiozak struct uchcom_softc *sc = arg;
882 1.1 tshiozak int ret;
883 1.1 tshiozak
884 1.1 tshiozak if (sc->sc_dying)
885 1.33 mrg return EIO;
886 1.1 tshiozak
887 1.1 tshiozak ret = set_line_control(sc, t->c_cflag);
888 1.1 tshiozak if (ret)
889 1.1 tshiozak return ret;
890 1.1 tshiozak
891 1.1 tshiozak ret = set_dte_rate(sc, t->c_ospeed);
892 1.1 tshiozak if (ret)
893 1.1 tshiozak return ret;
894 1.1 tshiozak
895 1.1 tshiozak return 0;
896 1.1 tshiozak }
897 1.1 tshiozak
898 1.29 mrg static int
899 1.1 tshiozak uchcom_open(void *arg, int portno)
900 1.1 tshiozak {
901 1.1 tshiozak int ret;
902 1.1 tshiozak struct uchcom_softc *sc = arg;
903 1.1 tshiozak
904 1.32 mrg if (sc->sc_dying)
905 1.1 tshiozak return EIO;
906 1.29 mrg
907 1.32 mrg ret = setup_intr_pipe(sc);
908 1.32 mrg if (ret)
909 1.32 mrg return ret;
910 1.1 tshiozak
911 1.32 mrg ret = setup_comm(sc);
912 1.32 mrg if (ret)
913 1.32 mrg return ret;
914 1.1 tshiozak
915 1.32 mrg return 0;
916 1.1 tshiozak }
917 1.1 tshiozak
918 1.29 mrg static void
919 1.1 tshiozak uchcom_close(void *arg, int portno)
920 1.1 tshiozak {
921 1.1 tshiozak struct uchcom_softc *sc = arg;
922 1.1 tshiozak
923 1.32 mrg if (sc->sc_dying)
924 1.32 mrg return;
925 1.32 mrg
926 1.32 mrg close_intr_pipe(sc);
927 1.1 tshiozak }
928 1.1 tshiozak
929 1.1 tshiozak
930 1.1 tshiozak /* ----------------------------------------------------------------------
931 1.1 tshiozak * callback when the modem status is changed.
932 1.1 tshiozak */
933 1.29 mrg static void
934 1.14 skrll uchcom_intr(struct usbd_xfer *xfer, void * priv,
935 1.1 tshiozak usbd_status status)
936 1.1 tshiozak {
937 1.1 tshiozak struct uchcom_softc *sc = priv;
938 1.1 tshiozak u_char *buf = sc->sc_intr_buf;
939 1.1 tshiozak
940 1.1 tshiozak if (sc->sc_dying)
941 1.1 tshiozak return;
942 1.1 tshiozak
943 1.1 tshiozak if (status != USBD_NORMAL_COMPLETION) {
944 1.1 tshiozak if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
945 1.1 tshiozak return;
946 1.1 tshiozak
947 1.1 tshiozak DPRINTF(("%s: abnormal status: %s\n",
948 1.10 dyoung device_xname(sc->sc_dev), usbd_errstr(status)));
949 1.1 tshiozak usbd_clear_endpoint_stall_async(sc->sc_intr_pipe);
950 1.1 tshiozak return;
951 1.1 tshiozak }
952 1.36 christos DPRINTF(("%s: intr: 0x%02X 0x%02X 0x%02X 0x%02X "
953 1.36 christos "0x%02X 0x%02X 0x%02X 0x%02X\n",
954 1.10 dyoung device_xname(sc->sc_dev),
955 1.1 tshiozak (unsigned)buf[0], (unsigned)buf[1],
956 1.1 tshiozak (unsigned)buf[2], (unsigned)buf[3],
957 1.1 tshiozak (unsigned)buf[4], (unsigned)buf[5],
958 1.1 tshiozak (unsigned)buf[6], (unsigned)buf[7]));
959 1.1 tshiozak
960 1.1 tshiozak convert_status(sc, buf[UCHCOM_INTR_STAT1]);
961 1.6 cube ucom_status_change(device_private(sc->sc_subdev));
962 1.1 tshiozak }
963