xref: /freebsd/sys/dev/uart/uart_core.c (revision 5686c6c38a3e1cc78804eaf5f880bda23dcf592f)
1 /*-
2  * Copyright (c) 2003 Marcel Moolenaar
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/bus.h>
33 #include <sys/conf.h>
34 #include <sys/cons.h>
35 #include <sys/fcntl.h>
36 #include <sys/interrupt.h>
37 #include <sys/kdb.h>
38 #include <sys/kernel.h>
39 #include <sys/malloc.h>
40 #include <sys/queue.h>
41 #include <sys/reboot.h>
42 #include <machine/bus.h>
43 #include <sys/rman.h>
44 #include <machine/resource.h>
45 #include <machine/stdarg.h>
46 
47 #include <dev/uart/uart.h>
48 #include <dev/uart/uart_bus.h>
49 #include <dev/uart/uart_cpu.h>
50 
51 #include "uart_if.h"
52 
53 devclass_t uart_devclass;
54 char uart_driver_name[] = "uart";
55 
56 SLIST_HEAD(uart_devinfo_list, uart_devinfo) uart_sysdevs =
57     SLIST_HEAD_INITIALIZER(uart_sysdevs);
58 
59 static MALLOC_DEFINE(M_UART, "UART", "UART driver");
60 
61 #ifndef	UART_POLL_FREQ
62 #define	UART_POLL_FREQ		50
63 #endif
64 static int uart_poll_freq = UART_POLL_FREQ;
65 TUNABLE_INT("debug.uart_poll_freq", &uart_poll_freq);
66 
67 void
68 uart_add_sysdev(struct uart_devinfo *di)
69 {
70 	SLIST_INSERT_HEAD(&uart_sysdevs, di, next);
71 }
72 
73 const char *
74 uart_getname(struct uart_class *uc)
75 {
76 	return ((uc != NULL) ? uc->name : NULL);
77 }
78 
79 struct uart_ops *
80 uart_getops(struct uart_class *uc)
81 {
82 	return ((uc != NULL) ? uc->uc_ops : NULL);
83 }
84 
85 int
86 uart_getrange(struct uart_class *uc)
87 {
88 	return ((uc != NULL) ? uc->uc_range : 0);
89 }
90 
91 /*
92  * Schedule a soft interrupt. We do this on the 0 to !0 transition
93  * of the TTY pending interrupt status.
94  */
95 void
96 uart_sched_softih(struct uart_softc *sc, uint32_t ipend)
97 {
98 	uint32_t new, old;
99 
100 	do {
101 		old = sc->sc_ttypend;
102 		new = old | ipend;
103 	} while (!atomic_cmpset_32(&sc->sc_ttypend, old, new));
104 
105 	if ((old & SER_INT_MASK) == 0)
106 		swi_sched(sc->sc_softih, 0);
107 }
108 
109 /*
110  * A break condition has been detected. We treat the break condition as
111  * a special case that should not happen during normal operation. When
112  * the break condition is to be passed to higher levels in the form of
113  * a NUL character, we really want the break to be in the right place in
114  * the input stream. The overhead to achieve that is not in relation to
115  * the exceptional nature of the break condition, so we permit ourselves
116  * to be sloppy.
117  */
118 static __inline int
119 uart_intr_break(void *arg)
120 {
121 	struct uart_softc *sc = arg;
122 
123 #if defined(KDB)
124 	if (sc->sc_sysdev != NULL && sc->sc_sysdev->type == UART_DEV_CONSOLE) {
125 		if (kdb_break())
126 			return (0);
127 	}
128 #endif
129 	if (sc->sc_opened)
130 		uart_sched_softih(sc, SER_INT_BREAK);
131 	return (0);
132 }
133 
134 /*
135  * Handle a receiver overrun situation. We lost at least 1 byte in the
136  * input stream and it's our job to contain the situation. We grab as
137  * much of the data we can, but otherwise flush the receiver FIFO to
138  * create some breathing room. The net effect is that we avoid the
139  * overrun condition to happen for the next X characters, where X is
140  * related to the FIFO size at the cost of losing data right away.
141  * So, instead of having multiple overrun interrupts in close proximity
142  * to each other and possibly pessimizing UART interrupt latency for
143  * other UARTs in a multiport configuration, we create a longer segment
144  * of missing characters by freeing up the FIFO.
145  * Each overrun condition is marked in the input buffer by a token. The
146  * token represents the loss of at least one, but possible more bytes in
147  * the input stream.
148  */
149 static __inline int
150 uart_intr_overrun(void *arg)
151 {
152 	struct uart_softc *sc = arg;
153 
154 	if (sc->sc_opened) {
155 		UART_RECEIVE(sc);
156 		if (uart_rx_put(sc, UART_STAT_OVERRUN))
157 			sc->sc_rxbuf[sc->sc_rxput] = UART_STAT_OVERRUN;
158 		uart_sched_softih(sc, SER_INT_RXREADY);
159 	}
160 	UART_FLUSH(sc, UART_FLUSH_RECEIVER);
161 	return (0);
162 }
163 
164 /*
165  * Received data ready.
166  */
167 static __inline int
168 uart_intr_rxready(void *arg)
169 {
170 	struct uart_softc *sc = arg;
171 	int rxp;
172 
173 	rxp = sc->sc_rxput;
174 	UART_RECEIVE(sc);
175 #if defined(KDB)
176 	if (sc->sc_sysdev != NULL && sc->sc_sysdev->type == UART_DEV_CONSOLE) {
177 		while (rxp != sc->sc_rxput) {
178 			kdb_alt_break(sc->sc_rxbuf[rxp++], &sc->sc_altbrk);
179 			if (rxp == sc->sc_rxbufsz)
180 				rxp = 0;
181 		}
182 	}
183 #endif
184 	if (sc->sc_opened)
185 		uart_sched_softih(sc, SER_INT_RXREADY);
186 	else
187 		sc->sc_rxput = sc->sc_rxget;	/* Ignore received data. */
188 	return (1);
189 }
190 
191 /*
192  * Line or modem status change (OOB signalling).
193  * We pass the signals to the software interrupt handler for further
194  * processing. Note that we merge the delta bits, but set the state
195  * bits. This is to avoid losing state transitions due to having more
196  * than 1 hardware interrupt between software interrupts.
197  */
198 static __inline int
199 uart_intr_sigchg(void *arg)
200 {
201 	struct uart_softc *sc = arg;
202 	int new, old, sig;
203 
204 	sig = UART_GETSIG(sc);
205 
206 	if (sc->sc_pps.ppsparam.mode & PPS_CAPTUREBOTH) {
207 		if (sig & UART_SIG_DPPS) {
208 			pps_capture(&sc->sc_pps);
209 			pps_event(&sc->sc_pps, (sig & UART_SIG_PPS) ?
210 			    PPS_CAPTUREASSERT : PPS_CAPTURECLEAR);
211 		}
212 	}
213 
214 	/*
215 	 * Keep track of signal changes, even when the device is not
216 	 * opened. This allows us to inform upper layers about a
217 	 * possible loss of DCD and thus the existence of a (possibly)
218 	 * different connection when we have DCD back, during the time
219 	 * that the device was closed.
220 	 */
221 	do {
222 		old = sc->sc_ttypend;
223 		new = old & ~SER_MASK_STATE;
224 		new |= sig & SER_INT_SIGMASK;
225 	} while (!atomic_cmpset_32(&sc->sc_ttypend, old, new));
226 
227 	if (sc->sc_opened)
228 		uart_sched_softih(sc, SER_INT_SIGCHG);
229 	return (1);
230 }
231 
232 /*
233  * The transmitter can accept more data.
234  */
235 static __inline int
236 uart_intr_txidle(void *arg)
237 {
238 	struct uart_softc *sc = arg;
239 
240 	if (sc->sc_txbusy) {
241 		sc->sc_txbusy = 0;
242 		uart_sched_softih(sc, SER_INT_TXIDLE);
243 	}
244 	return (0);
245 }
246 
247 static int
248 uart_intr(void *arg)
249 {
250 	struct uart_softc *sc = arg;
251 	int flag = 0, ipend;
252 
253 	while (!sc->sc_leaving && (ipend = UART_IPEND(sc)) != 0) {
254 		flag = 1;
255 		if (ipend & SER_INT_OVERRUN)
256 			uart_intr_overrun(sc);
257 		if (ipend & SER_INT_BREAK)
258 			uart_intr_break(sc);
259 		if (ipend & SER_INT_RXREADY)
260 			uart_intr_rxready(sc);
261 		if (ipend & SER_INT_SIGCHG)
262 			uart_intr_sigchg(sc);
263 		if (ipend & SER_INT_TXIDLE)
264 			uart_intr_txidle(sc);
265 	}
266 
267 	if (sc->sc_polled) {
268 		callout_reset(&sc->sc_timer, hz / uart_poll_freq,
269 		    (timeout_t *)uart_intr, sc);
270 	}
271 
272 	return((flag)?FILTER_HANDLED:FILTER_STRAY);
273 }
274 
275 serdev_intr_t *
276 uart_bus_ihand(device_t dev, int ipend)
277 {
278 
279 	switch (ipend) {
280 	case SER_INT_BREAK:
281 		return (uart_intr_break);
282 	case SER_INT_OVERRUN:
283 		return (uart_intr_overrun);
284 	case SER_INT_RXREADY:
285 		return (uart_intr_rxready);
286 	case SER_INT_SIGCHG:
287 		return (uart_intr_sigchg);
288 	case SER_INT_TXIDLE:
289 		return (uart_intr_txidle);
290 	}
291 	return (NULL);
292 }
293 
294 int
295 uart_bus_ipend(device_t dev)
296 {
297 	struct uart_softc *sc;
298 
299 	sc = device_get_softc(dev);
300 	return (UART_IPEND(sc));
301 }
302 
303 int
304 uart_bus_sysdev(device_t dev)
305 {
306 	struct uart_softc *sc;
307 
308 	sc = device_get_softc(dev);
309 	return ((sc->sc_sysdev != NULL) ? 1 : 0);
310 }
311 
312 int
313 uart_bus_probe(device_t dev, int regshft, int rclk, int rid, int chan)
314 {
315 	struct uart_softc *sc;
316 	struct uart_devinfo *sysdev;
317 	int error;
318 
319 	sc = device_get_softc(dev);
320 
321 	/*
322 	 * All uart_class references are weak. Check that the needed
323 	 * class has been compiled-in. Fail if not.
324 	 */
325 	if (sc->sc_class == NULL)
326 		return (ENXIO);
327 
328 	/*
329 	 * Initialize the instance. Note that the instance (=softc) does
330 	 * not necessarily match the hardware specific softc. We can't do
331 	 * anything about it now, because we may not attach to the device.
332 	 * Hardware drivers cannot use any of the class specific fields
333 	 * while probing.
334 	 */
335 	kobj_init((kobj_t)sc, (kobj_class_t)sc->sc_class);
336 	sc->sc_dev = dev;
337 	if (device_get_desc(dev) == NULL)
338 		device_set_desc(dev, uart_getname(sc->sc_class));
339 
340 	/*
341 	 * Allocate the register resource. We assume that all UARTs have
342 	 * a single register window in either I/O port space or memory
343 	 * mapped I/O space. Any UART that needs multiple windows will
344 	 * consequently not be supported by this driver as-is. We try I/O
345 	 * port space first because that's the common case.
346 	 */
347 	sc->sc_rrid = rid;
348 	sc->sc_rtype = SYS_RES_IOPORT;
349 	sc->sc_rres = bus_alloc_resource(dev, sc->sc_rtype, &sc->sc_rrid,
350 	    0, ~0, uart_getrange(sc->sc_class), RF_ACTIVE);
351 	if (sc->sc_rres == NULL) {
352 		sc->sc_rrid = rid;
353 		sc->sc_rtype = SYS_RES_MEMORY;
354 		sc->sc_rres = bus_alloc_resource(dev, sc->sc_rtype,
355 		    &sc->sc_rrid, 0, ~0, uart_getrange(sc->sc_class),
356 		    RF_ACTIVE);
357 		if (sc->sc_rres == NULL)
358 			return (ENXIO);
359 	}
360 
361 	/*
362 	 * Fill in the bus access structure and compare this device with
363 	 * a possible console device and/or a debug port. We set the flags
364 	 * in the softc so that the hardware dependent probe can adjust
365 	 * accordingly. In general, you don't want to permanently disrupt
366 	 * console I/O.
367 	 */
368 	sc->sc_bas.bsh = rman_get_bushandle(sc->sc_rres);
369 	sc->sc_bas.bst = rman_get_bustag(sc->sc_rres);
370 	sc->sc_bas.chan = chan;
371 	sc->sc_bas.regshft = regshft;
372 	sc->sc_bas.rclk = (rclk == 0) ? sc->sc_class->uc_rclk : rclk;
373 
374 	SLIST_FOREACH(sysdev, &uart_sysdevs, next) {
375 		if (chan == sysdev->bas.chan &&
376 		    uart_cpu_eqres(&sc->sc_bas, &sysdev->bas)) {
377 			/* XXX check if ops matches class. */
378 			sc->sc_sysdev = sysdev;
379 			sysdev->bas.rclk = sc->sc_bas.rclk;
380 		}
381 	}
382 
383 	error = UART_PROBE(sc);
384 	bus_release_resource(dev, sc->sc_rtype, sc->sc_rrid, sc->sc_rres);
385 	return ((error) ? error : BUS_PROBE_DEFAULT);
386 }
387 
388 int
389 uart_bus_attach(device_t dev)
390 {
391 	struct uart_softc *sc, *sc0;
392 	const char *sep;
393 	int error;
394 
395 	/*
396 	 * The sc_class field defines the type of UART we're going to work
397 	 * with and thus the size of the softc. Replace the generic softc
398 	 * with one that matches the UART now that we're certain we handle
399 	 * the device.
400 	 */
401 	sc0 = device_get_softc(dev);
402 	if (sc0->sc_class->size > sizeof(*sc)) {
403 		sc = malloc(sc0->sc_class->size, M_UART, M_WAITOK|M_ZERO);
404 		bcopy(sc0, sc, sizeof(*sc));
405 		device_set_softc(dev, sc);
406 	} else
407 		sc = sc0;
408 
409 	/*
410 	 * Protect ourselves against interrupts while we're not completely
411 	 * finished attaching and initializing. We don't expect interrupts
412 	 * until after UART_ATTACH() though.
413 	 */
414 	sc->sc_leaving = 1;
415 
416 	mtx_init(&sc->sc_hwmtx_s, "uart_hwmtx", NULL, MTX_SPIN);
417 	if (sc->sc_hwmtx == NULL)
418 		sc->sc_hwmtx = &sc->sc_hwmtx_s;
419 
420 	/*
421 	 * Re-allocate. We expect that the softc contains the information
422 	 * collected by uart_bus_probe() intact.
423 	 */
424 	sc->sc_rres = bus_alloc_resource(dev, sc->sc_rtype, &sc->sc_rrid,
425 	    0, ~0, uart_getrange(sc->sc_class), RF_ACTIVE);
426 	if (sc->sc_rres == NULL) {
427 		mtx_destroy(&sc->sc_hwmtx_s);
428 		return (ENXIO);
429 	}
430 	sc->sc_bas.bsh = rman_get_bushandle(sc->sc_rres);
431 	sc->sc_bas.bst = rman_get_bustag(sc->sc_rres);
432 
433 	sc->sc_irid = 0;
434 	sc->sc_ires = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->sc_irid,
435 	    RF_ACTIVE | RF_SHAREABLE);
436 	if (sc->sc_ires != NULL) {
437 		error = bus_setup_intr(dev,
438 		    sc->sc_ires, INTR_TYPE_TTY,
439 		    uart_intr, NULL, sc, &sc->sc_icookie);
440 		if (error)
441 			error = bus_setup_intr(dev,
442 			    sc->sc_ires, INTR_TYPE_TTY | INTR_MPSAFE,
443 			    NULL, (driver_intr_t *)uart_intr, sc, &sc->sc_icookie);
444 		else
445 			sc->sc_fastintr = 1;
446 
447 		if (error) {
448 			device_printf(dev, "could not activate interrupt\n");
449 			bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irid,
450 			    sc->sc_ires);
451 			sc->sc_ires = NULL;
452 		}
453 	}
454 	if (sc->sc_ires == NULL) {
455 		/* No interrupt resource. Force polled mode. */
456 		sc->sc_polled = 1;
457 		callout_init(&sc->sc_timer, 1);
458 	}
459 
460 	/*
461 	 * Ensure there is room for at least three full FIFOs of data in the
462 	 * receive buffer (handles the case of low-level drivers with huge
463 	 * FIFOs), and also ensure that there is no less than the historical
464 	 * size of 384 bytes (handles the typical small-FIFO case).
465 	 */
466 	sc->sc_rxbufsz = MAX(384, sc->sc_rxfifosz * 3);
467 	sc->sc_rxbuf = malloc(sc->sc_rxbufsz * sizeof(*sc->sc_rxbuf),
468 	    M_UART, M_WAITOK);
469 	sc->sc_txbuf = malloc(sc->sc_txfifosz * sizeof(*sc->sc_txbuf),
470 	    M_UART, M_WAITOK);
471 
472 	error = UART_ATTACH(sc);
473 	if (error)
474 		goto fail;
475 
476 	if (sc->sc_hwiflow || sc->sc_hwoflow) {
477 		sep = "";
478 		device_print_prettyname(dev);
479 		if (sc->sc_hwiflow) {
480 			printf("%sRTS iflow", sep);
481 			sep = ", ";
482 		}
483 		if (sc->sc_hwoflow) {
484 			printf("%sCTS oflow", sep);
485 			sep = ", ";
486 		}
487 		printf("\n");
488 	}
489 
490 	if (bootverbose && (sc->sc_fastintr || sc->sc_polled)) {
491 		sep = "";
492 		device_print_prettyname(dev);
493 		if (sc->sc_fastintr) {
494 			printf("%sfast interrupt", sep);
495 			sep = ", ";
496 		}
497 		if (sc->sc_polled) {
498 			printf("%spolled mode", sep);
499 			sep = ", ";
500 		}
501 		printf("\n");
502 	}
503 
504 	if (sc->sc_sysdev != NULL) {
505 		if (sc->sc_sysdev->baudrate == 0) {
506 			if (UART_IOCTL(sc, UART_IOCTL_BAUD,
507 			    (intptr_t)&sc->sc_sysdev->baudrate) != 0)
508 				sc->sc_sysdev->baudrate = -1;
509 		}
510 		switch (sc->sc_sysdev->type) {
511 		case UART_DEV_CONSOLE:
512 			device_printf(dev, "console");
513 			break;
514 		case UART_DEV_DBGPORT:
515 			device_printf(dev, "debug port");
516 			break;
517 		case UART_DEV_KEYBOARD:
518 			device_printf(dev, "keyboard");
519 			break;
520 		default:
521 			device_printf(dev, "unknown system device");
522 			break;
523 		}
524 		printf(" (%d,%c,%d,%d)\n", sc->sc_sysdev->baudrate,
525 		    "noems"[sc->sc_sysdev->parity], sc->sc_sysdev->databits,
526 		    sc->sc_sysdev->stopbits);
527 	}
528 
529 	sc->sc_pps.ppscap = PPS_CAPTUREBOTH;
530 	pps_init(&sc->sc_pps);
531 
532 	error = (sc->sc_sysdev != NULL && sc->sc_sysdev->attach != NULL)
533 	    ? (*sc->sc_sysdev->attach)(sc) : uart_tty_attach(sc);
534 	if (error)
535 		goto fail;
536 
537 	if (sc->sc_sysdev != NULL)
538 		sc->sc_sysdev->hwmtx = sc->sc_hwmtx;
539 
540 	sc->sc_leaving = 0;
541 	uart_intr(sc);
542 	return (0);
543 
544  fail:
545 	free(sc->sc_txbuf, M_UART);
546 	free(sc->sc_rxbuf, M_UART);
547 
548 	if (sc->sc_ires != NULL) {
549 		bus_teardown_intr(dev, sc->sc_ires, sc->sc_icookie);
550 		bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irid,
551 		    sc->sc_ires);
552 	}
553 	bus_release_resource(dev, sc->sc_rtype, sc->sc_rrid, sc->sc_rres);
554 
555 	mtx_destroy(&sc->sc_hwmtx_s);
556 
557 	return (error);
558 }
559 
560 int
561 uart_bus_detach(device_t dev)
562 {
563 	struct uart_softc *sc;
564 
565 	sc = device_get_softc(dev);
566 
567 	sc->sc_leaving = 1;
568 
569 	if (sc->sc_sysdev != NULL)
570 		sc->sc_sysdev->hwmtx = NULL;
571 
572 	UART_DETACH(sc);
573 
574 	if (sc->sc_sysdev != NULL && sc->sc_sysdev->detach != NULL)
575 		(*sc->sc_sysdev->detach)(sc);
576 	else
577 		uart_tty_detach(sc);
578 
579 	free(sc->sc_txbuf, M_UART);
580 	free(sc->sc_rxbuf, M_UART);
581 
582 	if (sc->sc_ires != NULL) {
583 		bus_teardown_intr(dev, sc->sc_ires, sc->sc_icookie);
584 		bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irid,
585 		    sc->sc_ires);
586 	}
587 	bus_release_resource(dev, sc->sc_rtype, sc->sc_rrid, sc->sc_rres);
588 
589 	mtx_destroy(&sc->sc_hwmtx_s);
590 
591 	if (sc->sc_class->size > sizeof(*sc)) {
592 		device_set_softc(dev, NULL);
593 		free(sc, M_UART);
594 	} else
595 		device_set_softc(dev, NULL);
596 
597 	return (0);
598 }
599 
600 int
601 uart_bus_resume(device_t dev)
602 {
603 	struct uart_softc *sc;
604 
605 	sc = device_get_softc(dev);
606 	return (UART_ATTACH(sc));
607 }
608