Commit 2574b27e authored by Matteo Facchinetti's avatar Matteo Facchinetti Committed by Greg Kroah-Hartman

serial/mpc52xx_uart: prepare for adding MPC5125 PSC UART support

MPC5125 PSC controller has different register layout than MPC5121.
To support MPC5125 PSC in this driver we have to provide further
psc_ops functions for SoC specific register accesses.

Add new register access functions to the psc_ops structure and
provide MPC52xx and MPC512x specific implementation for them.
Then replace remaining direct register accesses in the driver by
appropriate psc_ops function calls. The subsequent patch can now
add MPC5125 specific set of psc_ops functions.
Signed-off-by: default avatarVladimir Ermakov <vooon341@gmail.com>
Signed-off-by: default avatarMatteo Facchinetti <matteo.facchinetti@sirius-es.it>
Signed-off-by: default avatarAnatolij Gustschin <agust@denx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 696faedd
...@@ -112,6 +112,15 @@ struct psc_ops { ...@@ -112,6 +112,15 @@ struct psc_ops {
void (*fifoc_uninit)(void); void (*fifoc_uninit)(void);
void (*get_irq)(struct uart_port *, struct device_node *); void (*get_irq)(struct uart_port *, struct device_node *);
irqreturn_t (*handle_irq)(struct uart_port *port); irqreturn_t (*handle_irq)(struct uart_port *port);
u16 (*get_status)(struct uart_port *port);
u8 (*get_ipcr)(struct uart_port *port);
void (*command)(struct uart_port *port, u8 cmd);
void (*set_mode)(struct uart_port *port, u8 mr1, u8 mr2);
void (*set_rts)(struct uart_port *port, int state);
void (*enable_ms)(struct uart_port *port);
void (*set_sicr)(struct uart_port *port, u32 val);
void (*set_imr)(struct uart_port *port, u16 val);
u8 (*get_mr1)(struct uart_port *port);
}; };
/* setting the prescaler and divisor reg is common for all chips */ /* setting the prescaler and divisor reg is common for all chips */
...@@ -124,6 +133,65 @@ static inline void mpc52xx_set_divisor(struct mpc52xx_psc __iomem *psc, ...@@ -124,6 +133,65 @@ static inline void mpc52xx_set_divisor(struct mpc52xx_psc __iomem *psc,
out_8(&psc->ctlr, divisor & 0xff); out_8(&psc->ctlr, divisor & 0xff);
} }
static u16 mpc52xx_psc_get_status(struct uart_port *port)
{
return in_be16(&PSC(port)->mpc52xx_psc_status);
}
static u8 mpc52xx_psc_get_ipcr(struct uart_port *port)
{
return in_8(&PSC(port)->mpc52xx_psc_ipcr);
}
static void mpc52xx_psc_command(struct uart_port *port, u8 cmd)
{
out_8(&PSC(port)->command, cmd);
}
static void mpc52xx_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2)
{
out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1);
out_8(&PSC(port)->mode, mr1);
out_8(&PSC(port)->mode, mr2);
}
static void mpc52xx_psc_set_rts(struct uart_port *port, int state)
{
if (state)
out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS);
else
out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS);
}
static void mpc52xx_psc_enable_ms(struct uart_port *port)
{
struct mpc52xx_psc __iomem *psc = PSC(port);
/* clear D_*-bits by reading them */
in_8(&psc->mpc52xx_psc_ipcr);
/* enable CTS and DCD as IPC interrupts */
out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
}
static void mpc52xx_psc_set_sicr(struct uart_port *port, u32 val)
{
out_be32(&PSC(port)->sicr, val);
}
static void mpc52xx_psc_set_imr(struct uart_port *port, u16 val)
{
out_be16(&PSC(port)->mpc52xx_psc_imr, val);
}
static u8 mpc52xx_psc_get_mr1(struct uart_port *port)
{
out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1);
return in_8(&PSC(port)->mode);
}
#ifdef CONFIG_PPC_MPC52xx #ifdef CONFIG_PPC_MPC52xx
#define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1)) #define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1))
static void mpc52xx_psc_fifo_init(struct uart_port *port) static void mpc52xx_psc_fifo_init(struct uart_port *port)
...@@ -294,6 +362,15 @@ static struct psc_ops mpc52xx_psc_ops = { ...@@ -294,6 +362,15 @@ static struct psc_ops mpc52xx_psc_ops = {
.set_baudrate = mpc5200_psc_set_baudrate, .set_baudrate = mpc5200_psc_set_baudrate,
.get_irq = mpc52xx_psc_get_irq, .get_irq = mpc52xx_psc_get_irq,
.handle_irq = mpc52xx_psc_handle_irq, .handle_irq = mpc52xx_psc_handle_irq,
.get_status = mpc52xx_psc_get_status,
.get_ipcr = mpc52xx_psc_get_ipcr,
.command = mpc52xx_psc_command,
.set_mode = mpc52xx_psc_set_mode,
.set_rts = mpc52xx_psc_set_rts,
.enable_ms = mpc52xx_psc_enable_ms,
.set_sicr = mpc52xx_psc_set_sicr,
.set_imr = mpc52xx_psc_set_imr,
.get_mr1 = mpc52xx_psc_get_mr1,
}; };
static struct psc_ops mpc5200b_psc_ops = { static struct psc_ops mpc5200b_psc_ops = {
...@@ -315,6 +392,15 @@ static struct psc_ops mpc5200b_psc_ops = { ...@@ -315,6 +392,15 @@ static struct psc_ops mpc5200b_psc_ops = {
.set_baudrate = mpc5200b_psc_set_baudrate, .set_baudrate = mpc5200b_psc_set_baudrate,
.get_irq = mpc52xx_psc_get_irq, .get_irq = mpc52xx_psc_get_irq,
.handle_irq = mpc52xx_psc_handle_irq, .handle_irq = mpc52xx_psc_handle_irq,
.get_status = mpc52xx_psc_get_status,
.get_ipcr = mpc52xx_psc_get_ipcr,
.command = mpc52xx_psc_command,
.set_mode = mpc52xx_psc_set_mode,
.set_rts = mpc52xx_psc_set_rts,
.enable_ms = mpc52xx_psc_enable_ms,
.set_sicr = mpc52xx_psc_set_sicr,
.set_imr = mpc52xx_psc_set_imr,
.get_mr1 = mpc52xx_psc_get_mr1,
}; };
#endif /* CONFIG_MPC52xx */ #endif /* CONFIG_MPC52xx */
...@@ -585,8 +671,18 @@ static struct psc_ops mpc512x_psc_ops = { ...@@ -585,8 +671,18 @@ static struct psc_ops mpc512x_psc_ops = {
.fifoc_uninit = mpc512x_psc_fifoc_uninit, .fifoc_uninit = mpc512x_psc_fifoc_uninit,
.get_irq = mpc512x_psc_get_irq, .get_irq = mpc512x_psc_get_irq,
.handle_irq = mpc512x_psc_handle_irq, .handle_irq = mpc512x_psc_handle_irq,
.get_status = mpc52xx_psc_get_status,
.get_ipcr = mpc52xx_psc_get_ipcr,
.command = mpc52xx_psc_command,
.set_mode = mpc52xx_psc_set_mode,
.set_rts = mpc52xx_psc_set_rts,
.enable_ms = mpc52xx_psc_enable_ms,
.set_sicr = mpc52xx_psc_set_sicr,
.set_imr = mpc52xx_psc_set_imr,
.get_mr1 = mpc52xx_psc_get_mr1,
}; };
#endif #endif /* CONFIG_PPC_MPC512x */
static const struct psc_ops *psc_ops; static const struct psc_ops *psc_ops;
...@@ -603,17 +699,14 @@ mpc52xx_uart_tx_empty(struct uart_port *port) ...@@ -603,17 +699,14 @@ mpc52xx_uart_tx_empty(struct uart_port *port)
static void static void
mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
{ {
if (mctrl & TIOCM_RTS) psc_ops->set_rts(port, mctrl & TIOCM_RTS);
out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS);
else
out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS);
} }
static unsigned int static unsigned int
mpc52xx_uart_get_mctrl(struct uart_port *port) mpc52xx_uart_get_mctrl(struct uart_port *port)
{ {
unsigned int ret = TIOCM_DSR; unsigned int ret = TIOCM_DSR;
u8 status = in_8(&PSC(port)->mpc52xx_psc_ipcr); u8 status = psc_ops->get_ipcr(port);
if (!(status & MPC52xx_PSC_CTS)) if (!(status & MPC52xx_PSC_CTS))
ret |= TIOCM_CTS; ret |= TIOCM_CTS;
...@@ -663,15 +756,7 @@ mpc52xx_uart_stop_rx(struct uart_port *port) ...@@ -663,15 +756,7 @@ mpc52xx_uart_stop_rx(struct uart_port *port)
static void static void
mpc52xx_uart_enable_ms(struct uart_port *port) mpc52xx_uart_enable_ms(struct uart_port *port)
{ {
struct mpc52xx_psc __iomem *psc = PSC(port); psc_ops->enable_ms(port);
/* clear D_*-bits by reading them */
in_8(&psc->mpc52xx_psc_ipcr);
/* enable CTS and DCD as IPC interrupts */
out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
} }
static void static void
...@@ -681,9 +766,9 @@ mpc52xx_uart_break_ctl(struct uart_port *port, int ctl) ...@@ -681,9 +766,9 @@ mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
spin_lock_irqsave(&port->lock, flags); spin_lock_irqsave(&port->lock, flags);
if (ctl == -1) if (ctl == -1)
out_8(&PSC(port)->command, MPC52xx_PSC_START_BRK); psc_ops->command(port, MPC52xx_PSC_START_BRK);
else else
out_8(&PSC(port)->command, MPC52xx_PSC_STOP_BRK); psc_ops->command(port, MPC52xx_PSC_STOP_BRK);
spin_unlock_irqrestore(&port->lock, flags); spin_unlock_irqrestore(&port->lock, flags);
} }
...@@ -691,7 +776,6 @@ mpc52xx_uart_break_ctl(struct uart_port *port, int ctl) ...@@ -691,7 +776,6 @@ mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
static int static int
mpc52xx_uart_startup(struct uart_port *port) mpc52xx_uart_startup(struct uart_port *port)
{ {
struct mpc52xx_psc __iomem *psc = PSC(port);
int ret; int ret;
if (psc_ops->clock) { if (psc_ops->clock) {
...@@ -707,15 +791,15 @@ mpc52xx_uart_startup(struct uart_port *port) ...@@ -707,15 +791,15 @@ mpc52xx_uart_startup(struct uart_port *port)
return ret; return ret;
/* Reset/activate the port, clear and enable interrupts */ /* Reset/activate the port, clear and enable interrupts */
out_8(&psc->command, MPC52xx_PSC_RST_RX); psc_ops->command(port, MPC52xx_PSC_RST_RX);
out_8(&psc->command, MPC52xx_PSC_RST_TX); psc_ops->command(port, MPC52xx_PSC_RST_TX);
out_be32(&psc->sicr, 0); /* UART mode DCD ignored */ psc_ops->set_sicr(port, 0); /* UART mode DCD ignored */
psc_ops->fifo_init(port); psc_ops->fifo_init(port);
out_8(&psc->command, MPC52xx_PSC_TX_ENABLE); psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
out_8(&psc->command, MPC52xx_PSC_RX_ENABLE); psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
return 0; return 0;
} }
...@@ -723,15 +807,13 @@ mpc52xx_uart_startup(struct uart_port *port) ...@@ -723,15 +807,13 @@ mpc52xx_uart_startup(struct uart_port *port)
static void static void
mpc52xx_uart_shutdown(struct uart_port *port) mpc52xx_uart_shutdown(struct uart_port *port)
{ {
struct mpc52xx_psc __iomem *psc = PSC(port);
/* Shut down the port. Leave TX active if on a console port */ /* Shut down the port. Leave TX active if on a console port */
out_8(&psc->command, MPC52xx_PSC_RST_RX); psc_ops->command(port, MPC52xx_PSC_RST_RX);
if (!uart_console(port)) if (!uart_console(port))
out_8(&psc->command, MPC52xx_PSC_RST_TX); psc_ops->command(port, MPC52xx_PSC_RST_TX);
port->read_status_mask = 0; port->read_status_mask = 0;
out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); psc_ops->set_imr(port, port->read_status_mask);
if (psc_ops->clock) if (psc_ops->clock)
psc_ops->clock(port, 0); psc_ops->clock(port, 0);
...@@ -744,7 +826,6 @@ static void ...@@ -744,7 +826,6 @@ static void
mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
struct ktermios *old) struct ktermios *old)
{ {
struct mpc52xx_psc __iomem *psc = PSC(port);
unsigned long flags; unsigned long flags;
unsigned char mr1, mr2; unsigned char mr1, mr2;
unsigned int j; unsigned int j;
...@@ -808,13 +889,11 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, ...@@ -808,13 +889,11 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
"Some chars may have been lost.\n"); "Some chars may have been lost.\n");
/* Reset the TX & RX */ /* Reset the TX & RX */
out_8(&psc->command, MPC52xx_PSC_RST_RX); psc_ops->command(port, MPC52xx_PSC_RST_RX);
out_8(&psc->command, MPC52xx_PSC_RST_TX); psc_ops->command(port, MPC52xx_PSC_RST_TX);
/* Send new mode settings */ /* Send new mode settings */
out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1); psc_ops->set_mode(port, mr1, mr2);
out_8(&psc->mode, mr1);
out_8(&psc->mode, mr2);
baud = psc_ops->set_baudrate(port, new, old); baud = psc_ops->set_baudrate(port, new, old);
/* Update the per-port timeout */ /* Update the per-port timeout */
...@@ -824,8 +903,8 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, ...@@ -824,8 +903,8 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
mpc52xx_uart_enable_ms(port); mpc52xx_uart_enable_ms(port);
/* Reenable TX & RX */ /* Reenable TX & RX */
out_8(&psc->command, MPC52xx_PSC_TX_ENABLE); psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
out_8(&psc->command, MPC52xx_PSC_RX_ENABLE); psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
/* We're all set, release the lock */ /* We're all set, release the lock */
spin_unlock_irqrestore(&port->lock, flags); spin_unlock_irqrestore(&port->lock, flags);
...@@ -953,7 +1032,7 @@ mpc52xx_uart_int_rx_chars(struct uart_port *port) ...@@ -953,7 +1032,7 @@ mpc52xx_uart_int_rx_chars(struct uart_port *port)
flag = TTY_NORMAL; flag = TTY_NORMAL;
port->icount.rx++; port->icount.rx++;
status = in_be16(&PSC(port)->mpc52xx_psc_status); status = psc_ops->get_status(port);
if (status & (MPC52xx_PSC_SR_PE | if (status & (MPC52xx_PSC_SR_PE |
MPC52xx_PSC_SR_FE | MPC52xx_PSC_SR_FE |
...@@ -973,7 +1052,7 @@ mpc52xx_uart_int_rx_chars(struct uart_port *port) ...@@ -973,7 +1052,7 @@ mpc52xx_uart_int_rx_chars(struct uart_port *port)
} }
/* Clear error condition */ /* Clear error condition */
out_8(&PSC(port)->command, MPC52xx_PSC_RST_ERR_STAT); psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT);
} }
tty_insert_flip_char(tport, ch, flag); tty_insert_flip_char(tport, ch, flag);
...@@ -1056,7 +1135,7 @@ mpc5xxx_uart_process_int(struct uart_port *port) ...@@ -1056,7 +1135,7 @@ mpc5xxx_uart_process_int(struct uart_port *port)
if (psc_ops->tx_rdy(port)) if (psc_ops->tx_rdy(port))
keepgoing |= mpc52xx_uart_int_tx_chars(port); keepgoing |= mpc52xx_uart_int_tx_chars(port);
status = in_8(&PSC(port)->mpc52xx_psc_ipcr); status = psc_ops->get_ipcr(port);
if (status & MPC52xx_PSC_D_DCD) if (status & MPC52xx_PSC_D_DCD)
uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD)); uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD));
...@@ -1097,14 +1176,12 @@ static void __init ...@@ -1097,14 +1176,12 @@ static void __init
mpc52xx_console_get_options(struct uart_port *port, mpc52xx_console_get_options(struct uart_port *port,
int *baud, int *parity, int *bits, int *flow) int *baud, int *parity, int *bits, int *flow)
{ {
struct mpc52xx_psc __iomem *psc = PSC(port);
unsigned char mr1; unsigned char mr1;
pr_debug("mpc52xx_console_get_options(port=%p)\n", port); pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
/* Read the mode registers */ /* Read the mode registers */
out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1); mr1 = psc_ops->get_mr1(port);
mr1 = in_8(&psc->mode);
/* CT{U,L}R are write-only ! */ /* CT{U,L}R are write-only ! */
*baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment