Lines Matching defs:port
112 /* Intermec CV60 touchscreen port */
201 /* Generic standard PC COM port */
203 /* Generic 16550A-compatible COM port */
365 * Winbond CIR port, should not be probed. We should keep track of
370 * SMSC IrCC SIR/FIR port, should not be probed by serial driver as
436 struct uart_8250_port uart, *port;
447 uart.port.irq = pnp_irq(dev, 0);
449 uart.port.iobase = pnp_port_start(dev, 2);
450 uart.port.iotype = UPIO_PORT;
452 uart.port.iobase = pnp_port_start(dev, 0);
453 uart.port.iotype = UPIO_PORT;
455 uart.port.mapbase = pnp_mem_start(dev, 0);
456 uart.port.iotype = UPIO_MEM;
457 uart.port.flags = UPF_IOREMAP;
462 "Setup PNP port: port %#lx, mem %#llx, irq %u, type %u\n",
463 uart.port.iobase, (unsigned long long)uart.port.mapbase,
464 uart.port.irq, uart.port.iotype);
467 uart.port.flags |= UPF_FIXED_PORT | UPF_FIXED_TYPE;
468 uart.port.type = PORT_8250_CIR;
471 uart.port.flags |= UPF_SKIP_TEST | UPF_BOOT_AUTOCONF;
473 uart.port.flags |= UPF_SHARE_IRQ;
474 uart.port.uartclk = 1843200;
475 device_property_read_u32(&dev->dev, "clock-frequency", &uart.port.uartclk);
476 uart.port.dev = &dev->dev;
482 port = serial8250_get_port(line);
483 if (uart_console(&port->port))