Lines Matching refs:uart
20 setup_serial_console(struct pcdp_uart *uart)
27 mmio = (uart->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY);
29 mmio ? "mmio" : "io", uart->addr.address);
30 if (uart->baud) {
31 p += sprintf(p, ",%llu", uart->baud);
32 if (uart->bits) {
33 switch (uart->parity) {
38 p += sprintf(p, "%c%d", parity, uart->bits);
42 add_preferred_console("uart", 8250, &options[9]);
89 struct pcdp_uart *uart;
111 for (i = 0, uart = pcdp->uart; i < pcdp->num_uarts; i++, uart++) {
112 if (uart->flags & PCDP_UART_PRIMARY_CONSOLE || serial) {
113 if (uart->type == PCDP_CONSOLE_UART) {
114 rc = setup_serial_console(uart);
121 for (dev = (struct pcdp_device *) (pcdp->uart + pcdp->num_uarts);