xref: /openbmc/linux/drivers/tty/serial/mpc52xx_uart.c (revision 5b84c967ccf0573ee4a0b2a53720d5e1e4a8c0f8)
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 {
242ab4382d2SGreg Kroah-Hartman 	return in_be16(&PSC(port)->mpc52xx_psc_status)
243ab4382d2SGreg Kroah-Hartman 	    & MPC52xx_PSC_SR_TXEMP;
244ab4382d2SGreg Kroah-Hartman }
245ab4382d2SGreg Kroah-Hartman 
246ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_start_tx(struct uart_port *port)
247ab4382d2SGreg Kroah-Hartman {
248ab4382d2SGreg Kroah-Hartman 	port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
249ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
250ab4382d2SGreg Kroah-Hartman }
251ab4382d2SGreg Kroah-Hartman 
252ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_stop_tx(struct uart_port *port)
253ab4382d2SGreg Kroah-Hartman {
254ab4382d2SGreg Kroah-Hartman 	port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
255ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
256ab4382d2SGreg Kroah-Hartman }
257ab4382d2SGreg Kroah-Hartman 
258ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_stop_rx(struct uart_port *port)
259ab4382d2SGreg Kroah-Hartman {
260ab4382d2SGreg Kroah-Hartman 	port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
261ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
262ab4382d2SGreg Kroah-Hartman }
263ab4382d2SGreg Kroah-Hartman 
264ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_rx_clr_irq(struct uart_port *port)
265ab4382d2SGreg Kroah-Hartman {
266ab4382d2SGreg Kroah-Hartman }
267ab4382d2SGreg Kroah-Hartman 
268ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_tx_clr_irq(struct uart_port *port)
269ab4382d2SGreg Kroah-Hartman {
270ab4382d2SGreg Kroah-Hartman }
271ab4382d2SGreg Kroah-Hartman 
272ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c)
273ab4382d2SGreg Kroah-Hartman {
274ab4382d2SGreg Kroah-Hartman 	out_8(&PSC(port)->mpc52xx_psc_buffer_8, c);
275ab4382d2SGreg Kroah-Hartman }
276ab4382d2SGreg Kroah-Hartman 
277ab4382d2SGreg Kroah-Hartman static unsigned char mpc52xx_psc_read_char(struct uart_port *port)
278ab4382d2SGreg Kroah-Hartman {
279ab4382d2SGreg Kroah-Hartman 	return in_8(&PSC(port)->mpc52xx_psc_buffer_8);
280ab4382d2SGreg Kroah-Hartman }
281ab4382d2SGreg Kroah-Hartman 
282ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_cw_disable_ints(struct uart_port *port)
283ab4382d2SGreg Kroah-Hartman {
284ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, 0);
285ab4382d2SGreg Kroah-Hartman }
286ab4382d2SGreg Kroah-Hartman 
287ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_cw_restore_ints(struct uart_port *port)
288ab4382d2SGreg Kroah-Hartman {
289ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask);
290ab4382d2SGreg Kroah-Hartman }
291ab4382d2SGreg Kroah-Hartman 
292ab4382d2SGreg Kroah-Hartman static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port,
293ab4382d2SGreg Kroah-Hartman 					     struct ktermios *new,
294ab4382d2SGreg Kroah-Hartman 					     struct ktermios *old)
295ab4382d2SGreg Kroah-Hartman {
296ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
297ab4382d2SGreg Kroah-Hartman 	unsigned int divisor;
298ab4382d2SGreg Kroah-Hartman 
299ab4382d2SGreg Kroah-Hartman 	/* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */
300ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, new, old,
301ab4382d2SGreg Kroah-Hartman 				  port->uartclk / (32 * 0xffff) + 1,
302ab4382d2SGreg Kroah-Hartman 				  port->uartclk / 32);
303ab4382d2SGreg Kroah-Hartman 	divisor = (port->uartclk + 16 * baud) / (32 * baud);
304ab4382d2SGreg Kroah-Hartman 
305ab4382d2SGreg Kroah-Hartman 	/* enable the /32 prescaler and set the divisor */
306ab4382d2SGreg Kroah-Hartman 	mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
307ab4382d2SGreg Kroah-Hartman 	return baud;
308ab4382d2SGreg Kroah-Hartman }
309ab4382d2SGreg Kroah-Hartman 
310ab4382d2SGreg Kroah-Hartman static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port,
311ab4382d2SGreg Kroah-Hartman 					      struct ktermios *new,
312ab4382d2SGreg Kroah-Hartman 					      struct ktermios *old)
313ab4382d2SGreg Kroah-Hartman {
314ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
315ab4382d2SGreg Kroah-Hartman 	unsigned int divisor;
316ab4382d2SGreg Kroah-Hartman 	u16 prescaler;
317ab4382d2SGreg Kroah-Hartman 
318ab4382d2SGreg Kroah-Hartman 	/* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the
319ab4382d2SGreg Kroah-Hartman 	 * ipb freq */
320ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, new, old,
321ab4382d2SGreg Kroah-Hartman 				  port->uartclk / (32 * 0xffff) + 1,
322ab4382d2SGreg Kroah-Hartman 				  port->uartclk / 4);
323ab4382d2SGreg Kroah-Hartman 	divisor = (port->uartclk + 2 * baud) / (4 * baud);
324ab4382d2SGreg Kroah-Hartman 
325e0955aceSFrank Benkert 	/* select the proper prescaler and set the divisor
326e0955aceSFrank Benkert 	 * prefer high prescaler for more tolerance on low baudrates */
327e0955aceSFrank Benkert 	if (divisor > 0xffff || baud <= 115200) {
328ab4382d2SGreg Kroah-Hartman 		divisor = (divisor + 4) / 8;
329ab4382d2SGreg Kroah-Hartman 		prescaler = 0xdd00; /* /32 */
330ab4382d2SGreg Kroah-Hartman 	} else
331ab4382d2SGreg Kroah-Hartman 		prescaler = 0xff00; /* /4 */
332ab4382d2SGreg Kroah-Hartman 	mpc52xx_set_divisor(PSC(port), prescaler, divisor);
333ab4382d2SGreg Kroah-Hartman 	return baud;
334ab4382d2SGreg Kroah-Hartman }
335ab4382d2SGreg Kroah-Hartman 
336ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np)
337ab4382d2SGreg Kroah-Hartman {
3389cfb5c05SYong Zhang 	port->irqflags = 0;
339ab4382d2SGreg Kroah-Hartman 	port->irq = irq_of_parse_and_map(np, 0);
340ab4382d2SGreg Kroah-Hartman }
341ab4382d2SGreg Kroah-Hartman 
342ab4382d2SGreg Kroah-Hartman /* 52xx specific interrupt handler. The caller holds the port lock */
343ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port)
344ab4382d2SGreg Kroah-Hartman {
345ab4382d2SGreg Kroah-Hartman 	return mpc5xxx_uart_process_int(port);
346ab4382d2SGreg Kroah-Hartman }
347ab4382d2SGreg Kroah-Hartman 
348ab4382d2SGreg Kroah-Hartman static struct psc_ops mpc52xx_psc_ops = {
349ab4382d2SGreg Kroah-Hartman 	.fifo_init = mpc52xx_psc_fifo_init,
350ab4382d2SGreg Kroah-Hartman 	.raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
351ab4382d2SGreg Kroah-Hartman 	.raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
352ab4382d2SGreg Kroah-Hartman 	.rx_rdy = mpc52xx_psc_rx_rdy,
353ab4382d2SGreg Kroah-Hartman 	.tx_rdy = mpc52xx_psc_tx_rdy,
354ab4382d2SGreg Kroah-Hartman 	.tx_empty = mpc52xx_psc_tx_empty,
355ab4382d2SGreg Kroah-Hartman 	.stop_rx = mpc52xx_psc_stop_rx,
356ab4382d2SGreg Kroah-Hartman 	.start_tx = mpc52xx_psc_start_tx,
357ab4382d2SGreg Kroah-Hartman 	.stop_tx = mpc52xx_psc_stop_tx,
358ab4382d2SGreg Kroah-Hartman 	.rx_clr_irq = mpc52xx_psc_rx_clr_irq,
359ab4382d2SGreg Kroah-Hartman 	.tx_clr_irq = mpc52xx_psc_tx_clr_irq,
360ab4382d2SGreg Kroah-Hartman 	.write_char = mpc52xx_psc_write_char,
361ab4382d2SGreg Kroah-Hartman 	.read_char = mpc52xx_psc_read_char,
362ab4382d2SGreg Kroah-Hartman 	.cw_disable_ints = mpc52xx_psc_cw_disable_ints,
363ab4382d2SGreg Kroah-Hartman 	.cw_restore_ints = mpc52xx_psc_cw_restore_ints,
364ab4382d2SGreg Kroah-Hartman 	.set_baudrate = mpc5200_psc_set_baudrate,
365ab4382d2SGreg Kroah-Hartman 	.get_irq = mpc52xx_psc_get_irq,
366ab4382d2SGreg Kroah-Hartman 	.handle_irq = mpc52xx_psc_handle_irq,
3672574b27eSMatteo Facchinetti 	.get_status = mpc52xx_psc_get_status,
3682574b27eSMatteo Facchinetti 	.get_ipcr = mpc52xx_psc_get_ipcr,
3692574b27eSMatteo Facchinetti 	.command = mpc52xx_psc_command,
3702574b27eSMatteo Facchinetti 	.set_mode = mpc52xx_psc_set_mode,
3712574b27eSMatteo Facchinetti 	.set_rts = mpc52xx_psc_set_rts,
3722574b27eSMatteo Facchinetti 	.enable_ms = mpc52xx_psc_enable_ms,
3732574b27eSMatteo Facchinetti 	.set_sicr = mpc52xx_psc_set_sicr,
3742574b27eSMatteo Facchinetti 	.set_imr = mpc52xx_psc_set_imr,
3752574b27eSMatteo Facchinetti 	.get_mr1 = mpc52xx_psc_get_mr1,
376ab4382d2SGreg Kroah-Hartman };
377ab4382d2SGreg Kroah-Hartman 
378ab4382d2SGreg Kroah-Hartman static struct psc_ops mpc5200b_psc_ops = {
379ab4382d2SGreg Kroah-Hartman 	.fifo_init = mpc52xx_psc_fifo_init,
380ab4382d2SGreg Kroah-Hartman 	.raw_rx_rdy = mpc52xx_psc_raw_rx_rdy,
381ab4382d2SGreg Kroah-Hartman 	.raw_tx_rdy = mpc52xx_psc_raw_tx_rdy,
382ab4382d2SGreg Kroah-Hartman 	.rx_rdy = mpc52xx_psc_rx_rdy,
383ab4382d2SGreg Kroah-Hartman 	.tx_rdy = mpc52xx_psc_tx_rdy,
384ab4382d2SGreg Kroah-Hartman 	.tx_empty = mpc52xx_psc_tx_empty,
385ab4382d2SGreg Kroah-Hartman 	.stop_rx = mpc52xx_psc_stop_rx,
386ab4382d2SGreg Kroah-Hartman 	.start_tx = mpc52xx_psc_start_tx,
387ab4382d2SGreg Kroah-Hartman 	.stop_tx = mpc52xx_psc_stop_tx,
388ab4382d2SGreg Kroah-Hartman 	.rx_clr_irq = mpc52xx_psc_rx_clr_irq,
389ab4382d2SGreg Kroah-Hartman 	.tx_clr_irq = mpc52xx_psc_tx_clr_irq,
390ab4382d2SGreg Kroah-Hartman 	.write_char = mpc52xx_psc_write_char,
391ab4382d2SGreg Kroah-Hartman 	.read_char = mpc52xx_psc_read_char,
392ab4382d2SGreg Kroah-Hartman 	.cw_disable_ints = mpc52xx_psc_cw_disable_ints,
393ab4382d2SGreg Kroah-Hartman 	.cw_restore_ints = mpc52xx_psc_cw_restore_ints,
394ab4382d2SGreg Kroah-Hartman 	.set_baudrate = mpc5200b_psc_set_baudrate,
395ab4382d2SGreg Kroah-Hartman 	.get_irq = mpc52xx_psc_get_irq,
396ab4382d2SGreg Kroah-Hartman 	.handle_irq = mpc52xx_psc_handle_irq,
3972574b27eSMatteo Facchinetti 	.get_status = mpc52xx_psc_get_status,
3982574b27eSMatteo Facchinetti 	.get_ipcr = mpc52xx_psc_get_ipcr,
3992574b27eSMatteo Facchinetti 	.command = mpc52xx_psc_command,
4002574b27eSMatteo Facchinetti 	.set_mode = mpc52xx_psc_set_mode,
4012574b27eSMatteo Facchinetti 	.set_rts = mpc52xx_psc_set_rts,
4022574b27eSMatteo Facchinetti 	.enable_ms = mpc52xx_psc_enable_ms,
4032574b27eSMatteo Facchinetti 	.set_sicr = mpc52xx_psc_set_sicr,
4042574b27eSMatteo Facchinetti 	.set_imr = mpc52xx_psc_set_imr,
4052574b27eSMatteo Facchinetti 	.get_mr1 = mpc52xx_psc_get_mr1,
406ab4382d2SGreg Kroah-Hartman };
407ab4382d2SGreg Kroah-Hartman 
408*5b84c967SValentin Rothberg #endif /* CONFIG_PPC_MPC52xx */
409ab4382d2SGreg Kroah-Hartman 
410ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC512x
411ab4382d2SGreg Kroah-Hartman #define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1))
412ab4382d2SGreg Kroah-Hartman 
413ab4382d2SGreg Kroah-Hartman /* PSC FIFO Controller for mpc512x */
414ab4382d2SGreg Kroah-Hartman struct psc_fifoc {
415ab4382d2SGreg Kroah-Hartman 	u32 fifoc_cmd;
416ab4382d2SGreg Kroah-Hartman 	u32 fifoc_int;
417ab4382d2SGreg Kroah-Hartman 	u32 fifoc_dma;
418ab4382d2SGreg Kroah-Hartman 	u32 fifoc_axe;
419ab4382d2SGreg Kroah-Hartman 	u32 fifoc_debug;
420ab4382d2SGreg Kroah-Hartman };
421ab4382d2SGreg Kroah-Hartman 
422ab4382d2SGreg Kroah-Hartman static struct psc_fifoc __iomem *psc_fifoc;
423ab4382d2SGreg Kroah-Hartman static unsigned int psc_fifoc_irq;
424cb1ea812SGerhard Sittig static struct clk *psc_fifoc_clk;
425ab4382d2SGreg Kroah-Hartman 
426ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_fifo_init(struct uart_port *port)
427ab4382d2SGreg Kroah-Hartman {
428ab4382d2SGreg Kroah-Hartman 	/* /32 prescaler */
429ab4382d2SGreg Kroah-Hartman 	out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00);
430ab4382d2SGreg Kroah-Hartman 
431ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
432ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
433ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txalarm, 1);
434ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, 0);
435ab4382d2SGreg Kroah-Hartman 
436ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
437ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
438ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxalarm, 1);
439ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, 0);
440ab4382d2SGreg Kroah-Hartman 
441ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM);
442ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM);
443ab4382d2SGreg Kroah-Hartman }
444ab4382d2SGreg Kroah-Hartman 
445ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_raw_rx_rdy(struct uart_port *port)
446ab4382d2SGreg Kroah-Hartman {
447ab4382d2SGreg Kroah-Hartman 	return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
448ab4382d2SGreg Kroah-Hartman }
449ab4382d2SGreg Kroah-Hartman 
450ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_raw_tx_rdy(struct uart_port *port)
451ab4382d2SGreg Kroah-Hartman {
452ab4382d2SGreg Kroah-Hartman 	return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL);
453ab4382d2SGreg Kroah-Hartman }
454ab4382d2SGreg Kroah-Hartman 
455ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_rx_rdy(struct uart_port *port)
456ab4382d2SGreg Kroah-Hartman {
457ab4382d2SGreg Kroah-Hartman 	return in_be32(&FIFO_512x(port)->rxsr)
458ab4382d2SGreg Kroah-Hartman 	    & in_be32(&FIFO_512x(port)->rximr)
459ab4382d2SGreg Kroah-Hartman 	    & MPC512x_PSC_FIFO_ALARM;
460ab4382d2SGreg Kroah-Hartman }
461ab4382d2SGreg Kroah-Hartman 
462ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_tx_rdy(struct uart_port *port)
463ab4382d2SGreg Kroah-Hartman {
464ab4382d2SGreg Kroah-Hartman 	return in_be32(&FIFO_512x(port)->txsr)
465ab4382d2SGreg Kroah-Hartman 	    & in_be32(&FIFO_512x(port)->tximr)
466ab4382d2SGreg Kroah-Hartman 	    & MPC512x_PSC_FIFO_ALARM;
467ab4382d2SGreg Kroah-Hartman }
468ab4382d2SGreg Kroah-Hartman 
469ab4382d2SGreg Kroah-Hartman static int mpc512x_psc_tx_empty(struct uart_port *port)
470ab4382d2SGreg Kroah-Hartman {
471ab4382d2SGreg Kroah-Hartman 	return in_be32(&FIFO_512x(port)->txsr)
472ab4382d2SGreg Kroah-Hartman 	    & MPC512x_PSC_FIFO_EMPTY;
473ab4382d2SGreg Kroah-Hartman }
474ab4382d2SGreg Kroah-Hartman 
475ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_stop_rx(struct uart_port *port)
476ab4382d2SGreg Kroah-Hartman {
477ab4382d2SGreg Kroah-Hartman 	unsigned long rx_fifo_imr;
478ab4382d2SGreg Kroah-Hartman 
479ab4382d2SGreg Kroah-Hartman 	rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr);
480ab4382d2SGreg Kroah-Hartman 	rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
481ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr);
482ab4382d2SGreg Kroah-Hartman }
483ab4382d2SGreg Kroah-Hartman 
484ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_start_tx(struct uart_port *port)
485ab4382d2SGreg Kroah-Hartman {
486ab4382d2SGreg Kroah-Hartman 	unsigned long tx_fifo_imr;
487ab4382d2SGreg Kroah-Hartman 
488ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
489ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
490ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
491ab4382d2SGreg Kroah-Hartman }
492ab4382d2SGreg Kroah-Hartman 
493ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_stop_tx(struct uart_port *port)
494ab4382d2SGreg Kroah-Hartman {
495ab4382d2SGreg Kroah-Hartman 	unsigned long tx_fifo_imr;
496ab4382d2SGreg Kroah-Hartman 
497ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr);
498ab4382d2SGreg Kroah-Hartman 	tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
499ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr);
500ab4382d2SGreg Kroah-Hartman }
501ab4382d2SGreg Kroah-Hartman 
502ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_rx_clr_irq(struct uart_port *port)
503ab4382d2SGreg Kroah-Hartman {
504ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr));
505ab4382d2SGreg Kroah-Hartman }
506ab4382d2SGreg Kroah-Hartman 
507ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_tx_clr_irq(struct uart_port *port)
508ab4382d2SGreg Kroah-Hartman {
509ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr));
510ab4382d2SGreg Kroah-Hartman }
511ab4382d2SGreg Kroah-Hartman 
512ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c)
513ab4382d2SGreg Kroah-Hartman {
514ab4382d2SGreg Kroah-Hartman 	out_8(&FIFO_512x(port)->txdata_8, c);
515ab4382d2SGreg Kroah-Hartman }
516ab4382d2SGreg Kroah-Hartman 
517ab4382d2SGreg Kroah-Hartman static unsigned char mpc512x_psc_read_char(struct uart_port *port)
518ab4382d2SGreg Kroah-Hartman {
519ab4382d2SGreg Kroah-Hartman 	return in_8(&FIFO_512x(port)->rxdata_8);
520ab4382d2SGreg Kroah-Hartman }
521ab4382d2SGreg Kroah-Hartman 
522ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_cw_disable_ints(struct uart_port *port)
523ab4382d2SGreg Kroah-Hartman {
524ab4382d2SGreg Kroah-Hartman 	port->read_status_mask =
525ab4382d2SGreg Kroah-Hartman 		in_be32(&FIFO_512x(port)->tximr) << 16 |
526ab4382d2SGreg Kroah-Hartman 		in_be32(&FIFO_512x(port)->rximr);
527ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr, 0);
528ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, 0);
529ab4382d2SGreg Kroah-Hartman }
530ab4382d2SGreg Kroah-Hartman 
531ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_cw_restore_ints(struct uart_port *port)
532ab4382d2SGreg Kroah-Hartman {
533ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->tximr,
534ab4382d2SGreg Kroah-Hartman 		(port->read_status_mask >> 16) & 0x7f);
535ab4382d2SGreg Kroah-Hartman 	out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f);
536ab4382d2SGreg Kroah-Hartman }
537ab4382d2SGreg Kroah-Hartman 
538ab4382d2SGreg Kroah-Hartman static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port,
539ab4382d2SGreg Kroah-Hartman 					     struct ktermios *new,
540ab4382d2SGreg Kroah-Hartman 					     struct ktermios *old)
541ab4382d2SGreg Kroah-Hartman {
542ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
543ab4382d2SGreg Kroah-Hartman 	unsigned int divisor;
544ab4382d2SGreg Kroah-Hartman 
545ab4382d2SGreg Kroah-Hartman 	/*
546ab4382d2SGreg Kroah-Hartman 	 * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on
547ab4382d2SGreg Kroah-Hartman 	 * pg. 30-10 that the chip supports a /32 and a /10 prescaler.
548ab4382d2SGreg Kroah-Hartman 	 * Furthermore, it states that "After reset, the prescaler by 10
549ab4382d2SGreg Kroah-Hartman 	 * for the UART mode is selected", but the reset register value is
550ab4382d2SGreg Kroah-Hartman 	 * 0x0000 which means a /32 prescaler. This is wrong.
551ab4382d2SGreg Kroah-Hartman 	 *
552ab4382d2SGreg Kroah-Hartman 	 * In reality using /32 prescaler doesn't work, as it is not supported!
553ab4382d2SGreg Kroah-Hartman 	 * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide",
554ab4382d2SGreg Kroah-Hartman 	 * Chapter 4.1 PSC in UART Mode.
555ab4382d2SGreg Kroah-Hartman 	 * Calculate with a /16 prescaler here.
556ab4382d2SGreg Kroah-Hartman 	 */
557ab4382d2SGreg Kroah-Hartman 
558ab4382d2SGreg Kroah-Hartman 	/* uartclk contains the ips freq */
559ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, new, old,
560ab4382d2SGreg Kroah-Hartman 				  port->uartclk / (16 * 0xffff) + 1,
561ab4382d2SGreg Kroah-Hartman 				  port->uartclk / 16);
562ab4382d2SGreg Kroah-Hartman 	divisor = (port->uartclk + 8 * baud) / (16 * baud);
563ab4382d2SGreg Kroah-Hartman 
564ab4382d2SGreg Kroah-Hartman 	/* enable the /16 prescaler and set the divisor */
565ab4382d2SGreg Kroah-Hartman 	mpc52xx_set_divisor(PSC(port), 0xdd00, divisor);
566ab4382d2SGreg Kroah-Hartman 	return baud;
567ab4382d2SGreg Kroah-Hartman }
568ab4382d2SGreg Kroah-Hartman 
569ab4382d2SGreg Kroah-Hartman /* Init PSC FIFO Controller */
570ab4382d2SGreg Kroah-Hartman static int __init mpc512x_psc_fifoc_init(void)
571ab4382d2SGreg Kroah-Hartman {
572cb1ea812SGerhard Sittig 	int err;
573ab4382d2SGreg Kroah-Hartman 	struct device_node *np;
574cb1ea812SGerhard Sittig 	struct clk *clk;
575cb1ea812SGerhard Sittig 
576cb1ea812SGerhard Sittig 	/* default error code, potentially overwritten by clock calls */
577cb1ea812SGerhard Sittig 	err = -ENODEV;
578ab4382d2SGreg Kroah-Hartman 
579ab4382d2SGreg Kroah-Hartman 	np = of_find_compatible_node(NULL, NULL,
580ab4382d2SGreg Kroah-Hartman 				     "fsl,mpc5121-psc-fifo");
581ab4382d2SGreg Kroah-Hartman 	if (!np) {
582ab4382d2SGreg Kroah-Hartman 		pr_err("%s: Can't find FIFOC node\n", __func__);
583cb1ea812SGerhard Sittig 		goto out_err;
584ab4382d2SGreg Kroah-Hartman 	}
585ab4382d2SGreg Kroah-Hartman 
586cb1ea812SGerhard Sittig 	clk = of_clk_get(np, 0);
587cb1ea812SGerhard Sittig 	if (IS_ERR(clk)) {
588cb1ea812SGerhard Sittig 		/* backwards compat with device trees that lack clock specs */
589cb1ea812SGerhard Sittig 		clk = clk_get_sys(np->name, "ipg");
590cb1ea812SGerhard Sittig 	}
591cb1ea812SGerhard Sittig 	if (IS_ERR(clk)) {
592cb1ea812SGerhard Sittig 		pr_err("%s: Can't lookup FIFO clock\n", __func__);
593cb1ea812SGerhard Sittig 		err = PTR_ERR(clk);
594cb1ea812SGerhard Sittig 		goto out_ofnode_put;
595cb1ea812SGerhard Sittig 	}
596cb1ea812SGerhard Sittig 	if (clk_prepare_enable(clk)) {
597cb1ea812SGerhard Sittig 		pr_err("%s: Can't enable FIFO clock\n", __func__);
598cb1ea812SGerhard Sittig 		clk_put(clk);
599cb1ea812SGerhard Sittig 		goto out_ofnode_put;
600cb1ea812SGerhard Sittig 	}
601cb1ea812SGerhard Sittig 	psc_fifoc_clk = clk;
602cb1ea812SGerhard Sittig 
603ab4382d2SGreg Kroah-Hartman 	psc_fifoc = of_iomap(np, 0);
604ab4382d2SGreg Kroah-Hartman 	if (!psc_fifoc) {
605ab4382d2SGreg Kroah-Hartman 		pr_err("%s: Can't map FIFOC\n", __func__);
606cb1ea812SGerhard Sittig 		goto out_clk_disable;
607ab4382d2SGreg Kroah-Hartman 	}
608ab4382d2SGreg Kroah-Hartman 
609ab4382d2SGreg Kroah-Hartman 	psc_fifoc_irq = irq_of_parse_and_map(np, 0);
610d4e33facSAlan Cox 	if (psc_fifoc_irq == 0) {
611ab4382d2SGreg Kroah-Hartman 		pr_err("%s: Can't get FIFOC irq\n", __func__);
612cb1ea812SGerhard Sittig 		goto out_unmap;
613ab4382d2SGreg Kroah-Hartman 	}
614ab4382d2SGreg Kroah-Hartman 
615cb1ea812SGerhard Sittig 	of_node_put(np);
616ab4382d2SGreg Kroah-Hartman 	return 0;
617cb1ea812SGerhard Sittig 
618cb1ea812SGerhard Sittig out_unmap:
619cb1ea812SGerhard Sittig 	iounmap(psc_fifoc);
620cb1ea812SGerhard Sittig out_clk_disable:
621cb1ea812SGerhard Sittig 	clk_disable_unprepare(psc_fifoc_clk);
622cb1ea812SGerhard Sittig 	clk_put(psc_fifoc_clk);
623cb1ea812SGerhard Sittig out_ofnode_put:
624cb1ea812SGerhard Sittig 	of_node_put(np);
625cb1ea812SGerhard Sittig out_err:
626cb1ea812SGerhard Sittig 	return err;
627ab4382d2SGreg Kroah-Hartman }
628ab4382d2SGreg Kroah-Hartman 
629ab4382d2SGreg Kroah-Hartman static void __exit mpc512x_psc_fifoc_uninit(void)
630ab4382d2SGreg Kroah-Hartman {
631ab4382d2SGreg Kroah-Hartman 	iounmap(psc_fifoc);
632cb1ea812SGerhard Sittig 
633cb1ea812SGerhard Sittig 	/* disable the clock, errors are not fatal */
634cb1ea812SGerhard Sittig 	if (psc_fifoc_clk) {
635cb1ea812SGerhard Sittig 		clk_disable_unprepare(psc_fifoc_clk);
636cb1ea812SGerhard Sittig 		clk_put(psc_fifoc_clk);
637cb1ea812SGerhard Sittig 		psc_fifoc_clk = NULL;
638cb1ea812SGerhard Sittig 	}
639ab4382d2SGreg Kroah-Hartman }
640ab4382d2SGreg Kroah-Hartman 
641ab4382d2SGreg Kroah-Hartman /* 512x specific interrupt handler. The caller holds the port lock */
642ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port)
643ab4382d2SGreg Kroah-Hartman {
644ab4382d2SGreg Kroah-Hartman 	unsigned long fifoc_int;
645ab4382d2SGreg Kroah-Hartman 	int psc_num;
646ab4382d2SGreg Kroah-Hartman 
647ab4382d2SGreg Kroah-Hartman 	/* Read pending PSC FIFOC interrupts */
648ab4382d2SGreg Kroah-Hartman 	fifoc_int = in_be32(&psc_fifoc->fifoc_int);
649ab4382d2SGreg Kroah-Hartman 
650ab4382d2SGreg Kroah-Hartman 	/* Check if it is an interrupt for this port */
651ab4382d2SGreg Kroah-Hartman 	psc_num = (port->mapbase & 0xf00) >> 8;
652ab4382d2SGreg Kroah-Hartman 	if (test_bit(psc_num, &fifoc_int) ||
653ab4382d2SGreg Kroah-Hartman 	    test_bit(psc_num + 16, &fifoc_int))
654ab4382d2SGreg Kroah-Hartman 		return mpc5xxx_uart_process_int(port);
655ab4382d2SGreg Kroah-Hartman 
656ab4382d2SGreg Kroah-Hartman 	return IRQ_NONE;
657ab4382d2SGreg Kroah-Hartman }
658ab4382d2SGreg Kroah-Hartman 
6592d30ccacSGerhard Sittig static struct clk *psc_mclk_clk[MPC52xx_PSC_MAXNUM];
660e149b42bSGerhard Sittig static struct clk *psc_ipg_clk[MPC52xx_PSC_MAXNUM];
6612d30ccacSGerhard Sittig 
6622d30ccacSGerhard Sittig /* called from within the .request_port() callback (allocation) */
6632d30ccacSGerhard Sittig static int mpc512x_psc_alloc_clock(struct uart_port *port)
664ab4382d2SGreg Kroah-Hartman {
665ab4382d2SGreg Kroah-Hartman 	int psc_num;
6662d30ccacSGerhard Sittig 	struct clk *clk;
6672d30ccacSGerhard Sittig 	int err;
6682d30ccacSGerhard Sittig 
6692d30ccacSGerhard Sittig 	psc_num = (port->mapbase & 0xf00) >> 8;
670e149b42bSGerhard Sittig 
671e149b42bSGerhard Sittig 	clk = devm_clk_get(port->dev, "mclk");
6722d30ccacSGerhard Sittig 	if (IS_ERR(clk)) {
6732d30ccacSGerhard Sittig 		dev_err(port->dev, "Failed to get MCLK!\n");
674e149b42bSGerhard Sittig 		err = PTR_ERR(clk);
675e149b42bSGerhard Sittig 		goto out_err;
6762d30ccacSGerhard Sittig 	}
6772d30ccacSGerhard Sittig 	err = clk_prepare_enable(clk);
6782d30ccacSGerhard Sittig 	if (err) {
6792d30ccacSGerhard Sittig 		dev_err(port->dev, "Failed to enable MCLK!\n");
680e149b42bSGerhard Sittig 		goto out_err;
6812d30ccacSGerhard Sittig 	}
6822d30ccacSGerhard Sittig 	psc_mclk_clk[psc_num] = clk;
683e149b42bSGerhard Sittig 
684e149b42bSGerhard Sittig 	clk = devm_clk_get(port->dev, "ipg");
685e149b42bSGerhard Sittig 	if (IS_ERR(clk)) {
686e149b42bSGerhard Sittig 		dev_err(port->dev, "Failed to get IPG clock!\n");
687e149b42bSGerhard Sittig 		err = PTR_ERR(clk);
688e149b42bSGerhard Sittig 		goto out_err;
689e149b42bSGerhard Sittig 	}
690e149b42bSGerhard Sittig 	err = clk_prepare_enable(clk);
691e149b42bSGerhard Sittig 	if (err) {
692e149b42bSGerhard Sittig 		dev_err(port->dev, "Failed to enable IPG clock!\n");
693e149b42bSGerhard Sittig 		goto out_err;
694e149b42bSGerhard Sittig 	}
695e149b42bSGerhard Sittig 	psc_ipg_clk[psc_num] = clk;
696e149b42bSGerhard Sittig 
6972d30ccacSGerhard Sittig 	return 0;
698e149b42bSGerhard Sittig 
699e149b42bSGerhard Sittig out_err:
700e149b42bSGerhard Sittig 	if (psc_mclk_clk[psc_num]) {
701e149b42bSGerhard Sittig 		clk_disable_unprepare(psc_mclk_clk[psc_num]);
702e149b42bSGerhard Sittig 		psc_mclk_clk[psc_num] = NULL;
703e149b42bSGerhard Sittig 	}
704e149b42bSGerhard Sittig 	if (psc_ipg_clk[psc_num]) {
705e149b42bSGerhard Sittig 		clk_disable_unprepare(psc_ipg_clk[psc_num]);
706e149b42bSGerhard Sittig 		psc_ipg_clk[psc_num] = NULL;
707e149b42bSGerhard Sittig 	}
708e149b42bSGerhard Sittig 	return err;
7092d30ccacSGerhard Sittig }
7102d30ccacSGerhard Sittig 
7112d30ccacSGerhard Sittig /* called from within the .release_port() callback (release) */
7122d30ccacSGerhard Sittig static void mpc512x_psc_relse_clock(struct uart_port *port)
7132d30ccacSGerhard Sittig {
7142d30ccacSGerhard Sittig 	int psc_num;
7152d30ccacSGerhard Sittig 	struct clk *clk;
7162d30ccacSGerhard Sittig 
7172d30ccacSGerhard Sittig 	psc_num = (port->mapbase & 0xf00) >> 8;
7182d30ccacSGerhard Sittig 	clk = psc_mclk_clk[psc_num];
7192d30ccacSGerhard Sittig 	if (clk) {
7202d30ccacSGerhard Sittig 		clk_disable_unprepare(clk);
7212d30ccacSGerhard Sittig 		psc_mclk_clk[psc_num] = NULL;
7222d30ccacSGerhard Sittig 	}
723e149b42bSGerhard Sittig 	if (psc_ipg_clk[psc_num]) {
724e149b42bSGerhard Sittig 		clk_disable_unprepare(psc_ipg_clk[psc_num]);
725e149b42bSGerhard Sittig 		psc_ipg_clk[psc_num] = NULL;
726e149b42bSGerhard Sittig 	}
7272d30ccacSGerhard Sittig }
7282d30ccacSGerhard Sittig 
7292d30ccacSGerhard Sittig /* implementation of the .clock() callback (enable/disable) */
7302d30ccacSGerhard Sittig static int mpc512x_psc_endis_clock(struct uart_port *port, int enable)
7312d30ccacSGerhard Sittig {
7322d30ccacSGerhard Sittig 	int psc_num;
7332d30ccacSGerhard Sittig 	struct clk *psc_clk;
7342d30ccacSGerhard Sittig 	int ret;
735ab4382d2SGreg Kroah-Hartman 
736ab4382d2SGreg Kroah-Hartman 	if (uart_console(port))
737ab4382d2SGreg Kroah-Hartman 		return 0;
738ab4382d2SGreg Kroah-Hartman 
739ab4382d2SGreg Kroah-Hartman 	psc_num = (port->mapbase & 0xf00) >> 8;
7402d30ccacSGerhard Sittig 	psc_clk = psc_mclk_clk[psc_num];
7412d30ccacSGerhard Sittig 	if (!psc_clk) {
742ab4382d2SGreg Kroah-Hartman 		dev_err(port->dev, "Failed to get PSC clock entry!\n");
743ab4382d2SGreg Kroah-Hartman 		return -ENODEV;
744ab4382d2SGreg Kroah-Hartman 	}
745ab4382d2SGreg Kroah-Hartman 
7462d30ccacSGerhard Sittig 	dev_dbg(port->dev, "mclk %sable\n", enable ? "en" : "dis");
7472d30ccacSGerhard Sittig 	if (enable) {
7482d30ccacSGerhard Sittig 		ret = clk_enable(psc_clk);
7492d30ccacSGerhard Sittig 		if (ret)
7502d30ccacSGerhard Sittig 			dev_err(port->dev, "Failed to enable MCLK!\n");
7512d30ccacSGerhard Sittig 		return ret;
7522d30ccacSGerhard Sittig 	} else {
753ab4382d2SGreg Kroah-Hartman 		clk_disable(psc_clk);
754ab4382d2SGreg Kroah-Hartman 		return 0;
755ab4382d2SGreg Kroah-Hartman 	}
7562d30ccacSGerhard Sittig }
757ab4382d2SGreg Kroah-Hartman 
758ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np)
759ab4382d2SGreg Kroah-Hartman {
760ab4382d2SGreg Kroah-Hartman 	port->irqflags = IRQF_SHARED;
761ab4382d2SGreg Kroah-Hartman 	port->irq = psc_fifoc_irq;
762ab4382d2SGreg Kroah-Hartman }
7631f48c499SMatteo Facchinetti #endif
7641f48c499SMatteo Facchinetti 
7651f48c499SMatteo Facchinetti #ifdef CONFIG_PPC_MPC512x
7661f48c499SMatteo Facchinetti 
7671f48c499SMatteo Facchinetti #define PSC_5125(port) ((struct mpc5125_psc __iomem *)((port)->membase))
7681f48c499SMatteo Facchinetti #define FIFO_5125(port) ((struct mpc512x_psc_fifo __iomem *)(PSC_5125(port)+1))
7691f48c499SMatteo Facchinetti 
7701f48c499SMatteo Facchinetti static void mpc5125_psc_fifo_init(struct uart_port *port)
7711f48c499SMatteo Facchinetti {
7721f48c499SMatteo Facchinetti 	/* /32 prescaler */
7731f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->mpc52xx_psc_clock_select, 0xdd);
7741f48c499SMatteo Facchinetti 
7751f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE);
7761f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
7771f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txalarm, 1);
7781f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, 0);
7791f48c499SMatteo Facchinetti 
7801f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE);
7811f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE);
7821f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxalarm, 1);
7831f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, 0);
7841f48c499SMatteo Facchinetti 
7851f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, MPC512x_PSC_FIFO_ALARM);
7861f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, MPC512x_PSC_FIFO_ALARM);
7871f48c499SMatteo Facchinetti }
7881f48c499SMatteo Facchinetti 
7891f48c499SMatteo Facchinetti static int mpc5125_psc_raw_rx_rdy(struct uart_port *port)
7901f48c499SMatteo Facchinetti {
7911f48c499SMatteo Facchinetti 	return !(in_be32(&FIFO_5125(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY);
7921f48c499SMatteo Facchinetti }
7931f48c499SMatteo Facchinetti 
7941f48c499SMatteo Facchinetti static int mpc5125_psc_raw_tx_rdy(struct uart_port *port)
7951f48c499SMatteo Facchinetti {
7961f48c499SMatteo Facchinetti 	return !(in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_FULL);
7971f48c499SMatteo Facchinetti }
7981f48c499SMatteo Facchinetti 
7991f48c499SMatteo Facchinetti static int mpc5125_psc_rx_rdy(struct uart_port *port)
8001f48c499SMatteo Facchinetti {
8011f48c499SMatteo Facchinetti 	return in_be32(&FIFO_5125(port)->rxsr) &
8021f48c499SMatteo Facchinetti 	       in_be32(&FIFO_5125(port)->rximr) & MPC512x_PSC_FIFO_ALARM;
8031f48c499SMatteo Facchinetti }
8041f48c499SMatteo Facchinetti 
8051f48c499SMatteo Facchinetti static int mpc5125_psc_tx_rdy(struct uart_port *port)
8061f48c499SMatteo Facchinetti {
8071f48c499SMatteo Facchinetti 	return in_be32(&FIFO_5125(port)->txsr) &
8081f48c499SMatteo Facchinetti 	       in_be32(&FIFO_5125(port)->tximr) & MPC512x_PSC_FIFO_ALARM;
8091f48c499SMatteo Facchinetti }
8101f48c499SMatteo Facchinetti 
8111f48c499SMatteo Facchinetti static int mpc5125_psc_tx_empty(struct uart_port *port)
8121f48c499SMatteo Facchinetti {
8131f48c499SMatteo Facchinetti 	return in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_EMPTY;
8141f48c499SMatteo Facchinetti }
8151f48c499SMatteo Facchinetti 
8161f48c499SMatteo Facchinetti static void mpc5125_psc_stop_rx(struct uart_port *port)
8171f48c499SMatteo Facchinetti {
8181f48c499SMatteo Facchinetti 	unsigned long rx_fifo_imr;
8191f48c499SMatteo Facchinetti 
8201f48c499SMatteo Facchinetti 	rx_fifo_imr = in_be32(&FIFO_5125(port)->rximr);
8211f48c499SMatteo Facchinetti 	rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
8221f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, rx_fifo_imr);
8231f48c499SMatteo Facchinetti }
8241f48c499SMatteo Facchinetti 
8251f48c499SMatteo Facchinetti static void mpc5125_psc_start_tx(struct uart_port *port)
8261f48c499SMatteo Facchinetti {
8271f48c499SMatteo Facchinetti 	unsigned long tx_fifo_imr;
8281f48c499SMatteo Facchinetti 
8291f48c499SMatteo Facchinetti 	tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr);
8301f48c499SMatteo Facchinetti 	tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM;
8311f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr);
8321f48c499SMatteo Facchinetti }
8331f48c499SMatteo Facchinetti 
8341f48c499SMatteo Facchinetti static void mpc5125_psc_stop_tx(struct uart_port *port)
8351f48c499SMatteo Facchinetti {
8361f48c499SMatteo Facchinetti 	unsigned long tx_fifo_imr;
8371f48c499SMatteo Facchinetti 
8381f48c499SMatteo Facchinetti 	tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr);
8391f48c499SMatteo Facchinetti 	tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM;
8401f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr);
8411f48c499SMatteo Facchinetti }
8421f48c499SMatteo Facchinetti 
8431f48c499SMatteo Facchinetti static void mpc5125_psc_rx_clr_irq(struct uart_port *port)
8441f48c499SMatteo Facchinetti {
8451f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rxisr, in_be32(&FIFO_5125(port)->rxisr));
8461f48c499SMatteo Facchinetti }
8471f48c499SMatteo Facchinetti 
8481f48c499SMatteo Facchinetti static void mpc5125_psc_tx_clr_irq(struct uart_port *port)
8491f48c499SMatteo Facchinetti {
8501f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->txisr, in_be32(&FIFO_5125(port)->txisr));
8511f48c499SMatteo Facchinetti }
8521f48c499SMatteo Facchinetti 
8531f48c499SMatteo Facchinetti static void mpc5125_psc_write_char(struct uart_port *port, unsigned char c)
8541f48c499SMatteo Facchinetti {
8551f48c499SMatteo Facchinetti 	out_8(&FIFO_5125(port)->txdata_8, c);
8561f48c499SMatteo Facchinetti }
8571f48c499SMatteo Facchinetti 
8581f48c499SMatteo Facchinetti static unsigned char mpc5125_psc_read_char(struct uart_port *port)
8591f48c499SMatteo Facchinetti {
8601f48c499SMatteo Facchinetti 	return in_8(&FIFO_5125(port)->rxdata_8);
8611f48c499SMatteo Facchinetti }
8621f48c499SMatteo Facchinetti 
8631f48c499SMatteo Facchinetti static void mpc5125_psc_cw_disable_ints(struct uart_port *port)
8641f48c499SMatteo Facchinetti {
8651f48c499SMatteo Facchinetti 	port->read_status_mask =
8661f48c499SMatteo Facchinetti 		in_be32(&FIFO_5125(port)->tximr) << 16 |
8671f48c499SMatteo Facchinetti 		in_be32(&FIFO_5125(port)->rximr);
8681f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr, 0);
8691f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, 0);
8701f48c499SMatteo Facchinetti }
8711f48c499SMatteo Facchinetti 
8721f48c499SMatteo Facchinetti static void mpc5125_psc_cw_restore_ints(struct uart_port *port)
8731f48c499SMatteo Facchinetti {
8741f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->tximr,
8751f48c499SMatteo Facchinetti 		(port->read_status_mask >> 16) & 0x7f);
8761f48c499SMatteo Facchinetti 	out_be32(&FIFO_5125(port)->rximr, port->read_status_mask & 0x7f);
8771f48c499SMatteo Facchinetti }
8781f48c499SMatteo Facchinetti 
8791f48c499SMatteo Facchinetti static inline void mpc5125_set_divisor(struct mpc5125_psc __iomem *psc,
8801f48c499SMatteo Facchinetti 		u8 prescaler, unsigned int divisor)
8811f48c499SMatteo Facchinetti {
8821f48c499SMatteo Facchinetti 	/* select prescaler */
8831f48c499SMatteo Facchinetti 	out_8(&psc->mpc52xx_psc_clock_select, prescaler);
8841f48c499SMatteo Facchinetti 	out_8(&psc->ctur, divisor >> 8);
8851f48c499SMatteo Facchinetti 	out_8(&psc->ctlr, divisor & 0xff);
8861f48c499SMatteo Facchinetti }
8871f48c499SMatteo Facchinetti 
8881f48c499SMatteo Facchinetti static unsigned int mpc5125_psc_set_baudrate(struct uart_port *port,
8891f48c499SMatteo Facchinetti 					     struct ktermios *new,
8901f48c499SMatteo Facchinetti 					     struct ktermios *old)
8911f48c499SMatteo Facchinetti {
8921f48c499SMatteo Facchinetti 	unsigned int baud;
8931f48c499SMatteo Facchinetti 	unsigned int divisor;
8941f48c499SMatteo Facchinetti 
8951f48c499SMatteo Facchinetti 	/*
8961f48c499SMatteo Facchinetti 	 * Calculate with a /16 prescaler here.
8971f48c499SMatteo Facchinetti 	 */
8981f48c499SMatteo Facchinetti 
8991f48c499SMatteo Facchinetti 	/* uartclk contains the ips freq */
9001f48c499SMatteo Facchinetti 	baud = uart_get_baud_rate(port, new, old,
9011f48c499SMatteo Facchinetti 				  port->uartclk / (16 * 0xffff) + 1,
9021f48c499SMatteo Facchinetti 				  port->uartclk / 16);
9031f48c499SMatteo Facchinetti 	divisor = (port->uartclk + 8 * baud) / (16 * baud);
9041f48c499SMatteo Facchinetti 
9051f48c499SMatteo Facchinetti 	/* enable the /16 prescaler and set the divisor */
9061f48c499SMatteo Facchinetti 	mpc5125_set_divisor(PSC_5125(port), 0xdd, divisor);
9071f48c499SMatteo Facchinetti 	return baud;
9081f48c499SMatteo Facchinetti }
9091f48c499SMatteo Facchinetti 
9101f48c499SMatteo Facchinetti /*
9111f48c499SMatteo Facchinetti  * MPC5125 have compatible PSC FIFO Controller.
9121f48c499SMatteo Facchinetti  * Special init not needed.
9131f48c499SMatteo Facchinetti  */
9141f48c499SMatteo Facchinetti static u16 mpc5125_psc_get_status(struct uart_port *port)
9151f48c499SMatteo Facchinetti {
9161f48c499SMatteo Facchinetti 	return in_be16(&PSC_5125(port)->mpc52xx_psc_status);
9171f48c499SMatteo Facchinetti }
9181f48c499SMatteo Facchinetti 
9191f48c499SMatteo Facchinetti static u8 mpc5125_psc_get_ipcr(struct uart_port *port)
9201f48c499SMatteo Facchinetti {
9211f48c499SMatteo Facchinetti 	return in_8(&PSC_5125(port)->mpc52xx_psc_ipcr);
9221f48c499SMatteo Facchinetti }
9231f48c499SMatteo Facchinetti 
9241f48c499SMatteo Facchinetti static void mpc5125_psc_command(struct uart_port *port, u8 cmd)
9251f48c499SMatteo Facchinetti {
9261f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->command, cmd);
9271f48c499SMatteo Facchinetti }
9281f48c499SMatteo Facchinetti 
9291f48c499SMatteo Facchinetti static void mpc5125_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2)
9301f48c499SMatteo Facchinetti {
9311f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->mr1, mr1);
9321f48c499SMatteo Facchinetti 	out_8(&PSC_5125(port)->mr2, mr2);
9331f48c499SMatteo Facchinetti }
9341f48c499SMatteo Facchinetti 
9351f48c499SMatteo Facchinetti static void mpc5125_psc_set_rts(struct uart_port *port, int state)
9361f48c499SMatteo Facchinetti {
9371f48c499SMatteo Facchinetti 	if (state & TIOCM_RTS)
9381f48c499SMatteo Facchinetti 		out_8(&PSC_5125(port)->op1, MPC52xx_PSC_OP_RTS);
9391f48c499SMatteo Facchinetti 	else
9401f48c499SMatteo Facchinetti 		out_8(&PSC_5125(port)->op0, MPC52xx_PSC_OP_RTS);
9411f48c499SMatteo Facchinetti }
9421f48c499SMatteo Facchinetti 
9431f48c499SMatteo Facchinetti static void mpc5125_psc_enable_ms(struct uart_port *port)
9441f48c499SMatteo Facchinetti {
9451f48c499SMatteo Facchinetti 	struct mpc5125_psc __iomem *psc = PSC_5125(port);
9461f48c499SMatteo Facchinetti 
9471f48c499SMatteo Facchinetti 	/* clear D_*-bits by reading them */
9481f48c499SMatteo Facchinetti 	in_8(&psc->mpc52xx_psc_ipcr);
9491f48c499SMatteo Facchinetti 	/* enable CTS and DCD as IPC interrupts */
9501f48c499SMatteo Facchinetti 	out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
9511f48c499SMatteo Facchinetti 
9521f48c499SMatteo Facchinetti 	port->read_status_mask |= MPC52xx_PSC_IMR_IPC;
9531f48c499SMatteo Facchinetti 	out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
9541f48c499SMatteo Facchinetti }
9551f48c499SMatteo Facchinetti 
9561f48c499SMatteo Facchinetti static void mpc5125_psc_set_sicr(struct uart_port *port, u32 val)
9571f48c499SMatteo Facchinetti {
9581f48c499SMatteo Facchinetti 	out_be32(&PSC_5125(port)->sicr, val);
9591f48c499SMatteo Facchinetti }
9601f48c499SMatteo Facchinetti 
9611f48c499SMatteo Facchinetti static void mpc5125_psc_set_imr(struct uart_port *port, u16 val)
9621f48c499SMatteo Facchinetti {
9631f48c499SMatteo Facchinetti 	out_be16(&PSC_5125(port)->mpc52xx_psc_imr, val);
9641f48c499SMatteo Facchinetti }
9651f48c499SMatteo Facchinetti 
9661f48c499SMatteo Facchinetti static u8 mpc5125_psc_get_mr1(struct uart_port *port)
9671f48c499SMatteo Facchinetti {
9681f48c499SMatteo Facchinetti 	return in_8(&PSC_5125(port)->mr1);
9691f48c499SMatteo Facchinetti }
9701f48c499SMatteo Facchinetti 
9711f48c499SMatteo Facchinetti static struct psc_ops mpc5125_psc_ops = {
9721f48c499SMatteo Facchinetti 	.fifo_init = mpc5125_psc_fifo_init,
9731f48c499SMatteo Facchinetti 	.raw_rx_rdy = mpc5125_psc_raw_rx_rdy,
9741f48c499SMatteo Facchinetti 	.raw_tx_rdy = mpc5125_psc_raw_tx_rdy,
9751f48c499SMatteo Facchinetti 	.rx_rdy = mpc5125_psc_rx_rdy,
9761f48c499SMatteo Facchinetti 	.tx_rdy = mpc5125_psc_tx_rdy,
9771f48c499SMatteo Facchinetti 	.tx_empty = mpc5125_psc_tx_empty,
9781f48c499SMatteo Facchinetti 	.stop_rx = mpc5125_psc_stop_rx,
9791f48c499SMatteo Facchinetti 	.start_tx = mpc5125_psc_start_tx,
9801f48c499SMatteo Facchinetti 	.stop_tx = mpc5125_psc_stop_tx,
9811f48c499SMatteo Facchinetti 	.rx_clr_irq = mpc5125_psc_rx_clr_irq,
9821f48c499SMatteo Facchinetti 	.tx_clr_irq = mpc5125_psc_tx_clr_irq,
9831f48c499SMatteo Facchinetti 	.write_char = mpc5125_psc_write_char,
9841f48c499SMatteo Facchinetti 	.read_char = mpc5125_psc_read_char,
9851f48c499SMatteo Facchinetti 	.cw_disable_ints = mpc5125_psc_cw_disable_ints,
9861f48c499SMatteo Facchinetti 	.cw_restore_ints = mpc5125_psc_cw_restore_ints,
9871f48c499SMatteo Facchinetti 	.set_baudrate = mpc5125_psc_set_baudrate,
9882d30ccacSGerhard Sittig 	.clock_alloc = mpc512x_psc_alloc_clock,
9892d30ccacSGerhard Sittig 	.clock_relse = mpc512x_psc_relse_clock,
9902d30ccacSGerhard Sittig 	.clock = mpc512x_psc_endis_clock,
9911f48c499SMatteo Facchinetti 	.fifoc_init = mpc512x_psc_fifoc_init,
9921f48c499SMatteo Facchinetti 	.fifoc_uninit = mpc512x_psc_fifoc_uninit,
9931f48c499SMatteo Facchinetti 	.get_irq = mpc512x_psc_get_irq,
9941f48c499SMatteo Facchinetti 	.handle_irq = mpc512x_psc_handle_irq,
9951f48c499SMatteo Facchinetti 	.get_status = mpc5125_psc_get_status,
9961f48c499SMatteo Facchinetti 	.get_ipcr = mpc5125_psc_get_ipcr,
9971f48c499SMatteo Facchinetti 	.command = mpc5125_psc_command,
9981f48c499SMatteo Facchinetti 	.set_mode = mpc5125_psc_set_mode,
9991f48c499SMatteo Facchinetti 	.set_rts = mpc5125_psc_set_rts,
10001f48c499SMatteo Facchinetti 	.enable_ms = mpc5125_psc_enable_ms,
10011f48c499SMatteo Facchinetti 	.set_sicr = mpc5125_psc_set_sicr,
10021f48c499SMatteo Facchinetti 	.set_imr = mpc5125_psc_set_imr,
10031f48c499SMatteo Facchinetti 	.get_mr1 = mpc5125_psc_get_mr1,
10041f48c499SMatteo Facchinetti };
1005ab4382d2SGreg Kroah-Hartman 
1006ab4382d2SGreg Kroah-Hartman static struct psc_ops mpc512x_psc_ops = {
1007ab4382d2SGreg Kroah-Hartman 	.fifo_init = mpc512x_psc_fifo_init,
1008ab4382d2SGreg Kroah-Hartman 	.raw_rx_rdy = mpc512x_psc_raw_rx_rdy,
1009ab4382d2SGreg Kroah-Hartman 	.raw_tx_rdy = mpc512x_psc_raw_tx_rdy,
1010ab4382d2SGreg Kroah-Hartman 	.rx_rdy = mpc512x_psc_rx_rdy,
1011ab4382d2SGreg Kroah-Hartman 	.tx_rdy = mpc512x_psc_tx_rdy,
1012ab4382d2SGreg Kroah-Hartman 	.tx_empty = mpc512x_psc_tx_empty,
1013ab4382d2SGreg Kroah-Hartman 	.stop_rx = mpc512x_psc_stop_rx,
1014ab4382d2SGreg Kroah-Hartman 	.start_tx = mpc512x_psc_start_tx,
1015ab4382d2SGreg Kroah-Hartman 	.stop_tx = mpc512x_psc_stop_tx,
1016ab4382d2SGreg Kroah-Hartman 	.rx_clr_irq = mpc512x_psc_rx_clr_irq,
1017ab4382d2SGreg Kroah-Hartman 	.tx_clr_irq = mpc512x_psc_tx_clr_irq,
1018ab4382d2SGreg Kroah-Hartman 	.write_char = mpc512x_psc_write_char,
1019ab4382d2SGreg Kroah-Hartman 	.read_char = mpc512x_psc_read_char,
1020ab4382d2SGreg Kroah-Hartman 	.cw_disable_ints = mpc512x_psc_cw_disable_ints,
1021ab4382d2SGreg Kroah-Hartman 	.cw_restore_ints = mpc512x_psc_cw_restore_ints,
1022ab4382d2SGreg Kroah-Hartman 	.set_baudrate = mpc512x_psc_set_baudrate,
10232d30ccacSGerhard Sittig 	.clock_alloc = mpc512x_psc_alloc_clock,
10242d30ccacSGerhard Sittig 	.clock_relse = mpc512x_psc_relse_clock,
10252d30ccacSGerhard Sittig 	.clock = mpc512x_psc_endis_clock,
1026ab4382d2SGreg Kroah-Hartman 	.fifoc_init = mpc512x_psc_fifoc_init,
1027ab4382d2SGreg Kroah-Hartman 	.fifoc_uninit = mpc512x_psc_fifoc_uninit,
1028ab4382d2SGreg Kroah-Hartman 	.get_irq = mpc512x_psc_get_irq,
1029ab4382d2SGreg Kroah-Hartman 	.handle_irq = mpc512x_psc_handle_irq,
10302574b27eSMatteo Facchinetti 	.get_status = mpc52xx_psc_get_status,
10312574b27eSMatteo Facchinetti 	.get_ipcr = mpc52xx_psc_get_ipcr,
10322574b27eSMatteo Facchinetti 	.command = mpc52xx_psc_command,
10332574b27eSMatteo Facchinetti 	.set_mode = mpc52xx_psc_set_mode,
10342574b27eSMatteo Facchinetti 	.set_rts = mpc52xx_psc_set_rts,
10352574b27eSMatteo Facchinetti 	.enable_ms = mpc52xx_psc_enable_ms,
10362574b27eSMatteo Facchinetti 	.set_sicr = mpc52xx_psc_set_sicr,
10372574b27eSMatteo Facchinetti 	.set_imr = mpc52xx_psc_set_imr,
10382574b27eSMatteo Facchinetti 	.get_mr1 = mpc52xx_psc_get_mr1,
1039ab4382d2SGreg Kroah-Hartman };
10402574b27eSMatteo Facchinetti #endif /* CONFIG_PPC_MPC512x */
10412574b27eSMatteo Facchinetti 
1042ab4382d2SGreg Kroah-Hartman 
104376d28e44SUwe Kleine-König static const struct psc_ops *psc_ops;
1044ab4382d2SGreg Kroah-Hartman 
1045ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1046ab4382d2SGreg Kroah-Hartman /* UART operations                                                          */
1047ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1048ab4382d2SGreg Kroah-Hartman 
1049ab4382d2SGreg Kroah-Hartman static unsigned int
1050ab4382d2SGreg Kroah-Hartman mpc52xx_uart_tx_empty(struct uart_port *port)
1051ab4382d2SGreg Kroah-Hartman {
1052ab4382d2SGreg Kroah-Hartman 	return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
1053ab4382d2SGreg Kroah-Hartman }
1054ab4382d2SGreg Kroah-Hartman 
1055ab4382d2SGreg Kroah-Hartman static void
1056ab4382d2SGreg Kroah-Hartman mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
1057ab4382d2SGreg Kroah-Hartman {
10582574b27eSMatteo Facchinetti 	psc_ops->set_rts(port, mctrl & TIOCM_RTS);
1059ab4382d2SGreg Kroah-Hartman }
1060ab4382d2SGreg Kroah-Hartman 
1061ab4382d2SGreg Kroah-Hartman static unsigned int
1062ab4382d2SGreg Kroah-Hartman mpc52xx_uart_get_mctrl(struct uart_port *port)
1063ab4382d2SGreg Kroah-Hartman {
1064ab4382d2SGreg Kroah-Hartman 	unsigned int ret = TIOCM_DSR;
10652574b27eSMatteo Facchinetti 	u8 status = psc_ops->get_ipcr(port);
1066ab4382d2SGreg Kroah-Hartman 
1067ab4382d2SGreg Kroah-Hartman 	if (!(status & MPC52xx_PSC_CTS))
1068ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_CTS;
1069ab4382d2SGreg Kroah-Hartman 	if (!(status & MPC52xx_PSC_DCD))
1070ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_CAR;
1071ab4382d2SGreg Kroah-Hartman 
1072ab4382d2SGreg Kroah-Hartman 	return ret;
1073ab4382d2SGreg Kroah-Hartman }
1074ab4382d2SGreg Kroah-Hartman 
1075ab4382d2SGreg Kroah-Hartman static void
1076ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_tx(struct uart_port *port)
1077ab4382d2SGreg Kroah-Hartman {
1078ab4382d2SGreg Kroah-Hartman 	/* port->lock taken by caller */
1079ab4382d2SGreg Kroah-Hartman 	psc_ops->stop_tx(port);
1080ab4382d2SGreg Kroah-Hartman }
1081ab4382d2SGreg Kroah-Hartman 
1082ab4382d2SGreg Kroah-Hartman static void
1083ab4382d2SGreg Kroah-Hartman mpc52xx_uart_start_tx(struct uart_port *port)
1084ab4382d2SGreg Kroah-Hartman {
1085ab4382d2SGreg Kroah-Hartman 	/* port->lock taken by caller */
1086ab4382d2SGreg Kroah-Hartman 	psc_ops->start_tx(port);
1087ab4382d2SGreg Kroah-Hartman }
1088ab4382d2SGreg Kroah-Hartman 
1089ab4382d2SGreg Kroah-Hartman static void
1090ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_rx(struct uart_port *port)
1091ab4382d2SGreg Kroah-Hartman {
1092ab4382d2SGreg Kroah-Hartman 	/* port->lock taken by caller */
1093ab4382d2SGreg Kroah-Hartman 	psc_ops->stop_rx(port);
1094ab4382d2SGreg Kroah-Hartman }
1095ab4382d2SGreg Kroah-Hartman 
1096ab4382d2SGreg Kroah-Hartman static void
1097ab4382d2SGreg Kroah-Hartman mpc52xx_uart_enable_ms(struct uart_port *port)
1098ab4382d2SGreg Kroah-Hartman {
10992574b27eSMatteo Facchinetti 	psc_ops->enable_ms(port);
1100ab4382d2SGreg Kroah-Hartman }
1101ab4382d2SGreg Kroah-Hartman 
1102ab4382d2SGreg Kroah-Hartman static void
1103ab4382d2SGreg Kroah-Hartman mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
1104ab4382d2SGreg Kroah-Hartman {
1105ab4382d2SGreg Kroah-Hartman 	unsigned long flags;
1106ab4382d2SGreg Kroah-Hartman 	spin_lock_irqsave(&port->lock, flags);
1107ab4382d2SGreg Kroah-Hartman 
1108ab4382d2SGreg Kroah-Hartman 	if (ctl == -1)
11092574b27eSMatteo Facchinetti 		psc_ops->command(port, MPC52xx_PSC_START_BRK);
1110ab4382d2SGreg Kroah-Hartman 	else
11112574b27eSMatteo Facchinetti 		psc_ops->command(port, MPC52xx_PSC_STOP_BRK);
1112ab4382d2SGreg Kroah-Hartman 
1113ab4382d2SGreg Kroah-Hartman 	spin_unlock_irqrestore(&port->lock, flags);
1114ab4382d2SGreg Kroah-Hartman }
1115ab4382d2SGreg Kroah-Hartman 
1116ab4382d2SGreg Kroah-Hartman static int
1117ab4382d2SGreg Kroah-Hartman mpc52xx_uart_startup(struct uart_port *port)
1118ab4382d2SGreg Kroah-Hartman {
1119ab4382d2SGreg Kroah-Hartman 	int ret;
1120ab4382d2SGreg Kroah-Hartman 
1121ab4382d2SGreg Kroah-Hartman 	if (psc_ops->clock) {
1122ab4382d2SGreg Kroah-Hartman 		ret = psc_ops->clock(port, 1);
1123ab4382d2SGreg Kroah-Hartman 		if (ret)
1124ab4382d2SGreg Kroah-Hartman 			return ret;
1125ab4382d2SGreg Kroah-Hartman 	}
1126ab4382d2SGreg Kroah-Hartman 
1127ab4382d2SGreg Kroah-Hartman 	/* Request IRQ */
1128ab4382d2SGreg Kroah-Hartman 	ret = request_irq(port->irq, mpc52xx_uart_int,
1129ab4382d2SGreg Kroah-Hartman 			  port->irqflags, "mpc52xx_psc_uart", port);
1130ab4382d2SGreg Kroah-Hartman 	if (ret)
1131ab4382d2SGreg Kroah-Hartman 		return ret;
1132ab4382d2SGreg Kroah-Hartman 
1133ab4382d2SGreg Kroah-Hartman 	/* Reset/activate the port, clear and enable interrupts */
11342574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_RX);
11352574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_TX);
1136ab4382d2SGreg Kroah-Hartman 
11372574b27eSMatteo Facchinetti 	psc_ops->set_sicr(port, 0);	/* UART mode DCD ignored */
1138ab4382d2SGreg Kroah-Hartman 
1139ab4382d2SGreg Kroah-Hartman 	psc_ops->fifo_init(port);
1140ab4382d2SGreg Kroah-Hartman 
11412574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
11422574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
1143ab4382d2SGreg Kroah-Hartman 
1144ab4382d2SGreg Kroah-Hartman 	return 0;
1145ab4382d2SGreg Kroah-Hartman }
1146ab4382d2SGreg Kroah-Hartman 
1147ab4382d2SGreg Kroah-Hartman static void
1148ab4382d2SGreg Kroah-Hartman mpc52xx_uart_shutdown(struct uart_port *port)
1149ab4382d2SGreg Kroah-Hartman {
1150ab4382d2SGreg Kroah-Hartman 	/* Shut down the port.  Leave TX active if on a console port */
11512574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_RX);
1152ab4382d2SGreg Kroah-Hartman 	if (!uart_console(port))
11532574b27eSMatteo Facchinetti 		psc_ops->command(port, MPC52xx_PSC_RST_TX);
1154ab4382d2SGreg Kroah-Hartman 
1155ab4382d2SGreg Kroah-Hartman 	port->read_status_mask = 0;
11562574b27eSMatteo Facchinetti 	psc_ops->set_imr(port, port->read_status_mask);
1157ab4382d2SGreg Kroah-Hartman 
1158ab4382d2SGreg Kroah-Hartman 	if (psc_ops->clock)
1159ab4382d2SGreg Kroah-Hartman 		psc_ops->clock(port, 0);
1160ab4382d2SGreg Kroah-Hartman 
11618a29dfb8SMatteo Facchinetti 	/* Disable interrupt */
11628a29dfb8SMatteo Facchinetti 	psc_ops->cw_disable_ints(port);
11638a29dfb8SMatteo Facchinetti 
1164ab4382d2SGreg Kroah-Hartman 	/* Release interrupt */
1165ab4382d2SGreg Kroah-Hartman 	free_irq(port->irq, port);
1166ab4382d2SGreg Kroah-Hartman }
1167ab4382d2SGreg Kroah-Hartman 
1168ab4382d2SGreg Kroah-Hartman static void
1169ab4382d2SGreg Kroah-Hartman mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
1170ab4382d2SGreg Kroah-Hartman 			 struct ktermios *old)
1171ab4382d2SGreg Kroah-Hartman {
1172ab4382d2SGreg Kroah-Hartman 	unsigned long flags;
1173ab4382d2SGreg Kroah-Hartman 	unsigned char mr1, mr2;
1174ab4382d2SGreg Kroah-Hartman 	unsigned int j;
1175ab4382d2SGreg Kroah-Hartman 	unsigned int baud;
1176ab4382d2SGreg Kroah-Hartman 
1177ab4382d2SGreg Kroah-Hartman 	/* Prepare what we're gonna write */
1178ab4382d2SGreg Kroah-Hartman 	mr1 = 0;
1179ab4382d2SGreg Kroah-Hartman 
1180ab4382d2SGreg Kroah-Hartman 	switch (new->c_cflag & CSIZE) {
1181ab4382d2SGreg Kroah-Hartman 	case CS5:	mr1 |= MPC52xx_PSC_MODE_5_BITS;
1182ab4382d2SGreg Kroah-Hartman 		break;
1183ab4382d2SGreg Kroah-Hartman 	case CS6:	mr1 |= MPC52xx_PSC_MODE_6_BITS;
1184ab4382d2SGreg Kroah-Hartman 		break;
1185ab4382d2SGreg Kroah-Hartman 	case CS7:	mr1 |= MPC52xx_PSC_MODE_7_BITS;
1186ab4382d2SGreg Kroah-Hartman 		break;
1187ab4382d2SGreg Kroah-Hartman 	case CS8:
1188ab4382d2SGreg Kroah-Hartman 	default:	mr1 |= MPC52xx_PSC_MODE_8_BITS;
1189ab4382d2SGreg Kroah-Hartman 	}
1190ab4382d2SGreg Kroah-Hartman 
1191ab4382d2SGreg Kroah-Hartman 	if (new->c_cflag & PARENB) {
1192d3dec96eSWolfram Sang 		if (new->c_cflag & CMSPAR)
1193d3dec96eSWolfram Sang 			mr1 |= MPC52xx_PSC_MODE_PARFORCE;
1194d3dec96eSWolfram Sang 
1195d3dec96eSWolfram Sang 		/* With CMSPAR, PARODD also means high parity (same as termios) */
1196ab4382d2SGreg Kroah-Hartman 		mr1 |= (new->c_cflag & PARODD) ?
1197ab4382d2SGreg Kroah-Hartman 			MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
1198d3dec96eSWolfram Sang 	} else {
1199ab4382d2SGreg Kroah-Hartman 		mr1 |= MPC52xx_PSC_MODE_PARNONE;
1200d3dec96eSWolfram Sang 	}
1201ab4382d2SGreg Kroah-Hartman 
1202ab4382d2SGreg Kroah-Hartman 	mr2 = 0;
1203ab4382d2SGreg Kroah-Hartman 
1204ab4382d2SGreg Kroah-Hartman 	if (new->c_cflag & CSTOPB)
1205ab4382d2SGreg Kroah-Hartman 		mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
1206ab4382d2SGreg Kroah-Hartman 	else
1207ab4382d2SGreg Kroah-Hartman 		mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
1208ab4382d2SGreg Kroah-Hartman 			MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
1209ab4382d2SGreg Kroah-Hartman 			MPC52xx_PSC_MODE_ONE_STOP;
1210ab4382d2SGreg Kroah-Hartman 
1211ab4382d2SGreg Kroah-Hartman 	if (new->c_cflag & CRTSCTS) {
1212ab4382d2SGreg Kroah-Hartman 		mr1 |= MPC52xx_PSC_MODE_RXRTS;
1213ab4382d2SGreg Kroah-Hartman 		mr2 |= MPC52xx_PSC_MODE_TXCTS;
1214ab4382d2SGreg Kroah-Hartman 	}
1215ab4382d2SGreg Kroah-Hartman 
1216ab4382d2SGreg Kroah-Hartman 	/* Get the lock */
1217ab4382d2SGreg Kroah-Hartman 	spin_lock_irqsave(&port->lock, flags);
1218ab4382d2SGreg Kroah-Hartman 
1219ab4382d2SGreg Kroah-Hartman 	/* Do our best to flush TX & RX, so we don't lose anything */
1220ab4382d2SGreg Kroah-Hartman 	/* But we don't wait indefinitely ! */
1221ab4382d2SGreg Kroah-Hartman 	j = 5000000;	/* Maximum wait */
1222ab4382d2SGreg Kroah-Hartman 	/* FIXME Can't receive chars since set_termios might be called at early
1223ab4382d2SGreg Kroah-Hartman 	 * boot for the console, all stuff is not yet ready to receive at that
1224ab4382d2SGreg Kroah-Hartman 	 * time and that just makes the kernel oops */
1225ab4382d2SGreg Kroah-Hartman 	/* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
1226ab4382d2SGreg Kroah-Hartman 	while (!mpc52xx_uart_tx_empty(port) && --j)
1227ab4382d2SGreg Kroah-Hartman 		udelay(1);
1228ab4382d2SGreg Kroah-Hartman 
1229ab4382d2SGreg Kroah-Hartman 	if (!j)
1230ab4382d2SGreg Kroah-Hartman 		printk(KERN_ERR "mpc52xx_uart.c: "
1231ab4382d2SGreg Kroah-Hartman 			"Unable to flush RX & TX fifos in-time in set_termios."
1232ab4382d2SGreg Kroah-Hartman 			"Some chars may have been lost.\n");
1233ab4382d2SGreg Kroah-Hartman 
1234ab4382d2SGreg Kroah-Hartman 	/* Reset the TX & RX */
12352574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_RX);
12362574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RST_TX);
1237ab4382d2SGreg Kroah-Hartman 
1238ab4382d2SGreg Kroah-Hartman 	/* Send new mode settings */
12392574b27eSMatteo Facchinetti 	psc_ops->set_mode(port, mr1, mr2);
1240ab4382d2SGreg Kroah-Hartman 	baud = psc_ops->set_baudrate(port, new, old);
1241ab4382d2SGreg Kroah-Hartman 
1242ab4382d2SGreg Kroah-Hartman 	/* Update the per-port timeout */
1243ab4382d2SGreg Kroah-Hartman 	uart_update_timeout(port, new->c_cflag, baud);
1244ab4382d2SGreg Kroah-Hartman 
1245ab4382d2SGreg Kroah-Hartman 	if (UART_ENABLE_MS(port, new->c_cflag))
1246ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_enable_ms(port);
1247ab4382d2SGreg Kroah-Hartman 
1248ab4382d2SGreg Kroah-Hartman 	/* Reenable TX & RX */
12492574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_TX_ENABLE);
12502574b27eSMatteo Facchinetti 	psc_ops->command(port, MPC52xx_PSC_RX_ENABLE);
1251ab4382d2SGreg Kroah-Hartman 
1252ab4382d2SGreg Kroah-Hartman 	/* We're all set, release the lock */
1253ab4382d2SGreg Kroah-Hartman 	spin_unlock_irqrestore(&port->lock, flags);
1254ab4382d2SGreg Kroah-Hartman }
1255ab4382d2SGreg Kroah-Hartman 
1256ab4382d2SGreg Kroah-Hartman static const char *
1257ab4382d2SGreg Kroah-Hartman mpc52xx_uart_type(struct uart_port *port)
1258ab4382d2SGreg Kroah-Hartman {
1259ab4382d2SGreg Kroah-Hartman 	/*
1260ab4382d2SGreg Kroah-Hartman 	 * We keep using PORT_MPC52xx for historic reasons although it applies
1261ab4382d2SGreg Kroah-Hartman 	 * for MPC512x, too, but print "MPC5xxx" to not irritate users
1262ab4382d2SGreg Kroah-Hartman 	 */
1263ab4382d2SGreg Kroah-Hartman 	return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL;
1264ab4382d2SGreg Kroah-Hartman }
1265ab4382d2SGreg Kroah-Hartman 
1266ab4382d2SGreg Kroah-Hartman static void
1267ab4382d2SGreg Kroah-Hartman mpc52xx_uart_release_port(struct uart_port *port)
1268ab4382d2SGreg Kroah-Hartman {
12692d30ccacSGerhard Sittig 	if (psc_ops->clock_relse)
12702d30ccacSGerhard Sittig 		psc_ops->clock_relse(port);
12712d30ccacSGerhard Sittig 
1272ab4382d2SGreg Kroah-Hartman 	/* remapped by us ? */
1273ab4382d2SGreg Kroah-Hartman 	if (port->flags & UPF_IOREMAP) {
1274ab4382d2SGreg Kroah-Hartman 		iounmap(port->membase);
1275ab4382d2SGreg Kroah-Hartman 		port->membase = NULL;
1276ab4382d2SGreg Kroah-Hartman 	}
1277ab4382d2SGreg Kroah-Hartman 
1278ab4382d2SGreg Kroah-Hartman 	release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
1279ab4382d2SGreg Kroah-Hartman }
1280ab4382d2SGreg Kroah-Hartman 
1281ab4382d2SGreg Kroah-Hartman static int
1282ab4382d2SGreg Kroah-Hartman mpc52xx_uart_request_port(struct uart_port *port)
1283ab4382d2SGreg Kroah-Hartman {
1284ab4382d2SGreg Kroah-Hartman 	int err;
1285ab4382d2SGreg Kroah-Hartman 
1286ab4382d2SGreg Kroah-Hartman 	if (port->flags & UPF_IOREMAP) /* Need to remap ? */
1287ab4382d2SGreg Kroah-Hartman 		port->membase = ioremap(port->mapbase,
1288ab4382d2SGreg Kroah-Hartman 					sizeof(struct mpc52xx_psc));
1289ab4382d2SGreg Kroah-Hartman 
1290ab4382d2SGreg Kroah-Hartman 	if (!port->membase)
1291ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1292ab4382d2SGreg Kroah-Hartman 
1293ab4382d2SGreg Kroah-Hartman 	err = request_mem_region(port->mapbase, sizeof(struct mpc52xx_psc),
1294ab4382d2SGreg Kroah-Hartman 			"mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
1295ab4382d2SGreg Kroah-Hartman 
12962d30ccacSGerhard Sittig 	if (err)
12972d30ccacSGerhard Sittig 		goto out_membase;
12982d30ccacSGerhard Sittig 
12992d30ccacSGerhard Sittig 	if (psc_ops->clock_alloc) {
13002d30ccacSGerhard Sittig 		err = psc_ops->clock_alloc(port);
13012d30ccacSGerhard Sittig 		if (err)
13022d30ccacSGerhard Sittig 			goto out_mapregion;
13032d30ccacSGerhard Sittig 	}
13042d30ccacSGerhard Sittig 
13052d30ccacSGerhard Sittig 	return 0;
13062d30ccacSGerhard Sittig 
13072d30ccacSGerhard Sittig out_mapregion:
13082d30ccacSGerhard Sittig 	release_mem_region(port->mapbase, sizeof(struct mpc52xx_psc));
13092d30ccacSGerhard Sittig out_membase:
13102d30ccacSGerhard Sittig 	if (port->flags & UPF_IOREMAP) {
1311ab4382d2SGreg Kroah-Hartman 		iounmap(port->membase);
1312ab4382d2SGreg Kroah-Hartman 		port->membase = NULL;
1313ab4382d2SGreg Kroah-Hartman 	}
1314ab4382d2SGreg Kroah-Hartman 	return err;
1315ab4382d2SGreg Kroah-Hartman }
1316ab4382d2SGreg Kroah-Hartman 
1317ab4382d2SGreg Kroah-Hartman static void
1318ab4382d2SGreg Kroah-Hartman mpc52xx_uart_config_port(struct uart_port *port, int flags)
1319ab4382d2SGreg Kroah-Hartman {
1320ab4382d2SGreg Kroah-Hartman 	if ((flags & UART_CONFIG_TYPE)
1321ab4382d2SGreg Kroah-Hartman 		&& (mpc52xx_uart_request_port(port) == 0))
1322ab4382d2SGreg Kroah-Hartman 		port->type = PORT_MPC52xx;
1323ab4382d2SGreg Kroah-Hartman }
1324ab4382d2SGreg Kroah-Hartman 
1325ab4382d2SGreg Kroah-Hartman static int
1326ab4382d2SGreg Kroah-Hartman mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
1327ab4382d2SGreg Kroah-Hartman {
1328ab4382d2SGreg Kroah-Hartman 	if (ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx)
1329ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1330ab4382d2SGreg Kroah-Hartman 
1331ab4382d2SGreg Kroah-Hartman 	if ((ser->irq != port->irq) ||
1332ab4382d2SGreg Kroah-Hartman 	    (ser->io_type != UPIO_MEM) ||
1333ab4382d2SGreg Kroah-Hartman 	    (ser->baud_base != port->uartclk)  ||
1334ab4382d2SGreg Kroah-Hartman 	    (ser->iomem_base != (void *)port->mapbase) ||
1335ab4382d2SGreg Kroah-Hartman 	    (ser->hub6 != 0))
1336ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1337ab4382d2SGreg Kroah-Hartman 
1338ab4382d2SGreg Kroah-Hartman 	return 0;
1339ab4382d2SGreg Kroah-Hartman }
1340ab4382d2SGreg Kroah-Hartman 
1341ab4382d2SGreg Kroah-Hartman 
1342ab4382d2SGreg Kroah-Hartman static struct uart_ops mpc52xx_uart_ops = {
1343ab4382d2SGreg Kroah-Hartman 	.tx_empty	= mpc52xx_uart_tx_empty,
1344ab4382d2SGreg Kroah-Hartman 	.set_mctrl	= mpc52xx_uart_set_mctrl,
1345ab4382d2SGreg Kroah-Hartman 	.get_mctrl	= mpc52xx_uart_get_mctrl,
1346ab4382d2SGreg Kroah-Hartman 	.stop_tx	= mpc52xx_uart_stop_tx,
1347ab4382d2SGreg Kroah-Hartman 	.start_tx	= mpc52xx_uart_start_tx,
1348ab4382d2SGreg Kroah-Hartman 	.stop_rx	= mpc52xx_uart_stop_rx,
1349ab4382d2SGreg Kroah-Hartman 	.enable_ms	= mpc52xx_uart_enable_ms,
1350ab4382d2SGreg Kroah-Hartman 	.break_ctl	= mpc52xx_uart_break_ctl,
1351ab4382d2SGreg Kroah-Hartman 	.startup	= mpc52xx_uart_startup,
1352ab4382d2SGreg Kroah-Hartman 	.shutdown	= mpc52xx_uart_shutdown,
1353ab4382d2SGreg Kroah-Hartman 	.set_termios	= mpc52xx_uart_set_termios,
1354ab4382d2SGreg Kroah-Hartman /*	.pm		= mpc52xx_uart_pm,		Not supported yet */
1355ab4382d2SGreg Kroah-Hartman 	.type		= mpc52xx_uart_type,
1356ab4382d2SGreg Kroah-Hartman 	.release_port	= mpc52xx_uart_release_port,
1357ab4382d2SGreg Kroah-Hartman 	.request_port	= mpc52xx_uart_request_port,
1358ab4382d2SGreg Kroah-Hartman 	.config_port	= mpc52xx_uart_config_port,
1359ab4382d2SGreg Kroah-Hartman 	.verify_port	= mpc52xx_uart_verify_port
1360ab4382d2SGreg Kroah-Hartman };
1361ab4382d2SGreg Kroah-Hartman 
1362ab4382d2SGreg Kroah-Hartman 
1363ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1364ab4382d2SGreg Kroah-Hartman /* Interrupt handling                                                       */
1365ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1366ab4382d2SGreg Kroah-Hartman 
1367ab4382d2SGreg Kroah-Hartman static inline int
1368ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int_rx_chars(struct uart_port *port)
1369ab4382d2SGreg Kroah-Hartman {
137092a19f9cSJiri Slaby 	struct tty_port *tport = &port->state->port;
1371ab4382d2SGreg Kroah-Hartman 	unsigned char ch, flag;
1372ab4382d2SGreg Kroah-Hartman 	unsigned short status;
1373ab4382d2SGreg Kroah-Hartman 
1374ab4382d2SGreg Kroah-Hartman 	/* While we can read, do so ! */
1375ab4382d2SGreg Kroah-Hartman 	while (psc_ops->raw_rx_rdy(port)) {
1376ab4382d2SGreg Kroah-Hartman 		/* Get the char */
1377ab4382d2SGreg Kroah-Hartman 		ch = psc_ops->read_char(port);
1378ab4382d2SGreg Kroah-Hartman 
1379ab4382d2SGreg Kroah-Hartman 		/* Handle sysreq char */
1380ab4382d2SGreg Kroah-Hartman #ifdef SUPPORT_SYSRQ
1381ab4382d2SGreg Kroah-Hartman 		if (uart_handle_sysrq_char(port, ch)) {
1382ab4382d2SGreg Kroah-Hartman 			port->sysrq = 0;
1383ab4382d2SGreg Kroah-Hartman 			continue;
1384ab4382d2SGreg Kroah-Hartman 		}
1385ab4382d2SGreg Kroah-Hartman #endif
1386ab4382d2SGreg Kroah-Hartman 
1387ab4382d2SGreg Kroah-Hartman 		/* Store it */
1388ab4382d2SGreg Kroah-Hartman 
1389ab4382d2SGreg Kroah-Hartman 		flag = TTY_NORMAL;
1390ab4382d2SGreg Kroah-Hartman 		port->icount.rx++;
1391ab4382d2SGreg Kroah-Hartman 
13922574b27eSMatteo Facchinetti 		status = psc_ops->get_status(port);
1393ab4382d2SGreg Kroah-Hartman 
1394ab4382d2SGreg Kroah-Hartman 		if (status & (MPC52xx_PSC_SR_PE |
1395ab4382d2SGreg Kroah-Hartman 			      MPC52xx_PSC_SR_FE |
1396ab4382d2SGreg Kroah-Hartman 			      MPC52xx_PSC_SR_RB)) {
1397ab4382d2SGreg Kroah-Hartman 
1398ab4382d2SGreg Kroah-Hartman 			if (status & MPC52xx_PSC_SR_RB) {
1399ab4382d2SGreg Kroah-Hartman 				flag = TTY_BREAK;
1400ab4382d2SGreg Kroah-Hartman 				uart_handle_break(port);
1401ab4382d2SGreg Kroah-Hartman 				port->icount.brk++;
1402ab4382d2SGreg Kroah-Hartman 			} else if (status & MPC52xx_PSC_SR_PE) {
1403ab4382d2SGreg Kroah-Hartman 				flag = TTY_PARITY;
1404ab4382d2SGreg Kroah-Hartman 				port->icount.parity++;
1405ab4382d2SGreg Kroah-Hartman 			}
1406ab4382d2SGreg Kroah-Hartman 			else if (status & MPC52xx_PSC_SR_FE) {
1407ab4382d2SGreg Kroah-Hartman 				flag = TTY_FRAME;
1408ab4382d2SGreg Kroah-Hartman 				port->icount.frame++;
1409ab4382d2SGreg Kroah-Hartman 			}
1410ab4382d2SGreg Kroah-Hartman 
1411ab4382d2SGreg Kroah-Hartman 			/* Clear error condition */
14122574b27eSMatteo Facchinetti 			psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT);
1413ab4382d2SGreg Kroah-Hartman 
1414ab4382d2SGreg Kroah-Hartman 		}
141592a19f9cSJiri Slaby 		tty_insert_flip_char(tport, ch, flag);
1416ab4382d2SGreg Kroah-Hartman 		if (status & MPC52xx_PSC_SR_OE) {
1417ab4382d2SGreg Kroah-Hartman 			/*
1418ab4382d2SGreg Kroah-Hartman 			 * Overrun is special, since it's
1419ab4382d2SGreg Kroah-Hartman 			 * reported immediately, and doesn't
1420ab4382d2SGreg Kroah-Hartman 			 * affect the current character
1421ab4382d2SGreg Kroah-Hartman 			 */
142292a19f9cSJiri Slaby 			tty_insert_flip_char(tport, 0, TTY_OVERRUN);
1423ab4382d2SGreg Kroah-Hartman 			port->icount.overrun++;
1424ab4382d2SGreg Kroah-Hartman 		}
1425ab4382d2SGreg Kroah-Hartman 	}
1426ab4382d2SGreg Kroah-Hartman 
1427ab4382d2SGreg Kroah-Hartman 	spin_unlock(&port->lock);
14282e124b4aSJiri Slaby 	tty_flip_buffer_push(tport);
1429ab4382d2SGreg Kroah-Hartman 	spin_lock(&port->lock);
1430ab4382d2SGreg Kroah-Hartman 
1431ab4382d2SGreg Kroah-Hartman 	return psc_ops->raw_rx_rdy(port);
1432ab4382d2SGreg Kroah-Hartman }
1433ab4382d2SGreg Kroah-Hartman 
1434ab4382d2SGreg Kroah-Hartman static inline int
1435ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int_tx_chars(struct uart_port *port)
1436ab4382d2SGreg Kroah-Hartman {
1437ab4382d2SGreg Kroah-Hartman 	struct circ_buf *xmit = &port->state->xmit;
1438ab4382d2SGreg Kroah-Hartman 
1439ab4382d2SGreg Kroah-Hartman 	/* Process out of band chars */
1440ab4382d2SGreg Kroah-Hartman 	if (port->x_char) {
1441ab4382d2SGreg Kroah-Hartman 		psc_ops->write_char(port, port->x_char);
1442ab4382d2SGreg Kroah-Hartman 		port->icount.tx++;
1443ab4382d2SGreg Kroah-Hartman 		port->x_char = 0;
1444ab4382d2SGreg Kroah-Hartman 		return 1;
1445ab4382d2SGreg Kroah-Hartman 	}
1446ab4382d2SGreg Kroah-Hartman 
1447ab4382d2SGreg Kroah-Hartman 	/* Nothing to do ? */
1448ab4382d2SGreg Kroah-Hartman 	if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
1449ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_stop_tx(port);
1450ab4382d2SGreg Kroah-Hartman 		return 0;
1451ab4382d2SGreg Kroah-Hartman 	}
1452ab4382d2SGreg Kroah-Hartman 
1453ab4382d2SGreg Kroah-Hartman 	/* Send chars */
1454ab4382d2SGreg Kroah-Hartman 	while (psc_ops->raw_tx_rdy(port)) {
1455ab4382d2SGreg Kroah-Hartman 		psc_ops->write_char(port, xmit->buf[xmit->tail]);
1456ab4382d2SGreg Kroah-Hartman 		xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1457ab4382d2SGreg Kroah-Hartman 		port->icount.tx++;
1458ab4382d2SGreg Kroah-Hartman 		if (uart_circ_empty(xmit))
1459ab4382d2SGreg Kroah-Hartman 			break;
1460ab4382d2SGreg Kroah-Hartman 	}
1461ab4382d2SGreg Kroah-Hartman 
1462ab4382d2SGreg Kroah-Hartman 	/* Wake up */
1463ab4382d2SGreg Kroah-Hartman 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1464ab4382d2SGreg Kroah-Hartman 		uart_write_wakeup(port);
1465ab4382d2SGreg Kroah-Hartman 
1466ab4382d2SGreg Kroah-Hartman 	/* Maybe we're done after all */
1467ab4382d2SGreg Kroah-Hartman 	if (uart_circ_empty(xmit)) {
1468ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_stop_tx(port);
1469ab4382d2SGreg Kroah-Hartman 		return 0;
1470ab4382d2SGreg Kroah-Hartman 	}
1471ab4382d2SGreg Kroah-Hartman 
1472ab4382d2SGreg Kroah-Hartman 	return 1;
1473ab4382d2SGreg Kroah-Hartman }
1474ab4382d2SGreg Kroah-Hartman 
1475ab4382d2SGreg Kroah-Hartman static irqreturn_t
1476ab4382d2SGreg Kroah-Hartman mpc5xxx_uart_process_int(struct uart_port *port)
1477ab4382d2SGreg Kroah-Hartman {
1478ab4382d2SGreg Kroah-Hartman 	unsigned long pass = ISR_PASS_LIMIT;
1479ab4382d2SGreg Kroah-Hartman 	unsigned int keepgoing;
1480ab4382d2SGreg Kroah-Hartman 	u8 status;
1481ab4382d2SGreg Kroah-Hartman 
1482ab4382d2SGreg Kroah-Hartman 	/* While we have stuff to do, we continue */
1483ab4382d2SGreg Kroah-Hartman 	do {
1484ab4382d2SGreg Kroah-Hartman 		/* If we don't find anything to do, we stop */
1485ab4382d2SGreg Kroah-Hartman 		keepgoing = 0;
1486ab4382d2SGreg Kroah-Hartman 
1487ab4382d2SGreg Kroah-Hartman 		psc_ops->rx_clr_irq(port);
1488ab4382d2SGreg Kroah-Hartman 		if (psc_ops->rx_rdy(port))
1489ab4382d2SGreg Kroah-Hartman 			keepgoing |= mpc52xx_uart_int_rx_chars(port);
1490ab4382d2SGreg Kroah-Hartman 
1491ab4382d2SGreg Kroah-Hartman 		psc_ops->tx_clr_irq(port);
1492ab4382d2SGreg Kroah-Hartman 		if (psc_ops->tx_rdy(port))
1493ab4382d2SGreg Kroah-Hartman 			keepgoing |= mpc52xx_uart_int_tx_chars(port);
1494ab4382d2SGreg Kroah-Hartman 
14952574b27eSMatteo Facchinetti 		status = psc_ops->get_ipcr(port);
1496ab4382d2SGreg Kroah-Hartman 		if (status & MPC52xx_PSC_D_DCD)
1497ab4382d2SGreg Kroah-Hartman 			uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD));
1498ab4382d2SGreg Kroah-Hartman 
1499ab4382d2SGreg Kroah-Hartman 		if (status & MPC52xx_PSC_D_CTS)
1500ab4382d2SGreg Kroah-Hartman 			uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS));
1501ab4382d2SGreg Kroah-Hartman 
1502ab4382d2SGreg Kroah-Hartman 		/* Limit number of iteration */
1503ab4382d2SGreg Kroah-Hartman 		if (!(--pass))
1504ab4382d2SGreg Kroah-Hartman 			keepgoing = 0;
1505ab4382d2SGreg Kroah-Hartman 
1506ab4382d2SGreg Kroah-Hartman 	} while (keepgoing);
1507ab4382d2SGreg Kroah-Hartman 
1508ab4382d2SGreg Kroah-Hartman 	return IRQ_HANDLED;
1509ab4382d2SGreg Kroah-Hartman }
1510ab4382d2SGreg Kroah-Hartman 
1511ab4382d2SGreg Kroah-Hartman static irqreturn_t
1512ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int(int irq, void *dev_id)
1513ab4382d2SGreg Kroah-Hartman {
1514ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = dev_id;
1515ab4382d2SGreg Kroah-Hartman 	irqreturn_t ret;
1516ab4382d2SGreg Kroah-Hartman 
1517ab4382d2SGreg Kroah-Hartman 	spin_lock(&port->lock);
1518ab4382d2SGreg Kroah-Hartman 
1519ab4382d2SGreg Kroah-Hartman 	ret = psc_ops->handle_irq(port);
1520ab4382d2SGreg Kroah-Hartman 
1521ab4382d2SGreg Kroah-Hartman 	spin_unlock(&port->lock);
1522ab4382d2SGreg Kroah-Hartman 
1523ab4382d2SGreg Kroah-Hartman 	return ret;
1524ab4382d2SGreg Kroah-Hartman }
1525ab4382d2SGreg Kroah-Hartman 
1526ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1527ab4382d2SGreg Kroah-Hartman /* Console ( if applicable )                                                */
1528ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1529ab4382d2SGreg Kroah-Hartman 
1530ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
1531ab4382d2SGreg Kroah-Hartman 
1532ab4382d2SGreg Kroah-Hartman static void __init
1533ab4382d2SGreg Kroah-Hartman mpc52xx_console_get_options(struct uart_port *port,
1534ab4382d2SGreg Kroah-Hartman 			    int *baud, int *parity, int *bits, int *flow)
1535ab4382d2SGreg Kroah-Hartman {
1536ab4382d2SGreg Kroah-Hartman 	unsigned char mr1;
1537ab4382d2SGreg Kroah-Hartman 
1538ab4382d2SGreg Kroah-Hartman 	pr_debug("mpc52xx_console_get_options(port=%p)\n", port);
1539ab4382d2SGreg Kroah-Hartman 
1540ab4382d2SGreg Kroah-Hartman 	/* Read the mode registers */
15412574b27eSMatteo Facchinetti 	mr1 = psc_ops->get_mr1(port);
1542ab4382d2SGreg Kroah-Hartman 
1543ab4382d2SGreg Kroah-Hartman 	/* CT{U,L}R are write-only ! */
1544ab4382d2SGreg Kroah-Hartman 	*baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1545ab4382d2SGreg Kroah-Hartman 
1546ab4382d2SGreg Kroah-Hartman 	/* Parse them */
1547ab4382d2SGreg Kroah-Hartman 	switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
1548ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_5_BITS:
1549ab4382d2SGreg Kroah-Hartman 		*bits = 5;
1550ab4382d2SGreg Kroah-Hartman 		break;
1551ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_6_BITS:
1552ab4382d2SGreg Kroah-Hartman 		*bits = 6;
1553ab4382d2SGreg Kroah-Hartman 		break;
1554ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_7_BITS:
1555ab4382d2SGreg Kroah-Hartman 		*bits = 7;
1556ab4382d2SGreg Kroah-Hartman 		break;
1557ab4382d2SGreg Kroah-Hartman 	case MPC52xx_PSC_MODE_8_BITS:
1558ab4382d2SGreg Kroah-Hartman 	default:
1559ab4382d2SGreg Kroah-Hartman 		*bits = 8;
1560ab4382d2SGreg Kroah-Hartman 	}
1561ab4382d2SGreg Kroah-Hartman 
1562ab4382d2SGreg Kroah-Hartman 	if (mr1 & MPC52xx_PSC_MODE_PARNONE)
1563ab4382d2SGreg Kroah-Hartman 		*parity = 'n';
1564ab4382d2SGreg Kroah-Hartman 	else
1565ab4382d2SGreg Kroah-Hartman 		*parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
1566ab4382d2SGreg Kroah-Hartman }
1567ab4382d2SGreg Kroah-Hartman 
1568ab4382d2SGreg Kroah-Hartman static void
1569ab4382d2SGreg Kroah-Hartman mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
1570ab4382d2SGreg Kroah-Hartman {
1571ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &mpc52xx_uart_ports[co->index];
1572ab4382d2SGreg Kroah-Hartman 	unsigned int i, j;
1573ab4382d2SGreg Kroah-Hartman 
1574ab4382d2SGreg Kroah-Hartman 	/* Disable interrupts */
1575ab4382d2SGreg Kroah-Hartman 	psc_ops->cw_disable_ints(port);
1576ab4382d2SGreg Kroah-Hartman 
1577ab4382d2SGreg Kroah-Hartman 	/* Wait the TX buffer to be empty */
1578ab4382d2SGreg Kroah-Hartman 	j = 5000000;	/* Maximum wait */
1579ab4382d2SGreg Kroah-Hartman 	while (!mpc52xx_uart_tx_empty(port) && --j)
1580ab4382d2SGreg Kroah-Hartman 		udelay(1);
1581ab4382d2SGreg Kroah-Hartman 
1582ab4382d2SGreg Kroah-Hartman 	/* Write all the chars */
1583ab4382d2SGreg Kroah-Hartman 	for (i = 0; i < count; i++, s++) {
1584ab4382d2SGreg Kroah-Hartman 		/* Line return handling */
1585ab4382d2SGreg Kroah-Hartman 		if (*s == '\n')
1586ab4382d2SGreg Kroah-Hartman 			psc_ops->write_char(port, '\r');
1587ab4382d2SGreg Kroah-Hartman 
1588ab4382d2SGreg Kroah-Hartman 		/* Send the char */
1589ab4382d2SGreg Kroah-Hartman 		psc_ops->write_char(port, *s);
1590ab4382d2SGreg Kroah-Hartman 
1591ab4382d2SGreg Kroah-Hartman 		/* Wait the TX buffer to be empty */
1592ab4382d2SGreg Kroah-Hartman 		j = 20000;	/* Maximum wait */
1593ab4382d2SGreg Kroah-Hartman 		while (!mpc52xx_uart_tx_empty(port) && --j)
1594ab4382d2SGreg Kroah-Hartman 			udelay(1);
1595ab4382d2SGreg Kroah-Hartman 	}
1596ab4382d2SGreg Kroah-Hartman 
1597ab4382d2SGreg Kroah-Hartman 	/* Restore interrupt state */
1598ab4382d2SGreg Kroah-Hartman 	psc_ops->cw_restore_ints(port);
1599ab4382d2SGreg Kroah-Hartman }
1600ab4382d2SGreg Kroah-Hartman 
1601ab4382d2SGreg Kroah-Hartman 
1602ab4382d2SGreg Kroah-Hartman static int __init
1603ab4382d2SGreg Kroah-Hartman mpc52xx_console_setup(struct console *co, char *options)
1604ab4382d2SGreg Kroah-Hartman {
1605ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &mpc52xx_uart_ports[co->index];
1606ab4382d2SGreg Kroah-Hartman 	struct device_node *np = mpc52xx_uart_nodes[co->index];
1607ab4382d2SGreg Kroah-Hartman 	unsigned int uartclk;
1608ab4382d2SGreg Kroah-Hartman 	struct resource res;
1609ab4382d2SGreg Kroah-Hartman 	int ret;
1610ab4382d2SGreg Kroah-Hartman 
1611ab4382d2SGreg Kroah-Hartman 	int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
1612ab4382d2SGreg Kroah-Hartman 	int bits = 8;
1613ab4382d2SGreg Kroah-Hartman 	int parity = 'n';
1614ab4382d2SGreg Kroah-Hartman 	int flow = 'n';
1615ab4382d2SGreg Kroah-Hartman 
1616ab4382d2SGreg Kroah-Hartman 	pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n",
1617ab4382d2SGreg Kroah-Hartman 		 co, co->index, options);
1618ab4382d2SGreg Kroah-Hartman 
1619ab4382d2SGreg Kroah-Hartman 	if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) {
1620ab4382d2SGreg Kroah-Hartman 		pr_debug("PSC%x out of range\n", co->index);
1621ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1622ab4382d2SGreg Kroah-Hartman 	}
1623ab4382d2SGreg Kroah-Hartman 
1624ab4382d2SGreg Kroah-Hartman 	if (!np) {
1625ab4382d2SGreg Kroah-Hartman 		pr_debug("PSC%x not found in device tree\n", co->index);
1626ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1627ab4382d2SGreg Kroah-Hartman 	}
1628ab4382d2SGreg Kroah-Hartman 
1629ab4382d2SGreg Kroah-Hartman 	pr_debug("Console on ttyPSC%x is %s\n",
1630ab4382d2SGreg Kroah-Hartman 		 co->index, mpc52xx_uart_nodes[co->index]->full_name);
1631ab4382d2SGreg Kroah-Hartman 
1632ab4382d2SGreg Kroah-Hartman 	/* Fetch register locations */
1633ab4382d2SGreg Kroah-Hartman 	ret = of_address_to_resource(np, 0, &res);
1634ab4382d2SGreg Kroah-Hartman 	if (ret) {
1635ab4382d2SGreg Kroah-Hartman 		pr_debug("Could not get resources for PSC%x\n", co->index);
1636ab4382d2SGreg Kroah-Hartman 		return ret;
1637ab4382d2SGreg Kroah-Hartman 	}
1638ab4382d2SGreg Kroah-Hartman 
1639ab4382d2SGreg Kroah-Hartman 	uartclk = mpc5xxx_get_bus_frequency(np);
1640ab4382d2SGreg Kroah-Hartman 	if (uartclk == 0) {
1641ab4382d2SGreg Kroah-Hartman 		pr_debug("Could not find uart clock frequency!\n");
1642ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1643ab4382d2SGreg Kroah-Hartman 	}
1644ab4382d2SGreg Kroah-Hartman 
1645ab4382d2SGreg Kroah-Hartman 	/* Basic port init. Needed since we use some uart_??? func before
1646ab4382d2SGreg Kroah-Hartman 	 * real init for early access */
1647ab4382d2SGreg Kroah-Hartman 	spin_lock_init(&port->lock);
1648ab4382d2SGreg Kroah-Hartman 	port->uartclk = uartclk;
1649ab4382d2SGreg Kroah-Hartman 	port->ops	= &mpc52xx_uart_ops;
1650ab4382d2SGreg Kroah-Hartman 	port->mapbase = res.start;
1651ab4382d2SGreg Kroah-Hartman 	port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc));
1652ab4382d2SGreg Kroah-Hartman 	port->irq = irq_of_parse_and_map(np, 0);
1653ab4382d2SGreg Kroah-Hartman 
1654ab4382d2SGreg Kroah-Hartman 	if (port->membase == NULL)
1655ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1656ab4382d2SGreg Kroah-Hartman 
1657ab4382d2SGreg Kroah-Hartman 	pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n",
1658ab4382d2SGreg Kroah-Hartman 		 (void *)port->mapbase, port->membase,
1659ab4382d2SGreg Kroah-Hartman 		 port->irq, port->uartclk);
1660ab4382d2SGreg Kroah-Hartman 
1661ab4382d2SGreg Kroah-Hartman 	/* Setup the port parameters accoding to options */
1662ab4382d2SGreg Kroah-Hartman 	if (options)
1663ab4382d2SGreg Kroah-Hartman 		uart_parse_options(options, &baud, &parity, &bits, &flow);
1664ab4382d2SGreg Kroah-Hartman 	else
1665ab4382d2SGreg Kroah-Hartman 		mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
1666ab4382d2SGreg Kroah-Hartman 
1667ab4382d2SGreg Kroah-Hartman 	pr_debug("Setting console parameters: %i %i%c1 flow=%c\n",
1668ab4382d2SGreg Kroah-Hartman 		 baud, bits, parity, flow);
1669ab4382d2SGreg Kroah-Hartman 
1670ab4382d2SGreg Kroah-Hartman 	return uart_set_options(port, co, baud, parity, bits, flow);
1671ab4382d2SGreg Kroah-Hartman }
1672ab4382d2SGreg Kroah-Hartman 
1673ab4382d2SGreg Kroah-Hartman 
1674ab4382d2SGreg Kroah-Hartman static struct uart_driver mpc52xx_uart_driver;
1675ab4382d2SGreg Kroah-Hartman 
1676ab4382d2SGreg Kroah-Hartman static struct console mpc52xx_console = {
1677ab4382d2SGreg Kroah-Hartman 	.name	= "ttyPSC",
1678ab4382d2SGreg Kroah-Hartman 	.write	= mpc52xx_console_write,
1679ab4382d2SGreg Kroah-Hartman 	.device	= uart_console_device,
1680ab4382d2SGreg Kroah-Hartman 	.setup	= mpc52xx_console_setup,
1681ab4382d2SGreg Kroah-Hartman 	.flags	= CON_PRINTBUFFER,
1682ab4382d2SGreg Kroah-Hartman 	.index	= -1,	/* Specified on the cmdline (e.g. console=ttyPSC0) */
1683ab4382d2SGreg Kroah-Hartman 	.data	= &mpc52xx_uart_driver,
1684ab4382d2SGreg Kroah-Hartman };
1685ab4382d2SGreg Kroah-Hartman 
1686ab4382d2SGreg Kroah-Hartman 
1687ab4382d2SGreg Kroah-Hartman static int __init
1688ab4382d2SGreg Kroah-Hartman mpc52xx_console_init(void)
1689ab4382d2SGreg Kroah-Hartman {
1690ab4382d2SGreg Kroah-Hartman 	mpc52xx_uart_of_enumerate();
1691ab4382d2SGreg Kroah-Hartman 	register_console(&mpc52xx_console);
1692ab4382d2SGreg Kroah-Hartman 	return 0;
1693ab4382d2SGreg Kroah-Hartman }
1694ab4382d2SGreg Kroah-Hartman 
1695ab4382d2SGreg Kroah-Hartman console_initcall(mpc52xx_console_init);
1696ab4382d2SGreg Kroah-Hartman 
1697ab4382d2SGreg Kroah-Hartman #define MPC52xx_PSC_CONSOLE &mpc52xx_console
1698ab4382d2SGreg Kroah-Hartman #else
1699ab4382d2SGreg Kroah-Hartman #define MPC52xx_PSC_CONSOLE NULL
1700ab4382d2SGreg Kroah-Hartman #endif
1701ab4382d2SGreg Kroah-Hartman 
1702ab4382d2SGreg Kroah-Hartman 
1703ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1704ab4382d2SGreg Kroah-Hartman /* UART Driver                                                              */
1705ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1706ab4382d2SGreg Kroah-Hartman 
1707ab4382d2SGreg Kroah-Hartman static struct uart_driver mpc52xx_uart_driver = {
1708ab4382d2SGreg Kroah-Hartman 	.driver_name	= "mpc52xx_psc_uart",
1709ab4382d2SGreg Kroah-Hartman 	.dev_name	= "ttyPSC",
1710ab4382d2SGreg Kroah-Hartman 	.major		= SERIAL_PSC_MAJOR,
1711ab4382d2SGreg Kroah-Hartman 	.minor		= SERIAL_PSC_MINOR,
1712ab4382d2SGreg Kroah-Hartman 	.nr		= MPC52xx_PSC_MAXNUM,
1713ab4382d2SGreg Kroah-Hartman 	.cons		= MPC52xx_PSC_CONSOLE,
1714ab4382d2SGreg Kroah-Hartman };
1715ab4382d2SGreg Kroah-Hartman 
1716ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1717ab4382d2SGreg Kroah-Hartman /* OF Platform Driver                                                       */
1718ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1719ab4382d2SGreg Kroah-Hartman 
1720ed0bb232SFabian Frederick static const struct of_device_id mpc52xx_uart_of_match[] = {
1721ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC52xx
1722ab4382d2SGreg Kroah-Hartman 	{ .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, },
1723ab4382d2SGreg Kroah-Hartman 	{ .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1724ab4382d2SGreg Kroah-Hartman 	/* binding used by old lite5200 device trees: */
1725ab4382d2SGreg Kroah-Hartman 	{ .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, },
1726ab4382d2SGreg Kroah-Hartman 	/* binding used by efika: */
1727ab4382d2SGreg Kroah-Hartman 	{ .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, },
1728ab4382d2SGreg Kroah-Hartman #endif
1729ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC512x
1730ab4382d2SGreg Kroah-Hartman 	{ .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, },
17311f48c499SMatteo Facchinetti 	{ .compatible = "fsl,mpc5125-psc-uart", .data = &mpc5125_psc_ops, },
1732ab4382d2SGreg Kroah-Hartman #endif
1733ab4382d2SGreg Kroah-Hartman 	{},
1734ab4382d2SGreg Kroah-Hartman };
1735ab4382d2SGreg Kroah-Hartman 
17369671f099SBill Pemberton static int mpc52xx_uart_of_probe(struct platform_device *op)
1737ab4382d2SGreg Kroah-Hartman {
1738ab4382d2SGreg Kroah-Hartman 	int idx = -1;
1739ab4382d2SGreg Kroah-Hartman 	unsigned int uartclk;
1740ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = NULL;
1741ab4382d2SGreg Kroah-Hartman 	struct resource res;
1742ab4382d2SGreg Kroah-Hartman 	int ret;
1743ab4382d2SGreg Kroah-Hartman 
1744ab4382d2SGreg Kroah-Hartman 	/* Check validity & presence */
1745ab4382d2SGreg Kroah-Hartman 	for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
1746ab4382d2SGreg Kroah-Hartman 		if (mpc52xx_uart_nodes[idx] == op->dev.of_node)
1747ab4382d2SGreg Kroah-Hartman 			break;
1748ab4382d2SGreg Kroah-Hartman 	if (idx >= MPC52xx_PSC_MAXNUM)
1749ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1750ab4382d2SGreg Kroah-Hartman 	pr_debug("Found %s assigned to ttyPSC%x\n",
1751ab4382d2SGreg Kroah-Hartman 		 mpc52xx_uart_nodes[idx]->full_name, idx);
1752ab4382d2SGreg Kroah-Hartman 
1753ab4382d2SGreg Kroah-Hartman 	/* set the uart clock to the input clock of the psc, the different
1754ab4382d2SGreg Kroah-Hartman 	 * prescalers are taken into account in the set_baudrate() methods
1755ab4382d2SGreg Kroah-Hartman 	 * of the respective chip */
1756ab4382d2SGreg Kroah-Hartman 	uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node);
1757ab4382d2SGreg Kroah-Hartman 	if (uartclk == 0) {
1758ab4382d2SGreg Kroah-Hartman 		dev_dbg(&op->dev, "Could not find uart clock frequency!\n");
1759ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1760ab4382d2SGreg Kroah-Hartman 	}
1761ab4382d2SGreg Kroah-Hartman 
1762ab4382d2SGreg Kroah-Hartman 	/* Init the port structure */
1763ab4382d2SGreg Kroah-Hartman 	port = &mpc52xx_uart_ports[idx];
1764ab4382d2SGreg Kroah-Hartman 
1765ab4382d2SGreg Kroah-Hartman 	spin_lock_init(&port->lock);
1766ab4382d2SGreg Kroah-Hartman 	port->uartclk = uartclk;
1767ab4382d2SGreg Kroah-Hartman 	port->fifosize	= 512;
1768ab4382d2SGreg Kroah-Hartman 	port->iotype	= UPIO_MEM;
1769ab4382d2SGreg Kroah-Hartman 	port->flags	= UPF_BOOT_AUTOCONF |
1770ab4382d2SGreg Kroah-Hartman 			  (uart_console(port) ? 0 : UPF_IOREMAP);
1771ab4382d2SGreg Kroah-Hartman 	port->line	= idx;
1772ab4382d2SGreg Kroah-Hartman 	port->ops	= &mpc52xx_uart_ops;
1773ab4382d2SGreg Kroah-Hartman 	port->dev	= &op->dev;
1774ab4382d2SGreg Kroah-Hartman 
1775ab4382d2SGreg Kroah-Hartman 	/* Search for IRQ and mapbase */
1776ab4382d2SGreg Kroah-Hartman 	ret = of_address_to_resource(op->dev.of_node, 0, &res);
1777ab4382d2SGreg Kroah-Hartman 	if (ret)
1778ab4382d2SGreg Kroah-Hartman 		return ret;
1779ab4382d2SGreg Kroah-Hartman 
1780ab4382d2SGreg Kroah-Hartman 	port->mapbase = res.start;
1781ab4382d2SGreg Kroah-Hartman 	if (!port->mapbase) {
1782ab4382d2SGreg Kroah-Hartman 		dev_dbg(&op->dev, "Could not allocate resources for PSC\n");
1783ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1784ab4382d2SGreg Kroah-Hartman 	}
1785ab4382d2SGreg Kroah-Hartman 
1786ab4382d2SGreg Kroah-Hartman 	psc_ops->get_irq(port, op->dev.of_node);
1787d4e33facSAlan Cox 	if (port->irq == 0) {
1788ab4382d2SGreg Kroah-Hartman 		dev_dbg(&op->dev, "Could not get irq\n");
1789ab4382d2SGreg Kroah-Hartman 		return -EINVAL;
1790ab4382d2SGreg Kroah-Hartman 	}
1791ab4382d2SGreg Kroah-Hartman 
1792ab4382d2SGreg Kroah-Hartman 	dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n",
1793ab4382d2SGreg Kroah-Hartman 		(void *)port->mapbase, port->irq, port->uartclk);
1794ab4382d2SGreg Kroah-Hartman 
1795ab4382d2SGreg Kroah-Hartman 	/* Add the port to the uart sub-system */
1796ab4382d2SGreg Kroah-Hartman 	ret = uart_add_one_port(&mpc52xx_uart_driver, port);
1797ab4382d2SGreg Kroah-Hartman 	if (ret)
1798ab4382d2SGreg Kroah-Hartman 		return ret;
1799ab4382d2SGreg Kroah-Hartman 
1800696faeddSJingoo Han 	platform_set_drvdata(op, (void *)port);
1801ab4382d2SGreg Kroah-Hartman 	return 0;
1802ab4382d2SGreg Kroah-Hartman }
1803ab4382d2SGreg Kroah-Hartman 
1804ab4382d2SGreg Kroah-Hartman static int
1805ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_remove(struct platform_device *op)
1806ab4382d2SGreg Kroah-Hartman {
1807696faeddSJingoo Han 	struct uart_port *port = platform_get_drvdata(op);
1808ab4382d2SGreg Kroah-Hartman 
1809ab4382d2SGreg Kroah-Hartman 	if (port)
1810ab4382d2SGreg Kroah-Hartman 		uart_remove_one_port(&mpc52xx_uart_driver, port);
1811ab4382d2SGreg Kroah-Hartman 
1812ab4382d2SGreg Kroah-Hartman 	return 0;
1813ab4382d2SGreg Kroah-Hartman }
1814ab4382d2SGreg Kroah-Hartman 
1815ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PM
1816ab4382d2SGreg Kroah-Hartman static int
1817ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state)
1818ab4382d2SGreg Kroah-Hartman {
18194190390aSJingoo Han 	struct uart_port *port = platform_get_drvdata(op);
1820ab4382d2SGreg Kroah-Hartman 
1821ab4382d2SGreg Kroah-Hartman 	if (port)
1822ab4382d2SGreg Kroah-Hartman 		uart_suspend_port(&mpc52xx_uart_driver, port);
1823ab4382d2SGreg Kroah-Hartman 
1824ab4382d2SGreg Kroah-Hartman 	return 0;
1825ab4382d2SGreg Kroah-Hartman }
1826ab4382d2SGreg Kroah-Hartman 
1827ab4382d2SGreg Kroah-Hartman static int
1828ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_resume(struct platform_device *op)
1829ab4382d2SGreg Kroah-Hartman {
18304190390aSJingoo Han 	struct uart_port *port = platform_get_drvdata(op);
1831ab4382d2SGreg Kroah-Hartman 
1832ab4382d2SGreg Kroah-Hartman 	if (port)
1833ab4382d2SGreg Kroah-Hartman 		uart_resume_port(&mpc52xx_uart_driver, port);
1834ab4382d2SGreg Kroah-Hartman 
1835ab4382d2SGreg Kroah-Hartman 	return 0;
1836ab4382d2SGreg Kroah-Hartman }
1837ab4382d2SGreg Kroah-Hartman #endif
1838ab4382d2SGreg Kroah-Hartman 
1839ab4382d2SGreg Kroah-Hartman static void
1840ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_assign(struct device_node *np)
1841ab4382d2SGreg Kroah-Hartman {
1842ab4382d2SGreg Kroah-Hartman 	int i;
1843ab4382d2SGreg Kroah-Hartman 
1844ab4382d2SGreg Kroah-Hartman 	/* Find the first free PSC number */
1845ab4382d2SGreg Kroah-Hartman 	for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1846ab4382d2SGreg Kroah-Hartman 		if (mpc52xx_uart_nodes[i] == NULL) {
1847ab4382d2SGreg Kroah-Hartman 			of_node_get(np);
1848ab4382d2SGreg Kroah-Hartman 			mpc52xx_uart_nodes[i] = np;
1849ab4382d2SGreg Kroah-Hartman 			return;
1850ab4382d2SGreg Kroah-Hartman 		}
1851ab4382d2SGreg Kroah-Hartman 	}
1852ab4382d2SGreg Kroah-Hartman }
1853ab4382d2SGreg Kroah-Hartman 
1854ab4382d2SGreg Kroah-Hartman static void
1855ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_enumerate(void)
1856ab4382d2SGreg Kroah-Hartman {
1857ab4382d2SGreg Kroah-Hartman 	static int enum_done;
1858ab4382d2SGreg Kroah-Hartman 	struct device_node *np;
1859ab4382d2SGreg Kroah-Hartman 	const struct  of_device_id *match;
1860ab4382d2SGreg Kroah-Hartman 	int i;
1861ab4382d2SGreg Kroah-Hartman 
1862ab4382d2SGreg Kroah-Hartman 	if (enum_done)
1863ab4382d2SGreg Kroah-Hartman 		return;
1864ab4382d2SGreg Kroah-Hartman 
1865ab4382d2SGreg Kroah-Hartman 	/* Assign index to each PSC in device tree */
1866ab4382d2SGreg Kroah-Hartman 	for_each_matching_node(np, mpc52xx_uart_of_match) {
1867ab4382d2SGreg Kroah-Hartman 		match = of_match_node(mpc52xx_uart_of_match, np);
1868ab4382d2SGreg Kroah-Hartman 		psc_ops = match->data;
1869ab4382d2SGreg Kroah-Hartman 		mpc52xx_uart_of_assign(np);
1870ab4382d2SGreg Kroah-Hartman 	}
1871ab4382d2SGreg Kroah-Hartman 
1872ab4382d2SGreg Kroah-Hartman 	enum_done = 1;
1873ab4382d2SGreg Kroah-Hartman 
1874ab4382d2SGreg Kroah-Hartman 	for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) {
1875ab4382d2SGreg Kroah-Hartman 		if (mpc52xx_uart_nodes[i])
1876ab4382d2SGreg Kroah-Hartman 			pr_debug("%s assigned to ttyPSC%x\n",
1877ab4382d2SGreg Kroah-Hartman 				 mpc52xx_uart_nodes[i]->full_name, i);
1878ab4382d2SGreg Kroah-Hartman 	}
1879ab4382d2SGreg Kroah-Hartman }
1880ab4382d2SGreg Kroah-Hartman 
1881ab4382d2SGreg Kroah-Hartman MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
1882ab4382d2SGreg Kroah-Hartman 
1883793218dfSGrant Likely static struct platform_driver mpc52xx_uart_of_driver = {
1884ab4382d2SGreg Kroah-Hartman 	.probe		= mpc52xx_uart_of_probe,
1885ab4382d2SGreg Kroah-Hartman 	.remove		= mpc52xx_uart_of_remove,
1886ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PM
1887ab4382d2SGreg Kroah-Hartman 	.suspend	= mpc52xx_uart_of_suspend,
1888ab4382d2SGreg Kroah-Hartman 	.resume		= mpc52xx_uart_of_resume,
1889ab4382d2SGreg Kroah-Hartman #endif
1890ab4382d2SGreg Kroah-Hartman 	.driver = {
1891ab4382d2SGreg Kroah-Hartman 		.name = "mpc52xx-psc-uart",
1892ab4382d2SGreg Kroah-Hartman 		.of_match_table = mpc52xx_uart_of_match,
1893ab4382d2SGreg Kroah-Hartman 	},
1894ab4382d2SGreg Kroah-Hartman };
1895ab4382d2SGreg Kroah-Hartman 
1896ab4382d2SGreg Kroah-Hartman 
1897ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1898ab4382d2SGreg Kroah-Hartman /* Module                                                                   */
1899ab4382d2SGreg Kroah-Hartman /* ======================================================================== */
1900ab4382d2SGreg Kroah-Hartman 
1901ab4382d2SGreg Kroah-Hartman static int __init
1902ab4382d2SGreg Kroah-Hartman mpc52xx_uart_init(void)
1903ab4382d2SGreg Kroah-Hartman {
1904ab4382d2SGreg Kroah-Hartman 	int ret;
1905ab4382d2SGreg Kroah-Hartman 
1906ab4382d2SGreg Kroah-Hartman 	printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n");
1907ab4382d2SGreg Kroah-Hartman 
1908ab4382d2SGreg Kroah-Hartman 	ret = uart_register_driver(&mpc52xx_uart_driver);
1909ab4382d2SGreg Kroah-Hartman 	if (ret) {
1910ab4382d2SGreg Kroah-Hartman 		printk(KERN_ERR "%s: uart_register_driver failed (%i)\n",
1911ab4382d2SGreg Kroah-Hartman 		       __FILE__, ret);
1912ab4382d2SGreg Kroah-Hartman 		return ret;
1913ab4382d2SGreg Kroah-Hartman 	}
1914ab4382d2SGreg Kroah-Hartman 
1915ab4382d2SGreg Kroah-Hartman 	mpc52xx_uart_of_enumerate();
1916ab4382d2SGreg Kroah-Hartman 
1917ab4382d2SGreg Kroah-Hartman 	/*
1918ab4382d2SGreg Kroah-Hartman 	 * Map the PSC FIFO Controller and init if on MPC512x.
1919ab4382d2SGreg Kroah-Hartman 	 */
1920ab4382d2SGreg Kroah-Hartman 	if (psc_ops && psc_ops->fifoc_init) {
1921ab4382d2SGreg Kroah-Hartman 		ret = psc_ops->fifoc_init();
1922ab4382d2SGreg Kroah-Hartman 		if (ret)
19239bcc3278SWei Yongjun 			goto err_init;
1924ab4382d2SGreg Kroah-Hartman 	}
1925ab4382d2SGreg Kroah-Hartman 
1926793218dfSGrant Likely 	ret = platform_driver_register(&mpc52xx_uart_of_driver);
1927ab4382d2SGreg Kroah-Hartman 	if (ret) {
1928793218dfSGrant Likely 		printk(KERN_ERR "%s: platform_driver_register failed (%i)\n",
1929ab4382d2SGreg Kroah-Hartman 		       __FILE__, ret);
19309bcc3278SWei Yongjun 		goto err_reg;
1931ab4382d2SGreg Kroah-Hartman 	}
1932ab4382d2SGreg Kroah-Hartman 
1933ab4382d2SGreg Kroah-Hartman 	return 0;
19349bcc3278SWei Yongjun err_reg:
19359bcc3278SWei Yongjun 	if (psc_ops && psc_ops->fifoc_uninit)
19369bcc3278SWei Yongjun 		psc_ops->fifoc_uninit();
19379bcc3278SWei Yongjun err_init:
19389bcc3278SWei Yongjun 	uart_unregister_driver(&mpc52xx_uart_driver);
19399bcc3278SWei Yongjun 	return ret;
1940ab4382d2SGreg Kroah-Hartman }
1941ab4382d2SGreg Kroah-Hartman 
1942ab4382d2SGreg Kroah-Hartman static void __exit
1943ab4382d2SGreg Kroah-Hartman mpc52xx_uart_exit(void)
1944ab4382d2SGreg Kroah-Hartman {
1945ab4382d2SGreg Kroah-Hartman 	if (psc_ops->fifoc_uninit)
1946ab4382d2SGreg Kroah-Hartman 		psc_ops->fifoc_uninit();
1947ab4382d2SGreg Kroah-Hartman 
1948793218dfSGrant Likely 	platform_driver_unregister(&mpc52xx_uart_of_driver);
1949ab4382d2SGreg Kroah-Hartman 	uart_unregister_driver(&mpc52xx_uart_driver);
1950ab4382d2SGreg Kroah-Hartman }
1951ab4382d2SGreg Kroah-Hartman 
1952ab4382d2SGreg Kroah-Hartman 
1953ab4382d2SGreg Kroah-Hartman module_init(mpc52xx_uart_init);
1954ab4382d2SGreg Kroah-Hartman module_exit(mpc52xx_uart_exit);
1955ab4382d2SGreg Kroah-Hartman 
1956ab4382d2SGreg Kroah-Hartman MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
1957ab4382d2SGreg Kroah-Hartman MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
1958ab4382d2SGreg Kroah-Hartman MODULE_LICENSE("GPL");
1959