Symbol: psc_ops
drivers/tty/serial/mpc52xx_uart.c
1036
static const struct psc_ops *psc_ops;
drivers/tty/serial/mpc52xx_uart.c
1045
return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
drivers/tty/serial/mpc52xx_uart.c
1051
psc_ops->set_rts(port, mctrl & TIOCM_RTS);
drivers/tty/serial/mpc52xx_uart.c
1058
u8 status = psc_ops->get_ipcr(port);
drivers/tty/serial/mpc52xx_uart.c
1072
psc_ops->stop_tx(port);
drivers/tty/serial/mpc52xx_uart.c
1079
psc_ops->start_tx(port);
drivers/tty/serial/mpc52xx_uart.c
1086
psc_ops->stop_rx(port);
drivers/tty/serial/mpc52xx_uart.c
1092
psc_ops->enable_ms(port);
drivers/tty/serial/mpc52xx_uart.c
1102
psc_ops->command(port, MPC52xx_PSC_START_BRK);
drivers/tty/serial/mpc52xx_uart.c
1104
psc_ops->command(port, MPC52xx_PSC_STOP_BRK);
drivers/tty/serial/mpc52xx_uart.c
1114
if (psc_ops->clock) {
drivers/tty/serial/mpc52xx_uart.c
1115
ret = psc_ops->clock(port, 1);
drivers/tty/serial/mpc52xx_uart.c
1127
psc_ops->command(port, MPC52xx_PSC_RST_RX);
drivers/tty/serial/mpc52xx_uart.c
1128
psc_ops->command(port, MPC52xx_PSC_RST_TX);
drivers/tty/serial/mpc52xx_uart.c
1137
psc_ops->set_sicr(port, 0); /* UART mode DCD ignored */
drivers/tty/serial/mpc52xx_uart.c
1139
psc_ops->fifo_init(port);
drivers/tty/serial/mpc52xx_uart.c
1141
psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
drivers/tty/serial/mpc52xx_uart.c
1142
psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
drivers/tty/serial/mpc52xx_uart.c
1151
psc_ops->command(port, MPC52xx_PSC_RST_RX);
drivers/tty/serial/mpc52xx_uart.c
1153
psc_ops->command(port, MPC52xx_PSC_RST_TX);
drivers/tty/serial/mpc52xx_uart.c
1156
psc_ops->set_imr(port, port->read_status_mask);
drivers/tty/serial/mpc52xx_uart.c
1158
if (psc_ops->clock)
drivers/tty/serial/mpc52xx_uart.c
1159
psc_ops->clock(port, 0);
drivers/tty/serial/mpc52xx_uart.c
1162
psc_ops->cw_disable_ints(port);
drivers/tty/serial/mpc52xx_uart.c
1235
psc_ops->command(port, MPC52xx_PSC_RST_RX);
drivers/tty/serial/mpc52xx_uart.c
1236
psc_ops->command(port, MPC52xx_PSC_RST_TX);
drivers/tty/serial/mpc52xx_uart.c
1239
psc_ops->set_mode(port, mr1, mr2);
drivers/tty/serial/mpc52xx_uart.c
1240
baud = psc_ops->set_baudrate(port, new, old);
drivers/tty/serial/mpc52xx_uart.c
1249
psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
drivers/tty/serial/mpc52xx_uart.c
1250
psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
drivers/tty/serial/mpc52xx_uart.c
1269
if (psc_ops->clock_relse)
drivers/tty/serial/mpc52xx_uart.c
1270
psc_ops->clock_relse(port);
drivers/tty/serial/mpc52xx_uart.c
1299
if (psc_ops->clock_alloc) {
drivers/tty/serial/mpc52xx_uart.c
1300
err = psc_ops->clock_alloc(port);
drivers/tty/serial/mpc52xx_uart.c
1374
while (psc_ops->raw_rx_rdy(port)) {
drivers/tty/serial/mpc52xx_uart.c
1376
ch = psc_ops->read_char(port);
drivers/tty/serial/mpc52xx_uart.c
1387
status = psc_ops->get_status(port);
drivers/tty/serial/mpc52xx_uart.c
1407
psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT);
drivers/tty/serial/mpc52xx_uart.c
1424
return psc_ops->raw_rx_rdy(port);
drivers/tty/serial/mpc52xx_uart.c
1433
psc_ops->raw_tx_rdy(port),
drivers/tty/serial/mpc52xx_uart.c
1434
psc_ops->write_char(port, ch));
drivers/tty/serial/mpc52xx_uart.c
1449
psc_ops->rx_clr_irq(port);
drivers/tty/serial/mpc52xx_uart.c
1450
if (psc_ops->rx_rdy(port))
drivers/tty/serial/mpc52xx_uart.c
1453
psc_ops->tx_clr_irq(port);
drivers/tty/serial/mpc52xx_uart.c
1454
if (psc_ops->tx_rdy(port))
drivers/tty/serial/mpc52xx_uart.c
1457
status = psc_ops->get_ipcr(port);
drivers/tty/serial/mpc52xx_uart.c
1481
ret = psc_ops->handle_irq(port);
drivers/tty/serial/mpc52xx_uart.c
1503
mr1 = psc_ops->get_mr1(port);
drivers/tty/serial/mpc52xx_uart.c
1537
psc_ops->cw_disable_ints(port);
drivers/tty/serial/mpc52xx_uart.c
1548
psc_ops->write_char(port, '\r');
drivers/tty/serial/mpc52xx_uart.c
1551
psc_ops->write_char(port, *s);
drivers/tty/serial/mpc52xx_uart.c
1560
psc_ops->cw_restore_ints(port);
drivers/tty/serial/mpc52xx_uart.c
1749
psc_ops->get_irq(port, op->dev.of_node);
drivers/tty/serial/mpc52xx_uart.c
1828
psc_ops = match->data;
drivers/tty/serial/mpc52xx_uart.c
1880
if (psc_ops && psc_ops->fifoc_init) {
drivers/tty/serial/mpc52xx_uart.c
1881
ret = psc_ops->fifoc_init();
drivers/tty/serial/mpc52xx_uart.c
1895
if (psc_ops && psc_ops->fifoc_uninit)
drivers/tty/serial/mpc52xx_uart.c
1896
psc_ops->fifoc_uninit();
drivers/tty/serial/mpc52xx_uart.c
1905
if (psc_ops->fifoc_uninit)
drivers/tty/serial/mpc52xx_uart.c
1906
psc_ops->fifoc_uninit();
drivers/tty/serial/mpc52xx_uart.c
344
static const struct psc_ops mpc52xx_psc_ops = {
drivers/tty/serial/mpc52xx_uart.c
374
static const struct psc_ops mpc5200b_psc_ops = {
drivers/tty/serial/mpc52xx_uart.c
964
static const struct psc_ops mpc5125_psc_ops = {
drivers/tty/serial/mpc52xx_uart.c
999
static const struct psc_ops mpc512x_psc_ops = {