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