Symbol: uart_config
drivers/bluetooth/btnxpuart.c
802
struct uart_config uart_config;
drivers/bluetooth/btnxpuart.c
813
nxp_cmd5.payload_len = __cpu_to_le32(sizeof(uart_config));
drivers/bluetooth/btnxpuart.c
820
} else if (req_len == sizeof(uart_config)) {
drivers/bluetooth/btnxpuart.c
821
uart_config.clkdiv.address = __cpu_to_le32(clkdivaddr);
drivers/bluetooth/btnxpuart.c
823
uart_config.clkdiv.value = __cpu_to_le32(0x01000000);
drivers/bluetooth/btnxpuart.c
825
uart_config.clkdiv.value = __cpu_to_le32(0x00c00000);
drivers/bluetooth/btnxpuart.c
826
uart_config.uartdiv.address = __cpu_to_le32(uartdivaddr);
drivers/bluetooth/btnxpuart.c
827
uart_config.uartdiv.value = __cpu_to_le32(1);
drivers/bluetooth/btnxpuart.c
828
uart_config.mcr.address = __cpu_to_le32(uartmcraddr);
drivers/bluetooth/btnxpuart.c
829
uart_config.mcr.value = __cpu_to_le32(MCR);
drivers/bluetooth/btnxpuart.c
830
uart_config.re_init.address = __cpu_to_le32(uartreinitaddr);
drivers/bluetooth/btnxpuart.c
831
uart_config.re_init.value = __cpu_to_le32(INIT);
drivers/bluetooth/btnxpuart.c
832
uart_config.icr.address = __cpu_to_le32(uarticraddr);
drivers/bluetooth/btnxpuart.c
833
uart_config.icr.value = __cpu_to_le32(ICR);
drivers/bluetooth/btnxpuart.c
834
uart_config.fcr.address = __cpu_to_le32(uartfcraddr);
drivers/bluetooth/btnxpuart.c
835
uart_config.fcr.value = __cpu_to_le32(FCR);
drivers/bluetooth/btnxpuart.c
837
uart_config.crc = __cpu_to_be32(crc32_be(0UL, (char *)&uart_config,
drivers/bluetooth/btnxpuart.c
838
sizeof(uart_config) - 4));
drivers/bluetooth/btnxpuart.c
840
serdev_device_write_buf(nxpdev->serdev, (u8 *)&uart_config, sizeof(uart_config));
drivers/tty/serial/8250/8250_port.c
1187
port->fifosize = uart_config[up->port.type].fifo_size;
drivers/tty/serial/8250/8250_port.c
1189
up->capabilities = uart_config[port->type].flags;
drivers/tty/serial/8250/8250_port.c
1190
up->tx_loadsz = uart_config[port->type].tx_loadsz;
drivers/tty/serial/8250/8250_port.c
2277
port->fifosize = uart_config[port->type].fifo_size;
drivers/tty/serial/8250/8250_port.c
2279
up->tx_loadsz = uart_config[port->type].tx_loadsz;
drivers/tty/serial/8250/8250_port.c
2281
up->capabilities = uart_config[port->type].flags;
drivers/tty/serial/8250/8250_port.c
2975
const struct serial8250_config *conf_type = &uart_config[up->port.type];
drivers/tty/serial/8250/8250_port.c
2985
const struct serial8250_config *conf_type = &uart_config[up->port.type];
drivers/tty/serial/8250/8250_port.c
3102
const struct serial8250_config *conf_type = &uart_config[up->port.type];
drivers/tty/serial/8250/8250_port.c
3138
up->fcr = uart_config[up->port.type].fcr;
drivers/tty/serial/8250/8250_port.c
3146
ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
drivers/tty/serial/8250/8250_port.c
3156
if (type >= ARRAY_SIZE(uart_config))
drivers/tty/serial/8250/8250_port.c
3158
return uart_config[type].name;
drivers/tty/serial/8250/8250_port.c
3211
up->port.fifosize = uart_config[type].fifo_size;
drivers/tty/serial/8250/8250_port.c
3213
up->tx_loadsz = uart_config[type].tx_loadsz;
drivers/tty/serial/8250/8250_port.c
3215
up->capabilities = uart_config[type].flags;
drivers/tty/serial/8250/8250_port.c
45
static const struct serial8250_config uart_config[] = {
drivers/tty/serial/sunsu.c
1131
up->port.fifosize = uart_config[up->port.type].dfl_xmit_fifo_size;
drivers/tty/serial/sunsu.c
620
if (uart_config[up->port.type].flags & UART_CLEAR_FIFO) {
drivers/tty/serial/sunsu.c
67
static const struct serial_uart_config uart_config[] = {
drivers/tty/serial/sunsu.c
789
if (uart_config[up->port.type].flags & UART_USE_FIFO) {
drivers/tty/serial/sunsu.c
850
if (uart_config[up->port.type].flags & UART_STARTECH) {
drivers/tty/serial/sunsu.c
924
if (type >= ARRAY_SIZE(uart_config))
drivers/tty/serial/sunsu.c
926
return uart_config[type].name;