ucom.c revision 1.34 1 1.34 augustss /* $NetBSD: ucom.c,v 1.34 2001/01/23 21:22:57 augustss Exp $ */
2 1.1 augustss
3 1.1 augustss /*
4 1.22 augustss * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
5 1.1 augustss * All rights reserved.
6 1.1 augustss *
7 1.1 augustss * This code is derived from software contributed to The NetBSD Foundation
8 1.23 augustss * by Lennart Augustsson (lennart (at) augustsson.net) at
9 1.1 augustss * Carlstedt Research & Technology.
10 1.1 augustss *
11 1.1 augustss * Redistribution and use in source and binary forms, with or without
12 1.1 augustss * modification, are permitted provided that the following conditions
13 1.1 augustss * are met:
14 1.1 augustss * 1. Redistributions of source code must retain the above copyright
15 1.1 augustss * notice, this list of conditions and the following disclaimer.
16 1.1 augustss * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 augustss * notice, this list of conditions and the following disclaimer in the
18 1.1 augustss * documentation and/or other materials provided with the distribution.
19 1.1 augustss * 3. All advertising materials mentioning features or use of this software
20 1.1 augustss * must display the following acknowledgement:
21 1.1 augustss * This product includes software developed by the NetBSD
22 1.1 augustss * Foundation, Inc. and its contributors.
23 1.1 augustss * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 augustss * contributors may be used to endorse or promote products derived
25 1.1 augustss * from this software without specific prior written permission.
26 1.1 augustss *
27 1.1 augustss * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 augustss * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 augustss * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 augustss * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 augustss * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 augustss * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 augustss * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 augustss * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 augustss * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 augustss * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 augustss * POSSIBILITY OF SUCH DAMAGE.
38 1.1 augustss */
39 1.22 augustss /*
40 1.22 augustss * This code is very heavily based on the 16550 driver, com.c.
41 1.22 augustss */
42 1.1 augustss
43 1.1 augustss #include <sys/param.h>
44 1.1 augustss #include <sys/systm.h>
45 1.1 augustss #include <sys/kernel.h>
46 1.1 augustss #include <sys/ioctl.h>
47 1.3 augustss #include <sys/conf.h>
48 1.1 augustss #include <sys/tty.h>
49 1.1 augustss #include <sys/file.h>
50 1.1 augustss #include <sys/select.h>
51 1.1 augustss #include <sys/proc.h>
52 1.1 augustss #include <sys/vnode.h>
53 1.12 augustss #include <sys/device.h>
54 1.1 augustss #include <sys/poll.h>
55 1.31 explorer #if defined(__NetBSD__)
56 1.31 explorer #include "rnd.h"
57 1.31 explorer #if NRND > 0
58 1.31 explorer #include <sys/rnd.h>
59 1.31 explorer #endif
60 1.31 explorer #endif
61 1.1 augustss
62 1.1 augustss #include <dev/usb/usb.h>
63 1.1 augustss
64 1.1 augustss #include <dev/usb/usbdi.h>
65 1.1 augustss #include <dev/usb/usbdi_util.h>
66 1.1 augustss #include <dev/usb/usbdevs.h>
67 1.1 augustss #include <dev/usb/usb_quirks.h>
68 1.1 augustss
69 1.12 augustss #include <dev/usb/ucomvar.h>
70 1.12 augustss
71 1.13 augustss #include "ucom.h"
72 1.13 augustss
73 1.13 augustss #if NUCOM > 0
74 1.13 augustss
75 1.12 augustss #ifdef UCOM_DEBUG
76 1.12 augustss #define DPRINTFN(n, x) if (ucomdebug > (n)) logprintf x
77 1.12 augustss int ucomdebug = 0;
78 1.1 augustss #else
79 1.12 augustss #define DPRINTFN(n, x)
80 1.1 augustss #endif
81 1.12 augustss #define DPRINTF(x) DPRINTFN(0, x)
82 1.12 augustss
83 1.12 augustss #define UCOMUNIT_MASK 0x3ffff
84 1.12 augustss #define UCOMDIALOUT_MASK 0x80000
85 1.12 augustss #define UCOMCALLUNIT_MASK 0x40000
86 1.12 augustss
87 1.12 augustss #define UCOMUNIT(x) (minor(x) & UCOMUNIT_MASK)
88 1.12 augustss #define UCOMDIALOUT(x) (minor(x) & UCOMDIALOUT_MASK)
89 1.12 augustss #define UCOMCALLUNIT(x) (minor(x) & UCOMCALLUNIT_MASK)
90 1.12 augustss
91 1.1 augustss struct ucom_softc {
92 1.12 augustss USBBASEDEVICE sc_dev; /* base device */
93 1.12 augustss
94 1.12 augustss usbd_device_handle sc_udev; /* USB device */
95 1.12 augustss
96 1.12 augustss usbd_interface_handle sc_iface; /* data interface */
97 1.12 augustss
98 1.12 augustss int sc_bulkin_no; /* bulk in endpoint address */
99 1.12 augustss usbd_pipe_handle sc_bulkin_pipe; /* bulk in pipe */
100 1.12 augustss usbd_xfer_handle sc_ixfer; /* read request */
101 1.12 augustss u_char *sc_ibuf; /* read buffer */
102 1.19 augustss u_int sc_ibufsize; /* read buffer size */
103 1.22 augustss u_int sc_ibufsizepad; /* read buffer size padded */
104 1.12 augustss
105 1.12 augustss int sc_bulkout_no; /* bulk out endpoint address */
106 1.12 augustss usbd_pipe_handle sc_bulkout_pipe;/* bulk out pipe */
107 1.12 augustss usbd_xfer_handle sc_oxfer; /* write request */
108 1.12 augustss u_char *sc_obuf; /* write buffer */
109 1.19 augustss u_int sc_obufsize; /* write buffer size */
110 1.25 augustss u_int sc_opkthdrlen; /* header length of
111 1.25 augustss * output packet */
112 1.12 augustss
113 1.12 augustss struct ucom_methods *sc_methods;
114 1.12 augustss void *sc_parent;
115 1.12 augustss int sc_portno;
116 1.12 augustss
117 1.12 augustss struct tty *sc_tty; /* our tty */
118 1.12 augustss u_char sc_lsr;
119 1.12 augustss u_char sc_msr;
120 1.12 augustss u_char sc_mcr;
121 1.12 augustss u_char sc_tx_stopped;
122 1.12 augustss int sc_swflags;
123 1.12 augustss
124 1.12 augustss u_char sc_opening; /* lock during open */
125 1.17 augustss int sc_refcnt;
126 1.12 augustss u_char sc_dying; /* disconnecting */
127 1.31 explorer
128 1.31 explorer #if defined(__NetBSD__) && NRND > 0
129 1.31 explorer rndsource_element_t sc_rndsource; /* random source */
130 1.31 explorer #endif
131 1.1 augustss };
132 1.1 augustss
133 1.12 augustss cdev_decl(ucom);
134 1.12 augustss
135 1.24 augustss Static void ucom_cleanup(struct ucom_softc *);
136 1.24 augustss Static void ucom_hwiflow(struct ucom_softc *);
137 1.24 augustss Static int ucomparam(struct tty *, struct termios *);
138 1.24 augustss Static void ucomstart(struct tty *);
139 1.24 augustss Static void ucom_shutdown(struct ucom_softc *);
140 1.24 augustss Static int ucom_do_ioctl(struct ucom_softc *, u_long, caddr_t,
141 1.24 augustss int, struct proc *);
142 1.24 augustss Static void ucom_dtr(struct ucom_softc *, int);
143 1.24 augustss Static void ucom_rts(struct ucom_softc *, int);
144 1.24 augustss Static void ucom_break(struct ucom_softc *, int);
145 1.24 augustss Static usbd_status ucomstartread(struct ucom_softc *);
146 1.24 augustss Static void ucomreadcb(usbd_xfer_handle, usbd_private_handle, usbd_status);
147 1.24 augustss Static void ucomwritecb(usbd_xfer_handle, usbd_private_handle, usbd_status);
148 1.29 toshii Static void tiocm_to_ucom(struct ucom_softc *, u_long, int);
149 1.24 augustss Static int ucom_to_tiocm(struct ucom_softc *);
150 1.1 augustss
151 1.3 augustss USB_DECLARE_DRIVER(ucom);
152 1.1 augustss
153 1.3 augustss USB_MATCH(ucom)
154 1.1 augustss {
155 1.12 augustss return (1);
156 1.1 augustss }
157 1.1 augustss
158 1.3 augustss USB_ATTACH(ucom)
159 1.1 augustss {
160 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)self;
161 1.12 augustss struct ucom_attach_args *uca = aux;
162 1.12 augustss struct tty *tp;
163 1.12 augustss
164 1.12 augustss if (uca->portno != UCOM_UNK_PORTNO)
165 1.12 augustss printf(": portno %d", uca->portno);
166 1.12 augustss printf("\n");
167 1.12 augustss
168 1.12 augustss sc->sc_udev = uca->device;
169 1.12 augustss sc->sc_iface = uca->iface;
170 1.12 augustss sc->sc_bulkout_no = uca->bulkout;
171 1.12 augustss sc->sc_bulkin_no = uca->bulkin;
172 1.19 augustss sc->sc_ibufsize = uca->ibufsize;
173 1.22 augustss sc->sc_ibufsizepad = uca->ibufsizepad;
174 1.19 augustss sc->sc_obufsize = uca->obufsize;
175 1.25 augustss sc->sc_opkthdrlen = uca->opkthdrlen;
176 1.12 augustss sc->sc_methods = uca->methods;
177 1.12 augustss sc->sc_parent = uca->arg;
178 1.12 augustss sc->sc_portno = uca->portno;
179 1.12 augustss
180 1.12 augustss tp = ttymalloc();
181 1.12 augustss tp->t_oproc = ucomstart;
182 1.12 augustss tp->t_param = ucomparam;
183 1.12 augustss sc->sc_tty = tp;
184 1.12 augustss
185 1.12 augustss DPRINTF(("ucom_attach: tty_attach %p\n", tp));
186 1.12 augustss tty_attach(tp);
187 1.12 augustss
188 1.31 explorer #if defined(__NetBSD__) && NRND > 0
189 1.31 explorer rnd_attach_source(&sc->sc_rndsource, USBDEVNAME(sc->sc_dev),
190 1.31 explorer RND_TYPE_TTY, 0);
191 1.31 explorer #endif
192 1.31 explorer
193 1.12 augustss USB_ATTACH_SUCCESS_RETURN;
194 1.12 augustss }
195 1.12 augustss
196 1.12 augustss USB_DETACH(ucom)
197 1.12 augustss {
198 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)self;
199 1.12 augustss int maj, mn;
200 1.17 augustss int s;
201 1.12 augustss
202 1.34 augustss DPRINTF(("ucom_detach: sc=%p flags=%d tp=%p, pipe=%d,%d\n",
203 1.34 augustss sc, flags, sc->sc_tty, sc->sc_bulkin_no, sc->sc_bulkout_no));
204 1.12 augustss
205 1.12 augustss sc->sc_dying = 1;
206 1.12 augustss
207 1.33 augustss if (sc->sc_bulkin_pipe != NULL)
208 1.33 augustss usbd_abort_pipe(sc->sc_bulkin_pipe);
209 1.33 augustss if (sc->sc_bulkout_pipe != NULL)
210 1.33 augustss usbd_abort_pipe(sc->sc_bulkout_pipe);
211 1.12 augustss
212 1.17 augustss s = splusb();
213 1.17 augustss if (--sc->sc_refcnt >= 0) {
214 1.33 augustss /* The abort above should wake sleepers. */
215 1.17 augustss /* Wait for processes to go away. */
216 1.17 augustss usb_detach_wait(USBDEV(sc->sc_dev));
217 1.17 augustss }
218 1.17 augustss splx(s);
219 1.12 augustss
220 1.12 augustss /* locate the major number */
221 1.12 augustss for (maj = 0; maj < nchrdev; maj++)
222 1.12 augustss if (cdevsw[maj].d_open == ucomopen)
223 1.12 augustss break;
224 1.12 augustss
225 1.12 augustss /* Nuke the vnodes for any open instances. */
226 1.12 augustss mn = self->dv_unit;
227 1.17 augustss DPRINTF(("ucom_detach: maj=%d mn=%d\n", maj, mn));
228 1.12 augustss vdevgone(maj, mn, mn, VCHR);
229 1.22 augustss vdevgone(maj, mn | UCOMDIALOUT_MASK, mn | UCOMDIALOUT_MASK, VCHR);
230 1.22 augustss vdevgone(maj, mn | UCOMCALLUNIT_MASK, mn | UCOMCALLUNIT_MASK, VCHR);
231 1.12 augustss
232 1.12 augustss /* Detach and free the tty. */
233 1.33 augustss if (sc->sc_tty != NULL) {
234 1.33 augustss tty_detach(sc->sc_tty);
235 1.33 augustss ttyfree(sc->sc_tty);
236 1.33 augustss sc->sc_tty = NULL;
237 1.33 augustss }
238 1.12 augustss
239 1.31 explorer /* Detach the random source */
240 1.31 explorer #if defined(__NetBSD__) && NRND > 0
241 1.31 explorer rnd_detach_source(&sc->sc_rndsource);
242 1.31 explorer #endif
243 1.31 explorer
244 1.12 augustss return (0);
245 1.12 augustss }
246 1.12 augustss
247 1.12 augustss int
248 1.24 augustss ucom_activate(device_ptr_t self, enum devact act)
249 1.12 augustss {
250 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)self;
251 1.12 augustss
252 1.34 augustss DPRINTFN(5,("ucom_activate: %d\n", act));
253 1.34 augustss
254 1.12 augustss switch (act) {
255 1.12 augustss case DVACT_ACTIVATE:
256 1.12 augustss return (EOPNOTSUPP);
257 1.12 augustss break;
258 1.12 augustss
259 1.12 augustss case DVACT_DEACTIVATE:
260 1.12 augustss sc->sc_dying = 1;
261 1.12 augustss break;
262 1.12 augustss }
263 1.12 augustss return (0);
264 1.12 augustss }
265 1.12 augustss
266 1.12 augustss void
267 1.24 augustss ucom_shutdown(struct ucom_softc *sc)
268 1.12 augustss {
269 1.12 augustss struct tty *tp = sc->sc_tty;
270 1.12 augustss
271 1.12 augustss DPRINTF(("ucom_shutdown\n"));
272 1.12 augustss /*
273 1.12 augustss * Hang up if necessary. Wait a bit, so the other side has time to
274 1.12 augustss * notice even if we immediately open the port again.
275 1.12 augustss */
276 1.12 augustss if (ISSET(tp->t_cflag, HUPCL)) {
277 1.12 augustss ucom_dtr(sc, 0);
278 1.12 augustss (void)tsleep(sc, TTIPRI, ttclos, hz);
279 1.12 augustss }
280 1.12 augustss }
281 1.12 augustss
282 1.12 augustss int
283 1.24 augustss ucomopen(dev_t dev, int flag, int mode, struct proc *p)
284 1.12 augustss {
285 1.12 augustss int unit = UCOMUNIT(dev);
286 1.12 augustss usbd_status err;
287 1.12 augustss struct ucom_softc *sc;
288 1.12 augustss struct tty *tp;
289 1.12 augustss int s;
290 1.12 augustss int error;
291 1.12 augustss
292 1.12 augustss if (unit >= ucom_cd.cd_ndevs)
293 1.12 augustss return (ENXIO);
294 1.12 augustss sc = ucom_cd.cd_devs[unit];
295 1.12 augustss if (sc == NULL)
296 1.12 augustss return (ENXIO);
297 1.12 augustss
298 1.12 augustss if (sc->sc_dying)
299 1.12 augustss return (EIO);
300 1.12 augustss
301 1.12 augustss if (ISSET(sc->sc_dev.dv_flags, DVF_ACTIVE) == 0)
302 1.12 augustss return (ENXIO);
303 1.12 augustss
304 1.12 augustss tp = sc->sc_tty;
305 1.12 augustss
306 1.12 augustss DPRINTF(("ucomopen: unit=%d, tp=%p\n", unit, tp));
307 1.12 augustss
308 1.12 augustss if (ISSET(tp->t_state, TS_ISOPEN) &&
309 1.12 augustss ISSET(tp->t_state, TS_XCLUDE) &&
310 1.12 augustss p->p_ucred->cr_uid != 0)
311 1.12 augustss return (EBUSY);
312 1.12 augustss
313 1.12 augustss s = spltty();
314 1.12 augustss
315 1.12 augustss /*
316 1.12 augustss * Do the following iff this is a first open.
317 1.12 augustss */
318 1.12 augustss while (sc->sc_opening)
319 1.12 augustss tsleep(&sc->sc_opening, PRIBIO, "ucomop", 0);
320 1.17 augustss
321 1.17 augustss if (sc->sc_dying) {
322 1.17 augustss splx(s);
323 1.17 augustss return (EIO);
324 1.17 augustss }
325 1.12 augustss sc->sc_opening = 1;
326 1.1 augustss
327 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
328 1.12 augustss struct termios t;
329 1.12 augustss
330 1.12 augustss tp->t_dev = dev;
331 1.12 augustss
332 1.22 augustss if (sc->sc_methods->ucom_open != NULL) {
333 1.22 augustss error = sc->sc_methods->ucom_open(sc->sc_parent,
334 1.22 augustss sc->sc_portno);
335 1.22 augustss if (error) {
336 1.22 augustss ucom_cleanup(sc);
337 1.26 toshii sc->sc_opening = 0;
338 1.26 toshii wakeup(&sc->sc_opening);
339 1.26 toshii splx(s);
340 1.22 augustss return (error);
341 1.22 augustss }
342 1.22 augustss }
343 1.22 augustss
344 1.12 augustss ucom_status_change(sc);
345 1.12 augustss
346 1.12 augustss /*
347 1.12 augustss * Initialize the termios status to the defaults. Add in the
348 1.12 augustss * sticky bits from TIOCSFLAGS.
349 1.12 augustss */
350 1.12 augustss t.c_ispeed = 0;
351 1.12 augustss t.c_ospeed = TTYDEF_SPEED;
352 1.12 augustss t.c_cflag = TTYDEF_CFLAG;
353 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_CLOCAL))
354 1.12 augustss SET(t.c_cflag, CLOCAL);
355 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_CRTSCTS))
356 1.12 augustss SET(t.c_cflag, CRTSCTS);
357 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_MDMBUF))
358 1.12 augustss SET(t.c_cflag, MDMBUF);
359 1.12 augustss /* Make sure ucomparam() will do something. */
360 1.12 augustss tp->t_ospeed = 0;
361 1.12 augustss (void) ucomparam(tp, &t);
362 1.12 augustss tp->t_iflag = TTYDEF_IFLAG;
363 1.12 augustss tp->t_oflag = TTYDEF_OFLAG;
364 1.12 augustss tp->t_lflag = TTYDEF_LFLAG;
365 1.12 augustss ttychars(tp);
366 1.12 augustss ttsetwater(tp);
367 1.12 augustss
368 1.12 augustss /*
369 1.12 augustss * Turn on DTR. We must always do this, even if carrier is not
370 1.12 augustss * present, because otherwise we'd have to use TIOCSDTR
371 1.12 augustss * immediately after setting CLOCAL, which applications do not
372 1.12 augustss * expect. We always assert DTR while the device is open
373 1.12 augustss * unless explicitly requested to deassert it.
374 1.12 augustss */
375 1.12 augustss ucom_dtr(sc, 1);
376 1.12 augustss
377 1.30 augustss /* XXX CLR(sc->sc_rx_flags, RX_ANY_BLOCK);*/
378 1.12 augustss ucom_hwiflow(sc);
379 1.12 augustss
380 1.12 augustss DPRINTF(("ucomopen: open pipes in=%d out=%d\n",
381 1.12 augustss sc->sc_bulkin_no, sc->sc_bulkout_no));
382 1.12 augustss
383 1.12 augustss /* Open the bulk pipes */
384 1.12 augustss err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkin_no, 0,
385 1.12 augustss &sc->sc_bulkin_pipe);
386 1.12 augustss if (err) {
387 1.12 augustss DPRINTF(("%s: open bulk out error (addr %d), err=%s\n",
388 1.12 augustss USBDEVNAME(sc->sc_dev), sc->sc_bulkin_no,
389 1.12 augustss usbd_errstr(err)));
390 1.28 toshii error = EIO;
391 1.26 toshii goto fail_0;
392 1.12 augustss }
393 1.12 augustss err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkout_no,
394 1.12 augustss USBD_EXCLUSIVE_USE, &sc->sc_bulkout_pipe);
395 1.12 augustss if (err) {
396 1.12 augustss DPRINTF(("%s: open bulk in error (addr %d), err=%s\n",
397 1.12 augustss USBDEVNAME(sc->sc_dev), sc->sc_bulkout_no,
398 1.12 augustss usbd_errstr(err)));
399 1.28 toshii error = EIO;
400 1.26 toshii goto fail_1;
401 1.12 augustss }
402 1.12 augustss
403 1.12 augustss /* Allocate a request and an input buffer and start reading. */
404 1.12 augustss sc->sc_ixfer = usbd_alloc_xfer(sc->sc_udev);
405 1.28 toshii if (sc->sc_ixfer == NULL) {
406 1.28 toshii error = ENOMEM;
407 1.26 toshii goto fail_2;
408 1.28 toshii }
409 1.26 toshii
410 1.22 augustss sc->sc_ibuf = usbd_alloc_buffer(sc->sc_ixfer,
411 1.22 augustss sc->sc_ibufsizepad);
412 1.28 toshii if (sc->sc_ibuf == NULL) {
413 1.28 toshii error = ENOMEM;
414 1.26 toshii goto fail_3;
415 1.28 toshii }
416 1.12 augustss
417 1.12 augustss sc->sc_oxfer = usbd_alloc_xfer(sc->sc_udev);
418 1.28 toshii if (sc->sc_oxfer == NULL) {
419 1.28 toshii error = ENOMEM;
420 1.26 toshii goto fail_3;
421 1.28 toshii }
422 1.26 toshii
423 1.22 augustss sc->sc_obuf = usbd_alloc_buffer(sc->sc_oxfer,
424 1.25 augustss sc->sc_obufsize +
425 1.25 augustss sc->sc_opkthdrlen);
426 1.28 toshii if (sc->sc_obuf == NULL) {
427 1.28 toshii error = ENOMEM;
428 1.26 toshii goto fail_4;
429 1.28 toshii }
430 1.12 augustss
431 1.12 augustss ucomstartread(sc);
432 1.12 augustss }
433 1.12 augustss sc->sc_opening = 0;
434 1.12 augustss wakeup(&sc->sc_opening);
435 1.12 augustss splx(s);
436 1.12 augustss
437 1.12 augustss error = ttyopen(tp, UCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
438 1.12 augustss if (error)
439 1.12 augustss goto bad;
440 1.12 augustss
441 1.32 eeh error = (*tp->t_linesw->l_open)(dev, tp);
442 1.12 augustss if (error)
443 1.12 augustss goto bad;
444 1.12 augustss
445 1.12 augustss return (0);
446 1.26 toshii
447 1.26 toshii fail_4:
448 1.26 toshii usbd_free_xfer(sc->sc_oxfer);
449 1.34 augustss sc->sc_oxfer = NULL;
450 1.26 toshii fail_3:
451 1.26 toshii usbd_free_xfer(sc->sc_ixfer);
452 1.34 augustss sc->sc_ixfer = NULL;
453 1.26 toshii fail_2:
454 1.26 toshii usbd_close_pipe(sc->sc_bulkout_pipe);
455 1.34 augustss sc->sc_bulkout_pipe = NULL;
456 1.26 toshii fail_1:
457 1.26 toshii usbd_close_pipe(sc->sc_bulkin_pipe);
458 1.34 augustss sc->sc_bulkin_pipe = NULL;
459 1.26 toshii fail_0:
460 1.26 toshii sc->sc_opening = 0;
461 1.26 toshii wakeup(&sc->sc_opening);
462 1.26 toshii splx(s);
463 1.28 toshii return (error);
464 1.12 augustss
465 1.12 augustss bad:
466 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
467 1.12 augustss /*
468 1.12 augustss * We failed to open the device, and nobody else had it opened.
469 1.12 augustss * Clean up the state as appropriate.
470 1.12 augustss */
471 1.12 augustss ucom_cleanup(sc);
472 1.12 augustss }
473 1.12 augustss
474 1.12 augustss return (error);
475 1.12 augustss }
476 1.12 augustss
477 1.12 augustss int
478 1.24 augustss ucomclose(dev_t dev, int flag, int mode, struct proc *p)
479 1.12 augustss {
480 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(dev)];
481 1.12 augustss struct tty *tp = sc->sc_tty;
482 1.12 augustss
483 1.12 augustss DPRINTF(("ucomclose: unit=%d\n", UCOMUNIT(dev)));
484 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN))
485 1.12 augustss return (0);
486 1.12 augustss
487 1.17 augustss sc->sc_refcnt++;
488 1.17 augustss
489 1.32 eeh (*tp->t_linesw->l_close)(tp, flag);
490 1.12 augustss ttyclose(tp);
491 1.12 augustss
492 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
493 1.12 augustss /*
494 1.12 augustss * Although we got a last close, the device may still be in
495 1.12 augustss * use; e.g. if this was the dialout node, and there are still
496 1.12 augustss * processes waiting for carrier on the non-dialout node.
497 1.12 augustss */
498 1.12 augustss ucom_cleanup(sc);
499 1.12 augustss }
500 1.12 augustss
501 1.14 augustss if (sc->sc_methods->ucom_close != NULL)
502 1.14 augustss sc->sc_methods->ucom_close(sc->sc_parent, sc->sc_portno);
503 1.14 augustss
504 1.17 augustss if (--sc->sc_refcnt < 0)
505 1.17 augustss usb_detach_wakeup(USBDEV(sc->sc_dev));
506 1.17 augustss
507 1.12 augustss return (0);
508 1.12 augustss }
509 1.12 augustss
510 1.12 augustss int
511 1.24 augustss ucomread(dev_t dev, struct uio *uio, int flag)
512 1.12 augustss {
513 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(dev)];
514 1.12 augustss struct tty *tp = sc->sc_tty;
515 1.17 augustss int error;
516 1.12 augustss
517 1.12 augustss if (sc->sc_dying)
518 1.12 augustss return (EIO);
519 1.12 augustss
520 1.17 augustss sc->sc_refcnt++;
521 1.32 eeh error = ((*tp->t_linesw->l_read)(tp, uio, flag));
522 1.17 augustss if (--sc->sc_refcnt < 0)
523 1.17 augustss usb_detach_wakeup(USBDEV(sc->sc_dev));
524 1.17 augustss return (error);
525 1.12 augustss }
526 1.12 augustss
527 1.12 augustss int
528 1.24 augustss ucomwrite(dev_t dev, struct uio *uio, int flag)
529 1.12 augustss {
530 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(dev)];
531 1.12 augustss struct tty *tp = sc->sc_tty;
532 1.17 augustss int error;
533 1.12 augustss
534 1.12 augustss if (sc->sc_dying)
535 1.12 augustss return (EIO);
536 1.12 augustss
537 1.17 augustss sc->sc_refcnt++;
538 1.32 eeh error = ((*tp->t_linesw->l_write)(tp, uio, flag));
539 1.17 augustss if (--sc->sc_refcnt < 0)
540 1.17 augustss usb_detach_wakeup(USBDEV(sc->sc_dev));
541 1.17 augustss return (error);
542 1.12 augustss }
543 1.12 augustss
544 1.12 augustss struct tty *
545 1.24 augustss ucomtty(dev_t dev)
546 1.12 augustss {
547 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(dev)];
548 1.12 augustss struct tty *tp = sc->sc_tty;
549 1.12 augustss
550 1.12 augustss return (tp);
551 1.12 augustss }
552 1.12 augustss
553 1.12 augustss int
554 1.24 augustss ucomioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
555 1.12 augustss {
556 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(dev)];
557 1.17 augustss int error;
558 1.17 augustss
559 1.17 augustss sc->sc_refcnt++;
560 1.17 augustss error = ucom_do_ioctl(sc, cmd, data, flag, p);
561 1.17 augustss if (--sc->sc_refcnt < 0)
562 1.17 augustss usb_detach_wakeup(USBDEV(sc->sc_dev));
563 1.17 augustss return (error);
564 1.17 augustss }
565 1.17 augustss
566 1.17 augustss Static int
567 1.24 augustss ucom_do_ioctl(struct ucom_softc *sc, u_long cmd, caddr_t data,
568 1.24 augustss int flag, struct proc *p)
569 1.17 augustss {
570 1.12 augustss struct tty *tp = sc->sc_tty;
571 1.12 augustss int error;
572 1.12 augustss int s;
573 1.12 augustss
574 1.12 augustss if (sc->sc_dying)
575 1.12 augustss return (EIO);
576 1.12 augustss
577 1.12 augustss DPRINTF(("ucomioctl: cmd=0x%08lx\n", cmd));
578 1.12 augustss
579 1.32 eeh error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, p);
580 1.12 augustss if (error >= 0)
581 1.12 augustss return (error);
582 1.12 augustss
583 1.12 augustss error = ttioctl(tp, cmd, data, flag, p);
584 1.12 augustss if (error >= 0)
585 1.12 augustss return (error);
586 1.12 augustss
587 1.12 augustss if (sc->sc_methods->ucom_ioctl != NULL) {
588 1.12 augustss error = sc->sc_methods->ucom_ioctl(sc->sc_parent,
589 1.12 augustss sc->sc_portno, cmd, data, flag, p);
590 1.12 augustss if (error >= 0)
591 1.12 augustss return (error);
592 1.12 augustss }
593 1.12 augustss
594 1.12 augustss error = 0;
595 1.12 augustss
596 1.12 augustss DPRINTF(("ucomioctl: our cmd=0x%08lx\n", cmd));
597 1.12 augustss s = spltty();
598 1.12 augustss
599 1.12 augustss switch (cmd) {
600 1.12 augustss case TIOCSBRK:
601 1.12 augustss ucom_break(sc, 1);
602 1.12 augustss break;
603 1.12 augustss
604 1.12 augustss case TIOCCBRK:
605 1.12 augustss ucom_break(sc, 0);
606 1.12 augustss break;
607 1.12 augustss
608 1.12 augustss case TIOCSDTR:
609 1.12 augustss ucom_dtr(sc, 1);
610 1.12 augustss break;
611 1.12 augustss
612 1.12 augustss case TIOCCDTR:
613 1.12 augustss ucom_dtr(sc, 0);
614 1.12 augustss break;
615 1.12 augustss
616 1.12 augustss case TIOCGFLAGS:
617 1.12 augustss *(int *)data = sc->sc_swflags;
618 1.12 augustss break;
619 1.12 augustss
620 1.12 augustss case TIOCSFLAGS:
621 1.12 augustss error = suser(p->p_ucred, &p->p_acflag);
622 1.12 augustss if (error)
623 1.12 augustss break;
624 1.12 augustss sc->sc_swflags = *(int *)data;
625 1.12 augustss break;
626 1.12 augustss
627 1.12 augustss case TIOCMSET:
628 1.12 augustss case TIOCMBIS:
629 1.12 augustss case TIOCMBIC:
630 1.12 augustss tiocm_to_ucom(sc, cmd, *(int *)data);
631 1.12 augustss break;
632 1.12 augustss
633 1.12 augustss case TIOCMGET:
634 1.12 augustss *(int *)data = ucom_to_tiocm(sc);
635 1.12 augustss break;
636 1.12 augustss
637 1.12 augustss default:
638 1.12 augustss error = ENOTTY;
639 1.12 augustss break;
640 1.12 augustss }
641 1.12 augustss
642 1.12 augustss splx(s);
643 1.12 augustss
644 1.12 augustss return (error);
645 1.12 augustss }
646 1.12 augustss
647 1.17 augustss Static void
648 1.29 toshii tiocm_to_ucom(struct ucom_softc *sc, u_long how, int ttybits)
649 1.12 augustss {
650 1.12 augustss u_char combits;
651 1.3 augustss
652 1.12 augustss combits = 0;
653 1.12 augustss if (ISSET(ttybits, TIOCM_DTR))
654 1.12 augustss SET(combits, UMCR_DTR);
655 1.12 augustss if (ISSET(ttybits, TIOCM_RTS))
656 1.12 augustss SET(combits, UMCR_RTS);
657 1.12 augustss
658 1.12 augustss switch (how) {
659 1.12 augustss case TIOCMBIC:
660 1.12 augustss CLR(sc->sc_mcr, combits);
661 1.12 augustss break;
662 1.12 augustss
663 1.12 augustss case TIOCMBIS:
664 1.12 augustss SET(sc->sc_mcr, combits);
665 1.12 augustss break;
666 1.12 augustss
667 1.12 augustss case TIOCMSET:
668 1.12 augustss CLR(sc->sc_mcr, UMCR_DTR | UMCR_RTS);
669 1.12 augustss SET(sc->sc_mcr, combits);
670 1.12 augustss break;
671 1.12 augustss }
672 1.12 augustss
673 1.27 toshii if (how == TIOCMSET || ISSET(combits, UMCR_DTR))
674 1.27 toshii ucom_dtr(sc, (sc->sc_mcr & UMCR_DTR) != 0);
675 1.27 toshii if (how == TIOCMSET || ISSET(combits, UMCR_RTS))
676 1.27 toshii ucom_rts(sc, (sc->sc_mcr & UMCR_RTS) != 0);
677 1.12 augustss }
678 1.12 augustss
679 1.17 augustss Static int
680 1.24 augustss ucom_to_tiocm(struct ucom_softc *sc)
681 1.12 augustss {
682 1.12 augustss u_char combits;
683 1.12 augustss int ttybits = 0;
684 1.12 augustss
685 1.12 augustss combits = sc->sc_mcr;
686 1.12 augustss if (ISSET(combits, UMCR_DTR))
687 1.12 augustss SET(ttybits, TIOCM_DTR);
688 1.12 augustss if (ISSET(combits, UMCR_RTS))
689 1.12 augustss SET(ttybits, TIOCM_RTS);
690 1.12 augustss
691 1.12 augustss combits = sc->sc_msr;
692 1.12 augustss if (ISSET(combits, UMSR_DCD))
693 1.12 augustss SET(ttybits, TIOCM_CD);
694 1.12 augustss if (ISSET(combits, UMSR_CTS))
695 1.12 augustss SET(ttybits, TIOCM_CTS);
696 1.12 augustss if (ISSET(combits, UMSR_DSR))
697 1.12 augustss SET(ttybits, TIOCM_DSR);
698 1.12 augustss if (ISSET(combits, UMSR_RI | UMSR_TERI))
699 1.12 augustss SET(ttybits, TIOCM_RI);
700 1.12 augustss
701 1.12 augustss #if 0
702 1.12 augustss XXX;
703 1.12 augustss if (sc->sc_ier != 0)
704 1.12 augustss SET(ttybits, TIOCM_LE);
705 1.12 augustss #endif
706 1.12 augustss
707 1.12 augustss return (ttybits);
708 1.12 augustss }
709 1.12 augustss
710 1.17 augustss Static void
711 1.12 augustss ucom_break(sc, onoff)
712 1.12 augustss struct ucom_softc *sc;
713 1.12 augustss int onoff;
714 1.12 augustss {
715 1.12 augustss DPRINTF(("ucom_break: onoff=%d\n", onoff));
716 1.12 augustss
717 1.14 augustss if (sc->sc_methods->ucom_set != NULL)
718 1.14 augustss sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
719 1.14 augustss UCOM_SET_BREAK, onoff);
720 1.12 augustss }
721 1.12 augustss
722 1.17 augustss Static void
723 1.24 augustss ucom_dtr(struct ucom_softc *sc, int onoff)
724 1.12 augustss {
725 1.12 augustss DPRINTF(("ucom_dtr: onoff=%d\n", onoff));
726 1.12 augustss
727 1.14 augustss if (sc->sc_methods->ucom_set != NULL)
728 1.14 augustss sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
729 1.14 augustss UCOM_SET_DTR, onoff);
730 1.12 augustss }
731 1.12 augustss
732 1.17 augustss Static void
733 1.24 augustss ucom_rts(struct ucom_softc *sc, int onoff)
734 1.12 augustss {
735 1.12 augustss DPRINTF(("ucom_rts: onoff=%d\n", onoff));
736 1.12 augustss
737 1.14 augustss if (sc->sc_methods->ucom_set != NULL)
738 1.14 augustss sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
739 1.14 augustss UCOM_SET_RTS, onoff);
740 1.12 augustss }
741 1.12 augustss
742 1.22 augustss void
743 1.24 augustss ucom_status_change(struct ucom_softc *sc)
744 1.12 augustss {
745 1.27 toshii struct tty *tp = sc->sc_tty;
746 1.27 toshii u_char old_msr;
747 1.27 toshii
748 1.14 augustss if (sc->sc_methods->ucom_get_status != NULL) {
749 1.27 toshii old_msr = sc->sc_msr;
750 1.14 augustss sc->sc_methods->ucom_get_status(sc->sc_parent, sc->sc_portno,
751 1.14 augustss &sc->sc_lsr, &sc->sc_msr);
752 1.27 toshii if (ISSET((sc->sc_msr ^ old_msr), UMSR_DCD))
753 1.32 eeh (*tp->t_linesw->l_modem)(tp,
754 1.27 toshii ISSET(sc->sc_msr, UMSR_DCD));
755 1.14 augustss } else {
756 1.14 augustss sc->sc_lsr = 0;
757 1.14 augustss sc->sc_msr = 0;
758 1.14 augustss }
759 1.12 augustss }
760 1.12 augustss
761 1.17 augustss Static int
762 1.24 augustss ucomparam(struct tty *tp, struct termios *t)
763 1.12 augustss {
764 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(tp->t_dev)];
765 1.14 augustss int error;
766 1.12 augustss
767 1.12 augustss if (sc->sc_dying)
768 1.12 augustss return (EIO);
769 1.12 augustss
770 1.12 augustss /* Check requested parameters. */
771 1.12 augustss if (t->c_ispeed && t->c_ispeed != t->c_ospeed)
772 1.12 augustss return (EINVAL);
773 1.12 augustss
774 1.12 augustss /*
775 1.12 augustss * For the console, always force CLOCAL and !HUPCL, so that the port
776 1.12 augustss * is always active.
777 1.12 augustss */
778 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_SOFTCAR)) {
779 1.12 augustss SET(t->c_cflag, CLOCAL);
780 1.12 augustss CLR(t->c_cflag, HUPCL);
781 1.12 augustss }
782 1.12 augustss
783 1.12 augustss /*
784 1.12 augustss * If there were no changes, don't do anything. This avoids dropping
785 1.12 augustss * input and improves performance when all we did was frob things like
786 1.12 augustss * VMIN and VTIME.
787 1.12 augustss */
788 1.12 augustss if (tp->t_ospeed == t->c_ospeed &&
789 1.12 augustss tp->t_cflag == t->c_cflag)
790 1.12 augustss return (0);
791 1.12 augustss
792 1.30 augustss /* XXX lcr = ISSET(sc->sc_lcr, LCR_SBREAK) | cflag2lcr(t->c_cflag); */
793 1.12 augustss
794 1.12 augustss /* And copy to tty. */
795 1.12 augustss tp->t_ispeed = 0;
796 1.12 augustss tp->t_ospeed = t->c_ospeed;
797 1.12 augustss tp->t_cflag = t->c_cflag;
798 1.12 augustss
799 1.14 augustss if (sc->sc_methods->ucom_param != NULL) {
800 1.14 augustss error = sc->sc_methods->ucom_param(sc->sc_parent, sc->sc_portno,
801 1.14 augustss t);
802 1.14 augustss if (error)
803 1.14 augustss return (error);
804 1.14 augustss }
805 1.12 augustss
806 1.30 augustss /* XXX worry about CHWFLOW */
807 1.12 augustss
808 1.12 augustss /*
809 1.12 augustss * Update the tty layer's idea of the carrier bit, in case we changed
810 1.12 augustss * CLOCAL or MDMBUF. We don't hang up here; we only do that by
811 1.12 augustss * explicit request.
812 1.12 augustss */
813 1.12 augustss DPRINTF(("ucomparam: l_modem\n"));
814 1.32 eeh (void) (*tp->t_linesw->l_modem)(tp, 1 /* XXX carrier */ );
815 1.12 augustss
816 1.12 augustss #if 0
817 1.12 augustss XXX what if the hardware is not open
818 1.12 augustss if (!ISSET(t->c_cflag, CHWFLOW)) {
819 1.12 augustss if (sc->sc_tx_stopped) {
820 1.12 augustss sc->sc_tx_stopped = 0;
821 1.12 augustss ucomstart(tp);
822 1.12 augustss }
823 1.12 augustss }
824 1.12 augustss #endif
825 1.12 augustss
826 1.12 augustss return (0);
827 1.12 augustss }
828 1.12 augustss
829 1.12 augustss /*
830 1.12 augustss * (un)block input via hw flowcontrol
831 1.12 augustss */
832 1.17 augustss Static void
833 1.24 augustss ucom_hwiflow(struct ucom_softc *sc)
834 1.12 augustss {
835 1.19 augustss DPRINTF(("ucom_hwiflow:\n"));
836 1.12 augustss #if 0
837 1.12 augustss XXX
838 1.12 augustss bus_space_tag_t iot = sc->sc_iot;
839 1.12 augustss bus_space_handle_t ioh = sc->sc_ioh;
840 1.12 augustss
841 1.12 augustss if (sc->sc_mcr_rts == 0)
842 1.12 augustss return;
843 1.12 augustss
844 1.12 augustss if (ISSET(sc->sc_rx_flags, RX_ANY_BLOCK)) {
845 1.12 augustss CLR(sc->sc_mcr, sc->sc_mcr_rts);
846 1.12 augustss CLR(sc->sc_mcr_active, sc->sc_mcr_rts);
847 1.12 augustss } else {
848 1.12 augustss SET(sc->sc_mcr, sc->sc_mcr_rts);
849 1.12 augustss SET(sc->sc_mcr_active, sc->sc_mcr_rts);
850 1.12 augustss }
851 1.12 augustss bus_space_write_1(iot, ioh, com_mcr, sc->sc_mcr_active);
852 1.12 augustss #endif
853 1.1 augustss }
854 1.3 augustss
855 1.17 augustss Static void
856 1.24 augustss ucomstart(struct tty *tp)
857 1.12 augustss {
858 1.12 augustss struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(tp->t_dev)];
859 1.12 augustss usbd_status err;
860 1.12 augustss int s;
861 1.12 augustss u_char *data;
862 1.12 augustss int cnt;
863 1.12 augustss
864 1.12 augustss if (sc->sc_dying)
865 1.12 augustss return;
866 1.12 augustss
867 1.12 augustss s = spltty();
868 1.12 augustss if (ISSET(tp->t_state, TS_BUSY | TS_TIMEOUT | TS_TTSTOP)) {
869 1.19 augustss DPRINTFN(4,("ucomstart: no go, state=0x%x\n", tp->t_state));
870 1.12 augustss goto out;
871 1.12 augustss }
872 1.12 augustss if (sc->sc_tx_stopped)
873 1.12 augustss goto out;
874 1.12 augustss
875 1.12 augustss if (tp->t_outq.c_cc <= tp->t_lowat) {
876 1.12 augustss if (ISSET(tp->t_state, TS_ASLEEP)) {
877 1.12 augustss CLR(tp->t_state, TS_ASLEEP);
878 1.12 augustss wakeup(&tp->t_outq);
879 1.12 augustss }
880 1.12 augustss selwakeup(&tp->t_wsel);
881 1.12 augustss if (tp->t_outq.c_cc == 0)
882 1.12 augustss goto out;
883 1.12 augustss }
884 1.12 augustss
885 1.12 augustss /* Grab the first contiguous region of buffer space. */
886 1.12 augustss data = tp->t_outq.c_cf;
887 1.12 augustss cnt = ndqb(&tp->t_outq, 0);
888 1.12 augustss
889 1.12 augustss if (cnt == 0) {
890 1.12 augustss DPRINTF(("ucomstart: cnt==0\n"));
891 1.12 augustss goto out;
892 1.12 augustss }
893 1.12 augustss
894 1.12 augustss SET(tp->t_state, TS_BUSY);
895 1.12 augustss
896 1.19 augustss if (cnt > sc->sc_obufsize) {
897 1.12 augustss DPRINTF(("ucomstart: big buffer %d chars\n", cnt));
898 1.19 augustss cnt = sc->sc_obufsize;
899 1.12 augustss }
900 1.22 augustss if (sc->sc_methods->ucom_write != NULL)
901 1.22 augustss sc->sc_methods->ucom_write(sc->sc_parent, sc->sc_portno,
902 1.22 augustss sc->sc_obuf, data, &cnt);
903 1.22 augustss else
904 1.22 augustss memcpy(sc->sc_obuf, data, cnt);
905 1.12 augustss
906 1.12 augustss DPRINTFN(4,("ucomstart: %d chars\n", cnt));
907 1.12 augustss usbd_setup_xfer(sc->sc_oxfer, sc->sc_bulkout_pipe,
908 1.12 augustss (usbd_private_handle)sc, sc->sc_obuf, cnt,
909 1.12 augustss USBD_NO_COPY, USBD_NO_TIMEOUT, ucomwritecb);
910 1.12 augustss /* What can we do on error? */
911 1.12 augustss err = usbd_transfer(sc->sc_oxfer);
912 1.12 augustss #ifdef DIAGNOSTIC
913 1.12 augustss if (err != USBD_IN_PROGRESS)
914 1.12 augustss printf("ucomstart: err=%s\n", usbd_errstr(err));
915 1.3 augustss #endif
916 1.3 augustss
917 1.12 augustss out:
918 1.12 augustss splx(s);
919 1.12 augustss }
920 1.12 augustss
921 1.21 itojun void
922 1.24 augustss ucomstop(struct tty *tp, int flag)
923 1.12 augustss {
924 1.19 augustss DPRINTF(("ucomstop: flag=%d\n", flag));
925 1.19 augustss #if 0
926 1.19 augustss /*struct ucom_softc *sc = ucom_cd.cd_devs[UCOMUNIT(tp->t_dev)];*/
927 1.12 augustss int s;
928 1.12 augustss
929 1.12 augustss s = spltty();
930 1.12 augustss if (ISSET(tp->t_state, TS_BUSY)) {
931 1.12 augustss DPRINTF(("ucomstop: XXX\n"));
932 1.19 augustss /* sc->sc_tx_stopped = 1; */
933 1.12 augustss if (!ISSET(tp->t_state, TS_TTSTOP))
934 1.12 augustss SET(tp->t_state, TS_FLUSH);
935 1.12 augustss }
936 1.12 augustss splx(s);
937 1.19 augustss #endif
938 1.12 augustss }
939 1.12 augustss
940 1.17 augustss Static void
941 1.24 augustss ucomwritecb(usbd_xfer_handle xfer, usbd_private_handle p, usbd_status status)
942 1.12 augustss {
943 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)p;
944 1.12 augustss struct tty *tp = sc->sc_tty;
945 1.12 augustss u_int32_t cc;
946 1.12 augustss int s;
947 1.12 augustss
948 1.12 augustss DPRINTFN(5,("ucomwritecb: status=%d\n", status));
949 1.12 augustss
950 1.34 augustss if (status == USBD_CANCELLED || sc->sc_dying)
951 1.12 augustss return;
952 1.12 augustss
953 1.12 augustss if (status) {
954 1.12 augustss DPRINTF(("ucomwritecb: status=%d\n", status));
955 1.12 augustss usbd_clear_endpoint_stall_async(sc->sc_bulkin_pipe);
956 1.12 augustss /* XXX we should restart after some delay. */
957 1.12 augustss return;
958 1.12 augustss }
959 1.12 augustss
960 1.15 augustss usbd_get_xfer_status(xfer, NULL, NULL, &cc, NULL);
961 1.31 explorer #if defined(__NetBSD__) && NRND > 0
962 1.31 explorer rnd_add_uint32(&sc->sc_rndsource, cc);
963 1.31 explorer #endif
964 1.12 augustss DPRINTFN(5,("ucomwritecb: cc=%d\n", cc));
965 1.25 augustss /* convert from USB bytes to tty bytes */
966 1.25 augustss cc -= sc->sc_opkthdrlen;
967 1.12 augustss
968 1.12 augustss s = spltty();
969 1.12 augustss CLR(tp->t_state, TS_BUSY);
970 1.12 augustss if (ISSET(tp->t_state, TS_FLUSH))
971 1.12 augustss CLR(tp->t_state, TS_FLUSH);
972 1.12 augustss else
973 1.12 augustss ndflush(&tp->t_outq, cc);
974 1.32 eeh (*tp->t_linesw->l_start)(tp);
975 1.12 augustss splx(s);
976 1.12 augustss }
977 1.12 augustss
978 1.17 augustss Static usbd_status
979 1.24 augustss ucomstartread(struct ucom_softc *sc)
980 1.12 augustss {
981 1.12 augustss usbd_status err;
982 1.12 augustss
983 1.12 augustss DPRINTFN(5,("ucomstartread: start\n"));
984 1.12 augustss usbd_setup_xfer(sc->sc_ixfer, sc->sc_bulkin_pipe,
985 1.12 augustss (usbd_private_handle)sc,
986 1.19 augustss sc->sc_ibuf, sc->sc_ibufsize,
987 1.12 augustss USBD_SHORT_XFER_OK | USBD_NO_COPY,
988 1.12 augustss USBD_NO_TIMEOUT, ucomreadcb);
989 1.12 augustss err = usbd_transfer(sc->sc_ixfer);
990 1.12 augustss if (err != USBD_IN_PROGRESS) {
991 1.12 augustss DPRINTF(("ucomstartread: err=%s\n", usbd_errstr(err)));
992 1.12 augustss return (err);
993 1.12 augustss }
994 1.12 augustss return (USBD_NORMAL_COMPLETION);
995 1.12 augustss }
996 1.12 augustss
997 1.17 augustss Static void
998 1.24 augustss ucomreadcb(usbd_xfer_handle xfer, usbd_private_handle p, usbd_status status)
999 1.12 augustss {
1000 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)p;
1001 1.12 augustss struct tty *tp = sc->sc_tty;
1002 1.32 eeh int (*rint)(int c, struct tty *tp) = tp->t_linesw->l_rint;
1003 1.12 augustss usbd_status err;
1004 1.12 augustss u_int32_t cc;
1005 1.12 augustss u_char *cp;
1006 1.12 augustss int s;
1007 1.12 augustss
1008 1.34 augustss DPRINTFN(5,("ucomreadcb: status=%d\n", status));
1009 1.34 augustss
1010 1.34 augustss if (status == USBD_CANCELLED || status == USBD_IOERROR ||
1011 1.34 augustss sc->sc_dying) {
1012 1.34 augustss DPRINTF(("ucomreadcb: dying\n"));
1013 1.34 augustss /* Send something to wake upper layer */
1014 1.34 augustss s = spltty();
1015 1.34 augustss (*rint)('\n', tp);
1016 1.34 augustss ttwakeup(tp);
1017 1.34 augustss splx(s);
1018 1.12 augustss return;
1019 1.34 augustss }
1020 1.12 augustss
1021 1.12 augustss if (status) {
1022 1.12 augustss usbd_clear_endpoint_stall_async(sc->sc_bulkin_pipe);
1023 1.12 augustss /* XXX we should restart after some delay. */
1024 1.12 augustss return;
1025 1.12 augustss }
1026 1.12 augustss
1027 1.15 augustss usbd_get_xfer_status(xfer, NULL, (void **)&cp, &cc, NULL);
1028 1.31 explorer #if defined(__NetBSD__) && NRND > 0
1029 1.31 explorer rnd_add_uint32(&sc->sc_rndsource, cc);
1030 1.31 explorer #endif
1031 1.12 augustss DPRINTFN(5,("ucomreadcb: got %d chars, tp=%p\n", cc, tp));
1032 1.22 augustss if (sc->sc_methods->ucom_read != NULL)
1033 1.22 augustss sc->sc_methods->ucom_read(sc->sc_parent, sc->sc_portno,
1034 1.22 augustss &cp, &cc);
1035 1.22 augustss
1036 1.12 augustss s = spltty();
1037 1.12 augustss /* Give characters to tty layer. */
1038 1.12 augustss while (cc-- > 0) {
1039 1.12 augustss DPRINTFN(7,("ucomreadcb: char=0x%02x\n", *cp));
1040 1.12 augustss if ((*rint)(*cp++, tp) == -1) {
1041 1.12 augustss /* XXX what should we do? */
1042 1.19 augustss printf("%s: lost %d chars\n", USBDEVNAME(sc->sc_dev),
1043 1.19 augustss cc);
1044 1.12 augustss break;
1045 1.12 augustss }
1046 1.12 augustss }
1047 1.12 augustss splx(s);
1048 1.12 augustss
1049 1.12 augustss err = ucomstartread(sc);
1050 1.12 augustss if (err) {
1051 1.12 augustss printf("%s: read start failed\n", USBDEVNAME(sc->sc_dev));
1052 1.12 augustss /* XXX what should we dow now? */
1053 1.12 augustss }
1054 1.12 augustss }
1055 1.12 augustss
1056 1.17 augustss Static void
1057 1.24 augustss ucom_cleanup(struct ucom_softc *sc)
1058 1.12 augustss {
1059 1.12 augustss DPRINTF(("ucom_cleanup: closing pipes\n"));
1060 1.12 augustss
1061 1.12 augustss ucom_shutdown(sc);
1062 1.33 augustss if (sc->sc_bulkin_pipe != NULL) {
1063 1.33 augustss usbd_abort_pipe(sc->sc_bulkin_pipe);
1064 1.33 augustss usbd_close_pipe(sc->sc_bulkin_pipe);
1065 1.33 augustss sc->sc_bulkin_pipe = NULL;
1066 1.33 augustss }
1067 1.33 augustss if (sc->sc_bulkout_pipe != NULL) {
1068 1.33 augustss usbd_abort_pipe(sc->sc_bulkout_pipe);
1069 1.33 augustss usbd_close_pipe(sc->sc_bulkout_pipe);
1070 1.33 augustss sc->sc_bulkout_pipe = NULL;
1071 1.33 augustss }
1072 1.33 augustss if (sc->sc_ixfer != NULL) {
1073 1.33 augustss usbd_free_xfer(sc->sc_ixfer);
1074 1.33 augustss sc->sc_ixfer = NULL;
1075 1.33 augustss }
1076 1.33 augustss if (sc->sc_oxfer != NULL) {
1077 1.33 augustss usbd_free_xfer(sc->sc_oxfer);
1078 1.33 augustss sc->sc_oxfer = NULL;
1079 1.33 augustss }
1080 1.12 augustss }
1081 1.13 augustss
1082 1.13 augustss #endif /* NUCOM > 0 */
1083 1.12 augustss
1084 1.20 augustss int
1085 1.24 augustss ucomprint(void *aux, const char *pnp)
1086 1.12 augustss {
1087 1.12 augustss
1088 1.12 augustss if (pnp)
1089 1.12 augustss printf("ucom at %s\n", pnp);
1090 1.12 augustss return (UNCONF);
1091 1.12 augustss }
1092 1.12 augustss
1093 1.20 augustss int
1094 1.24 augustss ucomsubmatch(struct device *parent, struct cfdata *cf, void *aux)
1095 1.12 augustss {
1096 1.12 augustss struct ucom_attach_args *uca = aux;
1097 1.12 augustss
1098 1.12 augustss if (uca->portno != UCOM_UNK_PORTNO &&
1099 1.12 augustss cf->ucomcf_portno != UCOM_UNK_PORTNO &&
1100 1.12 augustss cf->ucomcf_portno != uca->portno)
1101 1.12 augustss return (0);
1102 1.12 augustss return ((*cf->cf_attach->ca_match)(parent, cf, aux));
1103 1.12 augustss }
1104