ucom.c revision 1.113.2.2 1 1.113.2.2 pgoyette /* $NetBSD: ucom.c,v 1.113.2.2 2016/07/19 06:26:59 pgoyette 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 *
20 1.1 augustss * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.1 augustss * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.1 augustss * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.1 augustss * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.1 augustss * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.1 augustss * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.1 augustss * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.1 augustss * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.1 augustss * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.1 augustss * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.1 augustss * POSSIBILITY OF SUCH DAMAGE.
31 1.1 augustss */
32 1.22 augustss /*
33 1.22 augustss * This code is very heavily based on the 16550 driver, com.c.
34 1.22 augustss */
35 1.40 lukem
36 1.40 lukem #include <sys/cdefs.h>
37 1.113.2.2 pgoyette __KERNEL_RCSID(0, "$NetBSD: ucom.c,v 1.113.2.2 2016/07/19 06:26:59 pgoyette Exp $");
38 1.1 augustss
39 1.1 augustss #include <sys/param.h>
40 1.1 augustss #include <sys/systm.h>
41 1.1 augustss #include <sys/kernel.h>
42 1.1 augustss #include <sys/ioctl.h>
43 1.3 augustss #include <sys/conf.h>
44 1.1 augustss #include <sys/tty.h>
45 1.1 augustss #include <sys/file.h>
46 1.1 augustss #include <sys/select.h>
47 1.1 augustss #include <sys/proc.h>
48 1.1 augustss #include <sys/vnode.h>
49 1.12 augustss #include <sys/device.h>
50 1.1 augustss #include <sys/poll.h>
51 1.82 martin #include <sys/queue.h>
52 1.63 elad #include <sys/kauth.h>
53 1.111 skrll #include <sys/sysctl.h>
54 1.106 gdt #include <sys/timepps.h>
55 1.109 riastrad #include <sys/rndsource.h>
56 1.113.2.1 pgoyette #include <sys/localcount.h>
57 1.1 augustss
58 1.1 augustss #include <dev/usb/usb.h>
59 1.1 augustss
60 1.1 augustss #include <dev/usb/usbdi.h>
61 1.1 augustss #include <dev/usb/usbdi_util.h>
62 1.1 augustss #include <dev/usb/usbdevs.h>
63 1.1 augustss #include <dev/usb/usb_quirks.h>
64 1.111 skrll #include <dev/usb/usbhist.h>
65 1.1 augustss
66 1.12 augustss #include <dev/usb/ucomvar.h>
67 1.12 augustss
68 1.13 augustss #include "ucom.h"
69 1.13 augustss
70 1.53 drochner #include "locators.h"
71 1.53 drochner
72 1.13 augustss #if NUCOM > 0
73 1.13 augustss
74 1.111 skrll #ifdef USB_DEBUG
75 1.111 skrll #ifndef UCOM_DEBUG
76 1.111 skrll #define ucomdebug 0
77 1.111 skrll #else
78 1.12 augustss int ucomdebug = 0;
79 1.111 skrll
80 1.111 skrll SYSCTL_SETUP(sysctl_hw_ucom_setup, "sysctl hw.ucom setup")
81 1.111 skrll {
82 1.111 skrll int err;
83 1.111 skrll const struct sysctlnode *rnode;
84 1.111 skrll const struct sysctlnode *cnode;
85 1.111 skrll
86 1.111 skrll err = sysctl_createv(clog, 0, NULL, &rnode,
87 1.111 skrll CTLFLAG_PERMANENT, CTLTYPE_NODE, "ucom",
88 1.111 skrll SYSCTL_DESCR("ucom global controls"),
89 1.111 skrll NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
90 1.111 skrll
91 1.111 skrll if (err)
92 1.111 skrll goto fail;
93 1.111 skrll
94 1.111 skrll /* control debugging printfs */
95 1.111 skrll err = sysctl_createv(clog, 0, &rnode, &cnode,
96 1.111 skrll CTLFLAG_PERMANENT|CTLFLAG_READWRITE, CTLTYPE_INT,
97 1.111 skrll "debug", SYSCTL_DESCR("Enable debugging output"),
98 1.111 skrll NULL, 0, &ucomdebug, sizeof(ucomdebug), CTL_CREATE, CTL_EOL);
99 1.111 skrll if (err)
100 1.111 skrll goto fail;
101 1.111 skrll
102 1.111 skrll return;
103 1.111 skrll fail:
104 1.111 skrll aprint_error("%s: sysctl_createv failed (err = %d)\n", __func__, err);
105 1.111 skrll }
106 1.111 skrll
107 1.111 skrll #endif /* UCOM_DEBUG */
108 1.111 skrll #endif /* USB_DEBUG */
109 1.111 skrll
110 1.111 skrll #define DPRINTF(FMT,A,B,C,D) USBHIST_LOGN(ucomdebug,1,FMT,A,B,C,D)
111 1.111 skrll #define DPRINTFN(N,FMT,A,B,C,D) USBHIST_LOGN(ucomdebug,N,FMT,A,B,C,D)
112 1.111 skrll #define UCOMHIST_FUNC() USBHIST_FUNC()
113 1.111 skrll #define UCOMHIST_CALLED(name) USBHIST_CALLED(ucomdebug)
114 1.12 augustss
115 1.108 christos #define UCOMCALLUNIT_MASK TTCALLUNIT_MASK
116 1.108 christos #define UCOMUNIT_MASK TTUNIT_MASK
117 1.108 christos #define UCOMDIALOUT_MASK TTDIALOUT_MASK
118 1.108 christos
119 1.108 christos #define UCOMCALLUNIT(x) TTCALLUNIT(x)
120 1.108 christos #define UCOMUNIT(x) TTUNIT(x)
121 1.108 christos #define UCOMDIALOUT(x) TTDIALOUT(x)
122 1.12 augustss
123 1.82 martin /*
124 1.82 martin * XXX: We can submit multiple input/output buffers to the usb stack
125 1.82 martin * to improve throughput, but the usb stack is too lame to deal with this
126 1.82 martin * in a number of places.
127 1.82 martin */
128 1.82 martin #define UCOM_IN_BUFFS 1
129 1.82 martin #define UCOM_OUT_BUFFS 1
130 1.82 martin
131 1.82 martin struct ucom_buffer {
132 1.82 martin SIMPLEQ_ENTRY(ucom_buffer) ub_link;
133 1.111 skrll struct usbd_xfer *ub_xfer;
134 1.82 martin u_char *ub_data;
135 1.82 martin u_int ub_len;
136 1.82 martin u_int ub_index;
137 1.82 martin };
138 1.82 martin
139 1.1 augustss struct ucom_softc {
140 1.85 dyoung device_t sc_dev; /* base device */
141 1.12 augustss
142 1.111 skrll struct usbd_device * sc_udev; /* USB device */
143 1.12 augustss
144 1.111 skrll struct usbd_interface * sc_iface; /* data interface */
145 1.12 augustss
146 1.12 augustss int sc_bulkin_no; /* bulk in endpoint address */
147 1.111 skrll struct usbd_pipe * sc_bulkin_pipe; /* bulk in pipe */
148 1.19 augustss u_int sc_ibufsize; /* read buffer size */
149 1.22 augustss u_int sc_ibufsizepad; /* read buffer size padded */
150 1.82 martin struct ucom_buffer sc_ibuff[UCOM_IN_BUFFS];
151 1.82 martin SIMPLEQ_HEAD(, ucom_buffer) sc_ibuff_empty;
152 1.82 martin SIMPLEQ_HEAD(, ucom_buffer) sc_ibuff_full;
153 1.12 augustss
154 1.12 augustss int sc_bulkout_no; /* bulk out endpoint address */
155 1.111 skrll struct usbd_pipe * sc_bulkout_pipe;/* bulk out pipe */
156 1.19 augustss u_int sc_obufsize; /* write buffer size */
157 1.82 martin u_int sc_opkthdrlen; /* header length of */
158 1.82 martin struct ucom_buffer sc_obuff[UCOM_OUT_BUFFS];
159 1.82 martin SIMPLEQ_HEAD(, ucom_buffer) sc_obuff_free;
160 1.82 martin SIMPLEQ_HEAD(, ucom_buffer) sc_obuff_full;
161 1.82 martin
162 1.82 martin void *sc_si;
163 1.12 augustss
164 1.90 jakllsch const struct ucom_methods *sc_methods;
165 1.12 augustss void *sc_parent;
166 1.12 augustss int sc_portno;
167 1.12 augustss
168 1.12 augustss struct tty *sc_tty; /* our tty */
169 1.12 augustss u_char sc_lsr;
170 1.12 augustss u_char sc_msr;
171 1.12 augustss u_char sc_mcr;
172 1.82 martin volatile u_char sc_rx_stopped;
173 1.82 martin u_char sc_rx_unblock;
174 1.12 augustss u_char sc_tx_stopped;
175 1.12 augustss int sc_swflags;
176 1.12 augustss
177 1.12 augustss u_char sc_opening; /* lock during open */
178 1.113 mlelstv u_char sc_closing; /* lock during close */
179 1.17 augustss int sc_refcnt;
180 1.12 augustss u_char sc_dying; /* disconnecting */
181 1.31 explorer
182 1.106 gdt struct pps_state sc_pps_state; /* pps state */
183 1.106 gdt
184 1.111 skrll krndsource_t sc_rndsource; /* random source */
185 1.111 skrll
186 1.111 skrll kmutex_t sc_lock;
187 1.111 skrll kcondvar_t sc_opencv;
188 1.111 skrll kcondvar_t sc_detachcv;
189 1.1 augustss };
190 1.1 augustss
191 1.44 gehenna dev_type_open(ucomopen);
192 1.44 gehenna dev_type_close(ucomclose);
193 1.44 gehenna dev_type_read(ucomread);
194 1.44 gehenna dev_type_write(ucomwrite);
195 1.44 gehenna dev_type_ioctl(ucomioctl);
196 1.44 gehenna dev_type_stop(ucomstop);
197 1.44 gehenna dev_type_tty(ucomtty);
198 1.44 gehenna dev_type_poll(ucompoll);
199 1.44 gehenna
200 1.44 gehenna const struct cdevsw ucom_cdevsw = {
201 1.113.2.2 pgoyette LOCALCOUNT_INITIALIZER
202 1.103 dholland .d_open = ucomopen,
203 1.103 dholland .d_close = ucomclose,
204 1.103 dholland .d_read = ucomread,
205 1.103 dholland .d_write = ucomwrite,
206 1.103 dholland .d_ioctl = ucomioctl,
207 1.103 dholland .d_stop = ucomstop,
208 1.103 dholland .d_tty = ucomtty,
209 1.103 dholland .d_poll = ucompoll,
210 1.103 dholland .d_mmap = nommap,
211 1.103 dholland .d_kqfilter = ttykqfilter,
212 1.105 dholland .d_discard = nodiscard,
213 1.111 skrll .d_flag = D_TTY | D_MPSAFE
214 1.44 gehenna };
215 1.12 augustss
216 1.82 martin static void ucom_cleanup(struct ucom_softc *);
217 1.82 martin static int ucomparam(struct tty *, struct termios *);
218 1.82 martin static int ucomhwiflow(struct tty *, int);
219 1.82 martin static void ucomstart(struct tty *);
220 1.82 martin static void ucom_shutdown(struct ucom_softc *);
221 1.82 martin static int ucom_do_ioctl(struct ucom_softc *, u_long, void *,
222 1.60 christos int, struct lwp *);
223 1.82 martin static void ucom_dtr(struct ucom_softc *, int);
224 1.82 martin static void ucom_rts(struct ucom_softc *, int);
225 1.82 martin static void ucom_break(struct ucom_softc *, int);
226 1.82 martin static void tiocm_to_ucom(struct ucom_softc *, u_long, int);
227 1.82 martin static int ucom_to_tiocm(struct ucom_softc *);
228 1.82 martin
229 1.111 skrll static void ucomreadcb(struct usbd_xfer *, void *, usbd_status);
230 1.82 martin static void ucom_submit_write(struct ucom_softc *, struct ucom_buffer *);
231 1.82 martin static void ucom_write_status(struct ucom_softc *, struct ucom_buffer *,
232 1.82 martin usbd_status);
233 1.82 martin
234 1.111 skrll static void ucomwritecb(struct usbd_xfer *, void *, usbd_status);
235 1.82 martin static void ucom_read_complete(struct ucom_softc *);
236 1.82 martin static usbd_status ucomsubmitread(struct ucom_softc *, struct ucom_buffer *);
237 1.82 martin static void ucom_softintr(void *);
238 1.1 augustss
239 1.85 dyoung int ucom_match(device_t, cfdata_t, void *);
240 1.85 dyoung void ucom_attach(device_t, device_t, void *);
241 1.85 dyoung int ucom_detach(device_t, int);
242 1.85 dyoung int ucom_activate(device_t, enum devact);
243 1.85 dyoung extern struct cfdriver ucom_cd;
244 1.85 dyoung CFATTACH_DECL_NEW(ucom, sizeof(struct ucom_softc), ucom_match, ucom_attach,
245 1.85 dyoung ucom_detach, ucom_activate);
246 1.1 augustss
247 1.85 dyoung int
248 1.85 dyoung ucom_match(device_t parent, cfdata_t match, void *aux)
249 1.1 augustss {
250 1.111 skrll return 1;
251 1.1 augustss }
252 1.1 augustss
253 1.85 dyoung void
254 1.85 dyoung ucom_attach(device_t parent, device_t self, void *aux)
255 1.1 augustss {
256 1.77 cube struct ucom_softc *sc = device_private(self);
257 1.111 skrll struct ucom_attach_args *ucaa = aux;
258 1.12 augustss struct tty *tp;
259 1.12 augustss
260 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
261 1.111 skrll
262 1.111 skrll if (ucaa->ucaa_info != NULL)
263 1.111 skrll aprint_normal(": %s", ucaa->ucaa_info);
264 1.83 pooka aprint_normal("\n");
265 1.12 augustss
266 1.111 skrll prop_dictionary_set_int32(device_properties(self), "port",
267 1.111 skrll ucaa->ucaa_portno);
268 1.110 joerg
269 1.77 cube sc->sc_dev = self;
270 1.111 skrll sc->sc_udev = ucaa->ucaa_device;
271 1.111 skrll sc->sc_iface = ucaa->ucaa_iface;
272 1.111 skrll sc->sc_bulkout_no = ucaa->ucaa_bulkout;
273 1.111 skrll sc->sc_bulkin_no = ucaa->ucaa_bulkin;
274 1.111 skrll sc->sc_ibufsize = ucaa->ucaa_ibufsize;
275 1.111 skrll sc->sc_ibufsizepad = ucaa->ucaa_ibufsizepad;
276 1.111 skrll sc->sc_obufsize = ucaa->ucaa_obufsize;
277 1.111 skrll sc->sc_opkthdrlen = ucaa->ucaa_opkthdrlen;
278 1.111 skrll sc->sc_methods = ucaa->ucaa_methods;
279 1.111 skrll sc->sc_parent = ucaa->ucaa_arg;
280 1.111 skrll sc->sc_portno = ucaa->ucaa_portno;
281 1.12 augustss
282 1.82 martin sc->sc_lsr = 0;
283 1.82 martin sc->sc_msr = 0;
284 1.82 martin sc->sc_mcr = 0;
285 1.82 martin sc->sc_tx_stopped = 0;
286 1.82 martin sc->sc_swflags = 0;
287 1.82 martin sc->sc_opening = 0;
288 1.113 mlelstv sc->sc_closing = 0;
289 1.82 martin sc->sc_refcnt = 0;
290 1.82 martin sc->sc_dying = 0;
291 1.82 martin
292 1.111 skrll sc->sc_si = softint_establish(SOFTINT_USB, ucom_softintr, sc);
293 1.111 skrll mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_SOFTUSB);
294 1.111 skrll cv_init(&sc->sc_opencv, "ucomopen");
295 1.111 skrll cv_init(&sc->sc_detachcv, "ucomdtch");
296 1.111 skrll
297 1.111 skrll SIMPLEQ_INIT(&sc->sc_ibuff_empty);
298 1.111 skrll SIMPLEQ_INIT(&sc->sc_ibuff_full);
299 1.111 skrll SIMPLEQ_INIT(&sc->sc_obuff_free);
300 1.111 skrll SIMPLEQ_INIT(&sc->sc_obuff_full);
301 1.111 skrll
302 1.111 skrll memset(sc->sc_ibuff, 0, sizeof(sc->sc_ibuff));
303 1.111 skrll memset(sc->sc_obuff, 0, sizeof(sc->sc_obuff));
304 1.111 skrll
305 1.111 skrll DPRINTF("open pipes in=%d out=%d", sc->sc_bulkin_no, sc->sc_bulkout_no,
306 1.111 skrll 0, 0);
307 1.111 skrll
308 1.111 skrll struct ucom_buffer *ub;
309 1.111 skrll usbd_status err;
310 1.111 skrll int error;
311 1.111 skrll
312 1.111 skrll /* Open the bulk pipes */
313 1.111 skrll err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkin_no,
314 1.111 skrll USBD_EXCLUSIVE_USE, &sc->sc_bulkin_pipe);
315 1.111 skrll if (err) {
316 1.111 skrll DPRINTF("open bulk in error (addr %d), err=%d",
317 1.111 skrll sc->sc_bulkin_no, err, 0, 0);
318 1.111 skrll error = EIO;
319 1.111 skrll goto fail_0;
320 1.111 skrll }
321 1.111 skrll err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkout_no,
322 1.111 skrll USBD_EXCLUSIVE_USE, &sc->sc_bulkout_pipe);
323 1.111 skrll if (err) {
324 1.111 skrll DPRINTF("open bulk out error (addr %d), err=%d",
325 1.111 skrll sc->sc_bulkout_no, err, 0, 0);
326 1.111 skrll error = EIO;
327 1.111 skrll goto fail_1;
328 1.111 skrll }
329 1.111 skrll
330 1.111 skrll /* Allocate input buffers */
331 1.111 skrll for (ub = &sc->sc_ibuff[0]; ub != &sc->sc_ibuff[UCOM_IN_BUFFS];
332 1.111 skrll ub++) {
333 1.111 skrll error = usbd_create_xfer(sc->sc_bulkin_pipe, sc->sc_ibufsizepad,
334 1.111 skrll USBD_SHORT_XFER_OK, 0, &ub->ub_xfer);
335 1.111 skrll if (error)
336 1.111 skrll goto fail_2;
337 1.111 skrll ub->ub_data = usbd_get_buffer(ub->ub_xfer);
338 1.111 skrll }
339 1.111 skrll
340 1.111 skrll for (ub = &sc->sc_obuff[0]; ub != &sc->sc_obuff[UCOM_OUT_BUFFS];
341 1.111 skrll ub++) {
342 1.111 skrll error = usbd_create_xfer(sc->sc_bulkout_pipe, sc->sc_obufsize,
343 1.111 skrll 0, 0, &ub->ub_xfer);
344 1.111 skrll if (error)
345 1.111 skrll goto fail_2;
346 1.111 skrll ub->ub_data = usbd_get_buffer(ub->ub_xfer);
347 1.111 skrll SIMPLEQ_INSERT_TAIL(&sc->sc_obuff_free, ub, ub_link);
348 1.111 skrll }
349 1.82 martin
350 1.87 rmind tp = tty_alloc();
351 1.12 augustss tp->t_oproc = ucomstart;
352 1.12 augustss tp->t_param = ucomparam;
353 1.82 martin tp->t_hwiflow = ucomhwiflow;
354 1.12 augustss sc->sc_tty = tp;
355 1.12 augustss
356 1.111 skrll DPRINTF("tty_attach %p", tp, 0, 0, 0);
357 1.12 augustss tty_attach(tp);
358 1.12 augustss
359 1.85 dyoung rnd_attach_source(&sc->sc_rndsource, device_xname(sc->sc_dev),
360 1.107 tls RND_TYPE_TTY, RND_FLAG_DEFAULT);
361 1.31 explorer
362 1.74 smb if (!pmf_device_register(self, NULL, NULL))
363 1.74 smb aprint_error_dev(self, "couldn't establish power handler\n");
364 1.85 dyoung return;
365 1.111 skrll
366 1.111 skrll fail_2:
367 1.111 skrll for (ub = &sc->sc_ibuff[0]; ub != &sc->sc_ibuff[UCOM_IN_BUFFS];
368 1.111 skrll ub++) {
369 1.111 skrll if (ub->ub_xfer)
370 1.111 skrll usbd_destroy_xfer(ub->ub_xfer);
371 1.111 skrll }
372 1.111 skrll for (ub = &sc->sc_obuff[0]; ub != &sc->sc_obuff[UCOM_OUT_BUFFS];
373 1.111 skrll ub++) {
374 1.111 skrll if (ub->ub_xfer)
375 1.111 skrll usbd_destroy_xfer(ub->ub_xfer);
376 1.111 skrll }
377 1.111 skrll
378 1.111 skrll fail_1:
379 1.111 skrll usbd_close_pipe(sc->sc_bulkin_pipe);
380 1.111 skrll
381 1.111 skrll fail_0:
382 1.111 skrll aprint_error_dev(self, "attach failed, error=%d\n", error);
383 1.111 skrll
384 1.111 skrll return;
385 1.12 augustss }
386 1.12 augustss
387 1.85 dyoung int
388 1.85 dyoung ucom_detach(device_t self, int flags)
389 1.12 augustss {
390 1.77 cube struct ucom_softc *sc = device_private(self);
391 1.36 augustss struct tty *tp = sc->sc_tty;
392 1.12 augustss int maj, mn;
393 1.111 skrll int i;
394 1.111 skrll
395 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
396 1.12 augustss
397 1.111 skrll DPRINTF("sc=%p flags=%d tp=%p", sc, flags, tp, 0);
398 1.111 skrll DPRINTF("... pipe=%d,%d",sc->sc_bulkin_no, sc->sc_bulkout_no, 0, 0);
399 1.12 augustss
400 1.111 skrll mutex_enter(&sc->sc_lock);
401 1.12 augustss sc->sc_dying = 1;
402 1.111 skrll mutex_exit(&sc->sc_lock);
403 1.111 skrll
404 1.74 smb pmf_device_deregister(self);
405 1.12 augustss
406 1.33 augustss if (sc->sc_bulkin_pipe != NULL)
407 1.33 augustss usbd_abort_pipe(sc->sc_bulkin_pipe);
408 1.33 augustss if (sc->sc_bulkout_pipe != NULL)
409 1.33 augustss usbd_abort_pipe(sc->sc_bulkout_pipe);
410 1.12 augustss
411 1.111 skrll mutex_enter(&sc->sc_lock);
412 1.111 skrll while (sc->sc_refcnt > 0) {
413 1.35 augustss /* Wake up anyone waiting */
414 1.36 augustss if (tp != NULL) {
415 1.71 ad mutex_spin_enter(&tty_lock);
416 1.36 augustss CLR(tp->t_state, TS_CARR_ON);
417 1.36 augustss CLR(tp->t_cflag, CLOCAL | MDMBUF);
418 1.36 augustss ttyflush(tp, FREAD|FWRITE);
419 1.71 ad mutex_spin_exit(&tty_lock);
420 1.36 augustss }
421 1.17 augustss /* Wait for processes to go away. */
422 1.111 skrll usb_detach_wait(sc->sc_dev, &sc->sc_detachcv, &sc->sc_lock);
423 1.17 augustss }
424 1.82 martin
425 1.82 martin softint_disestablish(sc->sc_si);
426 1.111 skrll mutex_exit(&sc->sc_lock);
427 1.12 augustss
428 1.12 augustss /* locate the major number */
429 1.44 gehenna maj = cdevsw_lookup_major(&ucom_cdevsw);
430 1.12 augustss
431 1.12 augustss /* Nuke the vnodes for any open instances. */
432 1.62 thorpej mn = device_unit(self);
433 1.111 skrll DPRINTF("maj=%d mn=%d\n", maj, mn, 0, 0);
434 1.12 augustss vdevgone(maj, mn, mn, VCHR);
435 1.22 augustss vdevgone(maj, mn | UCOMDIALOUT_MASK, mn | UCOMDIALOUT_MASK, VCHR);
436 1.22 augustss vdevgone(maj, mn | UCOMCALLUNIT_MASK, mn | UCOMCALLUNIT_MASK, VCHR);
437 1.12 augustss
438 1.12 augustss /* Detach and free the tty. */
439 1.36 augustss if (tp != NULL) {
440 1.36 augustss tty_detach(tp);
441 1.87 rmind tty_free(tp);
442 1.33 augustss sc->sc_tty = NULL;
443 1.33 augustss }
444 1.12 augustss
445 1.82 martin for (i = 0; i < UCOM_IN_BUFFS; i++) {
446 1.82 martin if (sc->sc_ibuff[i].ub_xfer != NULL)
447 1.111 skrll usbd_destroy_xfer(sc->sc_ibuff[i].ub_xfer);
448 1.82 martin }
449 1.82 martin
450 1.82 martin for (i = 0; i < UCOM_OUT_BUFFS; i++) {
451 1.82 martin if (sc->sc_obuff[i].ub_xfer != NULL)
452 1.111 skrll usbd_destroy_xfer(sc->sc_obuff[i].ub_xfer);
453 1.111 skrll }
454 1.111 skrll
455 1.111 skrll if (sc->sc_bulkin_pipe != NULL) {
456 1.111 skrll usbd_close_pipe(sc->sc_bulkin_pipe);
457 1.111 skrll sc->sc_bulkin_pipe = NULL;
458 1.111 skrll }
459 1.111 skrll
460 1.111 skrll if (sc->sc_bulkout_pipe != NULL) {
461 1.111 skrll usbd_close_pipe(sc->sc_bulkout_pipe);
462 1.111 skrll sc->sc_bulkout_pipe = NULL;
463 1.82 martin }
464 1.82 martin
465 1.31 explorer /* Detach the random source */
466 1.31 explorer rnd_detach_source(&sc->sc_rndsource);
467 1.31 explorer
468 1.111 skrll mutex_destroy(&sc->sc_lock);
469 1.111 skrll cv_destroy(&sc->sc_opencv);
470 1.111 skrll cv_destroy(&sc->sc_detachcv);
471 1.111 skrll
472 1.111 skrll return 0;
473 1.12 augustss }
474 1.12 augustss
475 1.12 augustss int
476 1.85 dyoung ucom_activate(device_t self, enum devact act)
477 1.12 augustss {
478 1.77 cube struct ucom_softc *sc = device_private(self);
479 1.12 augustss
480 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
481 1.111 skrll
482 1.111 skrll DPRINTFN(5, "%d", act, 0, 0, 0);
483 1.34 augustss
484 1.12 augustss switch (act) {
485 1.12 augustss case DVACT_DEACTIVATE:
486 1.111 skrll mutex_enter(&sc->sc_lock);
487 1.12 augustss sc->sc_dying = 1;
488 1.111 skrll mutex_exit(&sc->sc_lock);
489 1.81 dyoung return 0;
490 1.81 dyoung default:
491 1.81 dyoung return EOPNOTSUPP;
492 1.12 augustss }
493 1.12 augustss }
494 1.12 augustss
495 1.12 augustss void
496 1.24 augustss ucom_shutdown(struct ucom_softc *sc)
497 1.12 augustss {
498 1.12 augustss struct tty *tp = sc->sc_tty;
499 1.12 augustss
500 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
501 1.111 skrll
502 1.111 skrll KASSERT(mutex_owned(&sc->sc_lock));
503 1.12 augustss /*
504 1.12 augustss * Hang up if necessary. Wait a bit, so the other side has time to
505 1.12 augustss * notice even if we immediately open the port again.
506 1.12 augustss */
507 1.12 augustss if (ISSET(tp->t_cflag, HUPCL)) {
508 1.12 augustss ucom_dtr(sc, 0);
509 1.111 skrll /* XXX will only timeout */
510 1.111 skrll (void) kpause(ttclos, false, hz, &sc->sc_lock);
511 1.12 augustss }
512 1.12 augustss }
513 1.12 augustss
514 1.12 augustss int
515 1.69 christos ucomopen(dev_t dev, int flag, int mode, struct lwp *l)
516 1.12 augustss {
517 1.12 augustss int unit = UCOMUNIT(dev);
518 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd, unit);
519 1.82 martin struct ucom_buffer *ub;
520 1.12 augustss struct tty *tp;
521 1.12 augustss int error;
522 1.43 augustss
523 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
524 1.111 skrll
525 1.12 augustss if (sc == NULL)
526 1.111 skrll return ENXIO;
527 1.12 augustss
528 1.111 skrll mutex_enter(&sc->sc_lock);
529 1.111 skrll if (sc->sc_dying) {
530 1.111 skrll mutex_exit(&sc->sc_lock);
531 1.111 skrll return EIO;
532 1.111 skrll }
533 1.12 augustss
534 1.111 skrll if (!device_is_active(sc->sc_dev)) {
535 1.111 skrll mutex_exit(&sc->sc_lock);
536 1.111 skrll return ENXIO;
537 1.111 skrll }
538 1.12 augustss
539 1.12 augustss tp = sc->sc_tty;
540 1.12 augustss
541 1.111 skrll DPRINTF("unit=%d, tp=%p\n", unit, tp, 0, 0);
542 1.12 augustss
543 1.111 skrll if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp)) {
544 1.111 skrll mutex_exit(&sc->sc_lock);
545 1.111 skrll return EBUSY;
546 1.111 skrll }
547 1.12 augustss
548 1.12 augustss /*
549 1.113 mlelstv * Wait while the device is initialized by the
550 1.113 mlelstv * first opener or cleaned up by the last closer.
551 1.12 augustss */
552 1.113 mlelstv while (sc->sc_opening || sc->sc_closing) {
553 1.111 skrll error = cv_wait_sig(&sc->sc_opencv, &sc->sc_lock);
554 1.17 augustss
555 1.111 skrll if (error) {
556 1.111 skrll mutex_exit(&sc->sc_lock);
557 1.111 skrll return error;
558 1.111 skrll }
559 1.17 augustss }
560 1.111 skrll
561 1.12 augustss sc->sc_opening = 1;
562 1.43 augustss
563 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
564 1.12 augustss struct termios t;
565 1.12 augustss
566 1.12 augustss tp->t_dev = dev;
567 1.12 augustss
568 1.22 augustss if (sc->sc_methods->ucom_open != NULL) {
569 1.22 augustss error = sc->sc_methods->ucom_open(sc->sc_parent,
570 1.22 augustss sc->sc_portno);
571 1.22 augustss if (error) {
572 1.22 augustss ucom_cleanup(sc);
573 1.26 toshii sc->sc_opening = 0;
574 1.111 skrll cv_signal(&sc->sc_opencv);
575 1.111 skrll mutex_exit(&sc->sc_lock);
576 1.111 skrll return error;
577 1.22 augustss }
578 1.22 augustss }
579 1.22 augustss
580 1.12 augustss ucom_status_change(sc);
581 1.12 augustss
582 1.106 gdt /* Clear PPS capture state on first open. */
583 1.106 gdt mutex_spin_enter(&timecounter_lock);
584 1.106 gdt memset(&sc->sc_pps_state, 0, sizeof(sc->sc_pps_state));
585 1.106 gdt sc->sc_pps_state.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR;
586 1.106 gdt pps_init(&sc->sc_pps_state);
587 1.106 gdt mutex_spin_exit(&timecounter_lock);
588 1.106 gdt
589 1.12 augustss /*
590 1.12 augustss * Initialize the termios status to the defaults. Add in the
591 1.12 augustss * sticky bits from TIOCSFLAGS.
592 1.12 augustss */
593 1.12 augustss t.c_ispeed = 0;
594 1.12 augustss t.c_ospeed = TTYDEF_SPEED;
595 1.12 augustss t.c_cflag = TTYDEF_CFLAG;
596 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_CLOCAL))
597 1.12 augustss SET(t.c_cflag, CLOCAL);
598 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_CRTSCTS))
599 1.12 augustss SET(t.c_cflag, CRTSCTS);
600 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_MDMBUF))
601 1.12 augustss SET(t.c_cflag, MDMBUF);
602 1.12 augustss /* Make sure ucomparam() will do something. */
603 1.12 augustss tp->t_ospeed = 0;
604 1.12 augustss (void) ucomparam(tp, &t);
605 1.12 augustss tp->t_iflag = TTYDEF_IFLAG;
606 1.12 augustss tp->t_oflag = TTYDEF_OFLAG;
607 1.12 augustss tp->t_lflag = TTYDEF_LFLAG;
608 1.12 augustss ttychars(tp);
609 1.12 augustss ttsetwater(tp);
610 1.12 augustss
611 1.12 augustss /*
612 1.12 augustss * Turn on DTR. We must always do this, even if carrier is not
613 1.12 augustss * present, because otherwise we'd have to use TIOCSDTR
614 1.12 augustss * immediately after setting CLOCAL, which applications do not
615 1.12 augustss * expect. We always assert DTR while the device is open
616 1.64 gson * unless explicitly requested to deassert it. Ditto RTS.
617 1.12 augustss */
618 1.12 augustss ucom_dtr(sc, 1);
619 1.102 jakllsch ucom_rts(sc, 1);
620 1.12 augustss
621 1.82 martin sc->sc_rx_unblock = 0;
622 1.82 martin sc->sc_rx_stopped = 0;
623 1.82 martin sc->sc_tx_stopped = 0;
624 1.82 martin
625 1.82 martin for (ub = &sc->sc_ibuff[0]; ub != &sc->sc_ibuff[UCOM_IN_BUFFS];
626 1.82 martin ub++) {
627 1.82 martin if (ucomsubmitread(sc, ub) != USBD_NORMAL_COMPLETION) {
628 1.82 martin error = EIO;
629 1.82 martin goto fail_2;
630 1.82 martin }
631 1.28 toshii }
632 1.12 augustss }
633 1.12 augustss sc->sc_opening = 0;
634 1.111 skrll cv_signal(&sc->sc_opencv);
635 1.111 skrll mutex_exit(&sc->sc_lock);
636 1.12 augustss
637 1.12 augustss error = ttyopen(tp, UCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
638 1.12 augustss if (error)
639 1.12 augustss goto bad;
640 1.12 augustss
641 1.32 eeh error = (*tp->t_linesw->l_open)(dev, tp);
642 1.12 augustss if (error)
643 1.12 augustss goto bad;
644 1.12 augustss
645 1.111 skrll return 0;
646 1.26 toshii
647 1.26 toshii fail_2:
648 1.82 martin usbd_abort_pipe(sc->sc_bulkin_pipe);
649 1.82 martin usbd_abort_pipe(sc->sc_bulkout_pipe);
650 1.82 martin
651 1.111 skrll mutex_enter(&sc->sc_lock);
652 1.26 toshii sc->sc_opening = 0;
653 1.111 skrll cv_signal(&sc->sc_opencv);
654 1.111 skrll mutex_exit(&sc->sc_lock);
655 1.111 skrll
656 1.111 skrll return error;
657 1.12 augustss
658 1.12 augustss bad:
659 1.111 skrll mutex_spin_enter(&tty_lock);
660 1.82 martin CLR(tp->t_state, TS_BUSY);
661 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
662 1.12 augustss /*
663 1.12 augustss * We failed to open the device, and nobody else had it opened.
664 1.12 augustss * Clean up the state as appropriate.
665 1.12 augustss */
666 1.12 augustss ucom_cleanup(sc);
667 1.12 augustss }
668 1.111 skrll mutex_spin_exit(&tty_lock);
669 1.12 augustss
670 1.111 skrll return error;
671 1.12 augustss }
672 1.12 augustss
673 1.12 augustss int
674 1.69 christos ucomclose(dev_t dev, int flag, int mode, struct lwp *l)
675 1.12 augustss {
676 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd, UCOMUNIT(dev));
677 1.101 jakllsch struct tty *tp;
678 1.12 augustss
679 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
680 1.111 skrll
681 1.111 skrll DPRINTF("unit=%d", UCOMUNIT(dev), 0, 0, 0);
682 1.101 jakllsch
683 1.101 jakllsch if (sc == NULL)
684 1.101 jakllsch return 0;
685 1.101 jakllsch
686 1.111 skrll mutex_enter(&sc->sc_lock);
687 1.101 jakllsch tp = sc->sc_tty;
688 1.101 jakllsch
689 1.113 mlelstv while (sc->sc_closing)
690 1.113 mlelstv cv_wait(&sc->sc_opencv, &sc->sc_lock);
691 1.113 mlelstv sc->sc_closing = 1;
692 1.113 mlelstv
693 1.111 skrll if (!ISSET(tp->t_state, TS_ISOPEN)) {
694 1.111 skrll goto out;
695 1.111 skrll }
696 1.12 augustss
697 1.17 augustss sc->sc_refcnt++;
698 1.17 augustss
699 1.32 eeh (*tp->t_linesw->l_close)(tp, flag);
700 1.12 augustss ttyclose(tp);
701 1.12 augustss
702 1.12 augustss if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
703 1.12 augustss /*
704 1.12 augustss * Although we got a last close, the device may still be in
705 1.12 augustss * use; e.g. if this was the dialout node, and there are still
706 1.12 augustss * processes waiting for carrier on the non-dialout node.
707 1.12 augustss */
708 1.12 augustss ucom_cleanup(sc);
709 1.12 augustss }
710 1.12 augustss
711 1.14 augustss if (sc->sc_methods->ucom_close != NULL)
712 1.14 augustss sc->sc_methods->ucom_close(sc->sc_parent, sc->sc_portno);
713 1.14 augustss
714 1.17 augustss if (--sc->sc_refcnt < 0)
715 1.111 skrll usb_detach_broadcast(sc->sc_dev, &sc->sc_detachcv);
716 1.17 augustss
717 1.111 skrll out:
718 1.113 mlelstv sc->sc_closing = 0;
719 1.113 mlelstv cv_signal(&sc->sc_opencv);
720 1.113 mlelstv
721 1.111 skrll mutex_exit(&sc->sc_lock);
722 1.111 skrll
723 1.111 skrll return 0;
724 1.12 augustss }
725 1.43 augustss
726 1.12 augustss int
727 1.24 augustss ucomread(dev_t dev, struct uio *uio, int flag)
728 1.12 augustss {
729 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd, UCOMUNIT(dev));
730 1.101 jakllsch struct tty *tp;
731 1.17 augustss int error;
732 1.12 augustss
733 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
734 1.111 skrll
735 1.111 skrll if (sc == NULL)
736 1.111 skrll return EIO;
737 1.111 skrll
738 1.111 skrll mutex_enter(&sc->sc_lock);
739 1.111 skrll if (sc->sc_dying) {
740 1.111 skrll mutex_exit(&sc->sc_lock);
741 1.111 skrll return EIO;
742 1.111 skrll }
743 1.43 augustss
744 1.101 jakllsch tp = sc->sc_tty;
745 1.101 jakllsch
746 1.17 augustss sc->sc_refcnt++;
747 1.111 skrll mutex_exit(&sc->sc_lock);
748 1.32 eeh error = ((*tp->t_linesw->l_read)(tp, uio, flag));
749 1.111 skrll mutex_enter(&sc->sc_lock);
750 1.111 skrll
751 1.17 augustss if (--sc->sc_refcnt < 0)
752 1.111 skrll usb_detach_broadcast(sc->sc_dev, &sc->sc_detachcv);
753 1.111 skrll mutex_exit(&sc->sc_lock);
754 1.111 skrll
755 1.111 skrll return error;
756 1.12 augustss }
757 1.43 augustss
758 1.12 augustss int
759 1.24 augustss ucomwrite(dev_t dev, struct uio *uio, int flag)
760 1.12 augustss {
761 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd, UCOMUNIT(dev));
762 1.101 jakllsch struct tty *tp;
763 1.17 augustss int error;
764 1.12 augustss
765 1.111 skrll if (sc == NULL)
766 1.111 skrll return EIO;
767 1.111 skrll
768 1.111 skrll mutex_enter(&sc->sc_lock);
769 1.111 skrll if (sc->sc_dying) {
770 1.111 skrll mutex_exit(&sc->sc_lock);
771 1.111 skrll return EIO;
772 1.111 skrll }
773 1.43 augustss
774 1.101 jakllsch tp = sc->sc_tty;
775 1.101 jakllsch
776 1.17 augustss sc->sc_refcnt++;
777 1.111 skrll mutex_exit(&sc->sc_lock);
778 1.32 eeh error = ((*tp->t_linesw->l_write)(tp, uio, flag));
779 1.111 skrll mutex_enter(&sc->sc_lock);
780 1.38 scw if (--sc->sc_refcnt < 0)
781 1.111 skrll usb_detach_broadcast(sc->sc_dev, &sc->sc_detachcv);
782 1.111 skrll mutex_exit(&sc->sc_lock);
783 1.111 skrll
784 1.111 skrll return error;
785 1.38 scw }
786 1.38 scw
787 1.38 scw int
788 1.60 christos ucompoll(dev_t dev, int events, struct lwp *l)
789 1.38 scw {
790 1.94 jakllsch struct ucom_softc *sc;
791 1.94 jakllsch struct tty *tp;
792 1.56 ws int revents;
793 1.38 scw
794 1.94 jakllsch sc = device_lookup_private(&ucom_cd, UCOMUNIT(dev));
795 1.111 skrll if (sc == NULL)
796 1.111 skrll return POLLHUP;
797 1.43 augustss
798 1.111 skrll mutex_enter(&sc->sc_lock);
799 1.111 skrll if (sc->sc_dying) {
800 1.111 skrll mutex_exit(&sc->sc_lock);
801 1.111 skrll return POLLHUP;
802 1.111 skrll }
803 1.94 jakllsch tp = sc->sc_tty;
804 1.94 jakllsch
805 1.38 scw sc->sc_refcnt++;
806 1.111 skrll mutex_exit(&sc->sc_lock);
807 1.60 christos revents = ((*tp->t_linesw->l_poll)(tp, events, l));
808 1.111 skrll mutex_enter(&sc->sc_lock);
809 1.17 augustss if (--sc->sc_refcnt < 0)
810 1.111 skrll usb_detach_broadcast(sc->sc_dev, &sc->sc_detachcv);
811 1.111 skrll mutex_exit(&sc->sc_lock);
812 1.111 skrll
813 1.111 skrll return revents;
814 1.12 augustss }
815 1.12 augustss
816 1.12 augustss struct tty *
817 1.24 augustss ucomtty(dev_t dev)
818 1.12 augustss {
819 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd, UCOMUNIT(dev));
820 1.12 augustss
821 1.111 skrll return sc != NULL ? sc->sc_tty : NULL;
822 1.12 augustss }
823 1.12 augustss
824 1.12 augustss int
825 1.70 christos ucomioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
826 1.12 augustss {
827 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd, UCOMUNIT(dev));
828 1.17 augustss int error;
829 1.17 augustss
830 1.111 skrll if (sc == NULL)
831 1.111 skrll return EIO;
832 1.111 skrll
833 1.111 skrll mutex_enter(&sc->sc_lock);
834 1.111 skrll if (sc->sc_dying) {
835 1.111 skrll mutex_exit(&sc->sc_lock);
836 1.111 skrll return EIO;
837 1.111 skrll }
838 1.101 jakllsch
839 1.17 augustss sc->sc_refcnt++;
840 1.60 christos error = ucom_do_ioctl(sc, cmd, data, flag, l);
841 1.17 augustss if (--sc->sc_refcnt < 0)
842 1.111 skrll usb_detach_broadcast(sc->sc_dev, &sc->sc_detachcv);
843 1.111 skrll mutex_exit(&sc->sc_lock);
844 1.111 skrll return error;
845 1.17 augustss }
846 1.17 augustss
847 1.82 martin static int
848 1.70 christos ucom_do_ioctl(struct ucom_softc *sc, u_long cmd, void *data,
849 1.60 christos int flag, struct lwp *l)
850 1.17 augustss {
851 1.12 augustss struct tty *tp = sc->sc_tty;
852 1.12 augustss int error;
853 1.12 augustss
854 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
855 1.111 skrll
856 1.111 skrll DPRINTF("cmd=0x%08lx", cmd, 0, 0, 0);
857 1.12 augustss
858 1.60 christos error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
859 1.42 atatat if (error != EPASSTHROUGH)
860 1.111 skrll return error;
861 1.12 augustss
862 1.60 christos error = ttioctl(tp, cmd, data, flag, l);
863 1.42 atatat if (error != EPASSTHROUGH)
864 1.111 skrll return error;
865 1.12 augustss
866 1.12 augustss if (sc->sc_methods->ucom_ioctl != NULL) {
867 1.12 augustss error = sc->sc_methods->ucom_ioctl(sc->sc_parent,
868 1.60 christos sc->sc_portno, cmd, data, flag, l->l_proc);
869 1.42 atatat if (error != EPASSTHROUGH)
870 1.111 skrll return error;
871 1.12 augustss }
872 1.12 augustss
873 1.12 augustss error = 0;
874 1.12 augustss
875 1.111 skrll DPRINTF("our cmd=0x%08lx", cmd, 0, 0, 0);
876 1.111 skrll //mutex_enter(&tty_lock);
877 1.12 augustss
878 1.12 augustss switch (cmd) {
879 1.12 augustss case TIOCSBRK:
880 1.12 augustss ucom_break(sc, 1);
881 1.12 augustss break;
882 1.12 augustss
883 1.12 augustss case TIOCCBRK:
884 1.12 augustss ucom_break(sc, 0);
885 1.12 augustss break;
886 1.12 augustss
887 1.12 augustss case TIOCSDTR:
888 1.12 augustss ucom_dtr(sc, 1);
889 1.12 augustss break;
890 1.12 augustss
891 1.12 augustss case TIOCCDTR:
892 1.12 augustss ucom_dtr(sc, 0);
893 1.12 augustss break;
894 1.12 augustss
895 1.12 augustss case TIOCGFLAGS:
896 1.12 augustss *(int *)data = sc->sc_swflags;
897 1.12 augustss break;
898 1.12 augustss
899 1.12 augustss case TIOCSFLAGS:
900 1.67 elad error = kauth_authorize_device_tty(l->l_cred,
901 1.67 elad KAUTH_DEVICE_TTY_PRIVSET, tp);
902 1.12 augustss if (error)
903 1.12 augustss break;
904 1.12 augustss sc->sc_swflags = *(int *)data;
905 1.12 augustss break;
906 1.12 augustss
907 1.12 augustss case TIOCMSET:
908 1.12 augustss case TIOCMBIS:
909 1.12 augustss case TIOCMBIC:
910 1.12 augustss tiocm_to_ucom(sc, cmd, *(int *)data);
911 1.12 augustss break;
912 1.12 augustss
913 1.12 augustss case TIOCMGET:
914 1.12 augustss *(int *)data = ucom_to_tiocm(sc);
915 1.12 augustss break;
916 1.12 augustss
917 1.106 gdt case PPS_IOC_CREATE:
918 1.106 gdt case PPS_IOC_DESTROY:
919 1.106 gdt case PPS_IOC_GETPARAMS:
920 1.106 gdt case PPS_IOC_SETPARAMS:
921 1.106 gdt case PPS_IOC_GETCAP:
922 1.106 gdt case PPS_IOC_FETCH:
923 1.106 gdt #ifdef PPS_SYNC
924 1.106 gdt case PPS_IOC_KCBIND:
925 1.106 gdt #endif
926 1.106 gdt mutex_spin_enter(&timecounter_lock);
927 1.106 gdt error = pps_ioctl(cmd, data, &sc->sc_pps_state);
928 1.106 gdt mutex_spin_exit(&timecounter_lock);
929 1.106 gdt break;
930 1.106 gdt
931 1.12 augustss default:
932 1.42 atatat error = EPASSTHROUGH;
933 1.12 augustss break;
934 1.12 augustss }
935 1.12 augustss
936 1.111 skrll //mutex_exit(&tty_lock);
937 1.12 augustss
938 1.111 skrll return error;
939 1.12 augustss }
940 1.12 augustss
941 1.82 martin static void
942 1.29 toshii tiocm_to_ucom(struct ucom_softc *sc, u_long how, int ttybits)
943 1.12 augustss {
944 1.12 augustss u_char combits;
945 1.3 augustss
946 1.12 augustss combits = 0;
947 1.12 augustss if (ISSET(ttybits, TIOCM_DTR))
948 1.12 augustss SET(combits, UMCR_DTR);
949 1.12 augustss if (ISSET(ttybits, TIOCM_RTS))
950 1.12 augustss SET(combits, UMCR_RTS);
951 1.43 augustss
952 1.12 augustss switch (how) {
953 1.12 augustss case TIOCMBIC:
954 1.12 augustss CLR(sc->sc_mcr, combits);
955 1.12 augustss break;
956 1.12 augustss
957 1.12 augustss case TIOCMBIS:
958 1.12 augustss SET(sc->sc_mcr, combits);
959 1.12 augustss break;
960 1.12 augustss
961 1.12 augustss case TIOCMSET:
962 1.12 augustss CLR(sc->sc_mcr, UMCR_DTR | UMCR_RTS);
963 1.12 augustss SET(sc->sc_mcr, combits);
964 1.12 augustss break;
965 1.12 augustss }
966 1.12 augustss
967 1.27 toshii if (how == TIOCMSET || ISSET(combits, UMCR_DTR))
968 1.27 toshii ucom_dtr(sc, (sc->sc_mcr & UMCR_DTR) != 0);
969 1.27 toshii if (how == TIOCMSET || ISSET(combits, UMCR_RTS))
970 1.27 toshii ucom_rts(sc, (sc->sc_mcr & UMCR_RTS) != 0);
971 1.12 augustss }
972 1.12 augustss
973 1.82 martin static int
974 1.24 augustss ucom_to_tiocm(struct ucom_softc *sc)
975 1.12 augustss {
976 1.12 augustss u_char combits;
977 1.12 augustss int ttybits = 0;
978 1.12 augustss
979 1.12 augustss combits = sc->sc_mcr;
980 1.12 augustss if (ISSET(combits, UMCR_DTR))
981 1.12 augustss SET(ttybits, TIOCM_DTR);
982 1.12 augustss if (ISSET(combits, UMCR_RTS))
983 1.12 augustss SET(ttybits, TIOCM_RTS);
984 1.12 augustss
985 1.12 augustss combits = sc->sc_msr;
986 1.12 augustss if (ISSET(combits, UMSR_DCD))
987 1.12 augustss SET(ttybits, TIOCM_CD);
988 1.12 augustss if (ISSET(combits, UMSR_CTS))
989 1.12 augustss SET(ttybits, TIOCM_CTS);
990 1.12 augustss if (ISSET(combits, UMSR_DSR))
991 1.12 augustss SET(ttybits, TIOCM_DSR);
992 1.12 augustss if (ISSET(combits, UMSR_RI | UMSR_TERI))
993 1.12 augustss SET(ttybits, TIOCM_RI);
994 1.12 augustss
995 1.12 augustss #if 0
996 1.12 augustss XXX;
997 1.12 augustss if (sc->sc_ier != 0)
998 1.12 augustss SET(ttybits, TIOCM_LE);
999 1.12 augustss #endif
1000 1.12 augustss
1001 1.111 skrll return ttybits;
1002 1.12 augustss }
1003 1.12 augustss
1004 1.82 martin static void
1005 1.77 cube ucom_break(struct ucom_softc *sc, int onoff)
1006 1.12 augustss {
1007 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
1008 1.111 skrll
1009 1.111 skrll DPRINTF("onoff=%d", onoff, 0, 0, 0);
1010 1.12 augustss
1011 1.14 augustss if (sc->sc_methods->ucom_set != NULL)
1012 1.14 augustss sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
1013 1.14 augustss UCOM_SET_BREAK, onoff);
1014 1.12 augustss }
1015 1.12 augustss
1016 1.82 martin static void
1017 1.24 augustss ucom_dtr(struct ucom_softc *sc, int onoff)
1018 1.12 augustss {
1019 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
1020 1.111 skrll
1021 1.111 skrll DPRINTF("onoff=%d", onoff, 0, 0, 0);
1022 1.12 augustss
1023 1.14 augustss if (sc->sc_methods->ucom_set != NULL)
1024 1.43 augustss sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
1025 1.14 augustss UCOM_SET_DTR, onoff);
1026 1.12 augustss }
1027 1.12 augustss
1028 1.82 martin static void
1029 1.24 augustss ucom_rts(struct ucom_softc *sc, int onoff)
1030 1.12 augustss {
1031 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
1032 1.111 skrll
1033 1.111 skrll DPRINTF("onoff=%d", onoff, 0, 0, 0);
1034 1.12 augustss
1035 1.14 augustss if (sc->sc_methods->ucom_set != NULL)
1036 1.43 augustss sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
1037 1.14 augustss UCOM_SET_RTS, onoff);
1038 1.12 augustss }
1039 1.12 augustss
1040 1.22 augustss void
1041 1.24 augustss ucom_status_change(struct ucom_softc *sc)
1042 1.12 augustss {
1043 1.27 toshii struct tty *tp = sc->sc_tty;
1044 1.27 toshii u_char old_msr;
1045 1.27 toshii
1046 1.14 augustss if (sc->sc_methods->ucom_get_status != NULL) {
1047 1.27 toshii old_msr = sc->sc_msr;
1048 1.14 augustss sc->sc_methods->ucom_get_status(sc->sc_parent, sc->sc_portno,
1049 1.14 augustss &sc->sc_lsr, &sc->sc_msr);
1050 1.106 gdt if (ISSET((sc->sc_msr ^ old_msr), UMSR_DCD)) {
1051 1.106 gdt mutex_spin_enter(&timecounter_lock);
1052 1.106 gdt pps_capture(&sc->sc_pps_state);
1053 1.106 gdt pps_event(&sc->sc_pps_state,
1054 1.106 gdt (sc->sc_msr & UMSR_DCD) ?
1055 1.106 gdt PPS_CAPTUREASSERT :
1056 1.106 gdt PPS_CAPTURECLEAR);
1057 1.106 gdt mutex_spin_exit(&timecounter_lock);
1058 1.106 gdt
1059 1.32 eeh (*tp->t_linesw->l_modem)(tp,
1060 1.27 toshii ISSET(sc->sc_msr, UMSR_DCD));
1061 1.106 gdt }
1062 1.14 augustss } else {
1063 1.14 augustss sc->sc_lsr = 0;
1064 1.54 augustss /* Assume DCD is present, if we have no chance to check it. */
1065 1.54 augustss sc->sc_msr = UMSR_DCD;
1066 1.14 augustss }
1067 1.12 augustss }
1068 1.12 augustss
1069 1.82 martin static int
1070 1.24 augustss ucomparam(struct tty *tp, struct termios *t)
1071 1.12 augustss {
1072 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd,
1073 1.77 cube UCOMUNIT(tp->t_dev));
1074 1.14 augustss int error;
1075 1.12 augustss
1076 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
1077 1.111 skrll
1078 1.101 jakllsch if (sc == NULL || sc->sc_dying)
1079 1.111 skrll return EIO;
1080 1.12 augustss
1081 1.12 augustss /* Check requested parameters. */
1082 1.12 augustss if (t->c_ispeed && t->c_ispeed != t->c_ospeed)
1083 1.111 skrll return EINVAL;
1084 1.12 augustss
1085 1.12 augustss /*
1086 1.12 augustss * For the console, always force CLOCAL and !HUPCL, so that the port
1087 1.12 augustss * is always active.
1088 1.12 augustss */
1089 1.12 augustss if (ISSET(sc->sc_swflags, TIOCFLAG_SOFTCAR)) {
1090 1.12 augustss SET(t->c_cflag, CLOCAL);
1091 1.12 augustss CLR(t->c_cflag, HUPCL);
1092 1.12 augustss }
1093 1.12 augustss
1094 1.12 augustss /*
1095 1.12 augustss * If there were no changes, don't do anything. This avoids dropping
1096 1.12 augustss * input and improves performance when all we did was frob things like
1097 1.12 augustss * VMIN and VTIME.
1098 1.12 augustss */
1099 1.12 augustss if (tp->t_ospeed == t->c_ospeed &&
1100 1.12 augustss tp->t_cflag == t->c_cflag)
1101 1.111 skrll return 0;
1102 1.12 augustss
1103 1.30 augustss /* XXX lcr = ISSET(sc->sc_lcr, LCR_SBREAK) | cflag2lcr(t->c_cflag); */
1104 1.12 augustss
1105 1.12 augustss /* And copy to tty. */
1106 1.12 augustss tp->t_ispeed = 0;
1107 1.12 augustss tp->t_ospeed = t->c_ospeed;
1108 1.12 augustss tp->t_cflag = t->c_cflag;
1109 1.12 augustss
1110 1.14 augustss if (sc->sc_methods->ucom_param != NULL) {
1111 1.14 augustss error = sc->sc_methods->ucom_param(sc->sc_parent, sc->sc_portno,
1112 1.14 augustss t);
1113 1.14 augustss if (error)
1114 1.111 skrll return error;
1115 1.14 augustss }
1116 1.12 augustss
1117 1.30 augustss /* XXX worry about CHWFLOW */
1118 1.12 augustss
1119 1.12 augustss /*
1120 1.12 augustss * Update the tty layer's idea of the carrier bit, in case we changed
1121 1.12 augustss * CLOCAL or MDMBUF. We don't hang up here; we only do that by
1122 1.12 augustss * explicit request.
1123 1.12 augustss */
1124 1.111 skrll DPRINTF("l_modem", 0, 0, 0, 0);
1125 1.54 augustss (void) (*tp->t_linesw->l_modem)(tp, ISSET(sc->sc_msr, UMSR_DCD));
1126 1.12 augustss
1127 1.12 augustss #if 0
1128 1.12 augustss XXX what if the hardware is not open
1129 1.12 augustss if (!ISSET(t->c_cflag, CHWFLOW)) {
1130 1.12 augustss if (sc->sc_tx_stopped) {
1131 1.12 augustss sc->sc_tx_stopped = 0;
1132 1.12 augustss ucomstart(tp);
1133 1.12 augustss }
1134 1.12 augustss }
1135 1.12 augustss #endif
1136 1.12 augustss
1137 1.111 skrll return 0;
1138 1.12 augustss }
1139 1.12 augustss
1140 1.82 martin static int
1141 1.82 martin ucomhwiflow(struct tty *tp, int block)
1142 1.12 augustss {
1143 1.82 martin struct ucom_softc *sc = device_lookup_private(&ucom_cd,
1144 1.82 martin UCOMUNIT(tp->t_dev));
1145 1.82 martin int old;
1146 1.12 augustss
1147 1.101 jakllsch if (sc == NULL)
1148 1.111 skrll return 0;
1149 1.101 jakllsch
1150 1.111 skrll mutex_enter(&sc->sc_lock);
1151 1.82 martin old = sc->sc_rx_stopped;
1152 1.82 martin sc->sc_rx_stopped = (u_char)block;
1153 1.12 augustss
1154 1.82 martin if (old && !block) {
1155 1.82 martin sc->sc_rx_unblock = 1;
1156 1.82 martin softint_schedule(sc->sc_si);
1157 1.12 augustss }
1158 1.111 skrll mutex_exit(&sc->sc_lock);
1159 1.82 martin
1160 1.111 skrll return 1;
1161 1.1 augustss }
1162 1.3 augustss
1163 1.82 martin static void
1164 1.24 augustss ucomstart(struct tty *tp)
1165 1.12 augustss {
1166 1.77 cube struct ucom_softc *sc = device_lookup_private(&ucom_cd,
1167 1.77 cube UCOMUNIT(tp->t_dev));
1168 1.82 martin struct ucom_buffer *ub;
1169 1.12 augustss u_char *data;
1170 1.12 augustss int cnt;
1171 1.12 augustss
1172 1.111 skrll if (sc == NULL)
1173 1.111 skrll return;
1174 1.111 skrll
1175 1.111 skrll KASSERT(&sc->sc_lock);
1176 1.111 skrll KASSERT(mutex_owned(&tty_lock));
1177 1.111 skrll if (sc->sc_dying) {
1178 1.12 augustss return;
1179 1.111 skrll }
1180 1.12 augustss
1181 1.84 christos if (ISSET(tp->t_state, TS_BUSY | TS_TIMEOUT | TS_TTSTOP))
1182 1.12 augustss goto out;
1183 1.12 augustss if (sc->sc_tx_stopped)
1184 1.12 augustss goto out;
1185 1.12 augustss
1186 1.82 martin if (!ttypull(tp))
1187 1.73 ad goto out;
1188 1.12 augustss
1189 1.12 augustss /* Grab the first contiguous region of buffer space. */
1190 1.12 augustss data = tp->t_outq.c_cf;
1191 1.12 augustss cnt = ndqb(&tp->t_outq, 0);
1192 1.12 augustss
1193 1.84 christos if (cnt == 0)
1194 1.12 augustss goto out;
1195 1.12 augustss
1196 1.82 martin ub = SIMPLEQ_FIRST(&sc->sc_obuff_free);
1197 1.100 mlelstv if (ub == NULL) {
1198 1.100 mlelstv SET(tp->t_state, TS_BUSY);
1199 1.100 mlelstv goto out;
1200 1.100 mlelstv }
1201 1.111 skrll
1202 1.82 martin SIMPLEQ_REMOVE_HEAD(&sc->sc_obuff_free, ub_link);
1203 1.12 augustss
1204 1.82 martin if (SIMPLEQ_FIRST(&sc->sc_obuff_free) == NULL)
1205 1.82 martin SET(tp->t_state, TS_BUSY);
1206 1.82 martin
1207 1.82 martin if (cnt > sc->sc_obufsize)
1208 1.19 augustss cnt = sc->sc_obufsize;
1209 1.82 martin
1210 1.22 augustss if (sc->sc_methods->ucom_write != NULL)
1211 1.22 augustss sc->sc_methods->ucom_write(sc->sc_parent, sc->sc_portno,
1212 1.82 martin ub->ub_data, data, &cnt);
1213 1.22 augustss else
1214 1.82 martin memcpy(ub->ub_data, data, cnt);
1215 1.82 martin
1216 1.82 martin ub->ub_len = cnt;
1217 1.82 martin ub->ub_index = 0;
1218 1.12 augustss
1219 1.82 martin SIMPLEQ_INSERT_TAIL(&sc->sc_obuff_full, ub, ub_link);
1220 1.82 martin
1221 1.82 martin softint_schedule(sc->sc_si);
1222 1.3 augustss
1223 1.82 martin out:
1224 1.111 skrll return;
1225 1.12 augustss }
1226 1.12 augustss
1227 1.21 itojun void
1228 1.69 christos ucomstop(struct tty *tp, int flag)
1229 1.12 augustss {
1230 1.19 augustss #if 0
1231 1.111 skrll struct ucom_softc *sc =
1232 1.111 skrll device_lookup_private(&ucom_cd, UCOMUNIT(tp->t_dev));
1233 1.12 augustss
1234 1.111 skrll mutex_enter(&sc->sc_lock);
1235 1.111 skrll mutex_spin_enter(&tty_lock);
1236 1.12 augustss if (ISSET(tp->t_state, TS_BUSY)) {
1237 1.111 skrll /* obuff_full -> obuff_free? */
1238 1.19 augustss /* sc->sc_tx_stopped = 1; */
1239 1.12 augustss if (!ISSET(tp->t_state, TS_TTSTOP))
1240 1.12 augustss SET(tp->t_state, TS_FLUSH);
1241 1.12 augustss }
1242 1.111 skrll mutex_spin_exit(&tty_lock);
1243 1.111 skrll mutex_exit(&sc->sc_lock);
1244 1.19 augustss #endif
1245 1.12 augustss }
1246 1.12 augustss
1247 1.82 martin static void
1248 1.82 martin ucom_write_status(struct ucom_softc *sc, struct ucom_buffer *ub,
1249 1.82 martin usbd_status err)
1250 1.82 martin {
1251 1.82 martin struct tty *tp = sc->sc_tty;
1252 1.82 martin uint32_t cc = ub->ub_len;
1253 1.82 martin
1254 1.111 skrll KASSERT(mutex_owned(&sc->sc_lock));
1255 1.111 skrll
1256 1.82 martin switch (err) {
1257 1.82 martin case USBD_IN_PROGRESS:
1258 1.82 martin ub->ub_index = ub->ub_len;
1259 1.82 martin break;
1260 1.82 martin case USBD_STALLED:
1261 1.82 martin ub->ub_index = 0;
1262 1.82 martin softint_schedule(sc->sc_si);
1263 1.82 martin break;
1264 1.82 martin case USBD_NORMAL_COMPLETION:
1265 1.82 martin usbd_get_xfer_status(ub->ub_xfer, NULL, NULL, &cc, NULL);
1266 1.82 martin rnd_add_uint32(&sc->sc_rndsource, cc);
1267 1.82 martin /*FALLTHROUGH*/
1268 1.82 martin default:
1269 1.82 martin SIMPLEQ_REMOVE_HEAD(&sc->sc_obuff_full, ub_link);
1270 1.82 martin SIMPLEQ_INSERT_TAIL(&sc->sc_obuff_free, ub, ub_link);
1271 1.82 martin cc -= sc->sc_opkthdrlen;
1272 1.82 martin
1273 1.100 mlelstv mutex_spin_enter(&tty_lock);
1274 1.82 martin CLR(tp->t_state, TS_BUSY);
1275 1.82 martin if (ISSET(tp->t_state, TS_FLUSH))
1276 1.82 martin CLR(tp->t_state, TS_FLUSH);
1277 1.82 martin else
1278 1.82 martin ndflush(&tp->t_outq, cc);
1279 1.100 mlelstv mutex_spin_exit(&tty_lock);
1280 1.82 martin
1281 1.82 martin if (err != USBD_CANCELLED && err != USBD_IOERROR &&
1282 1.82 martin !sc->sc_dying) {
1283 1.82 martin if ((ub = SIMPLEQ_FIRST(&sc->sc_obuff_full)) != NULL)
1284 1.82 martin ucom_submit_write(sc, ub);
1285 1.82 martin
1286 1.111 skrll mutex_spin_enter(&tty_lock);
1287 1.82 martin (*tp->t_linesw->l_start)(tp);
1288 1.111 skrll mutex_spin_exit(&tty_lock);
1289 1.82 martin }
1290 1.82 martin break;
1291 1.82 martin }
1292 1.82 martin }
1293 1.82 martin
1294 1.82 martin static void
1295 1.82 martin ucom_submit_write(struct ucom_softc *sc, struct ucom_buffer *ub)
1296 1.82 martin {
1297 1.82 martin
1298 1.111 skrll KASSERT(mutex_owned(&sc->sc_lock));
1299 1.111 skrll
1300 1.111 skrll usbd_setup_xfer(ub->ub_xfer, sc, ub->ub_data, ub->ub_len,
1301 1.111 skrll 0, USBD_NO_TIMEOUT, ucomwritecb);
1302 1.82 martin
1303 1.82 martin ucom_write_status(sc, ub, usbd_transfer(ub->ub_xfer));
1304 1.82 martin }
1305 1.82 martin
1306 1.82 martin static void
1307 1.111 skrll ucomwritecb(struct usbd_xfer *xfer, void *p, usbd_status status)
1308 1.12 augustss {
1309 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)p;
1310 1.82 martin
1311 1.111 skrll mutex_enter(&sc->sc_lock);
1312 1.82 martin ucom_write_status(sc, SIMPLEQ_FIRST(&sc->sc_obuff_full), status);
1313 1.111 skrll mutex_exit(&sc->sc_lock);
1314 1.82 martin
1315 1.82 martin }
1316 1.82 martin
1317 1.82 martin static void
1318 1.82 martin ucom_softintr(void *arg)
1319 1.82 martin {
1320 1.82 martin struct ucom_softc *sc = arg;
1321 1.12 augustss struct tty *tp = sc->sc_tty;
1322 1.82 martin struct ucom_buffer *ub;
1323 1.12 augustss
1324 1.111 skrll mutex_enter(&sc->sc_lock);
1325 1.111 skrll mutex_enter(&tty_lock);
1326 1.111 skrll if (!ISSET(tp->t_state, TS_ISOPEN)) {
1327 1.111 skrll mutex_exit(&tty_lock);
1328 1.111 skrll mutex_exit(&sc->sc_lock);
1329 1.82 martin return;
1330 1.111 skrll }
1331 1.111 skrll mutex_exit(&tty_lock);
1332 1.12 augustss
1333 1.82 martin ub = SIMPLEQ_FIRST(&sc->sc_obuff_full);
1334 1.82 martin
1335 1.82 martin if (ub != NULL && ub->ub_index == 0)
1336 1.82 martin ucom_submit_write(sc, ub);
1337 1.12 augustss
1338 1.82 martin if (sc->sc_rx_unblock)
1339 1.82 martin ucom_read_complete(sc);
1340 1.12 augustss
1341 1.111 skrll mutex_exit(&sc->sc_lock);
1342 1.82 martin }
1343 1.82 martin
1344 1.82 martin static void
1345 1.82 martin ucom_read_complete(struct ucom_softc *sc)
1346 1.82 martin {
1347 1.82 martin int (*rint)(int, struct tty *);
1348 1.82 martin struct ucom_buffer *ub;
1349 1.82 martin struct tty *tp;
1350 1.111 skrll
1351 1.111 skrll KASSERT(mutex_owned(&sc->sc_lock));
1352 1.82 martin
1353 1.82 martin tp = sc->sc_tty;
1354 1.82 martin rint = tp->t_linesw->l_rint;
1355 1.82 martin ub = SIMPLEQ_FIRST(&sc->sc_ibuff_full);
1356 1.39 augustss
1357 1.82 martin while (ub != NULL && !sc->sc_rx_stopped) {
1358 1.82 martin
1359 1.111 skrll /* XXX ttyinput takes tty_lock */
1360 1.82 martin while (ub->ub_index < ub->ub_len && !sc->sc_rx_stopped) {
1361 1.82 martin /* Give characters to tty layer. */
1362 1.82 martin if ((*rint)(ub->ub_data[ub->ub_index], tp) == -1) {
1363 1.82 martin /* Overflow: drop remainder */
1364 1.82 martin ub->ub_index = ub->ub_len;
1365 1.82 martin } else
1366 1.82 martin ub->ub_index++;
1367 1.82 martin }
1368 1.82 martin
1369 1.82 martin if (ub->ub_index == ub->ub_len) {
1370 1.82 martin SIMPLEQ_REMOVE_HEAD(&sc->sc_ibuff_full, ub_link);
1371 1.82 martin
1372 1.82 martin ucomsubmitread(sc, ub);
1373 1.82 martin
1374 1.82 martin ub = SIMPLEQ_FIRST(&sc->sc_ibuff_full);
1375 1.82 martin }
1376 1.82 martin }
1377 1.82 martin
1378 1.82 martin sc->sc_rx_unblock = (ub != NULL);
1379 1.12 augustss }
1380 1.12 augustss
1381 1.82 martin static usbd_status
1382 1.82 martin ucomsubmitread(struct ucom_softc *sc, struct ucom_buffer *ub)
1383 1.12 augustss {
1384 1.12 augustss usbd_status err;
1385 1.12 augustss
1386 1.111 skrll usbd_setup_xfer(ub->ub_xfer, sc, ub->ub_data, sc->sc_ibufsize,
1387 1.111 skrll USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, ucomreadcb);
1388 1.82 martin
1389 1.82 martin if ((err = usbd_transfer(ub->ub_xfer)) != USBD_IN_PROGRESS) {
1390 1.82 martin /* XXX: Recover from this, please! */
1391 1.82 martin printf("ucomsubmitread: err=%s\n", usbd_errstr(err));
1392 1.111 skrll return err;
1393 1.12 augustss }
1394 1.82 martin
1395 1.82 martin SIMPLEQ_INSERT_TAIL(&sc->sc_ibuff_empty, ub, ub_link);
1396 1.82 martin
1397 1.111 skrll return USBD_NORMAL_COMPLETION;
1398 1.12 augustss }
1399 1.43 augustss
1400 1.82 martin static void
1401 1.111 skrll ucomreadcb(struct usbd_xfer *xfer, void *p, usbd_status status)
1402 1.12 augustss {
1403 1.12 augustss struct ucom_softc *sc = (struct ucom_softc *)p;
1404 1.12 augustss struct tty *tp = sc->sc_tty;
1405 1.82 martin struct ucom_buffer *ub;
1406 1.111 skrll uint32_t cc;
1407 1.12 augustss u_char *cp;
1408 1.12 augustss
1409 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
1410 1.111 skrll
1411 1.112 skrll if (status == USBD_CANCELLED)
1412 1.112 skrll return;
1413 1.112 skrll
1414 1.111 skrll mutex_enter(&sc->sc_lock);
1415 1.112 skrll if (status == USBD_IOERROR ||
1416 1.34 augustss sc->sc_dying) {
1417 1.111 skrll DPRINTF("dying", 0, 0, 0, 0);
1418 1.34 augustss /* Send something to wake upper layer */
1419 1.112 skrll (tp->t_linesw->l_rint)('\n', tp);
1420 1.112 skrll mutex_spin_enter(&tty_lock); /* XXX */
1421 1.112 skrll ttwakeup(tp);
1422 1.112 skrll mutex_spin_exit(&tty_lock); /* XXX */
1423 1.111 skrll mutex_exit(&sc->sc_lock);
1424 1.12 augustss return;
1425 1.34 augustss }
1426 1.12 augustss
1427 1.112 skrll ub = SIMPLEQ_FIRST(&sc->sc_ibuff_empty);
1428 1.112 skrll SIMPLEQ_REMOVE_HEAD(&sc->sc_ibuff_empty, ub_link);
1429 1.112 skrll
1430 1.82 martin if (status == USBD_STALLED) {
1431 1.12 augustss usbd_clear_endpoint_stall_async(sc->sc_bulkin_pipe);
1432 1.82 martin ucomsubmitread(sc, ub);
1433 1.111 skrll mutex_exit(&sc->sc_lock);
1434 1.82 martin return;
1435 1.82 martin }
1436 1.82 martin
1437 1.82 martin if (status != USBD_NORMAL_COMPLETION) {
1438 1.82 martin printf("ucomreadcb: wonky status=%s\n", usbd_errstr(status));
1439 1.111 skrll mutex_exit(&sc->sc_lock);
1440 1.12 augustss return;
1441 1.12 augustss }
1442 1.12 augustss
1443 1.48 thorpej usbd_get_xfer_status(xfer, NULL, (void *)&cp, &cc, NULL);
1444 1.82 martin
1445 1.95 jakllsch #ifdef UCOM_DEBUG
1446 1.95 jakllsch /* This is triggered by uslsa(4) occasionally. */
1447 1.95 jakllsch if ((ucomdebug > 0) && (cc == 0)) {
1448 1.95 jakllsch device_printf(sc->sc_dev, "ucomreadcb: zero length xfer!\n");
1449 1.82 martin }
1450 1.95 jakllsch #endif
1451 1.82 martin
1452 1.82 martin KDASSERT(cp == ub->ub_data);
1453 1.82 martin
1454 1.31 explorer rnd_add_uint32(&sc->sc_rndsource, cc);
1455 1.82 martin
1456 1.82 martin if (sc->sc_opening) {
1457 1.82 martin ucomsubmitread(sc, ub);
1458 1.111 skrll mutex_exit(&sc->sc_lock);
1459 1.82 martin return;
1460 1.82 martin }
1461 1.82 martin
1462 1.82 martin if (sc->sc_methods->ucom_read != NULL) {
1463 1.22 augustss sc->sc_methods->ucom_read(sc->sc_parent, sc->sc_portno,
1464 1.82 martin &cp, &cc);
1465 1.82 martin ub->ub_index = (u_int)(cp - ub->ub_data);
1466 1.82 martin } else
1467 1.82 martin ub->ub_index = 0;
1468 1.82 martin
1469 1.82 martin ub->ub_len = cc;
1470 1.22 augustss
1471 1.82 martin SIMPLEQ_INSERT_TAIL(&sc->sc_ibuff_full, ub, ub_link);
1472 1.12 augustss
1473 1.82 martin ucom_read_complete(sc);
1474 1.111 skrll mutex_exit(&sc->sc_lock);
1475 1.12 augustss }
1476 1.12 augustss
1477 1.82 martin static void
1478 1.24 augustss ucom_cleanup(struct ucom_softc *sc)
1479 1.12 augustss {
1480 1.82 martin
1481 1.111 skrll UCOMHIST_FUNC(); UCOMHIST_CALLED();
1482 1.111 skrll
1483 1.111 skrll DPRINTF("aborting pipes", 0, 0, 0, 0);
1484 1.111 skrll
1485 1.111 skrll KASSERT(mutex_owned(&sc->sc_lock));
1486 1.12 augustss
1487 1.12 augustss ucom_shutdown(sc);
1488 1.33 augustss if (sc->sc_bulkin_pipe != NULL) {
1489 1.112 skrll usbd_abort_pipe(sc->sc_bulkin_pipe);
1490 1.33 augustss }
1491 1.33 augustss if (sc->sc_bulkout_pipe != NULL) {
1492 1.112 skrll usbd_abort_pipe(sc->sc_bulkout_pipe);
1493 1.33 augustss }
1494 1.12 augustss }
1495 1.13 augustss
1496 1.13 augustss #endif /* NUCOM > 0 */
1497 1.12 augustss
1498 1.20 augustss int
1499 1.24 augustss ucomprint(void *aux, const char *pnp)
1500 1.12 augustss {
1501 1.111 skrll struct ucom_attach_args *ucaa = aux;
1502 1.12 augustss
1503 1.12 augustss if (pnp)
1504 1.49 thorpej aprint_normal("ucom at %s", pnp);
1505 1.111 skrll if (ucaa->ucaa_portno != UCOM_UNK_PORTNO)
1506 1.111 skrll aprint_normal(" portno %d", ucaa->ucaa_portno);
1507 1.111 skrll return UNCONF;
1508 1.12 augustss }
1509 1.12 augustss
1510 1.20 augustss int
1511 1.77 cube ucomsubmatch(device_t parent, cfdata_t cf,
1512 1.69 christos const int *ldesc, void *aux)
1513 1.12 augustss {
1514 1.111 skrll struct ucom_attach_args *ucaa = aux;
1515 1.12 augustss
1516 1.111 skrll if (ucaa->ucaa_portno != UCOM_UNK_PORTNO &&
1517 1.53 drochner cf->cf_loc[UCOMBUSCF_PORTNO] != UCOMBUSCF_PORTNO_DEFAULT &&
1518 1.111 skrll cf->cf_loc[UCOMBUSCF_PORTNO] != ucaa->ucaa_portno)
1519 1.111 skrll return 0;
1520 1.111 skrll return config_match(parent, cf, aux);
1521 1.12 augustss }
1522