blob: 9570002d07e751b27c23911a97b4682e0f47c945 [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 Ray33bb2f62021-10-20 17:03:31 +0200168static bool stm32_usart_rx_dma_enabled(struct uart_port *port)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200169{
170 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800171 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200172
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200173 if (!stm32_port->rx_ch)
174 return false;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200175
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200176 return !!(readl_relaxed(port->membase + ofs->cr3) & USART_CR3_DMAR);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200177}
178
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200179/* Return true when data is pending (in pio mode), and false when no data is pending. */
180static bool stm32_usart_pending_rx_pio(struct uart_port *port, u32 *sr)
181{
182 struct stm32_port *stm32_port = to_stm32_port(port);
183 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
184
185 *sr = readl_relaxed(port->membase + ofs->isr);
186 /* Get pending characters in RDR or FIFO */
187 if (*sr & USART_SR_RXNE) {
188 /* Get all pending characters from the RDR or the FIFO when using interrupts */
189 if (!stm32_usart_rx_dma_enabled(port))
190 return true;
191
192 /* Handle only RX data errors when using DMA */
193 if (*sr & USART_SR_ERR_MASK)
194 return true;
195 }
196
197 return false;
198}
199
200static unsigned long stm32_usart_get_char_pio(struct uart_port *port)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200201{
202 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800203 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200204 unsigned long c;
205
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200206 c = readl_relaxed(port->membase + ofs->rdr);
207 /* Apply RDR data mask */
208 c &= stm32_port->rdr_mask;
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200209
210 return c;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200211}
212
Erwan Le Ray6333a482021-10-25 15:42:29 +0200213static unsigned int stm32_usart_receive_chars_pio(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200214{
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;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200217 unsigned long c;
Erwan Le Ray6333a482021-10-25 15:42:29 +0200218 unsigned int size = 0;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200219 u32 sr;
220 char flag;
221
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200222 while (stm32_usart_pending_rx_pio(port, &sr)) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200223 sr |= USART_SR_DUMMY_RX;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200224 flag = TTY_NORMAL;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200225
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200226 /*
227 * Status bits has to be cleared before reading the RDR:
228 * In FIFO mode, reading the RDR will pop the next data
229 * (if any) along with its status bits into the SR.
230 * Not doing so leads to misalignement between RDR and SR,
231 * and clear status bits of the next rx data.
232 *
233 * Clear errors flags for stm32f7 and stm32h7 compatible
234 * devices. On stm32f4 compatible devices, the error bit is
235 * cleared by the sequence [read SR - read DR].
236 */
237 if ((sr & USART_SR_ERR_MASK) && ofs->icr != UNDEF_REG)
Fabrice Gasnier1250ed72019-11-21 09:10:49 +0100238 writel_relaxed(sr & USART_SR_ERR_MASK,
239 port->membase + ofs->icr);
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200240
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200241 c = stm32_usart_get_char_pio(port);
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200242 port->icount.rx++;
Erwan Le Ray6333a482021-10-25 15:42:29 +0200243 size++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200244 if (sr & USART_SR_ERR_MASK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200245 if (sr & USART_SR_ORE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200246 port->icount.overrun++;
247 } else if (sr & USART_SR_PE) {
248 port->icount.parity++;
249 } else if (sr & USART_SR_FE) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200250 /* Break detection if character is null */
251 if (!c) {
252 port->icount.brk++;
253 if (uart_handle_break(port))
254 continue;
255 } else {
256 port->icount.frame++;
257 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200258 }
259
260 sr &= port->read_status_mask;
261
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200262 if (sr & USART_SR_PE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200263 flag = TTY_PARITY;
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200264 } else if (sr & USART_SR_FE) {
265 if (!c)
266 flag = TTY_BREAK;
267 else
268 flag = TTY_FRAME;
269 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200270 }
271
Johan Hovoldcea37af2021-04-16 16:05:57 +0200272 if (uart_prepare_sysrq_char(port, c))
Maxime Coquelin48a60922015-06-10 21:19:36 +0200273 continue;
274 uart_insert_char(port, sr, USART_SR_ORE, c, flag);
275 }
Erwan Le Ray6333a482021-10-25 15:42:29 +0200276
277 return size;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200278}
279
280static void stm32_usart_push_buffer_dma(struct uart_port *port, unsigned int dma_size)
281{
282 struct stm32_port *stm32_port = to_stm32_port(port);
283 struct tty_port *ttyport = &stm32_port->port.state->port;
284 unsigned char *dma_start;
285 int dma_count, i;
286
287 dma_start = stm32_port->rx_buf + (RX_BUF_L - stm32_port->last_res);
288
289 /*
290 * Apply rdr_mask on buffer in order to mask parity bit.
291 * This loop is useless in cs8 mode because DMA copies only
292 * 8 bits and already ignores parity bit.
293 */
294 if (!(stm32_port->rdr_mask == (BIT(8) - 1)))
295 for (i = 0; i < dma_size; i++)
296 *(dma_start + i) &= stm32_port->rdr_mask;
297
298 dma_count = tty_insert_flip_string(ttyport, dma_start, dma_size);
299 port->icount.rx += dma_count;
300 if (dma_count != dma_size)
301 port->icount.buf_overrun++;
302 stm32_port->last_res -= dma_count;
303 if (stm32_port->last_res == 0)
304 stm32_port->last_res = RX_BUF_L;
305}
306
Erwan Le Ray6333a482021-10-25 15:42:29 +0200307static unsigned int stm32_usart_receive_chars_dma(struct uart_port *port)
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200308{
309 struct stm32_port *stm32_port = to_stm32_port(port);
Erwan Le Ray6333a482021-10-25 15:42:29 +0200310 unsigned int dma_size, size = 0;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200311
312 /* DMA buffer is configured in cyclic mode and handles the rollback of the buffer. */
313 if (stm32_port->rx_dma_state.residue > stm32_port->last_res) {
314 /* Conditional first part: from last_res to end of DMA buffer */
315 dma_size = stm32_port->last_res;
316 stm32_usart_push_buffer_dma(port, dma_size);
Erwan Le Ray6333a482021-10-25 15:42:29 +0200317 size = dma_size;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200318 }
319
320 dma_size = stm32_port->last_res - stm32_port->rx_dma_state.residue;
321 stm32_usart_push_buffer_dma(port, dma_size);
Erwan Le Ray6333a482021-10-25 15:42:29 +0200322 size += dma_size;
323
324 return size;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200325}
326
Erwan Le Ray6333a482021-10-25 15:42:29 +0200327static unsigned int stm32_usart_receive_chars(struct uart_port *port, bool force_dma_flush)
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200328{
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200329 struct stm32_port *stm32_port = to_stm32_port(port);
330 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
331 enum dma_status rx_dma_status;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200332 u32 sr;
Erwan Le Ray6333a482021-10-25 15:42:29 +0200333 unsigned int size = 0;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200334
Erwan Le Ray6333a482021-10-25 15:42:29 +0200335 if (stm32_usart_rx_dma_enabled(port) || force_dma_flush) {
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200336 rx_dma_status = dmaengine_tx_status(stm32_port->rx_ch,
337 stm32_port->rx_ch->cookie,
338 &stm32_port->rx_dma_state);
339 if (rx_dma_status == DMA_IN_PROGRESS) {
340 /* Empty DMA buffer */
Erwan Le Ray6333a482021-10-25 15:42:29 +0200341 size = stm32_usart_receive_chars_dma(port);
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200342 sr = readl_relaxed(port->membase + ofs->isr);
343 if (sr & USART_SR_ERR_MASK) {
344 /* Disable DMA request line */
345 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
346
347 /* Switch to PIO mode to handle the errors */
Erwan Le Ray6333a482021-10-25 15:42:29 +0200348 size += stm32_usart_receive_chars_pio(port);
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200349
350 /* Switch back to DMA mode */
351 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAR);
352 }
353 } else {
354 /* Disable RX DMA */
355 dmaengine_terminate_async(stm32_port->rx_ch);
356 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
357 /* Fall back to interrupt mode */
358 dev_dbg(port->dev, "DMA error, fallback to irq mode\n");
Erwan Le Ray6333a482021-10-25 15:42:29 +0200359 size = stm32_usart_receive_chars_pio(port);
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200360 }
361 } else {
Erwan Le Ray6333a482021-10-25 15:42:29 +0200362 size = stm32_usart_receive_chars_pio(port);
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200363 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200364
Erwan Le Ray6333a482021-10-25 15:42:29 +0200365 return size;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200366}
367
Valentin Caron9a135f12022-01-04 19:24:43 +0100368static void stm32_usart_tx_dma_terminate(struct stm32_port *stm32_port)
369{
370 dmaengine_terminate_async(stm32_port->tx_ch);
371 stm32_port->tx_dma_busy = false;
372}
373
374static bool stm32_usart_tx_dma_started(struct stm32_port *stm32_port)
375{
376 /*
377 * We cannot use the function "dmaengine_tx_status" to know the
378 * status of DMA. This function does not show if the "dma complete"
379 * callback of the DMA transaction has been called. So we prefer
380 * to use "tx_dma_busy" flag to prevent dual DMA transaction at the
381 * same time.
382 */
383 return stm32_port->tx_dma_busy;
384}
385
386static bool stm32_usart_tx_dma_enabled(struct stm32_port *stm32_port)
387{
388 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
389
390 return !!(readl_relaxed(stm32_port->port.membase + ofs->cr3) & USART_CR3_DMAT);
391}
392
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100393static void stm32_usart_tx_dma_complete(void *arg)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200394{
395 struct uart_port *port = arg;
396 struct stm32_port *stm32port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800397 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Erwan Le Rayf16b90c2021-03-04 17:23:04 +0100398 unsigned long flags;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200399
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100400 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Valentin Caron9a135f12022-01-04 19:24:43 +0100401 stm32_usart_tx_dma_terminate(stm32port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200402
403 /* Let's see if we have pending data to send */
Erwan Le Rayf16b90c2021-03-04 17:23:04 +0100404 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100405 stm32_usart_transmit_chars(port);
Erwan Le Rayf16b90c2021-03-04 17:23:04 +0100406 spin_unlock_irqrestore(&port->lock, flags);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200407}
408
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100409static void stm32_usart_tx_interrupt_enable(struct uart_port *port)
Erwan Le Rayd0757192019-06-18 12:02:24 +0200410{
411 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800412 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200413
414 /*
415 * Enables TX FIFO threashold irq when FIFO is enabled,
416 * or TX empty irq when FIFO is disabled
417 */
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200418 if (stm32_port->fifoen && stm32_port->txftcfg >= 0)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100419 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_TXFTIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200420 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100421 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200422}
423
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200424static void stm32_usart_rx_dma_complete(void *arg)
425{
426 struct uart_port *port = arg;
Erwan Le Ray6333a482021-10-25 15:42:29 +0200427 struct tty_port *tport = &port->state->port;
428 unsigned int size;
429 unsigned long flags;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200430
Erwan Le Ray6333a482021-10-25 15:42:29 +0200431 spin_lock_irqsave(&port->lock, flags);
432 size = stm32_usart_receive_chars(port, false);
433 uart_unlock_and_check_sysrq_irqrestore(port, flags);
434 if (size)
435 tty_flip_buffer_push(tport);
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200436}
437
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100438static void stm32_usart_tx_interrupt_disable(struct uart_port *port)
Erwan Le Rayd0757192019-06-18 12:02:24 +0200439{
440 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800441 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200442
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +0200443 if (stm32_port->fifoen && stm32_port->txftcfg >= 0)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100444 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200445 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100446 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200447}
448
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100449static void stm32_usart_transmit_chars_pio(struct uart_port *port)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200450{
451 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800452 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200453 struct circ_buf *xmit = &port->state->xmit;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200454
Valentin Caron9a135f12022-01-04 19:24:43 +0100455 if (stm32_usart_tx_dma_enabled(stm32_port))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100456 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200457
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200458 while (!uart_circ_empty(xmit)) {
459 /* Check that TDR is empty before filling FIFO */
460 if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
461 break;
462 writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
463 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
464 port->icount.tx++;
465 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200466
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200467 /* rely on TXE irq (mask or unmask) for sending remaining data */
468 if (uart_circ_empty(xmit))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100469 stm32_usart_tx_interrupt_disable(port);
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200470 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100471 stm32_usart_tx_interrupt_enable(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200472}
473
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100474static void stm32_usart_transmit_chars_dma(struct uart_port *port)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200475{
476 struct stm32_port *stm32port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800477 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200478 struct circ_buf *xmit = &port->state->xmit;
479 struct dma_async_tx_descriptor *desc = NULL;
Valentin Caron195437d2022-01-04 19:24:45 +0100480 unsigned int count;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200481
Valentin Caron9a135f12022-01-04 19:24:43 +0100482 if (stm32_usart_tx_dma_started(stm32port)) {
483 if (!stm32_usart_tx_dma_enabled(stm32port))
484 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200485 return;
Valentin Caron9a135f12022-01-04 19:24:43 +0100486 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200487
488 count = uart_circ_chars_pending(xmit);
489
490 if (count > TX_BUF_L)
491 count = TX_BUF_L;
492
493 if (xmit->tail < xmit->head) {
494 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
495 } else {
496 size_t one = UART_XMIT_SIZE - xmit->tail;
497 size_t two;
498
499 if (one > count)
500 one = count;
501 two = count - one;
502
503 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
504 if (two)
505 memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
506 }
507
508 desc = dmaengine_prep_slave_single(stm32port->tx_ch,
509 stm32port->tx_dma_buf,
510 count,
511 DMA_MEM_TO_DEV,
512 DMA_PREP_INTERRUPT);
513
Erwan Le Raye7997f72021-01-06 17:21:56 +0100514 if (!desc)
515 goto fallback_err;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200516
Valentin Caron9a135f12022-01-04 19:24:43 +0100517 /*
518 * Set "tx_dma_busy" flag. This flag will be released when
519 * dmaengine_terminate_async will be called. This flag helps
520 * transmit_chars_dma not to start another DMA transaction
521 * if the callback of the previous is not yet called.
522 */
523 stm32port->tx_dma_busy = true;
524
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100525 desc->callback = stm32_usart_tx_dma_complete;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200526 desc->callback_param = port;
527
528 /* Push current DMA TX transaction in the pending queue */
Erwan Le Raye7997f72021-01-06 17:21:56 +0100529 if (dma_submit_error(dmaengine_submit(desc))) {
530 /* dma no yet started, safe to free resources */
Valentin Caron9a135f12022-01-04 19:24:43 +0100531 stm32_usart_tx_dma_terminate(stm32port);
Erwan Le Raye7997f72021-01-06 17:21:56 +0100532 goto fallback_err;
533 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200534
535 /* Issue pending DMA TX requests */
536 dma_async_issue_pending(stm32port->tx_ch);
537
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100538 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200539
540 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
541 port->icount.tx += count;
Erwan Le Raye7997f72021-01-06 17:21:56 +0100542 return;
543
544fallback_err:
Valentin Caron195437d2022-01-04 19:24:45 +0100545 stm32_usart_transmit_chars_pio(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200546}
547
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100548static void stm32_usart_transmit_chars(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200549{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200550 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800551 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200552 struct circ_buf *xmit = &port->state->xmit;
Valentin Carond3d079b2022-01-11 17:44:40 +0100553 u32 isr;
554 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200555
556 if (port->x_char) {
Valentin Caron9a135f12022-01-04 19:24:43 +0100557 if (stm32_usart_tx_dma_started(stm32_port) &&
558 stm32_usart_tx_dma_enabled(stm32_port))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100559 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Valentin Carond3d079b2022-01-11 17:44:40 +0100560
561 /* Check that TDR is empty before filling FIFO */
562 ret =
563 readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
564 isr,
565 (isr & USART_SR_TXE),
566 10, 1000);
567 if (ret)
568 dev_warn(port->dev, "1 character may be erased\n");
569
Alexandre TORGUEada86182016-09-15 18:42:33 +0200570 writel_relaxed(port->x_char, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200571 port->x_char = 0;
572 port->icount.tx++;
Valentin Caron9a135f12022-01-04 19:24:43 +0100573 if (stm32_usart_tx_dma_started(stm32_port))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100574 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200575 return;
576 }
577
Erwan Le Rayb83b9572019-05-21 17:45:44 +0200578 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100579 stm32_usart_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200580 return;
581 }
582
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200583 if (ofs->icr == UNDEF_REG)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100584 stm32_usart_clr_bits(port, ofs->isr, USART_SR_TC);
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200585 else
Fabrice Gasnier1250ed72019-11-21 09:10:49 +0100586 writel_relaxed(USART_ICR_TCCF, port->membase + ofs->icr);
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200587
Alexandre TORGUE34891872016-09-15 18:42:40 +0200588 if (stm32_port->tx_ch)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100589 stm32_usart_transmit_chars_dma(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200590 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100591 stm32_usart_transmit_chars_pio(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200592
593 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
594 uart_write_wakeup(port);
595
596 if (uart_circ_empty(xmit))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100597 stm32_usart_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200598}
599
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100600static irqreturn_t stm32_usart_interrupt(int irq, void *ptr)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200601{
602 struct uart_port *port = ptr;
Erwan Le Ray12761862021-03-04 17:23:01 +0100603 struct tty_port *tport = &port->state->port;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200604 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800605 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200606 u32 sr;
Erwan Le Ray6333a482021-10-25 15:42:29 +0200607 unsigned int size;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200608
Alexandre TORGUEada86182016-09-15 18:42:33 +0200609 sr = readl_relaxed(port->membase + ofs->isr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200610
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200611 if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG)
612 writel_relaxed(USART_ICR_RTOCF,
613 port->membase + ofs->icr);
614
Erwan Le Ray12761862021-03-04 17:23:01 +0100615 if ((sr & USART_SR_WUF) && ofs->icr != UNDEF_REG) {
616 /* Clear wake up flag and disable wake up interrupt */
Fabrice Gasnier270e5a72017-07-13 15:08:30 +0000617 writel_relaxed(USART_ICR_WUCF,
618 port->membase + ofs->icr);
Erwan Le Ray12761862021-03-04 17:23:01 +0100619 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE);
620 if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
621 pm_wakeup_event(tport->tty->dev, 0);
622 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +0000623
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200624 /*
625 * rx errors in dma mode has to be handled ASAP to avoid overrun as the DMA request
626 * line has been masked by HW and rx data are stacking in FIFO.
627 */
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200628 if (!stm32_port->throttled) {
629 if (((sr & USART_SR_RXNE) && !stm32_usart_rx_dma_enabled(port)) ||
630 ((sr & USART_SR_ERR_MASK) && stm32_usart_rx_dma_enabled(port))) {
Erwan Le Ray6333a482021-10-25 15:42:29 +0200631 spin_lock(&port->lock);
632 size = stm32_usart_receive_chars(port, false);
633 uart_unlock_and_check_sysrq(port);
634 if (size)
635 tty_flip_buffer_push(tport);
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200636 }
637 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200638
Erwan Le Rayad767682021-03-04 17:23:00 +0100639 if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch)) {
640 spin_lock(&port->lock);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100641 stm32_usart_transmit_chars(port);
Erwan Le Rayad767682021-03-04 17:23:00 +0100642 spin_unlock(&port->lock);
643 }
Alexandre TORGUE01d32d72016-09-15 18:42:41 +0200644
Erwan Le Ray33bb2f62021-10-20 17:03:31 +0200645 if (stm32_usart_rx_dma_enabled(port))
Alexandre TORGUE34891872016-09-15 18:42:40 +0200646 return IRQ_WAKE_THREAD;
647 else
648 return IRQ_HANDLED;
649}
650
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100651static irqreturn_t stm32_usart_threaded_interrupt(int irq, void *ptr)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200652{
653 struct uart_port *port = ptr;
Erwan Le Ray6333a482021-10-25 15:42:29 +0200654 struct tty_port *tport = &port->state->port;
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200655 struct stm32_port *stm32_port = to_stm32_port(port);
Erwan Le Ray6333a482021-10-25 15:42:29 +0200656 unsigned int size;
657 unsigned long flags;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200658
Erwan Le Raycc58d0a2021-10-20 17:03:30 +0200659 /* Receiver timeout irq for DMA RX */
Erwan Le Ray6333a482021-10-25 15:42:29 +0200660 if (!stm32_port->throttled) {
661 spin_lock_irqsave(&port->lock, flags);
662 size = stm32_usart_receive_chars(port, false);
663 uart_unlock_and_check_sysrq_irqrestore(port, flags);
664 if (size)
665 tty_flip_buffer_push(tport);
666 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200667
Maxime Coquelin48a60922015-06-10 21:19:36 +0200668 return IRQ_HANDLED;
669}
670
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100671static unsigned int stm32_usart_tx_empty(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200672{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200673 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800674 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200675
Erwan Le Ray3db1d522021-03-04 17:23:07 +0100676 if (readl_relaxed(port->membase + ofs->isr) & USART_SR_TC)
677 return TIOCSER_TEMT;
678
679 return 0;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200680}
681
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100682static void stm32_usart_set_mctrl(struct uart_port *port, unsigned int mctrl)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200683{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200684 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800685 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200686
Maxime Coquelin48a60922015-06-10 21:19:36 +0200687 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100688 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_RTSE);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200689 else
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100690 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530691
692 mctrl_gpio_set(stm32_port->gpios, mctrl);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200693}
694
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100695static unsigned int stm32_usart_get_mctrl(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200696{
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530697 struct stm32_port *stm32_port = to_stm32_port(port);
698 unsigned int ret;
699
Maxime Coquelin48a60922015-06-10 21:19:36 +0200700 /* This routine is used to get signals of: DCD, DSR, RI, and CTS */
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530701 ret = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
702
703 return mctrl_gpio_get(stm32_port->gpios, &ret);
704}
705
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100706static void stm32_usart_enable_ms(struct uart_port *port)
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530707{
708 mctrl_gpio_enable_ms(to_stm32_port(port)->gpios);
709}
710
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100711static void stm32_usart_disable_ms(struct uart_port *port)
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530712{
713 mctrl_gpio_disable_ms(to_stm32_port(port)->gpios);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200714}
715
716/* Transmit stop */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100717static void stm32_usart_stop_tx(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200718{
Marek Vasutad0c2742020-08-31 19:10:45 +0200719 struct stm32_port *stm32_port = to_stm32_port(port);
720 struct serial_rs485 *rs485conf = &port->rs485;
Valentin Caron2a3bcfe2022-01-04 19:24:44 +0100721 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Marek Vasutad0c2742020-08-31 19:10:45 +0200722
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100723 stm32_usart_tx_interrupt_disable(port);
Valentin Caron2a3bcfe2022-01-04 19:24:44 +0100724 if (stm32_usart_tx_dma_started(stm32_port) && stm32_usart_tx_dma_enabled(stm32_port))
725 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Marek Vasutad0c2742020-08-31 19:10:45 +0200726
727 if (rs485conf->flags & SER_RS485_ENABLED) {
728 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
729 mctrl_gpio_set(stm32_port->gpios,
730 stm32_port->port.mctrl & ~TIOCM_RTS);
731 } else {
732 mctrl_gpio_set(stm32_port->gpios,
733 stm32_port->port.mctrl | TIOCM_RTS);
734 }
735 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200736}
737
738/* There are probably characters waiting to be transmitted. */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100739static void stm32_usart_start_tx(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200740{
Marek Vasutad0c2742020-08-31 19:10:45 +0200741 struct stm32_port *stm32_port = to_stm32_port(port);
742 struct serial_rs485 *rs485conf = &port->rs485;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200743 struct circ_buf *xmit = &port->state->xmit;
744
Valentin Caron037b91e2022-01-11 17:44:41 +0100745 if (uart_circ_empty(xmit) && !port->x_char)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200746 return;
747
Marek Vasutad0c2742020-08-31 19:10:45 +0200748 if (rs485conf->flags & SER_RS485_ENABLED) {
749 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
750 mctrl_gpio_set(stm32_port->gpios,
751 stm32_port->port.mctrl | TIOCM_RTS);
752 } else {
753 mctrl_gpio_set(stm32_port->gpios,
754 stm32_port->port.mctrl & ~TIOCM_RTS);
755 }
756 }
757
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100758 stm32_usart_transmit_chars(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200759}
760
Erwan Le Ray3d82be82021-03-04 17:23:08 +0100761/* Flush the transmit buffer. */
762static void stm32_usart_flush_buffer(struct uart_port *port)
763{
764 struct stm32_port *stm32_port = to_stm32_port(port);
765 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
766
767 if (stm32_port->tx_ch) {
Valentin Caron9a135f12022-01-04 19:24:43 +0100768 stm32_usart_tx_dma_terminate(stm32_port);
Erwan Le Ray3d82be82021-03-04 17:23:08 +0100769 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Erwan Le Ray3d82be82021-03-04 17:23:08 +0100770 }
771}
772
Maxime Coquelin48a60922015-06-10 21:19:36 +0200773/* Throttle the remote when input buffer is about to overflow. */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100774static void stm32_usart_throttle(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200775{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200776 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800777 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200778 unsigned long flags;
779
780 spin_lock_irqsave(&port->lock, flags);
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200781
782 /*
783 * Disable DMA request line if enabled, so the RX data gets queued into the FIFO.
784 * Hardware flow control is triggered when RX FIFO is full.
785 */
786 if (stm32_usart_rx_dma_enabled(port))
787 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
788
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100789 stm32_usart_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200790 if (stm32_port->cr3_irq)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100791 stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200792
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200793 stm32_port->throttled = true;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200794 spin_unlock_irqrestore(&port->lock, flags);
795}
796
797/* Unthrottle the remote, the input buffer can now accept data. */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100798static void stm32_usart_unthrottle(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200799{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200800 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800801 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200802 unsigned long flags;
803
804 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100805 stm32_usart_set_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200806 if (stm32_port->cr3_irq)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100807 stm32_usart_set_bits(port, ofs->cr3, stm32_port->cr3_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200808
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200809 /*
810 * Switch back to DMA mode (re-enable DMA request line).
811 * Hardware flow control is stopped when FIFO is not full any more.
812 */
813 if (stm32_port->rx_ch)
814 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAR);
815
816 stm32_port->throttled = false;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200817 spin_unlock_irqrestore(&port->lock, flags);
818}
819
820/* Receive stop */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100821static void stm32_usart_stop_rx(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200822{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200823 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800824 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200825
Erwan Le Raye0abc902021-10-25 15:42:27 +0200826 /* Disable DMA request line. */
827 if (stm32_port->rx_ch)
828 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
829
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100830 stm32_usart_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200831 if (stm32_port->cr3_irq)
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100832 stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200833}
834
835/* Handle breaks - ignored by us */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100836static void stm32_usart_break_ctl(struct uart_port *port, int break_state)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200837{
838}
839
Erwan Le Ray6eeb3482021-10-25 15:42:28 +0200840static int stm32_usart_start_rx_dma_cyclic(struct uart_port *port)
841{
842 struct stm32_port *stm32_port = to_stm32_port(port);
843 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
844 struct dma_async_tx_descriptor *desc;
845 int ret;
846
847 stm32_port->last_res = RX_BUF_L;
848 /* Prepare a DMA cyclic transaction */
849 desc = dmaengine_prep_dma_cyclic(stm32_port->rx_ch,
850 stm32_port->rx_dma_buf,
851 RX_BUF_L, RX_BUF_P,
852 DMA_DEV_TO_MEM,
853 DMA_PREP_INTERRUPT);
854 if (!desc) {
855 dev_err(port->dev, "rx dma prep cyclic failed\n");
856 return -ENODEV;
857 }
858
859 desc->callback = stm32_usart_rx_dma_complete;
860 desc->callback_param = port;
861
862 /* Push current DMA transaction in the pending queue */
863 ret = dma_submit_error(dmaengine_submit(desc));
864 if (ret) {
865 dmaengine_terminate_sync(stm32_port->rx_ch);
866 return ret;
867 }
868
869 /* Issue pending DMA requests */
870 dma_async_issue_pending(stm32_port->rx_ch);
871
872 /*
873 * DMA request line not re-enabled at resume when port is throttled.
874 * It will be re-enabled by unthrottle ops.
875 */
876 if (!stm32_port->throttled)
877 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAR);
878
879 return 0;
880}
881
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100882static int stm32_usart_startup(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200883{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200884 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800885 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayf4518a82021-03-04 17:22:57 +0100886 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200887 const char *name = to_platform_device(port->dev)->name;
888 u32 val;
889 int ret;
890
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100891 ret = request_threaded_irq(port->irq, stm32_usart_interrupt,
892 stm32_usart_threaded_interrupt,
Johan Hovolde359b442021-04-16 16:05:56 +0200893 IRQF_ONESHOT | IRQF_NO_SUSPEND,
894 name, port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200895 if (ret)
896 return ret;
897
Martin Devera3cd66592021-03-28 17:43:06 +0200898 if (stm32_port->swap) {
899 val = readl_relaxed(port->membase + ofs->cr2);
900 val |= USART_CR2_SWAP;
901 writel_relaxed(val, port->membase + ofs->cr2);
902 }
903
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200904 /* RX FIFO Flush */
905 if (ofs->rqr != UNDEF_REG)
Erwan Le Ray315e2d82021-03-04 17:23:05 +0100906 writel_relaxed(USART_RQR_RXFRQ, port->membase + ofs->rqr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200907
Erwan Le Raye0abc902021-10-25 15:42:27 +0200908 if (stm32_port->rx_ch) {
Erwan Le Ray6eeb3482021-10-25 15:42:28 +0200909 ret = stm32_usart_start_rx_dma_cyclic(port);
Erwan Le Raye0abc902021-10-25 15:42:27 +0200910 if (ret) {
Erwan Le Ray6eeb3482021-10-25 15:42:28 +0200911 free_irq(port->irq, port);
912 return ret;
Erwan Le Raye0abc902021-10-25 15:42:27 +0200913 }
Erwan Le Raye0abc902021-10-25 15:42:27 +0200914 }
Erwan Le Rayd1ec8a22021-10-20 17:03:32 +0200915
Erwan Le Ray25a8e762021-03-04 17:22:59 +0100916 /* RX enabling */
Erwan Le Rayf4518a82021-03-04 17:22:57 +0100917 val = stm32_port->cr1_irq | USART_CR1_RE | BIT(cfg->uart_enable_bit);
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100918 stm32_usart_set_bits(port, ofs->cr1, val);
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200919
Maxime Coquelin48a60922015-06-10 21:19:36 +0200920 return 0;
921}
922
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100923static void stm32_usart_shutdown(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200924{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200925 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800926 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
927 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200928 u32 val, isr;
929 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200930
Valentin Caron9a135f12022-01-04 19:24:43 +0100931 if (stm32_usart_tx_dma_enabled(stm32_port))
Valentin Caron56a23f92022-01-04 19:24:42 +0100932 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Valentin Caron9a135f12022-01-04 19:24:43 +0100933
934 if (stm32_usart_tx_dma_started(stm32_port))
935 stm32_usart_tx_dma_terminate(stm32_port);
Valentin Caron56a23f92022-01-04 19:24:42 +0100936
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530937 /* Disable modem control interrupts */
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100938 stm32_usart_disable_ms(port);
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530939
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200940 val = USART_CR1_TXEIE | USART_CR1_TE;
941 val |= stm32_port->cr1_irq | USART_CR1_RE;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +0200942 val |= BIT(cfg->uart_enable_bit);
Gerald Baeza351a7622017-07-13 15:08:30 +0000943 if (stm32_port->fifoen)
944 val |= USART_CR1_FIFOEN;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200945
946 ret = readl_relaxed_poll_timeout(port->membase + ofs->isr,
947 isr, (isr & USART_SR_TC),
948 10, 100000);
949
Erwan Le Rayc31c3ea2021-01-06 17:22:03 +0100950 /* Send the TC error message only when ISR_TC is not set */
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200951 if (ret)
Erwan Le Rayc31c3ea2021-01-06 17:22:03 +0100952 dev_err(port->dev, "Transmission is not complete\n");
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200953
Erwan Le Raye0abc902021-10-25 15:42:27 +0200954 /* Disable RX DMA. */
955 if (stm32_port->rx_ch)
956 dmaengine_terminate_async(stm32_port->rx_ch);
957
Erwan Le Ray9f77d192021-03-04 17:23:06 +0100958 /* flush RX & TX FIFO */
959 if (ofs->rqr != UNDEF_REG)
960 writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ,
961 port->membase + ofs->rqr);
962
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100963 stm32_usart_clr_bits(port, ofs->cr1, val);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200964
965 free_irq(port->irq, port);
966}
967
Erwan Le Ray56f9a762021-01-06 17:21:58 +0100968static void stm32_usart_set_termios(struct uart_port *port,
969 struct ktermios *termios,
970 struct ktermios *old)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200971{
972 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800973 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
974 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Bich HEMON1bcda092018-03-12 09:50:05 +0000975 struct serial_rs485 *rs485conf = &port->rs485;
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200976 unsigned int baud, bits;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200977 u32 usartdiv, mantissa, fraction, oversampling;
978 tcflag_t cflag = termios->c_cflag;
Erwan Le Rayf264c6f2021-03-04 17:22:58 +0100979 u32 cr1, cr2, cr3, isr;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200980 unsigned long flags;
Erwan Le Rayf264c6f2021-03-04 17:22:58 +0100981 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200982
983 if (!stm32_port->hw_flow_control)
984 cflag &= ~CRTSCTS;
985
986 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
987
988 spin_lock_irqsave(&port->lock, flags);
989
Erwan Le Rayf264c6f2021-03-04 17:22:58 +0100990 ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
991 isr,
992 (isr & USART_SR_TC),
993 10, 100000);
994
995 /* Send the TC error message only when ISR_TC is not set. */
996 if (ret)
997 dev_err(port->dev, "Transmission is not complete\n");
998
Maxime Coquelin48a60922015-06-10 21:19:36 +0200999 /* Stop serial port and reset value */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001000 writel_relaxed(0, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001001
Erwan Le Ray84872dc2019-06-18 12:02:26 +02001002 /* flush RX & TX FIFO */
1003 if (ofs->rqr != UNDEF_REG)
Erwan Le Ray315e2d82021-03-04 17:23:05 +01001004 writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ,
1005 port->membase + ofs->rqr);
Bich HEMON1bcda092018-03-12 09:50:05 +00001006
Erwan Le Ray84872dc2019-06-18 12:02:26 +02001007 cr1 = USART_CR1_TE | USART_CR1_RE;
Gerald Baeza351a7622017-07-13 15:08:30 +00001008 if (stm32_port->fifoen)
1009 cr1 |= USART_CR1_FIFOEN;
Martin Devera3cd66592021-03-28 17:43:06 +02001010 cr2 = stm32_port->swap ? USART_CR2_SWAP : 0;
Erwan Le Ray25a8e762021-03-04 17:22:59 +01001011
1012 /* Tx and RX FIFO configuration */
Erwan Le Rayd0757192019-06-18 12:02:24 +02001013 cr3 = readl_relaxed(port->membase + ofs->cr3);
Erwan Le Ray25a8e762021-03-04 17:22:59 +01001014 cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTIE;
1015 if (stm32_port->fifoen) {
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +02001016 if (stm32_port->txftcfg >= 0)
1017 cr3 |= stm32_port->txftcfg << USART_CR3_TXFTCFG_SHIFT;
1018 if (stm32_port->rxftcfg >= 0)
1019 cr3 |= stm32_port->rxftcfg << USART_CR3_RXFTCFG_SHIFT;
Erwan Le Ray25a8e762021-03-04 17:22:59 +01001020 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001021
1022 if (cflag & CSTOPB)
1023 cr2 |= USART_CR2_STOP_2B;
1024
Jiri Slaby3ec2ff32021-06-10 11:02:47 +02001025 bits = tty_get_char_size(cflag);
Erwan Le Ray6c5962f2019-05-21 17:45:43 +02001026 stm32_port->rdr_mask = (BIT(bits) - 1);
Erwan Le Rayc8a9d042019-05-21 17:45:41 +02001027
Maxime Coquelin48a60922015-06-10 21:19:36 +02001028 if (cflag & PARENB) {
Erwan Le Rayc8a9d042019-05-21 17:45:41 +02001029 bits++;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001030 cr1 |= USART_CR1_PCE;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001031 }
1032
Erwan Le Rayc8a9d042019-05-21 17:45:41 +02001033 /*
1034 * Word length configuration:
1035 * CS8 + parity, 9 bits word aka [M1:M0] = 0b01
1036 * CS7 or (CS6 + parity), 7 bits word aka [M1:M0] = 0b10
1037 * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00
1038 * M0 and M1 already cleared by cr1 initialization.
1039 */
1040 if (bits == 9)
1041 cr1 |= USART_CR1_M0;
1042 else if ((bits == 7) && cfg->has_7bits_data)
1043 cr1 |= USART_CR1_M1;
1044 else if (bits != 8)
1045 dev_dbg(port->dev, "Unsupported data bits config: %u bits\n"
1046 , bits);
1047
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001048 if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch ||
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +02001049 (stm32_port->fifoen &&
1050 stm32_port->rxftcfg >= 0))) {
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001051 if (cflag & CSTOPB)
1052 bits = bits + 3; /* 1 start bit + 2 stop bits */
1053 else
1054 bits = bits + 2; /* 1 start bit + 1 stop bit */
1055
1056 /* RX timeout irq to occur after last stop bit + bits */
1057 stm32_port->cr1_irq = USART_CR1_RTOIE;
1058 writel_relaxed(bits, port->membase + ofs->rtor);
1059 cr2 |= USART_CR2_RTOEN;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +02001060 /*
1061 * Enable fifo threshold irq in two cases, either when there is no DMA, or when
1062 * wake up over usart, from low power until the DMA gets re-enabled by resume.
1063 */
1064 stm32_port->cr3_irq = USART_CR3_RXFTIE;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001065 }
1066
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +02001067 cr1 |= stm32_port->cr1_irq;
1068 cr3 |= stm32_port->cr3_irq;
1069
Maxime Coquelin48a60922015-06-10 21:19:36 +02001070 if (cflag & PARODD)
1071 cr1 |= USART_CR1_PS;
1072
1073 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
1074 if (cflag & CRTSCTS) {
1075 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
Bich HEMON35abe982017-07-13 15:08:28 +00001076 cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001077 }
1078
1079 usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
1080
1081 /*
1082 * The USART supports 16 or 8 times oversampling.
1083 * By default we prefer 16 times oversampling, so that the receiver
1084 * has a better tolerance to clock deviations.
1085 * 8 times oversampling is only used to achieve higher speeds.
1086 */
1087 if (usartdiv < 16) {
1088 oversampling = 8;
Bich HEMON1bcda092018-03-12 09:50:05 +00001089 cr1 |= USART_CR1_OVER8;
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001090 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001091 } else {
1092 oversampling = 16;
Bich HEMON1bcda092018-03-12 09:50:05 +00001093 cr1 &= ~USART_CR1_OVER8;
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001094 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001095 }
1096
1097 mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
1098 fraction = usartdiv % oversampling;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001099 writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001100
1101 uart_update_timeout(port, cflag, baud);
1102
1103 port->read_status_mask = USART_SR_ORE;
1104 if (termios->c_iflag & INPCK)
1105 port->read_status_mask |= USART_SR_PE | USART_SR_FE;
1106 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Erwan Le Ray4f01d832019-05-21 17:45:42 +02001107 port->read_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001108
1109 /* Characters to ignore */
1110 port->ignore_status_mask = 0;
1111 if (termios->c_iflag & IGNPAR)
1112 port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
1113 if (termios->c_iflag & IGNBRK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +02001114 port->ignore_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001115 /*
1116 * If we're ignoring parity and break indicators,
1117 * ignore overruns too (for real raw support).
1118 */
1119 if (termios->c_iflag & IGNPAR)
1120 port->ignore_status_mask |= USART_SR_ORE;
1121 }
1122
1123 /* Ignore all characters if CREAD is not set */
1124 if ((termios->c_cflag & CREAD) == 0)
1125 port->ignore_status_mask |= USART_SR_DUMMY_RX;
1126
Erwan Le Ray33bb2f62021-10-20 17:03:31 +02001127 if (stm32_port->rx_ch) {
1128 /*
1129 * Setup DMA to collect only valid data and enable error irqs.
1130 * This also enables break reception when using DMA.
1131 */
1132 cr1 |= USART_CR1_PEIE;
1133 cr3 |= USART_CR3_EIE;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001134 cr3 |= USART_CR3_DMAR;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +02001135 cr3 |= USART_CR3_DDRE;
1136 }
Alexandre TORGUE34891872016-09-15 18:42:40 +02001137
Bich HEMON1bcda092018-03-12 09:50:05 +00001138 if (rs485conf->flags & SER_RS485_ENABLED) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001139 stm32_usart_config_reg_rs485(&cr1, &cr3,
1140 rs485conf->delay_rts_before_send,
1141 rs485conf->delay_rts_after_send,
1142 baud);
Bich HEMON1bcda092018-03-12 09:50:05 +00001143 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
1144 cr3 &= ~USART_CR3_DEP;
1145 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
1146 } else {
1147 cr3 |= USART_CR3_DEP;
1148 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
1149 }
1150
1151 } else {
1152 cr3 &= ~(USART_CR3_DEM | USART_CR3_DEP);
1153 cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
1154 }
1155
Erwan Le Ray12761862021-03-04 17:23:01 +01001156 /* Configure wake up from low power on start bit detection */
Alexandre Torgue3d530012021-03-19 19:42:52 +01001157 if (stm32_port->wakeup_src) {
Erwan Le Ray12761862021-03-04 17:23:01 +01001158 cr3 &= ~USART_CR3_WUS_MASK;
1159 cr3 |= USART_CR3_WUS_START_BIT;
1160 }
1161
Alexandre TORGUEada86182016-09-15 18:42:33 +02001162 writel_relaxed(cr3, port->membase + ofs->cr3);
1163 writel_relaxed(cr2, port->membase + ofs->cr2);
1164 writel_relaxed(cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001165
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001166 stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +02001167 spin_unlock_irqrestore(&port->lock, flags);
Erwan Le Ray436c9792021-03-04 17:23:02 +01001168
1169 /* Handle modem control interrupts */
1170 if (UART_ENABLE_MS(port, termios->c_cflag))
1171 stm32_usart_enable_ms(port);
1172 else
1173 stm32_usart_disable_ms(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001174}
1175
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001176static const char *stm32_usart_type(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001177{
1178 return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
1179}
1180
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001181static void stm32_usart_release_port(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001182{
1183}
1184
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001185static int stm32_usart_request_port(struct uart_port *port)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001186{
1187 return 0;
1188}
1189
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001190static void stm32_usart_config_port(struct uart_port *port, int flags)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001191{
1192 if (flags & UART_CONFIG_TYPE)
1193 port->type = PORT_STM32;
1194}
1195
1196static int
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001197stm32_usart_verify_port(struct uart_port *port, struct serial_struct *ser)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001198{
1199 /* No user changeable parameters */
1200 return -EINVAL;
1201}
1202
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001203static void stm32_usart_pm(struct uart_port *port, unsigned int state,
1204 unsigned int oldstate)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001205{
1206 struct stm32_port *stm32port = container_of(port,
1207 struct stm32_port, port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001208 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
1209 const struct stm32_usart_config *cfg = &stm32port->info->cfg;
Johan Hovold18ee37e2021-05-19 11:25:41 +02001210 unsigned long flags;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001211
1212 switch (state) {
1213 case UART_PM_STATE_ON:
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001214 pm_runtime_get_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001215 break;
1216 case UART_PM_STATE_OFF:
1217 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001218 stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +02001219 spin_unlock_irqrestore(&port->lock, flags);
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001220 pm_runtime_put_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001221 break;
1222 }
1223}
1224
1225static const struct uart_ops stm32_uart_ops = {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001226 .tx_empty = stm32_usart_tx_empty,
1227 .set_mctrl = stm32_usart_set_mctrl,
1228 .get_mctrl = stm32_usart_get_mctrl,
1229 .stop_tx = stm32_usart_stop_tx,
1230 .start_tx = stm32_usart_start_tx,
1231 .throttle = stm32_usart_throttle,
1232 .unthrottle = stm32_usart_unthrottle,
1233 .stop_rx = stm32_usart_stop_rx,
1234 .enable_ms = stm32_usart_enable_ms,
1235 .break_ctl = stm32_usart_break_ctl,
1236 .startup = stm32_usart_startup,
1237 .shutdown = stm32_usart_shutdown,
Erwan Le Ray3d82be82021-03-04 17:23:08 +01001238 .flush_buffer = stm32_usart_flush_buffer,
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001239 .set_termios = stm32_usart_set_termios,
1240 .pm = stm32_usart_pm,
1241 .type = stm32_usart_type,
1242 .release_port = stm32_usart_release_port,
1243 .request_port = stm32_usart_request_port,
1244 .config_port = stm32_usart_config_port,
1245 .verify_port = stm32_usart_verify_port,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001246};
1247
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +02001248/*
1249 * STM32H7 RX & TX FIFO threshold configuration (CR3 RXFTCFG / TXFTCFG)
1250 * Note: 1 isn't a valid value in RXFTCFG / TXFTCFG. In this case,
1251 * RXNEIE / TXEIE can be used instead of threshold irqs: RXFTIE / TXFTIE.
1252 * So, RXFTCFG / TXFTCFG bitfields values are encoded as array index + 1.
1253 */
1254static const u32 stm32h7_usart_fifo_thresh_cfg[] = { 1, 2, 4, 8, 12, 14, 16 };
1255
1256static void stm32_usart_get_ftcfg(struct platform_device *pdev, const char *p,
1257 int *ftcfg)
1258{
1259 u32 bytes, i;
1260
1261 /* DT option to get RX & TX FIFO threshold (default to 8 bytes) */
1262 if (of_property_read_u32(pdev->dev.of_node, p, &bytes))
1263 bytes = 8;
1264
1265 for (i = 0; i < ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg); i++)
1266 if (stm32h7_usart_fifo_thresh_cfg[i] >= bytes)
1267 break;
1268 if (i >= ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg))
1269 i = ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg) - 1;
1270
1271 dev_dbg(&pdev->dev, "%s set to %d bytes\n", p,
1272 stm32h7_usart_fifo_thresh_cfg[i]);
1273
1274 /* Provide FIFO threshold ftcfg (1 is invalid: threshold irq unused) */
1275 if (i)
1276 *ftcfg = i - 1;
1277 else
1278 *ftcfg = -EINVAL;
1279}
1280
Erwan Le Ray97f3a082021-01-06 17:22:02 +01001281static void stm32_usart_deinit_port(struct stm32_port *stm32port)
1282{
1283 clk_disable_unprepare(stm32port->clk);
1284}
1285
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001286static int stm32_usart_init_port(struct stm32_port *stm32port,
1287 struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001288{
1289 struct uart_port *port = &stm32port->port;
1290 struct resource *res;
Erwan Le Raye0f2a902021-01-21 15:23:09 +01001291 int ret, irq;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001292
Erwan Le Raye0f2a902021-01-21 15:23:09 +01001293 irq = platform_get_irq(pdev, 0);
Tang Bin217b04c2021-08-11 18:51:36 +08001294 if (irq < 0)
1295 return irq;
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001296
Maxime Coquelin48a60922015-06-10 21:19:36 +02001297 port->iotype = UPIO_MEM;
1298 port->flags = UPF_BOOT_AUTOCONF;
1299 port->ops = &stm32_uart_ops;
1300 port->dev = &pdev->dev;
Erwan Le Rayd0757192019-06-18 12:02:24 +02001301 port->fifosize = stm32port->info->cfg.fifosize;
Dmitry Safonov9feedaa2019-12-13 00:06:43 +00001302 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_STM32_CONSOLE);
Erwan Le Raye0f2a902021-01-21 15:23:09 +01001303 port->irq = irq;
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001304 port->rs485_config = stm32_usart_config_rs485;
Bich HEMON7d8f6862018-03-15 08:44:46 +00001305
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001306 ret = stm32_usart_init_rs485(port, pdev);
Lukas Wunnerc150c0f2020-05-12 14:40:02 +02001307 if (ret)
1308 return ret;
Bich HEMON7d8f6862018-03-15 08:44:46 +00001309
Alexandre Torgue3d530012021-03-19 19:42:52 +01001310 stm32port->wakeup_src = stm32port->info->cfg.has_wakeup &&
1311 of_property_read_bool(pdev->dev.of_node, "wakeup-source");
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001312
Martin Devera3cd66592021-03-28 17:43:06 +02001313 stm32port->swap = stm32port->info->cfg.has_swap &&
1314 of_property_read_bool(pdev->dev.of_node, "rx-tx-swap");
1315
Gerald Baeza351a7622017-07-13 15:08:30 +00001316 stm32port->fifoen = stm32port->info->cfg.has_fifo;
Fabrice Gasnier2aa1bbb2021-04-13 19:40:15 +02001317 if (stm32port->fifoen) {
1318 stm32_usart_get_ftcfg(pdev, "rx-threshold",
1319 &stm32port->rxftcfg);
1320 stm32_usart_get_ftcfg(pdev, "tx-threshold",
1321 &stm32port->txftcfg);
1322 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001323
Tang Bin3d881e32021-08-14 21:14:18 +08001324 port->membase = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001325 if (IS_ERR(port->membase))
1326 return PTR_ERR(port->membase);
1327 port->mapbase = res->start;
1328
1329 spin_lock_init(&port->lock);
1330
1331 stm32port->clk = devm_clk_get(&pdev->dev, NULL);
1332 if (IS_ERR(stm32port->clk))
1333 return PTR_ERR(stm32port->clk);
1334
1335 /* Ensure that clk rate is correct by enabling the clk */
1336 ret = clk_prepare_enable(stm32port->clk);
1337 if (ret)
1338 return ret;
1339
1340 stm32port->port.uartclk = clk_get_rate(stm32port->clk);
Fabrice Gasnierada80042017-07-13 15:08:29 +00001341 if (!stm32port->port.uartclk) {
Maxime Coquelin48a60922015-06-10 21:19:36 +02001342 ret = -EINVAL;
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301343 goto err_clk;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001344 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001345
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301346 stm32port->gpios = mctrl_gpio_init(&stm32port->port, 0);
1347 if (IS_ERR(stm32port->gpios)) {
1348 ret = PTR_ERR(stm32port->gpios);
1349 goto err_clk;
1350 }
1351
Erwan Le Ray93593692021-01-06 17:22:01 +01001352 /*
1353 * Both CTS/RTS gpios and "st,hw-flow-ctrl" (deprecated) or "uart-has-rtscts"
1354 * properties should not be specified.
1355 */
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301356 if (stm32port->hw_flow_control) {
1357 if (mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_CTS) ||
1358 mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_RTS)) {
1359 dev_err(&pdev->dev, "Conflicting RTS/CTS config\n");
1360 ret = -EINVAL;
1361 goto err_clk;
1362 }
1363 }
1364
1365 return ret;
1366
1367err_clk:
1368 clk_disable_unprepare(stm32port->clk);
1369
Maxime Coquelin48a60922015-06-10 21:19:36 +02001370 return ret;
1371}
1372
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001373static struct stm32_port *stm32_usart_of_get_port(struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001374{
1375 struct device_node *np = pdev->dev.of_node;
1376 int id;
1377
1378 if (!np)
1379 return NULL;
1380
1381 id = of_alias_get_id(np, "serial");
Gerald Baezae5707912017-07-13 15:08:27 +00001382 if (id < 0) {
1383 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
1384 return NULL;
1385 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001386
1387 if (WARN_ON(id >= STM32_MAX_PORTS))
1388 return NULL;
1389
Erwan Le Ray6fd9fff2020-05-20 15:39:32 +02001390 stm32_ports[id].hw_flow_control =
1391 of_property_read_bool (np, "st,hw-flow-ctrl") /*deprecated*/ ||
1392 of_property_read_bool (np, "uart-has-rtscts");
Maxime Coquelin48a60922015-06-10 21:19:36 +02001393 stm32_ports[id].port.line = id;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001394 stm32_ports[id].cr1_irq = USART_CR1_RXNEIE;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +02001395 stm32_ports[id].cr3_irq = 0;
Gerald Baezae5707912017-07-13 15:08:27 +00001396 stm32_ports[id].last_res = RX_BUF_L;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001397 return &stm32_ports[id];
1398}
1399
1400#ifdef CONFIG_OF
1401static const struct of_device_id stm32_match[] = {
Alexandre TORGUEada86182016-09-15 18:42:33 +02001402 { .compatible = "st,stm32-uart", .data = &stm32f4_info},
Alexandre TORGUEada86182016-09-15 18:42:33 +02001403 { .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001404 { .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
Maxime Coquelin48a60922015-06-10 21:19:36 +02001405 {},
1406};
1407
1408MODULE_DEVICE_TABLE(of, stm32_match);
1409#endif
1410
Erwan Le Raya7770a42021-06-10 12:00:20 +02001411static void stm32_usart_of_dma_rx_remove(struct stm32_port *stm32port,
1412 struct platform_device *pdev)
1413{
1414 if (stm32port->rx_buf)
1415 dma_free_coherent(&pdev->dev, RX_BUF_L, stm32port->rx_buf,
1416 stm32port->rx_dma_buf);
1417}
1418
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001419static int stm32_usart_of_dma_rx_probe(struct stm32_port *stm32port,
1420 struct platform_device *pdev)
Alexandre TORGUE34891872016-09-15 18:42:40 +02001421{
Stephen Boydd825f0b2021-01-22 19:44:25 -08001422 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001423 struct uart_port *port = &stm32port->port;
1424 struct device *dev = &pdev->dev;
1425 struct dma_slave_config config;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001426 int ret;
1427
Johan Hovolde359b442021-04-16 16:05:56 +02001428 /*
1429 * Using DMA and threaded handler for the console could lead to
1430 * deadlocks.
1431 */
1432 if (uart_console(port))
1433 return -ENODEV;
1434
Tang Bin59bd4ee2021-08-14 20:49:51 +08001435 stm32port->rx_buf = dma_alloc_coherent(dev, RX_BUF_L,
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001436 &stm32port->rx_dma_buf,
1437 GFP_KERNEL);
Erwan Le Raya7770a42021-06-10 12:00:20 +02001438 if (!stm32port->rx_buf)
1439 return -ENOMEM;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001440
1441 /* Configure DMA channel */
1442 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001443 config.src_addr = port->mapbase + ofs->rdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001444 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1445
1446 ret = dmaengine_slave_config(stm32port->rx_ch, &config);
1447 if (ret < 0) {
1448 dev_err(dev, "rx dma channel config failed\n");
Erwan Le Raya7770a42021-06-10 12:00:20 +02001449 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1450 return ret;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001451 }
1452
Alexandre TORGUE34891872016-09-15 18:42:40 +02001453 return 0;
Erwan Le Raya7770a42021-06-10 12:00:20 +02001454}
Alexandre TORGUE34891872016-09-15 18:42:40 +02001455
Erwan Le Raya7770a42021-06-10 12:00:20 +02001456static void stm32_usart_of_dma_tx_remove(struct stm32_port *stm32port,
1457 struct platform_device *pdev)
1458{
1459 if (stm32port->tx_buf)
1460 dma_free_coherent(&pdev->dev, TX_BUF_L, stm32port->tx_buf,
1461 stm32port->tx_dma_buf);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001462}
1463
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001464static int stm32_usart_of_dma_tx_probe(struct stm32_port *stm32port,
1465 struct platform_device *pdev)
Alexandre TORGUE34891872016-09-15 18:42:40 +02001466{
Stephen Boydd825f0b2021-01-22 19:44:25 -08001467 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001468 struct uart_port *port = &stm32port->port;
1469 struct device *dev = &pdev->dev;
1470 struct dma_slave_config config;
1471 int ret;
1472
Tang Bin59bd4ee2021-08-14 20:49:51 +08001473 stm32port->tx_buf = dma_alloc_coherent(dev, TX_BUF_L,
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001474 &stm32port->tx_dma_buf,
1475 GFP_KERNEL);
Erwan Le Raya7770a42021-06-10 12:00:20 +02001476 if (!stm32port->tx_buf)
1477 return -ENOMEM;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001478
1479 /* Configure DMA channel */
1480 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001481 config.dst_addr = port->mapbase + ofs->tdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001482 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1483
1484 ret = dmaengine_slave_config(stm32port->tx_ch, &config);
1485 if (ret < 0) {
1486 dev_err(dev, "tx dma channel config failed\n");
Erwan Le Raya7770a42021-06-10 12:00:20 +02001487 stm32_usart_of_dma_tx_remove(stm32port, pdev);
1488 return ret;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001489 }
1490
1491 return 0;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001492}
1493
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001494static int stm32_usart_serial_probe(struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001495{
Maxime Coquelin48a60922015-06-10 21:19:36 +02001496 struct stm32_port *stm32port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001497 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001498
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001499 stm32port = stm32_usart_of_get_port(pdev);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001500 if (!stm32port)
1501 return -ENODEV;
1502
Stephen Boydd825f0b2021-01-22 19:44:25 -08001503 stm32port->info = of_device_get_match_data(&pdev->dev);
1504 if (!stm32port->info)
Alexandre TORGUEada86182016-09-15 18:42:33 +02001505 return -EINVAL;
1506
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001507 ret = stm32_usart_init_port(stm32port, pdev);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001508 if (ret)
1509 return ret;
1510
Alexandre Torgue3d530012021-03-19 19:42:52 +01001511 if (stm32port->wakeup_src) {
1512 device_set_wakeup_capable(&pdev->dev, true);
1513 ret = dev_pm_set_wake_irq(&pdev->dev, stm32port->port.irq);
Erwan Le Ray5297f272019-05-21 17:45:46 +02001514 if (ret)
Erwan Le Raya7770a42021-06-10 12:00:20 +02001515 goto err_deinit_port;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001516 }
1517
Erwan Le Raya7770a42021-06-10 12:00:20 +02001518 stm32port->rx_ch = dma_request_chan(&pdev->dev, "rx");
1519 if (PTR_ERR(stm32port->rx_ch) == -EPROBE_DEFER) {
1520 ret = -EPROBE_DEFER;
1521 goto err_wakeirq;
1522 }
1523 /* Fall back in interrupt mode for any non-deferral error */
1524 if (IS_ERR(stm32port->rx_ch))
1525 stm32port->rx_ch = NULL;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001526
Erwan Le Raya7770a42021-06-10 12:00:20 +02001527 stm32port->tx_ch = dma_request_chan(&pdev->dev, "tx");
1528 if (PTR_ERR(stm32port->tx_ch) == -EPROBE_DEFER) {
1529 ret = -EPROBE_DEFER;
1530 goto err_dma_rx;
1531 }
1532 /* Fall back in interrupt mode for any non-deferral error */
1533 if (IS_ERR(stm32port->tx_ch))
1534 stm32port->tx_ch = NULL;
1535
1536 if (stm32port->rx_ch && stm32_usart_of_dma_rx_probe(stm32port, pdev)) {
1537 /* Fall back in interrupt mode */
1538 dma_release_channel(stm32port->rx_ch);
1539 stm32port->rx_ch = NULL;
1540 }
1541
1542 if (stm32port->tx_ch && stm32_usart_of_dma_tx_probe(stm32port, pdev)) {
1543 /* Fall back in interrupt mode */
1544 dma_release_channel(stm32port->tx_ch);
1545 stm32port->tx_ch = NULL;
1546 }
1547
1548 if (!stm32port->rx_ch)
1549 dev_info(&pdev->dev, "interrupt mode for rx (no dma)\n");
1550 if (!stm32port->tx_ch)
1551 dev_info(&pdev->dev, "interrupt mode for tx (no dma)\n");
Alexandre TORGUE34891872016-09-15 18:42:40 +02001552
Maxime Coquelin48a60922015-06-10 21:19:36 +02001553 platform_set_drvdata(pdev, &stm32port->port);
1554
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001555 pm_runtime_get_noresume(&pdev->dev);
1556 pm_runtime_set_active(&pdev->dev);
1557 pm_runtime_enable(&pdev->dev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001558
1559 ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
1560 if (ret)
1561 goto err_port;
1562
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001563 pm_runtime_put_sync(&pdev->dev);
1564
Maxime Coquelin48a60922015-06-10 21:19:36 +02001565 return 0;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001566
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001567err_port:
1568 pm_runtime_disable(&pdev->dev);
1569 pm_runtime_set_suspended(&pdev->dev);
1570 pm_runtime_put_noidle(&pdev->dev);
1571
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001572 if (stm32port->tx_ch) {
Erwan Le Raya7770a42021-06-10 12:00:20 +02001573 stm32_usart_of_dma_tx_remove(stm32port, pdev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001574 dma_release_channel(stm32port->tx_ch);
1575 }
1576
Erwan Le Raya7770a42021-06-10 12:00:20 +02001577 if (stm32port->rx_ch)
1578 stm32_usart_of_dma_rx_remove(stm32port, pdev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001579
Erwan Le Raya7770a42021-06-10 12:00:20 +02001580err_dma_rx:
1581 if (stm32port->rx_ch)
1582 dma_release_channel(stm32port->rx_ch);
1583
1584err_wakeirq:
Alexandre Torgue3d530012021-03-19 19:42:52 +01001585 if (stm32port->wakeup_src)
Erwan Le Ray5297f272019-05-21 17:45:46 +02001586 dev_pm_clear_wake_irq(&pdev->dev);
1587
Erwan Le Raya7770a42021-06-10 12:00:20 +02001588err_deinit_port:
Alexandre Torgue3d530012021-03-19 19:42:52 +01001589 if (stm32port->wakeup_src)
1590 device_set_wakeup_capable(&pdev->dev, false);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001591
Erwan Le Ray97f3a082021-01-06 17:22:02 +01001592 stm32_usart_deinit_port(stm32port);
Fabrice Gasnierada80042017-07-13 15:08:29 +00001593
1594 return ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001595}
1596
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001597static int stm32_usart_serial_remove(struct platform_device *pdev)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001598{
1599 struct uart_port *port = platform_get_drvdata(pdev);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001600 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001601 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001602 int err;
Erwan Le Ray33bb2f62021-10-20 17:03:31 +02001603 u32 cr3;
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001604
1605 pm_runtime_get_sync(&pdev->dev);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001606 err = uart_remove_one_port(&stm32_usart_driver, port);
1607 if (err)
1608 return(err);
1609
1610 pm_runtime_disable(&pdev->dev);
1611 pm_runtime_set_suspended(&pdev->dev);
1612 pm_runtime_put_noidle(&pdev->dev);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001613
Erwan Le Ray33bb2f62021-10-20 17:03:31 +02001614 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_PEIE);
1615 cr3 = readl_relaxed(port->membase + ofs->cr3);
1616 cr3 &= ~USART_CR3_EIE;
1617 cr3 &= ~USART_CR3_DMAR;
1618 cr3 &= ~USART_CR3_DDRE;
1619 writel_relaxed(cr3, port->membase + ofs->cr3);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001620
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001621 if (stm32_port->tx_ch) {
Erwan Le Raya7770a42021-06-10 12:00:20 +02001622 stm32_usart_of_dma_tx_remove(stm32_port, pdev);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001623 dma_release_channel(stm32_port->tx_ch);
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001624 }
Alexandre TORGUE34891872016-09-15 18:42:40 +02001625
Erwan Le Raya7770a42021-06-10 12:00:20 +02001626 if (stm32_port->rx_ch) {
Erwan Le Raya7770a42021-06-10 12:00:20 +02001627 stm32_usart_of_dma_rx_remove(stm32_port, pdev);
1628 dma_release_channel(stm32_port->rx_ch);
1629 }
1630
1631 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001632
Alexandre Torgue3d530012021-03-19 19:42:52 +01001633 if (stm32_port->wakeup_src) {
Erwan Le Ray5297f272019-05-21 17:45:46 +02001634 dev_pm_clear_wake_irq(&pdev->dev);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001635 device_init_wakeup(&pdev->dev, false);
Erwan Le Ray5297f272019-05-21 17:45:46 +02001636 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001637
Erwan Le Ray97f3a082021-01-06 17:22:02 +01001638 stm32_usart_deinit_port(stm32_port);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001639
Erwan Le Ray87fd0742021-03-04 17:22:56 +01001640 return 0;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001641}
1642
Maxime Coquelin48a60922015-06-10 21:19:36 +02001643#ifdef CONFIG_SERIAL_STM32_CONSOLE
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001644static void stm32_usart_console_putchar(struct uart_port *port, int ch)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001645{
Alexandre TORGUEada86182016-09-15 18:42:33 +02001646 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001647 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001648
1649 while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
Maxime Coquelin48a60922015-06-10 21:19:36 +02001650 cpu_relax();
1651
Alexandre TORGUEada86182016-09-15 18:42:33 +02001652 writel_relaxed(ch, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001653}
1654
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001655static void stm32_usart_console_write(struct console *co, const char *s,
1656 unsigned int cnt)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001657{
1658 struct uart_port *port = &stm32_ports[co->index].port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001659 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001660 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1661 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001662 unsigned long flags;
1663 u32 old_cr1, new_cr1;
1664 int locked = 1;
1665
Johan Hovoldcea37af2021-04-16 16:05:57 +02001666 if (oops_in_progress)
1667 locked = spin_trylock_irqsave(&port->lock, flags);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001668 else
Johan Hovoldcea37af2021-04-16 16:05:57 +02001669 spin_lock_irqsave(&port->lock, flags);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001670
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001671 /* Save and disable interrupts, enable the transmitter */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001672 old_cr1 = readl_relaxed(port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001673 new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001674 new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit);
Alexandre TORGUEada86182016-09-15 18:42:33 +02001675 writel_relaxed(new_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001676
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001677 uart_console_write(port, s, cnt, stm32_usart_console_putchar);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001678
1679 /* Restore interrupt state */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001680 writel_relaxed(old_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001681
1682 if (locked)
Johan Hovoldcea37af2021-04-16 16:05:57 +02001683 spin_unlock_irqrestore(&port->lock, flags);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001684}
1685
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001686static int stm32_usart_console_setup(struct console *co, char *options)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001687{
1688 struct stm32_port *stm32port;
1689 int baud = 9600;
1690 int bits = 8;
1691 int parity = 'n';
1692 int flow = 'n';
1693
1694 if (co->index >= STM32_MAX_PORTS)
1695 return -ENODEV;
1696
1697 stm32port = &stm32_ports[co->index];
1698
1699 /*
1700 * This driver does not support early console initialization
1701 * (use ARM early printk support instead), so we only expect
1702 * this to be called during the uart port registration when the
1703 * driver gets probed and the port should be mapped at that point.
1704 */
Erwan Le Ray92fc0022021-01-06 17:21:57 +01001705 if (stm32port->port.mapbase == 0 || !stm32port->port.membase)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001706 return -ENXIO;
1707
1708 if (options)
1709 uart_parse_options(options, &baud, &parity, &bits, &flow);
1710
1711 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
1712}
1713
1714static struct console stm32_console = {
1715 .name = STM32_SERIAL_NAME,
1716 .device = uart_console_device,
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001717 .write = stm32_usart_console_write,
1718 .setup = stm32_usart_console_setup,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001719 .flags = CON_PRINTBUFFER,
1720 .index = -1,
1721 .data = &stm32_usart_driver,
1722};
1723
1724#define STM32_SERIAL_CONSOLE (&stm32_console)
1725
1726#else
1727#define STM32_SERIAL_CONSOLE NULL
1728#endif /* CONFIG_SERIAL_STM32_CONSOLE */
1729
1730static struct uart_driver stm32_usart_driver = {
1731 .driver_name = DRIVER_NAME,
1732 .dev_name = STM32_SERIAL_NAME,
1733 .major = 0,
1734 .minor = 0,
1735 .nr = STM32_MAX_PORTS,
1736 .cons = STM32_SERIAL_CONSOLE,
1737};
1738
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001739static int __maybe_unused stm32_usart_serial_en_wakeup(struct uart_port *port,
1740 bool enable)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001741{
1742 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001743 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001744 struct tty_port *tport = &port->state->port;
1745 int ret;
Erwan Le Ray6333a482021-10-25 15:42:29 +02001746 unsigned int size;
1747 unsigned long flags;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001748
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001749 if (!stm32_port->wakeup_src || !tty_port_initialized(tport))
1750 return 0;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001751
Erwan Le Ray12761862021-03-04 17:23:01 +01001752 /*
1753 * Enable low-power wake-up and wake-up irq if argument is set to
1754 * "enable", disable low-power wake-up and wake-up irq otherwise
1755 */
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001756 if (enable) {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001757 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_UESM);
Erwan Le Ray12761862021-03-04 17:23:01 +01001758 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_WUFIE);
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001759
1760 /*
1761 * When DMA is used for reception, it must be disabled before
1762 * entering low-power mode and re-enabled when exiting from
1763 * low-power mode.
1764 */
1765 if (stm32_port->rx_ch) {
Erwan Le Ray6333a482021-10-25 15:42:29 +02001766 spin_lock_irqsave(&port->lock, flags);
1767 /* Avoid race with RX IRQ when DMAR is cleared */
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001768 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
Erwan Le Ray6333a482021-10-25 15:42:29 +02001769 /* Poll data from DMA RX buffer if any */
1770 size = stm32_usart_receive_chars(port, true);
1771 dmaengine_terminate_async(stm32_port->rx_ch);
1772 uart_unlock_and_check_sysrq_irqrestore(port, flags);
1773 if (size)
1774 tty_flip_buffer_push(tport);
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001775 }
1776
1777 /* Poll data from RX FIFO if any */
1778 stm32_usart_receive_chars(port, false);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001779 } else {
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001780 if (stm32_port->rx_ch) {
1781 ret = stm32_usart_start_rx_dma_cyclic(port);
1782 if (ret)
1783 return ret;
1784 }
1785
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001786 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_UESM);
Erwan Le Ray12761862021-03-04 17:23:01 +01001787 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001788 }
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001789
1790 return 0;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001791}
1792
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001793static int __maybe_unused stm32_usart_serial_suspend(struct device *dev)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001794{
1795 struct uart_port *port = dev_get_drvdata(dev);
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001796 int ret;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001797
1798 uart_suspend_port(&stm32_usart_driver, port);
1799
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001800 if (device_may_wakeup(dev) || device_wakeup_path(dev)) {
1801 ret = stm32_usart_serial_en_wakeup(port, true);
1802 if (ret)
1803 return ret;
1804 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001805
Erwan Le Ray55484fc2020-05-19 11:41:04 +02001806 /*
1807 * When "no_console_suspend" is enabled, keep the pinctrl default state
1808 * and rely on bootloader stage to restore this state upon resume.
1809 * Otherwise, apply the idle or sleep states depending on wakeup
1810 * capabilities.
1811 */
1812 if (console_suspend_enabled || !uart_console(port)) {
Erwan Le Ray1631eee2021-03-19 19:42:49 +01001813 if (device_may_wakeup(dev) || device_wakeup_path(dev))
Erwan Le Ray55484fc2020-05-19 11:41:04 +02001814 pinctrl_pm_select_idle_state(dev);
1815 else
1816 pinctrl_pm_select_sleep_state(dev);
1817 }
Erwan Le Ray94616d92019-06-13 15:49:53 +02001818
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001819 return 0;
1820}
1821
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001822static int __maybe_unused stm32_usart_serial_resume(struct device *dev)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001823{
1824 struct uart_port *port = dev_get_drvdata(dev);
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001825 int ret;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001826
Erwan Le Ray94616d92019-06-13 15:49:53 +02001827 pinctrl_pm_select_default_state(dev);
1828
Erwan Le Ray6eeb3482021-10-25 15:42:28 +02001829 if (device_may_wakeup(dev) || device_wakeup_path(dev)) {
1830 ret = stm32_usart_serial_en_wakeup(port, false);
1831 if (ret)
1832 return ret;
1833 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001834
1835 return uart_resume_port(&stm32_usart_driver, port);
1836}
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001837
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001838static int __maybe_unused stm32_usart_runtime_suspend(struct device *dev)
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001839{
1840 struct uart_port *port = dev_get_drvdata(dev);
1841 struct stm32_port *stm32port = container_of(port,
1842 struct stm32_port, port);
1843
1844 clk_disable_unprepare(stm32port->clk);
1845
1846 return 0;
1847}
1848
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001849static int __maybe_unused stm32_usart_runtime_resume(struct device *dev)
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001850{
1851 struct uart_port *port = dev_get_drvdata(dev);
1852 struct stm32_port *stm32port = container_of(port,
1853 struct stm32_port, port);
1854
1855 return clk_prepare_enable(stm32port->clk);
1856}
1857
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001858static const struct dev_pm_ops stm32_serial_pm_ops = {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001859 SET_RUNTIME_PM_OPS(stm32_usart_runtime_suspend,
1860 stm32_usart_runtime_resume, NULL)
1861 SET_SYSTEM_SLEEP_PM_OPS(stm32_usart_serial_suspend,
1862 stm32_usart_serial_resume)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001863};
1864
Maxime Coquelin48a60922015-06-10 21:19:36 +02001865static struct platform_driver stm32_serial_driver = {
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001866 .probe = stm32_usart_serial_probe,
1867 .remove = stm32_usart_serial_remove,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001868 .driver = {
1869 .name = DRIVER_NAME,
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001870 .pm = &stm32_serial_pm_ops,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001871 .of_match_table = of_match_ptr(stm32_match),
1872 },
1873};
1874
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001875static int __init stm32_usart_init(void)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001876{
1877 static char banner[] __initdata = "STM32 USART driver initialized";
1878 int ret;
1879
1880 pr_info("%s\n", banner);
1881
1882 ret = uart_register_driver(&stm32_usart_driver);
1883 if (ret)
1884 return ret;
1885
1886 ret = platform_driver_register(&stm32_serial_driver);
1887 if (ret)
1888 uart_unregister_driver(&stm32_usart_driver);
1889
1890 return ret;
1891}
1892
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001893static void __exit stm32_usart_exit(void)
Maxime Coquelin48a60922015-06-10 21:19:36 +02001894{
1895 platform_driver_unregister(&stm32_serial_driver);
1896 uart_unregister_driver(&stm32_usart_driver);
1897}
1898
Erwan Le Ray56f9a762021-01-06 17:21:58 +01001899module_init(stm32_usart_init);
1900module_exit(stm32_usart_exit);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001901
1902MODULE_ALIAS("platform:" DRIVER_NAME);
1903MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
1904MODULE_LICENSE("GPL v2");