xref: /openbmc/linux/drivers/tty/serial/stm32-usart.c (revision fb6dcef62d52fe76f6b369e6af093dc4ad5db407)
1e3b3d0f5SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
248a6092fSMaxime Coquelin /*
348a6092fSMaxime Coquelin  * Copyright (C) Maxime Coquelin 2015
43e5fcbacSBich HEMON  * Copyright (C) STMicroelectronics SA 2017
5ada8618fSAlexandre TORGUE  * Authors:  Maxime Coquelin <mcoquelin.stm32@gmail.com>
6ada8618fSAlexandre TORGUE  *	     Gerald Baeza <gerald.baeza@st.com>
748a6092fSMaxime Coquelin  *
848a6092fSMaxime Coquelin  * Inspired by st-asc.c from STMicroelectronics (c)
948a6092fSMaxime Coquelin  */
1048a6092fSMaxime Coquelin 
116b596a83SMaxime Coquelin #if defined(CONFIG_SERIAL_STM32_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
1248a6092fSMaxime Coquelin #define SUPPORT_SYSRQ
1348a6092fSMaxime Coquelin #endif
1448a6092fSMaxime Coquelin 
1534891872SAlexandre TORGUE #include <linux/clk.h>
1648a6092fSMaxime Coquelin #include <linux/console.h>
1748a6092fSMaxime Coquelin #include <linux/delay.h>
1834891872SAlexandre TORGUE #include <linux/dma-direction.h>
1934891872SAlexandre TORGUE #include <linux/dmaengine.h>
2034891872SAlexandre TORGUE #include <linux/dma-mapping.h>
2134891872SAlexandre TORGUE #include <linux/io.h>
2234891872SAlexandre TORGUE #include <linux/iopoll.h>
2334891872SAlexandre TORGUE #include <linux/irq.h>
2434891872SAlexandre TORGUE #include <linux/module.h>
2548a6092fSMaxime Coquelin #include <linux/of.h>
2648a6092fSMaxime Coquelin #include <linux/of_platform.h>
2794616d9aSErwan Le Ray #include <linux/pinctrl/consumer.h>
2834891872SAlexandre TORGUE #include <linux/platform_device.h>
2934891872SAlexandre TORGUE #include <linux/pm_runtime.h>
30270e5a74SFabrice Gasnier #include <linux/pm_wakeirq.h>
3148a6092fSMaxime Coquelin #include <linux/serial_core.h>
3234891872SAlexandre TORGUE #include <linux/serial.h>
3334891872SAlexandre TORGUE #include <linux/spinlock.h>
3434891872SAlexandre TORGUE #include <linux/sysrq.h>
3534891872SAlexandre TORGUE #include <linux/tty_flip.h>
3634891872SAlexandre TORGUE #include <linux/tty.h>
3748a6092fSMaxime Coquelin 
38bc5a0b55SAlexandre TORGUE #include "stm32-usart.h"
3948a6092fSMaxime Coquelin 
4048a6092fSMaxime Coquelin static void stm32_stop_tx(struct uart_port *port);
4134891872SAlexandre TORGUE static void stm32_transmit_chars(struct uart_port *port);
4248a6092fSMaxime Coquelin 
4348a6092fSMaxime Coquelin static inline struct stm32_port *to_stm32_port(struct uart_port *port)
4448a6092fSMaxime Coquelin {
4548a6092fSMaxime Coquelin 	return container_of(port, struct stm32_port, port);
4648a6092fSMaxime Coquelin }
4748a6092fSMaxime Coquelin 
4848a6092fSMaxime Coquelin static void stm32_set_bits(struct uart_port *port, u32 reg, u32 bits)
4948a6092fSMaxime Coquelin {
5048a6092fSMaxime Coquelin 	u32 val;
5148a6092fSMaxime Coquelin 
5248a6092fSMaxime Coquelin 	val = readl_relaxed(port->membase + reg);
5348a6092fSMaxime Coquelin 	val |= bits;
5448a6092fSMaxime Coquelin 	writel_relaxed(val, port->membase + reg);
5548a6092fSMaxime Coquelin }
5648a6092fSMaxime Coquelin 
5748a6092fSMaxime Coquelin static void stm32_clr_bits(struct uart_port *port, u32 reg, u32 bits)
5848a6092fSMaxime Coquelin {
5948a6092fSMaxime Coquelin 	u32 val;
6048a6092fSMaxime Coquelin 
6148a6092fSMaxime Coquelin 	val = readl_relaxed(port->membase + reg);
6248a6092fSMaxime Coquelin 	val &= ~bits;
6348a6092fSMaxime Coquelin 	writel_relaxed(val, port->membase + reg);
6448a6092fSMaxime Coquelin }
6548a6092fSMaxime Coquelin 
661bcda09dSBich HEMON static void stm32_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE,
671bcda09dSBich HEMON 				   u32 delay_DDE, u32 baud)
681bcda09dSBich HEMON {
691bcda09dSBich HEMON 	u32 rs485_deat_dedt;
701bcda09dSBich HEMON 	u32 rs485_deat_dedt_max = (USART_CR1_DEAT_MASK >> USART_CR1_DEAT_SHIFT);
711bcda09dSBich HEMON 	bool over8;
721bcda09dSBich HEMON 
731bcda09dSBich HEMON 	*cr3 |= USART_CR3_DEM;
741bcda09dSBich HEMON 	over8 = *cr1 & USART_CR1_OVER8;
751bcda09dSBich HEMON 
761bcda09dSBich HEMON 	if (over8)
771bcda09dSBich HEMON 		rs485_deat_dedt = delay_ADE * baud * 8;
781bcda09dSBich HEMON 	else
791bcda09dSBich HEMON 		rs485_deat_dedt = delay_ADE * baud * 16;
801bcda09dSBich HEMON 
811bcda09dSBich HEMON 	rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
821bcda09dSBich HEMON 	rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
831bcda09dSBich HEMON 			  rs485_deat_dedt_max : rs485_deat_dedt;
841bcda09dSBich HEMON 	rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEAT_SHIFT) &
851bcda09dSBich HEMON 			   USART_CR1_DEAT_MASK;
861bcda09dSBich HEMON 	*cr1 |= rs485_deat_dedt;
871bcda09dSBich HEMON 
881bcda09dSBich HEMON 	if (over8)
891bcda09dSBich HEMON 		rs485_deat_dedt = delay_DDE * baud * 8;
901bcda09dSBich HEMON 	else
911bcda09dSBich HEMON 		rs485_deat_dedt = delay_DDE * baud * 16;
921bcda09dSBich HEMON 
931bcda09dSBich HEMON 	rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
941bcda09dSBich HEMON 	rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
951bcda09dSBich HEMON 			  rs485_deat_dedt_max : rs485_deat_dedt;
961bcda09dSBich HEMON 	rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEDT_SHIFT) &
971bcda09dSBich HEMON 			   USART_CR1_DEDT_MASK;
981bcda09dSBich HEMON 	*cr1 |= rs485_deat_dedt;
991bcda09dSBich HEMON }
1001bcda09dSBich HEMON 
1011bcda09dSBich HEMON static int stm32_config_rs485(struct uart_port *port,
1021bcda09dSBich HEMON 			      struct serial_rs485 *rs485conf)
1031bcda09dSBich HEMON {
1041bcda09dSBich HEMON 	struct stm32_port *stm32_port = to_stm32_port(port);
1051bcda09dSBich HEMON 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1061bcda09dSBich HEMON 	struct stm32_usart_config *cfg = &stm32_port->info->cfg;
1071bcda09dSBich HEMON 	u32 usartdiv, baud, cr1, cr3;
1081bcda09dSBich HEMON 	bool over8;
1091bcda09dSBich HEMON 
1101bcda09dSBich HEMON 	stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1111bcda09dSBich HEMON 
1121bcda09dSBich HEMON 	port->rs485 = *rs485conf;
1131bcda09dSBich HEMON 
1141bcda09dSBich HEMON 	rs485conf->flags |= SER_RS485_RX_DURING_TX;
1151bcda09dSBich HEMON 
1161bcda09dSBich HEMON 	if (rs485conf->flags & SER_RS485_ENABLED) {
1171bcda09dSBich HEMON 		cr1 = readl_relaxed(port->membase + ofs->cr1);
1181bcda09dSBich HEMON 		cr3 = readl_relaxed(port->membase + ofs->cr3);
1191bcda09dSBich HEMON 		usartdiv = readl_relaxed(port->membase + ofs->brr);
1201bcda09dSBich HEMON 		usartdiv = usartdiv & GENMASK(15, 0);
1211bcda09dSBich HEMON 		over8 = cr1 & USART_CR1_OVER8;
1221bcda09dSBich HEMON 
1231bcda09dSBich HEMON 		if (over8)
1241bcda09dSBich HEMON 			usartdiv = usartdiv | (usartdiv & GENMASK(4, 0))
1251bcda09dSBich HEMON 				   << USART_BRR_04_R_SHIFT;
1261bcda09dSBich HEMON 
1271bcda09dSBich HEMON 		baud = DIV_ROUND_CLOSEST(port->uartclk, usartdiv);
1281bcda09dSBich HEMON 		stm32_config_reg_rs485(&cr1, &cr3,
1291bcda09dSBich HEMON 				       rs485conf->delay_rts_before_send,
1301bcda09dSBich HEMON 				       rs485conf->delay_rts_after_send, baud);
1311bcda09dSBich HEMON 
1321bcda09dSBich HEMON 		if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
1331bcda09dSBich HEMON 			cr3 &= ~USART_CR3_DEP;
1341bcda09dSBich HEMON 			rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
1351bcda09dSBich HEMON 		} else {
1361bcda09dSBich HEMON 			cr3 |= USART_CR3_DEP;
1371bcda09dSBich HEMON 			rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
1381bcda09dSBich HEMON 		}
1391bcda09dSBich HEMON 
1401bcda09dSBich HEMON 		writel_relaxed(cr3, port->membase + ofs->cr3);
1411bcda09dSBich HEMON 		writel_relaxed(cr1, port->membase + ofs->cr1);
1421bcda09dSBich HEMON 	} else {
1431bcda09dSBich HEMON 		stm32_clr_bits(port, ofs->cr3, USART_CR3_DEM | USART_CR3_DEP);
1441bcda09dSBich HEMON 		stm32_clr_bits(port, ofs->cr1,
1451bcda09dSBich HEMON 			       USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
1461bcda09dSBich HEMON 	}
1471bcda09dSBich HEMON 
1481bcda09dSBich HEMON 	stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1491bcda09dSBich HEMON 
1501bcda09dSBich HEMON 	return 0;
1511bcda09dSBich HEMON }
1521bcda09dSBich HEMON 
1531bcda09dSBich HEMON static int stm32_init_rs485(struct uart_port *port,
1541bcda09dSBich HEMON 			    struct platform_device *pdev)
1551bcda09dSBich HEMON {
1561bcda09dSBich HEMON 	struct serial_rs485 *rs485conf = &port->rs485;
1571bcda09dSBich HEMON 
1581bcda09dSBich HEMON 	rs485conf->flags = 0;
1591bcda09dSBich HEMON 	rs485conf->delay_rts_before_send = 0;
1601bcda09dSBich HEMON 	rs485conf->delay_rts_after_send = 0;
1611bcda09dSBich HEMON 
1621bcda09dSBich HEMON 	if (!pdev->dev.of_node)
1631bcda09dSBich HEMON 		return -ENODEV;
1641bcda09dSBich HEMON 
1651bcda09dSBich HEMON 	uart_get_rs485_mode(&pdev->dev, rs485conf);
1661bcda09dSBich HEMON 
1671bcda09dSBich HEMON 	return 0;
1681bcda09dSBich HEMON }
1691bcda09dSBich HEMON 
170b97055bcSBaoyou Xie static int stm32_pending_rx(struct uart_port *port, u32 *sr, int *last_res,
17134891872SAlexandre TORGUE 			    bool threaded)
17234891872SAlexandre TORGUE {
17334891872SAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
17434891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
17534891872SAlexandre TORGUE 	enum dma_status status;
17634891872SAlexandre TORGUE 	struct dma_tx_state state;
17734891872SAlexandre TORGUE 
17834891872SAlexandre TORGUE 	*sr = readl_relaxed(port->membase + ofs->isr);
17934891872SAlexandre TORGUE 
18034891872SAlexandre TORGUE 	if (threaded && stm32_port->rx_ch) {
18134891872SAlexandre TORGUE 		status = dmaengine_tx_status(stm32_port->rx_ch,
18234891872SAlexandre TORGUE 					     stm32_port->rx_ch->cookie,
18334891872SAlexandre TORGUE 					     &state);
18434891872SAlexandre TORGUE 		if ((status == DMA_IN_PROGRESS) &&
18534891872SAlexandre TORGUE 		    (*last_res != state.residue))
18634891872SAlexandre TORGUE 			return 1;
18734891872SAlexandre TORGUE 		else
18834891872SAlexandre TORGUE 			return 0;
18934891872SAlexandre TORGUE 	} else if (*sr & USART_SR_RXNE) {
19034891872SAlexandre TORGUE 		return 1;
19134891872SAlexandre TORGUE 	}
19234891872SAlexandre TORGUE 	return 0;
19334891872SAlexandre TORGUE }
19434891872SAlexandre TORGUE 
1956c5962f3SErwan Le Ray static unsigned long stm32_get_char(struct uart_port *port, u32 *sr,
1966c5962f3SErwan Le Ray 				    int *last_res)
19734891872SAlexandre TORGUE {
19834891872SAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
19934891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
20034891872SAlexandre TORGUE 	unsigned long c;
20134891872SAlexandre TORGUE 
20234891872SAlexandre TORGUE 	if (stm32_port->rx_ch) {
20334891872SAlexandre TORGUE 		c = stm32_port->rx_buf[RX_BUF_L - (*last_res)--];
20434891872SAlexandre TORGUE 		if ((*last_res) == 0)
20534891872SAlexandre TORGUE 			*last_res = RX_BUF_L;
20634891872SAlexandre TORGUE 	} else {
2076c5962f3SErwan Le Ray 		c = readl_relaxed(port->membase + ofs->rdr);
2086c5962f3SErwan Le Ray 		/* apply RDR data mask */
2096c5962f3SErwan Le Ray 		c &= stm32_port->rdr_mask;
21034891872SAlexandre TORGUE 	}
2116c5962f3SErwan Le Ray 
2126c5962f3SErwan Le Ray 	return c;
21334891872SAlexandre TORGUE }
21434891872SAlexandre TORGUE 
21534891872SAlexandre TORGUE static void stm32_receive_chars(struct uart_port *port, bool threaded)
21648a6092fSMaxime Coquelin {
21748a6092fSMaxime Coquelin 	struct tty_port *tport = &port->state->port;
218ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
219ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
22048a6092fSMaxime Coquelin 	unsigned long c;
22148a6092fSMaxime Coquelin 	u32 sr;
22248a6092fSMaxime Coquelin 	char flag;
22348a6092fSMaxime Coquelin 
22429d60981SAndy Shevchenko 	if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
22548a6092fSMaxime Coquelin 		pm_wakeup_event(tport->tty->dev, 0);
22648a6092fSMaxime Coquelin 
227e5707915SGerald Baeza 	while (stm32_pending_rx(port, &sr, &stm32_port->last_res, threaded)) {
22848a6092fSMaxime Coquelin 		sr |= USART_SR_DUMMY_RX;
22948a6092fSMaxime Coquelin 		flag = TTY_NORMAL;
23048a6092fSMaxime Coquelin 
2314f01d833SErwan Le Ray 		/*
2324f01d833SErwan Le Ray 		 * Status bits has to be cleared before reading the RDR:
2334f01d833SErwan Le Ray 		 * In FIFO mode, reading the RDR will pop the next data
2344f01d833SErwan Le Ray 		 * (if any) along with its status bits into the SR.
2354f01d833SErwan Le Ray 		 * Not doing so leads to misalignement between RDR and SR,
2364f01d833SErwan Le Ray 		 * and clear status bits of the next rx data.
2374f01d833SErwan Le Ray 		 *
2384f01d833SErwan Le Ray 		 * Clear errors flags for stm32f7 and stm32h7 compatible
2394f01d833SErwan Le Ray 		 * devices. On stm32f4 compatible devices, the error bit is
2404f01d833SErwan Le Ray 		 * cleared by the sequence [read SR - read DR].
2414f01d833SErwan Le Ray 		 */
2424f01d833SErwan Le Ray 		if ((sr & USART_SR_ERR_MASK) && ofs->icr != UNDEF_REG)
2434f01d833SErwan Le Ray 			stm32_clr_bits(port, ofs->icr, USART_ICR_ORECF |
2444f01d833SErwan Le Ray 				       USART_ICR_PECF | USART_ICR_FECF);
2454f01d833SErwan Le Ray 
2464f01d833SErwan Le Ray 		c = stm32_get_char(port, &sr, &stm32_port->last_res);
2474f01d833SErwan Le Ray 		port->icount.rx++;
24848a6092fSMaxime Coquelin 		if (sr & USART_SR_ERR_MASK) {
2494f01d833SErwan Le Ray 			if (sr & USART_SR_ORE) {
25048a6092fSMaxime Coquelin 				port->icount.overrun++;
25148a6092fSMaxime Coquelin 			} else if (sr & USART_SR_PE) {
25248a6092fSMaxime Coquelin 				port->icount.parity++;
25348a6092fSMaxime Coquelin 			} else if (sr & USART_SR_FE) {
2544f01d833SErwan Le Ray 				/* Break detection if character is null */
2554f01d833SErwan Le Ray 				if (!c) {
2564f01d833SErwan Le Ray 					port->icount.brk++;
2574f01d833SErwan Le Ray 					if (uart_handle_break(port))
2584f01d833SErwan Le Ray 						continue;
2594f01d833SErwan Le Ray 				} else {
26048a6092fSMaxime Coquelin 					port->icount.frame++;
26148a6092fSMaxime Coquelin 				}
2624f01d833SErwan Le Ray 			}
26348a6092fSMaxime Coquelin 
26448a6092fSMaxime Coquelin 			sr &= port->read_status_mask;
26548a6092fSMaxime Coquelin 
2664f01d833SErwan Le Ray 			if (sr & USART_SR_PE) {
26748a6092fSMaxime Coquelin 				flag = TTY_PARITY;
2684f01d833SErwan Le Ray 			} else if (sr & USART_SR_FE) {
2694f01d833SErwan Le Ray 				if (!c)
2704f01d833SErwan Le Ray 					flag = TTY_BREAK;
2714f01d833SErwan Le Ray 				else
27248a6092fSMaxime Coquelin 					flag = TTY_FRAME;
27348a6092fSMaxime Coquelin 			}
2744f01d833SErwan Le Ray 		}
27548a6092fSMaxime Coquelin 
27648a6092fSMaxime Coquelin 		if (uart_handle_sysrq_char(port, c))
27748a6092fSMaxime Coquelin 			continue;
27848a6092fSMaxime Coquelin 		uart_insert_char(port, sr, USART_SR_ORE, c, flag);
27948a6092fSMaxime Coquelin 	}
28048a6092fSMaxime Coquelin 
28148a6092fSMaxime Coquelin 	spin_unlock(&port->lock);
28248a6092fSMaxime Coquelin 	tty_flip_buffer_push(tport);
28348a6092fSMaxime Coquelin 	spin_lock(&port->lock);
28448a6092fSMaxime Coquelin }
28548a6092fSMaxime Coquelin 
28634891872SAlexandre TORGUE static void stm32_tx_dma_complete(void *arg)
28734891872SAlexandre TORGUE {
28834891872SAlexandre TORGUE 	struct uart_port *port = arg;
28934891872SAlexandre TORGUE 	struct stm32_port *stm32port = to_stm32_port(port);
29034891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
29134891872SAlexandre TORGUE 
29234891872SAlexandre TORGUE 	stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
29334891872SAlexandre TORGUE 	stm32port->tx_dma_busy = false;
29434891872SAlexandre TORGUE 
29534891872SAlexandre TORGUE 	/* Let's see if we have pending data to send */
29634891872SAlexandre TORGUE 	stm32_transmit_chars(port);
29734891872SAlexandre TORGUE }
29834891872SAlexandre TORGUE 
299d075719eSErwan Le Ray static void stm32_tx_interrupt_enable(struct uart_port *port)
300d075719eSErwan Le Ray {
301d075719eSErwan Le Ray 	struct stm32_port *stm32_port = to_stm32_port(port);
302d075719eSErwan Le Ray 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
303d075719eSErwan Le Ray 
304d075719eSErwan Le Ray 	/*
305d075719eSErwan Le Ray 	 * Enables TX FIFO threashold irq when FIFO is enabled,
306d075719eSErwan Le Ray 	 * or TX empty irq when FIFO is disabled
307d075719eSErwan Le Ray 	 */
308d075719eSErwan Le Ray 	if (stm32_port->fifoen)
309d075719eSErwan Le Ray 		stm32_set_bits(port, ofs->cr3, USART_CR3_TXFTIE);
310d075719eSErwan Le Ray 	else
311d075719eSErwan Le Ray 		stm32_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
312d075719eSErwan Le Ray }
313d075719eSErwan Le Ray 
314d075719eSErwan Le Ray static void stm32_tx_interrupt_disable(struct uart_port *port)
315d075719eSErwan Le Ray {
316d075719eSErwan Le Ray 	struct stm32_port *stm32_port = to_stm32_port(port);
317d075719eSErwan Le Ray 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
318d075719eSErwan Le Ray 
319d075719eSErwan Le Ray 	if (stm32_port->fifoen)
320d075719eSErwan Le Ray 		stm32_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE);
321d075719eSErwan Le Ray 	else
322d075719eSErwan Le Ray 		stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
323d075719eSErwan Le Ray }
324d075719eSErwan Le Ray 
32534891872SAlexandre TORGUE static void stm32_transmit_chars_pio(struct uart_port *port)
32634891872SAlexandre TORGUE {
32734891872SAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
32834891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
32934891872SAlexandre TORGUE 	struct circ_buf *xmit = &port->state->xmit;
33034891872SAlexandre TORGUE 
33134891872SAlexandre TORGUE 	if (stm32_port->tx_dma_busy) {
33234891872SAlexandre TORGUE 		stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
33334891872SAlexandre TORGUE 		stm32_port->tx_dma_busy = false;
33434891872SAlexandre TORGUE 	}
33534891872SAlexandre TORGUE 
3365d9176edSErwan Le Ray 	while (!uart_circ_empty(xmit)) {
3375d9176edSErwan Le Ray 		/* Check that TDR is empty before filling FIFO */
3385d9176edSErwan Le Ray 		if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
3395d9176edSErwan Le Ray 			break;
34034891872SAlexandre TORGUE 		writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
34134891872SAlexandre TORGUE 		xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
34234891872SAlexandre TORGUE 		port->icount.tx++;
34334891872SAlexandre TORGUE 	}
34434891872SAlexandre TORGUE 
3455d9176edSErwan Le Ray 	/* rely on TXE irq (mask or unmask) for sending remaining data */
3465d9176edSErwan Le Ray 	if (uart_circ_empty(xmit))
347d075719eSErwan Le Ray 		stm32_tx_interrupt_disable(port);
3485d9176edSErwan Le Ray 	else
349d075719eSErwan Le Ray 		stm32_tx_interrupt_enable(port);
3505d9176edSErwan Le Ray }
3515d9176edSErwan Le Ray 
35234891872SAlexandre TORGUE static void stm32_transmit_chars_dma(struct uart_port *port)
35334891872SAlexandre TORGUE {
35434891872SAlexandre TORGUE 	struct stm32_port *stm32port = to_stm32_port(port);
35534891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
35634891872SAlexandre TORGUE 	struct circ_buf *xmit = &port->state->xmit;
35734891872SAlexandre TORGUE 	struct dma_async_tx_descriptor *desc = NULL;
35834891872SAlexandre TORGUE 	dma_cookie_t cookie;
35934891872SAlexandre TORGUE 	unsigned int count, i;
36034891872SAlexandre TORGUE 
36134891872SAlexandre TORGUE 	if (stm32port->tx_dma_busy)
36234891872SAlexandre TORGUE 		return;
36334891872SAlexandre TORGUE 
36434891872SAlexandre TORGUE 	stm32port->tx_dma_busy = true;
36534891872SAlexandre TORGUE 
36634891872SAlexandre TORGUE 	count = uart_circ_chars_pending(xmit);
36734891872SAlexandre TORGUE 
36834891872SAlexandre TORGUE 	if (count > TX_BUF_L)
36934891872SAlexandre TORGUE 		count = TX_BUF_L;
37034891872SAlexandre TORGUE 
37134891872SAlexandre TORGUE 	if (xmit->tail < xmit->head) {
37234891872SAlexandre TORGUE 		memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
37334891872SAlexandre TORGUE 	} else {
37434891872SAlexandre TORGUE 		size_t one = UART_XMIT_SIZE - xmit->tail;
37534891872SAlexandre TORGUE 		size_t two;
37634891872SAlexandre TORGUE 
37734891872SAlexandre TORGUE 		if (one > count)
37834891872SAlexandre TORGUE 			one = count;
37934891872SAlexandre TORGUE 		two = count - one;
38034891872SAlexandre TORGUE 
38134891872SAlexandre TORGUE 		memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
38234891872SAlexandre TORGUE 		if (two)
38334891872SAlexandre TORGUE 			memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
38434891872SAlexandre TORGUE 	}
38534891872SAlexandre TORGUE 
38634891872SAlexandre TORGUE 	desc = dmaengine_prep_slave_single(stm32port->tx_ch,
38734891872SAlexandre TORGUE 					   stm32port->tx_dma_buf,
38834891872SAlexandre TORGUE 					   count,
38934891872SAlexandre TORGUE 					   DMA_MEM_TO_DEV,
39034891872SAlexandre TORGUE 					   DMA_PREP_INTERRUPT);
39134891872SAlexandre TORGUE 
39234891872SAlexandre TORGUE 	if (!desc) {
39334891872SAlexandre TORGUE 		for (i = count; i > 0; i--)
39434891872SAlexandre TORGUE 			stm32_transmit_chars_pio(port);
39534891872SAlexandre TORGUE 		return;
39634891872SAlexandre TORGUE 	}
39734891872SAlexandre TORGUE 
39834891872SAlexandre TORGUE 	desc->callback = stm32_tx_dma_complete;
39934891872SAlexandre TORGUE 	desc->callback_param = port;
40034891872SAlexandre TORGUE 
40134891872SAlexandre TORGUE 	/* Push current DMA TX transaction in the pending queue */
40234891872SAlexandre TORGUE 	cookie = dmaengine_submit(desc);
40334891872SAlexandre TORGUE 
40434891872SAlexandre TORGUE 	/* Issue pending DMA TX requests */
40534891872SAlexandre TORGUE 	dma_async_issue_pending(stm32port->tx_ch);
40634891872SAlexandre TORGUE 
40734891872SAlexandre TORGUE 	stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
40834891872SAlexandre TORGUE 
40934891872SAlexandre TORGUE 	xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
41034891872SAlexandre TORGUE 	port->icount.tx += count;
41134891872SAlexandre TORGUE }
41234891872SAlexandre TORGUE 
41348a6092fSMaxime Coquelin static void stm32_transmit_chars(struct uart_port *port)
41448a6092fSMaxime Coquelin {
415ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
416ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
41748a6092fSMaxime Coquelin 	struct circ_buf *xmit = &port->state->xmit;
41848a6092fSMaxime Coquelin 
41948a6092fSMaxime Coquelin 	if (port->x_char) {
42034891872SAlexandre TORGUE 		if (stm32_port->tx_dma_busy)
42134891872SAlexandre TORGUE 			stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
422ada8618fSAlexandre TORGUE 		writel_relaxed(port->x_char, port->membase + ofs->tdr);
42348a6092fSMaxime Coquelin 		port->x_char = 0;
42448a6092fSMaxime Coquelin 		port->icount.tx++;
42534891872SAlexandre TORGUE 		if (stm32_port->tx_dma_busy)
42634891872SAlexandre TORGUE 			stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
42748a6092fSMaxime Coquelin 		return;
42848a6092fSMaxime Coquelin 	}
42948a6092fSMaxime Coquelin 
430b83b957cSErwan Le Ray 	if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
431d075719eSErwan Le Ray 		stm32_tx_interrupt_disable(port);
43248a6092fSMaxime Coquelin 		return;
43348a6092fSMaxime Coquelin 	}
43448a6092fSMaxime Coquelin 
43564c32eabSErwan Le Ray 	if (ofs->icr == UNDEF_REG)
43664c32eabSErwan Le Ray 		stm32_clr_bits(port, ofs->isr, USART_SR_TC);
43764c32eabSErwan Le Ray 	else
43864c32eabSErwan Le Ray 		stm32_set_bits(port, ofs->icr, USART_ICR_TCCF);
43964c32eabSErwan Le Ray 
44034891872SAlexandre TORGUE 	if (stm32_port->tx_ch)
44134891872SAlexandre TORGUE 		stm32_transmit_chars_dma(port);
44234891872SAlexandre TORGUE 	else
44334891872SAlexandre TORGUE 		stm32_transmit_chars_pio(port);
44448a6092fSMaxime Coquelin 
44548a6092fSMaxime Coquelin 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
44648a6092fSMaxime Coquelin 		uart_write_wakeup(port);
44748a6092fSMaxime Coquelin 
44848a6092fSMaxime Coquelin 	if (uart_circ_empty(xmit))
449d075719eSErwan Le Ray 		stm32_tx_interrupt_disable(port);
45048a6092fSMaxime Coquelin }
45148a6092fSMaxime Coquelin 
45248a6092fSMaxime Coquelin static irqreturn_t stm32_interrupt(int irq, void *ptr)
45348a6092fSMaxime Coquelin {
45448a6092fSMaxime Coquelin 	struct uart_port *port = ptr;
455ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
456ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
45748a6092fSMaxime Coquelin 	u32 sr;
45848a6092fSMaxime Coquelin 
45901d32d71SAlexandre TORGUE 	spin_lock(&port->lock);
46001d32d71SAlexandre TORGUE 
461ada8618fSAlexandre TORGUE 	sr = readl_relaxed(port->membase + ofs->isr);
46248a6092fSMaxime Coquelin 
4634cc0ed62SErwan Le Ray 	if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG)
4644cc0ed62SErwan Le Ray 		writel_relaxed(USART_ICR_RTOCF,
4654cc0ed62SErwan Le Ray 			       port->membase + ofs->icr);
4664cc0ed62SErwan Le Ray 
467270e5a74SFabrice Gasnier 	if ((sr & USART_SR_WUF) && (ofs->icr != UNDEF_REG))
468270e5a74SFabrice Gasnier 		writel_relaxed(USART_ICR_WUCF,
469270e5a74SFabrice Gasnier 			       port->membase + ofs->icr);
470270e5a74SFabrice Gasnier 
47134891872SAlexandre TORGUE 	if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch))
47234891872SAlexandre TORGUE 		stm32_receive_chars(port, false);
47348a6092fSMaxime Coquelin 
47434891872SAlexandre TORGUE 	if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch))
47548a6092fSMaxime Coquelin 		stm32_transmit_chars(port);
47648a6092fSMaxime Coquelin 
47701d32d71SAlexandre TORGUE 	spin_unlock(&port->lock);
47801d32d71SAlexandre TORGUE 
47934891872SAlexandre TORGUE 	if (stm32_port->rx_ch)
48034891872SAlexandre TORGUE 		return IRQ_WAKE_THREAD;
48134891872SAlexandre TORGUE 	else
48234891872SAlexandre TORGUE 		return IRQ_HANDLED;
48334891872SAlexandre TORGUE }
48434891872SAlexandre TORGUE 
48534891872SAlexandre TORGUE static irqreturn_t stm32_threaded_interrupt(int irq, void *ptr)
48634891872SAlexandre TORGUE {
48734891872SAlexandre TORGUE 	struct uart_port *port = ptr;
48834891872SAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
48934891872SAlexandre TORGUE 
49034891872SAlexandre TORGUE 	spin_lock(&port->lock);
49134891872SAlexandre TORGUE 
49234891872SAlexandre TORGUE 	if (stm32_port->rx_ch)
49334891872SAlexandre TORGUE 		stm32_receive_chars(port, true);
49434891872SAlexandre TORGUE 
49548a6092fSMaxime Coquelin 	spin_unlock(&port->lock);
49648a6092fSMaxime Coquelin 
49748a6092fSMaxime Coquelin 	return IRQ_HANDLED;
49848a6092fSMaxime Coquelin }
49948a6092fSMaxime Coquelin 
50048a6092fSMaxime Coquelin static unsigned int stm32_tx_empty(struct uart_port *port)
50148a6092fSMaxime Coquelin {
502ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
503ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
504ada8618fSAlexandre TORGUE 
505ada8618fSAlexandre TORGUE 	return readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE;
50648a6092fSMaxime Coquelin }
50748a6092fSMaxime Coquelin 
50848a6092fSMaxime Coquelin static void stm32_set_mctrl(struct uart_port *port, unsigned int mctrl)
50948a6092fSMaxime Coquelin {
510ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
511ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
512ada8618fSAlexandre TORGUE 
51348a6092fSMaxime Coquelin 	if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
514ada8618fSAlexandre TORGUE 		stm32_set_bits(port, ofs->cr3, USART_CR3_RTSE);
51548a6092fSMaxime Coquelin 	else
516ada8618fSAlexandre TORGUE 		stm32_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
51748a6092fSMaxime Coquelin }
51848a6092fSMaxime Coquelin 
51948a6092fSMaxime Coquelin static unsigned int stm32_get_mctrl(struct uart_port *port)
52048a6092fSMaxime Coquelin {
52148a6092fSMaxime Coquelin 	/* This routine is used to get signals of: DCD, DSR, RI, and CTS */
52248a6092fSMaxime Coquelin 	return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
52348a6092fSMaxime Coquelin }
52448a6092fSMaxime Coquelin 
52548a6092fSMaxime Coquelin /* Transmit stop */
52648a6092fSMaxime Coquelin static void stm32_stop_tx(struct uart_port *port)
52748a6092fSMaxime Coquelin {
528d075719eSErwan Le Ray 	stm32_tx_interrupt_disable(port);
52948a6092fSMaxime Coquelin }
53048a6092fSMaxime Coquelin 
53148a6092fSMaxime Coquelin /* There are probably characters waiting to be transmitted. */
53248a6092fSMaxime Coquelin static void stm32_start_tx(struct uart_port *port)
53348a6092fSMaxime Coquelin {
53448a6092fSMaxime Coquelin 	struct circ_buf *xmit = &port->state->xmit;
53548a6092fSMaxime Coquelin 
53648a6092fSMaxime Coquelin 	if (uart_circ_empty(xmit))
53748a6092fSMaxime Coquelin 		return;
53848a6092fSMaxime Coquelin 
53934891872SAlexandre TORGUE 	stm32_transmit_chars(port);
54048a6092fSMaxime Coquelin }
54148a6092fSMaxime Coquelin 
54248a6092fSMaxime Coquelin /* Throttle the remote when input buffer is about to overflow. */
54348a6092fSMaxime Coquelin static void stm32_throttle(struct uart_port *port)
54448a6092fSMaxime Coquelin {
545ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
546ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
54748a6092fSMaxime Coquelin 	unsigned long flags;
54848a6092fSMaxime Coquelin 
54948a6092fSMaxime Coquelin 	spin_lock_irqsave(&port->lock, flags);
5504cc0ed62SErwan Le Ray 	stm32_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
551d0a6a7bcSErwan Le Ray 	if (stm32_port->cr3_irq)
552d0a6a7bcSErwan Le Ray 		stm32_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
553d0a6a7bcSErwan Le Ray 
55448a6092fSMaxime Coquelin 	spin_unlock_irqrestore(&port->lock, flags);
55548a6092fSMaxime Coquelin }
55648a6092fSMaxime Coquelin 
55748a6092fSMaxime Coquelin /* Unthrottle the remote, the input buffer can now accept data. */
55848a6092fSMaxime Coquelin static void stm32_unthrottle(struct uart_port *port)
55948a6092fSMaxime Coquelin {
560ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
561ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
56248a6092fSMaxime Coquelin 	unsigned long flags;
56348a6092fSMaxime Coquelin 
56448a6092fSMaxime Coquelin 	spin_lock_irqsave(&port->lock, flags);
5654cc0ed62SErwan Le Ray 	stm32_set_bits(port, ofs->cr1, stm32_port->cr1_irq);
566d0a6a7bcSErwan Le Ray 	if (stm32_port->cr3_irq)
567d0a6a7bcSErwan Le Ray 		stm32_set_bits(port, ofs->cr3, stm32_port->cr3_irq);
568d0a6a7bcSErwan Le Ray 
56948a6092fSMaxime Coquelin 	spin_unlock_irqrestore(&port->lock, flags);
57048a6092fSMaxime Coquelin }
57148a6092fSMaxime Coquelin 
57248a6092fSMaxime Coquelin /* Receive stop */
57348a6092fSMaxime Coquelin static void stm32_stop_rx(struct uart_port *port)
57448a6092fSMaxime Coquelin {
575ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
576ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
577ada8618fSAlexandre TORGUE 
5784cc0ed62SErwan Le Ray 	stm32_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
579d0a6a7bcSErwan Le Ray 	if (stm32_port->cr3_irq)
580d0a6a7bcSErwan Le Ray 		stm32_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
581d0a6a7bcSErwan Le Ray 
58248a6092fSMaxime Coquelin }
58348a6092fSMaxime Coquelin 
58448a6092fSMaxime Coquelin /* Handle breaks - ignored by us */
58548a6092fSMaxime Coquelin static void stm32_break_ctl(struct uart_port *port, int break_state)
58648a6092fSMaxime Coquelin {
58748a6092fSMaxime Coquelin }
58848a6092fSMaxime Coquelin 
58948a6092fSMaxime Coquelin static int stm32_startup(struct uart_port *port)
59048a6092fSMaxime Coquelin {
591ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
592ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
59348a6092fSMaxime Coquelin 	const char *name = to_platform_device(port->dev)->name;
59448a6092fSMaxime Coquelin 	u32 val;
59548a6092fSMaxime Coquelin 	int ret;
59648a6092fSMaxime Coquelin 
59734891872SAlexandre TORGUE 	ret = request_threaded_irq(port->irq, stm32_interrupt,
59834891872SAlexandre TORGUE 				   stm32_threaded_interrupt,
59934891872SAlexandre TORGUE 				   IRQF_NO_SUSPEND, name, port);
60048a6092fSMaxime Coquelin 	if (ret)
60148a6092fSMaxime Coquelin 		return ret;
60248a6092fSMaxime Coquelin 
60384872dc4SErwan Le Ray 	/* RX FIFO Flush */
60484872dc4SErwan Le Ray 	if (ofs->rqr != UNDEF_REG)
60584872dc4SErwan Le Ray 		stm32_set_bits(port, ofs->rqr, USART_RQR_RXFRQ);
60648a6092fSMaxime Coquelin 
60784872dc4SErwan Le Ray 	/* Tx and RX FIFO configuration */
608d075719eSErwan Le Ray 	if (stm32_port->fifoen) {
609d075719eSErwan Le Ray 		val = readl_relaxed(port->membase + ofs->cr3);
610d0a6a7bcSErwan Le Ray 		val &= ~(USART_CR3_TXFTCFG_MASK | USART_CR3_RXFTCFG_MASK);
611d075719eSErwan Le Ray 		val |= USART_CR3_TXFTCFG_HALF << USART_CR3_TXFTCFG_SHIFT;
612d0a6a7bcSErwan Le Ray 		val |= USART_CR3_RXFTCFG_HALF << USART_CR3_RXFTCFG_SHIFT;
613d075719eSErwan Le Ray 		writel_relaxed(val, port->membase + ofs->cr3);
614d075719eSErwan Le Ray 	}
615d075719eSErwan Le Ray 
61684872dc4SErwan Le Ray 	/* RX FIFO enabling */
61784872dc4SErwan Le Ray 	val = stm32_port->cr1_irq | USART_CR1_RE;
61884872dc4SErwan Le Ray 	if (stm32_port->fifoen)
61984872dc4SErwan Le Ray 		val |= USART_CR1_FIFOEN;
62084872dc4SErwan Le Ray 	stm32_set_bits(port, ofs->cr1, val);
62184872dc4SErwan Le Ray 
62248a6092fSMaxime Coquelin 	return 0;
62348a6092fSMaxime Coquelin }
62448a6092fSMaxime Coquelin 
62548a6092fSMaxime Coquelin static void stm32_shutdown(struct uart_port *port)
62648a6092fSMaxime Coquelin {
627ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
628ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
62987f1f809SAlexandre TORGUE 	struct stm32_usart_config *cfg = &stm32_port->info->cfg;
63064c32eabSErwan Le Ray 	u32 val, isr;
63164c32eabSErwan Le Ray 	int ret;
63248a6092fSMaxime Coquelin 
6334cc0ed62SErwan Le Ray 	val = USART_CR1_TXEIE | USART_CR1_TE;
6344cc0ed62SErwan Le Ray 	val |= stm32_port->cr1_irq | USART_CR1_RE;
63587f1f809SAlexandre TORGUE 	val |= BIT(cfg->uart_enable_bit);
636351a762aSGerald Baeza 	if (stm32_port->fifoen)
637351a762aSGerald Baeza 		val |= USART_CR1_FIFOEN;
63864c32eabSErwan Le Ray 
63964c32eabSErwan Le Ray 	ret = readl_relaxed_poll_timeout(port->membase + ofs->isr,
64064c32eabSErwan Le Ray 					 isr, (isr & USART_SR_TC),
64164c32eabSErwan Le Ray 					 10, 100000);
64264c32eabSErwan Le Ray 
64364c32eabSErwan Le Ray 	if (ret)
64464c32eabSErwan Le Ray 		dev_err(port->dev, "transmission complete not set\n");
64564c32eabSErwan Le Ray 
646a14f66a4SAlexandre TORGUE 	stm32_clr_bits(port, ofs->cr1, val);
64748a6092fSMaxime Coquelin 
64848a6092fSMaxime Coquelin 	free_irq(port->irq, port);
64948a6092fSMaxime Coquelin }
65048a6092fSMaxime Coquelin 
651929ffa4aSYueHaibing static unsigned int stm32_get_databits(struct ktermios *termios)
652c8a9d043SErwan Le Ray {
653c8a9d043SErwan Le Ray 	unsigned int bits;
654c8a9d043SErwan Le Ray 
655c8a9d043SErwan Le Ray 	tcflag_t cflag = termios->c_cflag;
656c8a9d043SErwan Le Ray 
657c8a9d043SErwan Le Ray 	switch (cflag & CSIZE) {
658c8a9d043SErwan Le Ray 	/*
659c8a9d043SErwan Le Ray 	 * CSIZE settings are not necessarily supported in hardware.
660c8a9d043SErwan Le Ray 	 * CSIZE unsupported configurations are handled here to set word length
661c8a9d043SErwan Le Ray 	 * to 8 bits word as default configuration and to print debug message.
662c8a9d043SErwan Le Ray 	 */
663c8a9d043SErwan Le Ray 	case CS5:
664c8a9d043SErwan Le Ray 		bits = 5;
665c8a9d043SErwan Le Ray 		break;
666c8a9d043SErwan Le Ray 	case CS6:
667c8a9d043SErwan Le Ray 		bits = 6;
668c8a9d043SErwan Le Ray 		break;
669c8a9d043SErwan Le Ray 	case CS7:
670c8a9d043SErwan Le Ray 		bits = 7;
671c8a9d043SErwan Le Ray 		break;
672c8a9d043SErwan Le Ray 	/* default including CS8 */
673c8a9d043SErwan Le Ray 	default:
674c8a9d043SErwan Le Ray 		bits = 8;
675c8a9d043SErwan Le Ray 		break;
676c8a9d043SErwan Le Ray 	}
677c8a9d043SErwan Le Ray 
678c8a9d043SErwan Le Ray 	return bits;
679c8a9d043SErwan Le Ray }
680c8a9d043SErwan Le Ray 
68148a6092fSMaxime Coquelin static void stm32_set_termios(struct uart_port *port, struct ktermios *termios,
68248a6092fSMaxime Coquelin 			    struct ktermios *old)
68348a6092fSMaxime Coquelin {
68448a6092fSMaxime Coquelin 	struct stm32_port *stm32_port = to_stm32_port(port);
685ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
686ada8618fSAlexandre TORGUE 	struct stm32_usart_config *cfg = &stm32_port->info->cfg;
6871bcda09dSBich HEMON 	struct serial_rs485 *rs485conf = &port->rs485;
688c8a9d043SErwan Le Ray 	unsigned int baud, bits;
68948a6092fSMaxime Coquelin 	u32 usartdiv, mantissa, fraction, oversampling;
69048a6092fSMaxime Coquelin 	tcflag_t cflag = termios->c_cflag;
69148a6092fSMaxime Coquelin 	u32 cr1, cr2, cr3;
69248a6092fSMaxime Coquelin 	unsigned long flags;
69348a6092fSMaxime Coquelin 
69448a6092fSMaxime Coquelin 	if (!stm32_port->hw_flow_control)
69548a6092fSMaxime Coquelin 		cflag &= ~CRTSCTS;
69648a6092fSMaxime Coquelin 
69748a6092fSMaxime Coquelin 	baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
69848a6092fSMaxime Coquelin 
69948a6092fSMaxime Coquelin 	spin_lock_irqsave(&port->lock, flags);
70048a6092fSMaxime Coquelin 
70148a6092fSMaxime Coquelin 	/* Stop serial port and reset value */
702ada8618fSAlexandre TORGUE 	writel_relaxed(0, port->membase + ofs->cr1);
70348a6092fSMaxime Coquelin 
70484872dc4SErwan Le Ray 	/* flush RX & TX FIFO */
70584872dc4SErwan Le Ray 	if (ofs->rqr != UNDEF_REG)
70684872dc4SErwan Le Ray 		stm32_set_bits(port, ofs->rqr,
70784872dc4SErwan Le Ray 			       USART_RQR_TXFRQ | USART_RQR_RXFRQ);
7081bcda09dSBich HEMON 
70984872dc4SErwan Le Ray 	cr1 = USART_CR1_TE | USART_CR1_RE;
710351a762aSGerald Baeza 	if (stm32_port->fifoen)
711351a762aSGerald Baeza 		cr1 |= USART_CR1_FIFOEN;
71248a6092fSMaxime Coquelin 	cr2 = 0;
713d075719eSErwan Le Ray 	cr3 = readl_relaxed(port->membase + ofs->cr3);
714d0a6a7bcSErwan Le Ray 	cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTCFG_MASK | USART_CR3_RXFTIE
715d075719eSErwan Le Ray 		| USART_CR3_TXFTCFG_MASK;
71648a6092fSMaxime Coquelin 
71748a6092fSMaxime Coquelin 	if (cflag & CSTOPB)
71848a6092fSMaxime Coquelin 		cr2 |= USART_CR2_STOP_2B;
71948a6092fSMaxime Coquelin 
720c8a9d043SErwan Le Ray 	bits = stm32_get_databits(termios);
7216c5962f3SErwan Le Ray 	stm32_port->rdr_mask = (BIT(bits) - 1);
722c8a9d043SErwan Le Ray 
72348a6092fSMaxime Coquelin 	if (cflag & PARENB) {
724c8a9d043SErwan Le Ray 		bits++;
72548a6092fSMaxime Coquelin 		cr1 |= USART_CR1_PCE;
726c8a9d043SErwan Le Ray 	}
727c8a9d043SErwan Le Ray 
728c8a9d043SErwan Le Ray 	/*
729c8a9d043SErwan Le Ray 	 * Word length configuration:
730c8a9d043SErwan Le Ray 	 * CS8 + parity, 9 bits word aka [M1:M0] = 0b01
731c8a9d043SErwan Le Ray 	 * CS7 or (CS6 + parity), 7 bits word aka [M1:M0] = 0b10
732c8a9d043SErwan Le Ray 	 * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00
733c8a9d043SErwan Le Ray 	 * M0 and M1 already cleared by cr1 initialization.
734c8a9d043SErwan Le Ray 	 */
735c8a9d043SErwan Le Ray 	if (bits == 9)
736ada8618fSAlexandre TORGUE 		cr1 |= USART_CR1_M0;
737c8a9d043SErwan Le Ray 	else if ((bits == 7) && cfg->has_7bits_data)
738c8a9d043SErwan Le Ray 		cr1 |= USART_CR1_M1;
739c8a9d043SErwan Le Ray 	else if (bits != 8)
740c8a9d043SErwan Le Ray 		dev_dbg(port->dev, "Unsupported data bits config: %u bits\n"
741c8a9d043SErwan Le Ray 			, bits);
74248a6092fSMaxime Coquelin 
7434cc0ed62SErwan Le Ray 	if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch ||
7444cc0ed62SErwan Le Ray 				       stm32_port->fifoen)) {
7454cc0ed62SErwan Le Ray 		if (cflag & CSTOPB)
7464cc0ed62SErwan Le Ray 			bits = bits + 3; /* 1 start bit + 2 stop bits */
7474cc0ed62SErwan Le Ray 		else
7484cc0ed62SErwan Le Ray 			bits = bits + 2; /* 1 start bit + 1 stop bit */
7494cc0ed62SErwan Le Ray 
7504cc0ed62SErwan Le Ray 		/* RX timeout irq to occur after last stop bit + bits */
7514cc0ed62SErwan Le Ray 		stm32_port->cr1_irq = USART_CR1_RTOIE;
7524cc0ed62SErwan Le Ray 		writel_relaxed(bits, port->membase + ofs->rtor);
7534cc0ed62SErwan Le Ray 		cr2 |= USART_CR2_RTOEN;
754d0a6a7bcSErwan Le Ray 		/* Not using dma, enable fifo threshold irq */
755d0a6a7bcSErwan Le Ray 		if (!stm32_port->rx_ch)
756d0a6a7bcSErwan Le Ray 			stm32_port->cr3_irq =  USART_CR3_RXFTIE;
7574cc0ed62SErwan Le Ray 	}
7584cc0ed62SErwan Le Ray 
759d0a6a7bcSErwan Le Ray 	cr1 |= stm32_port->cr1_irq;
760d0a6a7bcSErwan Le Ray 	cr3 |= stm32_port->cr3_irq;
761d0a6a7bcSErwan Le Ray 
76248a6092fSMaxime Coquelin 	if (cflag & PARODD)
76348a6092fSMaxime Coquelin 		cr1 |= USART_CR1_PS;
76448a6092fSMaxime Coquelin 
76548a6092fSMaxime Coquelin 	port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
76648a6092fSMaxime Coquelin 	if (cflag & CRTSCTS) {
76748a6092fSMaxime Coquelin 		port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
76835abe98fSBich HEMON 		cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
76948a6092fSMaxime Coquelin 	}
77048a6092fSMaxime Coquelin 
77148a6092fSMaxime Coquelin 	usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
77248a6092fSMaxime Coquelin 
77348a6092fSMaxime Coquelin 	/*
77448a6092fSMaxime Coquelin 	 * The USART supports 16 or 8 times oversampling.
77548a6092fSMaxime Coquelin 	 * By default we prefer 16 times oversampling, so that the receiver
77648a6092fSMaxime Coquelin 	 * has a better tolerance to clock deviations.
77748a6092fSMaxime Coquelin 	 * 8 times oversampling is only used to achieve higher speeds.
77848a6092fSMaxime Coquelin 	 */
77948a6092fSMaxime Coquelin 	if (usartdiv < 16) {
78048a6092fSMaxime Coquelin 		oversampling = 8;
7811bcda09dSBich HEMON 		cr1 |= USART_CR1_OVER8;
782ada8618fSAlexandre TORGUE 		stm32_set_bits(port, ofs->cr1, USART_CR1_OVER8);
78348a6092fSMaxime Coquelin 	} else {
78448a6092fSMaxime Coquelin 		oversampling = 16;
7851bcda09dSBich HEMON 		cr1 &= ~USART_CR1_OVER8;
786ada8618fSAlexandre TORGUE 		stm32_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
78748a6092fSMaxime Coquelin 	}
78848a6092fSMaxime Coquelin 
78948a6092fSMaxime Coquelin 	mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
79048a6092fSMaxime Coquelin 	fraction = usartdiv % oversampling;
791ada8618fSAlexandre TORGUE 	writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
79248a6092fSMaxime Coquelin 
79348a6092fSMaxime Coquelin 	uart_update_timeout(port, cflag, baud);
79448a6092fSMaxime Coquelin 
79548a6092fSMaxime Coquelin 	port->read_status_mask = USART_SR_ORE;
79648a6092fSMaxime Coquelin 	if (termios->c_iflag & INPCK)
79748a6092fSMaxime Coquelin 		port->read_status_mask |= USART_SR_PE | USART_SR_FE;
79848a6092fSMaxime Coquelin 	if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
7994f01d833SErwan Le Ray 		port->read_status_mask |= USART_SR_FE;
80048a6092fSMaxime Coquelin 
80148a6092fSMaxime Coquelin 	/* Characters to ignore */
80248a6092fSMaxime Coquelin 	port->ignore_status_mask = 0;
80348a6092fSMaxime Coquelin 	if (termios->c_iflag & IGNPAR)
80448a6092fSMaxime Coquelin 		port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
80548a6092fSMaxime Coquelin 	if (termios->c_iflag & IGNBRK) {
8064f01d833SErwan Le Ray 		port->ignore_status_mask |= USART_SR_FE;
80748a6092fSMaxime Coquelin 		/*
80848a6092fSMaxime Coquelin 		 * If we're ignoring parity and break indicators,
80948a6092fSMaxime Coquelin 		 * ignore overruns too (for real raw support).
81048a6092fSMaxime Coquelin 		 */
81148a6092fSMaxime Coquelin 		if (termios->c_iflag & IGNPAR)
81248a6092fSMaxime Coquelin 			port->ignore_status_mask |= USART_SR_ORE;
81348a6092fSMaxime Coquelin 	}
81448a6092fSMaxime Coquelin 
81548a6092fSMaxime Coquelin 	/* Ignore all characters if CREAD is not set */
81648a6092fSMaxime Coquelin 	if ((termios->c_cflag & CREAD) == 0)
81748a6092fSMaxime Coquelin 		port->ignore_status_mask |= USART_SR_DUMMY_RX;
81848a6092fSMaxime Coquelin 
81934891872SAlexandre TORGUE 	if (stm32_port->rx_ch)
82034891872SAlexandre TORGUE 		cr3 |= USART_CR3_DMAR;
82134891872SAlexandre TORGUE 
8221bcda09dSBich HEMON 	if (rs485conf->flags & SER_RS485_ENABLED) {
8231bcda09dSBich HEMON 		stm32_config_reg_rs485(&cr1, &cr3,
8241bcda09dSBich HEMON 				       rs485conf->delay_rts_before_send,
8251bcda09dSBich HEMON 				       rs485conf->delay_rts_after_send, baud);
8261bcda09dSBich HEMON 		if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
8271bcda09dSBich HEMON 			cr3 &= ~USART_CR3_DEP;
8281bcda09dSBich HEMON 			rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
8291bcda09dSBich HEMON 		} else {
8301bcda09dSBich HEMON 			cr3 |= USART_CR3_DEP;
8311bcda09dSBich HEMON 			rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
8321bcda09dSBich HEMON 		}
8331bcda09dSBich HEMON 
8341bcda09dSBich HEMON 	} else {
8351bcda09dSBich HEMON 		cr3 &= ~(USART_CR3_DEM | USART_CR3_DEP);
8361bcda09dSBich HEMON 		cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
8371bcda09dSBich HEMON 	}
8381bcda09dSBich HEMON 
839ada8618fSAlexandre TORGUE 	writel_relaxed(cr3, port->membase + ofs->cr3);
840ada8618fSAlexandre TORGUE 	writel_relaxed(cr2, port->membase + ofs->cr2);
841ada8618fSAlexandre TORGUE 	writel_relaxed(cr1, port->membase + ofs->cr1);
84248a6092fSMaxime Coquelin 
8431bcda09dSBich HEMON 	stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
84448a6092fSMaxime Coquelin 	spin_unlock_irqrestore(&port->lock, flags);
84548a6092fSMaxime Coquelin }
84648a6092fSMaxime Coquelin 
84748a6092fSMaxime Coquelin static const char *stm32_type(struct uart_port *port)
84848a6092fSMaxime Coquelin {
84948a6092fSMaxime Coquelin 	return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
85048a6092fSMaxime Coquelin }
85148a6092fSMaxime Coquelin 
85248a6092fSMaxime Coquelin static void stm32_release_port(struct uart_port *port)
85348a6092fSMaxime Coquelin {
85448a6092fSMaxime Coquelin }
85548a6092fSMaxime Coquelin 
85648a6092fSMaxime Coquelin static int stm32_request_port(struct uart_port *port)
85748a6092fSMaxime Coquelin {
85848a6092fSMaxime Coquelin 	return 0;
85948a6092fSMaxime Coquelin }
86048a6092fSMaxime Coquelin 
86148a6092fSMaxime Coquelin static void stm32_config_port(struct uart_port *port, int flags)
86248a6092fSMaxime Coquelin {
86348a6092fSMaxime Coquelin 	if (flags & UART_CONFIG_TYPE)
86448a6092fSMaxime Coquelin 		port->type = PORT_STM32;
86548a6092fSMaxime Coquelin }
86648a6092fSMaxime Coquelin 
86748a6092fSMaxime Coquelin static int
86848a6092fSMaxime Coquelin stm32_verify_port(struct uart_port *port, struct serial_struct *ser)
86948a6092fSMaxime Coquelin {
87048a6092fSMaxime Coquelin 	/* No user changeable parameters */
87148a6092fSMaxime Coquelin 	return -EINVAL;
87248a6092fSMaxime Coquelin }
87348a6092fSMaxime Coquelin 
87448a6092fSMaxime Coquelin static void stm32_pm(struct uart_port *port, unsigned int state,
87548a6092fSMaxime Coquelin 		unsigned int oldstate)
87648a6092fSMaxime Coquelin {
87748a6092fSMaxime Coquelin 	struct stm32_port *stm32port = container_of(port,
87848a6092fSMaxime Coquelin 			struct stm32_port, port);
879ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
880ada8618fSAlexandre TORGUE 	struct stm32_usart_config *cfg = &stm32port->info->cfg;
88148a6092fSMaxime Coquelin 	unsigned long flags = 0;
88248a6092fSMaxime Coquelin 
88348a6092fSMaxime Coquelin 	switch (state) {
88448a6092fSMaxime Coquelin 	case UART_PM_STATE_ON:
885*fb6dcef6SErwan Le Ray 		pm_runtime_get_sync(port->dev);
88648a6092fSMaxime Coquelin 		break;
88748a6092fSMaxime Coquelin 	case UART_PM_STATE_OFF:
88848a6092fSMaxime Coquelin 		spin_lock_irqsave(&port->lock, flags);
889ada8618fSAlexandre TORGUE 		stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
89048a6092fSMaxime Coquelin 		spin_unlock_irqrestore(&port->lock, flags);
891*fb6dcef6SErwan Le Ray 		pm_runtime_put_sync(port->dev);
89248a6092fSMaxime Coquelin 		break;
89348a6092fSMaxime Coquelin 	}
89448a6092fSMaxime Coquelin }
89548a6092fSMaxime Coquelin 
89648a6092fSMaxime Coquelin static const struct uart_ops stm32_uart_ops = {
89748a6092fSMaxime Coquelin 	.tx_empty	= stm32_tx_empty,
89848a6092fSMaxime Coquelin 	.set_mctrl	= stm32_set_mctrl,
89948a6092fSMaxime Coquelin 	.get_mctrl	= stm32_get_mctrl,
90048a6092fSMaxime Coquelin 	.stop_tx	= stm32_stop_tx,
90148a6092fSMaxime Coquelin 	.start_tx	= stm32_start_tx,
90248a6092fSMaxime Coquelin 	.throttle	= stm32_throttle,
90348a6092fSMaxime Coquelin 	.unthrottle	= stm32_unthrottle,
90448a6092fSMaxime Coquelin 	.stop_rx	= stm32_stop_rx,
90548a6092fSMaxime Coquelin 	.break_ctl	= stm32_break_ctl,
90648a6092fSMaxime Coquelin 	.startup	= stm32_startup,
90748a6092fSMaxime Coquelin 	.shutdown	= stm32_shutdown,
90848a6092fSMaxime Coquelin 	.set_termios	= stm32_set_termios,
90948a6092fSMaxime Coquelin 	.pm		= stm32_pm,
91048a6092fSMaxime Coquelin 	.type		= stm32_type,
91148a6092fSMaxime Coquelin 	.release_port	= stm32_release_port,
91248a6092fSMaxime Coquelin 	.request_port	= stm32_request_port,
91348a6092fSMaxime Coquelin 	.config_port	= stm32_config_port,
91448a6092fSMaxime Coquelin 	.verify_port	= stm32_verify_port,
91548a6092fSMaxime Coquelin };
91648a6092fSMaxime Coquelin 
91748a6092fSMaxime Coquelin static int stm32_init_port(struct stm32_port *stm32port,
91848a6092fSMaxime Coquelin 			  struct platform_device *pdev)
91948a6092fSMaxime Coquelin {
92048a6092fSMaxime Coquelin 	struct uart_port *port = &stm32port->port;
92148a6092fSMaxime Coquelin 	struct resource *res;
92248a6092fSMaxime Coquelin 	int ret;
92348a6092fSMaxime Coquelin 
92448a6092fSMaxime Coquelin 	port->iotype	= UPIO_MEM;
92548a6092fSMaxime Coquelin 	port->flags	= UPF_BOOT_AUTOCONF;
92648a6092fSMaxime Coquelin 	port->ops	= &stm32_uart_ops;
92748a6092fSMaxime Coquelin 	port->dev	= &pdev->dev;
928d075719eSErwan Le Ray 	port->fifosize	= stm32port->info->cfg.fifosize;
9292c58e560SErwan Le Ray 
9302c58e560SErwan Le Ray 	ret = platform_get_irq(pdev, 0);
9312c58e560SErwan Le Ray 	if (ret <= 0) {
9322c58e560SErwan Le Ray 		if (ret != -EPROBE_DEFER)
9332c58e560SErwan Le Ray 			dev_err(&pdev->dev, "Can't get event IRQ: %d\n", ret);
9342c58e560SErwan Le Ray 		return ret ? ret : -ENODEV;
9352c58e560SErwan Le Ray 	}
9362c58e560SErwan Le Ray 	port->irq = ret;
9372c58e560SErwan Le Ray 
9387d8f6861SBich HEMON 	port->rs485_config = stm32_config_rs485;
9397d8f6861SBich HEMON 
9407d8f6861SBich HEMON 	stm32_init_rs485(port, pdev);
9417d8f6861SBich HEMON 
9422c58e560SErwan Le Ray 	if (stm32port->info->cfg.has_wakeup) {
943270e5a74SFabrice Gasnier 		stm32port->wakeirq = platform_get_irq(pdev, 1);
9442c58e560SErwan Le Ray 		if (stm32port->wakeirq <= 0 && stm32port->wakeirq != -ENXIO) {
9452c58e560SErwan Le Ray 			if (stm32port->wakeirq != -EPROBE_DEFER)
9462c58e560SErwan Le Ray 				dev_err(&pdev->dev,
9472c58e560SErwan Le Ray 					"Can't get event wake IRQ: %d\n",
9482c58e560SErwan Le Ray 					stm32port->wakeirq);
9492c58e560SErwan Le Ray 			return stm32port->wakeirq ? stm32port->wakeirq :
9502c58e560SErwan Le Ray 				-ENODEV;
9512c58e560SErwan Le Ray 		}
9522c58e560SErwan Le Ray 	}
9532c58e560SErwan Le Ray 
954351a762aSGerald Baeza 	stm32port->fifoen = stm32port->info->cfg.has_fifo;
95548a6092fSMaxime Coquelin 
95648a6092fSMaxime Coquelin 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
95748a6092fSMaxime Coquelin 	port->membase = devm_ioremap_resource(&pdev->dev, res);
95848a6092fSMaxime Coquelin 	if (IS_ERR(port->membase))
95948a6092fSMaxime Coquelin 		return PTR_ERR(port->membase);
96048a6092fSMaxime Coquelin 	port->mapbase = res->start;
96148a6092fSMaxime Coquelin 
96248a6092fSMaxime Coquelin 	spin_lock_init(&port->lock);
96348a6092fSMaxime Coquelin 
96448a6092fSMaxime Coquelin 	stm32port->clk = devm_clk_get(&pdev->dev, NULL);
96548a6092fSMaxime Coquelin 	if (IS_ERR(stm32port->clk))
96648a6092fSMaxime Coquelin 		return PTR_ERR(stm32port->clk);
96748a6092fSMaxime Coquelin 
96848a6092fSMaxime Coquelin 	/* Ensure that clk rate is correct by enabling the clk */
96948a6092fSMaxime Coquelin 	ret = clk_prepare_enable(stm32port->clk);
97048a6092fSMaxime Coquelin 	if (ret)
97148a6092fSMaxime Coquelin 		return ret;
97248a6092fSMaxime Coquelin 
97348a6092fSMaxime Coquelin 	stm32port->port.uartclk = clk_get_rate(stm32port->clk);
974ada80043SFabrice Gasnier 	if (!stm32port->port.uartclk) {
975ada80043SFabrice Gasnier 		clk_disable_unprepare(stm32port->clk);
97648a6092fSMaxime Coquelin 		ret = -EINVAL;
977ada80043SFabrice Gasnier 	}
97848a6092fSMaxime Coquelin 
97948a6092fSMaxime Coquelin 	return ret;
98048a6092fSMaxime Coquelin }
98148a6092fSMaxime Coquelin 
98248a6092fSMaxime Coquelin static struct stm32_port *stm32_of_get_stm32_port(struct platform_device *pdev)
98348a6092fSMaxime Coquelin {
98448a6092fSMaxime Coquelin 	struct device_node *np = pdev->dev.of_node;
98548a6092fSMaxime Coquelin 	int id;
98648a6092fSMaxime Coquelin 
98748a6092fSMaxime Coquelin 	if (!np)
98848a6092fSMaxime Coquelin 		return NULL;
98948a6092fSMaxime Coquelin 
99048a6092fSMaxime Coquelin 	id = of_alias_get_id(np, "serial");
991e5707915SGerald Baeza 	if (id < 0) {
992e5707915SGerald Baeza 		dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
993e5707915SGerald Baeza 		return NULL;
994e5707915SGerald Baeza 	}
99548a6092fSMaxime Coquelin 
99648a6092fSMaxime Coquelin 	if (WARN_ON(id >= STM32_MAX_PORTS))
99748a6092fSMaxime Coquelin 		return NULL;
99848a6092fSMaxime Coquelin 
99948a6092fSMaxime Coquelin 	stm32_ports[id].hw_flow_control = of_property_read_bool(np,
100059bed2dfSAlexandre TORGUE 							"st,hw-flow-ctrl");
100148a6092fSMaxime Coquelin 	stm32_ports[id].port.line = id;
10024cc0ed62SErwan Le Ray 	stm32_ports[id].cr1_irq = USART_CR1_RXNEIE;
1003d0a6a7bcSErwan Le Ray 	stm32_ports[id].cr3_irq = 0;
1004e5707915SGerald Baeza 	stm32_ports[id].last_res = RX_BUF_L;
100548a6092fSMaxime Coquelin 	return &stm32_ports[id];
100648a6092fSMaxime Coquelin }
100748a6092fSMaxime Coquelin 
100848a6092fSMaxime Coquelin #ifdef CONFIG_OF
100948a6092fSMaxime Coquelin static const struct of_device_id stm32_match[] = {
1010ada8618fSAlexandre TORGUE 	{ .compatible = "st,stm32-uart", .data = &stm32f4_info},
1011ada8618fSAlexandre TORGUE 	{ .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
1012270e5a74SFabrice Gasnier 	{ .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
101348a6092fSMaxime Coquelin 	{},
101448a6092fSMaxime Coquelin };
101548a6092fSMaxime Coquelin 
101648a6092fSMaxime Coquelin MODULE_DEVICE_TABLE(of, stm32_match);
101748a6092fSMaxime Coquelin #endif
101848a6092fSMaxime Coquelin 
101934891872SAlexandre TORGUE static int stm32_of_dma_rx_probe(struct stm32_port *stm32port,
102034891872SAlexandre TORGUE 				 struct platform_device *pdev)
102134891872SAlexandre TORGUE {
102234891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
102334891872SAlexandre TORGUE 	struct uart_port *port = &stm32port->port;
102434891872SAlexandre TORGUE 	struct device *dev = &pdev->dev;
102534891872SAlexandre TORGUE 	struct dma_slave_config config;
102634891872SAlexandre TORGUE 	struct dma_async_tx_descriptor *desc = NULL;
102734891872SAlexandre TORGUE 	dma_cookie_t cookie;
102834891872SAlexandre TORGUE 	int ret;
102934891872SAlexandre TORGUE 
103034891872SAlexandre TORGUE 	/* Request DMA RX channel */
103134891872SAlexandre TORGUE 	stm32port->rx_ch = dma_request_slave_channel(dev, "rx");
103234891872SAlexandre TORGUE 	if (!stm32port->rx_ch) {
103334891872SAlexandre TORGUE 		dev_info(dev, "rx dma alloc failed\n");
103434891872SAlexandre TORGUE 		return -ENODEV;
103534891872SAlexandre TORGUE 	}
103634891872SAlexandre TORGUE 	stm32port->rx_buf = dma_alloc_coherent(&pdev->dev, RX_BUF_L,
103734891872SAlexandre TORGUE 						 &stm32port->rx_dma_buf,
103834891872SAlexandre TORGUE 						 GFP_KERNEL);
103934891872SAlexandre TORGUE 	if (!stm32port->rx_buf) {
104034891872SAlexandre TORGUE 		ret = -ENOMEM;
104134891872SAlexandre TORGUE 		goto alloc_err;
104234891872SAlexandre TORGUE 	}
104334891872SAlexandre TORGUE 
104434891872SAlexandre TORGUE 	/* Configure DMA channel */
104534891872SAlexandre TORGUE 	memset(&config, 0, sizeof(config));
10468e5481d9SArnd Bergmann 	config.src_addr = port->mapbase + ofs->rdr;
104734891872SAlexandre TORGUE 	config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
104834891872SAlexandre TORGUE 
104934891872SAlexandre TORGUE 	ret = dmaengine_slave_config(stm32port->rx_ch, &config);
105034891872SAlexandre TORGUE 	if (ret < 0) {
105134891872SAlexandre TORGUE 		dev_err(dev, "rx dma channel config failed\n");
105234891872SAlexandre TORGUE 		ret = -ENODEV;
105334891872SAlexandre TORGUE 		goto config_err;
105434891872SAlexandre TORGUE 	}
105534891872SAlexandre TORGUE 
105634891872SAlexandre TORGUE 	/* Prepare a DMA cyclic transaction */
105734891872SAlexandre TORGUE 	desc = dmaengine_prep_dma_cyclic(stm32port->rx_ch,
105834891872SAlexandre TORGUE 					 stm32port->rx_dma_buf,
105934891872SAlexandre TORGUE 					 RX_BUF_L, RX_BUF_P, DMA_DEV_TO_MEM,
106034891872SAlexandre TORGUE 					 DMA_PREP_INTERRUPT);
106134891872SAlexandre TORGUE 	if (!desc) {
106234891872SAlexandre TORGUE 		dev_err(dev, "rx dma prep cyclic failed\n");
106334891872SAlexandre TORGUE 		ret = -ENODEV;
106434891872SAlexandre TORGUE 		goto config_err;
106534891872SAlexandre TORGUE 	}
106634891872SAlexandre TORGUE 
106734891872SAlexandre TORGUE 	/* No callback as dma buffer is drained on usart interrupt */
106834891872SAlexandre TORGUE 	desc->callback = NULL;
106934891872SAlexandre TORGUE 	desc->callback_param = NULL;
107034891872SAlexandre TORGUE 
107134891872SAlexandre TORGUE 	/* Push current DMA transaction in the pending queue */
107234891872SAlexandre TORGUE 	cookie = dmaengine_submit(desc);
107334891872SAlexandre TORGUE 
107434891872SAlexandre TORGUE 	/* Issue pending DMA requests */
107534891872SAlexandre TORGUE 	dma_async_issue_pending(stm32port->rx_ch);
107634891872SAlexandre TORGUE 
107734891872SAlexandre TORGUE 	return 0;
107834891872SAlexandre TORGUE 
107934891872SAlexandre TORGUE config_err:
108034891872SAlexandre TORGUE 	dma_free_coherent(&pdev->dev,
108134891872SAlexandre TORGUE 			  RX_BUF_L, stm32port->rx_buf,
108234891872SAlexandre TORGUE 			  stm32port->rx_dma_buf);
108334891872SAlexandre TORGUE 
108434891872SAlexandre TORGUE alloc_err:
108534891872SAlexandre TORGUE 	dma_release_channel(stm32port->rx_ch);
108634891872SAlexandre TORGUE 	stm32port->rx_ch = NULL;
108734891872SAlexandre TORGUE 
108834891872SAlexandre TORGUE 	return ret;
108934891872SAlexandre TORGUE }
109034891872SAlexandre TORGUE 
109134891872SAlexandre TORGUE static int stm32_of_dma_tx_probe(struct stm32_port *stm32port,
109234891872SAlexandre TORGUE 				 struct platform_device *pdev)
109334891872SAlexandre TORGUE {
109434891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
109534891872SAlexandre TORGUE 	struct uart_port *port = &stm32port->port;
109634891872SAlexandre TORGUE 	struct device *dev = &pdev->dev;
109734891872SAlexandre TORGUE 	struct dma_slave_config config;
109834891872SAlexandre TORGUE 	int ret;
109934891872SAlexandre TORGUE 
110034891872SAlexandre TORGUE 	stm32port->tx_dma_busy = false;
110134891872SAlexandre TORGUE 
110234891872SAlexandre TORGUE 	/* Request DMA TX channel */
110334891872SAlexandre TORGUE 	stm32port->tx_ch = dma_request_slave_channel(dev, "tx");
110434891872SAlexandre TORGUE 	if (!stm32port->tx_ch) {
110534891872SAlexandre TORGUE 		dev_info(dev, "tx dma alloc failed\n");
110634891872SAlexandre TORGUE 		return -ENODEV;
110734891872SAlexandre TORGUE 	}
110834891872SAlexandre TORGUE 	stm32port->tx_buf = dma_alloc_coherent(&pdev->dev, TX_BUF_L,
110934891872SAlexandre TORGUE 						 &stm32port->tx_dma_buf,
111034891872SAlexandre TORGUE 						 GFP_KERNEL);
111134891872SAlexandre TORGUE 	if (!stm32port->tx_buf) {
111234891872SAlexandre TORGUE 		ret = -ENOMEM;
111334891872SAlexandre TORGUE 		goto alloc_err;
111434891872SAlexandre TORGUE 	}
111534891872SAlexandre TORGUE 
111634891872SAlexandre TORGUE 	/* Configure DMA channel */
111734891872SAlexandre TORGUE 	memset(&config, 0, sizeof(config));
11188e5481d9SArnd Bergmann 	config.dst_addr = port->mapbase + ofs->tdr;
111934891872SAlexandre TORGUE 	config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
112034891872SAlexandre TORGUE 
112134891872SAlexandre TORGUE 	ret = dmaengine_slave_config(stm32port->tx_ch, &config);
112234891872SAlexandre TORGUE 	if (ret < 0) {
112334891872SAlexandre TORGUE 		dev_err(dev, "tx dma channel config failed\n");
112434891872SAlexandre TORGUE 		ret = -ENODEV;
112534891872SAlexandre TORGUE 		goto config_err;
112634891872SAlexandre TORGUE 	}
112734891872SAlexandre TORGUE 
112834891872SAlexandre TORGUE 	return 0;
112934891872SAlexandre TORGUE 
113034891872SAlexandre TORGUE config_err:
113134891872SAlexandre TORGUE 	dma_free_coherent(&pdev->dev,
113234891872SAlexandre TORGUE 			  TX_BUF_L, stm32port->tx_buf,
113334891872SAlexandre TORGUE 			  stm32port->tx_dma_buf);
113434891872SAlexandre TORGUE 
113534891872SAlexandre TORGUE alloc_err:
113634891872SAlexandre TORGUE 	dma_release_channel(stm32port->tx_ch);
113734891872SAlexandre TORGUE 	stm32port->tx_ch = NULL;
113834891872SAlexandre TORGUE 
113934891872SAlexandre TORGUE 	return ret;
114034891872SAlexandre TORGUE }
114134891872SAlexandre TORGUE 
114248a6092fSMaxime Coquelin static int stm32_serial_probe(struct platform_device *pdev)
114348a6092fSMaxime Coquelin {
1144ada8618fSAlexandre TORGUE 	const struct of_device_id *match;
114548a6092fSMaxime Coquelin 	struct stm32_port *stm32port;
1146ada8618fSAlexandre TORGUE 	int ret;
114748a6092fSMaxime Coquelin 
114848a6092fSMaxime Coquelin 	stm32port = stm32_of_get_stm32_port(pdev);
114948a6092fSMaxime Coquelin 	if (!stm32port)
115048a6092fSMaxime Coquelin 		return -ENODEV;
115148a6092fSMaxime Coquelin 
1152ada8618fSAlexandre TORGUE 	match = of_match_device(stm32_match, &pdev->dev);
1153ada8618fSAlexandre TORGUE 	if (match && match->data)
1154ada8618fSAlexandre TORGUE 		stm32port->info = (struct stm32_usart_info *)match->data;
1155ada8618fSAlexandre TORGUE 	else
1156ada8618fSAlexandre TORGUE 		return -EINVAL;
1157ada8618fSAlexandre TORGUE 
115848a6092fSMaxime Coquelin 	ret = stm32_init_port(stm32port, pdev);
115948a6092fSMaxime Coquelin 	if (ret)
116048a6092fSMaxime Coquelin 		return ret;
116148a6092fSMaxime Coquelin 
11622c58e560SErwan Le Ray 	if (stm32port->wakeirq > 0) {
1163270e5a74SFabrice Gasnier 		ret = device_init_wakeup(&pdev->dev, true);
116448a6092fSMaxime Coquelin 		if (ret)
1165ada80043SFabrice Gasnier 			goto err_uninit;
11665297f274SErwan Le Ray 
11675297f274SErwan Le Ray 		ret = dev_pm_set_dedicated_wake_irq(&pdev->dev,
11685297f274SErwan Le Ray 						    stm32port->wakeirq);
11695297f274SErwan Le Ray 		if (ret)
11705297f274SErwan Le Ray 			goto err_nowup;
11715297f274SErwan Le Ray 
11725297f274SErwan Le Ray 		device_set_wakeup_enable(&pdev->dev, false);
1173270e5a74SFabrice Gasnier 	}
1174270e5a74SFabrice Gasnier 
1175270e5a74SFabrice Gasnier 	ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
1176270e5a74SFabrice Gasnier 	if (ret)
11775297f274SErwan Le Ray 		goto err_wirq;
117848a6092fSMaxime Coquelin 
117934891872SAlexandre TORGUE 	ret = stm32_of_dma_rx_probe(stm32port, pdev);
118034891872SAlexandre TORGUE 	if (ret)
118134891872SAlexandre TORGUE 		dev_info(&pdev->dev, "interrupt mode used for rx (no dma)\n");
118234891872SAlexandre TORGUE 
118334891872SAlexandre TORGUE 	ret = stm32_of_dma_tx_probe(stm32port, pdev);
118434891872SAlexandre TORGUE 	if (ret)
118534891872SAlexandre TORGUE 		dev_info(&pdev->dev, "interrupt mode used for tx (no dma)\n");
118634891872SAlexandre TORGUE 
118748a6092fSMaxime Coquelin 	platform_set_drvdata(pdev, &stm32port->port);
118848a6092fSMaxime Coquelin 
1189*fb6dcef6SErwan Le Ray 	pm_runtime_get_noresume(&pdev->dev);
1190*fb6dcef6SErwan Le Ray 	pm_runtime_set_active(&pdev->dev);
1191*fb6dcef6SErwan Le Ray 	pm_runtime_enable(&pdev->dev);
1192*fb6dcef6SErwan Le Ray 	pm_runtime_put_sync(&pdev->dev);
1193*fb6dcef6SErwan Le Ray 
119448a6092fSMaxime Coquelin 	return 0;
1195ada80043SFabrice Gasnier 
11965297f274SErwan Le Ray err_wirq:
11972c58e560SErwan Le Ray 	if (stm32port->wakeirq > 0)
11985297f274SErwan Le Ray 		dev_pm_clear_wake_irq(&pdev->dev);
11995297f274SErwan Le Ray 
1200270e5a74SFabrice Gasnier err_nowup:
12012c58e560SErwan Le Ray 	if (stm32port->wakeirq > 0)
1202270e5a74SFabrice Gasnier 		device_init_wakeup(&pdev->dev, false);
1203270e5a74SFabrice Gasnier 
1204ada80043SFabrice Gasnier err_uninit:
1205ada80043SFabrice Gasnier 	clk_disable_unprepare(stm32port->clk);
1206ada80043SFabrice Gasnier 
1207ada80043SFabrice Gasnier 	return ret;
120848a6092fSMaxime Coquelin }
120948a6092fSMaxime Coquelin 
121048a6092fSMaxime Coquelin static int stm32_serial_remove(struct platform_device *pdev)
121148a6092fSMaxime Coquelin {
121248a6092fSMaxime Coquelin 	struct uart_port *port = platform_get_drvdata(pdev);
1213511c7b1bSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
121434891872SAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1215*fb6dcef6SErwan Le Ray 	int err;
1216*fb6dcef6SErwan Le Ray 
1217*fb6dcef6SErwan Le Ray 	pm_runtime_get_sync(&pdev->dev);
121834891872SAlexandre TORGUE 
121934891872SAlexandre TORGUE 	stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
122034891872SAlexandre TORGUE 
122134891872SAlexandre TORGUE 	if (stm32_port->rx_ch)
122234891872SAlexandre TORGUE 		dma_release_channel(stm32_port->rx_ch);
122334891872SAlexandre TORGUE 
122434891872SAlexandre TORGUE 	if (stm32_port->rx_dma_buf)
122534891872SAlexandre TORGUE 		dma_free_coherent(&pdev->dev,
122634891872SAlexandre TORGUE 				  RX_BUF_L, stm32_port->rx_buf,
122734891872SAlexandre TORGUE 				  stm32_port->rx_dma_buf);
122834891872SAlexandre TORGUE 
122934891872SAlexandre TORGUE 	stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
123034891872SAlexandre TORGUE 
123134891872SAlexandre TORGUE 	if (stm32_port->tx_ch)
123234891872SAlexandre TORGUE 		dma_release_channel(stm32_port->tx_ch);
123334891872SAlexandre TORGUE 
123434891872SAlexandre TORGUE 	if (stm32_port->tx_dma_buf)
123534891872SAlexandre TORGUE 		dma_free_coherent(&pdev->dev,
123634891872SAlexandre TORGUE 				  TX_BUF_L, stm32_port->tx_buf,
123734891872SAlexandre TORGUE 				  stm32_port->tx_dma_buf);
1238511c7b1bSAlexandre TORGUE 
12392c58e560SErwan Le Ray 	if (stm32_port->wakeirq > 0) {
12405297f274SErwan Le Ray 		dev_pm_clear_wake_irq(&pdev->dev);
1241270e5a74SFabrice Gasnier 		device_init_wakeup(&pdev->dev, false);
12425297f274SErwan Le Ray 	}
1243270e5a74SFabrice Gasnier 
1244511c7b1bSAlexandre TORGUE 	clk_disable_unprepare(stm32_port->clk);
124548a6092fSMaxime Coquelin 
1246*fb6dcef6SErwan Le Ray 	err = uart_remove_one_port(&stm32_usart_driver, port);
1247*fb6dcef6SErwan Le Ray 
1248*fb6dcef6SErwan Le Ray 	pm_runtime_disable(&pdev->dev);
1249*fb6dcef6SErwan Le Ray 	pm_runtime_put_noidle(&pdev->dev);
1250*fb6dcef6SErwan Le Ray 
1251*fb6dcef6SErwan Le Ray 	return err;
125248a6092fSMaxime Coquelin }
125348a6092fSMaxime Coquelin 
125448a6092fSMaxime Coquelin 
125548a6092fSMaxime Coquelin #ifdef CONFIG_SERIAL_STM32_CONSOLE
125648a6092fSMaxime Coquelin static void stm32_console_putchar(struct uart_port *port, int ch)
125748a6092fSMaxime Coquelin {
1258ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
1259ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1260ada8618fSAlexandre TORGUE 
1261ada8618fSAlexandre TORGUE 	while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
126248a6092fSMaxime Coquelin 		cpu_relax();
126348a6092fSMaxime Coquelin 
1264ada8618fSAlexandre TORGUE 	writel_relaxed(ch, port->membase + ofs->tdr);
126548a6092fSMaxime Coquelin }
126648a6092fSMaxime Coquelin 
126748a6092fSMaxime Coquelin static void stm32_console_write(struct console *co, const char *s, unsigned cnt)
126848a6092fSMaxime Coquelin {
126948a6092fSMaxime Coquelin 	struct uart_port *port = &stm32_ports[co->index].port;
1270ada8618fSAlexandre TORGUE 	struct stm32_port *stm32_port = to_stm32_port(port);
1271ada8618fSAlexandre TORGUE 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
127287f1f809SAlexandre TORGUE 	struct stm32_usart_config *cfg = &stm32_port->info->cfg;
127348a6092fSMaxime Coquelin 	unsigned long flags;
127448a6092fSMaxime Coquelin 	u32 old_cr1, new_cr1;
127548a6092fSMaxime Coquelin 	int locked = 1;
127648a6092fSMaxime Coquelin 
127748a6092fSMaxime Coquelin 	local_irq_save(flags);
127848a6092fSMaxime Coquelin 	if (port->sysrq)
127948a6092fSMaxime Coquelin 		locked = 0;
128048a6092fSMaxime Coquelin 	else if (oops_in_progress)
128148a6092fSMaxime Coquelin 		locked = spin_trylock(&port->lock);
128248a6092fSMaxime Coquelin 	else
128348a6092fSMaxime Coquelin 		spin_lock(&port->lock);
128448a6092fSMaxime Coquelin 
128587f1f809SAlexandre TORGUE 	/* Save and disable interrupts, enable the transmitter */
1286ada8618fSAlexandre TORGUE 	old_cr1 = readl_relaxed(port->membase + ofs->cr1);
128748a6092fSMaxime Coquelin 	new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
128887f1f809SAlexandre TORGUE 	new_cr1 |=  USART_CR1_TE | BIT(cfg->uart_enable_bit);
1289ada8618fSAlexandre TORGUE 	writel_relaxed(new_cr1, port->membase + ofs->cr1);
129048a6092fSMaxime Coquelin 
129148a6092fSMaxime Coquelin 	uart_console_write(port, s, cnt, stm32_console_putchar);
129248a6092fSMaxime Coquelin 
129348a6092fSMaxime Coquelin 	/* Restore interrupt state */
1294ada8618fSAlexandre TORGUE 	writel_relaxed(old_cr1, port->membase + ofs->cr1);
129548a6092fSMaxime Coquelin 
129648a6092fSMaxime Coquelin 	if (locked)
129748a6092fSMaxime Coquelin 		spin_unlock(&port->lock);
129848a6092fSMaxime Coquelin 	local_irq_restore(flags);
129948a6092fSMaxime Coquelin }
130048a6092fSMaxime Coquelin 
130148a6092fSMaxime Coquelin static int stm32_console_setup(struct console *co, char *options)
130248a6092fSMaxime Coquelin {
130348a6092fSMaxime Coquelin 	struct stm32_port *stm32port;
130448a6092fSMaxime Coquelin 	int baud = 9600;
130548a6092fSMaxime Coquelin 	int bits = 8;
130648a6092fSMaxime Coquelin 	int parity = 'n';
130748a6092fSMaxime Coquelin 	int flow = 'n';
130848a6092fSMaxime Coquelin 
130948a6092fSMaxime Coquelin 	if (co->index >= STM32_MAX_PORTS)
131048a6092fSMaxime Coquelin 		return -ENODEV;
131148a6092fSMaxime Coquelin 
131248a6092fSMaxime Coquelin 	stm32port = &stm32_ports[co->index];
131348a6092fSMaxime Coquelin 
131448a6092fSMaxime Coquelin 	/*
131548a6092fSMaxime Coquelin 	 * This driver does not support early console initialization
131648a6092fSMaxime Coquelin 	 * (use ARM early printk support instead), so we only expect
131748a6092fSMaxime Coquelin 	 * this to be called during the uart port registration when the
131848a6092fSMaxime Coquelin 	 * driver gets probed and the port should be mapped at that point.
131948a6092fSMaxime Coquelin 	 */
132048a6092fSMaxime Coquelin 	if (stm32port->port.mapbase == 0 || stm32port->port.membase == NULL)
132148a6092fSMaxime Coquelin 		return -ENXIO;
132248a6092fSMaxime Coquelin 
132348a6092fSMaxime Coquelin 	if (options)
132448a6092fSMaxime Coquelin 		uart_parse_options(options, &baud, &parity, &bits, &flow);
132548a6092fSMaxime Coquelin 
132648a6092fSMaxime Coquelin 	return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
132748a6092fSMaxime Coquelin }
132848a6092fSMaxime Coquelin 
132948a6092fSMaxime Coquelin static struct console stm32_console = {
133048a6092fSMaxime Coquelin 	.name		= STM32_SERIAL_NAME,
133148a6092fSMaxime Coquelin 	.device		= uart_console_device,
133248a6092fSMaxime Coquelin 	.write		= stm32_console_write,
133348a6092fSMaxime Coquelin 	.setup		= stm32_console_setup,
133448a6092fSMaxime Coquelin 	.flags		= CON_PRINTBUFFER,
133548a6092fSMaxime Coquelin 	.index		= -1,
133648a6092fSMaxime Coquelin 	.data		= &stm32_usart_driver,
133748a6092fSMaxime Coquelin };
133848a6092fSMaxime Coquelin 
133948a6092fSMaxime Coquelin #define STM32_SERIAL_CONSOLE (&stm32_console)
134048a6092fSMaxime Coquelin 
134148a6092fSMaxime Coquelin #else
134248a6092fSMaxime Coquelin #define STM32_SERIAL_CONSOLE NULL
134348a6092fSMaxime Coquelin #endif /* CONFIG_SERIAL_STM32_CONSOLE */
134448a6092fSMaxime Coquelin 
134548a6092fSMaxime Coquelin static struct uart_driver stm32_usart_driver = {
134648a6092fSMaxime Coquelin 	.driver_name	= DRIVER_NAME,
134748a6092fSMaxime Coquelin 	.dev_name	= STM32_SERIAL_NAME,
134848a6092fSMaxime Coquelin 	.major		= 0,
134948a6092fSMaxime Coquelin 	.minor		= 0,
135048a6092fSMaxime Coquelin 	.nr		= STM32_MAX_PORTS,
135148a6092fSMaxime Coquelin 	.cons		= STM32_SERIAL_CONSOLE,
135248a6092fSMaxime Coquelin };
135348a6092fSMaxime Coquelin 
1354270e5a74SFabrice Gasnier #ifdef CONFIG_PM_SLEEP
1355270e5a74SFabrice Gasnier static void stm32_serial_enable_wakeup(struct uart_port *port, bool enable)
1356270e5a74SFabrice Gasnier {
1357270e5a74SFabrice Gasnier 	struct stm32_port *stm32_port = to_stm32_port(port);
1358270e5a74SFabrice Gasnier 	struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1359270e5a74SFabrice Gasnier 	struct stm32_usart_config *cfg = &stm32_port->info->cfg;
1360270e5a74SFabrice Gasnier 	u32 val;
1361270e5a74SFabrice Gasnier 
13622c58e560SErwan Le Ray 	if (stm32_port->wakeirq <= 0)
1363270e5a74SFabrice Gasnier 		return;
1364270e5a74SFabrice Gasnier 
1365270e5a74SFabrice Gasnier 	if (enable) {
1366270e5a74SFabrice Gasnier 		stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1367270e5a74SFabrice Gasnier 		stm32_set_bits(port, ofs->cr1, USART_CR1_UESM);
1368270e5a74SFabrice Gasnier 		val = readl_relaxed(port->membase + ofs->cr3);
1369270e5a74SFabrice Gasnier 		val &= ~USART_CR3_WUS_MASK;
1370270e5a74SFabrice Gasnier 		/* Enable Wake up interrupt from low power on start bit */
1371270e5a74SFabrice Gasnier 		val |= USART_CR3_WUS_START_BIT | USART_CR3_WUFIE;
1372270e5a74SFabrice Gasnier 		writel_relaxed(val, port->membase + ofs->cr3);
1373270e5a74SFabrice Gasnier 		stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1374270e5a74SFabrice Gasnier 	} else {
1375270e5a74SFabrice Gasnier 		stm32_clr_bits(port, ofs->cr1, USART_CR1_UESM);
1376270e5a74SFabrice Gasnier 	}
1377270e5a74SFabrice Gasnier }
1378270e5a74SFabrice Gasnier 
1379270e5a74SFabrice Gasnier static int stm32_serial_suspend(struct device *dev)
1380270e5a74SFabrice Gasnier {
1381270e5a74SFabrice Gasnier 	struct uart_port *port = dev_get_drvdata(dev);
1382270e5a74SFabrice Gasnier 
1383270e5a74SFabrice Gasnier 	uart_suspend_port(&stm32_usart_driver, port);
1384270e5a74SFabrice Gasnier 
1385270e5a74SFabrice Gasnier 	if (device_may_wakeup(dev))
1386270e5a74SFabrice Gasnier 		stm32_serial_enable_wakeup(port, true);
1387270e5a74SFabrice Gasnier 	else
1388270e5a74SFabrice Gasnier 		stm32_serial_enable_wakeup(port, false);
1389270e5a74SFabrice Gasnier 
139094616d9aSErwan Le Ray 	pinctrl_pm_select_sleep_state(dev);
139194616d9aSErwan Le Ray 
1392270e5a74SFabrice Gasnier 	return 0;
1393270e5a74SFabrice Gasnier }
1394270e5a74SFabrice Gasnier 
1395270e5a74SFabrice Gasnier static int stm32_serial_resume(struct device *dev)
1396270e5a74SFabrice Gasnier {
1397270e5a74SFabrice Gasnier 	struct uart_port *port = dev_get_drvdata(dev);
1398270e5a74SFabrice Gasnier 
139994616d9aSErwan Le Ray 	pinctrl_pm_select_default_state(dev);
140094616d9aSErwan Le Ray 
1401270e5a74SFabrice Gasnier 	if (device_may_wakeup(dev))
1402270e5a74SFabrice Gasnier 		stm32_serial_enable_wakeup(port, false);
1403270e5a74SFabrice Gasnier 
1404270e5a74SFabrice Gasnier 	return uart_resume_port(&stm32_usart_driver, port);
1405270e5a74SFabrice Gasnier }
1406270e5a74SFabrice Gasnier #endif /* CONFIG_PM_SLEEP */
1407270e5a74SFabrice Gasnier 
1408*fb6dcef6SErwan Le Ray static int __maybe_unused stm32_serial_runtime_suspend(struct device *dev)
1409*fb6dcef6SErwan Le Ray {
1410*fb6dcef6SErwan Le Ray 	struct uart_port *port = dev_get_drvdata(dev);
1411*fb6dcef6SErwan Le Ray 	struct stm32_port *stm32port = container_of(port,
1412*fb6dcef6SErwan Le Ray 			struct stm32_port, port);
1413*fb6dcef6SErwan Le Ray 
1414*fb6dcef6SErwan Le Ray 	clk_disable_unprepare(stm32port->clk);
1415*fb6dcef6SErwan Le Ray 
1416*fb6dcef6SErwan Le Ray 	return 0;
1417*fb6dcef6SErwan Le Ray }
1418*fb6dcef6SErwan Le Ray 
1419*fb6dcef6SErwan Le Ray static int __maybe_unused stm32_serial_runtime_resume(struct device *dev)
1420*fb6dcef6SErwan Le Ray {
1421*fb6dcef6SErwan Le Ray 	struct uart_port *port = dev_get_drvdata(dev);
1422*fb6dcef6SErwan Le Ray 	struct stm32_port *stm32port = container_of(port,
1423*fb6dcef6SErwan Le Ray 			struct stm32_port, port);
1424*fb6dcef6SErwan Le Ray 
1425*fb6dcef6SErwan Le Ray 	return clk_prepare_enable(stm32port->clk);
1426*fb6dcef6SErwan Le Ray }
1427*fb6dcef6SErwan Le Ray 
1428270e5a74SFabrice Gasnier static const struct dev_pm_ops stm32_serial_pm_ops = {
1429*fb6dcef6SErwan Le Ray 	SET_RUNTIME_PM_OPS(stm32_serial_runtime_suspend,
1430*fb6dcef6SErwan Le Ray 			   stm32_serial_runtime_resume, NULL)
1431270e5a74SFabrice Gasnier 	SET_SYSTEM_SLEEP_PM_OPS(stm32_serial_suspend, stm32_serial_resume)
1432270e5a74SFabrice Gasnier };
1433270e5a74SFabrice Gasnier 
143448a6092fSMaxime Coquelin static struct platform_driver stm32_serial_driver = {
143548a6092fSMaxime Coquelin 	.probe		= stm32_serial_probe,
143648a6092fSMaxime Coquelin 	.remove		= stm32_serial_remove,
143748a6092fSMaxime Coquelin 	.driver	= {
143848a6092fSMaxime Coquelin 		.name	= DRIVER_NAME,
1439270e5a74SFabrice Gasnier 		.pm	= &stm32_serial_pm_ops,
144048a6092fSMaxime Coquelin 		.of_match_table = of_match_ptr(stm32_match),
144148a6092fSMaxime Coquelin 	},
144248a6092fSMaxime Coquelin };
144348a6092fSMaxime Coquelin 
144448a6092fSMaxime Coquelin static int __init usart_init(void)
144548a6092fSMaxime Coquelin {
144648a6092fSMaxime Coquelin 	static char banner[] __initdata = "STM32 USART driver initialized";
144748a6092fSMaxime Coquelin 	int ret;
144848a6092fSMaxime Coquelin 
144948a6092fSMaxime Coquelin 	pr_info("%s\n", banner);
145048a6092fSMaxime Coquelin 
145148a6092fSMaxime Coquelin 	ret = uart_register_driver(&stm32_usart_driver);
145248a6092fSMaxime Coquelin 	if (ret)
145348a6092fSMaxime Coquelin 		return ret;
145448a6092fSMaxime Coquelin 
145548a6092fSMaxime Coquelin 	ret = platform_driver_register(&stm32_serial_driver);
145648a6092fSMaxime Coquelin 	if (ret)
145748a6092fSMaxime Coquelin 		uart_unregister_driver(&stm32_usart_driver);
145848a6092fSMaxime Coquelin 
145948a6092fSMaxime Coquelin 	return ret;
146048a6092fSMaxime Coquelin }
146148a6092fSMaxime Coquelin 
146248a6092fSMaxime Coquelin static void __exit usart_exit(void)
146348a6092fSMaxime Coquelin {
146448a6092fSMaxime Coquelin 	platform_driver_unregister(&stm32_serial_driver);
146548a6092fSMaxime Coquelin 	uart_unregister_driver(&stm32_usart_driver);
146648a6092fSMaxime Coquelin }
146748a6092fSMaxime Coquelin 
146848a6092fSMaxime Coquelin module_init(usart_init);
146948a6092fSMaxime Coquelin module_exit(usart_exit);
147048a6092fSMaxime Coquelin 
147148a6092fSMaxime Coquelin MODULE_ALIAS("platform:" DRIVER_NAME);
147248a6092fSMaxime Coquelin MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
147348a6092fSMaxime Coquelin MODULE_LICENSE("GPL v2");
1474