Lines Matching refs:port8250
94 struct uart_8250_port port8250; in fsl8250_acpi_probe() local
113 memset(&port8250, 0, sizeof(port8250)); in fsl8250_acpi_probe()
116 &port8250.port.uartclk); in fsl8250_acpi_probe()
120 spin_lock_init(&port8250.port.lock); in fsl8250_acpi_probe()
122 port8250.port.mapbase = regs->start; in fsl8250_acpi_probe()
123 port8250.port.irq = irq; in fsl8250_acpi_probe()
124 port8250.port.handle_irq = fsl8250_handle_irq; in fsl8250_acpi_probe()
125 port8250.port.type = PORT_16550A; in fsl8250_acpi_probe()
126 port8250.port.flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF in fsl8250_acpi_probe()
129 port8250.port.dev = dev; in fsl8250_acpi_probe()
130 port8250.port.mapsize = resource_size(regs); in fsl8250_acpi_probe()
131 port8250.port.iotype = UPIO_MEM; in fsl8250_acpi_probe()
132 port8250.port.irqflags = IRQF_SHARED; in fsl8250_acpi_probe()
134 port8250.port.membase = devm_ioremap(dev, port8250.port.mapbase, in fsl8250_acpi_probe()
135 port8250.port.mapsize); in fsl8250_acpi_probe()
136 if (!port8250.port.membase) in fsl8250_acpi_probe()
143 data->line = serial8250_register_8250_port(&port8250); in fsl8250_acpi_probe()