blob: 090822cd1604598455b01e6af5b8c79af9b186fd [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-2.0
Maxime Coquelin48a60922015-06-10 21:19:36 +02002/*
3 * Copyright (C) Maxime Coquelin 2015
Bich HEMON3e5fcba2017-07-13 15:08:26 +00004 * Copyright (C) STMicroelectronics SA 2017
Alexandre TORGUEada86182016-09-15 18:42:33 +02005 * Authors: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Erwan Le Ray8ebd9662021-01-06 17:21:59 +01006 * Gerald Baeza <gerald.baeza@foss.st.com>
7 * Erwan Le Ray <erwan.leray@foss.st.com>
Maxime Coquelin48a60922015-06-10 21:19:36 +02008 *
9 * Inspired by st-asc.c from STMicroelectronics (c)
10 */
11
Alexandre TORGUE34891872016-09-15 18:42:40 +020012#include <linux/clk.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020013#include <linux/console.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020014#include <linux/delay.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020015#include <linux/dma-direction.h>
16#include <linux/dmaengine.h>
17#include <linux/dma-mapping.h>
18#include <linux/io.h>
19#include <linux/iopoll.h>
20#include <linux/irq.h>
21#include <linux/module.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020022#include <linux/of.h>
23#include <linux/of_platform.h>
Erwan Le Ray94616d92019-06-13 15:49:53 +020024#include <linux/pinctrl/consumer.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020025#include <linux/platform_device.h>
26#include <linux/pm_runtime.h>
Fabrice Gasnier270e5a72017-07-13 15:08:30 +000027#include <linux/pm_wakeirq.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020028#include <linux/serial_core.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020029#include <linux/serial.h>
30#include <linux/spinlock.h>
31#include <linux/sysrq.h>
32#include <linux/tty_flip.h>
33#include <linux/tty.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020034
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +053035#include "serial_mctrl_gpio.h"
Alexandre TORGUEbc5a0b52016-09-15 18:42:35 +020036#include "stm32-usart.h"
Maxime Coquelin48a60922015-06-10 21:19:36 +020037
Erwan Le Ray56f9a762021-01-06 17:21:58 +010038static void stm32_usart_stop_tx(struct uart_port *port);
39static void stm32_usart_transmit_chars(struct uart_port *port);
Maxime Coquelin48a60922015-06-10 21:19:36 +020040
41static inline struct stm32_port *to_stm32_port(struct uart_port *port)
42{
43 return container_of(port, struct stm32_port, port);
44}
45
Erwan Le Ray56f9a762021-01-06 17:21:58 +010046static void stm32_usart_set_bits(struct uart_port *port, u32 reg, u32 bits)
Maxime Coquelin48a60922015-06-10 21:19:36 +020047{
48 u32 val;
49
50 val = readl_relaxed(port->membase + reg);
51 val |= bits;
52 writel_relaxed(val, port->membase + reg);
53}
54
Erwan Le Ray56f9a762021-01-06 17:21:58 +010055static void stm32_usart_clr_bits(struct uart_port *port, u32 reg, u32 bits)
Maxime Coquelin48a60922015-06-10 21:19:36 +020056{
57 u32 val;
58
59 val = readl_relaxed(port->membase + reg);
60 val &= ~bits;
61 writel_relaxed(val, port->membase + reg);
62}
63
Erwan Le Ray56f9a762021-01-06 17:21:58 +010064static void stm32_usart_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE,
65 u32 delay_DDE, u32 baud)
Bich HEMON1bcda092018-03-12 09:50:05 +000066{
67 u32 rs485_deat_dedt;
68 u32 rs485_deat_dedt_max = (USART_CR1_DEAT_MASK >> USART_CR1_DEAT_SHIFT);
69 bool over8;
70
71 *cr3 |= USART_CR3_DEM;
72 over8 = *cr1 & USART_CR1_OVER8;
73
74 if (over8)
75 rs485_deat_dedt = delay_ADE * baud * 8;
76 else
77 rs485_deat_dedt = delay_ADE * baud * 16;
78
79 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
80 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
81 rs485_deat_dedt_max : rs485_deat_dedt;
82 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEAT_SHIFT) &
83 USART_CR1_DEAT_MASK;
84 *cr1 |= rs485_deat_dedt;
85
86 if (over8)
87 rs485_deat_dedt = delay_DDE * baud * 8;
88 else
89 rs485_deat_dedt = delay_DDE * baud * 16;
90
91 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
92 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
93 rs485_deat_dedt_max : rs485_deat_dedt;
94 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEDT_SHIFT) &
95 USART_CR1_DEDT_MASK;
96 *cr1 |= rs485_deat_dedt;
97}
98
Erwan Le Ray56f9a762021-01-06 17:21:58 +010099static int stm32_usart_config_rs485(struct uart_port *port,
100 struct serial_rs485 *rs485conf)
Bich HEMON1bcda092018-03-12 09:50:05 +0000101{
102 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800103 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
104 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Bich HEMON1bcda092018-03-12 09:50:05 +0000105 u32 usartdiv, baud, cr1, cr3;
106 bool over8;
Bich HEMON1bcda092018-03-12 09:50:05 +0000107
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100108 stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Bich HEMON1bcda092018-03-12 09:50:05 +0000109
110 port->rs485 = *rs485conf;
111
112 rs485conf->flags |= SER_RS485_RX_DURING_TX;
113
114 if (rs485conf->flags & SER_RS485_ENABLED) {
115 cr1 = readl_relaxed(port->membase + ofs->cr1);
116 cr3 = readl_relaxed(port->membase + ofs->cr3);
117 usartdiv = readl_relaxed(port->membase + ofs->brr);
118 usartdiv = usartdiv & GENMASK(15, 0);
119 over8 = cr1 & USART_CR1_OVER8;
120
121 if (over8)
122 usartdiv = usartdiv | (usartdiv & GENMASK(4, 0))
123 << USART_BRR_04_R_SHIFT;
124
125 baud = DIV_ROUND_CLOSEST(port->uartclk, usartdiv);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100126 stm32_usart_config_reg_rs485(&cr1, &cr3,
127 rs485conf->delay_rts_before_send,
128 rs485conf->delay_rts_after_send,
129 baud);
Bich HEMON1bcda092018-03-12 09:50:05 +0000130
131 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
132 cr3 &= ~USART_CR3_DEP;
133 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
134 } else {
135 cr3 |= USART_CR3_DEP;
136 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
137 }
138
139 writel_relaxed(cr3, port->membase + ofs->cr3);
140 writel_relaxed(cr1, port->membase + ofs->cr1);
141 } else {
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100142 stm32_usart_clr_bits(port, ofs->cr3,
143 USART_CR3_DEM | USART_CR3_DEP);
144 stm32_usart_clr_bits(port, ofs->cr1,
145 USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
Bich HEMON1bcda092018-03-12 09:50:05 +0000146 }
147
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100148 stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Bich HEMON1bcda092018-03-12 09:50:05 +0000149
150 return 0;
151}
152
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100153static int stm32_usart_init_rs485(struct uart_port *port,
154 struct platform_device *pdev)
Bich HEMON1bcda092018-03-12 09:50:05 +0000155{
156 struct serial_rs485 *rs485conf = &port->rs485;
157
158 rs485conf->flags = 0;
159 rs485conf->delay_rts_before_send = 0;
160 rs485conf->delay_rts_after_send = 0;
161
162 if (!pdev->dev.of_node)
163 return -ENODEV;
164
Lukas Wunnerc150c0f2020-05-12 14:40:02 +0200165 return uart_get_rs485_mode(port);
Bich HEMON1bcda092018-03-12 09:50:05 +0000166}
167
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100168static int stm32_usart_pending_rx(struct uart_port *port, u32 *sr,
169 int *last_res, bool threaded)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200170{
171 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800172 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200173 enum dma_status status;
174 struct dma_tx_state state;
175
176 *sr = readl_relaxed(port->membase + ofs->isr);
177
178 if (threaded && stm32_port->rx_ch) {
179 status = dmaengine_tx_status(stm32_port->rx_ch,
180 stm32_port->rx_ch->cookie,
181 &state);
Erwan Le Ray92fc0022021-01-06 17:21:57 +0100182 if (status == DMA_IN_PROGRESS && (*last_res != state.residue))
Alexandre TORGUE34891872016-09-15 18:42:40 +0200183 return 1;
184 else
185 return 0;
186 } else if (*sr & USART_SR_RXNE) {
187 return 1;
188 }
189 return 0;
190}
191
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100192static unsigned long stm32_usart_get_char(struct uart_port *port, u32 *sr,
193 int *last_res)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200194{
195 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800196 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200197 unsigned long c;
198
199 if (stm32_port->rx_ch) {
200 c = stm32_port->rx_buf[RX_BUF_L - (*last_res)--];
201 if ((*last_res) == 0)
202 *last_res = RX_BUF_L;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200203 } else {
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200204 c = readl_relaxed(port->membase + ofs->rdr);
205 /* apply RDR data mask */
206 c &= stm32_port->rdr_mask;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200207 }
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200208
209 return c;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200210}
211
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100212static void stm32_usart_receive_chars(struct uart_port *port, bool threaded)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200213{
214 struct tty_port *tport = &port->state->port;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200215 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800216 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Johan Hovolde359b442021-04-16 16:05:56 +0200217 unsigned long c;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200218 u32 sr;
219 char flag;
220
Johan Hovolde359b442021-04-16 16:05:56 +0200221 spin_lock(&port->lock);
Erwan Le Rayad767682021-03-04 17:23:00 +0100222
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100223 while (stm32_usart_pending_rx(port, &sr, &stm32_port->last_res,
224 threaded)) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200225 sr |= USART_SR_DUMMY_RX;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200226 flag = TTY_NORMAL;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200227
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200228 /*
229 * Status bits has to be cleared before reading the RDR:
230 * In FIFO mode, reading the RDR will pop the next data
231 * (if any) along with its status bits into the SR.
232 * Not doing so leads to misalignement between RDR and SR,
233 * and clear status bits of the next rx data.
234 *
235 * Clear errors flags for stm32f7 and stm32h7 compatible
236 * devices. On stm32f4 compatible devices, the error bit is
237 * cleared by the sequence [read SR - read DR].
238 */
239 if ((sr & USART_SR_ERR_MASK) && ofs->icr != UNDEF_REG)
Fabrice Gasnier1250ed72019-11-21 09:10:49 +0100240 writel_relaxed(sr & USART_SR_ERR_MASK,
241 port->membase + ofs->icr);
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200242
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100243 c = stm32_usart_get_char(port, &sr, &stm32_port->last_res);
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200244 port->icount.rx++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200245 if (sr & USART_SR_ERR_MASK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200246 if (sr & USART_SR_ORE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200247 port->icount.overrun++;
248 } else if (sr & USART_SR_PE) {
249 port->icount.parity++;
250 } else if (sr & USART_SR_FE) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200251 /* Break detection if character is null */
252 if (!c) {
253 port->icount.brk++;
254 if (uart_handle_break(port))
255 continue;
256 } else {
257 port->icount.frame++;
258 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200259 }
260
261 sr &= port->read_status_mask;
262
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200263 if (sr & USART_SR_PE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200264 flag = TTY_PARITY;
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200265 } else if (sr & USART_SR_FE) {
266 if (!c)
267 flag = TTY_BREAK;
268 else
269 flag = TTY_FRAME;
270 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200271 }
272
Johan Hovoldcea37af2021-04-16 16:05:57 +0200273 if (uart_prepare_sysrq_char(port, c))
Maxime Coquelin48a60922015-06-10 21:19:36 +0200274 continue;
275 uart_insert_char(port, sr, USART_SR_ORE, c, flag);
276 }
277
Johan Hovoldcea37af2021-04-16 16:05:57 +0200278 uart_unlock_and_check_sysrq(port);
Erwan Le Rayad767682021-03-04 17:23:00 +0100279
Maxime Coquelin48a60922015-06-10 21:19:36 +0200280 tty_flip_buffer_push(tport);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200281}
282
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100283static void stm32_usart_tx_dma_complete(void *arg)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200284{
285 struct uart_port *port = arg;
286 struct stm32_port *stm32port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800287 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Erwan Le Rayf16b90c2021-03-04 17:23:04 +0100288 unsigned long flags;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200289
Erwan Le Rayfb4f2e02021-03-04 17:23:03 +0100290 dmaengine_terminate_async(stm32port->tx_ch);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100291 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200292 stm32port->tx_dma_busy = false;
293
294 /* Let's see if we have pending data to send */
Erwan Le Rayf16b90c2021-03-04 17:23:04 +0100295 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100296 stm32_usart_transmit_chars(port);
Erwan Le Rayf16b90c2021-03-04 17:23:04 +0100297 spin_unlock_irqrestore(&port->lock, flags);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200298}
299
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100300static void stm32_usart_tx_interrupt_enable(struct uart_port *port)
Erwan Le Rayd0757192019-06-18 12:02:24 +0200301{
302 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800303 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200304
305 /*
306 * Enables TX FIFO threashold irq when FIFO is enabled,
307 * or TX empty irq when FIFO is disabled
308 */
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200309 if (stm32_port->fifoen && stm32_port->txftcfg >= 0)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100310 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_TXFTIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200311 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100312 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200313}
314
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100315static void stm32_usart_tx_interrupt_disable(struct uart_port *port)
Erwan Le Rayd0757192019-06-18 12:02:24 +0200316{
317 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800318 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200319
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200320 if (stm32_port->fifoen && stm32_port->txftcfg >= 0)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100321 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200322 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100323 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200324}
325
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100326static void stm32_usart_transmit_chars_pio(struct uart_port *port)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200327{
328 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800329 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200330 struct circ_buf *xmit = &port->state->xmit;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200331
332 if (stm32_port->tx_dma_busy) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100333 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200334 stm32_port->tx_dma_busy = false;
335 }
336
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200337 while (!uart_circ_empty(xmit)) {
338 /* Check that TDR is empty before filling FIFO */
339 if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
340 break;
341 writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
342 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
343 port->icount.tx++;
344 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200345
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200346 /* rely on TXE irq (mask or unmask) for sending remaining data */
347 if (uart_circ_empty(xmit))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100348 stm32_usart_tx_interrupt_disable(port);
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200349 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100350 stm32_usart_tx_interrupt_enable(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200351}
352
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100353static void stm32_usart_transmit_chars_dma(struct uart_port *port)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200354{
355 struct stm32_port *stm32port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800356 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200357 struct circ_buf *xmit = &port->state->xmit;
358 struct dma_async_tx_descriptor *desc = NULL;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200359 unsigned int count, i;
360
361 if (stm32port->tx_dma_busy)
362 return;
363
364 stm32port->tx_dma_busy = true;
365
366 count = uart_circ_chars_pending(xmit);
367
368 if (count > TX_BUF_L)
369 count = TX_BUF_L;
370
371 if (xmit->tail < xmit->head) {
372 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
373 } else {
374 size_t one = UART_XMIT_SIZE - xmit->tail;
375 size_t two;
376
377 if (one > count)
378 one = count;
379 two = count - one;
380
381 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
382 if (two)
383 memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
384 }
385
386 desc = dmaengine_prep_slave_single(stm32port->tx_ch,
387 stm32port->tx_dma_buf,
388 count,
389 DMA_MEM_TO_DEV,
390 DMA_PREP_INTERRUPT);
391
Erwan Le Raye7997f72021-01-06 17:21:56 +0100392 if (!desc)
393 goto fallback_err;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200394
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100395 desc->callback = stm32_usart_tx_dma_complete;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200396 desc->callback_param = port;
397
398 /* Push current DMA TX transaction in the pending queue */
Erwan Le Raye7997f72021-01-06 17:21:56 +0100399 if (dma_submit_error(dmaengine_submit(desc))) {
400 /* dma no yet started, safe to free resources */
401 dmaengine_terminate_async(stm32port->tx_ch);
402 goto fallback_err;
403 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200404
405 /* Issue pending DMA TX requests */
406 dma_async_issue_pending(stm32port->tx_ch);
407
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100408 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200409
410 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
411 port->icount.tx += count;
Erwan Le Raye7997f72021-01-06 17:21:56 +0100412 return;
413
414fallback_err:
415 for (i = count; i > 0; i--)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100416 stm32_usart_transmit_chars_pio(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200417}
418
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100419static void stm32_usart_transmit_chars(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200420{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200421 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800422 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200423 struct circ_buf *xmit = &port->state->xmit;
424
425 if (port->x_char) {
Alexandre TORGUE34891872016-09-15 18:42:40 +0200426 if (stm32_port->tx_dma_busy)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100427 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200428 writel_relaxed(port->x_char, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200429 port->x_char = 0;
430 port->icount.tx++;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200431 if (stm32_port->tx_dma_busy)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100432 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200433 return;
434 }
435
Erwan Le Rayb83b9572019-05-21 17:45:44 +0200436 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100437 stm32_usart_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200438 return;
439 }
440
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200441 if (ofs->icr == UNDEF_REG)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100442 stm32_usart_clr_bits(port, ofs->isr, USART_SR_TC);
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200443 else
Fabrice Gasnier1250ed72019-11-21 09:10:49 +0100444 writel_relaxed(USART_ICR_TCCF, port->membase + ofs->icr);
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200445
Alexandre TORGUE34891872016-09-15 18:42:40 +0200446 if (stm32_port->tx_ch)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100447 stm32_usart_transmit_chars_dma(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200448 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100449 stm32_usart_transmit_chars_pio(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200450
451 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
452 uart_write_wakeup(port);
453
454 if (uart_circ_empty(xmit))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100455 stm32_usart_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200456}
457
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100458static irqreturn_t stm32_usart_interrupt(int irq, void *ptr)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200459{
460 struct uart_port *port = ptr;
Erwan Le Ray12761862021-03-04 17:23:01 +0100461 struct tty_port *tport = &port->state->port;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200462 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800463 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200464 u32 sr;
465
Alexandre TORGUEada86182016-09-15 18:42:33 +0200466 sr = readl_relaxed(port->membase + ofs->isr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200467
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200468 if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG)
469 writel_relaxed(USART_ICR_RTOCF,
470 port->membase + ofs->icr);
471
Erwan Le Ray12761862021-03-04 17:23:01 +0100472 if ((sr & USART_SR_WUF) && ofs->icr != UNDEF_REG) {
473 /* Clear wake up flag and disable wake up interrupt */
Fabrice Gasnier270e5a72017-07-13 15:08:30 +0000474 writel_relaxed(USART_ICR_WUCF,
475 port->membase + ofs->icr);
Erwan Le Ray12761862021-03-04 17:23:01 +0100476 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE);
477 if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
478 pm_wakeup_event(tport->tty->dev, 0);
479 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +0000480
Alexandre TORGUE34891872016-09-15 18:42:40 +0200481 if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100482 stm32_usart_receive_chars(port, false);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200483
Erwan Le Rayad767682021-03-04 17:23:00 +0100484 if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch)) {
485 spin_lock(&port->lock);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100486 stm32_usart_transmit_chars(port);
Erwan Le Rayad767682021-03-04 17:23:00 +0100487 spin_unlock(&port->lock);
488 }
Alexandre TORGUE01d32d72016-09-15 18:42:41 +0200489
Alexandre TORGUE34891872016-09-15 18:42:40 +0200490 if (stm32_port->rx_ch)
491 return IRQ_WAKE_THREAD;
492 else
493 return IRQ_HANDLED;
494}
495
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100496static irqreturn_t stm32_usart_threaded_interrupt(int irq, void *ptr)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200497{
498 struct uart_port *port = ptr;
499 struct stm32_port *stm32_port = to_stm32_port(port);
500
Alexandre TORGUE34891872016-09-15 18:42:40 +0200501 if (stm32_port->rx_ch)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100502 stm32_usart_receive_chars(port, true);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200503
Maxime Coquelin48a60922015-06-10 21:19:36 +0200504 return IRQ_HANDLED;
505}
506
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100507static unsigned int stm32_usart_tx_empty(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200508{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200509 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800510 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200511
Erwan Le Ray3db1d522021-03-04 17:23:07 +0100512 if (readl_relaxed(port->membase + ofs->isr) & USART_SR_TC)
513 return TIOCSER_TEMT;
514
515 return 0;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200516}
517
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100518static void stm32_usart_set_mctrl(struct uart_port *port, unsigned int mctrl)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200519{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200520 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800521 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200522
Maxime Coquelin48a60922015-06-10 21:19:36 +0200523 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100524 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_RTSE);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200525 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100526 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530527
528 mctrl_gpio_set(stm32_port->gpios, mctrl);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200529}
530
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100531static unsigned int stm32_usart_get_mctrl(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200532{
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530533 struct stm32_port *stm32_port = to_stm32_port(port);
534 unsigned int ret;
535
Maxime Coquelin48a60922015-06-10 21:19:36 +0200536 /* This routine is used to get signals of: DCD, DSR, RI, and CTS */
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530537 ret = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
538
539 return mctrl_gpio_get(stm32_port->gpios, &ret);
540}
541
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100542static void stm32_usart_enable_ms(struct uart_port *port)
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530543{
544 mctrl_gpio_enable_ms(to_stm32_port(port)->gpios);
545}
546
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100547static void stm32_usart_disable_ms(struct uart_port *port)
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530548{
549 mctrl_gpio_disable_ms(to_stm32_port(port)->gpios);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200550}
551
552/* Transmit stop */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100553static void stm32_usart_stop_tx(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200554{
Marek Vasutad0c2742020-08-31 19:10:45 +0200555 struct stm32_port *stm32_port = to_stm32_port(port);
556 struct serial_rs485 *rs485conf = &port->rs485;
557
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100558 stm32_usart_tx_interrupt_disable(port);
Marek Vasutad0c2742020-08-31 19:10:45 +0200559
560 if (rs485conf->flags & SER_RS485_ENABLED) {
561 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
562 mctrl_gpio_set(stm32_port->gpios,
563 stm32_port->port.mctrl & ~TIOCM_RTS);
564 } else {
565 mctrl_gpio_set(stm32_port->gpios,
566 stm32_port->port.mctrl | TIOCM_RTS);
567 }
568 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200569}
570
571/* There are probably characters waiting to be transmitted. */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100572static void stm32_usart_start_tx(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200573{
Marek Vasutad0c2742020-08-31 19:10:45 +0200574 struct stm32_port *stm32_port = to_stm32_port(port);
575 struct serial_rs485 *rs485conf = &port->rs485;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200576 struct circ_buf *xmit = &port->state->xmit;
577
578 if (uart_circ_empty(xmit))
579 return;
580
Marek Vasutad0c2742020-08-31 19:10:45 +0200581 if (rs485conf->flags & SER_RS485_ENABLED) {
582 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
583 mctrl_gpio_set(stm32_port->gpios,
584 stm32_port->port.mctrl | TIOCM_RTS);
585 } else {
586 mctrl_gpio_set(stm32_port->gpios,
587 stm32_port->port.mctrl & ~TIOCM_RTS);
588 }
589 }
590
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100591 stm32_usart_transmit_chars(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200592}
593
Erwan Le Ray3d82be82021-03-04 17:23:08 +0100594/* Flush the transmit buffer. */
595static void stm32_usart_flush_buffer(struct uart_port *port)
596{
597 struct stm32_port *stm32_port = to_stm32_port(port);
598 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
599
600 if (stm32_port->tx_ch) {
601 dmaengine_terminate_async(stm32_port->tx_ch);
602 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
603 stm32_port->tx_dma_busy = false;
604 }
605}
606
Maxime Coquelin48a60922015-06-10 21:19:36 +0200607/* Throttle the remote when input buffer is about to overflow. */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100608static void stm32_usart_throttle(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200609{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200610 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800611 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200612 unsigned long flags;
613
614 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100615 stm32_usart_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200616 if (stm32_port->cr3_irq)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100617 stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200618
Maxime Coquelin48a60922015-06-10 21:19:36 +0200619 spin_unlock_irqrestore(&port->lock, flags);
620}
621
622/* Unthrottle the remote, the input buffer can now accept data. */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100623static void stm32_usart_unthrottle(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200624{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200625 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800626 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200627 unsigned long flags;
628
629 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100630 stm32_usart_set_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200631 if (stm32_port->cr3_irq)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100632 stm32_usart_set_bits(port, ofs->cr3, stm32_port->cr3_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200633
Maxime Coquelin48a60922015-06-10 21:19:36 +0200634 spin_unlock_irqrestore(&port->lock, flags);
635}
636
637/* Receive stop */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100638static void stm32_usart_stop_rx(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200639{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200640 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800641 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200642
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100643 stm32_usart_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200644 if (stm32_port->cr3_irq)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100645 stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200646}
647
648/* Handle breaks - ignored by us */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100649static void stm32_usart_break_ctl(struct uart_port *port, int break_state)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200650{
651}
652
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100653static int stm32_usart_startup(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200654{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200655 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800656 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayf4518a82021-03-04 17:22:57 +0100657 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200658 const char *name = to_platform_device(port->dev)->name;
659 u32 val;
660 int ret;
661
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100662 ret = request_threaded_irq(port->irq, stm32_usart_interrupt,
663 stm32_usart_threaded_interrupt,
Johan Hovolde359b442021-04-16 16:05:56 +0200664 IRQF_ONESHOT | IRQF_NO_SUSPEND,
665 name, port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200666 if (ret)
667 return ret;
668
Martin Devera3cd66592021-03-28 17:43:06 +0200669 if (stm32_port->swap) {
670 val = readl_relaxed(port->membase + ofs->cr2);
671 val |= USART_CR2_SWAP;
672 writel_relaxed(val, port->membase + ofs->cr2);
673 }
674
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200675 /* RX FIFO Flush */
676 if (ofs->rqr != UNDEF_REG)
Erwan Le Ray315e2d82021-03-04 17:23:05 +0100677 writel_relaxed(USART_RQR_RXFRQ, port->membase + ofs->rqr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200678
Erwan Le Ray25a8e762021-03-04 17:22:59 +0100679 /* RX enabling */
Erwan Le Rayf4518a82021-03-04 17:22:57 +0100680 val = stm32_port->cr1_irq | USART_CR1_RE | BIT(cfg->uart_enable_bit);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100681 stm32_usart_set_bits(port, ofs->cr1, val);
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200682
Maxime Coquelin48a60922015-06-10 21:19:36 +0200683 return 0;
684}
685
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100686static void stm32_usart_shutdown(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200687{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200688 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800689 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
690 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200691 u32 val, isr;
692 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200693
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530694 /* Disable modem control interrupts */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100695 stm32_usart_disable_ms(port);
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530696
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200697 val = USART_CR1_TXEIE | USART_CR1_TE;
698 val |= stm32_port->cr1_irq | USART_CR1_RE;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +0200699 val |= BIT(cfg->uart_enable_bit);
Gerald Baeza351a7622017-07-13 15:08:30 +0000700 if (stm32_port->fifoen)
701 val |= USART_CR1_FIFOEN;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200702
703 ret = readl_relaxed_poll_timeout(port->membase + ofs->isr,
704 isr, (isr & USART_SR_TC),
705 10, 100000);
706
Erwan Le Rayc31c3ea2021-01-06 17:22:03 +0100707 /* Send the TC error message only when ISR_TC is not set */
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200708 if (ret)
Erwan Le Rayc31c3ea2021-01-06 17:22:03 +0100709 dev_err(port->dev, "Transmission is not complete\n");
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200710
Erwan Le Ray9f77d192021-03-04 17:23:06 +0100711 /* flush RX & TX FIFO */
712 if (ofs->rqr != UNDEF_REG)
713 writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ,
714 port->membase + ofs->rqr);
715
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100716 stm32_usart_clr_bits(port, ofs->cr1, val);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200717
718 free_irq(port->irq, port);
719}
720
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100721static void stm32_usart_set_termios(struct uart_port *port,
722 struct ktermios *termios,
723 struct ktermios *old)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200724{
725 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800726 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
727 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Bich HEMON1bcda092018-03-12 09:50:05 +0000728 struct serial_rs485 *rs485conf = &port->rs485;
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200729 unsigned int baud, bits;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200730 u32 usartdiv, mantissa, fraction, oversampling;
731 tcflag_t cflag = termios->c_cflag;
Erwan Le Rayf264c6f2021-03-04 17:22:58 +0100732 u32 cr1, cr2, cr3, isr;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200733 unsigned long flags;
Erwan Le Rayf264c6f2021-03-04 17:22:58 +0100734 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200735
736 if (!stm32_port->hw_flow_control)
737 cflag &= ~CRTSCTS;
738
739 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
740
741 spin_lock_irqsave(&port->lock, flags);
742
Erwan Le Rayf264c6f2021-03-04 17:22:58 +0100743 ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
744 isr,
745 (isr & USART_SR_TC),
746 10, 100000);
747
748 /* Send the TC error message only when ISR_TC is not set. */
749 if (ret)
750 dev_err(port->dev, "Transmission is not complete\n");
751
Maxime Coquelin48a60922015-06-10 21:19:36 +0200752 /* Stop serial port and reset value */
Alexandre TORGUEada86182016-09-15 18:42:33 +0200753 writel_relaxed(0, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200754
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200755 /* flush RX & TX FIFO */
756 if (ofs->rqr != UNDEF_REG)
Erwan Le Ray315e2d82021-03-04 17:23:05 +0100757 writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ,
758 port->membase + ofs->rqr);
Bich HEMON1bcda092018-03-12 09:50:05 +0000759
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200760 cr1 = USART_CR1_TE | USART_CR1_RE;
Gerald Baeza351a7622017-07-13 15:08:30 +0000761 if (stm32_port->fifoen)
762 cr1 |= USART_CR1_FIFOEN;
Martin Devera3cd66592021-03-28 17:43:06 +0200763 cr2 = stm32_port->swap ? USART_CR2_SWAP : 0;
Erwan Le Ray25a8e762021-03-04 17:22:59 +0100764
765 /* Tx and RX FIFO configuration */
Erwan Le Rayd0757192019-06-18 12:02:24 +0200766 cr3 = readl_relaxed(port->membase + ofs->cr3);
Erwan Le Ray25a8e762021-03-04 17:22:59 +0100767 cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTIE;
768 if (stm32_port->fifoen) {
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200769 if (stm32_port->txftcfg >= 0)
770 cr3 |= stm32_port->txftcfg << USART_CR3_TXFTCFG_SHIFT;
771 if (stm32_port->rxftcfg >= 0)
772 cr3 |= stm32_port->rxftcfg << USART_CR3_RXFTCFG_SHIFT;
Erwan Le Ray25a8e762021-03-04 17:22:59 +0100773 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200774
775 if (cflag & CSTOPB)
776 cr2 |= USART_CR2_STOP_2B;
777
Jiri Slaby3ec2ff32021-06-10 11:02:47 +0200778 bits = tty_get_char_size(cflag);
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200779 stm32_port->rdr_mask = (BIT(bits) - 1);
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200780
Maxime Coquelin48a60922015-06-10 21:19:36 +0200781 if (cflag & PARENB) {
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200782 bits++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200783 cr1 |= USART_CR1_PCE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200784 }
785
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200786 /*
787 * Word length configuration:
788 * CS8 + parity, 9 bits word aka [M1:M0] = 0b01
789 * CS7 or (CS6 + parity), 7 bits word aka [M1:M0] = 0b10
790 * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00
791 * M0 and M1 already cleared by cr1 initialization.
792 */
793 if (bits == 9)
794 cr1 |= USART_CR1_M0;
795 else if ((bits == 7) && cfg->has_7bits_data)
796 cr1 |= USART_CR1_M1;
797 else if (bits != 8)
798 dev_dbg(port->dev, "Unsupported data bits config: %u bits\n"
799 , bits);
800
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200801 if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch ||
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200802 (stm32_port->fifoen &&
803 stm32_port->rxftcfg >= 0))) {
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200804 if (cflag & CSTOPB)
805 bits = bits + 3; /* 1 start bit + 2 stop bits */
806 else
807 bits = bits + 2; /* 1 start bit + 1 stop bit */
808
809 /* RX timeout irq to occur after last stop bit + bits */
810 stm32_port->cr1_irq = USART_CR1_RTOIE;
811 writel_relaxed(bits, port->membase + ofs->rtor);
812 cr2 |= USART_CR2_RTOEN;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200813 /* Not using dma, enable fifo threshold irq */
814 if (!stm32_port->rx_ch)
815 stm32_port->cr3_irq = USART_CR3_RXFTIE;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200816 }
817
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200818 cr1 |= stm32_port->cr1_irq;
819 cr3 |= stm32_port->cr3_irq;
820
Maxime Coquelin48a60922015-06-10 21:19:36 +0200821 if (cflag & PARODD)
822 cr1 |= USART_CR1_PS;
823
824 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
825 if (cflag & CRTSCTS) {
826 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
Bich HEMON35abe982017-07-13 15:08:28 +0000827 cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200828 }
829
830 usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
831
832 /*
833 * The USART supports 16 or 8 times oversampling.
834 * By default we prefer 16 times oversampling, so that the receiver
835 * has a better tolerance to clock deviations.
836 * 8 times oversampling is only used to achieve higher speeds.
837 */
838 if (usartdiv < 16) {
839 oversampling = 8;
Bich HEMON1bcda092018-03-12 09:50:05 +0000840 cr1 |= USART_CR1_OVER8;
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100841 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200842 } else {
843 oversampling = 16;
Bich HEMON1bcda092018-03-12 09:50:05 +0000844 cr1 &= ~USART_CR1_OVER8;
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100845 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200846 }
847
848 mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
849 fraction = usartdiv % oversampling;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200850 writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200851
852 uart_update_timeout(port, cflag, baud);
853
854 port->read_status_mask = USART_SR_ORE;
855 if (termios->c_iflag & INPCK)
856 port->read_status_mask |= USART_SR_PE | USART_SR_FE;
857 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200858 port->read_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200859
860 /* Characters to ignore */
861 port->ignore_status_mask = 0;
862 if (termios->c_iflag & IGNPAR)
863 port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
864 if (termios->c_iflag & IGNBRK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200865 port->ignore_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200866 /*
867 * If we're ignoring parity and break indicators,
868 * ignore overruns too (for real raw support).
869 */
870 if (termios->c_iflag & IGNPAR)
871 port->ignore_status_mask |= USART_SR_ORE;
872 }
873
874 /* Ignore all characters if CREAD is not set */
875 if ((termios->c_cflag & CREAD) == 0)
876 port->ignore_status_mask |= USART_SR_DUMMY_RX;
877
Alexandre TORGUE34891872016-09-15 18:42:40 +0200878 if (stm32_port->rx_ch)
879 cr3 |= USART_CR3_DMAR;
880
Bich HEMON1bcda092018-03-12 09:50:05 +0000881 if (rs485conf->flags & SER_RS485_ENABLED) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100882 stm32_usart_config_reg_rs485(&cr1, &cr3,
883 rs485conf->delay_rts_before_send,
884 rs485conf->delay_rts_after_send,
885 baud);
Bich HEMON1bcda092018-03-12 09:50:05 +0000886 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
887 cr3 &= ~USART_CR3_DEP;
888 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
889 } else {
890 cr3 |= USART_CR3_DEP;
891 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
892 }
893
894 } else {
895 cr3 &= ~(USART_CR3_DEM | USART_CR3_DEP);
896 cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
897 }
898
Erwan Le Ray12761862021-03-04 17:23:01 +0100899 /* Configure wake up from low power on start bit detection */
Alexandre Torgue3d530012021-03-19 19:42:52 +0100900 if (stm32_port->wakeup_src) {
Erwan Le Ray12761862021-03-04 17:23:01 +0100901 cr3 &= ~USART_CR3_WUS_MASK;
902 cr3 |= USART_CR3_WUS_START_BIT;
903 }
904
Alexandre TORGUEada86182016-09-15 18:42:33 +0200905 writel_relaxed(cr3, port->membase + ofs->cr3);
906 writel_relaxed(cr2, port->membase + ofs->cr2);
907 writel_relaxed(cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200908
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100909 stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +0200910 spin_unlock_irqrestore(&port->lock, flags);
Erwan Le Ray436c9792021-03-04 17:23:02 +0100911
912 /* Handle modem control interrupts */
913 if (UART_ENABLE_MS(port, termios->c_cflag))
914 stm32_usart_enable_ms(port);
915 else
916 stm32_usart_disable_ms(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200917}
918
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100919static const char *stm32_usart_type(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200920{
921 return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
922}
923
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100924static void stm32_usart_release_port(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200925{
926}
927
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100928static int stm32_usart_request_port(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200929{
930 return 0;
931}
932
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100933static void stm32_usart_config_port(struct uart_port *port, int flags)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200934{
935 if (flags & UART_CONFIG_TYPE)
936 port->type = PORT_STM32;
937}
938
939static int
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100940stm32_usart_verify_port(struct uart_port *port, struct serial_struct *ser)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200941{
942 /* No user changeable parameters */
943 return -EINVAL;
944}
945
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100946static void stm32_usart_pm(struct uart_port *port, unsigned int state,
947 unsigned int oldstate)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200948{
949 struct stm32_port *stm32port = container_of(port,
950 struct stm32_port, port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800951 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
952 const struct stm32_usart_config *cfg = &stm32port->info->cfg;
Johan Hovold18ee37e2021-05-19 11:25:41 +0200953 unsigned long flags;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200954
955 switch (state) {
956 case UART_PM_STATE_ON:
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +0200957 pm_runtime_get_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200958 break;
959 case UART_PM_STATE_OFF:
960 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100961 stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +0200962 spin_unlock_irqrestore(&port->lock, flags);
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +0200963 pm_runtime_put_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200964 break;
965 }
966}
967
968static const struct uart_ops stm32_uart_ops = {
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100969 .tx_empty = stm32_usart_tx_empty,
970 .set_mctrl = stm32_usart_set_mctrl,
971 .get_mctrl = stm32_usart_get_mctrl,
972 .stop_tx = stm32_usart_stop_tx,
973 .start_tx = stm32_usart_start_tx,
974 .throttle = stm32_usart_throttle,
975 .unthrottle = stm32_usart_unthrottle,
976 .stop_rx = stm32_usart_stop_rx,
977 .enable_ms = stm32_usart_enable_ms,
978 .break_ctl = stm32_usart_break_ctl,
979 .startup = stm32_usart_startup,
980 .shutdown = stm32_usart_shutdown,
Erwan Le Ray3d82be82021-03-04 17:23:08 +0100981 .flush_buffer = stm32_usart_flush_buffer,
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100982 .set_termios = stm32_usart_set_termios,
983 .pm = stm32_usart_pm,
984 .type = stm32_usart_type,
985 .release_port = stm32_usart_release_port,
986 .request_port = stm32_usart_request_port,
987 .config_port = stm32_usart_config_port,
988 .verify_port = stm32_usart_verify_port,
Maxime Coquelin48a60922015-06-10 21:19:36 +0200989};
990
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200991/*
992 * STM32H7 RX & TX FIFO threshold configuration (CR3 RXFTCFG / TXFTCFG)
993 * Note: 1 isn't a valid value in RXFTCFG / TXFTCFG. In this case,
994 * RXNEIE / TXEIE can be used instead of threshold irqs: RXFTIE / TXFTIE.
995 * So, RXFTCFG / TXFTCFG bitfields values are encoded as array index + 1.
996 */
997static const u32 stm32h7_usart_fifo_thresh_cfg[] = { 1, 2, 4, 8, 12, 14, 16 };
998
999static void stm32_usart_get_ftcfg(struct platform_device *pdev, const char *p,
1000 int *ftcfg)
1001{
1002 u32 bytes, i;
1003
1004 /* DT option to get RX & TX FIFO threshold (default to 8 bytes) */
1005 if (of_property_read_u32(pdev->dev.of_node, p, &bytes))
1006 bytes = 8;
1007
1008 for (i = 0; i < ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg); i++)
1009 if (stm32h7_usart_fifo_thresh_cfg[i] >= bytes)
1010 break;
1011 if (i >= ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg))
1012 i = ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg) - 1;
1013
1014 dev_dbg(&pdev->dev, "%s set to %d bytes\n", p,
1015 stm32h7_usart_fifo_thresh_cfg[i]);
1016
1017 /* Provide FIFO threshold ftcfg (1 is invalid: threshold irq unused) */
1018 if (i)
1019 *ftcfg = i - 1;
1020 else
1021 *ftcfg = -EINVAL;
1022}
1023
Erwan Le Ray97f3a082021-01-06 17:22:02 +01001024static void stm32_usart_deinit_port(struct stm32_port *stm32port)
1025{
1026 clk_disable_unprepare(stm32port->clk);
1027}
1028
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001029static int stm32_usart_init_port(struct stm32_port *stm32port,
1030 struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001031{
1032 struct uart_port *port = &stm32port->port;
1033 struct resource *res;
Erwan Le Raye0f2a902021-01-21 15:23:09 +01001034 int ret, irq;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001035
Erwan Le Raye0f2a902021-01-21 15:23:09 +01001036 irq = platform_get_irq(pdev, 0);
Tang Bin217b04c2021-08-11 18:51:36 +08001037 if (irq < 0)
1038 return irq;
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001039
Maxime Coquelin48a60922015-06-10 21:19:36 +02001040 port->iotype = UPIO_MEM;
1041 port->flags = UPF_BOOT_AUTOCONF;
1042 port->ops = &stm32_uart_ops;
1043 port->dev = &pdev->dev;
Erwan Le Rayd0757192019-06-18 12:02:24 +02001044 port->fifosize = stm32port->info->cfg.fifosize;
Dmitry Safonov9feedaa2019-12-13 00:06:43 +00001045 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_STM32_CONSOLE);
Erwan Le Raye0f2a902021-01-21 15:23:09 +01001046 port->irq = irq;
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001047 port->rs485_config = stm32_usart_config_rs485;
Bich HEMON7d8f6862018-03-15 08:44:46 +00001048
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001049 ret = stm32_usart_init_rs485(port, pdev);
Lukas Wunnerc150c0f2020-05-12 14:40:02 +02001050 if (ret)
1051 return ret;
Bich HEMON7d8f6862018-03-15 08:44:46 +00001052
Alexandre Torgue3d530012021-03-19 19:42:52 +01001053 stm32port->wakeup_src = stm32port->info->cfg.has_wakeup &&
1054 of_property_read_bool(pdev->dev.of_node, "wakeup-source");
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001055
Martin Devera3cd66592021-03-28 17:43:06 +02001056 stm32port->swap = stm32port->info->cfg.has_swap &&
1057 of_property_read_bool(pdev->dev.of_node, "rx-tx-swap");
1058
Gerald Baeza351a7622017-07-13 15:08:30 +00001059 stm32port->fifoen = stm32port->info->cfg.has_fifo;
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +02001060 if (stm32port->fifoen) {
1061 stm32_usart_get_ftcfg(pdev, "rx-threshold",
1062 &stm32port->rxftcfg);
1063 stm32_usart_get_ftcfg(pdev, "tx-threshold",
1064 &stm32port->txftcfg);
1065 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001066
1067 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1068 port->membase = devm_ioremap_resource(&pdev->dev, res);
1069 if (IS_ERR(port->membase))
1070 return PTR_ERR(port->membase);
1071 port->mapbase = res->start;
1072
1073 spin_lock_init(&port->lock);
1074
1075 stm32port->clk = devm_clk_get(&pdev->dev, NULL);
1076 if (IS_ERR(stm32port->clk))
1077 return PTR_ERR(stm32port->clk);
1078
1079 /* Ensure that clk rate is correct by enabling the clk */
1080 ret = clk_prepare_enable(stm32port->clk);
1081 if (ret)
1082 return ret;
1083
1084 stm32port->port.uartclk = clk_get_rate(stm32port->clk);
Fabrice Gasnierada80042017-07-13 15:08:29 +00001085 if (!stm32port->port.uartclk) {
Maxime Coquelin48a60922015-06-10 21:19:36 +02001086 ret = -EINVAL;
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301087 goto err_clk;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001088 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001089
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301090 stm32port->gpios = mctrl_gpio_init(&stm32port->port, 0);
1091 if (IS_ERR(stm32port->gpios)) {
1092 ret = PTR_ERR(stm32port->gpios);
1093 goto err_clk;
1094 }
1095
Erwan Le Ray93593692021-01-06 17:22:01 +01001096 /*
1097 * Both CTS/RTS gpios and "st,hw-flow-ctrl" (deprecated) or "uart-has-rtscts"
1098 * properties should not be specified.
1099 */
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301100 if (stm32port->hw_flow_control) {
1101 if (mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_CTS) ||
1102 mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_RTS)) {
1103 dev_err(&pdev->dev, "Conflicting RTS/CTS config\n");
1104 ret = -EINVAL;
1105 goto err_clk;
1106 }
1107 }
1108
1109 return ret;
1110
1111err_clk:
1112 clk_disable_unprepare(stm32port->clk);
1113
Maxime Coquelin48a60922015-06-10 21:19:36 +02001114 return ret;
1115}
1116
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001117static struct stm32_port *stm32_usart_of_get_port(struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001118{
1119 struct device_node *np = pdev->dev.of_node;
1120 int id;
1121
1122 if (!np)
1123 return NULL;
1124
1125 id = of_alias_get_id(np, "serial");
Gerald Baezae5707912017-07-13 15:08:27 +00001126 if (id < 0) {
1127 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
1128 return NULL;
1129 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001130
1131 if (WARN_ON(id >= STM32_MAX_PORTS))
1132 return NULL;
1133
Erwan Le Ray6fd9fff2020-05-20 15:39:32 +02001134 stm32_ports[id].hw_flow_control =
1135 of_property_read_bool (np, "st,hw-flow-ctrl") /*deprecated*/ ||
1136 of_property_read_bool (np, "uart-has-rtscts");
Maxime Coquelin48a60922015-06-10 21:19:36 +02001137 stm32_ports[id].port.line = id;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001138 stm32_ports[id].cr1_irq = USART_CR1_RXNEIE;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +02001139 stm32_ports[id].cr3_irq = 0;
Gerald Baezae5707912017-07-13 15:08:27 +00001140 stm32_ports[id].last_res = RX_BUF_L;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001141 return &stm32_ports[id];
1142}
1143
1144#ifdef CONFIG_OF
1145static const struct of_device_id stm32_match[] = {
Alexandre TORGUEada86182016-09-15 18:42:33 +02001146 { .compatible = "st,stm32-uart", .data = &stm32f4_info},
Alexandre TORGUEada86182016-09-15 18:42:33 +02001147 { .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001148 { .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
Maxime Coquelin48a60922015-06-10 21:19:36 +02001149 {},
1150};
1151
1152MODULE_DEVICE_TABLE(of, stm32_match);
1153#endif
1154
Erwan Le Raya7770a42021-06-10 12:00:20 +02001155static void stm32_usart_of_dma_rx_remove(struct stm32_port *stm32port,
1156 struct platform_device *pdev)
1157{
1158 if (stm32port->rx_buf)
1159 dma_free_coherent(&pdev->dev, RX_BUF_L, stm32port->rx_buf,
1160 stm32port->rx_dma_buf);
1161}
1162
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001163static int stm32_usart_of_dma_rx_probe(struct stm32_port *stm32port,
1164 struct platform_device *pdev)
Alexandre TORGUE34891872016-09-15 18:42:40 +02001165{
Stephen Boydd825f0b2021-01-22 19:44:25 -08001166 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001167 struct uart_port *port = &stm32port->port;
1168 struct device *dev = &pdev->dev;
1169 struct dma_slave_config config;
1170 struct dma_async_tx_descriptor *desc = NULL;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001171 int ret;
1172
Johan Hovolde359b442021-04-16 16:05:56 +02001173 /*
1174 * Using DMA and threaded handler for the console could lead to
1175 * deadlocks.
1176 */
1177 if (uart_console(port))
1178 return -ENODEV;
1179
Alexandre TORGUE34891872016-09-15 18:42:40 +02001180 stm32port->rx_buf = dma_alloc_coherent(&pdev->dev, RX_BUF_L,
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001181 &stm32port->rx_dma_buf,
1182 GFP_KERNEL);
Erwan Le Raya7770a42021-06-10 12:00:20 +02001183 if (!stm32port->rx_buf)
1184 return -ENOMEM;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001185
1186 /* Configure DMA channel */
1187 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001188 config.src_addr = port->mapbase + ofs->rdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001189 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1190
1191 ret = dmaengine_slave_config(stm32port->rx_ch, &config);
1192 if (ret < 0) {
1193 dev_err(dev, "rx dma channel config failed\n");
Erwan Le Raya7770a42021-06-10 12:00:20 +02001194 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1195 return ret;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001196 }
1197
1198 /* Prepare a DMA cyclic transaction */
1199 desc = dmaengine_prep_dma_cyclic(stm32port->rx_ch,
1200 stm32port->rx_dma_buf,
1201 RX_BUF_L, RX_BUF_P, DMA_DEV_TO_MEM,
1202 DMA_PREP_INTERRUPT);
1203 if (!desc) {
1204 dev_err(dev, "rx dma prep cyclic failed\n");
Erwan Le Raya7770a42021-06-10 12:00:20 +02001205 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1206 return -ENODEV;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001207 }
1208
1209 /* No callback as dma buffer is drained on usart interrupt */
1210 desc->callback = NULL;
1211 desc->callback_param = NULL;
1212
1213 /* Push current DMA transaction in the pending queue */
Erwan Le Raye7997f72021-01-06 17:21:56 +01001214 ret = dma_submit_error(dmaengine_submit(desc));
1215 if (ret) {
1216 dmaengine_terminate_sync(stm32port->rx_ch);
Erwan Le Raya7770a42021-06-10 12:00:20 +02001217 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1218 return ret;
Erwan Le Raye7997f72021-01-06 17:21:56 +01001219 }
Alexandre TORGUE34891872016-09-15 18:42:40 +02001220
1221 /* Issue pending DMA requests */
1222 dma_async_issue_pending(stm32port->rx_ch);
1223
1224 return 0;
Erwan Le Raya7770a42021-06-10 12:00:20 +02001225}
Alexandre TORGUE34891872016-09-15 18:42:40 +02001226
Erwan Le Raya7770a42021-06-10 12:00:20 +02001227static void stm32_usart_of_dma_tx_remove(struct stm32_port *stm32port,
1228 struct platform_device *pdev)
1229{
1230 if (stm32port->tx_buf)
1231 dma_free_coherent(&pdev->dev, TX_BUF_L, stm32port->tx_buf,
1232 stm32port->tx_dma_buf);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001233}
1234
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001235static int stm32_usart_of_dma_tx_probe(struct stm32_port *stm32port,
1236 struct platform_device *pdev)
Alexandre TORGUE34891872016-09-15 18:42:40 +02001237{
Stephen Boydd825f0b2021-01-22 19:44:25 -08001238 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001239 struct uart_port *port = &stm32port->port;
1240 struct device *dev = &pdev->dev;
1241 struct dma_slave_config config;
1242 int ret;
1243
1244 stm32port->tx_dma_busy = false;
1245
Alexandre TORGUE34891872016-09-15 18:42:40 +02001246 stm32port->tx_buf = dma_alloc_coherent(&pdev->dev, TX_BUF_L,
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001247 &stm32port->tx_dma_buf,
1248 GFP_KERNEL);
Erwan Le Raya7770a42021-06-10 12:00:20 +02001249 if (!stm32port->tx_buf)
1250 return -ENOMEM;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001251
1252 /* Configure DMA channel */
1253 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001254 config.dst_addr = port->mapbase + ofs->tdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001255 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1256
1257 ret = dmaengine_slave_config(stm32port->tx_ch, &config);
1258 if (ret < 0) {
1259 dev_err(dev, "tx dma channel config failed\n");
Erwan Le Raya7770a42021-06-10 12:00:20 +02001260 stm32_usart_of_dma_tx_remove(stm32port, pdev);
1261 return ret;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001262 }
1263
1264 return 0;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001265}
1266
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001267static int stm32_usart_serial_probe(struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001268{
Maxime Coquelin48a60922015-06-10 21:19:36 +02001269 struct stm32_port *stm32port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001270 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001271
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001272 stm32port = stm32_usart_of_get_port(pdev);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001273 if (!stm32port)
1274 return -ENODEV;
1275
Stephen Boydd825f0b2021-01-22 19:44:25 -08001276 stm32port->info = of_device_get_match_data(&pdev->dev);
1277 if (!stm32port->info)
Alexandre TORGUEada86182016-09-15 18:42:33 +02001278 return -EINVAL;
1279
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001280 ret = stm32_usart_init_port(stm32port, pdev);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001281 if (ret)
1282 return ret;
1283
Alexandre Torgue3d530012021-03-19 19:42:52 +01001284 if (stm32port->wakeup_src) {
1285 device_set_wakeup_capable(&pdev->dev, true);
1286 ret = dev_pm_set_wake_irq(&pdev->dev, stm32port->port.irq);
Erwan Le Ray5297f272019-05-21 17:45:46 +02001287 if (ret)
Erwan Le Raya7770a42021-06-10 12:00:20 +02001288 goto err_deinit_port;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001289 }
1290
Erwan Le Raya7770a42021-06-10 12:00:20 +02001291 stm32port->rx_ch = dma_request_chan(&pdev->dev, "rx");
1292 if (PTR_ERR(stm32port->rx_ch) == -EPROBE_DEFER) {
1293 ret = -EPROBE_DEFER;
1294 goto err_wakeirq;
1295 }
1296 /* Fall back in interrupt mode for any non-deferral error */
1297 if (IS_ERR(stm32port->rx_ch))
1298 stm32port->rx_ch = NULL;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001299
Erwan Le Raya7770a42021-06-10 12:00:20 +02001300 stm32port->tx_ch = dma_request_chan(&pdev->dev, "tx");
1301 if (PTR_ERR(stm32port->tx_ch) == -EPROBE_DEFER) {
1302 ret = -EPROBE_DEFER;
1303 goto err_dma_rx;
1304 }
1305 /* Fall back in interrupt mode for any non-deferral error */
1306 if (IS_ERR(stm32port->tx_ch))
1307 stm32port->tx_ch = NULL;
1308
1309 if (stm32port->rx_ch && stm32_usart_of_dma_rx_probe(stm32port, pdev)) {
1310 /* Fall back in interrupt mode */
1311 dma_release_channel(stm32port->rx_ch);
1312 stm32port->rx_ch = NULL;
1313 }
1314
1315 if (stm32port->tx_ch && stm32_usart_of_dma_tx_probe(stm32port, pdev)) {
1316 /* Fall back in interrupt mode */
1317 dma_release_channel(stm32port->tx_ch);
1318 stm32port->tx_ch = NULL;
1319 }
1320
1321 if (!stm32port->rx_ch)
1322 dev_info(&pdev->dev, "interrupt mode for rx (no dma)\n");
1323 if (!stm32port->tx_ch)
1324 dev_info(&pdev->dev, "interrupt mode for tx (no dma)\n");
Alexandre TORGUE34891872016-09-15 18:42:40 +02001325
Maxime Coquelin48a60922015-06-10 21:19:36 +02001326 platform_set_drvdata(pdev, &stm32port->port);
1327
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001328 pm_runtime_get_noresume(&pdev->dev);
1329 pm_runtime_set_active(&pdev->dev);
1330 pm_runtime_enable(&pdev->dev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001331
1332 ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
1333 if (ret)
1334 goto err_port;
1335
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001336 pm_runtime_put_sync(&pdev->dev);
1337
Maxime Coquelin48a60922015-06-10 21:19:36 +02001338 return 0;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001339
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001340err_port:
1341 pm_runtime_disable(&pdev->dev);
1342 pm_runtime_set_suspended(&pdev->dev);
1343 pm_runtime_put_noidle(&pdev->dev);
1344
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001345 if (stm32port->tx_ch) {
Erwan Le Raya7770a42021-06-10 12:00:20 +02001346 stm32_usart_of_dma_tx_remove(stm32port, pdev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001347 dma_release_channel(stm32port->tx_ch);
1348 }
1349
Erwan Le Raya7770a42021-06-10 12:00:20 +02001350 if (stm32port->rx_ch)
1351 stm32_usart_of_dma_rx_remove(stm32port, pdev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001352
Erwan Le Raya7770a42021-06-10 12:00:20 +02001353err_dma_rx:
1354 if (stm32port->rx_ch)
1355 dma_release_channel(stm32port->rx_ch);
1356
1357err_wakeirq:
Alexandre Torgue3d530012021-03-19 19:42:52 +01001358 if (stm32port->wakeup_src)
Erwan Le Ray5297f272019-05-21 17:45:46 +02001359 dev_pm_clear_wake_irq(&pdev->dev);
1360
Erwan Le Raya7770a42021-06-10 12:00:20 +02001361err_deinit_port:
Alexandre Torgue3d530012021-03-19 19:42:52 +01001362 if (stm32port->wakeup_src)
1363 device_set_wakeup_capable(&pdev->dev, false);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001364
Erwan Le Ray97f3a082021-01-06 17:22:02 +01001365 stm32_usart_deinit_port(stm32port);
Fabrice Gasnierada80042017-07-13 15:08:29 +00001366
1367 return ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001368}
1369
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001370static int stm32_usart_serial_remove(struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001371{
1372 struct uart_port *port = platform_get_drvdata(pdev);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001373 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001374 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001375 int err;
1376
1377 pm_runtime_get_sync(&pdev->dev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001378 err = uart_remove_one_port(&stm32_usart_driver, port);
1379 if (err)
1380 return(err);
1381
1382 pm_runtime_disable(&pdev->dev);
1383 pm_runtime_set_suspended(&pdev->dev);
1384 pm_runtime_put_noidle(&pdev->dev);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001385
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001386 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001387
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001388 if (stm32_port->tx_ch) {
1389 dmaengine_terminate_async(stm32_port->tx_ch);
Erwan Le Raya7770a42021-06-10 12:00:20 +02001390 stm32_usart_of_dma_tx_remove(stm32_port, pdev);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001391 dma_release_channel(stm32_port->tx_ch);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001392 }
Alexandre TORGUE34891872016-09-15 18:42:40 +02001393
Erwan Le Raya7770a42021-06-10 12:00:20 +02001394 if (stm32_port->rx_ch) {
1395 dmaengine_terminate_async(stm32_port->rx_ch);
1396 stm32_usart_of_dma_rx_remove(stm32_port, pdev);
1397 dma_release_channel(stm32_port->rx_ch);
1398 }
1399
1400 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001401
Alexandre Torgue3d530012021-03-19 19:42:52 +01001402 if (stm32_port->wakeup_src) {
Erwan Le Ray5297f272019-05-21 17:45:46 +02001403 dev_pm_clear_wake_irq(&pdev->dev);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001404 device_init_wakeup(&pdev->dev, false);
Erwan Le Ray5297f272019-05-21 17:45:46 +02001405 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001406
Erwan Le Ray97f3a082021-01-06 17:22:02 +01001407 stm32_usart_deinit_port(stm32_port);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001408
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001409 return 0;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001410}
1411
Maxime Coquelin48a60922015-06-10 21:19:36 +02001412#ifdef CONFIG_SERIAL_STM32_CONSOLE
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001413static void stm32_usart_console_putchar(struct uart_port *port, int ch)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001414{
Alexandre TORGUEada86182016-09-15 18:42:33 +02001415 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001416 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001417
1418 while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
Maxime Coquelin48a60922015-06-10 21:19:36 +02001419 cpu_relax();
1420
Alexandre TORGUEada86182016-09-15 18:42:33 +02001421 writel_relaxed(ch, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001422}
1423
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001424static void stm32_usart_console_write(struct console *co, const char *s,
1425 unsigned int cnt)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001426{
1427 struct uart_port *port = &stm32_ports[co->index].port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001428 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001429 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1430 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001431 unsigned long flags;
1432 u32 old_cr1, new_cr1;
1433 int locked = 1;
1434
Johan Hovoldcea37af2021-04-16 16:05:57 +02001435 if (oops_in_progress)
1436 locked = spin_trylock_irqsave(&port->lock, flags);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001437 else
Johan Hovoldcea37af2021-04-16 16:05:57 +02001438 spin_lock_irqsave(&port->lock, flags);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001439
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001440 /* Save and disable interrupts, enable the transmitter */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001441 old_cr1 = readl_relaxed(port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001442 new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001443 new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit);
Alexandre TORGUEada86182016-09-15 18:42:33 +02001444 writel_relaxed(new_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001445
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001446 uart_console_write(port, s, cnt, stm32_usart_console_putchar);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001447
1448 /* Restore interrupt state */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001449 writel_relaxed(old_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001450
1451 if (locked)
Johan Hovoldcea37af2021-04-16 16:05:57 +02001452 spin_unlock_irqrestore(&port->lock, flags);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001453}
1454
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001455static int stm32_usart_console_setup(struct console *co, char *options)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001456{
1457 struct stm32_port *stm32port;
1458 int baud = 9600;
1459 int bits = 8;
1460 int parity = 'n';
1461 int flow = 'n';
1462
1463 if (co->index >= STM32_MAX_PORTS)
1464 return -ENODEV;
1465
1466 stm32port = &stm32_ports[co->index];
1467
1468 /*
1469 * This driver does not support early console initialization
1470 * (use ARM early printk support instead), so we only expect
1471 * this to be called during the uart port registration when the
1472 * driver gets probed and the port should be mapped at that point.
1473 */
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001474 if (stm32port->port.mapbase == 0 || !stm32port->port.membase)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001475 return -ENXIO;
1476
1477 if (options)
1478 uart_parse_options(options, &baud, &parity, &bits, &flow);
1479
1480 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
1481}
1482
1483static struct console stm32_console = {
1484 .name = STM32_SERIAL_NAME,
1485 .device = uart_console_device,
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001486 .write = stm32_usart_console_write,
1487 .setup = stm32_usart_console_setup,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001488 .flags = CON_PRINTBUFFER,
1489 .index = -1,
1490 .data = &stm32_usart_driver,
1491};
1492
1493#define STM32_SERIAL_CONSOLE (&stm32_console)
1494
1495#else
1496#define STM32_SERIAL_CONSOLE NULL
1497#endif /* CONFIG_SERIAL_STM32_CONSOLE */
1498
1499static struct uart_driver stm32_usart_driver = {
1500 .driver_name = DRIVER_NAME,
1501 .dev_name = STM32_SERIAL_NAME,
1502 .major = 0,
1503 .minor = 0,
1504 .nr = STM32_MAX_PORTS,
1505 .cons = STM32_SERIAL_CONSOLE,
1506};
1507
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001508static void __maybe_unused stm32_usart_serial_en_wakeup(struct uart_port *port,
1509 bool enable)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001510{
1511 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001512 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001513
Alexandre Torgue3d530012021-03-19 19:42:52 +01001514 if (!stm32_port->wakeup_src)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001515 return;
1516
Erwan Le Ray12761862021-03-04 17:23:01 +01001517 /*
1518 * Enable low-power wake-up and wake-up irq if argument is set to
1519 * "enable", disable low-power wake-up and wake-up irq otherwise
1520 */
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001521 if (enable) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001522 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_UESM);
Erwan Le Ray12761862021-03-04 17:23:01 +01001523 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_WUFIE);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001524 } else {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001525 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_UESM);
Erwan Le Ray12761862021-03-04 17:23:01 +01001526 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001527 }
1528}
1529
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001530static int __maybe_unused stm32_usart_serial_suspend(struct device *dev)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001531{
1532 struct uart_port *port = dev_get_drvdata(dev);
1533
1534 uart_suspend_port(&stm32_usart_driver, port);
1535
Erwan Le Ray1631eee2021-03-19 19:42:49 +01001536 if (device_may_wakeup(dev) || device_wakeup_path(dev))
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001537 stm32_usart_serial_en_wakeup(port, true);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001538
Erwan Le Ray55484fc2020-05-19 11:41:04 +02001539 /*
1540 * When "no_console_suspend" is enabled, keep the pinctrl default state
1541 * and rely on bootloader stage to restore this state upon resume.
1542 * Otherwise, apply the idle or sleep states depending on wakeup
1543 * capabilities.
1544 */
1545 if (console_suspend_enabled || !uart_console(port)) {
Erwan Le Ray1631eee2021-03-19 19:42:49 +01001546 if (device_may_wakeup(dev) || device_wakeup_path(dev))
Erwan Le Ray55484fc2020-05-19 11:41:04 +02001547 pinctrl_pm_select_idle_state(dev);
1548 else
1549 pinctrl_pm_select_sleep_state(dev);
1550 }
Erwan Le Ray94616d92019-06-13 15:49:53 +02001551
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001552 return 0;
1553}
1554
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001555static int __maybe_unused stm32_usart_serial_resume(struct device *dev)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001556{
1557 struct uart_port *port = dev_get_drvdata(dev);
1558
Erwan Le Ray94616d92019-06-13 15:49:53 +02001559 pinctrl_pm_select_default_state(dev);
1560
Erwan Le Ray1631eee2021-03-19 19:42:49 +01001561 if (device_may_wakeup(dev) || device_wakeup_path(dev))
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001562 stm32_usart_serial_en_wakeup(port, false);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001563
1564 return uart_resume_port(&stm32_usart_driver, port);
1565}
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001566
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001567static int __maybe_unused stm32_usart_runtime_suspend(struct device *dev)
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001568{
1569 struct uart_port *port = dev_get_drvdata(dev);
1570 struct stm32_port *stm32port = container_of(port,
1571 struct stm32_port, port);
1572
1573 clk_disable_unprepare(stm32port->clk);
1574
1575 return 0;
1576}
1577
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001578static int __maybe_unused stm32_usart_runtime_resume(struct device *dev)
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001579{
1580 struct uart_port *port = dev_get_drvdata(dev);
1581 struct stm32_port *stm32port = container_of(port,
1582 struct stm32_port, port);
1583
1584 return clk_prepare_enable(stm32port->clk);
1585}
1586
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001587static const struct dev_pm_ops stm32_serial_pm_ops = {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001588 SET_RUNTIME_PM_OPS(stm32_usart_runtime_suspend,
1589 stm32_usart_runtime_resume, NULL)
1590 SET_SYSTEM_SLEEP_PM_OPS(stm32_usart_serial_suspend,
1591 stm32_usart_serial_resume)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001592};
1593
Maxime Coquelin48a60922015-06-10 21:19:36 +02001594static struct platform_driver stm32_serial_driver = {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001595 .probe = stm32_usart_serial_probe,
1596 .remove = stm32_usart_serial_remove,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001597 .driver = {
1598 .name = DRIVER_NAME,
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001599 .pm = &stm32_serial_pm_ops,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001600 .of_match_table = of_match_ptr(stm32_match),
1601 },
1602};
1603
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001604static int __init stm32_usart_init(void)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001605{
1606 static char banner[] __initdata = "STM32 USART driver initialized";
1607 int ret;
1608
1609 pr_info("%s\n", banner);
1610
1611 ret = uart_register_driver(&stm32_usart_driver);
1612 if (ret)
1613 return ret;
1614
1615 ret = platform_driver_register(&stm32_serial_driver);
1616 if (ret)
1617 uart_unregister_driver(&stm32_usart_driver);
1618
1619 return ret;
1620}
1621
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001622static void __exit stm32_usart_exit(void)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001623{
1624 platform_driver_unregister(&stm32_serial_driver);
1625 uart_unregister_driver(&stm32_usart_driver);
1626}
1627
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001628module_init(stm32_usart_init);
1629module_exit(stm32_usart_exit);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001630
1631MODULE_ALIAS("platform:" DRIVER_NAME);
1632MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
1633MODULE_LICENSE("GPL v2");