1e3b3d0f5SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2ab4382d2SGreg Kroah-Hartman /*
3ab4382d2SGreg Kroah-Hartman  * Driver for the PSC of the Freescale MPC52xx PSCs configured as UARTs.
4ab4382d2SGreg Kroah-Hartman  *
5ab4382d2SGreg Kroah-Hartman  * FIXME According to the usermanual the status bits in the status register
6ab4382d2SGreg Kroah-Hartman  * are only updated when the peripherals access the FIFO and not when the
7ab4382d2SGreg Kroah-Hartman  * CPU access them. So since we use this bits to know when we stop writing
8ab4382d2SGreg Kroah-Hartman  * and reading, they may not be updated in-time and a race condition may
9ab4382d2SGreg Kroah-Hartman  * exists. But I haven't be able to prove this and I don't care. But if
10ab4382d2SGreg Kroah-Hartman  * any problem arises, it might worth checking. The TX/RX FIFO Stats
11ab4382d2SGreg Kroah-Hartman  * registers should be used in addition.
12ab4382d2SGreg Kroah-Hartman  * Update: Actually, they seem updated ... At least the bits we use.
13ab4382d2SGreg Kroah-Hartman  *
14ab4382d2SGreg Kroah-Hartman  *
15ab4382d2SGreg Kroah-Hartman  * Maintainer : Sylvain Munaut <tnt@246tNt.com>
16ab4382d2SGreg Kroah-Hartman  *
17ab4382d2SGreg Kroah-Hartman  * Some of the code has been inspired/copied from the 2.4 code written
18ab4382d2SGreg Kroah-Hartman  * by Dale Farnsworth <dfarnsworth@mvista.com>.
19ab4382d2SGreg Kroah-Hartman  *
20ab4382d2SGreg Kroah-Hartman  * Copyright (C) 2008 Freescale Semiconductor Inc.
21ab4382d2SGreg Kroah-Hartman  *                    John Rigby <jrigby@gmail.com>
22ab4382d2SGreg Kroah-Hartman  * Added support for MPC5121
23ab4382d2SGreg Kroah-Hartman  * Copyright (C) 2006 Secret Lab Technologies Ltd.
24ab4382d2SGreg Kroah-Hartman  *                    Grant Likely <grant.likely@secretlab.ca>
25ab4382d2SGreg Kroah-Hartman  * Copyright (C) 2004-2006 Sylvain Munaut <tnt@246tNt.com>
26ab4382d2SGreg Kroah-Hartman  * Copyright (C) 2003 MontaVista, Software, Inc.
27ab4382d2SGreg Kroah-Hartman  */
28ab4382d2SGreg Kroah-Hartman 
29ab4382d2SGreg Kroah-Hartman #undef DEBUG
30ab4382d2SGreg Kroah-Hartman 
31ab4382d2SGreg Kroah-Hartman #include <linux/device.h>
32ab4382d2SGreg Kroah-Hartman #include <linux/module.h>
33ab4382d2SGreg Kroah-Hartman #include <linux/tty.h>
34ee160a38SJiri Slaby #include <linux/tty_flip.h>
35ab4382d2SGreg Kroah-Hartman #include <linux/serial.h>
36ab4382d2SGreg Kroah-Hartman #include <linux/sysrq.h>
37ab4382d2SGreg Kroah-Hartman #include <linux/console.h>
38ab4382d2SGreg Kroah-Hartman #include <linux/delay.h>
39ab4382d2SGreg Kroah-Hartman #include <linux/io.h>
40ab4382d2SGreg Kroah-Hartman #include <linux/of.h>
41ab4382d2SGreg Kroah-Hartman #include <linux/of_platform.h>
42ab4382d2SGreg Kroah-Hartman #include <linux/clk.h>
43ab4382d2SGreg Kroah-Hartman 
44ab4382d2SGreg Kroah-Hartman #include <asm/mpc52xx.h>
45ab4382d2SGreg Kroah-Hartman #include <asm/mpc52xx_psc.h>
46ab4382d2SGreg Kroah-Hartman 
47ab4382d2SGreg Kroah-Hartman #include <linux/serial_core.h>
48ab4382d2SGreg Kroah-Hartman 
49ab4382d2SGreg Kroah-Hartman 
50ab4382d2SGreg Kroah-Hartman /* We've been assigned a range on the "Low-density serial ports" major */
51ab4382d2SGreg Kroah-Hartman #define SERIAL_PSC_MAJOR	204
52ab4382d2SGreg Kroah-Hartman #define SERIAL_PSC_MINOR	148
53ab4382d2SGreg Kroah-Hartman 
54ab4382d2SGreg Kroah-Hartman 
55ab4382d2SGreg Kroah-Hartman #define ISR_PASS_LIMIT 256	/* Max number of iteration in the interrupt */
56ab4382d2SGreg Kroah-Hartman 
57ab4382d2SGreg Kroah-Hartman 
58ab4382d2SGreg Kroah-Hartman static struct uart_port mpc52xx_uart_ports[MPC52xx_PSC_MAXNUM];
59ab4382d2SGreg Kroah-Hartman 	/* Rem: - We use the read_status_mask as a shadow of
60ab4382d2SGreg Kroah-Hartman 	 *        psc->mpc52xx_psc_imr
61ab4382d2SGreg Kroah-Hartman 	 *      - It's important that is array is all zero on start as we
62ab4382d2SGreg Kroah-Hartman 	 *        use it to know if it's initialized or not ! If it's not sure
63ab4382d2SGreg Kroah-Hartman 	 *        it's cleared, then a memset(...,0,...) should be added to
64ab4382d2SGreg Kroah-Hartman 	 *        the console_init
65ab4382d2SGreg Kroah-Hartman 	 */
66ab4382d2SGreg Kroah-Hartman 
67ab4382d2SGreg Kroah-Hartman /* lookup table for matching device nodes to index numbers */
68ab4382d2SGreg Kroah-Hartman static struct device_node *mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM];
69ab4382d2SGreg Kroah-Hartman 
70ab4382d2SGreg Kroah-Hartman static void mpc52xx_uart_of_enumerate(void);
71ab4382d2SGreg Kroah-Hartman 
72ab4382d2SGreg Kroah-Hartman 
73ab4382d2SGreg Kroah-Hartman #define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase))
74ab4382d2SGreg Kroah-Hartman 
75ab4382d2SGreg Kroah-Hartman 
76ab4382d2SGreg Kroah-Hartman /* Forward declaration of the interruption handling routine */
77ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc52xx_uart_int(int irq, void *dev_id);
78ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc5xxx_uart_process_int(struct uart_port *port);
79ab4382d2SGreg Kroah-Hartman 
80ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
81ab4382d2SGreg Kroah-Hartman /* PSC fifo operations for isolating differences between 52xx and 512x      */
82ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
83ab4382d2SGreg Kroah-Hartman 
84ab4382d2SGreg Kroah-Hartman struct psc_ops {
85ab4382d2SGreg Kroah-Hartman 	void		(*fifo_init)(struct uart_port *port);
86*18662a1dSJiri Slaby 	unsigned int	(*raw_rx_rdy)(struct uart_port *port);
87*18662a1dSJiri Slaby 	unsigned int	(*raw_tx_rdy)(struct uart_port *port);
88*18662a1dSJiri Slaby 	unsigned int	(*rx_rdy)(struct uart_port *port);
89*18662a1dSJiri Slaby 	unsigned int	(*tx_rdy)(struct uart_port *port);
90*18662a1dSJiri Slaby 	unsigned int	(*tx_empty)(struct uart_port *port);
91ab4382d2SGreg Kroah-Hartman 	void		(*stop_rx)(struct uart_port *port);
92ab4382d2SGreg Kroah-Hartman 	void		(*start_tx)(struct uart_port *port);
93ab4382d2SGreg Kroah-Hartman 	void		(*stop_tx)(struct uart_port *port);
94ab4382d2SGreg Kroah-Hartman 	void		(*rx_clr_irq)(struct uart_port *port);
95ab4382d2SGreg Kroah-Hartman 	void		(*tx_clr_irq)(struct uart_port *port);
96ab4382d2SGreg Kroah-Hartman 	void		(*write_char)(struct uart_port *port, unsigned char c);
97ab4382d2SGreg Kroah-Hartman 	unsigned char	(*read_char)(struct uart_port *port);
98ab4382d2SGreg Kroah-Hartman 	void		(*cw_disable_ints)(struct uart_port *port);
99ab4382d2SGreg Kroah-Hartman 	void		(*cw_restore_ints)(struct uart_port *port);
100ab4382d2SGreg Kroah-Hartman 	unsigned int	(*set_baudrate)(struct uart_port *port,
101ab4382d2SGreg Kroah-Hartman 					struct ktermios *new,
102ab4382d2SGreg Kroah-Hartman 					struct ktermios *old);
1032d30ccacSGerhard Sittig 	int		(*clock_alloc)(struct uart_port *port);
1042d30ccacSGerhard Sittig 	void		(*clock_relse)(struct uart_port *port);
105ab4382d2SGreg Kroah-Hartman 	int		(*clock)(struct uart_port *port, int enable);
106ab4382d2SGreg Kroah-Hartman 	int		(*fifoc_init)(void);
107ab4382d2SGreg Kroah-Hartman 	void		(*fifoc_uninit)(void);
108ab4382d2SGreg Kroah-Hartman 	void		(*get_irq)(struct uart_port *, struct device_node *);
109ab4382d2SGreg Kroah-Hartman 	irqreturn_t	(*handle_irq)(struct uart_port *port);
1102574b27eSMatteo Facchinetti 	u16		(*get_status)(struct uart_port *port);
1112574b27eSMatteo Facchinetti 	u8		(*get_ipcr)(struct uart_port *port);
1122574b27eSMatteo Facchinetti 	void		(*command)(struct uart_port *port, u8 cmd);
1132574b27eSMatteo Facchinetti 	void		(*set_mode)(struct uart_port *port, u8 mr1, u8 mr2);
1142574b27eSMatteo Facchinetti 	void		(*set_rts)(struct uart_port *port, int state);
1152574b27eSMatteo Facchinetti 	void		(*enable_ms)(struct uart_port *port);
1162574b27eSMatteo Facchinetti 	void		(*set_sicr)(struct uart_port *port, u32 val);
1172574b27eSMatteo Facchinetti 	void		(*set_imr)(struct uart_port *port, u16 val);
1182574b27eSMatteo Facchinetti 	u8		(*get_mr1)(struct uart_port *port);
119ab4382d2SGreg Kroah-Hartman };
120ab4382d2SGreg Kroah-Hartman 
121ab4382d2SGreg Kroah-Hartman /* setting the prescaler and divisor reg is common for all chips */
122ab4382d2SGreg Kroah-Hartman static inline void mpc52xx_set_divisor(struct mpc52xx_psc __iomem *psc,
123ab4382d2SGreg Kroah-Hartman 				       u16 prescaler, unsigned int divisor)
124ab4382d2SGreg Kroah-Hartman {
125ab4382d2SGreg Kroah-Hartman 	/* select prescaler */
126ab4382d2SGreg Kroah-Hartman 	out_be16(&psc->mpc52xx_psc_clock_select, prescaler);
127ab4382d2SGreg Kroah-Hartman 	out_8(&psc->ctur, divisor >> 8);
128ab4382d2SGreg Kroah-Hartman 	out_8(&psc->ctlr, divisor & 0xff);
129ab4382d2SGreg Kroah-Hartman }
130ab4382d2SGreg Kroah-Hartman 
1312574b27eSMatteo Facchinetti static u16 mpc52xx_psc_get_status(struct uart_port *port)
1322574b27eSMatteo Facchinetti {
1332574b27eSMatteo Facchinetti 	return in_be16(&PSC(port)->mpc52xx_psc_status);
1342574b27eSMatteo Facchinetti }
1352574b27eSMatteo Facchinetti 
1362574b27eSMatteo Facchinetti static u8 mpc52xx_psc_get_ipcr(struct uart_port *port)
1372574b27eSMatteo Facchinetti {
1382574b27eSMatteo Facchinetti 	return in_8(&PSC(port)->mpc52xx_psc_ipcr);
1392574b27eSMatteo Facchinetti }
1402574b27eSMatteo Facchinetti 
1412574b27eSMatteo Facchinetti static void mpc52xx_psc_command(struct uart_port *port, u8 cmd)
1422574b27eSMatteo Facchinetti {
1432574b27eSMatteo Facchinetti 	out_8(&PSC(port)->command, cmd);
1442574b27eSMatteo Facchinetti }
1452574b27eSMatteo Facchinetti 
1462574b27eSMatteo Facchinetti static void mpc52xx_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2)
1472574b27eSMatteo Facchinetti {
1482574b27eSMatteo Facchinetti 	out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1);
1492574b27eSMatteo Facchinetti 	out_8(&PSC(port)->mode, mr1);
1502574b27eSMatteo Facchinetti 	out_8(&PSC(port)->mode, mr2);
1512574b27eSMatteo Facchinetti }
1522574b27eSMatteo Facchinetti 
1532574b27eSMatteo Facchinetti static void mpc52xx_psc_set_rts(struct uart_port *port, int state)
1542574b27eSMatteo Facchinetti {
1552574b27eSMatteo Facchinetti 	if (state)
1562574b27eSMatteo Facchinetti 		out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS);
1572574b27eSMatteo Facchinetti 	else
1582574b27eSMatteo Facchinetti 		out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS);
1592574b27eSMatteo Facchinetti }
1602574b27eSMatteo Facchinetti 
1612574b27eSMatteo Facchinetti static void mpc52xx_psc_enable_ms(struct uart_port *port)
1622574b27eSMatteo Facchinetti {
1632574b27eSMatteo Facchinetti 	struct mpc52xx_psc __iomem *psc = PSC(port);
1642574b27eSMatteo Facchinetti 
1652574b27eSMatteo Facchinetti 	/* clear D_*-bits by reading them */
1662574b27eSMatteo Facchinetti 	in_8(&psc->mpc52xx_psc_ipcr);
1672574b27eSMatteo Facchinetti 	/* enable CTS and DCD as IPC interrupts */
1682574b27eSMatteo Facchinetti 	out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
1692574b27eSMatteo Facchinetti 
1702574b27eSMatteo Facchinetti 	port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
1712574b27eSMatteo Facchinetti 	out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
1722574b27eSMatteo Facchinetti }
1732574b27eSMatteo Facchinetti 
1742574b27eSMatteo Facchinetti static void mpc52xx_psc_set_sicr(struct uart_port *port, u32 val)
1752574b27eSMatteo Facchinetti {
1762574b27eSMatteo Facchinetti 	out_be32(&PSC(port)->sicr, val);
1772574b27eSMatteo Facchinetti }
1782574b27eSMatteo Facchinetti 
1792574b27eSMatteo Facchinetti static void mpc52xx_psc_set_imr(struct uart_port *port, u16 val)
1802574b27eSMatteo Facchinetti {
1812574b27eSMatteo Facchinetti 	out_be16(&PSC(port)->mpc52xx_psc_imr, val);
1822574b27eSMatteo Facchinetti }
1832574b27eSMatteo Facchinetti 
1842574b27eSMatteo Facchinetti static u8 mpc52xx_psc_get_mr1(struct uart_port *port)
1852574b27eSMatteo Facchinetti {
1862574b27eSMatteo Facchinetti 	out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1);
1872574b27eSMatteo Facchinetti 	return in_8(&PSC(port)->mode);
1882574b27eSMatteo Facchinetti }
1892574b27eSMatteo Facchinetti 
190ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC52xx
191ab4382d2SGreg Kroah-Hartman #define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1))
192ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_fifo_init(struct uart_port *port)
193ab4382d2SGreg Kroah-Hartman {
194ab4382d2SGreg Kroah-Hartman 	struct mpc52xx_psc __iomem *psc = PSC(port);
195ab4382d2SGreg Kroah-Hartman 	struct mpc52xx_psc_fifo __iomem *fifo = FIFO_52xx(port);
196ab4382d2SGreg Kroah-Hartman 
197ab4382d2SGreg Kroah-Hartman 	out_8(&fifo->rfcntl, 0x00);
198ab4382d2SGreg Kroah-Hartman 	out_be16(&fifo->rfalarm, 0x1ff);
199ab4382d2SGreg Kroah-Hartman 	out_8(&fifo->tfcntl, 0x07);
200ab4382d2SGreg Kroah-Hartman 	out_be16(&fifo->tfalarm, 0x80);
201ab4382d2SGreg Kroah-Hartman 
202ab4382d2SGreg Kroah-Hartman 	port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY;
203ab4382d2SGreg Kroah-Hartman 	out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
204ab4382d2SGreg Kroah-Hartman }
205ab4382d2SGreg Kroah-Hartman 
206*18662a1dSJiri Slaby static unsigned int mpc52xx_psc_raw_rx_rdy(struct uart_port *port)
207ab4382d2SGreg Kroah-Hartman {
208ab4382d2SGreg Kroah-Hartman 	return in_be16(&PSC(port)->mpc52xx_psc_status)
209ab4382d2SGreg Kroah-Hartman 	    & MPC52xx_PSC_SR_RXRDY;
210ab4382d2SGreg Kroah-Hartman }
211ab4382d2SGreg Kroah-Hartman 
212*18662a1dSJiri Slaby static unsigned int mpc52xx_psc_raw_tx_rdy(struct uart_port *port)
213ab4382d2SGreg Kroah-Hartman {
214ab4382d2SGreg Kroah-Hartman 	return in_be16(&PSC(port)->mpc52xx_psc_status)
215ab4382d2SGreg Kroah-Hartman 	    & MPC52xx_PSC_SR_TXRDY;
216ab4382d2SGreg Kroah-Hartman }
217ab4382d2SGreg Kroah-Hartman 
218ab4382d2SGreg Kroah-Hartman 
219*18662a1dSJiri Slaby static unsigned int mpc52xx_psc_rx_rdy(struct uart_port *port)
220ab4382d2SGreg Kroah-Hartman {
221ab4382d2SGreg Kroah-Hartman 	return in_be16(&PSC(port)->mpc52xx_psc_isr)
222ab4382d2SGreg Kroah-Hartman 	    & port->read_status_mask
223ab4382d2SGreg Kroah-Hartman 	    & MPC52xx_PSC_IMR_RXRDY;
224ab4382d2SGreg Kroah-Hartman }
225ab4382d2SGreg Kroah-Hartman 
226*18662a1dSJiri Slaby static unsigned int mpc52xx_psc_tx_rdy(struct uart_port *port)
227ab4382d2SGreg Kroah-Hartman {
228ab4382d2SGreg Kroah-Hartman 	return in_be16(&PSC(port)->mpc52xx_psc_isr)
229ab4382d2SGreg Kroah-Hartman 	    & port->read_status_mask
230ab4382d2SGreg Kroah-Hartman 	    & MPC52xx_PSC_IMR_TXRDY;
231ab4382d2SGreg Kroah-Hartman }
232ab4382d2SGreg Kroah-Hartman 
233*18662a1dSJiri Slaby static unsigned int mpc52xx_psc_tx_empty(struct uart_port *port)
234ab4382d2SGreg Kroah-Hartman {
2357d07ada0SUwe Kleine-König 	u16 sts = in_be16(&PSC(port)->mpc52xx_psc_status);
2367d07ada0SUwe Kleine-König 
2377d07ada0SUwe Kleine-König 	return (sts & MPC52xx_PSC_SR_TXEMP) ? TIOCSER_TEMT : 0;
238ab4382d2SGreg Kroah-Hartman }
239ab4382d2SGreg Kroah-Hartman 
240ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_start_tx(struct uart_port *port)
241ab4382d2SGreg Kroah-Hartman {
242ab4382d2SGreg Kroah-Hartman 	port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
243ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
244ab4382d2SGreg Kroah-Hartman }
245ab4382d2SGreg Kroah-Hartman 
246ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_stop_tx(struct uart_port *port)
247ab4382d2SGreg Kroah-Hartman {
248ab4382d2SGreg Kroah-Hartman 	port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
249ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
250ab4382d2SGreg Kroah-Hartman }
251ab4382d2SGreg Kroah-Hartman 
252ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_stop_rx(struct uart_port *port)
253ab4382d2SGreg Kroah-Hartman {
254ab4382d2SGreg Kroah-Hartman 	port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
255ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
256ab4382d2SGreg Kroah-Hartman }
257ab4382d2SGreg Kroah-Hartman 
258ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_rx_clr_irq(struct uart_port *port)
259ab4382d2SGreg Kroah-Hartman {
260ab4382d2SGreg Kroah-Hartman }
261ab4382d2SGreg Kroah-Hartman 
262ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_tx_clr_irq(struct uart_port *port)
263ab4382d2SGreg Kroah-Hartman {
264ab4382d2SGreg Kroah-Hartman }
265ab4382d2SGreg Kroah-Hartman 
266ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c)
267ab4382d2SGreg Kroah-Hartman {
268ab4382d2SGreg Kroah-Hartman 	out_8(&PSC(port)->mpc52xx_psc_buffer_8, c);
269ab4382d2SGreg Kroah-Hartman }
270ab4382d2SGreg Kroah-Hartman 
271ab4382d2SGreg Kroah-Hartman static unsigned char mpc52xx_psc_read_char(struct uart_port *port)
272ab4382d2SGreg Kroah-Hartman {
273ab4382d2SGreg Kroah-Hartman 	return in_8(&PSC(port)->mpc52xx_psc_buffer_8);
274ab4382d2SGreg Kroah-Hartman }
275ab4382d2SGreg Kroah-Hartman 
276ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_cw_disable_ints(struct uart_port *port)
277ab4382d2SGreg Kroah-Hartman {
278ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, 0);
279ab4382d2SGreg Kroah-Hartman }
280ab4382d2SGreg Kroah-Hartman 
281ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_cw_restore_ints(struct uart_port *port)
282ab4382d2SGreg Kroah-Hartman {
283ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
284ab4382d2SGreg Kroah-Hartman }
285ab4382d2SGreg Kroah-Hartman 
286ab4382d2SGreg Kroah-Hartman static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port,
287ab4382d2SGreg Kroah-Hartman 					     struct ktermios *new,
288ab4382d2SGreg Kroah-Hartman 					     struct ktermios *old)
289ab4382d2SGreg Kroah-Hartman {
290ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
291ab4382d2SGreg Kroah-Hartman 	unsigned int divisor;
292ab4382d2SGreg Kroah-Hartman 
293ab4382d2SGreg Kroah-Hartman 	/* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */
294ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, new, old,
295ab4382d2SGreg Kroah-Hartman 				  port->uartclk / (32 * 0xffff) + 1,
296ab4382d2SGreg Kroah-Hartman 				  port->uartclk / 32);
297ab4382d2SGreg Kroah-Hartman 	divisor = (port->uartclk + 16 * baud) / (32 * baud);
298ab4382d2SGreg Kroah-Hartman 
299ab4382d2SGreg Kroah-Hartman 	/* enable the /32 prescaler and set the divisor */
300ab4382d2SGreg Kroah-Hartman 	mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
301ab4382d2SGreg Kroah-Hartman 	return baud;
302ab4382d2SGreg Kroah-Hartman }
303ab4382d2SGreg Kroah-Hartman 
304ab4382d2SGreg Kroah-Hartman static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port,
305ab4382d2SGreg Kroah-Hartman 					      struct ktermios *new,
306ab4382d2SGreg Kroah-Hartman 					      struct ktermios *old)
307ab4382d2SGreg Kroah-Hartman {
308ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
309ab4382d2SGreg Kroah-Hartman 	unsigned int divisor;
310ab4382d2SGreg Kroah-Hartman 	u16 prescaler;
311ab4382d2SGreg Kroah-Hartman 
312ab4382d2SGreg Kroah-Hartman 	/* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the
313ab4382d2SGreg Kroah-Hartman 	 * ipb freq */
314ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, new, old,
315ab4382d2SGreg Kroah-Hartman 				  port->uartclk / (32 * 0xffff) + 1,
316ab4382d2SGreg Kroah-Hartman 				  port->uartclk / 4);
317ab4382d2SGreg Kroah-Hartman 	divisor = (port->uartclk + 2 * baud) / (4 * baud);
318ab4382d2SGreg Kroah-Hartman 
319e0955aceSFrank Benkert 	/* select the proper prescaler and set the divisor
320e0955aceSFrank Benkert 	 * prefer high prescaler for more tolerance on low baudrates */
321e0955aceSFrank Benkert 	if (divisor > 0xffff || baud <= 115200) {
322ab4382d2SGreg Kroah-Hartman 		divisor = (divisor + 4) / 8;
323ab4382d2SGreg Kroah-Hartman 		prescaler = 0xdd00; /* /32 */
324ab4382d2SGreg Kroah-Hartman 	} else
325ab4382d2SGreg Kroah-Hartman 		prescaler = 0xff00; /* /4 */
326ab4382d2SGreg Kroah-Hartman 	mpc52xx_set_divisor(PSC(port), prescaler, divisor);
327ab4382d2SGreg Kroah-Hartman 	return baud;
328ab4382d2SGreg Kroah-Hartman }
329ab4382d2SGreg Kroah-Hartman 
330ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np)
331ab4382d2SGreg Kroah-Hartman {
3329cfb5c05SYong Zhang 	port->irqflags = 0;
333ab4382d2SGreg Kroah-Hartman 	port->irq = irq_of_parse_and_map(np, 0);
334ab4382d2SGreg Kroah-Hartman }
335ab4382d2SGreg Kroah-Hartman 
336ab4382d2SGreg Kroah-Hartman /* 52xx specific interrupt handler. The caller holds the port lock */
337ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port)
338ab4382d2SGreg Kroah-Hartman {
339ab4382d2SGreg Kroah-Hartman 	return mpc5xxx_uart_process_int(port);
340ab4382d2SGreg Kroah-Hartman }
341ab4382d2SGreg Kroah-Hartman 
342cc74bd1dSAya Mahfouz static const struct psc_ops mpc52xx_psc_ops = {
343ab4382d2SGreg Kroah-Hartman 	.fifo_init = mpc52xx_psc_fifo_init,
344ab4382d2SGreg Kroah-Hartman 	.raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
345ab4382d2SGreg Kroah-Hartman 	.raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
346ab4382d2SGreg Kroah-Hartman 	.rx_rdy = mpc52xx_psc_rx_rdy,
347ab4382d2SGreg Kroah-Hartman 	.tx_rdy = mpc52xx_psc_tx_rdy,
348ab4382d2SGreg Kroah-Hartman 	.tx_empty = mpc52xx_psc_tx_empty,
349ab4382d2SGreg Kroah-Hartman 	.stop_rx = mpc52xx_psc_stop_rx,
350ab4382d2SGreg Kroah-Hartman 	.start_tx = mpc52xx_psc_start_tx,
351ab4382d2SGreg Kroah-Hartman 	.stop_tx = mpc52xx_psc_stop_tx,
352ab4382d2SGreg Kroah-Hartman 	.rx_clr_irq = mpc52xx_psc_rx_clr_irq,
353ab4382d2SGreg Kroah-Hartman 	.tx_clr_irq = mpc52xx_psc_tx_clr_irq,
354ab4382d2SGreg Kroah-Hartman 	.write_char = mpc52xx_psc_write_char,
355ab4382d2SGreg Kroah-Hartman 	.read_char = mpc52xx_psc_read_char,
356ab4382d2SGreg Kroah-Hartman 	.cw_disable_ints = mpc52xx_psc_cw_disable_ints,
357ab4382d2SGreg Kroah-Hartman 	.cw_restore_ints = mpc52xx_psc_cw_restore_ints,
358ab4382d2SGreg Kroah-Hartman 	.set_baudrate = mpc5200_psc_set_baudrate,
359ab4382d2SGreg Kroah-Hartman 	.get_irq = mpc52xx_psc_get_irq,
360ab4382d2SGreg Kroah-Hartman 	.handle_irq = mpc52xx_psc_handle_irq,
3612574b27eSMatteo Facchinetti 	.get_status = mpc52xx_psc_get_status,
3622574b27eSMatteo Facchinetti 	.get_ipcr = mpc52xx_psc_get_ipcr,
3632574b27eSMatteo Facchinetti 	.command = mpc52xx_psc_command,
3642574b27eSMatteo Facchinetti 	.set_mode = mpc52xx_psc_set_mode,
3652574b27eSMatteo Facchinetti 	.set_rts = mpc52xx_psc_set_rts,
3662574b27eSMatteo Facchinetti 	.enable_ms = mpc52xx_psc_enable_ms,
3672574b27eSMatteo Facchinetti 	.set_sicr = mpc52xx_psc_set_sicr,
3682574b27eSMatteo Facchinetti 	.set_imr = mpc52xx_psc_set_imr,
3692574b27eSMatteo Facchinetti 	.get_mr1 = mpc52xx_psc_get_mr1,
370ab4382d2SGreg Kroah-Hartman };
371ab4382d2SGreg Kroah-Hartman 
372cc74bd1dSAya Mahfouz static const struct psc_ops mpc5200b_psc_ops = {
373ab4382d2SGreg Kroah-Hartman 	.fifo_init = mpc52xx_psc_fifo_init,
374ab4382d2SGreg Kroah-Hartman 	.raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
375ab4382d2SGreg Kroah-Hartman 	.raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
376ab4382d2SGreg Kroah-Hartman 	.rx_rdy = mpc52xx_psc_rx_rdy,
377ab4382d2SGreg Kroah-Hartman 	.tx_rdy = mpc52xx_psc_tx_rdy,
378ab4382d2SGreg Kroah-Hartman 	.tx_empty = mpc52xx_psc_tx_empty,
379ab4382d2SGreg Kroah-Hartman 	.stop_rx = mpc52xx_psc_stop_rx,
380ab4382d2SGreg Kroah-Hartman 	.start_tx = mpc52xx_psc_start_tx,
381ab4382d2SGreg Kroah-Hartman 	.stop_tx = mpc52xx_psc_stop_tx,
382ab4382d2SGreg Kroah-Hartman 	.rx_clr_irq = mpc52xx_psc_rx_clr_irq,
383ab4382d2SGreg Kroah-Hartman 	.tx_clr_irq = mpc52xx_psc_tx_clr_irq,
384ab4382d2SGreg Kroah-Hartman 	.write_char = mpc52xx_psc_write_char,
385ab4382d2SGreg Kroah-Hartman 	.read_char = mpc52xx_psc_read_char,
386ab4382d2SGreg Kroah-Hartman 	.cw_disable_ints = mpc52xx_psc_cw_disable_ints,
387ab4382d2SGreg Kroah-Hartman 	.cw_restore_ints = mpc52xx_psc_cw_restore_ints,
388ab4382d2SGreg Kroah-Hartman 	.set_baudrate = mpc5200b_psc_set_baudrate,
389ab4382d2SGreg Kroah-Hartman 	.get_irq = mpc52xx_psc_get_irq,
390ab4382d2SGreg Kroah-Hartman 	.handle_irq = mpc52xx_psc_handle_irq,
3912574b27eSMatteo Facchinetti 	.get_status = mpc52xx_psc_get_status,
3922574b27eSMatteo Facchinetti 	.get_ipcr = mpc52xx_psc_get_ipcr,
3932574b27eSMatteo Facchinetti 	.command = mpc52xx_psc_command,
3942574b27eSMatteo Facchinetti 	.set_mode = mpc52xx_psc_set_mode,
3952574b27eSMatteo Facchinetti 	.set_rts = mpc52xx_psc_set_rts,
3962574b27eSMatteo Facchinetti 	.enable_ms = mpc52xx_psc_enable_ms,
3972574b27eSMatteo Facchinetti 	.set_sicr = mpc52xx_psc_set_sicr,
3982574b27eSMatteo Facchinetti 	.set_imr = mpc52xx_psc_set_imr,
3992574b27eSMatteo Facchinetti 	.get_mr1 = mpc52xx_psc_get_mr1,
400ab4382d2SGreg Kroah-Hartman };
401ab4382d2SGreg Kroah-Hartman 
4025b84c967SValentin Rothberg #endif /* CONFIG_PPC_MPC52xx */
403ab4382d2SGreg Kroah-Hartman 
404ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC512x
405ab4382d2SGreg Kroah-Hartman #define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1))
406ab4382d2SGreg Kroah-Hartman 
407ab4382d2SGreg Kroah-Hartman /* PSC FIFO Controller for mpc512x */
408ab4382d2SGreg Kroah-Hartman struct psc_fifoc {
409ab4382d2SGreg Kroah-Hartman 	u32 fifoc_cmd;
410ab4382d2SGreg Kroah-Hartman 	u32 fifoc_int;
411ab4382d2SGreg Kroah-Hartman 	u32 fifoc_dma;
412ab4382d2SGreg Kroah-Hartman 	u32 fifoc_axe;
413ab4382d2SGreg Kroah-Hartman 	u32 fifoc_debug;
414ab4382d2SGreg Kroah-Hartman };
415ab4382d2SGreg Kroah-Hartman 
416ab4382d2SGreg Kroah-Hartman static struct psc_fifoc __iomem *psc_fifoc;
417ab4382d2SGreg Kroah-Hartman static unsigned int psc_fifoc_irq;
418cb1ea812SGerhard Sittig static struct clk *psc_fifoc_clk;
419ab4382d2SGreg Kroah-Hartman 
420ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_fifo_init(struct uart_port *port)
421ab4382d2SGreg Kroah-Hartman {
422ab4382d2SGreg Kroah-Hartman 	/* /32 prescaler */
423ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00);
424ab4382d2SGreg Kroah-Hartman 
425ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
426ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
427ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txalarm, 1);
428ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, 0);
429ab4382d2SGreg Kroah-Hartman 
430ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
431ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
432ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxalarm, 1);
433ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, 0);
434ab4382d2SGreg Kroah-Hartman 
435ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM);
436ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM);
437ab4382d2SGreg Kroah-Hartman }
438ab4382d2SGreg Kroah-Hartman 
439ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_raw_rx_rdy(struct uart_port *port)
440ab4382d2SGreg Kroah-Hartman {
441ab4382d2SGreg Kroah-Hartman 	return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
442ab4382d2SGreg Kroah-Hartman }
443ab4382d2SGreg Kroah-Hartman 
444ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_raw_tx_rdy(struct uart_port *port)
445ab4382d2SGreg Kroah-Hartman {
446ab4382d2SGreg Kroah-Hartman 	return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL);
447ab4382d2SGreg Kroah-Hartman }
448ab4382d2SGreg Kroah-Hartman 
449ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_rx_rdy(struct uart_port *port)
450ab4382d2SGreg Kroah-Hartman {
451ab4382d2SGreg Kroah-Hartman 	return in_be32(&FIFO_512x(port)->rxsr)
452ab4382d2SGreg Kroah-Hartman 	    & in_be32(&FIFO_512x(port)->rximr)
453ab4382d2SGreg Kroah-Hartman 	    & MPC512x_PSC_FIFO_ALARM;
454ab4382d2SGreg Kroah-Hartman }
455ab4382d2SGreg Kroah-Hartman 
456ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_tx_rdy(struct uart_port *port)
457ab4382d2SGreg Kroah-Hartman {
458ab4382d2SGreg Kroah-Hartman 	return in_be32(&FIFO_512x(port)->txsr)
459ab4382d2SGreg Kroah-Hartman 	    & in_be32(&FIFO_512x(port)->tximr)
460ab4382d2SGreg Kroah-Hartman 	    & MPC512x_PSC_FIFO_ALARM;
461ab4382d2SGreg Kroah-Hartman }
462ab4382d2SGreg Kroah-Hartman 
463ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_tx_empty(struct uart_port *port)
464ab4382d2SGreg Kroah-Hartman {
465ab4382d2SGreg Kroah-Hartman 	return in_be32(&FIFO_512x(port)->txsr)
466ab4382d2SGreg Kroah-Hartman 	    & MPC512x_PSC_FIFO_EMPTY;
467ab4382d2SGreg Kroah-Hartman }
468ab4382d2SGreg Kroah-Hartman 
469ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_stop_rx(struct uart_port *port)
470ab4382d2SGreg Kroah-Hartman {
471ab4382d2SGreg Kroah-Hartman 	unsigned long rx_fifo_imr;
472ab4382d2SGreg Kroah-Hartman 
473ab4382d2SGreg Kroah-Hartman 	rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr);
474ab4382d2SGreg Kroah-Hartman 	rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
475ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr);
476ab4382d2SGreg Kroah-Hartman }
477ab4382d2SGreg Kroah-Hartman 
478ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_start_tx(struct uart_port *port)
479ab4382d2SGreg Kroah-Hartman {
480ab4382d2SGreg Kroah-Hartman 	unsigned long tx_fifo_imr;
481ab4382d2SGreg Kroah-Hartman 
482ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
483ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
484ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
485ab4382d2SGreg Kroah-Hartman }
486ab4382d2SGreg Kroah-Hartman 
487ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_stop_tx(struct uart_port *port)
488ab4382d2SGreg Kroah-Hartman {
489ab4382d2SGreg Kroah-Hartman 	unsigned long tx_fifo_imr;
490ab4382d2SGreg Kroah-Hartman 
491ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
492ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
493ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
494ab4382d2SGreg Kroah-Hartman }
495ab4382d2SGreg Kroah-Hartman 
496ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_rx_clr_irq(struct uart_port *port)
497ab4382d2SGreg Kroah-Hartman {
498ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr));
499ab4382d2SGreg Kroah-Hartman }
500ab4382d2SGreg Kroah-Hartman 
501ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_tx_clr_irq(struct uart_port *port)
502ab4382d2SGreg Kroah-Hartman {
503ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr));
504ab4382d2SGreg Kroah-Hartman }
505ab4382d2SGreg Kroah-Hartman 
506ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c)
507ab4382d2SGreg Kroah-Hartman {
508ab4382d2SGreg Kroah-Hartman 	out_8(&FIFO_512x(port)->txdata_8, c);
509ab4382d2SGreg Kroah-Hartman }
510ab4382d2SGreg Kroah-Hartman 
511ab4382d2SGreg Kroah-Hartman static unsigned char mpc512x_psc_read_char(struct uart_port *port)
512ab4382d2SGreg Kroah-Hartman {
513ab4382d2SGreg Kroah-Hartman 	return in_8(&FIFO_512x(port)->rxdata_8);
514ab4382d2SGreg Kroah-Hartman }
515ab4382d2SGreg Kroah-Hartman 
516ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_cw_disable_ints(struct uart_port *port)
517ab4382d2SGreg Kroah-Hartman {
518ab4382d2SGreg Kroah-Hartman 	port->read_status_mask =
519ab4382d2SGreg Kroah-Hartman 		in_be32(&FIFO_512x(port)->tximr) << 16 |
520ab4382d2SGreg Kroah-Hartman 		in_be32(&FIFO_512x(port)->rximr);
521ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, 0);
522ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, 0);
523ab4382d2SGreg Kroah-Hartman }
524ab4382d2SGreg Kroah-Hartman 
525ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_cw_restore_ints(struct uart_port *port)
526ab4382d2SGreg Kroah-Hartman {
527ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr,
528ab4382d2SGreg Kroah-Hartman 		(port->read_status_mask >> 16) & 0x7f);
529ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f);
530ab4382d2SGreg Kroah-Hartman }
531ab4382d2SGreg Kroah-Hartman 
532ab4382d2SGreg Kroah-Hartman static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port,
533ab4382d2SGreg Kroah-Hartman 					     struct ktermios *new,
534ab4382d2SGreg Kroah-Hartman 					     struct ktermios *old)
535ab4382d2SGreg Kroah-Hartman {
536ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
537ab4382d2SGreg Kroah-Hartman 	unsigned int divisor;
538ab4382d2SGreg Kroah-Hartman 
539ab4382d2SGreg Kroah-Hartman 	/*
540ab4382d2SGreg Kroah-Hartman 	 * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on
541ab4382d2SGreg Kroah-Hartman 	 * pg. 30-10 that the chip supports a /32 and a /10 prescaler.
542ab4382d2SGreg Kroah-Hartman 	 * Furthermore, it states that "After reset, the prescaler by 10
543ab4382d2SGreg Kroah-Hartman 	 * for the UART mode is selected", but the reset register value is
544ab4382d2SGreg Kroah-Hartman 	 * 0x0000 which means a /32 prescaler. This is wrong.
545ab4382d2SGreg Kroah-Hartman 	 *
546ab4382d2SGreg Kroah-Hartman 	 * In reality using /32 prescaler doesn't work, as it is not supported!
547ab4382d2SGreg Kroah-Hartman 	 * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide",
548ab4382d2SGreg Kroah-Hartman 	 * Chapter 4.1 PSC in UART Mode.
549ab4382d2SGreg Kroah-Hartman 	 * Calculate with a /16 prescaler here.
550ab4382d2SGreg Kroah-Hartman 	 */
551ab4382d2SGreg Kroah-Hartman 
552ab4382d2SGreg Kroah-Hartman 	/* uartclk contains the ips freq */
553ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, new, old,
554ab4382d2SGreg Kroah-Hartman 				  port->uartclk / (16 * 0xffff) + 1,
555ab4382d2SGreg Kroah-Hartman 				  port->uartclk / 16);
556ab4382d2SGreg Kroah-Hartman 	divisor = (port->uartclk + 8 * baud) / (16 * baud);
557ab4382d2SGreg Kroah-Hartman 
558ab4382d2SGreg Kroah-Hartman 	/* enable the /16 prescaler and set the divisor */
559ab4382d2SGreg Kroah-Hartman 	mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
560ab4382d2SGreg Kroah-Hartman 	return baud;
561ab4382d2SGreg Kroah-Hartman }
562ab4382d2SGreg Kroah-Hartman 
563ab4382d2SGreg Kroah-Hartman /* Init PSC FIFO Controller */
564ab4382d2SGreg Kroah-Hartman static int __init mpc512x_psc_fifoc_init(void)
565ab4382d2SGreg Kroah-Hartman {
566cb1ea812SGerhard Sittig 	int err;
567ab4382d2SGreg Kroah-Hartman 	struct device_node *np;
568cb1ea812SGerhard Sittig 	struct clk *clk;
569cb1ea812SGerhard Sittig 
570cb1ea812SGerhard Sittig 	/* default error code, potentially overwritten by clock calls */
571cb1ea812SGerhard Sittig 	err = -ENODEV;
572ab4382d2SGreg Kroah-Hartman 
573ab4382d2SGreg Kroah-Hartman 	np = of_find_compatible_node(NULL, NULL,
574ab4382d2SGreg Kroah-Hartman 				     "fsl,mpc5121-psc-fifo");
575ab4382d2SGreg Kroah-Hartman 	if (!np) {
576ab4382d2SGreg Kroah-Hartman 		pr_err("%s: Can't find FIFOC node\n", __func__);
577cb1ea812SGerhard Sittig 		goto out_err;
578ab4382d2SGreg Kroah-Hartman 	}
579ab4382d2SGreg Kroah-Hartman 
580cb1ea812SGerhard Sittig 	clk = of_clk_get(np, 0);
581cb1ea812SGerhard Sittig 	if (IS_ERR(clk)) {
582cb1ea812SGerhard Sittig 		/* backwards compat with device trees that lack clock specs */
583cb1ea812SGerhard Sittig 		clk = clk_get_sys(np->name, "ipg");
584cb1ea812SGerhard Sittig 	}
585cb1ea812SGerhard Sittig 	if (IS_ERR(clk)) {
586cb1ea812SGerhard Sittig 		pr_err("%s: Can't lookup FIFO clock\n", __func__);
587cb1ea812SGerhard Sittig 		err = PTR_ERR(clk);
588cb1ea812SGerhard Sittig 		goto out_ofnode_put;
589cb1ea812SGerhard Sittig 	}
590cb1ea812SGerhard Sittig 	if (clk_prepare_enable(clk)) {
591cb1ea812SGerhard Sittig 		pr_err("%s: Can't enable FIFO clock\n", __func__);
592cb1ea812SGerhard Sittig 		clk_put(clk);
593cb1ea812SGerhard Sittig 		goto out_ofnode_put;
594cb1ea812SGerhard Sittig 	}
595cb1ea812SGerhard Sittig 	psc_fifoc_clk = clk;
596cb1ea812SGerhard Sittig 
597ab4382d2SGreg Kroah-Hartman 	psc_fifoc = of_iomap(np, 0);
598ab4382d2SGreg Kroah-Hartman 	if (!psc_fifoc) {
599ab4382d2SGreg Kroah-Hartman 		pr_err("%s: Can't map FIFOC\n", __func__);
600cb1ea812SGerhard Sittig 		goto out_clk_disable;
601ab4382d2SGreg Kroah-Hartman 	}
602ab4382d2SGreg Kroah-Hartman 
603ab4382d2SGreg Kroah-Hartman 	psc_fifoc_irq = irq_of_parse_and_map(np, 0);
604d4e33facSAlan Cox 	if (psc_fifoc_irq == 0) {
605ab4382d2SGreg Kroah-Hartman 		pr_err("%s: Can't get FIFOC irq\n", __func__);
606cb1ea812SGerhard Sittig 		goto out_unmap;
607ab4382d2SGreg Kroah-Hartman 	}
608ab4382d2SGreg Kroah-Hartman 
609cb1ea812SGerhard Sittig 	of_node_put(np);
610ab4382d2SGreg Kroah-Hartman 	return 0;
611cb1ea812SGerhard Sittig 
612cb1ea812SGerhard Sittig out_unmap:
613cb1ea812SGerhard Sittig 	iounmap(psc_fifoc);
614cb1ea812SGerhard Sittig out_clk_disable:
615cb1ea812SGerhard Sittig 	clk_disable_unprepare(psc_fifoc_clk);
616cb1ea812SGerhard Sittig 	clk_put(psc_fifoc_clk);
617cb1ea812SGerhard Sittig out_ofnode_put:
618cb1ea812SGerhard Sittig 	of_node_put(np);
619cb1ea812SGerhard Sittig out_err:
620cb1ea812SGerhard Sittig 	return err;
621ab4382d2SGreg Kroah-Hartman }
622ab4382d2SGreg Kroah-Hartman 
623ab4382d2SGreg Kroah-Hartman static void __exit mpc512x_psc_fifoc_uninit(void)
624ab4382d2SGreg Kroah-Hartman {
625ab4382d2SGreg Kroah-Hartman 	iounmap(psc_fifoc);
626cb1ea812SGerhard Sittig 
627cb1ea812SGerhard Sittig 	/* disable the clock, errors are not fatal */
628cb1ea812SGerhard Sittig 	if (psc_fifoc_clk) {
629cb1ea812SGerhard Sittig 		clk_disable_unprepare(psc_fifoc_clk);
630cb1ea812SGerhard Sittig 		clk_put(psc_fifoc_clk);
631cb1ea812SGerhard Sittig 		psc_fifoc_clk = NULL;
632cb1ea812SGerhard Sittig 	}
633ab4382d2SGreg Kroah-Hartman }
634ab4382d2SGreg Kroah-Hartman 
635ab4382d2SGreg Kroah-Hartman /* 512x specific interrupt handler. The caller holds the port lock */
636ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port)
637ab4382d2SGreg Kroah-Hartman {
638ab4382d2SGreg Kroah-Hartman 	unsigned long fifoc_int;
639ab4382d2SGreg Kroah-Hartman 	int psc_num;
640ab4382d2SGreg Kroah-Hartman 
641ab4382d2SGreg Kroah-Hartman 	/* Read pending PSC FIFOC interrupts */
642ab4382d2SGreg Kroah-Hartman 	fifoc_int = in_be32(&psc_fifoc->fifoc_int);
643ab4382d2SGreg Kroah-Hartman 
644ab4382d2SGreg Kroah-Hartman 	/* Check if it is an interrupt for this port */
645ab4382d2SGreg Kroah-Hartman 	psc_num = (port->mapbase & 0xf00) >> 8;
646ab4382d2SGreg Kroah-Hartman 	if (test_bit(psc_num, &fifoc_int) ||
647ab4382d2SGreg Kroah-Hartman 	    test_bit(psc_num + 16, &fifoc_int))
648ab4382d2SGreg Kroah-Hartman 		return mpc5xxx_uart_process_int(port);
649ab4382d2SGreg Kroah-Hartman 
650ab4382d2SGreg Kroah-Hartman 	return IRQ_NONE;
651ab4382d2SGreg Kroah-Hartman }
652ab4382d2SGreg Kroah-Hartman 
6532d30ccacSGerhard Sittig static struct clk *psc_mclk_clk[MPC52xx_PSC_MAXNUM];
654e149b42bSGerhard Sittig static struct clk *psc_ipg_clk[MPC52xx_PSC_MAXNUM];
6552d30ccacSGerhard Sittig 
6562d30ccacSGerhard Sittig /* called from within the .request_port() callback (allocation) */
6572d30ccacSGerhard Sittig static int mpc512x_psc_alloc_clock(struct uart_port *port)
658ab4382d2SGreg Kroah-Hartman {
659ab4382d2SGreg Kroah-Hartman 	int psc_num;
6602d30ccacSGerhard Sittig 	struct clk *clk;
6612d30ccacSGerhard Sittig 	int err;
6622d30ccacSGerhard Sittig 
6632d30ccacSGerhard Sittig 	psc_num = (port->mapbase & 0xf00) >> 8;
664e149b42bSGerhard Sittig 
665e149b42bSGerhard Sittig 	clk = devm_clk_get(port->dev, "mclk");
6662d30ccacSGerhard Sittig 	if (IS_ERR(clk)) {
6672d30ccacSGerhard Sittig 		dev_err(port->dev, "Failed to get MCLK!\n");
668e149b42bSGerhard Sittig 		err = PTR_ERR(clk);
669e149b42bSGerhard Sittig 		goto out_err;
6702d30ccacSGerhard Sittig 	}
6712d30ccacSGerhard Sittig 	err = clk_prepare_enable(clk);
6722d30ccacSGerhard Sittig 	if (err) {
6732d30ccacSGerhard Sittig 		dev_err(port->dev, "Failed to enable MCLK!\n");
674e149b42bSGerhard Sittig 		goto out_err;
6752d30ccacSGerhard Sittig 	}
6762d30ccacSGerhard Sittig 	psc_mclk_clk[psc_num] = clk;
677e149b42bSGerhard Sittig 
678e149b42bSGerhard Sittig 	clk = devm_clk_get(port->dev, "ipg");
679e149b42bSGerhard Sittig 	if (IS_ERR(clk)) {
680e149b42bSGerhard Sittig 		dev_err(port->dev, "Failed to get IPG clock!\n");
681e149b42bSGerhard Sittig 		err = PTR_ERR(clk);
682e149b42bSGerhard Sittig 		goto out_err;
683e149b42bSGerhard Sittig 	}
684e149b42bSGerhard Sittig 	err = clk_prepare_enable(clk);
685e149b42bSGerhard Sittig 	if (err) {
686e149b42bSGerhard Sittig 		dev_err(port->dev, "Failed to enable IPG clock!\n");
687e149b42bSGerhard Sittig 		goto out_err;
688e149b42bSGerhard Sittig 	}
689e149b42bSGerhard Sittig 	psc_ipg_clk[psc_num] = clk;
690e149b42bSGerhard Sittig 
6912d30ccacSGerhard Sittig 	return 0;
692e149b42bSGerhard Sittig 
693e149b42bSGerhard Sittig out_err:
694e149b42bSGerhard Sittig 	if (psc_mclk_clk[psc_num]) {
695e149b42bSGerhard Sittig 		clk_disable_unprepare(psc_mclk_clk[psc_num]);
696e149b42bSGerhard Sittig 		psc_mclk_clk[psc_num] = NULL;
697e149b42bSGerhard Sittig 	}
698e149b42bSGerhard Sittig 	if (psc_ipg_clk[psc_num]) {
699e149b42bSGerhard Sittig 		clk_disable_unprepare(psc_ipg_clk[psc_num]);
700e149b42bSGerhard Sittig 		psc_ipg_clk[psc_num] = NULL;
701e149b42bSGerhard Sittig 	}
702e149b42bSGerhard Sittig 	return err;
7032d30ccacSGerhard Sittig }
7042d30ccacSGerhard Sittig 
7052d30ccacSGerhard Sittig /* called from within the .release_port() callback (release) */
7062d30ccacSGerhard Sittig static void mpc512x_psc_relse_clock(struct uart_port *port)
7072d30ccacSGerhard Sittig {
7082d30ccacSGerhard Sittig 	int psc_num;
7092d30ccacSGerhard Sittig 	struct clk *clk;
7102d30ccacSGerhard Sittig 
7112d30ccacSGerhard Sittig 	psc_num = (port->mapbase & 0xf00) >> 8;
7122d30ccacSGerhard Sittig 	clk = psc_mclk_clk[psc_num];
7132d30ccacSGerhard Sittig 	if (clk) {
7142d30ccacSGerhard Sittig 		clk_disable_unprepare(clk);
7152d30ccacSGerhard Sittig 		psc_mclk_clk[psc_num] = NULL;
7162d30ccacSGerhard Sittig 	}
717e149b42bSGerhard Sittig 	if (psc_ipg_clk[psc_num]) {
718e149b42bSGerhard Sittig 		clk_disable_unprepare(psc_ipg_clk[psc_num]);
719e149b42bSGerhard Sittig 		psc_ipg_clk[psc_num] = NULL;
720e149b42bSGerhard Sittig 	}
7212d30ccacSGerhard Sittig }
7222d30ccacSGerhard Sittig 
7232d30ccacSGerhard Sittig /* implementation of the .clock() callback (enable/disable) */
7242d30ccacSGerhard Sittig static int mpc512x_psc_endis_clock(struct uart_port *port, int enable)
7252d30ccacSGerhard Sittig {
7262d30ccacSGerhard Sittig 	int psc_num;
7272d30ccacSGerhard Sittig 	struct clk *psc_clk;
7282d30ccacSGerhard Sittig 	int ret;
729ab4382d2SGreg Kroah-Hartman 
730ab4382d2SGreg Kroah-Hartman 	if (uart_console(port))
731ab4382d2SGreg Kroah-Hartman 		return 0;
732ab4382d2SGreg Kroah-Hartman 
733ab4382d2SGreg Kroah-Hartman 	psc_num = (port->mapbase & 0xf00) >> 8;
7342d30ccacSGerhard Sittig 	psc_clk = psc_mclk_clk[psc_num];
7352d30ccacSGerhard Sittig 	if (!psc_clk) {
736ab4382d2SGreg Kroah-Hartman 		dev_err(port->dev, "Failed to get PSC clock entry!\n");
737ab4382d2SGreg Kroah-Hartman 		return -ENODEV;
738ab4382d2SGreg Kroah-Hartman 	}
739ab4382d2SGreg Kroah-Hartman 
7402d30ccacSGerhard Sittig 	dev_dbg(port->dev, "mclk %sable\n", enable ? "en" : "dis");
7412d30ccacSGerhard Sittig 	if (enable) {
7422d30ccacSGerhard Sittig 		ret = clk_enable(psc_clk);
7432d30ccacSGerhard Sittig 		if (ret)
7442d30ccacSGerhard Sittig 			dev_err(port->dev, "Failed to enable MCLK!\n");
7452d30ccacSGerhard Sittig 		return ret;
7462d30ccacSGerhard Sittig 	} else {
747ab4382d2SGreg Kroah-Hartman 		clk_disable(psc_clk);
748ab4382d2SGreg Kroah-Hartman 		return 0;
749ab4382d2SGreg Kroah-Hartman 	}
7502d30ccacSGerhard Sittig }
751ab4382d2SGreg Kroah-Hartman 
752ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np)
753ab4382d2SGreg Kroah-Hartman {
754ab4382d2SGreg Kroah-Hartman 	port->irqflags = IRQF_SHARED;
755ab4382d2SGreg Kroah-Hartman 	port->irq = psc_fifoc_irq;
756ab4382d2SGreg Kroah-Hartman }
7571f48c499SMatteo Facchinetti #endif
7581f48c499SMatteo Facchinetti 
7591f48c499SMatteo Facchinetti #ifdef CONFIG_PPC_MPC512x
7601f48c499SMatteo Facchinetti 
7611f48c499SMatteo Facchinetti #define PSC_5125(port) ((struct mpc5125_psc __iomem *)((port)->membase))
7621f48c499SMatteo Facchinetti #define FIFO_5125(port) ((struct mpc512x_psc_fifo __iomem *)(PSC_5125(port)+1))
7631f48c499SMatteo Facchinetti 
7641f48c499SMatteo Facchinetti static void mpc5125_psc_fifo_init(struct uart_port *port)
7651f48c499SMatteo Facchinetti {
7661f48c499SMatteo Facchinetti 	/* /32 prescaler */
7671f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->mpc52xx_psc_clock_select, 0xdd);
7681f48c499SMatteo Facchinetti 
7691f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
7701f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
7711f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txalarm, 1);
7721f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, 0);
7731f48c499SMatteo Facchinetti 
7741f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
7751f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
7761f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxalarm, 1);
7771f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, 0);
7781f48c499SMatteo Facchinetti 
7791f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, MPC512x_PSC_FIFO_ALARM);
7801f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, MPC512x_PSC_FIFO_ALARM);
7811f48c499SMatteo Facchinetti }
7821f48c499SMatteo Facchinetti 
7831f48c499SMatteo Facchinetti static int mpc5125_psc_raw_rx_rdy(struct uart_port *port)
7841f48c499SMatteo Facchinetti {
7851f48c499SMatteo Facchinetti 	return !(in_be32(&FIFO_5125(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
7861f48c499SMatteo Facchinetti }
7871f48c499SMatteo Facchinetti 
7881f48c499SMatteo Facchinetti static int mpc5125_psc_raw_tx_rdy(struct uart_port *port)
7891f48c499SMatteo Facchinetti {
7901f48c499SMatteo Facchinetti 	return !(in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_FULL);
7911f48c499SMatteo Facchinetti }
7921f48c499SMatteo Facchinetti 
7931f48c499SMatteo Facchinetti static int mpc5125_psc_rx_rdy(struct uart_port *port)
7941f48c499SMatteo Facchinetti {
7951f48c499SMatteo Facchinetti 	return in_be32(&FIFO_5125(port)->rxsr) &
7961f48c499SMatteo Facchinetti 	       in_be32(&FIFO_5125(port)->rximr) & MPC512x_PSC_FIFO_ALARM;
7971f48c499SMatteo Facchinetti }
7981f48c499SMatteo Facchinetti 
7991f48c499SMatteo Facchinetti static int mpc5125_psc_tx_rdy(struct uart_port *port)
8001f48c499SMatteo Facchinetti {
8011f48c499SMatteo Facchinetti 	return in_be32(&FIFO_5125(port)->txsr) &
8021f48c499SMatteo Facchinetti 	       in_be32(&FIFO_5125(port)->tximr) & MPC512x_PSC_FIFO_ALARM;
8031f48c499SMatteo Facchinetti }
8041f48c499SMatteo Facchinetti 
8051f48c499SMatteo Facchinetti static int mpc5125_psc_tx_empty(struct uart_port *port)
8061f48c499SMatteo Facchinetti {
8071f48c499SMatteo Facchinetti 	return in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_EMPTY;
8081f48c499SMatteo Facchinetti }
8091f48c499SMatteo Facchinetti 
8101f48c499SMatteo Facchinetti static void mpc5125_psc_stop_rx(struct uart_port *port)
8111f48c499SMatteo Facchinetti {
8121f48c499SMatteo Facchinetti 	unsigned long rx_fifo_imr;
8131f48c499SMatteo Facchinetti 
8141f48c499SMatteo Facchinetti 	rx_fifo_imr = in_be32(&FIFO_5125(port)->rximr);
8151f48c499SMatteo Facchinetti 	rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
8161f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, rx_fifo_imr);
8171f48c499SMatteo Facchinetti }
8181f48c499SMatteo Facchinetti 
8191f48c499SMatteo Facchinetti static void mpc5125_psc_start_tx(struct uart_port *port)
8201f48c499SMatteo Facchinetti {
8211f48c499SMatteo Facchinetti 	unsigned long tx_fifo_imr;
8221f48c499SMatteo Facchinetti 
8231f48c499SMatteo Facchinetti 	tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr);
8241f48c499SMatteo Facchinetti 	tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
8251f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr);
8261f48c499SMatteo Facchinetti }
8271f48c499SMatteo Facchinetti 
8281f48c499SMatteo Facchinetti static void mpc5125_psc_stop_tx(struct uart_port *port)
8291f48c499SMatteo Facchinetti {
8301f48c499SMatteo Facchinetti 	unsigned long tx_fifo_imr;
8311f48c499SMatteo Facchinetti 
8321f48c499SMatteo Facchinetti 	tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr);
8331f48c499SMatteo Facchinetti 	tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
8341f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr);
8351f48c499SMatteo Facchinetti }
8361f48c499SMatteo Facchinetti 
8371f48c499SMatteo Facchinetti static void mpc5125_psc_rx_clr_irq(struct uart_port *port)
8381f48c499SMatteo Facchinetti {
8391f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxisr, in_be32(&FIFO_5125(port)->rxisr));
8401f48c499SMatteo Facchinetti }
8411f48c499SMatteo Facchinetti 
8421f48c499SMatteo Facchinetti static void mpc5125_psc_tx_clr_irq(struct uart_port *port)
8431f48c499SMatteo Facchinetti {
8441f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txisr, in_be32(&FIFO_5125(port)->txisr));
8451f48c499SMatteo Facchinetti }
8461f48c499SMatteo Facchinetti 
8471f48c499SMatteo Facchinetti static void mpc5125_psc_write_char(struct uart_port *port, unsigned char c)
8481f48c499SMatteo Facchinetti {
8491f48c499SMatteo Facchinetti 	out_8(&FIFO_5125(port)->txdata_8, c);
8501f48c499SMatteo Facchinetti }
8511f48c499SMatteo Facchinetti 
8521f48c499SMatteo Facchinetti static unsigned char mpc5125_psc_read_char(struct uart_port *port)
8531f48c499SMatteo Facchinetti {
8541f48c499SMatteo Facchinetti 	return in_8(&FIFO_5125(port)->rxdata_8);
8551f48c499SMatteo Facchinetti }
8561f48c499SMatteo Facchinetti 
8571f48c499SMatteo Facchinetti static void mpc5125_psc_cw_disable_ints(struct uart_port *port)
8581f48c499SMatteo Facchinetti {
8591f48c499SMatteo Facchinetti 	port->read_status_mask =
8601f48c499SMatteo Facchinetti 		in_be32(&FIFO_5125(port)->tximr) << 16 |
8611f48c499SMatteo Facchinetti 		in_be32(&FIFO_5125(port)->rximr);
8621f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, 0);
8631f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, 0);
8641f48c499SMatteo Facchinetti }
8651f48c499SMatteo Facchinetti 
8661f48c499SMatteo Facchinetti static void mpc5125_psc_cw_restore_ints(struct uart_port *port)
8671f48c499SMatteo Facchinetti {
8681f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr,
8691f48c499SMatteo Facchinetti 		(port->read_status_mask >> 16) & 0x7f);
8701f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, port->read_status_mask & 0x7f);
8711f48c499SMatteo Facchinetti }
8721f48c499SMatteo Facchinetti 
8731f48c499SMatteo Facchinetti static inline void mpc5125_set_divisor(struct mpc5125_psc __iomem *psc,
8741f48c499SMatteo Facchinetti 		u8 prescaler, unsigned int divisor)
8751f48c499SMatteo Facchinetti {
8761f48c499SMatteo Facchinetti 	/* select prescaler */
8771f48c499SMatteo Facchinetti 	out_8(&psc->mpc52xx_psc_clock_select, prescaler);
8781f48c499SMatteo Facchinetti 	out_8(&psc->ctur, divisor >> 8);
8791f48c499SMatteo Facchinetti 	out_8(&psc->ctlr, divisor & 0xff);
8801f48c499SMatteo Facchinetti }
8811f48c499SMatteo Facchinetti 
8821f48c499SMatteo Facchinetti static unsigned int mpc5125_psc_set_baudrate(struct uart_port *port,
8831f48c499SMatteo Facchinetti 					     struct ktermios *new,
8841f48c499SMatteo Facchinetti 					     struct ktermios *old)
8851f48c499SMatteo Facchinetti {
8861f48c499SMatteo Facchinetti 	unsigned int baud;
8871f48c499SMatteo Facchinetti 	unsigned int divisor;
8881f48c499SMatteo Facchinetti 
8891f48c499SMatteo Facchinetti 	/*
8901f48c499SMatteo Facchinetti 	 * Calculate with a /16 prescaler here.
8911f48c499SMatteo Facchinetti 	 */
8921f48c499SMatteo Facchinetti 
8931f48c499SMatteo Facchinetti 	/* uartclk contains the ips freq */
8941f48c499SMatteo Facchinetti 	baud = uart_get_baud_rate(port, new, old,
8951f48c499SMatteo Facchinetti 				  port->uartclk / (16 * 0xffff) + 1,
8961f48c499SMatteo Facchinetti 				  port->uartclk / 16);
8971f48c499SMatteo Facchinetti 	divisor = (port->uartclk + 8 * baud) / (16 * baud);
8981f48c499SMatteo Facchinetti 
8991f48c499SMatteo Facchinetti 	/* enable the /16 prescaler and set the divisor */
9001f48c499SMatteo Facchinetti 	mpc5125_set_divisor(PSC_5125(port), 0xdd, divisor);
9011f48c499SMatteo Facchinetti 	return baud;
9021f48c499SMatteo Facchinetti }
9031f48c499SMatteo Facchinetti 
9041f48c499SMatteo Facchinetti /*
9051f48c499SMatteo Facchinetti  * MPC5125 have compatible PSC FIFO Controller.
9061f48c499SMatteo Facchinetti  * Special init not needed.
9071f48c499SMatteo Facchinetti  */
9081f48c499SMatteo Facchinetti static u16 mpc5125_psc_get_status(struct uart_port *port)
9091f48c499SMatteo Facchinetti {
9101f48c499SMatteo Facchinetti 	return in_be16(&PSC_5125(port)->mpc52xx_psc_status);
9111f48c499SMatteo Facchinetti }
9121f48c499SMatteo Facchinetti 
9131f48c499SMatteo Facchinetti static u8 mpc5125_psc_get_ipcr(struct uart_port *port)
9141f48c499SMatteo Facchinetti {
9151f48c499SMatteo Facchinetti 	return in_8(&PSC_5125(port)->mpc52xx_psc_ipcr);
9161f48c499SMatteo Facchinetti }
9171f48c499SMatteo Facchinetti 
9181f48c499SMatteo Facchinetti static void mpc5125_psc_command(struct uart_port *port, u8 cmd)
9191f48c499SMatteo Facchinetti {
9201f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->command, cmd);
9211f48c499SMatteo Facchinetti }
9221f48c499SMatteo Facchinetti 
9231f48c499SMatteo Facchinetti static void mpc5125_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2)
9241f48c499SMatteo Facchinetti {
9251f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->mr1, mr1);
9261f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->mr2, mr2);
9271f48c499SMatteo Facchinetti }
9281f48c499SMatteo Facchinetti 
9291f48c499SMatteo Facchinetti static void mpc5125_psc_set_rts(struct uart_port *port, int state)
9301f48c499SMatteo Facchinetti {
9311f48c499SMatteo Facchinetti 	if (state & TIOCM_RTS)
9321f48c499SMatteo Facchinetti 		out_8(&PSC_5125(port)->op1, MPC52xx_PSC_OP_RTS);
9331f48c499SMatteo Facchinetti 	else
9341f48c499SMatteo Facchinetti 		out_8(&PSC_5125(port)->op0, MPC52xx_PSC_OP_RTS);
9351f48c499SMatteo Facchinetti }
9361f48c499SMatteo Facchinetti 
9371f48c499SMatteo Facchinetti static void mpc5125_psc_enable_ms(struct uart_port *port)
9381f48c499SMatteo Facchinetti {
9391f48c499SMatteo Facchinetti 	struct mpc5125_psc __iomem *psc = PSC_5125(port);
9401f48c499SMatteo Facchinetti 
9411f48c499SMatteo Facchinetti 	/* clear D_*-bits by reading them */
9421f48c499SMatteo Facchinetti 	in_8(&psc->mpc52xx_psc_ipcr);
9431f48c499SMatteo Facchinetti 	/* enable CTS and DCD as IPC interrupts */
9441f48c499SMatteo Facchinetti 	out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
9451f48c499SMatteo Facchinetti 
9461f48c499SMatteo Facchinetti 	port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
9471f48c499SMatteo Facchinetti 	out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
9481f48c499SMatteo Facchinetti }
9491f48c499SMatteo Facchinetti 
9501f48c499SMatteo Facchinetti static void mpc5125_psc_set_sicr(struct uart_port *port, u32 val)
9511f48c499SMatteo Facchinetti {
9521f48c499SMatteo Facchinetti 	out_be32(&PSC_5125(port)->sicr, val);
9531f48c499SMatteo Facchinetti }
9541f48c499SMatteo Facchinetti 
9551f48c499SMatteo Facchinetti static void mpc5125_psc_set_imr(struct uart_port *port, u16 val)
9561f48c499SMatteo Facchinetti {
9571f48c499SMatteo Facchinetti 	out_be16(&PSC_5125(port)->mpc52xx_psc_imr, val);
9581f48c499SMatteo Facchinetti }
9591f48c499SMatteo Facchinetti 
9601f48c499SMatteo Facchinetti static u8 mpc5125_psc_get_mr1(struct uart_port *port)
9611f48c499SMatteo Facchinetti {
9621f48c499SMatteo Facchinetti 	return in_8(&PSC_5125(port)->mr1);
9631f48c499SMatteo Facchinetti }
9641f48c499SMatteo Facchinetti 
965cc74bd1dSAya Mahfouz static const struct psc_ops mpc5125_psc_ops = {
9661f48c499SMatteo Facchinetti 	.fifo_init = mpc5125_psc_fifo_init,
9671f48c499SMatteo Facchinetti 	.raw_rx_rdy = mpc5125_psc_raw_rx_rdy,
9681f48c499SMatteo Facchinetti 	.raw_tx_rdy = mpc5125_psc_raw_tx_rdy,
9691f48c499SMatteo Facchinetti 	.rx_rdy = mpc5125_psc_rx_rdy,
9701f48c499SMatteo Facchinetti 	.tx_rdy = mpc5125_psc_tx_rdy,
9711f48c499SMatteo Facchinetti 	.tx_empty = mpc5125_psc_tx_empty,
9721f48c499SMatteo Facchinetti 	.stop_rx = mpc5125_psc_stop_rx,
9731f48c499SMatteo Facchinetti 	.start_tx = mpc5125_psc_start_tx,
9741f48c499SMatteo Facchinetti 	.stop_tx = mpc5125_psc_stop_tx,
9751f48c499SMatteo Facchinetti 	.rx_clr_irq = mpc5125_psc_rx_clr_irq,
9761f48c499SMatteo Facchinetti 	.tx_clr_irq = mpc5125_psc_tx_clr_irq,
9771f48c499SMatteo Facchinetti 	.write_char = mpc5125_psc_write_char,
9781f48c499SMatteo Facchinetti 	.read_char = mpc5125_psc_read_char,
9791f48c499SMatteo Facchinetti 	.cw_disable_ints = mpc5125_psc_cw_disable_ints,
9801f48c499SMatteo Facchinetti 	.cw_restore_ints = mpc5125_psc_cw_restore_ints,
9811f48c499SMatteo Facchinetti 	.set_baudrate = mpc5125_psc_set_baudrate,
9822d30ccacSGerhard Sittig 	.clock_alloc = mpc512x_psc_alloc_clock,
9832d30ccacSGerhard Sittig 	.clock_relse = mpc512x_psc_relse_clock,
9842d30ccacSGerhard Sittig 	.clock = mpc512x_psc_endis_clock,
9851f48c499SMatteo Facchinetti 	.fifoc_init = mpc512x_psc_fifoc_init,
9861f48c499SMatteo Facchinetti 	.fifoc_uninit = mpc512x_psc_fifoc_uninit,
9871f48c499SMatteo Facchinetti 	.get_irq = mpc512x_psc_get_irq,
9881f48c499SMatteo Facchinetti 	.handle_irq = mpc512x_psc_handle_irq,
9891f48c499SMatteo Facchinetti 	.get_status = mpc5125_psc_get_status,
9901f48c499SMatteo Facchinetti 	.get_ipcr = mpc5125_psc_get_ipcr,
9911f48c499SMatteo Facchinetti 	.command = mpc5125_psc_command,
9921f48c499SMatteo Facchinetti 	.set_mode = mpc5125_psc_set_mode,
9931f48c499SMatteo Facchinetti 	.set_rts = mpc5125_psc_set_rts,
9941f48c499SMatteo Facchinetti 	.enable_ms = mpc5125_psc_enable_ms,
9951f48c499SMatteo Facchinetti 	.set_sicr = mpc5125_psc_set_sicr,
9961f48c499SMatteo Facchinetti 	.set_imr = mpc5125_psc_set_imr,
9971f48c499SMatteo Facchinetti 	.get_mr1 = mpc5125_psc_get_mr1,
9981f48c499SMatteo Facchinetti };
999ab4382d2SGreg Kroah-Hartman 
1000cc74bd1dSAya Mahfouz static const struct psc_ops mpc512x_psc_ops = {
1001ab4382d2SGreg Kroah-Hartman 	.fifo_init = mpc512x_psc_fifo_init,
1002ab4382d2SGreg Kroah-Hartman 	.raw_rx_rdy = mpc512x_psc_raw_rx_rdy,
1003ab4382d2SGreg Kroah-Hartman 	.raw_tx_rdy = mpc512x_psc_raw_tx_rdy,
1004ab4382d2SGreg Kroah-Hartman 	.rx_rdy = mpc512x_psc_rx_rdy,
1005ab4382d2SGreg Kroah-Hartman 	.tx_rdy = mpc512x_psc_tx_rdy,
1006ab4382d2SGreg Kroah-Hartman 	.tx_empty = mpc512x_psc_tx_empty,
1007ab4382d2SGreg Kroah-Hartman 	.stop_rx = mpc512x_psc_stop_rx,
1008ab4382d2SGreg Kroah-Hartman 	.start_tx = mpc512x_psc_start_tx,
1009ab4382d2SGreg Kroah-Hartman 	.stop_tx = mpc512x_psc_stop_tx,
1010ab4382d2SGreg Kroah-Hartman 	.rx_clr_irq = mpc512x_psc_rx_clr_irq,
1011ab4382d2SGreg Kroah-Hartman 	.tx_clr_irq = mpc512x_psc_tx_clr_irq,
1012ab4382d2SGreg Kroah-Hartman 	.write_char = mpc512x_psc_write_char,
1013ab4382d2SGreg Kroah-Hartman 	.read_char = mpc512x_psc_read_char,
1014ab4382d2SGreg Kroah-Hartman 	.cw_disable_ints = mpc512x_psc_cw_disable_ints,
1015ab4382d2SGreg Kroah-Hartman 	.cw_restore_ints = mpc512x_psc_cw_restore_ints,
1016ab4382d2SGreg Kroah-Hartman 	.set_baudrate = mpc512x_psc_set_baudrate,
10172d30ccacSGerhard Sittig 	.clock_alloc = mpc512x_psc_alloc_clock,
10182d30ccacSGerhard Sittig 	.clock_relse = mpc512x_psc_relse_clock,
10192d30ccacSGerhard Sittig 	.clock = mpc512x_psc_endis_clock,
1020ab4382d2SGreg Kroah-Hartman 	.fifoc_init = mpc512x_psc_fifoc_init,
1021ab4382d2SGreg Kroah-Hartman 	.fifoc_uninit = mpc512x_psc_fifoc_uninit,
1022ab4382d2SGreg Kroah-Hartman 	.get_irq = mpc512x_psc_get_irq,
1023ab4382d2SGreg Kroah-Hartman 	.handle_irq = mpc512x_psc_handle_irq,
10242574b27eSMatteo Facchinetti 	.get_status = mpc52xx_psc_get_status,
10252574b27eSMatteo Facchinetti 	.get_ipcr = mpc52xx_psc_get_ipcr,
10262574b27eSMatteo Facchinetti 	.command = mpc52xx_psc_command,
10272574b27eSMatteo Facchinetti 	.set_mode = mpc52xx_psc_set_mode,
10282574b27eSMatteo Facchinetti 	.set_rts = mpc52xx_psc_set_rts,
10292574b27eSMatteo Facchinetti 	.enable_ms = mpc52xx_psc_enable_ms,
10302574b27eSMatteo Facchinetti 	.set_sicr = mpc52xx_psc_set_sicr,
10312574b27eSMatteo Facchinetti 	.set_imr = mpc52xx_psc_set_imr,
10322574b27eSMatteo Facchinetti 	.get_mr1 = mpc52xx_psc_get_mr1,
1033ab4382d2SGreg Kroah-Hartman };
10342574b27eSMatteo Facchinetti #endif /* CONFIG_PPC_MPC512x */
10352574b27eSMatteo Facchinetti 
1036ab4382d2SGreg Kroah-Hartman 
103776d28e44SUwe Kleine-König static const struct psc_ops *psc_ops;
1038ab4382d2SGreg Kroah-Hartman 
1039ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1040ab4382d2SGreg Kroah-Hartman /* UART operations                                                          */
1041ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1042ab4382d2SGreg Kroah-Hartman 
1043ab4382d2SGreg Kroah-Hartman static unsigned int
1044ab4382d2SGreg Kroah-Hartman mpc52xx_uart_tx_empty(struct uart_port *port)
1045ab4382d2SGreg Kroah-Hartman {
1046ab4382d2SGreg Kroah-Hartman 	return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
1047ab4382d2SGreg Kroah-Hartman }
1048ab4382d2SGreg Kroah-Hartman 
1049ab4382d2SGreg Kroah-Hartman static void
1050ab4382d2SGreg Kroah-Hartman mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
1051ab4382d2SGreg Kroah-Hartman {
10522574b27eSMatteo Facchinetti 	psc_ops->set_rts(port, mctrl & TIOCM_RTS);
1053ab4382d2SGreg Kroah-Hartman }
1054ab4382d2SGreg Kroah-Hartman 
1055ab4382d2SGreg Kroah-Hartman static unsigned int
1056ab4382d2SGreg Kroah-Hartman mpc52xx_uart_get_mctrl(struct uart_port *port)
1057ab4382d2SGreg Kroah-Hartman {
1058ab4382d2SGreg Kroah-Hartman 	unsigned int ret = TIOCM_DSR;
10592574b27eSMatteo Facchinetti 	u8 status = psc_ops->get_ipcr(port);
1060ab4382d2SGreg Kroah-Hartman 
1061ab4382d2SGreg Kroah-Hartman 	if (!(status & MPC52xx_PSC_CTS))
1062ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_CTS;
1063ab4382d2SGreg Kroah-Hartman 	if (!(status & MPC52xx_PSC_DCD))
1064ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_CAR;
1065ab4382d2SGreg Kroah-Hartman 
1066ab4382d2SGreg Kroah-Hartman 	return ret;
1067ab4382d2SGreg Kroah-Hartman }
1068ab4382d2SGreg Kroah-Hartman 
1069ab4382d2SGreg Kroah-Hartman static void
1070ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_tx(struct uart_port *port)
1071ab4382d2SGreg Kroah-Hartman {
1072ab4382d2SGreg Kroah-Hartman 	/* port->lock taken by caller */
1073ab4382d2SGreg Kroah-Hartman 	psc_ops->stop_tx(port);
1074ab4382d2SGreg Kroah-Hartman }
1075ab4382d2SGreg Kroah-Hartman 
1076ab4382d2SGreg Kroah-Hartman static void
1077ab4382d2SGreg Kroah-Hartman mpc52xx_uart_start_tx(struct uart_port *port)
1078ab4382d2SGreg Kroah-Hartman {
1079ab4382d2SGreg Kroah-Hartman 	/* port->lock taken by caller */
1080ab4382d2SGreg Kroah-Hartman 	psc_ops->start_tx(port);
1081ab4382d2SGreg Kroah-Hartman }
1082ab4382d2SGreg Kroah-Hartman 
1083ab4382d2SGreg Kroah-Hartman static void
1084ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_rx(struct uart_port *port)
1085ab4382d2SGreg Kroah-Hartman {
1086ab4382d2SGreg Kroah-Hartman 	/* port->lock taken by caller */
1087ab4382d2SGreg Kroah-Hartman 	psc_ops->stop_rx(port);
1088ab4382d2SGreg Kroah-Hartman }
1089ab4382d2SGreg Kroah-Hartman 
1090ab4382d2SGreg Kroah-Hartman static void
1091ab4382d2SGreg Kroah-Hartman mpc52xx_uart_enable_ms(struct uart_port *port)
1092ab4382d2SGreg Kroah-Hartman {
10932574b27eSMatteo Facchinetti 	psc_ops->enable_ms(port);
1094ab4382d2SGreg Kroah-Hartman }
1095ab4382d2SGreg Kroah-Hartman 
1096ab4382d2SGreg Kroah-Hartman static void
1097ab4382d2SGreg Kroah-Hartman mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
1098ab4382d2SGreg Kroah-Hartman {
1099ab4382d2SGreg Kroah-Hartman 	unsigned long flags;
1100ab4382d2SGreg Kroah-Hartman 	spin_lock_irqsave(&port->lock, flags);
1101ab4382d2SGreg Kroah-Hartman 
1102ab4382d2SGreg Kroah-Hartman 	if (ctl == -1)
11032574b27eSMatteo Facchinetti 		psc_ops->command(port, MPC52xx_PSC_START_BRK);
1104ab4382d2SGreg Kroah-Hartman 	else
11052574b27eSMatteo Facchinetti 		psc_ops->command(port, MPC52xx_PSC_STOP_BRK);
1106ab4382d2SGreg Kroah-Hartman 
1107ab4382d2SGreg Kroah-Hartman 	spin_unlock_irqrestore(&port->lock, flags);
1108ab4382d2SGreg Kroah-Hartman }
1109ab4382d2SGreg Kroah-Hartman 
1110ab4382d2SGreg Kroah-Hartman static int
1111ab4382d2SGreg Kroah-Hartman mpc52xx_uart_startup(struct uart_port *port)
1112ab4382d2SGreg Kroah-Hartman {
1113ab4382d2SGreg Kroah-Hartman 	int ret;
1114ab4382d2SGreg Kroah-Hartman 
1115ab4382d2SGreg Kroah-Hartman 	if (psc_ops->clock) {
1116ab4382d2SGreg Kroah-Hartman 		ret = psc_ops->clock(port, 1);
1117ab4382d2SGreg Kroah-Hartman 		if (ret)
1118ab4382d2SGreg Kroah-Hartman 			return ret;
1119ab4382d2SGreg Kroah-Hartman 	}
1120ab4382d2SGreg Kroah-Hartman 
1121ab4382d2SGreg Kroah-Hartman 	/* Request IRQ */
1122ab4382d2SGreg Kroah-Hartman 	ret = request_irq(port->irq, mpc52xx_uart_int,
1123ab4382d2SGreg Kroah-Hartman 			  port->irqflags, "mpc52xx_psc_uart", port);
1124ab4382d2SGreg Kroah-Hartman 	if (ret)
1125ab4382d2SGreg Kroah-Hartman 		return ret;
1126ab4382d2SGreg Kroah-Hartman 
1127ab4382d2SGreg Kroah-Hartman 	/* Reset/activate the port, clear and enable interrupts */
11282574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_RX);
11292574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_TX);
1130ab4382d2SGreg Kroah-Hartman 
1131e4b4e317SUwe Kleine-König 	/*
1132e4b4e317SUwe Kleine-König 	 * According to Freescale's support the RST_TX command can produce a
1133e4b4e317SUwe Kleine-König 	 * spike on the TX pin. So they recommend to delay "for one character".
1134e4b4e317SUwe Kleine-König 	 * One millisecond should be enough for everyone.
1135e4b4e317SUwe Kleine-König 	 */
1136e4b4e317SUwe Kleine-König 	msleep(1);
1137e4b4e317SUwe Kleine-König 
11382574b27eSMatteo Facchinetti 	psc_ops->set_sicr(port, 0);	/* UART mode DCD ignored */
1139ab4382d2SGreg Kroah-Hartman 
1140ab4382d2SGreg Kroah-Hartman 	psc_ops->fifo_init(port);
1141ab4382d2SGreg Kroah-Hartman 
11422574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
11432574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
1144ab4382d2SGreg Kroah-Hartman 
1145ab4382d2SGreg Kroah-Hartman 	return 0;
1146ab4382d2SGreg Kroah-Hartman }
1147ab4382d2SGreg Kroah-Hartman 
1148ab4382d2SGreg Kroah-Hartman static void
1149ab4382d2SGreg Kroah-Hartman mpc52xx_uart_shutdown(struct uart_port *port)
1150ab4382d2SGreg Kroah-Hartman {
1151ab4382d2SGreg Kroah-Hartman 	/* Shut down the port.  Leave TX active if on a console port */
11522574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_RX);
1153ab4382d2SGreg Kroah-Hartman 	if (!uart_console(port))
11542574b27eSMatteo Facchinetti 		psc_ops->command(port, MPC52xx_PSC_RST_TX);
1155ab4382d2SGreg Kroah-Hartman 
1156ab4382d2SGreg Kroah-Hartman 	port->read_status_mask = 0;
11572574b27eSMatteo Facchinetti 	psc_ops->set_imr(port, port->read_status_mask);
1158ab4382d2SGreg Kroah-Hartman 
1159ab4382d2SGreg Kroah-Hartman 	if (psc_ops->clock)
1160ab4382d2SGreg Kroah-Hartman 		psc_ops->clock(port, 0);
1161ab4382d2SGreg Kroah-Hartman 
11628a29dfb8SMatteo Facchinetti 	/* Disable interrupt */
11638a29dfb8SMatteo Facchinetti 	psc_ops->cw_disable_ints(port);
11648a29dfb8SMatteo Facchinetti 
1165ab4382d2SGreg Kroah-Hartman 	/* Release interrupt */
1166ab4382d2SGreg Kroah-Hartman 	free_irq(port->irq, port);
1167ab4382d2SGreg Kroah-Hartman }
1168ab4382d2SGreg Kroah-Hartman 
1169ab4382d2SGreg Kroah-Hartman static void
1170ab4382d2SGreg Kroah-Hartman mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
1171ab4382d2SGreg Kroah-Hartman 			 struct ktermios *old)
1172ab4382d2SGreg Kroah-Hartman {
1173ab4382d2SGreg Kroah-Hartman 	unsigned long flags;
1174ab4382d2SGreg Kroah-Hartman 	unsigned char mr1, mr2;
1175ab4382d2SGreg Kroah-Hartman 	unsigned int j;
1176ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
1177ab4382d2SGreg Kroah-Hartman 
1178ab4382d2SGreg Kroah-Hartman 	/* Prepare what we're gonna write */
1179ab4382d2SGreg Kroah-Hartman 	mr1 = 0;
1180ab4382d2SGreg Kroah-Hartman 
1181ab4382d2SGreg Kroah-Hartman 	switch (new->c_cflag & CSIZE) {
1182ab4382d2SGreg Kroah-Hartman 	case CS5:	mr1 |= MPC52xx_PSC_MODE_5_BITS;
1183ab4382d2SGreg Kroah-Hartman 		break;
1184ab4382d2SGreg Kroah-Hartman 	case CS6:	mr1 |= MPC52xx_PSC_MODE_6_BITS;
1185ab4382d2SGreg Kroah-Hartman 		break;
1186ab4382d2SGreg Kroah-Hartman 	case CS7:	mr1 |= MPC52xx_PSC_MODE_7_BITS;
1187ab4382d2SGreg Kroah-Hartman 		break;
1188ab4382d2SGreg Kroah-Hartman 	case CS8:
1189ab4382d2SGreg Kroah-Hartman 	default:	mr1 |= MPC52xx_PSC_MODE_8_BITS;
1190ab4382d2SGreg Kroah-Hartman 	}
1191ab4382d2SGreg Kroah-Hartman 
1192ab4382d2SGreg Kroah-Hartman 	if (new->c_cflag & PARENB) {
1193d3dec96eSWolfram Sang 		if (new->c_cflag & CMSPAR)
1194d3dec96eSWolfram Sang 			mr1 |= MPC52xx_PSC_MODE_PARFORCE;
1195d3dec96eSWolfram Sang 
1196d3dec96eSWolfram Sang 		/* With CMSPAR, PARODD also means high parity (same as termios) */
1197ab4382d2SGreg Kroah-Hartman 		mr1 |= (new->c_cflag & PARODD) ?
1198ab4382d2SGreg Kroah-Hartman 			MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
1199d3dec96eSWolfram Sang 	} else {
1200ab4382d2SGreg Kroah-Hartman 		mr1 |= MPC52xx_PSC_MODE_PARNONE;
1201d3dec96eSWolfram Sang 	}
1202ab4382d2SGreg Kroah-Hartman 
1203ab4382d2SGreg Kroah-Hartman 	mr2 = 0;
1204ab4382d2SGreg Kroah-Hartman 
1205ab4382d2SGreg Kroah-Hartman 	if (new->c_cflag & CSTOPB)
1206ab4382d2SGreg Kroah-Hartman 		mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
1207ab4382d2SGreg Kroah-Hartman 	else
1208ab4382d2SGreg Kroah-Hartman 		mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
1209ab4382d2SGreg Kroah-Hartman 			MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
1210ab4382d2SGreg Kroah-Hartman 			MPC52xx_PSC_MODE_ONE_STOP;
1211ab4382d2SGreg Kroah-Hartman 
1212ab4382d2SGreg Kroah-Hartman 	if (new->c_cflag & CRTSCTS) {
1213ab4382d2SGreg Kroah-Hartman 		mr1 |= MPC52xx_PSC_MODE_RXRTS;
1214ab4382d2SGreg Kroah-Hartman 		mr2 |= MPC52xx_PSC_MODE_TXCTS;
1215ab4382d2SGreg Kroah-Hartman 	}
1216ab4382d2SGreg Kroah-Hartman 
1217ab4382d2SGreg Kroah-Hartman 	/* Get the lock */
1218ab4382d2SGreg Kroah-Hartman 	spin_lock_irqsave(&port->lock, flags);
1219ab4382d2SGreg Kroah-Hartman 
1220ab4382d2SGreg Kroah-Hartman 	/* Do our best to flush TX & RX, so we don't lose anything */
1221ab4382d2SGreg Kroah-Hartman 	/* But we don't wait indefinitely ! */
1222ab4382d2SGreg Kroah-Hartman 	j = 5000000;	/* Maximum wait */
1223ab4382d2SGreg Kroah-Hartman 	/* FIXME Can't receive chars since set_termios might be called at early
1224ab4382d2SGreg Kroah-Hartman 	 * boot for the console, all stuff is not yet ready to receive at that
1225ab4382d2SGreg Kroah-Hartman 	 * time and that just makes the kernel oops */
1226ab4382d2SGreg Kroah-Hartman 	/* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
1227ab4382d2SGreg Kroah-Hartman 	while (!mpc52xx_uart_tx_empty(port) && --j)
1228ab4382d2SGreg Kroah-Hartman 		udelay(1);
1229ab4382d2SGreg Kroah-Hartman 
1230ab4382d2SGreg Kroah-Hartman 	if (!j)
1231ab4382d2SGreg Kroah-Hartman 		printk(KERN_ERR "mpc52xx_uart.c: "
1232ab4382d2SGreg Kroah-Hartman 			"Unable to flush RX & TX fifos in-time in set_termios."
1233ab4382d2SGreg Kroah-Hartman 			"Some chars may have been lost.\n");
1234ab4382d2SGreg Kroah-Hartman 
1235ab4382d2SGreg Kroah-Hartman 	/* Reset the TX & RX */
12362574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_RX);
12372574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_TX);
1238ab4382d2SGreg Kroah-Hartman 
1239ab4382d2SGreg Kroah-Hartman 	/* Send new mode settings */
12402574b27eSMatteo Facchinetti 	psc_ops->set_mode(port, mr1, mr2);
1241ab4382d2SGreg Kroah-Hartman 	baud = psc_ops->set_baudrate(port, new, old);
1242ab4382d2SGreg Kroah-Hartman 
1243ab4382d2SGreg Kroah-Hartman 	/* Update the per-port timeout */
1244ab4382d2SGreg Kroah-Hartman 	uart_update_timeout(port, new->c_cflag, baud);
1245ab4382d2SGreg Kroah-Hartman 
1246ab4382d2SGreg Kroah-Hartman 	if (UART_ENABLE_MS(port, new->c_cflag))
1247ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_enable_ms(port);
1248ab4382d2SGreg Kroah-Hartman 
1249ab4382d2SGreg Kroah-Hartman 	/* Reenable TX & RX */
12502574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
12512574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
1252ab4382d2SGreg Kroah-Hartman 
1253ab4382d2SGreg Kroah-Hartman 	/* We're all set, release the lock */
1254ab4382d2SGreg Kroah-Hartman 	spin_unlock_irqrestore(&port->lock, flags);
1255ab4382d2SGreg Kroah-Hartman }
1256ab4382d2SGreg Kroah-Hartman 
1257ab4382d2SGreg Kroah-Hartman static const char *
1258ab4382d2SGreg Kroah-Hartman mpc52xx_uart_type(struct uart_port *port)
1259ab4382d2SGreg Kroah-Hartman {
1260ab4382d2SGreg Kroah-Hartman 	/*
1261ab4382d2SGreg Kroah-Hartman 	 * We keep using PORT_MPC52xx for historic reasons although it applies
1262ab4382d2SGreg Kroah-Hartman 	 * for MPC512x, too, but print "MPC5xxx" to not irritate users
1263ab4382d2SGreg Kroah-Hartman 	 */
1264ab4382d2SGreg Kroah-Hartman 	return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL;
1265ab4382d2SGreg Kroah-Hartman }
1266ab4382d2SGreg Kroah-Hartman 
1267ab4382d2SGreg Kroah-Hartman static void
1268ab4382d2SGreg Kroah-Hartman mpc52xx_uart_release_port(struct uart_port *port)
1269ab4382d2SGreg Kroah-Hartman {
12702d30ccacSGerhard Sittig 	if (psc_ops->clock_relse)
12712d30ccacSGerhard Sittig 		psc_ops->clock_relse(port);
12722d30ccacSGerhard Sittig 
1273ab4382d2SGreg Kroah-Hartman 	/* remapped by us ? */
1274ab4382d2SGreg Kroah-Hartman 	if (port->flags & UPF_IOREMAP) {
1275ab4382d2SGreg Kroah-Hartman 		iounmap(port->membase);
1276ab4382d2SGreg Kroah-Hartman 		port->membase = NULL;
1277ab4382d2SGreg Kroah-Hartman 	}
1278ab4382d2SGreg Kroah-Hartman 
1279ab4382d2SGreg Kroah-Hartman 	release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
1280ab4382d2SGreg Kroah-Hartman }
1281ab4382d2SGreg Kroah-Hartman 
1282ab4382d2SGreg Kroah-Hartman static int
1283ab4382d2SGreg Kroah-Hartman mpc52xx_uart_request_port(struct uart_port *port)
1284ab4382d2SGreg Kroah-Hartman {
1285ab4382d2SGreg Kroah-Hartman 	int err;
1286ab4382d2SGreg Kroah-Hartman 
1287ab4382d2SGreg Kroah-Hartman 	if (port->flags & UPF_IOREMAP) /* Need to remap ? */
1288ab4382d2SGreg Kroah-Hartman 		port->membase = ioremap(port->mapbase,
1289ab4382d2SGreg Kroah-Hartman 					sizeof(struct mpc52xx_psc));
1290ab4382d2SGreg Kroah-Hartman 
1291ab4382d2SGreg Kroah-Hartman 	if (!port->membase)
1292ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1293ab4382d2SGreg Kroah-Hartman 
1294ab4382d2SGreg Kroah-Hartman 	err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc),
1295ab4382d2SGreg Kroah-Hartman 			"mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
1296ab4382d2SGreg Kroah-Hartman 
12972d30ccacSGerhard Sittig 	if (err)
12982d30ccacSGerhard Sittig 		goto out_membase;
12992d30ccacSGerhard Sittig 
13002d30ccacSGerhard Sittig 	if (psc_ops->clock_alloc) {
13012d30ccacSGerhard Sittig 		err = psc_ops->clock_alloc(port);
13022d30ccacSGerhard Sittig 		if (err)
13032d30ccacSGerhard Sittig 			goto out_mapregion;
13042d30ccacSGerhard Sittig 	}
13052d30ccacSGerhard Sittig 
13062d30ccacSGerhard Sittig 	return 0;
13072d30ccacSGerhard Sittig 
13082d30ccacSGerhard Sittig out_mapregion:
13092d30ccacSGerhard Sittig 	release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
13102d30ccacSGerhard Sittig out_membase:
13112d30ccacSGerhard Sittig 	if (port->flags & UPF_IOREMAP) {
1312ab4382d2SGreg Kroah-Hartman 		iounmap(port->membase);
1313ab4382d2SGreg Kroah-Hartman 		port->membase = NULL;
1314ab4382d2SGreg Kroah-Hartman 	}
1315ab4382d2SGreg Kroah-Hartman 	return err;
1316ab4382d2SGreg Kroah-Hartman }
1317ab4382d2SGreg Kroah-Hartman 
1318ab4382d2SGreg Kroah-Hartman static void
1319ab4382d2SGreg Kroah-Hartman mpc52xx_uart_config_port(struct uart_port *port, int flags)
1320ab4382d2SGreg Kroah-Hartman {
1321ab4382d2SGreg Kroah-Hartman 	if ((flags & UART_CONFIG_TYPE)
1322ab4382d2SGreg Kroah-Hartman 		&& (mpc52xx_uart_request_port(port) == 0))
1323ab4382d2SGreg Kroah-Hartman 		port->type = PORT_MPC52xx;
1324ab4382d2SGreg Kroah-Hartman }
1325ab4382d2SGreg Kroah-Hartman 
1326ab4382d2SGreg Kroah-Hartman static int
1327ab4382d2SGreg Kroah-Hartman mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
1328ab4382d2SGreg Kroah-Hartman {
1329ab4382d2SGreg Kroah-Hartman 	if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx)
1330ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1331ab4382d2SGreg Kroah-Hartman 
1332ab4382d2SGreg Kroah-Hartman 	if ((ser->irq != port->irq) ||
1333ab4382d2SGreg Kroah-Hartman 	    (ser->io_type != UPIO_MEM) ||
1334ab4382d2SGreg Kroah-Hartman 	    (ser->baud_base != port->uartclk)  ||
1335ab4382d2SGreg Kroah-Hartman 	    (ser->iomem_base != (void *)port->mapbase) ||
1336ab4382d2SGreg Kroah-Hartman 	    (ser->hub6 != 0))
1337ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1338ab4382d2SGreg Kroah-Hartman 
1339ab4382d2SGreg Kroah-Hartman 	return 0;
1340ab4382d2SGreg Kroah-Hartman }
1341ab4382d2SGreg Kroah-Hartman 
1342ab4382d2SGreg Kroah-Hartman 
13436f137a75SJulia Lawall static const struct uart_ops mpc52xx_uart_ops = {
1344ab4382d2SGreg Kroah-Hartman 	.tx_empty	= mpc52xx_uart_tx_empty,
1345ab4382d2SGreg Kroah-Hartman 	.set_mctrl	= mpc52xx_uart_set_mctrl,
1346ab4382d2SGreg Kroah-Hartman 	.get_mctrl	= mpc52xx_uart_get_mctrl,
1347ab4382d2SGreg Kroah-Hartman 	.stop_tx	= mpc52xx_uart_stop_tx,
1348ab4382d2SGreg Kroah-Hartman 	.start_tx	= mpc52xx_uart_start_tx,
1349ab4382d2SGreg Kroah-Hartman 	.stop_rx	= mpc52xx_uart_stop_rx,
1350ab4382d2SGreg Kroah-Hartman 	.enable_ms	= mpc52xx_uart_enable_ms,
1351ab4382d2SGreg Kroah-Hartman 	.break_ctl	= mpc52xx_uart_break_ctl,
1352ab4382d2SGreg Kroah-Hartman 	.startup	= mpc52xx_uart_startup,
1353ab4382d2SGreg Kroah-Hartman 	.shutdown	= mpc52xx_uart_shutdown,
1354ab4382d2SGreg Kroah-Hartman 	.set_termios	= mpc52xx_uart_set_termios,
1355ab4382d2SGreg Kroah-Hartman /*	.pm		= mpc52xx_uart_pm,		Not supported yet */
1356ab4382d2SGreg Kroah-Hartman 	.type		= mpc52xx_uart_type,
1357ab4382d2SGreg Kroah-Hartman 	.release_port	= mpc52xx_uart_release_port,
1358ab4382d2SGreg Kroah-Hartman 	.request_port	= mpc52xx_uart_request_port,
1359ab4382d2SGreg Kroah-Hartman 	.config_port	= mpc52xx_uart_config_port,
1360ab4382d2SGreg Kroah-Hartman 	.verify_port	= mpc52xx_uart_verify_port
1361ab4382d2SGreg Kroah-Hartman };
1362ab4382d2SGreg Kroah-Hartman 
1363ab4382d2SGreg Kroah-Hartman 
1364ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1365ab4382d2SGreg Kroah-Hartman /* Interrupt handling                                                       */
1366ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1367ab4382d2SGreg Kroah-Hartman 
1368*18662a1dSJiri Slaby static inline unsigned int
1369ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int_rx_chars(struct uart_port *port)
1370ab4382d2SGreg Kroah-Hartman {
137192a19f9cSJiri Slaby 	struct tty_port *tport = &port->state->port;
1372ab4382d2SGreg Kroah-Hartman 	unsigned char ch, flag;
1373ab4382d2SGreg Kroah-Hartman 	unsigned short status;
1374ab4382d2SGreg Kroah-Hartman 
1375ab4382d2SGreg Kroah-Hartman 	/* While we can read, do so ! */
1376ab4382d2SGreg Kroah-Hartman 	while (psc_ops->raw_rx_rdy(port)) {
1377ab4382d2SGreg Kroah-Hartman 		/* Get the char */
1378ab4382d2SGreg Kroah-Hartman 		ch = psc_ops->read_char(port);
1379ab4382d2SGreg Kroah-Hartman 
1380ab4382d2SGreg Kroah-Hartman 		/* Handle sysreq char */
13817cbfd6a0SDmitry Safonov 		if (uart_handle_sysrq_char(port, ch))
1382ab4382d2SGreg Kroah-Hartman 			continue;
1383ab4382d2SGreg Kroah-Hartman 
1384ab4382d2SGreg Kroah-Hartman 		/* Store it */
1385ab4382d2SGreg Kroah-Hartman 
1386ab4382d2SGreg Kroah-Hartman 		flag = TTY_NORMAL;
1387ab4382d2SGreg Kroah-Hartman 		port->icount.rx++;
1388ab4382d2SGreg Kroah-Hartman 
13892574b27eSMatteo Facchinetti 		status = psc_ops->get_status(port);
1390ab4382d2SGreg Kroah-Hartman 
1391ab4382d2SGreg Kroah-Hartman 		if (status & (MPC52xx_PSC_SR_PE |
1392ab4382d2SGreg Kroah-Hartman 			      MPC52xx_PSC_SR_FE |
1393ab4382d2SGreg Kroah-Hartman 			      MPC52xx_PSC_SR_RB)) {
1394ab4382d2SGreg Kroah-Hartman 
1395ab4382d2SGreg Kroah-Hartman 			if (status & MPC52xx_PSC_SR_RB) {
1396ab4382d2SGreg Kroah-Hartman 				flag = TTY_BREAK;
1397ab4382d2SGreg Kroah-Hartman 				uart_handle_break(port);
1398ab4382d2SGreg Kroah-Hartman 				port->icount.brk++;
1399ab4382d2SGreg Kroah-Hartman 			} else if (status & MPC52xx_PSC_SR_PE) {
1400ab4382d2SGreg Kroah-Hartman 				flag = TTY_PARITY;
1401ab4382d2SGreg Kroah-Hartman 				port->icount.parity++;
1402ab4382d2SGreg Kroah-Hartman 			}
1403ab4382d2SGreg Kroah-Hartman 			else if (status & MPC52xx_PSC_SR_FE) {
1404ab4382d2SGreg Kroah-Hartman 				flag = TTY_FRAME;
1405ab4382d2SGreg Kroah-Hartman 				port->icount.frame++;
1406ab4382d2SGreg Kroah-Hartman 			}
1407ab4382d2SGreg Kroah-Hartman 
1408ab4382d2SGreg Kroah-Hartman 			/* Clear error condition */
14092574b27eSMatteo Facchinetti 			psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT);
1410ab4382d2SGreg Kroah-Hartman 
1411ab4382d2SGreg Kroah-Hartman 		}
141292a19f9cSJiri Slaby 		tty_insert_flip_char(tport, ch, flag);
1413ab4382d2SGreg Kroah-Hartman 		if (status & MPC52xx_PSC_SR_OE) {
1414ab4382d2SGreg Kroah-Hartman 			/*
1415ab4382d2SGreg Kroah-Hartman 			 * Overrun is special, since it's
1416ab4382d2SGreg Kroah-Hartman 			 * reported immediately, and doesn't
1417ab4382d2SGreg Kroah-Hartman 			 * affect the current character
1418ab4382d2SGreg Kroah-Hartman 			 */
141992a19f9cSJiri Slaby 			tty_insert_flip_char(tport, 0, TTY_OVERRUN);
1420ab4382d2SGreg Kroah-Hartman 			port->icount.overrun++;
1421ab4382d2SGreg Kroah-Hartman 		}
1422ab4382d2SGreg Kroah-Hartman 	}
1423ab4382d2SGreg Kroah-Hartman 
14242e124b4aSJiri Slaby 	tty_flip_buffer_push(tport);
1425ab4382d2SGreg Kroah-Hartman 
1426ab4382d2SGreg Kroah-Hartman 	return psc_ops->raw_rx_rdy(port);
1427ab4382d2SGreg Kroah-Hartman }
1428ab4382d2SGreg Kroah-Hartman 
1429ab4382d2SGreg Kroah-Hartman static inline int
1430ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int_tx_chars(struct uart_port *port)
1431ab4382d2SGreg Kroah-Hartman {
1432ab4382d2SGreg Kroah-Hartman 	struct circ_buf *xmit = &port->state->xmit;
1433ab4382d2SGreg Kroah-Hartman 
1434ab4382d2SGreg Kroah-Hartman 	/* Process out of band chars */
1435ab4382d2SGreg Kroah-Hartman 	if (port->x_char) {
1436ab4382d2SGreg Kroah-Hartman 		psc_ops->write_char(port, port->x_char);
1437ab4382d2SGreg Kroah-Hartman 		port->icount.tx++;
1438ab4382d2SGreg Kroah-Hartman 		port->x_char = 0;
1439ab4382d2SGreg Kroah-Hartman 		return 1;
1440ab4382d2SGreg Kroah-Hartman 	}
1441ab4382d2SGreg Kroah-Hartman 
1442ab4382d2SGreg Kroah-Hartman 	/* Nothing to do ? */
1443ab4382d2SGreg Kroah-Hartman 	if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
1444ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_stop_tx(port);
1445ab4382d2SGreg Kroah-Hartman 		return 0;
1446ab4382d2SGreg Kroah-Hartman 	}
1447ab4382d2SGreg Kroah-Hartman 
1448ab4382d2SGreg Kroah-Hartman 	/* Send chars */
1449ab4382d2SGreg Kroah-Hartman 	while (psc_ops->raw_tx_rdy(port)) {
1450ab4382d2SGreg Kroah-Hartman 		psc_ops->write_char(port, xmit->buf[xmit->tail]);
1451ab4382d2SGreg Kroah-Hartman 		xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1452ab4382d2SGreg Kroah-Hartman 		port->icount.tx++;
1453ab4382d2SGreg Kroah-Hartman 		if (uart_circ_empty(xmit))
1454ab4382d2SGreg Kroah-Hartman 			break;
1455ab4382d2SGreg Kroah-Hartman 	}
1456ab4382d2SGreg Kroah-Hartman 
1457ab4382d2SGreg Kroah-Hartman 	/* Wake up */
1458ab4382d2SGreg Kroah-Hartman 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1459ab4382d2SGreg Kroah-Hartman 		uart_write_wakeup(port);
1460ab4382d2SGreg Kroah-Hartman 
1461ab4382d2SGreg Kroah-Hartman 	/* Maybe we're done after all */
1462ab4382d2SGreg Kroah-Hartman 	if (uart_circ_empty(xmit)) {
1463ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_stop_tx(port);
1464ab4382d2SGreg Kroah-Hartman 		return 0;
1465ab4382d2SGreg Kroah-Hartman 	}
1466ab4382d2SGreg Kroah-Hartman 
1467ab4382d2SGreg Kroah-Hartman 	return 1;
1468ab4382d2SGreg Kroah-Hartman }
1469ab4382d2SGreg Kroah-Hartman 
1470ab4382d2SGreg Kroah-Hartman static irqreturn_t
1471ab4382d2SGreg Kroah-Hartman mpc5xxx_uart_process_int(struct uart_port *port)
1472ab4382d2SGreg Kroah-Hartman {
1473ab4382d2SGreg Kroah-Hartman 	unsigned long pass = ISR_PASS_LIMIT;
1474ab4382d2SGreg Kroah-Hartman 	unsigned int keepgoing;
1475ab4382d2SGreg Kroah-Hartman 	u8 status;
1476ab4382d2SGreg Kroah-Hartman 
1477ab4382d2SGreg Kroah-Hartman 	/* While we have stuff to do, we continue */
1478ab4382d2SGreg Kroah-Hartman 	do {
1479ab4382d2SGreg Kroah-Hartman 		/* If we don't find anything to do, we stop */
1480ab4382d2SGreg Kroah-Hartman 		keepgoing = 0;
1481ab4382d2SGreg Kroah-Hartman 
1482ab4382d2SGreg Kroah-Hartman 		psc_ops->rx_clr_irq(port);
1483ab4382d2SGreg Kroah-Hartman 		if (psc_ops->rx_rdy(port))
1484ab4382d2SGreg Kroah-Hartman 			keepgoing |= mpc52xx_uart_int_rx_chars(port);
1485ab4382d2SGreg Kroah-Hartman 
1486ab4382d2SGreg Kroah-Hartman 		psc_ops->tx_clr_irq(port);
1487ab4382d2SGreg Kroah-Hartman 		if (psc_ops->tx_rdy(port))
1488ab4382d2SGreg Kroah-Hartman 			keepgoing |= mpc52xx_uart_int_tx_chars(port);
1489ab4382d2SGreg Kroah-Hartman 
14902574b27eSMatteo Facchinetti 		status = psc_ops->get_ipcr(port);
1491ab4382d2SGreg Kroah-Hartman 		if (status & MPC52xx_PSC_D_DCD)
1492ab4382d2SGreg Kroah-Hartman 			uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD));
1493ab4382d2SGreg Kroah-Hartman 
1494ab4382d2SGreg Kroah-Hartman 		if (status & MPC52xx_PSC_D_CTS)
1495ab4382d2SGreg Kroah-Hartman 			uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS));
1496ab4382d2SGreg Kroah-Hartman 
1497ab4382d2SGreg Kroah-Hartman 		/* Limit number of iteration */
1498ab4382d2SGreg Kroah-Hartman 		if (!(--pass))
1499ab4382d2SGreg Kroah-Hartman 			keepgoing = 0;
1500ab4382d2SGreg Kroah-Hartman 
1501ab4382d2SGreg Kroah-Hartman 	} while (keepgoing);
1502ab4382d2SGreg Kroah-Hartman 
1503ab4382d2SGreg Kroah-Hartman 	return IRQ_HANDLED;
1504ab4382d2SGreg Kroah-Hartman }
1505ab4382d2SGreg Kroah-Hartman 
1506ab4382d2SGreg Kroah-Hartman static irqreturn_t
1507ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int(int irq, void *dev_id)
1508ab4382d2SGreg Kroah-Hartman {
1509ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = dev_id;
1510ab4382d2SGreg Kroah-Hartman 	irqreturn_t ret;
1511ab4382d2SGreg Kroah-Hartman 
1512ab4382d2SGreg Kroah-Hartman 	spin_lock(&port->lock);
1513ab4382d2SGreg Kroah-Hartman 
1514ab4382d2SGreg Kroah-Hartman 	ret = psc_ops->handle_irq(port);
1515ab4382d2SGreg Kroah-Hartman 
1516ab4382d2SGreg Kroah-Hartman 	spin_unlock(&port->lock);
1517ab4382d2SGreg Kroah-Hartman 
1518ab4382d2SGreg Kroah-Hartman 	return ret;
1519ab4382d2SGreg Kroah-Hartman }
1520ab4382d2SGreg Kroah-Hartman 
1521ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1522ab4382d2SGreg Kroah-Hartman /* Console ( if applicable )                                                */
1523ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1524ab4382d2SGreg Kroah-Hartman 
1525ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
1526ab4382d2SGreg Kroah-Hartman 
1527ab4382d2SGreg Kroah-Hartman static void __init
1528ab4382d2SGreg Kroah-Hartman mpc52xx_console_get_options(struct uart_port *port,
1529ab4382d2SGreg Kroah-Hartman 			    int *baud, int *parity, int *bits, int *flow)
1530ab4382d2SGreg Kroah-Hartman {
1531ab4382d2SGreg Kroah-Hartman 	unsigned char mr1;
1532ab4382d2SGreg Kroah-Hartman 
1533ab4382d2SGreg Kroah-Hartman 	pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
1534ab4382d2SGreg Kroah-Hartman 
1535ab4382d2SGreg Kroah-Hartman 	/* Read the mode registers */
15362574b27eSMatteo Facchinetti 	mr1 = psc_ops->get_mr1(port);
1537ab4382d2SGreg Kroah-Hartman 
1538ab4382d2SGreg Kroah-Hartman 	/* CT{U,L}R are write-only ! */
1539ab4382d2SGreg Kroah-Hartman 	*baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1540ab4382d2SGreg Kroah-Hartman 
1541ab4382d2SGreg Kroah-Hartman 	/* Parse them */
1542ab4382d2SGreg Kroah-Hartman 	switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
1543ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_5_BITS:
1544ab4382d2SGreg Kroah-Hartman 		*bits = 5;
1545ab4382d2SGreg Kroah-Hartman 		break;
1546ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_6_BITS:
1547ab4382d2SGreg Kroah-Hartman 		*bits = 6;
1548ab4382d2SGreg Kroah-Hartman 		break;
1549ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_7_BITS:
1550ab4382d2SGreg Kroah-Hartman 		*bits = 7;
1551ab4382d2SGreg Kroah-Hartman 		break;
1552ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_8_BITS:
1553ab4382d2SGreg Kroah-Hartman 	default:
1554ab4382d2SGreg Kroah-Hartman 		*bits = 8;
1555ab4382d2SGreg Kroah-Hartman 	}
1556ab4382d2SGreg Kroah-Hartman 
1557ab4382d2SGreg Kroah-Hartman 	if (mr1 & MPC52xx_PSC_MODE_PARNONE)
1558ab4382d2SGreg Kroah-Hartman 		*parity = 'n';
1559ab4382d2SGreg Kroah-Hartman 	else
1560ab4382d2SGreg Kroah-Hartman 		*parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
1561ab4382d2SGreg Kroah-Hartman }
1562ab4382d2SGreg Kroah-Hartman 
1563ab4382d2SGreg Kroah-Hartman static void
1564ab4382d2SGreg Kroah-Hartman mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
1565ab4382d2SGreg Kroah-Hartman {
1566ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &mpc52xx_uart_ports[co->index];
1567ab4382d2SGreg Kroah-Hartman 	unsigned int i, j;
1568ab4382d2SGreg Kroah-Hartman 
1569ab4382d2SGreg Kroah-Hartman 	/* Disable interrupts */
1570ab4382d2SGreg Kroah-Hartman 	psc_ops->cw_disable_ints(port);
1571ab4382d2SGreg Kroah-Hartman 
1572ab4382d2SGreg Kroah-Hartman 	/* Wait the TX buffer to be empty */
1573ab4382d2SGreg Kroah-Hartman 	j = 5000000;	/* Maximum wait */
1574ab4382d2SGreg Kroah-Hartman 	while (!mpc52xx_uart_tx_empty(port) && --j)
1575ab4382d2SGreg Kroah-Hartman 		udelay(1);
1576ab4382d2SGreg Kroah-Hartman 
1577ab4382d2SGreg Kroah-Hartman 	/* Write all the chars */
1578ab4382d2SGreg Kroah-Hartman 	for (i = 0; i < count; i++, s++) {
1579ab4382d2SGreg Kroah-Hartman 		/* Line return handling */
1580ab4382d2SGreg Kroah-Hartman 		if (*s == '\n')
1581ab4382d2SGreg Kroah-Hartman 			psc_ops->write_char(port, '\r');
1582ab4382d2SGreg Kroah-Hartman 
1583ab4382d2SGreg Kroah-Hartman 		/* Send the char */
1584ab4382d2SGreg Kroah-Hartman 		psc_ops->write_char(port, *s);
1585ab4382d2SGreg Kroah-Hartman 
1586ab4382d2SGreg Kroah-Hartman 		/* Wait the TX buffer to be empty */
1587ab4382d2SGreg Kroah-Hartman 		j = 20000;	/* Maximum wait */
1588ab4382d2SGreg Kroah-Hartman 		while (!mpc52xx_uart_tx_empty(port) && --j)
1589ab4382d2SGreg Kroah-Hartman 			udelay(1);
1590ab4382d2SGreg Kroah-Hartman 	}
1591ab4382d2SGreg Kroah-Hartman 
1592ab4382d2SGreg Kroah-Hartman 	/* Restore interrupt state */
1593ab4382d2SGreg Kroah-Hartman 	psc_ops->cw_restore_ints(port);
1594ab4382d2SGreg Kroah-Hartman }
1595ab4382d2SGreg Kroah-Hartman 
1596ab4382d2SGreg Kroah-Hartman 
1597ab4382d2SGreg Kroah-Hartman static int __init
1598ab4382d2SGreg Kroah-Hartman mpc52xx_console_setup(struct console *co, char *options)
1599ab4382d2SGreg Kroah-Hartman {
1600ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &mpc52xx_uart_ports[co->index];
1601ab4382d2SGreg Kroah-Hartman 	struct device_node *np = mpc52xx_uart_nodes[co->index];
1602ab4382d2SGreg Kroah-Hartman 	unsigned int uartclk;
1603ab4382d2SGreg Kroah-Hartman 	struct resource res;
1604ab4382d2SGreg Kroah-Hartman 	int ret;
1605ab4382d2SGreg Kroah-Hartman 
1606ab4382d2SGreg Kroah-Hartman 	int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1607ab4382d2SGreg Kroah-Hartman 	int bits = 8;
1608ab4382d2SGreg Kroah-Hartman 	int parity = 'n';
1609ab4382d2SGreg Kroah-Hartman 	int flow = 'n';
1610ab4382d2SGreg Kroah-Hartman 
1611ab4382d2SGreg Kroah-Hartman 	pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n",
1612ab4382d2SGreg Kroah-Hartman 		 co, co->index, options);
1613ab4382d2SGreg Kroah-Hartman 
1614ab4382d2SGreg Kroah-Hartman 	if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) {
1615ab4382d2SGreg Kroah-Hartman 		pr_debug("PSC%x out of range\n", co->index);
1616ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1617ab4382d2SGreg Kroah-Hartman 	}
1618ab4382d2SGreg Kroah-Hartman 
1619ab4382d2SGreg Kroah-Hartman 	if (!np) {
1620ab4382d2SGreg Kroah-Hartman 		pr_debug("PSC%x not found in device tree\n", co->index);
1621ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1622ab4382d2SGreg Kroah-Hartman 	}
1623ab4382d2SGreg Kroah-Hartman 
1624a73ee843SRob Herring 	pr_debug("Console on ttyPSC%x is %pOF\n",
1625a73ee843SRob Herring 		 co->index, mpc52xx_uart_nodes[co->index]);
1626ab4382d2SGreg Kroah-Hartman 
1627ab4382d2SGreg Kroah-Hartman 	/* Fetch register locations */
1628ab4382d2SGreg Kroah-Hartman 	ret = of_address_to_resource(np, 0, &res);
1629ab4382d2SGreg Kroah-Hartman 	if (ret) {
1630ab4382d2SGreg Kroah-Hartman 		pr_debug("Could not get resources for PSC%x\n", co->index);
1631ab4382d2SGreg Kroah-Hartman 		return ret;
1632ab4382d2SGreg Kroah-Hartman 	}
1633ab4382d2SGreg Kroah-Hartman 
1634ab4382d2SGreg Kroah-Hartman 	uartclk = mpc5xxx_get_bus_frequency(np);
1635ab4382d2SGreg Kroah-Hartman 	if (uartclk == 0) {
1636ab4382d2SGreg Kroah-Hartman 		pr_debug("Could not find uart clock frequency!\n");
1637ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1638ab4382d2SGreg Kroah-Hartman 	}
1639ab4382d2SGreg Kroah-Hartman 
1640ab4382d2SGreg Kroah-Hartman 	/* Basic port init. Needed since we use some uart_??? func before
1641ab4382d2SGreg Kroah-Hartman 	 * real init for early access */
1642ab4382d2SGreg Kroah-Hartman 	spin_lock_init(&port->lock);
1643ab4382d2SGreg Kroah-Hartman 	port->uartclk = uartclk;
1644ab4382d2SGreg Kroah-Hartman 	port->ops	= &mpc52xx_uart_ops;
1645ab4382d2SGreg Kroah-Hartman 	port->mapbase = res.start;
1646ab4382d2SGreg Kroah-Hartman 	port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc));
1647ab4382d2SGreg Kroah-Hartman 	port->irq = irq_of_parse_and_map(np, 0);
1648ab4382d2SGreg Kroah-Hartman 
1649ab4382d2SGreg Kroah-Hartman 	if (port->membase == NULL)
1650ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1651ab4382d2SGreg Kroah-Hartman 
1652ab4382d2SGreg Kroah-Hartman 	pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n",
1653ab4382d2SGreg Kroah-Hartman 		 (void *)port->mapbase, port->membase,
1654ab4382d2SGreg Kroah-Hartman 		 port->irq, port->uartclk);
1655ab4382d2SGreg Kroah-Hartman 
1656ab4382d2SGreg Kroah-Hartman 	/* Setup the port parameters accoding to options */
1657ab4382d2SGreg Kroah-Hartman 	if (options)
1658ab4382d2SGreg Kroah-Hartman 		uart_parse_options(options, &baud, &parity, &bits, &flow);
1659ab4382d2SGreg Kroah-Hartman 	else
1660ab4382d2SGreg Kroah-Hartman 		mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
1661ab4382d2SGreg Kroah-Hartman 
1662ab4382d2SGreg Kroah-Hartman 	pr_debug("Setting console parameters: %i %i%c1 flow=%c\n",
1663ab4382d2SGreg Kroah-Hartman 		 baud, bits, parity, flow);
1664ab4382d2SGreg Kroah-Hartman 
1665ab4382d2SGreg Kroah-Hartman 	return uart_set_options(port, co, baud, parity, bits, flow);
1666ab4382d2SGreg Kroah-Hartman }
1667ab4382d2SGreg Kroah-Hartman 
1668ab4382d2SGreg Kroah-Hartman 
1669ab4382d2SGreg Kroah-Hartman static struct uart_driver mpc52xx_uart_driver;
1670ab4382d2SGreg Kroah-Hartman 
1671ab4382d2SGreg Kroah-Hartman static struct console mpc52xx_console = {
1672ab4382d2SGreg Kroah-Hartman 	.name	= "ttyPSC",
1673ab4382d2SGreg Kroah-Hartman 	.write	= mpc52xx_console_write,
1674ab4382d2SGreg Kroah-Hartman 	.device	= uart_console_device,
1675ab4382d2SGreg Kroah-Hartman 	.setup	= mpc52xx_console_setup,
1676ab4382d2SGreg Kroah-Hartman 	.flags	= CON_PRINTBUFFER,
1677ab4382d2SGreg Kroah-Hartman 	.index	= -1,	/* Specified on the cmdline (e.g. console=ttyPSC0) */
1678ab4382d2SGreg Kroah-Hartman 	.data	= &mpc52xx_uart_driver,
1679ab4382d2SGreg Kroah-Hartman };
1680ab4382d2SGreg Kroah-Hartman 
1681ab4382d2SGreg Kroah-Hartman 
1682ab4382d2SGreg Kroah-Hartman static int __init
1683ab4382d2SGreg Kroah-Hartman mpc52xx_console_init(void)
1684ab4382d2SGreg Kroah-Hartman {
1685ab4382d2SGreg Kroah-Hartman 	mpc52xx_uart_of_enumerate();
1686ab4382d2SGreg Kroah-Hartman 	register_console(&mpc52xx_console);
1687ab4382d2SGreg Kroah-Hartman 	return 0;
1688ab4382d2SGreg Kroah-Hartman }
1689ab4382d2SGreg Kroah-Hartman 
1690ab4382d2SGreg Kroah-Hartman console_initcall(mpc52xx_console_init);
1691ab4382d2SGreg Kroah-Hartman 
1692ab4382d2SGreg Kroah-Hartman #define MPC52xx_PSC_CONSOLE &mpc52xx_console
1693ab4382d2SGreg Kroah-Hartman #else
1694ab4382d2SGreg Kroah-Hartman #define MPC52xx_PSC_CONSOLE NULL
1695ab4382d2SGreg Kroah-Hartman #endif
1696ab4382d2SGreg Kroah-Hartman 
1697ab4382d2SGreg Kroah-Hartman 
1698ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1699ab4382d2SGreg Kroah-Hartman /* UART Driver                                                              */
1700ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1701ab4382d2SGreg Kroah-Hartman 
1702ab4382d2SGreg Kroah-Hartman static struct uart_driver mpc52xx_uart_driver = {
1703ab4382d2SGreg Kroah-Hartman 	.driver_name	= "mpc52xx_psc_uart",
1704ab4382d2SGreg Kroah-Hartman 	.dev_name	= "ttyPSC",
1705ab4382d2SGreg Kroah-Hartman 	.major		= SERIAL_PSC_MAJOR,
1706ab4382d2SGreg Kroah-Hartman 	.minor		= SERIAL_PSC_MINOR,
1707ab4382d2SGreg Kroah-Hartman 	.nr		= MPC52xx_PSC_MAXNUM,
1708ab4382d2SGreg Kroah-Hartman 	.cons		= MPC52xx_PSC_CONSOLE,
1709ab4382d2SGreg Kroah-Hartman };
1710ab4382d2SGreg Kroah-Hartman 
1711ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1712ab4382d2SGreg Kroah-Hartman /* OF Platform Driver                                                       */
1713ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1714ab4382d2SGreg Kroah-Hartman 
1715ed0bb232SFabian Frederick static const struct of_device_id mpc52xx_uart_of_match[] = {
1716ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC52xx
1717ab4382d2SGreg Kroah-Hartman 	{ .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, },
1718ab4382d2SGreg Kroah-Hartman 	{ .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1719ab4382d2SGreg Kroah-Hartman 	/* binding used by old lite5200 device trees: */
1720ab4382d2SGreg Kroah-Hartman 	{ .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1721ab4382d2SGreg Kroah-Hartman 	/* binding used by efika: */
1722ab4382d2SGreg Kroah-Hartman 	{ .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, },
1723ab4382d2SGreg Kroah-Hartman #endif
1724ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC512x
1725ab4382d2SGreg Kroah-Hartman 	{ .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, },
17261f48c499SMatteo Facchinetti 	{ .compatible = "fsl,mpc5125-psc-uart", .data = &mpc5125_psc_ops, },
1727ab4382d2SGreg Kroah-Hartman #endif
1728ab4382d2SGreg Kroah-Hartman 	{},
1729ab4382d2SGreg Kroah-Hartman };
1730ab4382d2SGreg Kroah-Hartman 
17319671f099SBill Pemberton static int mpc52xx_uart_of_probe(struct platform_device *op)
1732ab4382d2SGreg Kroah-Hartman {
1733ab4382d2SGreg Kroah-Hartman 	int idx = -1;
1734ab4382d2SGreg Kroah-Hartman 	unsigned int uartclk;
1735ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = NULL;
1736ab4382d2SGreg Kroah-Hartman 	struct resource res;
1737ab4382d2SGreg Kroah-Hartman 	int ret;
1738ab4382d2SGreg Kroah-Hartman 
1739ab4382d2SGreg Kroah-Hartman 	/* Check validity & presence */
1740ab4382d2SGreg Kroah-Hartman 	for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
1741ab4382d2SGreg Kroah-Hartman 		if (mpc52xx_uart_nodes[idx] == op->dev.of_node)
1742ab4382d2SGreg Kroah-Hartman 			break;
1743ab4382d2SGreg Kroah-Hartman 	if (idx >= MPC52xx_PSC_MAXNUM)
1744ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1745a73ee843SRob Herring 	pr_debug("Found %pOF assigned to ttyPSC%x\n",
1746a73ee843SRob Herring 		 mpc52xx_uart_nodes[idx], idx);
1747ab4382d2SGreg Kroah-Hartman 
1748ab4382d2SGreg Kroah-Hartman 	/* set the uart clock to the input clock of the psc, the different
1749ab4382d2SGreg Kroah-Hartman 	 * prescalers are taken into account in the set_baudrate() methods
1750ab4382d2SGreg Kroah-Hartman 	 * of the respective chip */
1751ab4382d2SGreg Kroah-Hartman 	uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node);
1752ab4382d2SGreg Kroah-Hartman 	if (uartclk == 0) {
1753ab4382d2SGreg Kroah-Hartman 		dev_dbg(&op->dev, "Could not find uart clock frequency!\n");
1754ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1755ab4382d2SGreg Kroah-Hartman 	}
1756ab4382d2SGreg Kroah-Hartman 
1757ab4382d2SGreg Kroah-Hartman 	/* Init the port structure */
1758ab4382d2SGreg Kroah-Hartman 	port = &mpc52xx_uart_ports[idx];
1759ab4382d2SGreg Kroah-Hartman 
1760ab4382d2SGreg Kroah-Hartman 	spin_lock_init(&port->lock);
1761ab4382d2SGreg Kroah-Hartman 	port->uartclk = uartclk;
1762ab4382d2SGreg Kroah-Hartman 	port->fifosize	= 512;
1763ba4508dbSDmitry Safonov 	port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_MPC52xx_CONSOLE);
1764ab4382d2SGreg Kroah-Hartman 	port->iotype	= UPIO_MEM;
1765ab4382d2SGreg Kroah-Hartman 	port->flags	= UPF_BOOT_AUTOCONF |
1766ab4382d2SGreg Kroah-Hartman 			  (uart_console(port) ? 0 : UPF_IOREMAP);
1767ab4382d2SGreg Kroah-Hartman 	port->line	= idx;
1768ab4382d2SGreg Kroah-Hartman 	port->ops	= &mpc52xx_uart_ops;
1769ab4382d2SGreg Kroah-Hartman 	port->dev	= &op->dev;
1770ab4382d2SGreg Kroah-Hartman 
1771ab4382d2SGreg Kroah-Hartman 	/* Search for IRQ and mapbase */
1772ab4382d2SGreg Kroah-Hartman 	ret = of_address_to_resource(op->dev.of_node, 0, &res);
1773ab4382d2SGreg Kroah-Hartman 	if (ret)
1774ab4382d2SGreg Kroah-Hartman 		return ret;
1775ab4382d2SGreg Kroah-Hartman 
1776ab4382d2SGreg Kroah-Hartman 	port->mapbase = res.start;
1777ab4382d2SGreg Kroah-Hartman 	if (!port->mapbase) {
1778ab4382d2SGreg Kroah-Hartman 		dev_dbg(&op->dev, "Could not allocate resources for PSC\n");
1779ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1780ab4382d2SGreg Kroah-Hartman 	}
1781ab4382d2SGreg Kroah-Hartman 
1782ab4382d2SGreg Kroah-Hartman 	psc_ops->get_irq(port, op->dev.of_node);
1783d4e33facSAlan Cox 	if (port->irq == 0) {
1784ab4382d2SGreg Kroah-Hartman 		dev_dbg(&op->dev, "Could not get irq\n");
1785ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1786ab4382d2SGreg Kroah-Hartman 	}
1787ab4382d2SGreg Kroah-Hartman 
1788ab4382d2SGreg Kroah-Hartman 	dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n",
1789ab4382d2SGreg Kroah-Hartman 		(void *)port->mapbase, port->irq, port->uartclk);
1790ab4382d2SGreg Kroah-Hartman 
1791ab4382d2SGreg Kroah-Hartman 	/* Add the port to the uart sub-system */
1792ab4382d2SGreg Kroah-Hartman 	ret = uart_add_one_port(&mpc52xx_uart_driver, port);
1793ab4382d2SGreg Kroah-Hartman 	if (ret)
1794ab4382d2SGreg Kroah-Hartman 		return ret;
1795ab4382d2SGreg Kroah-Hartman 
1796696faeddSJingoo Han 	platform_set_drvdata(op, (void *)port);
1797ab4382d2SGreg Kroah-Hartman 	return 0;
1798ab4382d2SGreg Kroah-Hartman }
1799ab4382d2SGreg Kroah-Hartman 
1800ab4382d2SGreg Kroah-Hartman static int
1801ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_remove(struct platform_device *op)
1802ab4382d2SGreg Kroah-Hartman {
1803696faeddSJingoo Han 	struct uart_port *port = platform_get_drvdata(op);
1804ab4382d2SGreg Kroah-Hartman 
1805ab4382d2SGreg Kroah-Hartman 	if (port)
1806ab4382d2SGreg Kroah-Hartman 		uart_remove_one_port(&mpc52xx_uart_driver, port);
1807ab4382d2SGreg Kroah-Hartman 
1808ab4382d2SGreg Kroah-Hartman 	return 0;
1809ab4382d2SGreg Kroah-Hartman }
1810ab4382d2SGreg Kroah-Hartman 
1811ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PM
1812ab4382d2SGreg Kroah-Hartman static int
1813ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state)
1814ab4382d2SGreg Kroah-Hartman {
18154190390aSJingoo Han 	struct uart_port *port = platform_get_drvdata(op);
1816ab4382d2SGreg Kroah-Hartman 
1817ab4382d2SGreg Kroah-Hartman 	if (port)
1818ab4382d2SGreg Kroah-Hartman 		uart_suspend_port(&mpc52xx_uart_driver, port);
1819ab4382d2SGreg Kroah-Hartman 
1820ab4382d2SGreg Kroah-Hartman 	return 0;
1821ab4382d2SGreg Kroah-Hartman }
1822ab4382d2SGreg Kroah-Hartman 
1823ab4382d2SGreg Kroah-Hartman static int
1824ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_resume(struct platform_device *op)
1825ab4382d2SGreg Kroah-Hartman {
18264190390aSJingoo Han 	struct uart_port *port = platform_get_drvdata(op);
1827ab4382d2SGreg Kroah-Hartman 
1828ab4382d2SGreg Kroah-Hartman 	if (port)
1829ab4382d2SGreg Kroah-Hartman 		uart_resume_port(&mpc52xx_uart_driver, port);
1830ab4382d2SGreg Kroah-Hartman 
1831ab4382d2SGreg Kroah-Hartman 	return 0;
1832ab4382d2SGreg Kroah-Hartman }
1833ab4382d2SGreg Kroah-Hartman #endif
1834ab4382d2SGreg Kroah-Hartman 
1835ab4382d2SGreg Kroah-Hartman static void
1836ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_assign(struct device_node *np)
1837ab4382d2SGreg Kroah-Hartman {
1838ab4382d2SGreg Kroah-Hartman 	int i;
1839ab4382d2SGreg Kroah-Hartman 
1840ab4382d2SGreg Kroah-Hartman 	/* Find the first free PSC number */
1841ab4382d2SGreg Kroah-Hartman 	for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1842ab4382d2SGreg Kroah-Hartman 		if (mpc52xx_uart_nodes[i] == NULL) {
1843ab4382d2SGreg Kroah-Hartman 			of_node_get(np);
1844ab4382d2SGreg Kroah-Hartman 			mpc52xx_uart_nodes[i] = np;
1845ab4382d2SGreg Kroah-Hartman 			return;
1846ab4382d2SGreg Kroah-Hartman 		}
1847ab4382d2SGreg Kroah-Hartman 	}
1848ab4382d2SGreg Kroah-Hartman }
1849ab4382d2SGreg Kroah-Hartman 
1850ab4382d2SGreg Kroah-Hartman static void
1851ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_enumerate(void)
1852ab4382d2SGreg Kroah-Hartman {
1853ab4382d2SGreg Kroah-Hartman 	static int enum_done;
1854ab4382d2SGreg Kroah-Hartman 	struct device_node *np;
1855ab4382d2SGreg Kroah-Hartman 	const struct  of_device_id *match;
1856ab4382d2SGreg Kroah-Hartman 	int i;
1857ab4382d2SGreg Kroah-Hartman 
1858ab4382d2SGreg Kroah-Hartman 	if (enum_done)
1859ab4382d2SGreg Kroah-Hartman 		return;
1860ab4382d2SGreg Kroah-Hartman 
1861ab4382d2SGreg Kroah-Hartman 	/* Assign index to each PSC in device tree */
1862ab4382d2SGreg Kroah-Hartman 	for_each_matching_node(np, mpc52xx_uart_of_match) {
1863ab4382d2SGreg Kroah-Hartman 		match = of_match_node(mpc52xx_uart_of_match, np);
1864ab4382d2SGreg Kroah-Hartman 		psc_ops = match->data;
1865ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_of_assign(np);
1866ab4382d2SGreg Kroah-Hartman 	}
1867ab4382d2SGreg Kroah-Hartman 
1868ab4382d2SGreg Kroah-Hartman 	enum_done = 1;
1869ab4382d2SGreg Kroah-Hartman 
1870ab4382d2SGreg Kroah-Hartman 	for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1871ab4382d2SGreg Kroah-Hartman 		if (mpc52xx_uart_nodes[i])
1872a73ee843SRob Herring 			pr_debug("%pOF assigned to ttyPSC%x\n",
1873a73ee843SRob Herring 				 mpc52xx_uart_nodes[i], i);
1874ab4382d2SGreg Kroah-Hartman 	}
1875ab4382d2SGreg Kroah-Hartman }
1876ab4382d2SGreg Kroah-Hartman 
1877ab4382d2SGreg Kroah-Hartman MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
1878ab4382d2SGreg Kroah-Hartman 
1879793218dfSGrant Likely static struct platform_driver mpc52xx_uart_of_driver = {
1880ab4382d2SGreg Kroah-Hartman 	.probe		= mpc52xx_uart_of_probe,
1881ab4382d2SGreg Kroah-Hartman 	.remove		= mpc52xx_uart_of_remove,
1882ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PM
1883ab4382d2SGreg Kroah-Hartman 	.suspend	= mpc52xx_uart_of_suspend,
1884ab4382d2SGreg Kroah-Hartman 	.resume		= mpc52xx_uart_of_resume,
1885ab4382d2SGreg Kroah-Hartman #endif
1886ab4382d2SGreg Kroah-Hartman 	.driver = {
1887ab4382d2SGreg Kroah-Hartman 		.name = "mpc52xx-psc-uart",
1888ab4382d2SGreg Kroah-Hartman 		.of_match_table = mpc52xx_uart_of_match,
1889ab4382d2SGreg Kroah-Hartman 	},
1890ab4382d2SGreg Kroah-Hartman };
1891ab4382d2SGreg Kroah-Hartman 
1892ab4382d2SGreg Kroah-Hartman 
1893ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1894ab4382d2SGreg Kroah-Hartman /* Module                                                                   */
1895ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1896ab4382d2SGreg Kroah-Hartman 
1897ab4382d2SGreg Kroah-Hartman static int __init
1898ab4382d2SGreg Kroah-Hartman mpc52xx_uart_init(void)
1899ab4382d2SGreg Kroah-Hartman {
1900ab4382d2SGreg Kroah-Hartman 	int ret;
1901ab4382d2SGreg Kroah-Hartman 
1902ab4382d2SGreg Kroah-Hartman 	printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n");
1903ab4382d2SGreg Kroah-Hartman 
1904ab4382d2SGreg Kroah-Hartman 	ret = uart_register_driver(&mpc52xx_uart_driver);
1905ab4382d2SGreg Kroah-Hartman 	if (ret) {
1906ab4382d2SGreg Kroah-Hartman 		printk(KERN_ERR "%s: uart_register_driver failed (%i)\n",
1907ab4382d2SGreg Kroah-Hartman 		       __FILE__, ret);
1908ab4382d2SGreg Kroah-Hartman 		return ret;
1909ab4382d2SGreg Kroah-Hartman 	}
1910ab4382d2SGreg Kroah-Hartman 
1911ab4382d2SGreg Kroah-Hartman 	mpc52xx_uart_of_enumerate();
1912ab4382d2SGreg Kroah-Hartman 
1913ab4382d2SGreg Kroah-Hartman 	/*
1914ab4382d2SGreg Kroah-Hartman 	 * Map the PSC FIFO Controller and init if on MPC512x.
1915ab4382d2SGreg Kroah-Hartman 	 */
1916ab4382d2SGreg Kroah-Hartman 	if (psc_ops && psc_ops->fifoc_init) {
1917ab4382d2SGreg Kroah-Hartman 		ret = psc_ops->fifoc_init();
1918ab4382d2SGreg Kroah-Hartman 		if (ret)
19199bcc3278SWei Yongjun 			goto err_init;
1920ab4382d2SGreg Kroah-Hartman 	}
1921ab4382d2SGreg Kroah-Hartman 
1922793218dfSGrant Likely 	ret = platform_driver_register(&mpc52xx_uart_of_driver);
1923ab4382d2SGreg Kroah-Hartman 	if (ret) {
1924793218dfSGrant Likely 		printk(KERN_ERR "%s: platform_driver_register failed (%i)\n",
1925ab4382d2SGreg Kroah-Hartman 		       __FILE__, ret);
19269bcc3278SWei Yongjun 		goto err_reg;
1927ab4382d2SGreg Kroah-Hartman 	}
1928ab4382d2SGreg Kroah-Hartman 
1929ab4382d2SGreg Kroah-Hartman 	return 0;
19309bcc3278SWei Yongjun err_reg:
19319bcc3278SWei Yongjun 	if (psc_ops && psc_ops->fifoc_uninit)
19329bcc3278SWei Yongjun 		psc_ops->fifoc_uninit();
19339bcc3278SWei Yongjun err_init:
19349bcc3278SWei Yongjun 	uart_unregister_driver(&mpc52xx_uart_driver);
19359bcc3278SWei Yongjun 	return ret;
1936ab4382d2SGreg Kroah-Hartman }
1937ab4382d2SGreg Kroah-Hartman 
1938ab4382d2SGreg Kroah-Hartman static void __exit
1939ab4382d2SGreg Kroah-Hartman mpc52xx_uart_exit(void)
1940ab4382d2SGreg Kroah-Hartman {
1941ab4382d2SGreg Kroah-Hartman 	if (psc_ops->fifoc_uninit)
1942ab4382d2SGreg Kroah-Hartman 		psc_ops->fifoc_uninit();
1943ab4382d2SGreg Kroah-Hartman 
1944793218dfSGrant Likely 	platform_driver_unregister(&mpc52xx_uart_of_driver);
1945ab4382d2SGreg Kroah-Hartman 	uart_unregister_driver(&mpc52xx_uart_driver);
1946ab4382d2SGreg Kroah-Hartman }
1947ab4382d2SGreg Kroah-Hartman 
1948ab4382d2SGreg Kroah-Hartman 
1949ab4382d2SGreg Kroah-Hartman module_init(mpc52xx_uart_init);
1950ab4382d2SGreg Kroah-Hartman module_exit(mpc52xx_uart_exit);
1951ab4382d2SGreg Kroah-Hartman 
1952ab4382d2SGreg Kroah-Hartman MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
1953ab4382d2SGreg Kroah-Hartman MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
1954ab4382d2SGreg Kroah-Hartman MODULE_LICENSE("GPL");
1955