1e3b3d0f5SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 2ab4382d2SGreg Kroah-Hartman /* 3ab4382d2SGreg Kroah-Hartman * Driver for the PSC of the Freescale MPC52xx PSCs configured as UARTs. 4ab4382d2SGreg Kroah-Hartman * 5ab4382d2SGreg Kroah-Hartman * FIXME According to the usermanual the status bits in the status register 6ab4382d2SGreg Kroah-Hartman * are only updated when the peripherals access the FIFO and not when the 7ab4382d2SGreg Kroah-Hartman * CPU access them. So since we use this bits to know when we stop writing 8ab4382d2SGreg Kroah-Hartman * and reading, they may not be updated in-time and a race condition may 9ab4382d2SGreg Kroah-Hartman * exists. But I haven't be able to prove this and I don't care. But if 10ab4382d2SGreg Kroah-Hartman * any problem arises, it might worth checking. The TX/RX FIFO Stats 11ab4382d2SGreg Kroah-Hartman * registers should be used in addition. 12ab4382d2SGreg Kroah-Hartman * Update: Actually, they seem updated ... At least the bits we use. 13ab4382d2SGreg Kroah-Hartman * 14ab4382d2SGreg Kroah-Hartman * 15ab4382d2SGreg Kroah-Hartman * Maintainer : Sylvain Munaut <tnt@246tNt.com> 16ab4382d2SGreg Kroah-Hartman * 17ab4382d2SGreg Kroah-Hartman * Some of the code has been inspired/copied from the 2.4 code written 18ab4382d2SGreg Kroah-Hartman * by Dale Farnsworth <dfarnsworth@mvista.com>. 19ab4382d2SGreg Kroah-Hartman * 20ab4382d2SGreg Kroah-Hartman * Copyright (C) 2008 Freescale Semiconductor Inc. 21ab4382d2SGreg Kroah-Hartman * John Rigby <jrigby@gmail.com> 22ab4382d2SGreg Kroah-Hartman * Added support for MPC5121 23ab4382d2SGreg Kroah-Hartman * Copyright (C) 2006 Secret Lab Technologies Ltd. 24ab4382d2SGreg Kroah-Hartman * Grant Likely <grant.likely@secretlab.ca> 25ab4382d2SGreg Kroah-Hartman * Copyright (C) 2004-2006 Sylvain Munaut <tnt@246tNt.com> 26ab4382d2SGreg Kroah-Hartman * Copyright (C) 2003 MontaVista, Software, Inc. 27ab4382d2SGreg Kroah-Hartman */ 28ab4382d2SGreg Kroah-Hartman 29ab4382d2SGreg Kroah-Hartman #undef DEBUG 30ab4382d2SGreg Kroah-Hartman 31ab4382d2SGreg Kroah-Hartman #include <linux/device.h> 32ab4382d2SGreg Kroah-Hartman #include <linux/module.h> 33ab4382d2SGreg Kroah-Hartman #include <linux/tty.h> 34ee160a38SJiri Slaby #include <linux/tty_flip.h> 35ab4382d2SGreg Kroah-Hartman #include <linux/serial.h> 36ab4382d2SGreg Kroah-Hartman #include <linux/sysrq.h> 37ab4382d2SGreg Kroah-Hartman #include <linux/console.h> 38ab4382d2SGreg Kroah-Hartman #include <linux/delay.h> 39ab4382d2SGreg Kroah-Hartman #include <linux/io.h> 40ab4382d2SGreg Kroah-Hartman #include <linux/of.h> 41570f749fSChristophe Leroy #include <linux/of_address.h> 42570f749fSChristophe Leroy #include <linux/of_irq.h> 43ab4382d2SGreg Kroah-Hartman #include <linux/of_platform.h> 44ab4382d2SGreg Kroah-Hartman #include <linux/clk.h> 45ab4382d2SGreg Kroah-Hartman 46ab4382d2SGreg Kroah-Hartman #include <asm/mpc52xx.h> 47ab4382d2SGreg Kroah-Hartman #include <asm/mpc52xx_psc.h> 48ab4382d2SGreg Kroah-Hartman 49ab4382d2SGreg Kroah-Hartman #include <linux/serial_core.h> 50ab4382d2SGreg Kroah-Hartman 51ab4382d2SGreg Kroah-Hartman 52ab4382d2SGreg Kroah-Hartman /* We've been assigned a range on the "Low-density serial ports" major */ 53ab4382d2SGreg Kroah-Hartman #define SERIAL_PSC_MAJOR 204 54ab4382d2SGreg Kroah-Hartman #define SERIAL_PSC_MINOR 148 55ab4382d2SGreg Kroah-Hartman 56ab4382d2SGreg Kroah-Hartman 57ab4382d2SGreg Kroah-Hartman #define ISR_PASS_LIMIT 256 /* Max number of iteration in the interrupt */ 58ab4382d2SGreg Kroah-Hartman 59ab4382d2SGreg Kroah-Hartman 60ab4382d2SGreg Kroah-Hartman static struct uart_port mpc52xx_uart_ports[MPC52xx_PSC_MAXNUM]; 61ab4382d2SGreg Kroah-Hartman /* Rem: - We use the read_status_mask as a shadow of 62ab4382d2SGreg Kroah-Hartman * psc->mpc52xx_psc_imr 63ab4382d2SGreg Kroah-Hartman * - It's important that is array is all zero on start as we 64ab4382d2SGreg Kroah-Hartman * use it to know if it's initialized or not ! If it's not sure 65ab4382d2SGreg Kroah-Hartman * it's cleared, then a memset(...,0,...) should be added to 66ab4382d2SGreg Kroah-Hartman * the console_init 67ab4382d2SGreg Kroah-Hartman */ 68ab4382d2SGreg Kroah-Hartman 69ab4382d2SGreg Kroah-Hartman /* lookup table for matching device nodes to index numbers */ 70ab4382d2SGreg Kroah-Hartman static struct device_node *mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM]; 71ab4382d2SGreg Kroah-Hartman 72ab4382d2SGreg Kroah-Hartman static void mpc52xx_uart_of_enumerate(void); 73ab4382d2SGreg Kroah-Hartman 74ab4382d2SGreg Kroah-Hartman 75ab4382d2SGreg Kroah-Hartman #define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase)) 76ab4382d2SGreg Kroah-Hartman 77ab4382d2SGreg Kroah-Hartman 78ab4382d2SGreg Kroah-Hartman /* Forward declaration of the interruption handling routine */ 79ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc52xx_uart_int(int irq, void *dev_id); 80ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc5xxx_uart_process_int(struct uart_port *port); 81ab4382d2SGreg Kroah-Hartman 82ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 83ab4382d2SGreg Kroah-Hartman /* PSC fifo operations for isolating differences between 52xx and 512x */ 84ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 85ab4382d2SGreg Kroah-Hartman 86ab4382d2SGreg Kroah-Hartman struct psc_ops { 87ab4382d2SGreg Kroah-Hartman void (*fifo_init)(struct uart_port *port); 8818662a1dSJiri Slaby unsigned int (*raw_rx_rdy)(struct uart_port *port); 8918662a1dSJiri Slaby unsigned int (*raw_tx_rdy)(struct uart_port *port); 9018662a1dSJiri Slaby unsigned int (*rx_rdy)(struct uart_port *port); 9118662a1dSJiri Slaby unsigned int (*tx_rdy)(struct uart_port *port); 9218662a1dSJiri Slaby unsigned int (*tx_empty)(struct uart_port *port); 93ab4382d2SGreg Kroah-Hartman void (*stop_rx)(struct uart_port *port); 94ab4382d2SGreg Kroah-Hartman void (*start_tx)(struct uart_port *port); 95ab4382d2SGreg Kroah-Hartman void (*stop_tx)(struct uart_port *port); 96ab4382d2SGreg Kroah-Hartman void (*rx_clr_irq)(struct uart_port *port); 97ab4382d2SGreg Kroah-Hartman void (*tx_clr_irq)(struct uart_port *port); 98ab4382d2SGreg Kroah-Hartman void (*write_char)(struct uart_port *port, unsigned char c); 99ab4382d2SGreg Kroah-Hartman unsigned char (*read_char)(struct uart_port *port); 100ab4382d2SGreg Kroah-Hartman void (*cw_disable_ints)(struct uart_port *port); 101ab4382d2SGreg Kroah-Hartman void (*cw_restore_ints)(struct uart_port *port); 102ab4382d2SGreg Kroah-Hartman unsigned int (*set_baudrate)(struct uart_port *port, 103ab4382d2SGreg Kroah-Hartman struct ktermios *new, 104*bec5b814SIlpo Järvinen const struct ktermios *old); 1052d30ccacSGerhard Sittig int (*clock_alloc)(struct uart_port *port); 1062d30ccacSGerhard Sittig void (*clock_relse)(struct uart_port *port); 107ab4382d2SGreg Kroah-Hartman int (*clock)(struct uart_port *port, int enable); 108ab4382d2SGreg Kroah-Hartman int (*fifoc_init)(void); 109ab4382d2SGreg Kroah-Hartman void (*fifoc_uninit)(void); 110ab4382d2SGreg Kroah-Hartman void (*get_irq)(struct uart_port *, struct device_node *); 111ab4382d2SGreg Kroah-Hartman irqreturn_t (*handle_irq)(struct uart_port *port); 1122574b27eSMatteo Facchinetti u16 (*get_status)(struct uart_port *port); 1132574b27eSMatteo Facchinetti u8 (*get_ipcr)(struct uart_port *port); 1142574b27eSMatteo Facchinetti void (*command)(struct uart_port *port, u8 cmd); 1152574b27eSMatteo Facchinetti void (*set_mode)(struct uart_port *port, u8 mr1, u8 mr2); 1162574b27eSMatteo Facchinetti void (*set_rts)(struct uart_port *port, int state); 1172574b27eSMatteo Facchinetti void (*enable_ms)(struct uart_port *port); 1182574b27eSMatteo Facchinetti void (*set_sicr)(struct uart_port *port, u32 val); 1192574b27eSMatteo Facchinetti void (*set_imr)(struct uart_port *port, u16 val); 1202574b27eSMatteo Facchinetti u8 (*get_mr1)(struct uart_port *port); 121ab4382d2SGreg Kroah-Hartman }; 122ab4382d2SGreg Kroah-Hartman 123ab4382d2SGreg Kroah-Hartman /* setting the prescaler and divisor reg is common for all chips */ 124ab4382d2SGreg Kroah-Hartman static inline void mpc52xx_set_divisor(struct mpc52xx_psc __iomem *psc, 125ab4382d2SGreg Kroah-Hartman u16 prescaler, unsigned int divisor) 126ab4382d2SGreg Kroah-Hartman { 127ab4382d2SGreg Kroah-Hartman /* select prescaler */ 128ab4382d2SGreg Kroah-Hartman out_be16(&psc->mpc52xx_psc_clock_select, prescaler); 129ab4382d2SGreg Kroah-Hartman out_8(&psc->ctur, divisor >> 8); 130ab4382d2SGreg Kroah-Hartman out_8(&psc->ctlr, divisor & 0xff); 131ab4382d2SGreg Kroah-Hartman } 132ab4382d2SGreg Kroah-Hartman 1332574b27eSMatteo Facchinetti static u16 mpc52xx_psc_get_status(struct uart_port *port) 1342574b27eSMatteo Facchinetti { 1352574b27eSMatteo Facchinetti return in_be16(&PSC(port)->mpc52xx_psc_status); 1362574b27eSMatteo Facchinetti } 1372574b27eSMatteo Facchinetti 1382574b27eSMatteo Facchinetti static u8 mpc52xx_psc_get_ipcr(struct uart_port *port) 1392574b27eSMatteo Facchinetti { 1402574b27eSMatteo Facchinetti return in_8(&PSC(port)->mpc52xx_psc_ipcr); 1412574b27eSMatteo Facchinetti } 1422574b27eSMatteo Facchinetti 1432574b27eSMatteo Facchinetti static void mpc52xx_psc_command(struct uart_port *port, u8 cmd) 1442574b27eSMatteo Facchinetti { 1452574b27eSMatteo Facchinetti out_8(&PSC(port)->command, cmd); 1462574b27eSMatteo Facchinetti } 1472574b27eSMatteo Facchinetti 1482574b27eSMatteo Facchinetti static void mpc52xx_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2) 1492574b27eSMatteo Facchinetti { 1502574b27eSMatteo Facchinetti out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1); 1512574b27eSMatteo Facchinetti out_8(&PSC(port)->mode, mr1); 1522574b27eSMatteo Facchinetti out_8(&PSC(port)->mode, mr2); 1532574b27eSMatteo Facchinetti } 1542574b27eSMatteo Facchinetti 1552574b27eSMatteo Facchinetti static void mpc52xx_psc_set_rts(struct uart_port *port, int state) 1562574b27eSMatteo Facchinetti { 1572574b27eSMatteo Facchinetti if (state) 1582574b27eSMatteo Facchinetti out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS); 1592574b27eSMatteo Facchinetti else 1602574b27eSMatteo Facchinetti out_8(&PSC(port)->op0, MPC52xx_PSC_OP_RTS); 1612574b27eSMatteo Facchinetti } 1622574b27eSMatteo Facchinetti 1632574b27eSMatteo Facchinetti static void mpc52xx_psc_enable_ms(struct uart_port *port) 1642574b27eSMatteo Facchinetti { 1652574b27eSMatteo Facchinetti struct mpc52xx_psc __iomem *psc = PSC(port); 1662574b27eSMatteo Facchinetti 1672574b27eSMatteo Facchinetti /* clear D_*-bits by reading them */ 1682574b27eSMatteo Facchinetti in_8(&psc->mpc52xx_psc_ipcr); 1692574b27eSMatteo Facchinetti /* enable CTS and DCD as IPC interrupts */ 1702574b27eSMatteo Facchinetti out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD); 1712574b27eSMatteo Facchinetti 1722574b27eSMatteo Facchinetti port->read_status_mask |= MPC52xx_PSC_IMR_IPC; 1732574b27eSMatteo Facchinetti out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); 1742574b27eSMatteo Facchinetti } 1752574b27eSMatteo Facchinetti 1762574b27eSMatteo Facchinetti static void mpc52xx_psc_set_sicr(struct uart_port *port, u32 val) 1772574b27eSMatteo Facchinetti { 1782574b27eSMatteo Facchinetti out_be32(&PSC(port)->sicr, val); 1792574b27eSMatteo Facchinetti } 1802574b27eSMatteo Facchinetti 1812574b27eSMatteo Facchinetti static void mpc52xx_psc_set_imr(struct uart_port *port, u16 val) 1822574b27eSMatteo Facchinetti { 1832574b27eSMatteo Facchinetti out_be16(&PSC(port)->mpc52xx_psc_imr, val); 1842574b27eSMatteo Facchinetti } 1852574b27eSMatteo Facchinetti 1862574b27eSMatteo Facchinetti static u8 mpc52xx_psc_get_mr1(struct uart_port *port) 1872574b27eSMatteo Facchinetti { 1882574b27eSMatteo Facchinetti out_8(&PSC(port)->command, MPC52xx_PSC_SEL_MODE_REG_1); 1892574b27eSMatteo Facchinetti return in_8(&PSC(port)->mode); 1902574b27eSMatteo Facchinetti } 1912574b27eSMatteo Facchinetti 192ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC52xx 193ab4382d2SGreg Kroah-Hartman #define FIFO_52xx(port) ((struct mpc52xx_psc_fifo __iomem *)(PSC(port)+1)) 194ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_fifo_init(struct uart_port *port) 195ab4382d2SGreg Kroah-Hartman { 196ab4382d2SGreg Kroah-Hartman struct mpc52xx_psc __iomem *psc = PSC(port); 197ab4382d2SGreg Kroah-Hartman struct mpc52xx_psc_fifo __iomem *fifo = FIFO_52xx(port); 198ab4382d2SGreg Kroah-Hartman 199ab4382d2SGreg Kroah-Hartman out_8(&fifo->rfcntl, 0x00); 200ab4382d2SGreg Kroah-Hartman out_be16(&fifo->rfalarm, 0x1ff); 201ab4382d2SGreg Kroah-Hartman out_8(&fifo->tfcntl, 0x07); 202ab4382d2SGreg Kroah-Hartman out_be16(&fifo->tfalarm, 0x80); 203ab4382d2SGreg Kroah-Hartman 204ab4382d2SGreg Kroah-Hartman port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY; 205ab4382d2SGreg Kroah-Hartman out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); 206ab4382d2SGreg Kroah-Hartman } 207ab4382d2SGreg Kroah-Hartman 20818662a1dSJiri Slaby static unsigned int mpc52xx_psc_raw_rx_rdy(struct uart_port *port) 209ab4382d2SGreg Kroah-Hartman { 210ab4382d2SGreg Kroah-Hartman return in_be16(&PSC(port)->mpc52xx_psc_status) 211ab4382d2SGreg Kroah-Hartman & MPC52xx_PSC_SR_RXRDY; 212ab4382d2SGreg Kroah-Hartman } 213ab4382d2SGreg Kroah-Hartman 21418662a1dSJiri Slaby static unsigned int mpc52xx_psc_raw_tx_rdy(struct uart_port *port) 215ab4382d2SGreg Kroah-Hartman { 216ab4382d2SGreg Kroah-Hartman return in_be16(&PSC(port)->mpc52xx_psc_status) 217ab4382d2SGreg Kroah-Hartman & MPC52xx_PSC_SR_TXRDY; 218ab4382d2SGreg Kroah-Hartman } 219ab4382d2SGreg Kroah-Hartman 220ab4382d2SGreg Kroah-Hartman 22118662a1dSJiri Slaby static unsigned int mpc52xx_psc_rx_rdy(struct uart_port *port) 222ab4382d2SGreg Kroah-Hartman { 223ab4382d2SGreg Kroah-Hartman return in_be16(&PSC(port)->mpc52xx_psc_isr) 224ab4382d2SGreg Kroah-Hartman & port->read_status_mask 225ab4382d2SGreg Kroah-Hartman & MPC52xx_PSC_IMR_RXRDY; 226ab4382d2SGreg Kroah-Hartman } 227ab4382d2SGreg Kroah-Hartman 22818662a1dSJiri Slaby static unsigned int mpc52xx_psc_tx_rdy(struct uart_port *port) 229ab4382d2SGreg Kroah-Hartman { 230ab4382d2SGreg Kroah-Hartman return in_be16(&PSC(port)->mpc52xx_psc_isr) 231ab4382d2SGreg Kroah-Hartman & port->read_status_mask 232ab4382d2SGreg Kroah-Hartman & MPC52xx_PSC_IMR_TXRDY; 233ab4382d2SGreg Kroah-Hartman } 234ab4382d2SGreg Kroah-Hartman 23518662a1dSJiri Slaby static unsigned int mpc52xx_psc_tx_empty(struct uart_port *port) 236ab4382d2SGreg Kroah-Hartman { 2377d07ada0SUwe Kleine-König u16 sts = in_be16(&PSC(port)->mpc52xx_psc_status); 2387d07ada0SUwe Kleine-König 2397d07ada0SUwe Kleine-König return (sts & MPC52xx_PSC_SR_TXEMP) ? TIOCSER_TEMT : 0; 240ab4382d2SGreg Kroah-Hartman } 241ab4382d2SGreg Kroah-Hartman 242ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_start_tx(struct uart_port *port) 243ab4382d2SGreg Kroah-Hartman { 244ab4382d2SGreg Kroah-Hartman port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY; 245ab4382d2SGreg Kroah-Hartman out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); 246ab4382d2SGreg Kroah-Hartman } 247ab4382d2SGreg Kroah-Hartman 248ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_stop_tx(struct uart_port *port) 249ab4382d2SGreg Kroah-Hartman { 250ab4382d2SGreg Kroah-Hartman port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY; 251ab4382d2SGreg Kroah-Hartman out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); 252ab4382d2SGreg Kroah-Hartman } 253ab4382d2SGreg Kroah-Hartman 254ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_stop_rx(struct uart_port *port) 255ab4382d2SGreg Kroah-Hartman { 256ab4382d2SGreg Kroah-Hartman port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY; 257ab4382d2SGreg Kroah-Hartman out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); 258ab4382d2SGreg Kroah-Hartman } 259ab4382d2SGreg Kroah-Hartman 260ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_rx_clr_irq(struct uart_port *port) 261ab4382d2SGreg Kroah-Hartman { 262ab4382d2SGreg Kroah-Hartman } 263ab4382d2SGreg Kroah-Hartman 264ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_tx_clr_irq(struct uart_port *port) 265ab4382d2SGreg Kroah-Hartman { 266ab4382d2SGreg Kroah-Hartman } 267ab4382d2SGreg Kroah-Hartman 268ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_write_char(struct uart_port *port, unsigned char c) 269ab4382d2SGreg Kroah-Hartman { 270ab4382d2SGreg Kroah-Hartman out_8(&PSC(port)->mpc52xx_psc_buffer_8, c); 271ab4382d2SGreg Kroah-Hartman } 272ab4382d2SGreg Kroah-Hartman 273ab4382d2SGreg Kroah-Hartman static unsigned char mpc52xx_psc_read_char(struct uart_port *port) 274ab4382d2SGreg Kroah-Hartman { 275ab4382d2SGreg Kroah-Hartman return in_8(&PSC(port)->mpc52xx_psc_buffer_8); 276ab4382d2SGreg Kroah-Hartman } 277ab4382d2SGreg Kroah-Hartman 278ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_cw_disable_ints(struct uart_port *port) 279ab4382d2SGreg Kroah-Hartman { 280ab4382d2SGreg Kroah-Hartman out_be16(&PSC(port)->mpc52xx_psc_imr, 0); 281ab4382d2SGreg Kroah-Hartman } 282ab4382d2SGreg Kroah-Hartman 283ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_cw_restore_ints(struct uart_port *port) 284ab4382d2SGreg Kroah-Hartman { 285ab4382d2SGreg Kroah-Hartman out_be16(&PSC(port)->mpc52xx_psc_imr, port->read_status_mask); 286ab4382d2SGreg Kroah-Hartman } 287ab4382d2SGreg Kroah-Hartman 288ab4382d2SGreg Kroah-Hartman static unsigned int mpc5200_psc_set_baudrate(struct uart_port *port, 289ab4382d2SGreg Kroah-Hartman struct ktermios *new, 290*bec5b814SIlpo Järvinen const struct ktermios *old) 291ab4382d2SGreg Kroah-Hartman { 292ab4382d2SGreg Kroah-Hartman unsigned int baud; 293ab4382d2SGreg Kroah-Hartman unsigned int divisor; 294ab4382d2SGreg Kroah-Hartman 295ab4382d2SGreg Kroah-Hartman /* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */ 296ab4382d2SGreg Kroah-Hartman baud = uart_get_baud_rate(port, new, old, 297ab4382d2SGreg Kroah-Hartman port->uartclk / (32 * 0xffff) + 1, 298ab4382d2SGreg Kroah-Hartman port->uartclk / 32); 299ab4382d2SGreg Kroah-Hartman divisor = (port->uartclk + 16 * baud) / (32 * baud); 300ab4382d2SGreg Kroah-Hartman 301ab4382d2SGreg Kroah-Hartman /* enable the /32 prescaler and set the divisor */ 302ab4382d2SGreg Kroah-Hartman mpc52xx_set_divisor(PSC(port), 0xdd00, divisor); 303ab4382d2SGreg Kroah-Hartman return baud; 304ab4382d2SGreg Kroah-Hartman } 305ab4382d2SGreg Kroah-Hartman 306ab4382d2SGreg Kroah-Hartman static unsigned int mpc5200b_psc_set_baudrate(struct uart_port *port, 307ab4382d2SGreg Kroah-Hartman struct ktermios *new, 308*bec5b814SIlpo Järvinen const struct ktermios *old) 309ab4382d2SGreg Kroah-Hartman { 310ab4382d2SGreg Kroah-Hartman unsigned int baud; 311ab4382d2SGreg Kroah-Hartman unsigned int divisor; 312ab4382d2SGreg Kroah-Hartman u16 prescaler; 313ab4382d2SGreg Kroah-Hartman 314ab4382d2SGreg Kroah-Hartman /* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the 315ab4382d2SGreg Kroah-Hartman * ipb freq */ 316ab4382d2SGreg Kroah-Hartman baud = uart_get_baud_rate(port, new, old, 317ab4382d2SGreg Kroah-Hartman port->uartclk / (32 * 0xffff) + 1, 318ab4382d2SGreg Kroah-Hartman port->uartclk / 4); 319ab4382d2SGreg Kroah-Hartman divisor = (port->uartclk + 2 * baud) / (4 * baud); 320ab4382d2SGreg Kroah-Hartman 321e0955aceSFrank Benkert /* select the proper prescaler and set the divisor 322e0955aceSFrank Benkert * prefer high prescaler for more tolerance on low baudrates */ 323e0955aceSFrank Benkert if (divisor > 0xffff || baud <= 115200) { 324ab4382d2SGreg Kroah-Hartman divisor = (divisor + 4) / 8; 325ab4382d2SGreg Kroah-Hartman prescaler = 0xdd00; /* /32 */ 326ab4382d2SGreg Kroah-Hartman } else 327ab4382d2SGreg Kroah-Hartman prescaler = 0xff00; /* /4 */ 328ab4382d2SGreg Kroah-Hartman mpc52xx_set_divisor(PSC(port), prescaler, divisor); 329ab4382d2SGreg Kroah-Hartman return baud; 330ab4382d2SGreg Kroah-Hartman } 331ab4382d2SGreg Kroah-Hartman 332ab4382d2SGreg Kroah-Hartman static void mpc52xx_psc_get_irq(struct uart_port *port, struct device_node *np) 333ab4382d2SGreg Kroah-Hartman { 3349cfb5c05SYong Zhang port->irqflags = 0; 335ab4382d2SGreg Kroah-Hartman port->irq = irq_of_parse_and_map(np, 0); 336ab4382d2SGreg Kroah-Hartman } 337ab4382d2SGreg Kroah-Hartman 338ab4382d2SGreg Kroah-Hartman /* 52xx specific interrupt handler. The caller holds the port lock */ 339ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc52xx_psc_handle_irq(struct uart_port *port) 340ab4382d2SGreg Kroah-Hartman { 341ab4382d2SGreg Kroah-Hartman return mpc5xxx_uart_process_int(port); 342ab4382d2SGreg Kroah-Hartman } 343ab4382d2SGreg Kroah-Hartman 344cc74bd1dSAya Mahfouz static const struct psc_ops mpc52xx_psc_ops = { 345ab4382d2SGreg Kroah-Hartman .fifo_init = mpc52xx_psc_fifo_init, 346ab4382d2SGreg Kroah-Hartman .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy, 347ab4382d2SGreg Kroah-Hartman .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy, 348ab4382d2SGreg Kroah-Hartman .rx_rdy = mpc52xx_psc_rx_rdy, 349ab4382d2SGreg Kroah-Hartman .tx_rdy = mpc52xx_psc_tx_rdy, 350ab4382d2SGreg Kroah-Hartman .tx_empty = mpc52xx_psc_tx_empty, 351ab4382d2SGreg Kroah-Hartman .stop_rx = mpc52xx_psc_stop_rx, 352ab4382d2SGreg Kroah-Hartman .start_tx = mpc52xx_psc_start_tx, 353ab4382d2SGreg Kroah-Hartman .stop_tx = mpc52xx_psc_stop_tx, 354ab4382d2SGreg Kroah-Hartman .rx_clr_irq = mpc52xx_psc_rx_clr_irq, 355ab4382d2SGreg Kroah-Hartman .tx_clr_irq = mpc52xx_psc_tx_clr_irq, 356ab4382d2SGreg Kroah-Hartman .write_char = mpc52xx_psc_write_char, 357ab4382d2SGreg Kroah-Hartman .read_char = mpc52xx_psc_read_char, 358ab4382d2SGreg Kroah-Hartman .cw_disable_ints = mpc52xx_psc_cw_disable_ints, 359ab4382d2SGreg Kroah-Hartman .cw_restore_ints = mpc52xx_psc_cw_restore_ints, 360ab4382d2SGreg Kroah-Hartman .set_baudrate = mpc5200_psc_set_baudrate, 361ab4382d2SGreg Kroah-Hartman .get_irq = mpc52xx_psc_get_irq, 362ab4382d2SGreg Kroah-Hartman .handle_irq = mpc52xx_psc_handle_irq, 3632574b27eSMatteo Facchinetti .get_status = mpc52xx_psc_get_status, 3642574b27eSMatteo Facchinetti .get_ipcr = mpc52xx_psc_get_ipcr, 3652574b27eSMatteo Facchinetti .command = mpc52xx_psc_command, 3662574b27eSMatteo Facchinetti .set_mode = mpc52xx_psc_set_mode, 3672574b27eSMatteo Facchinetti .set_rts = mpc52xx_psc_set_rts, 3682574b27eSMatteo Facchinetti .enable_ms = mpc52xx_psc_enable_ms, 3692574b27eSMatteo Facchinetti .set_sicr = mpc52xx_psc_set_sicr, 3702574b27eSMatteo Facchinetti .set_imr = mpc52xx_psc_set_imr, 3712574b27eSMatteo Facchinetti .get_mr1 = mpc52xx_psc_get_mr1, 372ab4382d2SGreg Kroah-Hartman }; 373ab4382d2SGreg Kroah-Hartman 374cc74bd1dSAya Mahfouz static const struct psc_ops mpc5200b_psc_ops = { 375ab4382d2SGreg Kroah-Hartman .fifo_init = mpc52xx_psc_fifo_init, 376ab4382d2SGreg Kroah-Hartman .raw_rx_rdy = mpc52xx_psc_raw_rx_rdy, 377ab4382d2SGreg Kroah-Hartman .raw_tx_rdy = mpc52xx_psc_raw_tx_rdy, 378ab4382d2SGreg Kroah-Hartman .rx_rdy = mpc52xx_psc_rx_rdy, 379ab4382d2SGreg Kroah-Hartman .tx_rdy = mpc52xx_psc_tx_rdy, 380ab4382d2SGreg Kroah-Hartman .tx_empty = mpc52xx_psc_tx_empty, 381ab4382d2SGreg Kroah-Hartman .stop_rx = mpc52xx_psc_stop_rx, 382ab4382d2SGreg Kroah-Hartman .start_tx = mpc52xx_psc_start_tx, 383ab4382d2SGreg Kroah-Hartman .stop_tx = mpc52xx_psc_stop_tx, 384ab4382d2SGreg Kroah-Hartman .rx_clr_irq = mpc52xx_psc_rx_clr_irq, 385ab4382d2SGreg Kroah-Hartman .tx_clr_irq = mpc52xx_psc_tx_clr_irq, 386ab4382d2SGreg Kroah-Hartman .write_char = mpc52xx_psc_write_char, 387ab4382d2SGreg Kroah-Hartman .read_char = mpc52xx_psc_read_char, 388ab4382d2SGreg Kroah-Hartman .cw_disable_ints = mpc52xx_psc_cw_disable_ints, 389ab4382d2SGreg Kroah-Hartman .cw_restore_ints = mpc52xx_psc_cw_restore_ints, 390ab4382d2SGreg Kroah-Hartman .set_baudrate = mpc5200b_psc_set_baudrate, 391ab4382d2SGreg Kroah-Hartman .get_irq = mpc52xx_psc_get_irq, 392ab4382d2SGreg Kroah-Hartman .handle_irq = mpc52xx_psc_handle_irq, 3932574b27eSMatteo Facchinetti .get_status = mpc52xx_psc_get_status, 3942574b27eSMatteo Facchinetti .get_ipcr = mpc52xx_psc_get_ipcr, 3952574b27eSMatteo Facchinetti .command = mpc52xx_psc_command, 3962574b27eSMatteo Facchinetti .set_mode = mpc52xx_psc_set_mode, 3972574b27eSMatteo Facchinetti .set_rts = mpc52xx_psc_set_rts, 3982574b27eSMatteo Facchinetti .enable_ms = mpc52xx_psc_enable_ms, 3992574b27eSMatteo Facchinetti .set_sicr = mpc52xx_psc_set_sicr, 4002574b27eSMatteo Facchinetti .set_imr = mpc52xx_psc_set_imr, 4012574b27eSMatteo Facchinetti .get_mr1 = mpc52xx_psc_get_mr1, 402ab4382d2SGreg Kroah-Hartman }; 403ab4382d2SGreg Kroah-Hartman 4045b84c967SValentin Rothberg #endif /* CONFIG_PPC_MPC52xx */ 405ab4382d2SGreg Kroah-Hartman 406ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC512x 407ab4382d2SGreg Kroah-Hartman #define FIFO_512x(port) ((struct mpc512x_psc_fifo __iomem *)(PSC(port)+1)) 408ab4382d2SGreg Kroah-Hartman 409ab4382d2SGreg Kroah-Hartman /* PSC FIFO Controller for mpc512x */ 410ab4382d2SGreg Kroah-Hartman struct psc_fifoc { 411ab4382d2SGreg Kroah-Hartman u32 fifoc_cmd; 412ab4382d2SGreg Kroah-Hartman u32 fifoc_int; 413ab4382d2SGreg Kroah-Hartman u32 fifoc_dma; 414ab4382d2SGreg Kroah-Hartman u32 fifoc_axe; 415ab4382d2SGreg Kroah-Hartman u32 fifoc_debug; 416ab4382d2SGreg Kroah-Hartman }; 417ab4382d2SGreg Kroah-Hartman 418ab4382d2SGreg Kroah-Hartman static struct psc_fifoc __iomem *psc_fifoc; 419ab4382d2SGreg Kroah-Hartman static unsigned int psc_fifoc_irq; 420cb1ea812SGerhard Sittig static struct clk *psc_fifoc_clk; 421ab4382d2SGreg Kroah-Hartman 422ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_fifo_init(struct uart_port *port) 423ab4382d2SGreg Kroah-Hartman { 424ab4382d2SGreg Kroah-Hartman /* /32 prescaler */ 425ab4382d2SGreg Kroah-Hartman out_be16(&PSC(port)->mpc52xx_psc_clock_select, 0xdd00); 426ab4382d2SGreg Kroah-Hartman 427ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE); 428ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); 429ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->txalarm, 1); 430ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->tximr, 0); 431ab4382d2SGreg Kroah-Hartman 432ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE); 433ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); 434ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rxalarm, 1); 435ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rximr, 0); 436ab4382d2SGreg Kroah-Hartman 437ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->tximr, MPC512x_PSC_FIFO_ALARM); 438ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rximr, MPC512x_PSC_FIFO_ALARM); 439ab4382d2SGreg Kroah-Hartman } 440ab4382d2SGreg Kroah-Hartman 441dbf3f093SJiri Slaby static unsigned int mpc512x_psc_raw_rx_rdy(struct uart_port *port) 442ab4382d2SGreg Kroah-Hartman { 443ab4382d2SGreg Kroah-Hartman return !(in_be32(&FIFO_512x(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY); 444ab4382d2SGreg Kroah-Hartman } 445ab4382d2SGreg Kroah-Hartman 446dbf3f093SJiri Slaby static unsigned int mpc512x_psc_raw_tx_rdy(struct uart_port *port) 447ab4382d2SGreg Kroah-Hartman { 448ab4382d2SGreg Kroah-Hartman return !(in_be32(&FIFO_512x(port)->txsr) & MPC512x_PSC_FIFO_FULL); 449ab4382d2SGreg Kroah-Hartman } 450ab4382d2SGreg Kroah-Hartman 451dbf3f093SJiri Slaby static unsigned int mpc512x_psc_rx_rdy(struct uart_port *port) 452ab4382d2SGreg Kroah-Hartman { 453ab4382d2SGreg Kroah-Hartman return in_be32(&FIFO_512x(port)->rxsr) 454ab4382d2SGreg Kroah-Hartman & in_be32(&FIFO_512x(port)->rximr) 455ab4382d2SGreg Kroah-Hartman & MPC512x_PSC_FIFO_ALARM; 456ab4382d2SGreg Kroah-Hartman } 457ab4382d2SGreg Kroah-Hartman 458dbf3f093SJiri Slaby static unsigned int mpc512x_psc_tx_rdy(struct uart_port *port) 459ab4382d2SGreg Kroah-Hartman { 460ab4382d2SGreg Kroah-Hartman return in_be32(&FIFO_512x(port)->txsr) 461ab4382d2SGreg Kroah-Hartman & in_be32(&FIFO_512x(port)->tximr) 462ab4382d2SGreg Kroah-Hartman & MPC512x_PSC_FIFO_ALARM; 463ab4382d2SGreg Kroah-Hartman } 464ab4382d2SGreg Kroah-Hartman 465dbf3f093SJiri Slaby static unsigned int mpc512x_psc_tx_empty(struct uart_port *port) 466ab4382d2SGreg Kroah-Hartman { 467ab4382d2SGreg Kroah-Hartman return in_be32(&FIFO_512x(port)->txsr) 468ab4382d2SGreg Kroah-Hartman & MPC512x_PSC_FIFO_EMPTY; 469ab4382d2SGreg Kroah-Hartman } 470ab4382d2SGreg Kroah-Hartman 471ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_stop_rx(struct uart_port *port) 472ab4382d2SGreg Kroah-Hartman { 473ab4382d2SGreg Kroah-Hartman unsigned long rx_fifo_imr; 474ab4382d2SGreg Kroah-Hartman 475ab4382d2SGreg Kroah-Hartman rx_fifo_imr = in_be32(&FIFO_512x(port)->rximr); 476ab4382d2SGreg Kroah-Hartman rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; 477ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rximr, rx_fifo_imr); 478ab4382d2SGreg Kroah-Hartman } 479ab4382d2SGreg Kroah-Hartman 480ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_start_tx(struct uart_port *port) 481ab4382d2SGreg Kroah-Hartman { 482ab4382d2SGreg Kroah-Hartman unsigned long tx_fifo_imr; 483ab4382d2SGreg Kroah-Hartman 484ab4382d2SGreg Kroah-Hartman tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr); 485ab4382d2SGreg Kroah-Hartman tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM; 486ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr); 487ab4382d2SGreg Kroah-Hartman } 488ab4382d2SGreg Kroah-Hartman 489ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_stop_tx(struct uart_port *port) 490ab4382d2SGreg Kroah-Hartman { 491ab4382d2SGreg Kroah-Hartman unsigned long tx_fifo_imr; 492ab4382d2SGreg Kroah-Hartman 493ab4382d2SGreg Kroah-Hartman tx_fifo_imr = in_be32(&FIFO_512x(port)->tximr); 494ab4382d2SGreg Kroah-Hartman tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; 495ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->tximr, tx_fifo_imr); 496ab4382d2SGreg Kroah-Hartman } 497ab4382d2SGreg Kroah-Hartman 498ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_rx_clr_irq(struct uart_port *port) 499ab4382d2SGreg Kroah-Hartman { 500ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rxisr, in_be32(&FIFO_512x(port)->rxisr)); 501ab4382d2SGreg Kroah-Hartman } 502ab4382d2SGreg Kroah-Hartman 503ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_tx_clr_irq(struct uart_port *port) 504ab4382d2SGreg Kroah-Hartman { 505ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->txisr, in_be32(&FIFO_512x(port)->txisr)); 506ab4382d2SGreg Kroah-Hartman } 507ab4382d2SGreg Kroah-Hartman 508ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_write_char(struct uart_port *port, unsigned char c) 509ab4382d2SGreg Kroah-Hartman { 510ab4382d2SGreg Kroah-Hartman out_8(&FIFO_512x(port)->txdata_8, c); 511ab4382d2SGreg Kroah-Hartman } 512ab4382d2SGreg Kroah-Hartman 513ab4382d2SGreg Kroah-Hartman static unsigned char mpc512x_psc_read_char(struct uart_port *port) 514ab4382d2SGreg Kroah-Hartman { 515ab4382d2SGreg Kroah-Hartman return in_8(&FIFO_512x(port)->rxdata_8); 516ab4382d2SGreg Kroah-Hartman } 517ab4382d2SGreg Kroah-Hartman 518ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_cw_disable_ints(struct uart_port *port) 519ab4382d2SGreg Kroah-Hartman { 520ab4382d2SGreg Kroah-Hartman port->read_status_mask = 521ab4382d2SGreg Kroah-Hartman in_be32(&FIFO_512x(port)->tximr) << 16 | 522ab4382d2SGreg Kroah-Hartman in_be32(&FIFO_512x(port)->rximr); 523ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->tximr, 0); 524ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rximr, 0); 525ab4382d2SGreg Kroah-Hartman } 526ab4382d2SGreg Kroah-Hartman 527ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_cw_restore_ints(struct uart_port *port) 528ab4382d2SGreg Kroah-Hartman { 529ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->tximr, 530ab4382d2SGreg Kroah-Hartman (port->read_status_mask >> 16) & 0x7f); 531ab4382d2SGreg Kroah-Hartman out_be32(&FIFO_512x(port)->rximr, port->read_status_mask & 0x7f); 532ab4382d2SGreg Kroah-Hartman } 533ab4382d2SGreg Kroah-Hartman 534ab4382d2SGreg Kroah-Hartman static unsigned int mpc512x_psc_set_baudrate(struct uart_port *port, 535ab4382d2SGreg Kroah-Hartman struct ktermios *new, 536*bec5b814SIlpo Järvinen const struct ktermios *old) 537ab4382d2SGreg Kroah-Hartman { 538ab4382d2SGreg Kroah-Hartman unsigned int baud; 539ab4382d2SGreg Kroah-Hartman unsigned int divisor; 540ab4382d2SGreg Kroah-Hartman 541ab4382d2SGreg Kroah-Hartman /* 542ab4382d2SGreg Kroah-Hartman * The "MPC5121e Microcontroller Reference Manual, Rev. 3" says on 543ab4382d2SGreg Kroah-Hartman * pg. 30-10 that the chip supports a /32 and a /10 prescaler. 544ab4382d2SGreg Kroah-Hartman * Furthermore, it states that "After reset, the prescaler by 10 545ab4382d2SGreg Kroah-Hartman * for the UART mode is selected", but the reset register value is 546ab4382d2SGreg Kroah-Hartman * 0x0000 which means a /32 prescaler. This is wrong. 547ab4382d2SGreg Kroah-Hartman * 548ab4382d2SGreg Kroah-Hartman * In reality using /32 prescaler doesn't work, as it is not supported! 549ab4382d2SGreg Kroah-Hartman * Use /16 or /10 prescaler, see "MPC5121e Hardware Design Guide", 550ab4382d2SGreg Kroah-Hartman * Chapter 4.1 PSC in UART Mode. 551ab4382d2SGreg Kroah-Hartman * Calculate with a /16 prescaler here. 552ab4382d2SGreg Kroah-Hartman */ 553ab4382d2SGreg Kroah-Hartman 554ab4382d2SGreg Kroah-Hartman /* uartclk contains the ips freq */ 555ab4382d2SGreg Kroah-Hartman baud = uart_get_baud_rate(port, new, old, 556ab4382d2SGreg Kroah-Hartman port->uartclk / (16 * 0xffff) + 1, 557ab4382d2SGreg Kroah-Hartman port->uartclk / 16); 558ab4382d2SGreg Kroah-Hartman divisor = (port->uartclk + 8 * baud) / (16 * baud); 559ab4382d2SGreg Kroah-Hartman 560ab4382d2SGreg Kroah-Hartman /* enable the /16 prescaler and set the divisor */ 561ab4382d2SGreg Kroah-Hartman mpc52xx_set_divisor(PSC(port), 0xdd00, divisor); 562ab4382d2SGreg Kroah-Hartman return baud; 563ab4382d2SGreg Kroah-Hartman } 564ab4382d2SGreg Kroah-Hartman 565ab4382d2SGreg Kroah-Hartman /* Init PSC FIFO Controller */ 566ab4382d2SGreg Kroah-Hartman static int __init mpc512x_psc_fifoc_init(void) 567ab4382d2SGreg Kroah-Hartman { 568cb1ea812SGerhard Sittig int err; 569ab4382d2SGreg Kroah-Hartman struct device_node *np; 570cb1ea812SGerhard Sittig struct clk *clk; 571cb1ea812SGerhard Sittig 572cb1ea812SGerhard Sittig /* default error code, potentially overwritten by clock calls */ 573cb1ea812SGerhard Sittig err = -ENODEV; 574ab4382d2SGreg Kroah-Hartman 575ab4382d2SGreg Kroah-Hartman np = of_find_compatible_node(NULL, NULL, 576ab4382d2SGreg Kroah-Hartman "fsl,mpc5121-psc-fifo"); 577ab4382d2SGreg Kroah-Hartman if (!np) { 578ab4382d2SGreg Kroah-Hartman pr_err("%s: Can't find FIFOC node\n", __func__); 579cb1ea812SGerhard Sittig goto out_err; 580ab4382d2SGreg Kroah-Hartman } 581ab4382d2SGreg Kroah-Hartman 582cb1ea812SGerhard Sittig clk = of_clk_get(np, 0); 583cb1ea812SGerhard Sittig if (IS_ERR(clk)) { 584cb1ea812SGerhard Sittig /* backwards compat with device trees that lack clock specs */ 585cb1ea812SGerhard Sittig clk = clk_get_sys(np->name, "ipg"); 586cb1ea812SGerhard Sittig } 587cb1ea812SGerhard Sittig if (IS_ERR(clk)) { 588cb1ea812SGerhard Sittig pr_err("%s: Can't lookup FIFO clock\n", __func__); 589cb1ea812SGerhard Sittig err = PTR_ERR(clk); 590cb1ea812SGerhard Sittig goto out_ofnode_put; 591cb1ea812SGerhard Sittig } 592cb1ea812SGerhard Sittig if (clk_prepare_enable(clk)) { 593cb1ea812SGerhard Sittig pr_err("%s: Can't enable FIFO clock\n", __func__); 594cb1ea812SGerhard Sittig clk_put(clk); 595cb1ea812SGerhard Sittig goto out_ofnode_put; 596cb1ea812SGerhard Sittig } 597cb1ea812SGerhard Sittig psc_fifoc_clk = clk; 598cb1ea812SGerhard Sittig 599ab4382d2SGreg Kroah-Hartman psc_fifoc = of_iomap(np, 0); 600ab4382d2SGreg Kroah-Hartman if (!psc_fifoc) { 601ab4382d2SGreg Kroah-Hartman pr_err("%s: Can't map FIFOC\n", __func__); 602cb1ea812SGerhard Sittig goto out_clk_disable; 603ab4382d2SGreg Kroah-Hartman } 604ab4382d2SGreg Kroah-Hartman 605ab4382d2SGreg Kroah-Hartman psc_fifoc_irq = irq_of_parse_and_map(np, 0); 606d4e33facSAlan Cox if (psc_fifoc_irq == 0) { 607ab4382d2SGreg Kroah-Hartman pr_err("%s: Can't get FIFOC irq\n", __func__); 608cb1ea812SGerhard Sittig goto out_unmap; 609ab4382d2SGreg Kroah-Hartman } 610ab4382d2SGreg Kroah-Hartman 611cb1ea812SGerhard Sittig of_node_put(np); 612ab4382d2SGreg Kroah-Hartman return 0; 613cb1ea812SGerhard Sittig 614cb1ea812SGerhard Sittig out_unmap: 615cb1ea812SGerhard Sittig iounmap(psc_fifoc); 616cb1ea812SGerhard Sittig out_clk_disable: 617cb1ea812SGerhard Sittig clk_disable_unprepare(psc_fifoc_clk); 618cb1ea812SGerhard Sittig clk_put(psc_fifoc_clk); 619cb1ea812SGerhard Sittig out_ofnode_put: 620cb1ea812SGerhard Sittig of_node_put(np); 621cb1ea812SGerhard Sittig out_err: 622cb1ea812SGerhard Sittig return err; 623ab4382d2SGreg Kroah-Hartman } 624ab4382d2SGreg Kroah-Hartman 625ab4382d2SGreg Kroah-Hartman static void __exit mpc512x_psc_fifoc_uninit(void) 626ab4382d2SGreg Kroah-Hartman { 627ab4382d2SGreg Kroah-Hartman iounmap(psc_fifoc); 628cb1ea812SGerhard Sittig 629cb1ea812SGerhard Sittig /* disable the clock, errors are not fatal */ 630cb1ea812SGerhard Sittig if (psc_fifoc_clk) { 631cb1ea812SGerhard Sittig clk_disable_unprepare(psc_fifoc_clk); 632cb1ea812SGerhard Sittig clk_put(psc_fifoc_clk); 633cb1ea812SGerhard Sittig psc_fifoc_clk = NULL; 634cb1ea812SGerhard Sittig } 635ab4382d2SGreg Kroah-Hartman } 636ab4382d2SGreg Kroah-Hartman 637ab4382d2SGreg Kroah-Hartman /* 512x specific interrupt handler. The caller holds the port lock */ 638ab4382d2SGreg Kroah-Hartman static irqreturn_t mpc512x_psc_handle_irq(struct uart_port *port) 639ab4382d2SGreg Kroah-Hartman { 640ab4382d2SGreg Kroah-Hartman unsigned long fifoc_int; 641ab4382d2SGreg Kroah-Hartman int psc_num; 642ab4382d2SGreg Kroah-Hartman 643ab4382d2SGreg Kroah-Hartman /* Read pending PSC FIFOC interrupts */ 644ab4382d2SGreg Kroah-Hartman fifoc_int = in_be32(&psc_fifoc->fifoc_int); 645ab4382d2SGreg Kroah-Hartman 646ab4382d2SGreg Kroah-Hartman /* Check if it is an interrupt for this port */ 647ab4382d2SGreg Kroah-Hartman psc_num = (port->mapbase & 0xf00) >> 8; 648ab4382d2SGreg Kroah-Hartman if (test_bit(psc_num, &fifoc_int) || 649ab4382d2SGreg Kroah-Hartman test_bit(psc_num + 16, &fifoc_int)) 650ab4382d2SGreg Kroah-Hartman return mpc5xxx_uart_process_int(port); 651ab4382d2SGreg Kroah-Hartman 652ab4382d2SGreg Kroah-Hartman return IRQ_NONE; 653ab4382d2SGreg Kroah-Hartman } 654ab4382d2SGreg Kroah-Hartman 6552d30ccacSGerhard Sittig static struct clk *psc_mclk_clk[MPC52xx_PSC_MAXNUM]; 656e149b42bSGerhard Sittig static struct clk *psc_ipg_clk[MPC52xx_PSC_MAXNUM]; 6572d30ccacSGerhard Sittig 6582d30ccacSGerhard Sittig /* called from within the .request_port() callback (allocation) */ 6592d30ccacSGerhard Sittig static int mpc512x_psc_alloc_clock(struct uart_port *port) 660ab4382d2SGreg Kroah-Hartman { 661ab4382d2SGreg Kroah-Hartman int psc_num; 6622d30ccacSGerhard Sittig struct clk *clk; 6632d30ccacSGerhard Sittig int err; 6642d30ccacSGerhard Sittig 6652d30ccacSGerhard Sittig psc_num = (port->mapbase & 0xf00) >> 8; 666e149b42bSGerhard Sittig 667e149b42bSGerhard Sittig clk = devm_clk_get(port->dev, "mclk"); 6682d30ccacSGerhard Sittig if (IS_ERR(clk)) { 6692d30ccacSGerhard Sittig dev_err(port->dev, "Failed to get MCLK!\n"); 670e149b42bSGerhard Sittig err = PTR_ERR(clk); 671e149b42bSGerhard Sittig goto out_err; 6722d30ccacSGerhard Sittig } 6732d30ccacSGerhard Sittig err = clk_prepare_enable(clk); 6742d30ccacSGerhard Sittig if (err) { 6752d30ccacSGerhard Sittig dev_err(port->dev, "Failed to enable MCLK!\n"); 676e149b42bSGerhard Sittig goto out_err; 6772d30ccacSGerhard Sittig } 6782d30ccacSGerhard Sittig psc_mclk_clk[psc_num] = clk; 679e149b42bSGerhard Sittig 680e149b42bSGerhard Sittig clk = devm_clk_get(port->dev, "ipg"); 681e149b42bSGerhard Sittig if (IS_ERR(clk)) { 682e149b42bSGerhard Sittig dev_err(port->dev, "Failed to get IPG clock!\n"); 683e149b42bSGerhard Sittig err = PTR_ERR(clk); 684e149b42bSGerhard Sittig goto out_err; 685e149b42bSGerhard Sittig } 686e149b42bSGerhard Sittig err = clk_prepare_enable(clk); 687e149b42bSGerhard Sittig if (err) { 688e149b42bSGerhard Sittig dev_err(port->dev, "Failed to enable IPG clock!\n"); 689e149b42bSGerhard Sittig goto out_err; 690e149b42bSGerhard Sittig } 691e149b42bSGerhard Sittig psc_ipg_clk[psc_num] = clk; 692e149b42bSGerhard Sittig 6932d30ccacSGerhard Sittig return 0; 694e149b42bSGerhard Sittig 695e149b42bSGerhard Sittig out_err: 696e149b42bSGerhard Sittig if (psc_mclk_clk[psc_num]) { 697e149b42bSGerhard Sittig clk_disable_unprepare(psc_mclk_clk[psc_num]); 698e149b42bSGerhard Sittig psc_mclk_clk[psc_num] = NULL; 699e149b42bSGerhard Sittig } 700e149b42bSGerhard Sittig if (psc_ipg_clk[psc_num]) { 701e149b42bSGerhard Sittig clk_disable_unprepare(psc_ipg_clk[psc_num]); 702e149b42bSGerhard Sittig psc_ipg_clk[psc_num] = NULL; 703e149b42bSGerhard Sittig } 704e149b42bSGerhard Sittig return err; 7052d30ccacSGerhard Sittig } 7062d30ccacSGerhard Sittig 7072d30ccacSGerhard Sittig /* called from within the .release_port() callback (release) */ 7082d30ccacSGerhard Sittig static void mpc512x_psc_relse_clock(struct uart_port *port) 7092d30ccacSGerhard Sittig { 7102d30ccacSGerhard Sittig int psc_num; 7112d30ccacSGerhard Sittig struct clk *clk; 7122d30ccacSGerhard Sittig 7132d30ccacSGerhard Sittig psc_num = (port->mapbase & 0xf00) >> 8; 7142d30ccacSGerhard Sittig clk = psc_mclk_clk[psc_num]; 7152d30ccacSGerhard Sittig if (clk) { 7162d30ccacSGerhard Sittig clk_disable_unprepare(clk); 7172d30ccacSGerhard Sittig psc_mclk_clk[psc_num] = NULL; 7182d30ccacSGerhard Sittig } 719e149b42bSGerhard Sittig if (psc_ipg_clk[psc_num]) { 720e149b42bSGerhard Sittig clk_disable_unprepare(psc_ipg_clk[psc_num]); 721e149b42bSGerhard Sittig psc_ipg_clk[psc_num] = NULL; 722e149b42bSGerhard Sittig } 7232d30ccacSGerhard Sittig } 7242d30ccacSGerhard Sittig 7252d30ccacSGerhard Sittig /* implementation of the .clock() callback (enable/disable) */ 7262d30ccacSGerhard Sittig static int mpc512x_psc_endis_clock(struct uart_port *port, int enable) 7272d30ccacSGerhard Sittig { 7282d30ccacSGerhard Sittig int psc_num; 7292d30ccacSGerhard Sittig struct clk *psc_clk; 7302d30ccacSGerhard Sittig int ret; 731ab4382d2SGreg Kroah-Hartman 732ab4382d2SGreg Kroah-Hartman if (uart_console(port)) 733ab4382d2SGreg Kroah-Hartman return 0; 734ab4382d2SGreg Kroah-Hartman 735ab4382d2SGreg Kroah-Hartman psc_num = (port->mapbase & 0xf00) >> 8; 7362d30ccacSGerhard Sittig psc_clk = psc_mclk_clk[psc_num]; 7372d30ccacSGerhard Sittig if (!psc_clk) { 738ab4382d2SGreg Kroah-Hartman dev_err(port->dev, "Failed to get PSC clock entry!\n"); 739ab4382d2SGreg Kroah-Hartman return -ENODEV; 740ab4382d2SGreg Kroah-Hartman } 741ab4382d2SGreg Kroah-Hartman 7422d30ccacSGerhard Sittig dev_dbg(port->dev, "mclk %sable\n", enable ? "en" : "dis"); 7432d30ccacSGerhard Sittig if (enable) { 7442d30ccacSGerhard Sittig ret = clk_enable(psc_clk); 7452d30ccacSGerhard Sittig if (ret) 7462d30ccacSGerhard Sittig dev_err(port->dev, "Failed to enable MCLK!\n"); 7472d30ccacSGerhard Sittig return ret; 7482d30ccacSGerhard Sittig } else { 749ab4382d2SGreg Kroah-Hartman clk_disable(psc_clk); 750ab4382d2SGreg Kroah-Hartman return 0; 751ab4382d2SGreg Kroah-Hartman } 7522d30ccacSGerhard Sittig } 753ab4382d2SGreg Kroah-Hartman 754ab4382d2SGreg Kroah-Hartman static void mpc512x_psc_get_irq(struct uart_port *port, struct device_node *np) 755ab4382d2SGreg Kroah-Hartman { 756ab4382d2SGreg Kroah-Hartman port->irqflags = IRQF_SHARED; 757ab4382d2SGreg Kroah-Hartman port->irq = psc_fifoc_irq; 758ab4382d2SGreg Kroah-Hartman } 7591f48c499SMatteo Facchinetti 7601f48c499SMatteo Facchinetti #define PSC_5125(port) ((struct mpc5125_psc __iomem *)((port)->membase)) 7611f48c499SMatteo Facchinetti #define FIFO_5125(port) ((struct mpc512x_psc_fifo __iomem *)(PSC_5125(port)+1)) 7621f48c499SMatteo Facchinetti 7631f48c499SMatteo Facchinetti static void mpc5125_psc_fifo_init(struct uart_port *port) 7641f48c499SMatteo Facchinetti { 7651f48c499SMatteo Facchinetti /* /32 prescaler */ 7661f48c499SMatteo Facchinetti out_8(&PSC_5125(port)->mpc52xx_psc_clock_select, 0xdd); 7671f48c499SMatteo Facchinetti 7681f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_RESET_SLICE); 7691f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->txcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); 7701f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->txalarm, 1); 7711f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->tximr, 0); 7721f48c499SMatteo Facchinetti 7731f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_RESET_SLICE); 7741f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rxcmd, MPC512x_PSC_FIFO_ENABLE_SLICE); 7751f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rxalarm, 1); 7761f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rximr, 0); 7771f48c499SMatteo Facchinetti 7781f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->tximr, MPC512x_PSC_FIFO_ALARM); 7791f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rximr, MPC512x_PSC_FIFO_ALARM); 7801f48c499SMatteo Facchinetti } 7811f48c499SMatteo Facchinetti 782dbf3f093SJiri Slaby static unsigned int mpc5125_psc_raw_rx_rdy(struct uart_port *port) 7831f48c499SMatteo Facchinetti { 7841f48c499SMatteo Facchinetti return !(in_be32(&FIFO_5125(port)->rxsr) & MPC512x_PSC_FIFO_EMPTY); 7851f48c499SMatteo Facchinetti } 7861f48c499SMatteo Facchinetti 787dbf3f093SJiri Slaby static unsigned int mpc5125_psc_raw_tx_rdy(struct uart_port *port) 7881f48c499SMatteo Facchinetti { 7891f48c499SMatteo Facchinetti return !(in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_FULL); 7901f48c499SMatteo Facchinetti } 7911f48c499SMatteo Facchinetti 792dbf3f093SJiri Slaby static unsigned int mpc5125_psc_rx_rdy(struct uart_port *port) 7931f48c499SMatteo Facchinetti { 7941f48c499SMatteo Facchinetti return in_be32(&FIFO_5125(port)->rxsr) & 7951f48c499SMatteo Facchinetti in_be32(&FIFO_5125(port)->rximr) & MPC512x_PSC_FIFO_ALARM; 7961f48c499SMatteo Facchinetti } 7971f48c499SMatteo Facchinetti 798dbf3f093SJiri Slaby static unsigned int mpc5125_psc_tx_rdy(struct uart_port *port) 7991f48c499SMatteo Facchinetti { 8001f48c499SMatteo Facchinetti return in_be32(&FIFO_5125(port)->txsr) & 8011f48c499SMatteo Facchinetti in_be32(&FIFO_5125(port)->tximr) & MPC512x_PSC_FIFO_ALARM; 8021f48c499SMatteo Facchinetti } 8031f48c499SMatteo Facchinetti 804dbf3f093SJiri Slaby static unsigned int mpc5125_psc_tx_empty(struct uart_port *port) 8051f48c499SMatteo Facchinetti { 8061f48c499SMatteo Facchinetti return in_be32(&FIFO_5125(port)->txsr) & MPC512x_PSC_FIFO_EMPTY; 8071f48c499SMatteo Facchinetti } 8081f48c499SMatteo Facchinetti 8091f48c499SMatteo Facchinetti static void mpc5125_psc_stop_rx(struct uart_port *port) 8101f48c499SMatteo Facchinetti { 8111f48c499SMatteo Facchinetti unsigned long rx_fifo_imr; 8121f48c499SMatteo Facchinetti 8131f48c499SMatteo Facchinetti rx_fifo_imr = in_be32(&FIFO_5125(port)->rximr); 8141f48c499SMatteo Facchinetti rx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; 8151f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rximr, rx_fifo_imr); 8161f48c499SMatteo Facchinetti } 8171f48c499SMatteo Facchinetti 8181f48c499SMatteo Facchinetti static void mpc5125_psc_start_tx(struct uart_port *port) 8191f48c499SMatteo Facchinetti { 8201f48c499SMatteo Facchinetti unsigned long tx_fifo_imr; 8211f48c499SMatteo Facchinetti 8221f48c499SMatteo Facchinetti tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr); 8231f48c499SMatteo Facchinetti tx_fifo_imr |= MPC512x_PSC_FIFO_ALARM; 8241f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr); 8251f48c499SMatteo Facchinetti } 8261f48c499SMatteo Facchinetti 8271f48c499SMatteo Facchinetti static void mpc5125_psc_stop_tx(struct uart_port *port) 8281f48c499SMatteo Facchinetti { 8291f48c499SMatteo Facchinetti unsigned long tx_fifo_imr; 8301f48c499SMatteo Facchinetti 8311f48c499SMatteo Facchinetti tx_fifo_imr = in_be32(&FIFO_5125(port)->tximr); 8321f48c499SMatteo Facchinetti tx_fifo_imr &= ~MPC512x_PSC_FIFO_ALARM; 8331f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->tximr, tx_fifo_imr); 8341f48c499SMatteo Facchinetti } 8351f48c499SMatteo Facchinetti 8361f48c499SMatteo Facchinetti static void mpc5125_psc_rx_clr_irq(struct uart_port *port) 8371f48c499SMatteo Facchinetti { 8381f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rxisr, in_be32(&FIFO_5125(port)->rxisr)); 8391f48c499SMatteo Facchinetti } 8401f48c499SMatteo Facchinetti 8411f48c499SMatteo Facchinetti static void mpc5125_psc_tx_clr_irq(struct uart_port *port) 8421f48c499SMatteo Facchinetti { 8431f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->txisr, in_be32(&FIFO_5125(port)->txisr)); 8441f48c499SMatteo Facchinetti } 8451f48c499SMatteo Facchinetti 8461f48c499SMatteo Facchinetti static void mpc5125_psc_write_char(struct uart_port *port, unsigned char c) 8471f48c499SMatteo Facchinetti { 8481f48c499SMatteo Facchinetti out_8(&FIFO_5125(port)->txdata_8, c); 8491f48c499SMatteo Facchinetti } 8501f48c499SMatteo Facchinetti 8511f48c499SMatteo Facchinetti static unsigned char mpc5125_psc_read_char(struct uart_port *port) 8521f48c499SMatteo Facchinetti { 8531f48c499SMatteo Facchinetti return in_8(&FIFO_5125(port)->rxdata_8); 8541f48c499SMatteo Facchinetti } 8551f48c499SMatteo Facchinetti 8561f48c499SMatteo Facchinetti static void mpc5125_psc_cw_disable_ints(struct uart_port *port) 8571f48c499SMatteo Facchinetti { 8581f48c499SMatteo Facchinetti port->read_status_mask = 8591f48c499SMatteo Facchinetti in_be32(&FIFO_5125(port)->tximr) << 16 | 8601f48c499SMatteo Facchinetti in_be32(&FIFO_5125(port)->rximr); 8611f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->tximr, 0); 8621f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rximr, 0); 8631f48c499SMatteo Facchinetti } 8641f48c499SMatteo Facchinetti 8651f48c499SMatteo Facchinetti static void mpc5125_psc_cw_restore_ints(struct uart_port *port) 8661f48c499SMatteo Facchinetti { 8671f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->tximr, 8681f48c499SMatteo Facchinetti (port->read_status_mask >> 16) & 0x7f); 8691f48c499SMatteo Facchinetti out_be32(&FIFO_5125(port)->rximr, port->read_status_mask & 0x7f); 8701f48c499SMatteo Facchinetti } 8711f48c499SMatteo Facchinetti 8721f48c499SMatteo Facchinetti static inline void mpc5125_set_divisor(struct mpc5125_psc __iomem *psc, 8731f48c499SMatteo Facchinetti u8 prescaler, unsigned int divisor) 8741f48c499SMatteo Facchinetti { 8751f48c499SMatteo Facchinetti /* select prescaler */ 8761f48c499SMatteo Facchinetti out_8(&psc->mpc52xx_psc_clock_select, prescaler); 8771f48c499SMatteo Facchinetti out_8(&psc->ctur, divisor >> 8); 8781f48c499SMatteo Facchinetti out_8(&psc->ctlr, divisor & 0xff); 8791f48c499SMatteo Facchinetti } 8801f48c499SMatteo Facchinetti 8811f48c499SMatteo Facchinetti static unsigned int mpc5125_psc_set_baudrate(struct uart_port *port, 8821f48c499SMatteo Facchinetti struct ktermios *new, 883*bec5b814SIlpo Järvinen const struct ktermios *old) 8841f48c499SMatteo Facchinetti { 8851f48c499SMatteo Facchinetti unsigned int baud; 8861f48c499SMatteo Facchinetti unsigned int divisor; 8871f48c499SMatteo Facchinetti 8881f48c499SMatteo Facchinetti /* 8891f48c499SMatteo Facchinetti * Calculate with a /16 prescaler here. 8901f48c499SMatteo Facchinetti */ 8911f48c499SMatteo Facchinetti 8921f48c499SMatteo Facchinetti /* uartclk contains the ips freq */ 8931f48c499SMatteo Facchinetti baud = uart_get_baud_rate(port, new, old, 8941f48c499SMatteo Facchinetti port->uartclk / (16 * 0xffff) + 1, 8951f48c499SMatteo Facchinetti port->uartclk / 16); 8961f48c499SMatteo Facchinetti divisor = (port->uartclk + 8 * baud) / (16 * baud); 8971f48c499SMatteo Facchinetti 8981f48c499SMatteo Facchinetti /* enable the /16 prescaler and set the divisor */ 8991f48c499SMatteo Facchinetti mpc5125_set_divisor(PSC_5125(port), 0xdd, divisor); 9001f48c499SMatteo Facchinetti return baud; 9011f48c499SMatteo Facchinetti } 9021f48c499SMatteo Facchinetti 9031f48c499SMatteo Facchinetti /* 9041f48c499SMatteo Facchinetti * MPC5125 have compatible PSC FIFO Controller. 9051f48c499SMatteo Facchinetti * Special init not needed. 9061f48c499SMatteo Facchinetti */ 9071f48c499SMatteo Facchinetti static u16 mpc5125_psc_get_status(struct uart_port *port) 9081f48c499SMatteo Facchinetti { 9091f48c499SMatteo Facchinetti return in_be16(&PSC_5125(port)->mpc52xx_psc_status); 9101f48c499SMatteo Facchinetti } 9111f48c499SMatteo Facchinetti 9121f48c499SMatteo Facchinetti static u8 mpc5125_psc_get_ipcr(struct uart_port *port) 9131f48c499SMatteo Facchinetti { 9141f48c499SMatteo Facchinetti return in_8(&PSC_5125(port)->mpc52xx_psc_ipcr); 9151f48c499SMatteo Facchinetti } 9161f48c499SMatteo Facchinetti 9171f48c499SMatteo Facchinetti static void mpc5125_psc_command(struct uart_port *port, u8 cmd) 9181f48c499SMatteo Facchinetti { 9191f48c499SMatteo Facchinetti out_8(&PSC_5125(port)->command, cmd); 9201f48c499SMatteo Facchinetti } 9211f48c499SMatteo Facchinetti 9221f48c499SMatteo Facchinetti static void mpc5125_psc_set_mode(struct uart_port *port, u8 mr1, u8 mr2) 9231f48c499SMatteo Facchinetti { 9241f48c499SMatteo Facchinetti out_8(&PSC_5125(port)->mr1, mr1); 9251f48c499SMatteo Facchinetti out_8(&PSC_5125(port)->mr2, mr2); 9261f48c499SMatteo Facchinetti } 9271f48c499SMatteo Facchinetti 9281f48c499SMatteo Facchinetti static void mpc5125_psc_set_rts(struct uart_port *port, int state) 9291f48c499SMatteo Facchinetti { 9301f48c499SMatteo Facchinetti if (state & TIOCM_RTS) 9311f48c499SMatteo Facchinetti out_8(&PSC_5125(port)->op1, MPC52xx_PSC_OP_RTS); 9321f48c499SMatteo Facchinetti else 9331f48c499SMatteo Facchinetti out_8(&PSC_5125(port)->op0, MPC52xx_PSC_OP_RTS); 9341f48c499SMatteo Facchinetti } 9351f48c499SMatteo Facchinetti 9361f48c499SMatteo Facchinetti static void mpc5125_psc_enable_ms(struct uart_port *port) 9371f48c499SMatteo Facchinetti { 9381f48c499SMatteo Facchinetti struct mpc5125_psc __iomem *psc = PSC_5125(port); 9391f48c499SMatteo Facchinetti 9401f48c499SMatteo Facchinetti /* clear D_*-bits by reading them */ 9411f48c499SMatteo Facchinetti in_8(&psc->mpc52xx_psc_ipcr); 9421f48c499SMatteo Facchinetti /* enable CTS and DCD as IPC interrupts */ 9431f48c499SMatteo Facchinetti out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD); 9441f48c499SMatteo Facchinetti 9451f48c499SMatteo Facchinetti port->read_status_mask |= MPC52xx_PSC_IMR_IPC; 9461f48c499SMatteo Facchinetti out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask); 9471f48c499SMatteo Facchinetti } 9481f48c499SMatteo Facchinetti 9491f48c499SMatteo Facchinetti static void mpc5125_psc_set_sicr(struct uart_port *port, u32 val) 9501f48c499SMatteo Facchinetti { 9511f48c499SMatteo Facchinetti out_be32(&PSC_5125(port)->sicr, val); 9521f48c499SMatteo Facchinetti } 9531f48c499SMatteo Facchinetti 9541f48c499SMatteo Facchinetti static void mpc5125_psc_set_imr(struct uart_port *port, u16 val) 9551f48c499SMatteo Facchinetti { 9561f48c499SMatteo Facchinetti out_be16(&PSC_5125(port)->mpc52xx_psc_imr, val); 9571f48c499SMatteo Facchinetti } 9581f48c499SMatteo Facchinetti 9591f48c499SMatteo Facchinetti static u8 mpc5125_psc_get_mr1(struct uart_port *port) 9601f48c499SMatteo Facchinetti { 9611f48c499SMatteo Facchinetti return in_8(&PSC_5125(port)->mr1); 9621f48c499SMatteo Facchinetti } 9631f48c499SMatteo Facchinetti 964cc74bd1dSAya Mahfouz static const struct psc_ops mpc5125_psc_ops = { 9651f48c499SMatteo Facchinetti .fifo_init = mpc5125_psc_fifo_init, 9661f48c499SMatteo Facchinetti .raw_rx_rdy = mpc5125_psc_raw_rx_rdy, 9671f48c499SMatteo Facchinetti .raw_tx_rdy = mpc5125_psc_raw_tx_rdy, 9681f48c499SMatteo Facchinetti .rx_rdy = mpc5125_psc_rx_rdy, 9691f48c499SMatteo Facchinetti .tx_rdy = mpc5125_psc_tx_rdy, 9701f48c499SMatteo Facchinetti .tx_empty = mpc5125_psc_tx_empty, 9711f48c499SMatteo Facchinetti .stop_rx = mpc5125_psc_stop_rx, 9721f48c499SMatteo Facchinetti .start_tx = mpc5125_psc_start_tx, 9731f48c499SMatteo Facchinetti .stop_tx = mpc5125_psc_stop_tx, 9741f48c499SMatteo Facchinetti .rx_clr_irq = mpc5125_psc_rx_clr_irq, 9751f48c499SMatteo Facchinetti .tx_clr_irq = mpc5125_psc_tx_clr_irq, 9761f48c499SMatteo Facchinetti .write_char = mpc5125_psc_write_char, 9771f48c499SMatteo Facchinetti .read_char = mpc5125_psc_read_char, 9781f48c499SMatteo Facchinetti .cw_disable_ints = mpc5125_psc_cw_disable_ints, 9791f48c499SMatteo Facchinetti .cw_restore_ints = mpc5125_psc_cw_restore_ints, 9801f48c499SMatteo Facchinetti .set_baudrate = mpc5125_psc_set_baudrate, 9812d30ccacSGerhard Sittig .clock_alloc = mpc512x_psc_alloc_clock, 9822d30ccacSGerhard Sittig .clock_relse = mpc512x_psc_relse_clock, 9832d30ccacSGerhard Sittig .clock = mpc512x_psc_endis_clock, 9841f48c499SMatteo Facchinetti .fifoc_init = mpc512x_psc_fifoc_init, 9851f48c499SMatteo Facchinetti .fifoc_uninit = mpc512x_psc_fifoc_uninit, 9861f48c499SMatteo Facchinetti .get_irq = mpc512x_psc_get_irq, 9871f48c499SMatteo Facchinetti .handle_irq = mpc512x_psc_handle_irq, 9881f48c499SMatteo Facchinetti .get_status = mpc5125_psc_get_status, 9891f48c499SMatteo Facchinetti .get_ipcr = mpc5125_psc_get_ipcr, 9901f48c499SMatteo Facchinetti .command = mpc5125_psc_command, 9911f48c499SMatteo Facchinetti .set_mode = mpc5125_psc_set_mode, 9921f48c499SMatteo Facchinetti .set_rts = mpc5125_psc_set_rts, 9931f48c499SMatteo Facchinetti .enable_ms = mpc5125_psc_enable_ms, 9941f48c499SMatteo Facchinetti .set_sicr = mpc5125_psc_set_sicr, 9951f48c499SMatteo Facchinetti .set_imr = mpc5125_psc_set_imr, 9961f48c499SMatteo Facchinetti .get_mr1 = mpc5125_psc_get_mr1, 9971f48c499SMatteo Facchinetti }; 998ab4382d2SGreg Kroah-Hartman 999cc74bd1dSAya Mahfouz static const struct psc_ops mpc512x_psc_ops = { 1000ab4382d2SGreg Kroah-Hartman .fifo_init = mpc512x_psc_fifo_init, 1001ab4382d2SGreg Kroah-Hartman .raw_rx_rdy = mpc512x_psc_raw_rx_rdy, 1002ab4382d2SGreg Kroah-Hartman .raw_tx_rdy = mpc512x_psc_raw_tx_rdy, 1003ab4382d2SGreg Kroah-Hartman .rx_rdy = mpc512x_psc_rx_rdy, 1004ab4382d2SGreg Kroah-Hartman .tx_rdy = mpc512x_psc_tx_rdy, 1005ab4382d2SGreg Kroah-Hartman .tx_empty = mpc512x_psc_tx_empty, 1006ab4382d2SGreg Kroah-Hartman .stop_rx = mpc512x_psc_stop_rx, 1007ab4382d2SGreg Kroah-Hartman .start_tx = mpc512x_psc_start_tx, 1008ab4382d2SGreg Kroah-Hartman .stop_tx = mpc512x_psc_stop_tx, 1009ab4382d2SGreg Kroah-Hartman .rx_clr_irq = mpc512x_psc_rx_clr_irq, 1010ab4382d2SGreg Kroah-Hartman .tx_clr_irq = mpc512x_psc_tx_clr_irq, 1011ab4382d2SGreg Kroah-Hartman .write_char = mpc512x_psc_write_char, 1012ab4382d2SGreg Kroah-Hartman .read_char = mpc512x_psc_read_char, 1013ab4382d2SGreg Kroah-Hartman .cw_disable_ints = mpc512x_psc_cw_disable_ints, 1014ab4382d2SGreg Kroah-Hartman .cw_restore_ints = mpc512x_psc_cw_restore_ints, 1015ab4382d2SGreg Kroah-Hartman .set_baudrate = mpc512x_psc_set_baudrate, 10162d30ccacSGerhard Sittig .clock_alloc = mpc512x_psc_alloc_clock, 10172d30ccacSGerhard Sittig .clock_relse = mpc512x_psc_relse_clock, 10182d30ccacSGerhard Sittig .clock = mpc512x_psc_endis_clock, 1019ab4382d2SGreg Kroah-Hartman .fifoc_init = mpc512x_psc_fifoc_init, 1020ab4382d2SGreg Kroah-Hartman .fifoc_uninit = mpc512x_psc_fifoc_uninit, 1021ab4382d2SGreg Kroah-Hartman .get_irq = mpc512x_psc_get_irq, 1022ab4382d2SGreg Kroah-Hartman .handle_irq = mpc512x_psc_handle_irq, 10232574b27eSMatteo Facchinetti .get_status = mpc52xx_psc_get_status, 10242574b27eSMatteo Facchinetti .get_ipcr = mpc52xx_psc_get_ipcr, 10252574b27eSMatteo Facchinetti .command = mpc52xx_psc_command, 10262574b27eSMatteo Facchinetti .set_mode = mpc52xx_psc_set_mode, 10272574b27eSMatteo Facchinetti .set_rts = mpc52xx_psc_set_rts, 10282574b27eSMatteo Facchinetti .enable_ms = mpc52xx_psc_enable_ms, 10292574b27eSMatteo Facchinetti .set_sicr = mpc52xx_psc_set_sicr, 10302574b27eSMatteo Facchinetti .set_imr = mpc52xx_psc_set_imr, 10312574b27eSMatteo Facchinetti .get_mr1 = mpc52xx_psc_get_mr1, 1032ab4382d2SGreg Kroah-Hartman }; 10332574b27eSMatteo Facchinetti #endif /* CONFIG_PPC_MPC512x */ 10342574b27eSMatteo Facchinetti 1035ab4382d2SGreg Kroah-Hartman 103676d28e44SUwe Kleine-König static const struct psc_ops *psc_ops; 1037ab4382d2SGreg Kroah-Hartman 1038ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1039ab4382d2SGreg Kroah-Hartman /* UART operations */ 1040ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1041ab4382d2SGreg Kroah-Hartman 1042ab4382d2SGreg Kroah-Hartman static unsigned int 1043ab4382d2SGreg Kroah-Hartman mpc52xx_uart_tx_empty(struct uart_port *port) 1044ab4382d2SGreg Kroah-Hartman { 1045ab4382d2SGreg Kroah-Hartman return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0; 1046ab4382d2SGreg Kroah-Hartman } 1047ab4382d2SGreg Kroah-Hartman 1048ab4382d2SGreg Kroah-Hartman static void 1049ab4382d2SGreg Kroah-Hartman mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) 1050ab4382d2SGreg Kroah-Hartman { 10512574b27eSMatteo Facchinetti psc_ops->set_rts(port, mctrl & TIOCM_RTS); 1052ab4382d2SGreg Kroah-Hartman } 1053ab4382d2SGreg Kroah-Hartman 1054ab4382d2SGreg Kroah-Hartman static unsigned int 1055ab4382d2SGreg Kroah-Hartman mpc52xx_uart_get_mctrl(struct uart_port *port) 1056ab4382d2SGreg Kroah-Hartman { 1057ab4382d2SGreg Kroah-Hartman unsigned int ret = TIOCM_DSR; 10582574b27eSMatteo Facchinetti u8 status = psc_ops->get_ipcr(port); 1059ab4382d2SGreg Kroah-Hartman 1060ab4382d2SGreg Kroah-Hartman if (!(status & MPC52xx_PSC_CTS)) 1061ab4382d2SGreg Kroah-Hartman ret |= TIOCM_CTS; 1062ab4382d2SGreg Kroah-Hartman if (!(status & MPC52xx_PSC_DCD)) 1063ab4382d2SGreg Kroah-Hartman ret |= TIOCM_CAR; 1064ab4382d2SGreg Kroah-Hartman 1065ab4382d2SGreg Kroah-Hartman return ret; 1066ab4382d2SGreg Kroah-Hartman } 1067ab4382d2SGreg Kroah-Hartman 1068ab4382d2SGreg Kroah-Hartman static void 1069ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_tx(struct uart_port *port) 1070ab4382d2SGreg Kroah-Hartman { 1071ab4382d2SGreg Kroah-Hartman /* port->lock taken by caller */ 1072ab4382d2SGreg Kroah-Hartman psc_ops->stop_tx(port); 1073ab4382d2SGreg Kroah-Hartman } 1074ab4382d2SGreg Kroah-Hartman 1075ab4382d2SGreg Kroah-Hartman static void 1076ab4382d2SGreg Kroah-Hartman mpc52xx_uart_start_tx(struct uart_port *port) 1077ab4382d2SGreg Kroah-Hartman { 1078ab4382d2SGreg Kroah-Hartman /* port->lock taken by caller */ 1079ab4382d2SGreg Kroah-Hartman psc_ops->start_tx(port); 1080ab4382d2SGreg Kroah-Hartman } 1081ab4382d2SGreg Kroah-Hartman 1082ab4382d2SGreg Kroah-Hartman static void 1083ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_rx(struct uart_port *port) 1084ab4382d2SGreg Kroah-Hartman { 1085ab4382d2SGreg Kroah-Hartman /* port->lock taken by caller */ 1086ab4382d2SGreg Kroah-Hartman psc_ops->stop_rx(port); 1087ab4382d2SGreg Kroah-Hartman } 1088ab4382d2SGreg Kroah-Hartman 1089ab4382d2SGreg Kroah-Hartman static void 1090ab4382d2SGreg Kroah-Hartman mpc52xx_uart_enable_ms(struct uart_port *port) 1091ab4382d2SGreg Kroah-Hartman { 10922574b27eSMatteo Facchinetti psc_ops->enable_ms(port); 1093ab4382d2SGreg Kroah-Hartman } 1094ab4382d2SGreg Kroah-Hartman 1095ab4382d2SGreg Kroah-Hartman static void 1096ab4382d2SGreg Kroah-Hartman mpc52xx_uart_break_ctl(struct uart_port *port, int ctl) 1097ab4382d2SGreg Kroah-Hartman { 1098ab4382d2SGreg Kroah-Hartman unsigned long flags; 1099ab4382d2SGreg Kroah-Hartman spin_lock_irqsave(&port->lock, flags); 1100ab4382d2SGreg Kroah-Hartman 1101ab4382d2SGreg Kroah-Hartman if (ctl == -1) 11022574b27eSMatteo Facchinetti psc_ops->command(port, MPC52xx_PSC_START_BRK); 1103ab4382d2SGreg Kroah-Hartman else 11042574b27eSMatteo Facchinetti psc_ops->command(port, MPC52xx_PSC_STOP_BRK); 1105ab4382d2SGreg Kroah-Hartman 1106ab4382d2SGreg Kroah-Hartman spin_unlock_irqrestore(&port->lock, flags); 1107ab4382d2SGreg Kroah-Hartman } 1108ab4382d2SGreg Kroah-Hartman 1109ab4382d2SGreg Kroah-Hartman static int 1110ab4382d2SGreg Kroah-Hartman mpc52xx_uart_startup(struct uart_port *port) 1111ab4382d2SGreg Kroah-Hartman { 1112ab4382d2SGreg Kroah-Hartman int ret; 1113ab4382d2SGreg Kroah-Hartman 1114ab4382d2SGreg Kroah-Hartman if (psc_ops->clock) { 1115ab4382d2SGreg Kroah-Hartman ret = psc_ops->clock(port, 1); 1116ab4382d2SGreg Kroah-Hartman if (ret) 1117ab4382d2SGreg Kroah-Hartman return ret; 1118ab4382d2SGreg Kroah-Hartman } 1119ab4382d2SGreg Kroah-Hartman 1120ab4382d2SGreg Kroah-Hartman /* Request IRQ */ 1121ab4382d2SGreg Kroah-Hartman ret = request_irq(port->irq, mpc52xx_uart_int, 1122ab4382d2SGreg Kroah-Hartman port->irqflags, "mpc52xx_psc_uart", port); 1123ab4382d2SGreg Kroah-Hartman if (ret) 1124ab4382d2SGreg Kroah-Hartman return ret; 1125ab4382d2SGreg Kroah-Hartman 1126ab4382d2SGreg Kroah-Hartman /* Reset/activate the port, clear and enable interrupts */ 11272574b27eSMatteo Facchinetti psc_ops->command(port, MPC52xx_PSC_RST_RX); 11282574b27eSMatteo Facchinetti psc_ops->command(port, MPC52xx_PSC_RST_TX); 1129ab4382d2SGreg Kroah-Hartman 1130e4b4e317SUwe Kleine-König /* 1131e4b4e317SUwe Kleine-König * According to Freescale's support the RST_TX command can produce a 1132e4b4e317SUwe Kleine-König * spike on the TX pin. So they recommend to delay "for one character". 1133e4b4e317SUwe Kleine-König * One millisecond should be enough for everyone. 1134e4b4e317SUwe Kleine-König */ 1135e4b4e317SUwe Kleine-König msleep(1); 1136e4b4e317SUwe Kleine-König 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, 1170*bec5b814SIlpo Järvinen const 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 13426f137a75SJulia Lawall static const 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 136718662a1dSJiri Slaby static inline unsigned 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 */ 13807cbfd6a0SDmitry Safonov if (uart_handle_sysrq_char(port, ch)) 1381ab4382d2SGreg Kroah-Hartman continue; 1382ab4382d2SGreg Kroah-Hartman 1383ab4382d2SGreg Kroah-Hartman /* Store it */ 1384ab4382d2SGreg Kroah-Hartman 1385ab4382d2SGreg Kroah-Hartman flag = TTY_NORMAL; 1386ab4382d2SGreg Kroah-Hartman port->icount.rx++; 1387ab4382d2SGreg Kroah-Hartman 13882574b27eSMatteo Facchinetti status = psc_ops->get_status(port); 1389ab4382d2SGreg Kroah-Hartman 1390ab4382d2SGreg Kroah-Hartman if (status & (MPC52xx_PSC_SR_PE | 1391ab4382d2SGreg Kroah-Hartman MPC52xx_PSC_SR_FE | 1392ab4382d2SGreg Kroah-Hartman MPC52xx_PSC_SR_RB)) { 1393ab4382d2SGreg Kroah-Hartman 1394ab4382d2SGreg Kroah-Hartman if (status & MPC52xx_PSC_SR_RB) { 1395ab4382d2SGreg Kroah-Hartman flag = TTY_BREAK; 1396ab4382d2SGreg Kroah-Hartman uart_handle_break(port); 1397ab4382d2SGreg Kroah-Hartman port->icount.brk++; 1398ab4382d2SGreg Kroah-Hartman } else if (status & MPC52xx_PSC_SR_PE) { 1399ab4382d2SGreg Kroah-Hartman flag = TTY_PARITY; 1400ab4382d2SGreg Kroah-Hartman port->icount.parity++; 1401ab4382d2SGreg Kroah-Hartman } 1402ab4382d2SGreg Kroah-Hartman else if (status & MPC52xx_PSC_SR_FE) { 1403ab4382d2SGreg Kroah-Hartman flag = TTY_FRAME; 1404ab4382d2SGreg Kroah-Hartman port->icount.frame++; 1405ab4382d2SGreg Kroah-Hartman } 1406ab4382d2SGreg Kroah-Hartman 1407ab4382d2SGreg Kroah-Hartman /* Clear error condition */ 14082574b27eSMatteo Facchinetti psc_ops->command(port, MPC52xx_PSC_RST_ERR_STAT); 1409ab4382d2SGreg Kroah-Hartman 1410ab4382d2SGreg Kroah-Hartman } 141192a19f9cSJiri Slaby tty_insert_flip_char(tport, ch, flag); 1412ab4382d2SGreg Kroah-Hartman if (status & MPC52xx_PSC_SR_OE) { 1413ab4382d2SGreg Kroah-Hartman /* 1414ab4382d2SGreg Kroah-Hartman * Overrun is special, since it's 1415ab4382d2SGreg Kroah-Hartman * reported immediately, and doesn't 1416ab4382d2SGreg Kroah-Hartman * affect the current character 1417ab4382d2SGreg Kroah-Hartman */ 141892a19f9cSJiri Slaby tty_insert_flip_char(tport, 0, TTY_OVERRUN); 1419ab4382d2SGreg Kroah-Hartman port->icount.overrun++; 1420ab4382d2SGreg Kroah-Hartman } 1421ab4382d2SGreg Kroah-Hartman } 1422ab4382d2SGreg Kroah-Hartman 14232e124b4aSJiri Slaby tty_flip_buffer_push(tport); 1424ab4382d2SGreg Kroah-Hartman 1425ab4382d2SGreg Kroah-Hartman return psc_ops->raw_rx_rdy(port); 1426ab4382d2SGreg Kroah-Hartman } 1427ab4382d2SGreg Kroah-Hartman 1428ab4382d2SGreg Kroah-Hartman static inline int 1429ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int_tx_chars(struct uart_port *port) 1430ab4382d2SGreg Kroah-Hartman { 1431ab4382d2SGreg Kroah-Hartman struct circ_buf *xmit = &port->state->xmit; 1432ab4382d2SGreg Kroah-Hartman 1433ab4382d2SGreg Kroah-Hartman /* Process out of band chars */ 1434ab4382d2SGreg Kroah-Hartman if (port->x_char) { 1435ab4382d2SGreg Kroah-Hartman psc_ops->write_char(port, port->x_char); 1436ab4382d2SGreg Kroah-Hartman port->icount.tx++; 1437ab4382d2SGreg Kroah-Hartman port->x_char = 0; 1438ab4382d2SGreg Kroah-Hartman return 1; 1439ab4382d2SGreg Kroah-Hartman } 1440ab4382d2SGreg Kroah-Hartman 1441ab4382d2SGreg Kroah-Hartman /* Nothing to do ? */ 1442ab4382d2SGreg Kroah-Hartman if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { 1443ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_tx(port); 1444ab4382d2SGreg Kroah-Hartman return 0; 1445ab4382d2SGreg Kroah-Hartman } 1446ab4382d2SGreg Kroah-Hartman 1447ab4382d2SGreg Kroah-Hartman /* Send chars */ 1448ab4382d2SGreg Kroah-Hartman while (psc_ops->raw_tx_rdy(port)) { 1449ab4382d2SGreg Kroah-Hartman psc_ops->write_char(port, xmit->buf[xmit->tail]); 1450ab4382d2SGreg Kroah-Hartman xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); 1451ab4382d2SGreg Kroah-Hartman port->icount.tx++; 1452ab4382d2SGreg Kroah-Hartman if (uart_circ_empty(xmit)) 1453ab4382d2SGreg Kroah-Hartman break; 1454ab4382d2SGreg Kroah-Hartman } 1455ab4382d2SGreg Kroah-Hartman 1456ab4382d2SGreg Kroah-Hartman /* Wake up */ 1457ab4382d2SGreg Kroah-Hartman if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) 1458ab4382d2SGreg Kroah-Hartman uart_write_wakeup(port); 1459ab4382d2SGreg Kroah-Hartman 1460ab4382d2SGreg Kroah-Hartman /* Maybe we're done after all */ 1461ab4382d2SGreg Kroah-Hartman if (uart_circ_empty(xmit)) { 1462ab4382d2SGreg Kroah-Hartman mpc52xx_uart_stop_tx(port); 1463ab4382d2SGreg Kroah-Hartman return 0; 1464ab4382d2SGreg Kroah-Hartman } 1465ab4382d2SGreg Kroah-Hartman 1466ab4382d2SGreg Kroah-Hartman return 1; 1467ab4382d2SGreg Kroah-Hartman } 1468ab4382d2SGreg Kroah-Hartman 1469ab4382d2SGreg Kroah-Hartman static irqreturn_t 1470ab4382d2SGreg Kroah-Hartman mpc5xxx_uart_process_int(struct uart_port *port) 1471ab4382d2SGreg Kroah-Hartman { 1472ab4382d2SGreg Kroah-Hartman unsigned long pass = ISR_PASS_LIMIT; 1473ab4382d2SGreg Kroah-Hartman unsigned int keepgoing; 1474ab4382d2SGreg Kroah-Hartman u8 status; 1475ab4382d2SGreg Kroah-Hartman 1476ab4382d2SGreg Kroah-Hartman /* While we have stuff to do, we continue */ 1477ab4382d2SGreg Kroah-Hartman do { 1478ab4382d2SGreg Kroah-Hartman /* If we don't find anything to do, we stop */ 1479ab4382d2SGreg Kroah-Hartman keepgoing = 0; 1480ab4382d2SGreg Kroah-Hartman 1481ab4382d2SGreg Kroah-Hartman psc_ops->rx_clr_irq(port); 1482ab4382d2SGreg Kroah-Hartman if (psc_ops->rx_rdy(port)) 1483ab4382d2SGreg Kroah-Hartman keepgoing |= mpc52xx_uart_int_rx_chars(port); 1484ab4382d2SGreg Kroah-Hartman 1485ab4382d2SGreg Kroah-Hartman psc_ops->tx_clr_irq(port); 1486ab4382d2SGreg Kroah-Hartman if (psc_ops->tx_rdy(port)) 1487ab4382d2SGreg Kroah-Hartman keepgoing |= mpc52xx_uart_int_tx_chars(port); 1488ab4382d2SGreg Kroah-Hartman 14892574b27eSMatteo Facchinetti status = psc_ops->get_ipcr(port); 1490ab4382d2SGreg Kroah-Hartman if (status & MPC52xx_PSC_D_DCD) 1491ab4382d2SGreg Kroah-Hartman uart_handle_dcd_change(port, !(status & MPC52xx_PSC_DCD)); 1492ab4382d2SGreg Kroah-Hartman 1493ab4382d2SGreg Kroah-Hartman if (status & MPC52xx_PSC_D_CTS) 1494ab4382d2SGreg Kroah-Hartman uart_handle_cts_change(port, !(status & MPC52xx_PSC_CTS)); 1495ab4382d2SGreg Kroah-Hartman 1496ab4382d2SGreg Kroah-Hartman /* Limit number of iteration */ 1497ab4382d2SGreg Kroah-Hartman if (!(--pass)) 1498ab4382d2SGreg Kroah-Hartman keepgoing = 0; 1499ab4382d2SGreg Kroah-Hartman 1500ab4382d2SGreg Kroah-Hartman } while (keepgoing); 1501ab4382d2SGreg Kroah-Hartman 1502ab4382d2SGreg Kroah-Hartman return IRQ_HANDLED; 1503ab4382d2SGreg Kroah-Hartman } 1504ab4382d2SGreg Kroah-Hartman 1505ab4382d2SGreg Kroah-Hartman static irqreturn_t 1506ab4382d2SGreg Kroah-Hartman mpc52xx_uart_int(int irq, void *dev_id) 1507ab4382d2SGreg Kroah-Hartman { 1508ab4382d2SGreg Kroah-Hartman struct uart_port *port = dev_id; 1509ab4382d2SGreg Kroah-Hartman irqreturn_t ret; 1510ab4382d2SGreg Kroah-Hartman 1511ab4382d2SGreg Kroah-Hartman spin_lock(&port->lock); 1512ab4382d2SGreg Kroah-Hartman 1513ab4382d2SGreg Kroah-Hartman ret = psc_ops->handle_irq(port); 1514ab4382d2SGreg Kroah-Hartman 1515ab4382d2SGreg Kroah-Hartman spin_unlock(&port->lock); 1516ab4382d2SGreg Kroah-Hartman 1517ab4382d2SGreg Kroah-Hartman return ret; 1518ab4382d2SGreg Kroah-Hartman } 1519ab4382d2SGreg Kroah-Hartman 1520ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1521ab4382d2SGreg Kroah-Hartman /* Console ( if applicable ) */ 1522ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1523ab4382d2SGreg Kroah-Hartman 1524ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_SERIAL_MPC52xx_CONSOLE 1525ab4382d2SGreg Kroah-Hartman 1526ab4382d2SGreg Kroah-Hartman static void __init 1527ab4382d2SGreg Kroah-Hartman mpc52xx_console_get_options(struct uart_port *port, 1528ab4382d2SGreg Kroah-Hartman int *baud, int *parity, int *bits, int *flow) 1529ab4382d2SGreg Kroah-Hartman { 1530ab4382d2SGreg Kroah-Hartman unsigned char mr1; 1531ab4382d2SGreg Kroah-Hartman 1532ab4382d2SGreg Kroah-Hartman pr_debug("mpc52xx_console_get_options(port=%p)\n", port); 1533ab4382d2SGreg Kroah-Hartman 1534ab4382d2SGreg Kroah-Hartman /* Read the mode registers */ 15352574b27eSMatteo Facchinetti mr1 = psc_ops->get_mr1(port); 1536ab4382d2SGreg Kroah-Hartman 1537ab4382d2SGreg Kroah-Hartman /* CT{U,L}R are write-only ! */ 1538ab4382d2SGreg Kroah-Hartman *baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; 1539ab4382d2SGreg Kroah-Hartman 1540ab4382d2SGreg Kroah-Hartman /* Parse them */ 1541ab4382d2SGreg Kroah-Hartman switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) { 1542ab4382d2SGreg Kroah-Hartman case MPC52xx_PSC_MODE_5_BITS: 1543ab4382d2SGreg Kroah-Hartman *bits = 5; 1544ab4382d2SGreg Kroah-Hartman break; 1545ab4382d2SGreg Kroah-Hartman case MPC52xx_PSC_MODE_6_BITS: 1546ab4382d2SGreg Kroah-Hartman *bits = 6; 1547ab4382d2SGreg Kroah-Hartman break; 1548ab4382d2SGreg Kroah-Hartman case MPC52xx_PSC_MODE_7_BITS: 1549ab4382d2SGreg Kroah-Hartman *bits = 7; 1550ab4382d2SGreg Kroah-Hartman break; 1551ab4382d2SGreg Kroah-Hartman case MPC52xx_PSC_MODE_8_BITS: 1552ab4382d2SGreg Kroah-Hartman default: 1553ab4382d2SGreg Kroah-Hartman *bits = 8; 1554ab4382d2SGreg Kroah-Hartman } 1555ab4382d2SGreg Kroah-Hartman 1556ab4382d2SGreg Kroah-Hartman if (mr1 & MPC52xx_PSC_MODE_PARNONE) 1557ab4382d2SGreg Kroah-Hartman *parity = 'n'; 1558ab4382d2SGreg Kroah-Hartman else 1559ab4382d2SGreg Kroah-Hartman *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e'; 1560ab4382d2SGreg Kroah-Hartman } 1561ab4382d2SGreg Kroah-Hartman 1562ab4382d2SGreg Kroah-Hartman static void 1563ab4382d2SGreg Kroah-Hartman mpc52xx_console_write(struct console *co, const char *s, unsigned int count) 1564ab4382d2SGreg Kroah-Hartman { 1565ab4382d2SGreg Kroah-Hartman struct uart_port *port = &mpc52xx_uart_ports[co->index]; 1566ab4382d2SGreg Kroah-Hartman unsigned int i, j; 1567ab4382d2SGreg Kroah-Hartman 1568ab4382d2SGreg Kroah-Hartman /* Disable interrupts */ 1569ab4382d2SGreg Kroah-Hartman psc_ops->cw_disable_ints(port); 1570ab4382d2SGreg Kroah-Hartman 1571ab4382d2SGreg Kroah-Hartman /* Wait the TX buffer to be empty */ 1572ab4382d2SGreg Kroah-Hartman j = 5000000; /* Maximum wait */ 1573ab4382d2SGreg Kroah-Hartman while (!mpc52xx_uart_tx_empty(port) && --j) 1574ab4382d2SGreg Kroah-Hartman udelay(1); 1575ab4382d2SGreg Kroah-Hartman 1576ab4382d2SGreg Kroah-Hartman /* Write all the chars */ 1577ab4382d2SGreg Kroah-Hartman for (i = 0; i < count; i++, s++) { 1578ab4382d2SGreg Kroah-Hartman /* Line return handling */ 1579ab4382d2SGreg Kroah-Hartman if (*s == '\n') 1580ab4382d2SGreg Kroah-Hartman psc_ops->write_char(port, '\r'); 1581ab4382d2SGreg Kroah-Hartman 1582ab4382d2SGreg Kroah-Hartman /* Send the char */ 1583ab4382d2SGreg Kroah-Hartman psc_ops->write_char(port, *s); 1584ab4382d2SGreg Kroah-Hartman 1585ab4382d2SGreg Kroah-Hartman /* Wait the TX buffer to be empty */ 1586ab4382d2SGreg Kroah-Hartman j = 20000; /* Maximum wait */ 1587ab4382d2SGreg Kroah-Hartman while (!mpc52xx_uart_tx_empty(port) && --j) 1588ab4382d2SGreg Kroah-Hartman udelay(1); 1589ab4382d2SGreg Kroah-Hartman } 1590ab4382d2SGreg Kroah-Hartman 1591ab4382d2SGreg Kroah-Hartman /* Restore interrupt state */ 1592ab4382d2SGreg Kroah-Hartman psc_ops->cw_restore_ints(port); 1593ab4382d2SGreg Kroah-Hartman } 1594ab4382d2SGreg Kroah-Hartman 1595ab4382d2SGreg Kroah-Hartman 1596ab4382d2SGreg Kroah-Hartman static int __init 1597ab4382d2SGreg Kroah-Hartman mpc52xx_console_setup(struct console *co, char *options) 1598ab4382d2SGreg Kroah-Hartman { 1599ab4382d2SGreg Kroah-Hartman struct uart_port *port = &mpc52xx_uart_ports[co->index]; 1600ab4382d2SGreg Kroah-Hartman struct device_node *np = mpc52xx_uart_nodes[co->index]; 1601ab4382d2SGreg Kroah-Hartman unsigned int uartclk; 1602ab4382d2SGreg Kroah-Hartman struct resource res; 1603ab4382d2SGreg Kroah-Hartman int ret; 1604ab4382d2SGreg Kroah-Hartman 1605ab4382d2SGreg Kroah-Hartman int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD; 1606ab4382d2SGreg Kroah-Hartman int bits = 8; 1607ab4382d2SGreg Kroah-Hartman int parity = 'n'; 1608ab4382d2SGreg Kroah-Hartman int flow = 'n'; 1609ab4382d2SGreg Kroah-Hartman 1610ab4382d2SGreg Kroah-Hartman pr_debug("mpc52xx_console_setup co=%p, co->index=%i, options=%s\n", 1611ab4382d2SGreg Kroah-Hartman co, co->index, options); 1612ab4382d2SGreg Kroah-Hartman 1613ab4382d2SGreg Kroah-Hartman if ((co->index < 0) || (co->index >= MPC52xx_PSC_MAXNUM)) { 1614ab4382d2SGreg Kroah-Hartman pr_debug("PSC%x out of range\n", co->index); 1615ab4382d2SGreg Kroah-Hartman return -EINVAL; 1616ab4382d2SGreg Kroah-Hartman } 1617ab4382d2SGreg Kroah-Hartman 1618ab4382d2SGreg Kroah-Hartman if (!np) { 1619ab4382d2SGreg Kroah-Hartman pr_debug("PSC%x not found in device tree\n", co->index); 1620ab4382d2SGreg Kroah-Hartman return -EINVAL; 1621ab4382d2SGreg Kroah-Hartman } 1622ab4382d2SGreg Kroah-Hartman 1623a73ee843SRob Herring pr_debug("Console on ttyPSC%x is %pOF\n", 1624a73ee843SRob Herring co->index, mpc52xx_uart_nodes[co->index]); 1625ab4382d2SGreg Kroah-Hartman 1626ab4382d2SGreg Kroah-Hartman /* Fetch register locations */ 1627ab4382d2SGreg Kroah-Hartman ret = of_address_to_resource(np, 0, &res); 1628ab4382d2SGreg Kroah-Hartman if (ret) { 1629ab4382d2SGreg Kroah-Hartman pr_debug("Could not get resources for PSC%x\n", co->index); 1630ab4382d2SGreg Kroah-Hartman return ret; 1631ab4382d2SGreg Kroah-Hartman } 1632ab4382d2SGreg Kroah-Hartman 1633de06fba6SAndy Shevchenko uartclk = mpc5xxx_fwnode_get_bus_frequency(of_fwnode_handle(np)); 1634ab4382d2SGreg Kroah-Hartman if (uartclk == 0) { 1635ab4382d2SGreg Kroah-Hartman pr_debug("Could not find uart clock frequency!\n"); 1636ab4382d2SGreg Kroah-Hartman return -EINVAL; 1637ab4382d2SGreg Kroah-Hartman } 1638ab4382d2SGreg Kroah-Hartman 1639ab4382d2SGreg Kroah-Hartman /* Basic port init. Needed since we use some uart_??? func before 1640ab4382d2SGreg Kroah-Hartman * real init for early access */ 1641ab4382d2SGreg Kroah-Hartman spin_lock_init(&port->lock); 1642ab4382d2SGreg Kroah-Hartman port->uartclk = uartclk; 1643ab4382d2SGreg Kroah-Hartman port->ops = &mpc52xx_uart_ops; 1644ab4382d2SGreg Kroah-Hartman port->mapbase = res.start; 1645ab4382d2SGreg Kroah-Hartman port->membase = ioremap(res.start, sizeof(struct mpc52xx_psc)); 1646ab4382d2SGreg Kroah-Hartman port->irq = irq_of_parse_and_map(np, 0); 1647ab4382d2SGreg Kroah-Hartman 1648ab4382d2SGreg Kroah-Hartman if (port->membase == NULL) 1649ab4382d2SGreg Kroah-Hartman return -EINVAL; 1650ab4382d2SGreg Kroah-Hartman 1651ab4382d2SGreg Kroah-Hartman pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n", 1652ab4382d2SGreg Kroah-Hartman (void *)port->mapbase, port->membase, 1653ab4382d2SGreg Kroah-Hartman port->irq, port->uartclk); 1654ab4382d2SGreg Kroah-Hartman 1655ab4382d2SGreg Kroah-Hartman /* Setup the port parameters accoding to options */ 1656ab4382d2SGreg Kroah-Hartman if (options) 1657ab4382d2SGreg Kroah-Hartman uart_parse_options(options, &baud, &parity, &bits, &flow); 1658ab4382d2SGreg Kroah-Hartman else 1659ab4382d2SGreg Kroah-Hartman mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow); 1660ab4382d2SGreg Kroah-Hartman 1661ab4382d2SGreg Kroah-Hartman pr_debug("Setting console parameters: %i %i%c1 flow=%c\n", 1662ab4382d2SGreg Kroah-Hartman baud, bits, parity, flow); 1663ab4382d2SGreg Kroah-Hartman 1664ab4382d2SGreg Kroah-Hartman return uart_set_options(port, co, baud, parity, bits, flow); 1665ab4382d2SGreg Kroah-Hartman } 1666ab4382d2SGreg Kroah-Hartman 1667ab4382d2SGreg Kroah-Hartman 1668ab4382d2SGreg Kroah-Hartman static struct uart_driver mpc52xx_uart_driver; 1669ab4382d2SGreg Kroah-Hartman 1670ab4382d2SGreg Kroah-Hartman static struct console mpc52xx_console = { 1671ab4382d2SGreg Kroah-Hartman .name = "ttyPSC", 1672ab4382d2SGreg Kroah-Hartman .write = mpc52xx_console_write, 1673ab4382d2SGreg Kroah-Hartman .device = uart_console_device, 1674ab4382d2SGreg Kroah-Hartman .setup = mpc52xx_console_setup, 1675ab4382d2SGreg Kroah-Hartman .flags = CON_PRINTBUFFER, 1676ab4382d2SGreg Kroah-Hartman .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0) */ 1677ab4382d2SGreg Kroah-Hartman .data = &mpc52xx_uart_driver, 1678ab4382d2SGreg Kroah-Hartman }; 1679ab4382d2SGreg Kroah-Hartman 1680ab4382d2SGreg Kroah-Hartman 1681ab4382d2SGreg Kroah-Hartman static int __init 1682ab4382d2SGreg Kroah-Hartman mpc52xx_console_init(void) 1683ab4382d2SGreg Kroah-Hartman { 1684ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_enumerate(); 1685ab4382d2SGreg Kroah-Hartman register_console(&mpc52xx_console); 1686ab4382d2SGreg Kroah-Hartman return 0; 1687ab4382d2SGreg Kroah-Hartman } 1688ab4382d2SGreg Kroah-Hartman 1689ab4382d2SGreg Kroah-Hartman console_initcall(mpc52xx_console_init); 1690ab4382d2SGreg Kroah-Hartman 1691ab4382d2SGreg Kroah-Hartman #define MPC52xx_PSC_CONSOLE &mpc52xx_console 1692ab4382d2SGreg Kroah-Hartman #else 1693ab4382d2SGreg Kroah-Hartman #define MPC52xx_PSC_CONSOLE NULL 1694ab4382d2SGreg Kroah-Hartman #endif 1695ab4382d2SGreg Kroah-Hartman 1696ab4382d2SGreg Kroah-Hartman 1697ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1698ab4382d2SGreg Kroah-Hartman /* UART Driver */ 1699ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1700ab4382d2SGreg Kroah-Hartman 1701ab4382d2SGreg Kroah-Hartman static struct uart_driver mpc52xx_uart_driver = { 1702ab4382d2SGreg Kroah-Hartman .driver_name = "mpc52xx_psc_uart", 1703ab4382d2SGreg Kroah-Hartman .dev_name = "ttyPSC", 1704ab4382d2SGreg Kroah-Hartman .major = SERIAL_PSC_MAJOR, 1705ab4382d2SGreg Kroah-Hartman .minor = SERIAL_PSC_MINOR, 1706ab4382d2SGreg Kroah-Hartman .nr = MPC52xx_PSC_MAXNUM, 1707ab4382d2SGreg Kroah-Hartman .cons = MPC52xx_PSC_CONSOLE, 1708ab4382d2SGreg Kroah-Hartman }; 1709ab4382d2SGreg Kroah-Hartman 1710ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1711ab4382d2SGreg Kroah-Hartman /* OF Platform Driver */ 1712ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1713ab4382d2SGreg Kroah-Hartman 1714ed0bb232SFabian Frederick static const struct of_device_id mpc52xx_uart_of_match[] = { 1715ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC52xx 1716ab4382d2SGreg Kroah-Hartman { .compatible = "fsl,mpc5200b-psc-uart", .data = &mpc5200b_psc_ops, }, 1717ab4382d2SGreg Kroah-Hartman { .compatible = "fsl,mpc5200-psc-uart", .data = &mpc52xx_psc_ops, }, 1718ab4382d2SGreg Kroah-Hartman /* binding used by old lite5200 device trees: */ 1719ab4382d2SGreg Kroah-Hartman { .compatible = "mpc5200-psc-uart", .data = &mpc52xx_psc_ops, }, 1720ab4382d2SGreg Kroah-Hartman /* binding used by efika: */ 1721ab4382d2SGreg Kroah-Hartman { .compatible = "mpc5200-serial", .data = &mpc52xx_psc_ops, }, 1722ab4382d2SGreg Kroah-Hartman #endif 1723ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PPC_MPC512x 1724ab4382d2SGreg Kroah-Hartman { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, }, 17251f48c499SMatteo Facchinetti { .compatible = "fsl,mpc5125-psc-uart", .data = &mpc5125_psc_ops, }, 1726ab4382d2SGreg Kroah-Hartman #endif 1727ab4382d2SGreg Kroah-Hartman {}, 1728ab4382d2SGreg Kroah-Hartman }; 1729ab4382d2SGreg Kroah-Hartman 17309671f099SBill Pemberton static int mpc52xx_uart_of_probe(struct platform_device *op) 1731ab4382d2SGreg Kroah-Hartman { 1732ab4382d2SGreg Kroah-Hartman int idx = -1; 1733ab4382d2SGreg Kroah-Hartman unsigned int uartclk; 1734ab4382d2SGreg Kroah-Hartman struct uart_port *port = NULL; 1735ab4382d2SGreg Kroah-Hartman struct resource res; 1736ab4382d2SGreg Kroah-Hartman int ret; 1737ab4382d2SGreg Kroah-Hartman 1738ab4382d2SGreg Kroah-Hartman /* Check validity & presence */ 1739ab4382d2SGreg Kroah-Hartman for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++) 1740ab4382d2SGreg Kroah-Hartman if (mpc52xx_uart_nodes[idx] == op->dev.of_node) 1741ab4382d2SGreg Kroah-Hartman break; 1742ab4382d2SGreg Kroah-Hartman if (idx >= MPC52xx_PSC_MAXNUM) 1743ab4382d2SGreg Kroah-Hartman return -EINVAL; 1744a73ee843SRob Herring pr_debug("Found %pOF assigned to ttyPSC%x\n", 1745a73ee843SRob Herring mpc52xx_uart_nodes[idx], idx); 1746ab4382d2SGreg Kroah-Hartman 1747ab4382d2SGreg Kroah-Hartman /* set the uart clock to the input clock of the psc, the different 1748ab4382d2SGreg Kroah-Hartman * prescalers are taken into account in the set_baudrate() methods 1749ab4382d2SGreg Kroah-Hartman * of the respective chip */ 1750de06fba6SAndy Shevchenko uartclk = mpc5xxx_get_bus_frequency(&op->dev); 1751ab4382d2SGreg Kroah-Hartman if (uartclk == 0) { 1752ab4382d2SGreg Kroah-Hartman dev_dbg(&op->dev, "Could not find uart clock frequency!\n"); 1753ab4382d2SGreg Kroah-Hartman return -EINVAL; 1754ab4382d2SGreg Kroah-Hartman } 1755ab4382d2SGreg Kroah-Hartman 1756ab4382d2SGreg Kroah-Hartman /* Init the port structure */ 1757ab4382d2SGreg Kroah-Hartman port = &mpc52xx_uart_ports[idx]; 1758ab4382d2SGreg Kroah-Hartman 1759ab4382d2SGreg Kroah-Hartman spin_lock_init(&port->lock); 1760ab4382d2SGreg Kroah-Hartman port->uartclk = uartclk; 1761ab4382d2SGreg Kroah-Hartman port->fifosize = 512; 1762ba4508dbSDmitry Safonov port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_MPC52xx_CONSOLE); 1763ab4382d2SGreg Kroah-Hartman port->iotype = UPIO_MEM; 1764ab4382d2SGreg Kroah-Hartman port->flags = UPF_BOOT_AUTOCONF | 1765ab4382d2SGreg Kroah-Hartman (uart_console(port) ? 0 : UPF_IOREMAP); 1766ab4382d2SGreg Kroah-Hartman port->line = idx; 1767ab4382d2SGreg Kroah-Hartman port->ops = &mpc52xx_uart_ops; 1768ab4382d2SGreg Kroah-Hartman port->dev = &op->dev; 1769ab4382d2SGreg Kroah-Hartman 1770ab4382d2SGreg Kroah-Hartman /* Search for IRQ and mapbase */ 1771ab4382d2SGreg Kroah-Hartman ret = of_address_to_resource(op->dev.of_node, 0, &res); 1772ab4382d2SGreg Kroah-Hartman if (ret) 1773ab4382d2SGreg Kroah-Hartman return ret; 1774ab4382d2SGreg Kroah-Hartman 1775ab4382d2SGreg Kroah-Hartman port->mapbase = res.start; 1776ab4382d2SGreg Kroah-Hartman if (!port->mapbase) { 1777ab4382d2SGreg Kroah-Hartman dev_dbg(&op->dev, "Could not allocate resources for PSC\n"); 1778ab4382d2SGreg Kroah-Hartman return -EINVAL; 1779ab4382d2SGreg Kroah-Hartman } 1780ab4382d2SGreg Kroah-Hartman 1781ab4382d2SGreg Kroah-Hartman psc_ops->get_irq(port, op->dev.of_node); 1782d4e33facSAlan Cox if (port->irq == 0) { 1783ab4382d2SGreg Kroah-Hartman dev_dbg(&op->dev, "Could not get irq\n"); 1784ab4382d2SGreg Kroah-Hartman return -EINVAL; 1785ab4382d2SGreg Kroah-Hartman } 1786ab4382d2SGreg Kroah-Hartman 1787ab4382d2SGreg Kroah-Hartman dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n", 1788ab4382d2SGreg Kroah-Hartman (void *)port->mapbase, port->irq, port->uartclk); 1789ab4382d2SGreg Kroah-Hartman 1790ab4382d2SGreg Kroah-Hartman /* Add the port to the uart sub-system */ 1791ab4382d2SGreg Kroah-Hartman ret = uart_add_one_port(&mpc52xx_uart_driver, port); 1792ab4382d2SGreg Kroah-Hartman if (ret) 1793ab4382d2SGreg Kroah-Hartman return ret; 1794ab4382d2SGreg Kroah-Hartman 1795696faeddSJingoo Han platform_set_drvdata(op, (void *)port); 1796ab4382d2SGreg Kroah-Hartman return 0; 1797ab4382d2SGreg Kroah-Hartman } 1798ab4382d2SGreg Kroah-Hartman 1799ab4382d2SGreg Kroah-Hartman static int 1800ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_remove(struct platform_device *op) 1801ab4382d2SGreg Kroah-Hartman { 1802696faeddSJingoo Han struct uart_port *port = platform_get_drvdata(op); 1803ab4382d2SGreg Kroah-Hartman 1804ab4382d2SGreg Kroah-Hartman if (port) 1805ab4382d2SGreg Kroah-Hartman uart_remove_one_port(&mpc52xx_uart_driver, port); 1806ab4382d2SGreg Kroah-Hartman 1807ab4382d2SGreg Kroah-Hartman return 0; 1808ab4382d2SGreg Kroah-Hartman } 1809ab4382d2SGreg Kroah-Hartman 1810ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PM 1811ab4382d2SGreg Kroah-Hartman static int 1812ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_suspend(struct platform_device *op, pm_message_t state) 1813ab4382d2SGreg Kroah-Hartman { 18144190390aSJingoo Han struct uart_port *port = platform_get_drvdata(op); 1815ab4382d2SGreg Kroah-Hartman 1816ab4382d2SGreg Kroah-Hartman if (port) 1817ab4382d2SGreg Kroah-Hartman uart_suspend_port(&mpc52xx_uart_driver, port); 1818ab4382d2SGreg Kroah-Hartman 1819ab4382d2SGreg Kroah-Hartman return 0; 1820ab4382d2SGreg Kroah-Hartman } 1821ab4382d2SGreg Kroah-Hartman 1822ab4382d2SGreg Kroah-Hartman static int 1823ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_resume(struct platform_device *op) 1824ab4382d2SGreg Kroah-Hartman { 18254190390aSJingoo Han struct uart_port *port = platform_get_drvdata(op); 1826ab4382d2SGreg Kroah-Hartman 1827ab4382d2SGreg Kroah-Hartman if (port) 1828ab4382d2SGreg Kroah-Hartman uart_resume_port(&mpc52xx_uart_driver, port); 1829ab4382d2SGreg Kroah-Hartman 1830ab4382d2SGreg Kroah-Hartman return 0; 1831ab4382d2SGreg Kroah-Hartman } 1832ab4382d2SGreg Kroah-Hartman #endif 1833ab4382d2SGreg Kroah-Hartman 1834ab4382d2SGreg Kroah-Hartman static void 1835ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_assign(struct device_node *np) 1836ab4382d2SGreg Kroah-Hartman { 1837ab4382d2SGreg Kroah-Hartman int i; 1838ab4382d2SGreg Kroah-Hartman 1839ab4382d2SGreg Kroah-Hartman /* Find the first free PSC number */ 1840ab4382d2SGreg Kroah-Hartman for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) { 1841ab4382d2SGreg Kroah-Hartman if (mpc52xx_uart_nodes[i] == NULL) { 1842ab4382d2SGreg Kroah-Hartman of_node_get(np); 1843ab4382d2SGreg Kroah-Hartman mpc52xx_uart_nodes[i] = np; 1844ab4382d2SGreg Kroah-Hartman return; 1845ab4382d2SGreg Kroah-Hartman } 1846ab4382d2SGreg Kroah-Hartman } 1847ab4382d2SGreg Kroah-Hartman } 1848ab4382d2SGreg Kroah-Hartman 1849ab4382d2SGreg Kroah-Hartman static void 1850ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_enumerate(void) 1851ab4382d2SGreg Kroah-Hartman { 1852ab4382d2SGreg Kroah-Hartman static int enum_done; 1853ab4382d2SGreg Kroah-Hartman struct device_node *np; 1854ab4382d2SGreg Kroah-Hartman const struct of_device_id *match; 1855ab4382d2SGreg Kroah-Hartman int i; 1856ab4382d2SGreg Kroah-Hartman 1857ab4382d2SGreg Kroah-Hartman if (enum_done) 1858ab4382d2SGreg Kroah-Hartman return; 1859ab4382d2SGreg Kroah-Hartman 1860ab4382d2SGreg Kroah-Hartman /* Assign index to each PSC in device tree */ 1861ab4382d2SGreg Kroah-Hartman for_each_matching_node(np, mpc52xx_uart_of_match) { 1862ab4382d2SGreg Kroah-Hartman match = of_match_node(mpc52xx_uart_of_match, np); 1863ab4382d2SGreg Kroah-Hartman psc_ops = match->data; 1864ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_assign(np); 1865ab4382d2SGreg Kroah-Hartman } 1866ab4382d2SGreg Kroah-Hartman 1867ab4382d2SGreg Kroah-Hartman enum_done = 1; 1868ab4382d2SGreg Kroah-Hartman 1869ab4382d2SGreg Kroah-Hartman for (i = 0; i < MPC52xx_PSC_MAXNUM; i++) { 1870ab4382d2SGreg Kroah-Hartman if (mpc52xx_uart_nodes[i]) 1871a73ee843SRob Herring pr_debug("%pOF assigned to ttyPSC%x\n", 1872a73ee843SRob Herring mpc52xx_uart_nodes[i], i); 1873ab4382d2SGreg Kroah-Hartman } 1874ab4382d2SGreg Kroah-Hartman } 1875ab4382d2SGreg Kroah-Hartman 1876ab4382d2SGreg Kroah-Hartman MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match); 1877ab4382d2SGreg Kroah-Hartman 1878793218dfSGrant Likely static struct platform_driver mpc52xx_uart_of_driver = { 1879ab4382d2SGreg Kroah-Hartman .probe = mpc52xx_uart_of_probe, 1880ab4382d2SGreg Kroah-Hartman .remove = mpc52xx_uart_of_remove, 1881ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_PM 1882ab4382d2SGreg Kroah-Hartman .suspend = mpc52xx_uart_of_suspend, 1883ab4382d2SGreg Kroah-Hartman .resume = mpc52xx_uart_of_resume, 1884ab4382d2SGreg Kroah-Hartman #endif 1885ab4382d2SGreg Kroah-Hartman .driver = { 1886ab4382d2SGreg Kroah-Hartman .name = "mpc52xx-psc-uart", 1887ab4382d2SGreg Kroah-Hartman .of_match_table = mpc52xx_uart_of_match, 1888ab4382d2SGreg Kroah-Hartman }, 1889ab4382d2SGreg Kroah-Hartman }; 1890ab4382d2SGreg Kroah-Hartman 1891ab4382d2SGreg Kroah-Hartman 1892ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1893ab4382d2SGreg Kroah-Hartman /* Module */ 1894ab4382d2SGreg Kroah-Hartman /* ======================================================================== */ 1895ab4382d2SGreg Kroah-Hartman 1896ab4382d2SGreg Kroah-Hartman static int __init 1897ab4382d2SGreg Kroah-Hartman mpc52xx_uart_init(void) 1898ab4382d2SGreg Kroah-Hartman { 1899ab4382d2SGreg Kroah-Hartman int ret; 1900ab4382d2SGreg Kroah-Hartman 1901ab4382d2SGreg Kroah-Hartman printk(KERN_INFO "Serial: MPC52xx PSC UART driver\n"); 1902ab4382d2SGreg Kroah-Hartman 1903ab4382d2SGreg Kroah-Hartman ret = uart_register_driver(&mpc52xx_uart_driver); 1904ab4382d2SGreg Kroah-Hartman if (ret) { 1905ab4382d2SGreg Kroah-Hartman printk(KERN_ERR "%s: uart_register_driver failed (%i)\n", 1906ab4382d2SGreg Kroah-Hartman __FILE__, ret); 1907ab4382d2SGreg Kroah-Hartman return ret; 1908ab4382d2SGreg Kroah-Hartman } 1909ab4382d2SGreg Kroah-Hartman 1910ab4382d2SGreg Kroah-Hartman mpc52xx_uart_of_enumerate(); 1911ab4382d2SGreg Kroah-Hartman 1912ab4382d2SGreg Kroah-Hartman /* 1913ab4382d2SGreg Kroah-Hartman * Map the PSC FIFO Controller and init if on MPC512x. 1914ab4382d2SGreg Kroah-Hartman */ 1915ab4382d2SGreg Kroah-Hartman if (psc_ops && psc_ops->fifoc_init) { 1916ab4382d2SGreg Kroah-Hartman ret = psc_ops->fifoc_init(); 1917ab4382d2SGreg Kroah-Hartman if (ret) 19189bcc3278SWei Yongjun goto err_init; 1919ab4382d2SGreg Kroah-Hartman } 1920ab4382d2SGreg Kroah-Hartman 1921793218dfSGrant Likely ret = platform_driver_register(&mpc52xx_uart_of_driver); 1922ab4382d2SGreg Kroah-Hartman if (ret) { 1923793218dfSGrant Likely printk(KERN_ERR "%s: platform_driver_register failed (%i)\n", 1924ab4382d2SGreg Kroah-Hartman __FILE__, ret); 19259bcc3278SWei Yongjun goto err_reg; 1926ab4382d2SGreg Kroah-Hartman } 1927ab4382d2SGreg Kroah-Hartman 1928ab4382d2SGreg Kroah-Hartman return 0; 19299bcc3278SWei Yongjun err_reg: 19309bcc3278SWei Yongjun if (psc_ops && psc_ops->fifoc_uninit) 19319bcc3278SWei Yongjun psc_ops->fifoc_uninit(); 19329bcc3278SWei Yongjun err_init: 19339bcc3278SWei Yongjun uart_unregister_driver(&mpc52xx_uart_driver); 19349bcc3278SWei Yongjun return ret; 1935ab4382d2SGreg Kroah-Hartman } 1936ab4382d2SGreg Kroah-Hartman 1937ab4382d2SGreg Kroah-Hartman static void __exit 1938ab4382d2SGreg Kroah-Hartman mpc52xx_uart_exit(void) 1939ab4382d2SGreg Kroah-Hartman { 1940ab4382d2SGreg Kroah-Hartman if (psc_ops->fifoc_uninit) 1941ab4382d2SGreg Kroah-Hartman psc_ops->fifoc_uninit(); 1942ab4382d2SGreg Kroah-Hartman 1943793218dfSGrant Likely platform_driver_unregister(&mpc52xx_uart_of_driver); 1944ab4382d2SGreg Kroah-Hartman uart_unregister_driver(&mpc52xx_uart_driver); 1945ab4382d2SGreg Kroah-Hartman } 1946ab4382d2SGreg Kroah-Hartman 1947ab4382d2SGreg Kroah-Hartman 1948ab4382d2SGreg Kroah-Hartman module_init(mpc52xx_uart_init); 1949ab4382d2SGreg Kroah-Hartman module_exit(mpc52xx_uart_exit); 1950ab4382d2SGreg Kroah-Hartman 1951ab4382d2SGreg Kroah-Hartman MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>"); 1952ab4382d2SGreg Kroah-Hartman MODULE_DESCRIPTION("Freescale MPC52xx PSC UART"); 1953ab4382d2SGreg Kroah-Hartman MODULE_LICENSE("GPL"); 1954