blob: 99f04db73830cfcbe926e4dd15f2e1d6948f5028 [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>
6 * Gerald Baeza <gerald.baeza@st.com>
Maxime Coquelin48a60922015-06-10 21:19:36 +02007 *
8 * Inspired by st-asc.c from STMicroelectronics (c)
9 */
10
Alexandre TORGUE34891872016-09-15 18:42:40 +020011#include <linux/clk.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020012#include <linux/console.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020013#include <linux/delay.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020014#include <linux/dma-direction.h>
15#include <linux/dmaengine.h>
16#include <linux/dma-mapping.h>
17#include <linux/io.h>
18#include <linux/iopoll.h>
19#include <linux/irq.h>
20#include <linux/module.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020021#include <linux/of.h>
22#include <linux/of_platform.h>
Erwan Le Ray94616d92019-06-13 15:49:53 +020023#include <linux/pinctrl/consumer.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020024#include <linux/platform_device.h>
25#include <linux/pm_runtime.h>
Fabrice Gasnier270e5a72017-07-13 15:08:30 +000026#include <linux/pm_wakeirq.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020027#include <linux/serial_core.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020028#include <linux/serial.h>
29#include <linux/spinlock.h>
30#include <linux/sysrq.h>
31#include <linux/tty_flip.h>
32#include <linux/tty.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020033
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +053034#include "serial_mctrl_gpio.h"
Alexandre TORGUEbc5a0b52016-09-15 18:42:35 +020035#include "stm32-usart.h"
Maxime Coquelin48a60922015-06-10 21:19:36 +020036
37static void stm32_stop_tx(struct uart_port *port);
Alexandre TORGUE34891872016-09-15 18:42:40 +020038static void stm32_transmit_chars(struct uart_port *port);
Maxime Coquelin48a60922015-06-10 21:19:36 +020039
40static inline struct stm32_port *to_stm32_port(struct uart_port *port)
41{
42 return container_of(port, struct stm32_port, port);
43}
44
45static void stm32_set_bits(struct uart_port *port, u32 reg, u32 bits)
46{
47 u32 val;
48
49 val = readl_relaxed(port->membase + reg);
50 val |= bits;
51 writel_relaxed(val, port->membase + reg);
52}
53
54static void stm32_clr_bits(struct uart_port *port, u32 reg, u32 bits)
55{
56 u32 val;
57
58 val = readl_relaxed(port->membase + reg);
59 val &= ~bits;
60 writel_relaxed(val, port->membase + reg);
61}
62
Bich HEMON1bcda092018-03-12 09:50:05 +000063static void stm32_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE,
64 u32 delay_DDE, u32 baud)
65{
66 u32 rs485_deat_dedt;
67 u32 rs485_deat_dedt_max = (USART_CR1_DEAT_MASK >> USART_CR1_DEAT_SHIFT);
68 bool over8;
69
70 *cr3 |= USART_CR3_DEM;
71 over8 = *cr1 & USART_CR1_OVER8;
72
73 if (over8)
74 rs485_deat_dedt = delay_ADE * baud * 8;
75 else
76 rs485_deat_dedt = delay_ADE * baud * 16;
77
78 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
79 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
80 rs485_deat_dedt_max : rs485_deat_dedt;
81 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEAT_SHIFT) &
82 USART_CR1_DEAT_MASK;
83 *cr1 |= rs485_deat_dedt;
84
85 if (over8)
86 rs485_deat_dedt = delay_DDE * baud * 8;
87 else
88 rs485_deat_dedt = delay_DDE * baud * 16;
89
90 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
91 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
92 rs485_deat_dedt_max : rs485_deat_dedt;
93 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEDT_SHIFT) &
94 USART_CR1_DEDT_MASK;
95 *cr1 |= rs485_deat_dedt;
96}
97
98static int stm32_config_rs485(struct uart_port *port,
99 struct serial_rs485 *rs485conf)
100{
101 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800102 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
103 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Bich HEMON1bcda092018-03-12 09:50:05 +0000104 u32 usartdiv, baud, cr1, cr3;
105 bool over8;
Bich HEMON1bcda092018-03-12 09:50:05 +0000106
Bich HEMON1bcda092018-03-12 09:50:05 +0000107 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
108
109 port->rs485 = *rs485conf;
110
111 rs485conf->flags |= SER_RS485_RX_DURING_TX;
112
113 if (rs485conf->flags & SER_RS485_ENABLED) {
114 cr1 = readl_relaxed(port->membase + ofs->cr1);
115 cr3 = readl_relaxed(port->membase + ofs->cr3);
116 usartdiv = readl_relaxed(port->membase + ofs->brr);
117 usartdiv = usartdiv & GENMASK(15, 0);
118 over8 = cr1 & USART_CR1_OVER8;
119
120 if (over8)
121 usartdiv = usartdiv | (usartdiv & GENMASK(4, 0))
122 << USART_BRR_04_R_SHIFT;
123
124 baud = DIV_ROUND_CLOSEST(port->uartclk, usartdiv);
125 stm32_config_reg_rs485(&cr1, &cr3,
126 rs485conf->delay_rts_before_send,
127 rs485conf->delay_rts_after_send, baud);
128
129 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
130 cr3 &= ~USART_CR3_DEP;
131 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
132 } else {
133 cr3 |= USART_CR3_DEP;
134 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
135 }
136
137 writel_relaxed(cr3, port->membase + ofs->cr3);
138 writel_relaxed(cr1, port->membase + ofs->cr1);
139 } else {
140 stm32_clr_bits(port, ofs->cr3, USART_CR3_DEM | USART_CR3_DEP);
141 stm32_clr_bits(port, ofs->cr1,
142 USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
143 }
144
145 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Bich HEMON1bcda092018-03-12 09:50:05 +0000146
147 return 0;
148}
149
150static int stm32_init_rs485(struct uart_port *port,
151 struct platform_device *pdev)
152{
153 struct serial_rs485 *rs485conf = &port->rs485;
154
155 rs485conf->flags = 0;
156 rs485conf->delay_rts_before_send = 0;
157 rs485conf->delay_rts_after_send = 0;
158
159 if (!pdev->dev.of_node)
160 return -ENODEV;
161
Lukas Wunnerc150c0f2020-05-12 14:40:02 +0200162 return uart_get_rs485_mode(port);
Bich HEMON1bcda092018-03-12 09:50:05 +0000163}
164
Baoyou Xieb97055b2016-09-26 19:58:56 +0800165static int stm32_pending_rx(struct uart_port *port, u32 *sr, int *last_res,
166 bool threaded)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200167{
168 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800169 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200170 enum dma_status status;
171 struct dma_tx_state state;
172
173 *sr = readl_relaxed(port->membase + ofs->isr);
174
175 if (threaded && stm32_port->rx_ch) {
176 status = dmaengine_tx_status(stm32_port->rx_ch,
177 stm32_port->rx_ch->cookie,
178 &state);
179 if ((status == DMA_IN_PROGRESS) &&
180 (*last_res != state.residue))
181 return 1;
182 else
183 return 0;
184 } else if (*sr & USART_SR_RXNE) {
185 return 1;
186 }
187 return 0;
188}
189
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200190static unsigned long stm32_get_char(struct uart_port *port, u32 *sr,
191 int *last_res)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200192{
193 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800194 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200195 unsigned long c;
196
197 if (stm32_port->rx_ch) {
198 c = stm32_port->rx_buf[RX_BUF_L - (*last_res)--];
199 if ((*last_res) == 0)
200 *last_res = RX_BUF_L;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200201 } else {
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200202 c = readl_relaxed(port->membase + ofs->rdr);
203 /* apply RDR data mask */
204 c &= stm32_port->rdr_mask;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200205 }
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200206
207 return c;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200208}
209
210static void stm32_receive_chars(struct uart_port *port, bool threaded)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200211{
212 struct tty_port *tport = &port->state->port;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200213 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800214 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200215 unsigned long c;
216 u32 sr;
217 char flag;
218
Andy Shevchenko29d60982017-08-13 17:47:41 +0300219 if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
Maxime Coquelin48a60922015-06-10 21:19:36 +0200220 pm_wakeup_event(tport->tty->dev, 0);
221
Gerald Baezae5707912017-07-13 15:08:27 +0000222 while (stm32_pending_rx(port, &sr, &stm32_port->last_res, threaded)) {
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
241 c = stm32_get_char(port, &sr, &stm32_port->last_res);
242 port->icount.rx++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200243 if (sr & USART_SR_ERR_MASK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200244 if (sr & USART_SR_ORE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200245 port->icount.overrun++;
246 } else if (sr & USART_SR_PE) {
247 port->icount.parity++;
248 } else if (sr & USART_SR_FE) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200249 /* Break detection if character is null */
250 if (!c) {
251 port->icount.brk++;
252 if (uart_handle_break(port))
253 continue;
254 } else {
255 port->icount.frame++;
256 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200257 }
258
259 sr &= port->read_status_mask;
260
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200261 if (sr & USART_SR_PE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200262 flag = TTY_PARITY;
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200263 } else if (sr & USART_SR_FE) {
264 if (!c)
265 flag = TTY_BREAK;
266 else
267 flag = TTY_FRAME;
268 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200269 }
270
271 if (uart_handle_sysrq_char(port, c))
272 continue;
273 uart_insert_char(port, sr, USART_SR_ORE, c, flag);
274 }
275
276 spin_unlock(&port->lock);
277 tty_flip_buffer_push(tport);
278 spin_lock(&port->lock);
279}
280
Alexandre TORGUE34891872016-09-15 18:42:40 +0200281static void stm32_tx_dma_complete(void *arg)
282{
283 struct uart_port *port = arg;
284 struct stm32_port *stm32port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800285 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200286
287 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
288 stm32port->tx_dma_busy = false;
289
290 /* Let's see if we have pending data to send */
291 stm32_transmit_chars(port);
292}
293
Erwan Le Rayd0757192019-06-18 12:02:24 +0200294static void stm32_tx_interrupt_enable(struct uart_port *port)
295{
296 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800297 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200298
299 /*
300 * Enables TX FIFO threashold irq when FIFO is enabled,
301 * or TX empty irq when FIFO is disabled
302 */
303 if (stm32_port->fifoen)
304 stm32_set_bits(port, ofs->cr3, USART_CR3_TXFTIE);
305 else
306 stm32_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
307}
308
309static void stm32_tx_interrupt_disable(struct uart_port *port)
310{
311 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800312 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200313
314 if (stm32_port->fifoen)
315 stm32_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE);
316 else
317 stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
318}
319
Alexandre TORGUE34891872016-09-15 18:42:40 +0200320static void stm32_transmit_chars_pio(struct uart_port *port)
321{
322 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800323 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200324 struct circ_buf *xmit = &port->state->xmit;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200325
326 if (stm32_port->tx_dma_busy) {
327 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
328 stm32_port->tx_dma_busy = false;
329 }
330
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200331 while (!uart_circ_empty(xmit)) {
332 /* Check that TDR is empty before filling FIFO */
333 if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
334 break;
335 writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
336 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
337 port->icount.tx++;
338 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200339
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200340 /* rely on TXE irq (mask or unmask) for sending remaining data */
341 if (uart_circ_empty(xmit))
Erwan Le Rayd0757192019-06-18 12:02:24 +0200342 stm32_tx_interrupt_disable(port);
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200343 else
Erwan Le Rayd0757192019-06-18 12:02:24 +0200344 stm32_tx_interrupt_enable(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200345}
346
347static void stm32_transmit_chars_dma(struct uart_port *port)
348{
349 struct stm32_port *stm32port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800350 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200351 struct circ_buf *xmit = &port->state->xmit;
352 struct dma_async_tx_descriptor *desc = NULL;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200353 unsigned int count, i;
354
355 if (stm32port->tx_dma_busy)
356 return;
357
358 stm32port->tx_dma_busy = true;
359
360 count = uart_circ_chars_pending(xmit);
361
362 if (count > TX_BUF_L)
363 count = TX_BUF_L;
364
365 if (xmit->tail < xmit->head) {
366 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
367 } else {
368 size_t one = UART_XMIT_SIZE - xmit->tail;
369 size_t two;
370
371 if (one > count)
372 one = count;
373 two = count - one;
374
375 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
376 if (two)
377 memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
378 }
379
380 desc = dmaengine_prep_slave_single(stm32port->tx_ch,
381 stm32port->tx_dma_buf,
382 count,
383 DMA_MEM_TO_DEV,
384 DMA_PREP_INTERRUPT);
385
386 if (!desc) {
387 for (i = count; i > 0; i--)
388 stm32_transmit_chars_pio(port);
389 return;
390 }
391
392 desc->callback = stm32_tx_dma_complete;
393 desc->callback_param = port;
394
395 /* Push current DMA TX transaction in the pending queue */
Lee Jones24832ca2020-11-04 19:35:41 +0000396 dmaengine_submit(desc);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200397
398 /* Issue pending DMA TX requests */
399 dma_async_issue_pending(stm32port->tx_ch);
400
Alexandre TORGUE34891872016-09-15 18:42:40 +0200401 stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
402
403 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
404 port->icount.tx += count;
405}
406
Maxime Coquelin48a60922015-06-10 21:19:36 +0200407static void stm32_transmit_chars(struct uart_port *port)
408{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200409 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800410 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200411 struct circ_buf *xmit = &port->state->xmit;
412
413 if (port->x_char) {
Alexandre TORGUE34891872016-09-15 18:42:40 +0200414 if (stm32_port->tx_dma_busy)
415 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200416 writel_relaxed(port->x_char, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200417 port->x_char = 0;
418 port->icount.tx++;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200419 if (stm32_port->tx_dma_busy)
420 stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200421 return;
422 }
423
Erwan Le Rayb83b9572019-05-21 17:45:44 +0200424 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Erwan Le Rayd0757192019-06-18 12:02:24 +0200425 stm32_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200426 return;
427 }
428
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200429 if (ofs->icr == UNDEF_REG)
430 stm32_clr_bits(port, ofs->isr, USART_SR_TC);
431 else
Fabrice Gasnier1250ed72019-11-21 09:10:49 +0100432 writel_relaxed(USART_ICR_TCCF, port->membase + ofs->icr);
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200433
Alexandre TORGUE34891872016-09-15 18:42:40 +0200434 if (stm32_port->tx_ch)
435 stm32_transmit_chars_dma(port);
436 else
437 stm32_transmit_chars_pio(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200438
439 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
440 uart_write_wakeup(port);
441
442 if (uart_circ_empty(xmit))
Erwan Le Rayd0757192019-06-18 12:02:24 +0200443 stm32_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200444}
445
446static irqreturn_t stm32_interrupt(int irq, void *ptr)
447{
448 struct uart_port *port = ptr;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200449 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800450 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200451 u32 sr;
452
Alexandre TORGUE01d32d72016-09-15 18:42:41 +0200453 spin_lock(&port->lock);
454
Alexandre TORGUEada86182016-09-15 18:42:33 +0200455 sr = readl_relaxed(port->membase + ofs->isr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200456
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200457 if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG)
458 writel_relaxed(USART_ICR_RTOCF,
459 port->membase + ofs->icr);
460
Fabrice Gasnier270e5a72017-07-13 15:08:30 +0000461 if ((sr & USART_SR_WUF) && (ofs->icr != UNDEF_REG))
462 writel_relaxed(USART_ICR_WUCF,
463 port->membase + ofs->icr);
464
Alexandre TORGUE34891872016-09-15 18:42:40 +0200465 if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch))
466 stm32_receive_chars(port, false);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200467
Alexandre TORGUE34891872016-09-15 18:42:40 +0200468 if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch))
Maxime Coquelin48a60922015-06-10 21:19:36 +0200469 stm32_transmit_chars(port);
470
Alexandre TORGUE01d32d72016-09-15 18:42:41 +0200471 spin_unlock(&port->lock);
472
Alexandre TORGUE34891872016-09-15 18:42:40 +0200473 if (stm32_port->rx_ch)
474 return IRQ_WAKE_THREAD;
475 else
476 return IRQ_HANDLED;
477}
478
479static irqreturn_t stm32_threaded_interrupt(int irq, void *ptr)
480{
481 struct uart_port *port = ptr;
482 struct stm32_port *stm32_port = to_stm32_port(port);
483
484 spin_lock(&port->lock);
485
486 if (stm32_port->rx_ch)
487 stm32_receive_chars(port, true);
488
Maxime Coquelin48a60922015-06-10 21:19:36 +0200489 spin_unlock(&port->lock);
490
491 return IRQ_HANDLED;
492}
493
494static unsigned int stm32_tx_empty(struct uart_port *port)
495{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200496 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800497 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200498
499 return readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200500}
501
502static void stm32_set_mctrl(struct uart_port *port, unsigned int mctrl)
503{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200504 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800505 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200506
Maxime Coquelin48a60922015-06-10 21:19:36 +0200507 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
Alexandre TORGUEada86182016-09-15 18:42:33 +0200508 stm32_set_bits(port, ofs->cr3, USART_CR3_RTSE);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200509 else
Alexandre TORGUEada86182016-09-15 18:42:33 +0200510 stm32_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530511
512 mctrl_gpio_set(stm32_port->gpios, mctrl);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200513}
514
515static unsigned int stm32_get_mctrl(struct uart_port *port)
516{
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530517 struct stm32_port *stm32_port = to_stm32_port(port);
518 unsigned int ret;
519
Maxime Coquelin48a60922015-06-10 21:19:36 +0200520 /* This routine is used to get signals of: DCD, DSR, RI, and CTS */
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530521 ret = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
522
523 return mctrl_gpio_get(stm32_port->gpios, &ret);
524}
525
526static void stm32_enable_ms(struct uart_port *port)
527{
528 mctrl_gpio_enable_ms(to_stm32_port(port)->gpios);
529}
530
531static void stm32_disable_ms(struct uart_port *port)
532{
533 mctrl_gpio_disable_ms(to_stm32_port(port)->gpios);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200534}
535
536/* Transmit stop */
537static void stm32_stop_tx(struct uart_port *port)
538{
Marek Vasutad0c2742020-08-31 19:10:45 +0200539 struct stm32_port *stm32_port = to_stm32_port(port);
540 struct serial_rs485 *rs485conf = &port->rs485;
541
Erwan Le Rayd0757192019-06-18 12:02:24 +0200542 stm32_tx_interrupt_disable(port);
Marek Vasutad0c2742020-08-31 19:10:45 +0200543
544 if (rs485conf->flags & SER_RS485_ENABLED) {
545 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
546 mctrl_gpio_set(stm32_port->gpios,
547 stm32_port->port.mctrl & ~TIOCM_RTS);
548 } else {
549 mctrl_gpio_set(stm32_port->gpios,
550 stm32_port->port.mctrl | TIOCM_RTS);
551 }
552 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200553}
554
555/* There are probably characters waiting to be transmitted. */
556static void stm32_start_tx(struct uart_port *port)
557{
Marek Vasutad0c2742020-08-31 19:10:45 +0200558 struct stm32_port *stm32_port = to_stm32_port(port);
559 struct serial_rs485 *rs485conf = &port->rs485;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200560 struct circ_buf *xmit = &port->state->xmit;
561
562 if (uart_circ_empty(xmit))
563 return;
564
Marek Vasutad0c2742020-08-31 19:10:45 +0200565 if (rs485conf->flags & SER_RS485_ENABLED) {
566 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
567 mctrl_gpio_set(stm32_port->gpios,
568 stm32_port->port.mctrl | TIOCM_RTS);
569 } else {
570 mctrl_gpio_set(stm32_port->gpios,
571 stm32_port->port.mctrl & ~TIOCM_RTS);
572 }
573 }
574
Alexandre TORGUE34891872016-09-15 18:42:40 +0200575 stm32_transmit_chars(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200576}
577
578/* Throttle the remote when input buffer is about to overflow. */
579static void stm32_throttle(struct uart_port *port)
580{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200581 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800582 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200583 unsigned long flags;
584
585 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200586 stm32_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200587 if (stm32_port->cr3_irq)
588 stm32_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
589
Maxime Coquelin48a60922015-06-10 21:19:36 +0200590 spin_unlock_irqrestore(&port->lock, flags);
591}
592
593/* Unthrottle the remote, the input buffer can now accept data. */
594static void stm32_unthrottle(struct uart_port *port)
595{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200596 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800597 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200598 unsigned long flags;
599
600 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200601 stm32_set_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200602 if (stm32_port->cr3_irq)
603 stm32_set_bits(port, ofs->cr3, stm32_port->cr3_irq);
604
Maxime Coquelin48a60922015-06-10 21:19:36 +0200605 spin_unlock_irqrestore(&port->lock, flags);
606}
607
608/* Receive stop */
609static void stm32_stop_rx(struct uart_port *port)
610{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200611 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800612 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200613
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200614 stm32_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200615 if (stm32_port->cr3_irq)
616 stm32_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
617
Maxime Coquelin48a60922015-06-10 21:19:36 +0200618}
619
620/* Handle breaks - ignored by us */
621static void stm32_break_ctl(struct uart_port *port, int break_state)
622{
623}
624
625static int stm32_startup(struct uart_port *port)
626{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200627 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800628 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200629 const char *name = to_platform_device(port->dev)->name;
630 u32 val;
631 int ret;
632
Alexandre TORGUE34891872016-09-15 18:42:40 +0200633 ret = request_threaded_irq(port->irq, stm32_interrupt,
634 stm32_threaded_interrupt,
635 IRQF_NO_SUSPEND, name, port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200636 if (ret)
637 return ret;
638
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200639 /* RX FIFO Flush */
640 if (ofs->rqr != UNDEF_REG)
641 stm32_set_bits(port, ofs->rqr, USART_RQR_RXFRQ);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200642
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200643 /* Tx and RX FIFO configuration */
Erwan Le Rayd0757192019-06-18 12:02:24 +0200644 if (stm32_port->fifoen) {
645 val = readl_relaxed(port->membase + ofs->cr3);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200646 val &= ~(USART_CR3_TXFTCFG_MASK | USART_CR3_RXFTCFG_MASK);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200647 val |= USART_CR3_TXFTCFG_HALF << USART_CR3_TXFTCFG_SHIFT;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200648 val |= USART_CR3_RXFTCFG_HALF << USART_CR3_RXFTCFG_SHIFT;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200649 writel_relaxed(val, port->membase + ofs->cr3);
650 }
651
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200652 /* RX FIFO enabling */
653 val = stm32_port->cr1_irq | USART_CR1_RE;
654 if (stm32_port->fifoen)
655 val |= USART_CR1_FIFOEN;
656 stm32_set_bits(port, ofs->cr1, val);
657
Maxime Coquelin48a60922015-06-10 21:19:36 +0200658 return 0;
659}
660
661static void stm32_shutdown(struct uart_port *port)
662{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200663 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800664 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
665 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200666 u32 val, isr;
667 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200668
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530669 /* Disable modem control interrupts */
670 stm32_disable_ms(port);
671
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200672 val = USART_CR1_TXEIE | USART_CR1_TE;
673 val |= stm32_port->cr1_irq | USART_CR1_RE;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +0200674 val |= BIT(cfg->uart_enable_bit);
Gerald Baeza351a7622017-07-13 15:08:30 +0000675 if (stm32_port->fifoen)
676 val |= USART_CR1_FIFOEN;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200677
678 ret = readl_relaxed_poll_timeout(port->membase + ofs->isr,
679 isr, (isr & USART_SR_TC),
680 10, 100000);
681
682 if (ret)
683 dev_err(port->dev, "transmission complete not set\n");
684
Alexandre TORGUEa14f66a2016-09-15 18:42:36 +0200685 stm32_clr_bits(port, ofs->cr1, val);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200686
687 free_irq(port->irq, port);
688}
689
YueHaibing929ffa42019-05-28 17:04:49 +0800690static unsigned int stm32_get_databits(struct ktermios *termios)
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200691{
692 unsigned int bits;
693
694 tcflag_t cflag = termios->c_cflag;
695
696 switch (cflag & CSIZE) {
697 /*
698 * CSIZE settings are not necessarily supported in hardware.
699 * CSIZE unsupported configurations are handled here to set word length
700 * to 8 bits word as default configuration and to print debug message.
701 */
702 case CS5:
703 bits = 5;
704 break;
705 case CS6:
706 bits = 6;
707 break;
708 case CS7:
709 bits = 7;
710 break;
711 /* default including CS8 */
712 default:
713 bits = 8;
714 break;
715 }
716
717 return bits;
718}
719
Maxime Coquelin48a60922015-06-10 21:19:36 +0200720static void stm32_set_termios(struct uart_port *port, struct ktermios *termios,
721 struct ktermios *old)
722{
723 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800724 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
725 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Bich HEMON1bcda092018-03-12 09:50:05 +0000726 struct serial_rs485 *rs485conf = &port->rs485;
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200727 unsigned int baud, bits;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200728 u32 usartdiv, mantissa, fraction, oversampling;
729 tcflag_t cflag = termios->c_cflag;
730 u32 cr1, cr2, cr3;
731 unsigned long flags;
732
733 if (!stm32_port->hw_flow_control)
734 cflag &= ~CRTSCTS;
735
736 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
737
738 spin_lock_irqsave(&port->lock, flags);
739
740 /* Stop serial port and reset value */
Alexandre TORGUEada86182016-09-15 18:42:33 +0200741 writel_relaxed(0, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200742
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200743 /* flush RX & TX FIFO */
744 if (ofs->rqr != UNDEF_REG)
745 stm32_set_bits(port, ofs->rqr,
746 USART_RQR_TXFRQ | USART_RQR_RXFRQ);
Bich HEMON1bcda092018-03-12 09:50:05 +0000747
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200748 cr1 = USART_CR1_TE | USART_CR1_RE;
Gerald Baeza351a7622017-07-13 15:08:30 +0000749 if (stm32_port->fifoen)
750 cr1 |= USART_CR1_FIFOEN;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200751 cr2 = 0;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200752 cr3 = readl_relaxed(port->membase + ofs->cr3);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200753 cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTCFG_MASK | USART_CR3_RXFTIE
Erwan Le Rayd0757192019-06-18 12:02:24 +0200754 | USART_CR3_TXFTCFG_MASK;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200755
756 if (cflag & CSTOPB)
757 cr2 |= USART_CR2_STOP_2B;
758
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200759 bits = stm32_get_databits(termios);
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200760 stm32_port->rdr_mask = (BIT(bits) - 1);
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200761
Maxime Coquelin48a60922015-06-10 21:19:36 +0200762 if (cflag & PARENB) {
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200763 bits++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200764 cr1 |= USART_CR1_PCE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200765 }
766
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200767 /*
768 * Word length configuration:
769 * CS8 + parity, 9 bits word aka [M1:M0] = 0b01
770 * CS7 or (CS6 + parity), 7 bits word aka [M1:M0] = 0b10
771 * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00
772 * M0 and M1 already cleared by cr1 initialization.
773 */
774 if (bits == 9)
775 cr1 |= USART_CR1_M0;
776 else if ((bits == 7) && cfg->has_7bits_data)
777 cr1 |= USART_CR1_M1;
778 else if (bits != 8)
779 dev_dbg(port->dev, "Unsupported data bits config: %u bits\n"
780 , bits);
781
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200782 if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch ||
783 stm32_port->fifoen)) {
784 if (cflag & CSTOPB)
785 bits = bits + 3; /* 1 start bit + 2 stop bits */
786 else
787 bits = bits + 2; /* 1 start bit + 1 stop bit */
788
789 /* RX timeout irq to occur after last stop bit + bits */
790 stm32_port->cr1_irq = USART_CR1_RTOIE;
791 writel_relaxed(bits, port->membase + ofs->rtor);
792 cr2 |= USART_CR2_RTOEN;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200793 /* Not using dma, enable fifo threshold irq */
794 if (!stm32_port->rx_ch)
795 stm32_port->cr3_irq = USART_CR3_RXFTIE;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200796 }
797
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200798 cr1 |= stm32_port->cr1_irq;
799 cr3 |= stm32_port->cr3_irq;
800
Maxime Coquelin48a60922015-06-10 21:19:36 +0200801 if (cflag & PARODD)
802 cr1 |= USART_CR1_PS;
803
804 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
805 if (cflag & CRTSCTS) {
806 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
Bich HEMON35abe982017-07-13 15:08:28 +0000807 cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200808 }
809
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530810 /* Handle modem control interrupts */
811 if (UART_ENABLE_MS(port, termios->c_cflag))
812 stm32_enable_ms(port);
813 else
814 stm32_disable_ms(port);
815
Maxime Coquelin48a60922015-06-10 21:19:36 +0200816 usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
817
818 /*
819 * The USART supports 16 or 8 times oversampling.
820 * By default we prefer 16 times oversampling, so that the receiver
821 * has a better tolerance to clock deviations.
822 * 8 times oversampling is only used to achieve higher speeds.
823 */
824 if (usartdiv < 16) {
825 oversampling = 8;
Bich HEMON1bcda092018-03-12 09:50:05 +0000826 cr1 |= USART_CR1_OVER8;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200827 stm32_set_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200828 } else {
829 oversampling = 16;
Bich HEMON1bcda092018-03-12 09:50:05 +0000830 cr1 &= ~USART_CR1_OVER8;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200831 stm32_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200832 }
833
834 mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
835 fraction = usartdiv % oversampling;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200836 writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200837
838 uart_update_timeout(port, cflag, baud);
839
840 port->read_status_mask = USART_SR_ORE;
841 if (termios->c_iflag & INPCK)
842 port->read_status_mask |= USART_SR_PE | USART_SR_FE;
843 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200844 port->read_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200845
846 /* Characters to ignore */
847 port->ignore_status_mask = 0;
848 if (termios->c_iflag & IGNPAR)
849 port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
850 if (termios->c_iflag & IGNBRK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200851 port->ignore_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200852 /*
853 * If we're ignoring parity and break indicators,
854 * ignore overruns too (for real raw support).
855 */
856 if (termios->c_iflag & IGNPAR)
857 port->ignore_status_mask |= USART_SR_ORE;
858 }
859
860 /* Ignore all characters if CREAD is not set */
861 if ((termios->c_cflag & CREAD) == 0)
862 port->ignore_status_mask |= USART_SR_DUMMY_RX;
863
Alexandre TORGUE34891872016-09-15 18:42:40 +0200864 if (stm32_port->rx_ch)
865 cr3 |= USART_CR3_DMAR;
866
Bich HEMON1bcda092018-03-12 09:50:05 +0000867 if (rs485conf->flags & SER_RS485_ENABLED) {
868 stm32_config_reg_rs485(&cr1, &cr3,
869 rs485conf->delay_rts_before_send,
870 rs485conf->delay_rts_after_send, baud);
871 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
872 cr3 &= ~USART_CR3_DEP;
873 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
874 } else {
875 cr3 |= USART_CR3_DEP;
876 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
877 }
878
879 } else {
880 cr3 &= ~(USART_CR3_DEM | USART_CR3_DEP);
881 cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
882 }
883
Alexandre TORGUEada86182016-09-15 18:42:33 +0200884 writel_relaxed(cr3, port->membase + ofs->cr3);
885 writel_relaxed(cr2, port->membase + ofs->cr2);
886 writel_relaxed(cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200887
Bich HEMON1bcda092018-03-12 09:50:05 +0000888 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +0200889 spin_unlock_irqrestore(&port->lock, flags);
890}
891
892static const char *stm32_type(struct uart_port *port)
893{
894 return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
895}
896
897static void stm32_release_port(struct uart_port *port)
898{
899}
900
901static int stm32_request_port(struct uart_port *port)
902{
903 return 0;
904}
905
906static void stm32_config_port(struct uart_port *port, int flags)
907{
908 if (flags & UART_CONFIG_TYPE)
909 port->type = PORT_STM32;
910}
911
912static int
913stm32_verify_port(struct uart_port *port, struct serial_struct *ser)
914{
915 /* No user changeable parameters */
916 return -EINVAL;
917}
918
919static void stm32_pm(struct uart_port *port, unsigned int state,
920 unsigned int oldstate)
921{
922 struct stm32_port *stm32port = container_of(port,
923 struct stm32_port, port);
Stephen Boydd825f0b2021-01-22 19:44:25 -0800924 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
925 const struct stm32_usart_config *cfg = &stm32port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200926 unsigned long flags = 0;
927
928 switch (state) {
929 case UART_PM_STATE_ON:
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +0200930 pm_runtime_get_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200931 break;
932 case UART_PM_STATE_OFF:
933 spin_lock_irqsave(&port->lock, flags);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200934 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +0200935 spin_unlock_irqrestore(&port->lock, flags);
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +0200936 pm_runtime_put_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200937 break;
938 }
939}
940
941static const struct uart_ops stm32_uart_ops = {
942 .tx_empty = stm32_tx_empty,
943 .set_mctrl = stm32_set_mctrl,
944 .get_mctrl = stm32_get_mctrl,
945 .stop_tx = stm32_stop_tx,
946 .start_tx = stm32_start_tx,
947 .throttle = stm32_throttle,
948 .unthrottle = stm32_unthrottle,
949 .stop_rx = stm32_stop_rx,
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +0530950 .enable_ms = stm32_enable_ms,
Maxime Coquelin48a60922015-06-10 21:19:36 +0200951 .break_ctl = stm32_break_ctl,
952 .startup = stm32_startup,
953 .shutdown = stm32_shutdown,
954 .set_termios = stm32_set_termios,
955 .pm = stm32_pm,
956 .type = stm32_type,
957 .release_port = stm32_release_port,
958 .request_port = stm32_request_port,
959 .config_port = stm32_config_port,
960 .verify_port = stm32_verify_port,
961};
962
963static int stm32_init_port(struct stm32_port *stm32port,
964 struct platform_device *pdev)
965{
966 struct uart_port *port = &stm32port->port;
967 struct resource *res;
968 int ret;
969
970 port->iotype = UPIO_MEM;
971 port->flags = UPF_BOOT_AUTOCONF;
972 port->ops = &stm32_uart_ops;
973 port->dev = &pdev->dev;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200974 port->fifosize = stm32port->info->cfg.fifosize;
Dmitry Safonov9feedaa2019-12-13 00:06:43 +0000975 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_STM32_CONSOLE);
Erwan Le Ray2c58e562019-05-21 17:45:47 +0200976
977 ret = platform_get_irq(pdev, 0);
Stephen Boyd1df21782019-07-30 11:15:44 -0700978 if (ret <= 0)
979 return ret ? : -ENODEV;
Erwan Le Ray2c58e562019-05-21 17:45:47 +0200980 port->irq = ret;
981
Bich HEMON7d8f6862018-03-15 08:44:46 +0000982 port->rs485_config = stm32_config_rs485;
983
Lukas Wunnerc150c0f2020-05-12 14:40:02 +0200984 ret = stm32_init_rs485(port, pdev);
985 if (ret)
986 return ret;
Bich HEMON7d8f6862018-03-15 08:44:46 +0000987
Erwan Le Ray2c58e562019-05-21 17:45:47 +0200988 if (stm32port->info->cfg.has_wakeup) {
Holger Assmannfdf16d72020-08-13 17:27:57 +0200989 stm32port->wakeirq = platform_get_irq_optional(pdev, 1);
Stephen Boyd1df21782019-07-30 11:15:44 -0700990 if (stm32port->wakeirq <= 0 && stm32port->wakeirq != -ENXIO)
991 return stm32port->wakeirq ? : -ENODEV;
Erwan Le Ray2c58e562019-05-21 17:45:47 +0200992 }
993
Gerald Baeza351a7622017-07-13 15:08:30 +0000994 stm32port->fifoen = stm32port->info->cfg.has_fifo;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200995
996 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
997 port->membase = devm_ioremap_resource(&pdev->dev, res);
998 if (IS_ERR(port->membase))
999 return PTR_ERR(port->membase);
1000 port->mapbase = res->start;
1001
1002 spin_lock_init(&port->lock);
1003
1004 stm32port->clk = devm_clk_get(&pdev->dev, NULL);
1005 if (IS_ERR(stm32port->clk))
1006 return PTR_ERR(stm32port->clk);
1007
1008 /* Ensure that clk rate is correct by enabling the clk */
1009 ret = clk_prepare_enable(stm32port->clk);
1010 if (ret)
1011 return ret;
1012
1013 stm32port->port.uartclk = clk_get_rate(stm32port->clk);
Fabrice Gasnierada80042017-07-13 15:08:29 +00001014 if (!stm32port->port.uartclk) {
Maxime Coquelin48a60922015-06-10 21:19:36 +02001015 ret = -EINVAL;
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301016 goto err_clk;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001017 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001018
Manivannan Sadhasivam6cf61b92020-04-20 22:32:04 +05301019 stm32port->gpios = mctrl_gpio_init(&stm32port->port, 0);
1020 if (IS_ERR(stm32port->gpios)) {
1021 ret = PTR_ERR(stm32port->gpios);
1022 goto err_clk;
1023 }
1024
1025 /* Both CTS/RTS gpios and "st,hw-flow-ctrl" should not be specified */
1026 if (stm32port->hw_flow_control) {
1027 if (mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_CTS) ||
1028 mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_RTS)) {
1029 dev_err(&pdev->dev, "Conflicting RTS/CTS config\n");
1030 ret = -EINVAL;
1031 goto err_clk;
1032 }
1033 }
1034
1035 return ret;
1036
1037err_clk:
1038 clk_disable_unprepare(stm32port->clk);
1039
Maxime Coquelin48a60922015-06-10 21:19:36 +02001040 return ret;
1041}
1042
1043static struct stm32_port *stm32_of_get_stm32_port(struct platform_device *pdev)
1044{
1045 struct device_node *np = pdev->dev.of_node;
1046 int id;
1047
1048 if (!np)
1049 return NULL;
1050
1051 id = of_alias_get_id(np, "serial");
Gerald Baezae5707912017-07-13 15:08:27 +00001052 if (id < 0) {
1053 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
1054 return NULL;
1055 }
Maxime Coquelin48a60922015-06-10 21:19:36 +02001056
1057 if (WARN_ON(id >= STM32_MAX_PORTS))
1058 return NULL;
1059
Erwan Le Ray6fd9fff2020-05-20 15:39:32 +02001060 stm32_ports[id].hw_flow_control =
1061 of_property_read_bool (np, "st,hw-flow-ctrl") /*deprecated*/ ||
1062 of_property_read_bool (np, "uart-has-rtscts");
Maxime Coquelin48a60922015-06-10 21:19:36 +02001063 stm32_ports[id].port.line = id;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001064 stm32_ports[id].cr1_irq = USART_CR1_RXNEIE;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +02001065 stm32_ports[id].cr3_irq = 0;
Gerald Baezae5707912017-07-13 15:08:27 +00001066 stm32_ports[id].last_res = RX_BUF_L;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001067 return &stm32_ports[id];
1068}
1069
1070#ifdef CONFIG_OF
1071static const struct of_device_id stm32_match[] = {
Alexandre TORGUEada86182016-09-15 18:42:33 +02001072 { .compatible = "st,stm32-uart", .data = &stm32f4_info},
Alexandre TORGUEada86182016-09-15 18:42:33 +02001073 { .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001074 { .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
Maxime Coquelin48a60922015-06-10 21:19:36 +02001075 {},
1076};
1077
1078MODULE_DEVICE_TABLE(of, stm32_match);
1079#endif
1080
Alexandre TORGUE34891872016-09-15 18:42:40 +02001081static int stm32_of_dma_rx_probe(struct stm32_port *stm32port,
1082 struct platform_device *pdev)
1083{
Stephen Boydd825f0b2021-01-22 19:44:25 -08001084 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001085 struct uart_port *port = &stm32port->port;
1086 struct device *dev = &pdev->dev;
1087 struct dma_slave_config config;
1088 struct dma_async_tx_descriptor *desc = NULL;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001089 int ret;
1090
1091 /* Request DMA RX channel */
1092 stm32port->rx_ch = dma_request_slave_channel(dev, "rx");
1093 if (!stm32port->rx_ch) {
1094 dev_info(dev, "rx dma alloc failed\n");
1095 return -ENODEV;
1096 }
1097 stm32port->rx_buf = dma_alloc_coherent(&pdev->dev, RX_BUF_L,
1098 &stm32port->rx_dma_buf,
1099 GFP_KERNEL);
1100 if (!stm32port->rx_buf) {
1101 ret = -ENOMEM;
1102 goto alloc_err;
1103 }
1104
1105 /* Configure DMA channel */
1106 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001107 config.src_addr = port->mapbase + ofs->rdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001108 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1109
1110 ret = dmaengine_slave_config(stm32port->rx_ch, &config);
1111 if (ret < 0) {
1112 dev_err(dev, "rx dma channel config failed\n");
1113 ret = -ENODEV;
1114 goto config_err;
1115 }
1116
1117 /* Prepare a DMA cyclic transaction */
1118 desc = dmaengine_prep_dma_cyclic(stm32port->rx_ch,
1119 stm32port->rx_dma_buf,
1120 RX_BUF_L, RX_BUF_P, DMA_DEV_TO_MEM,
1121 DMA_PREP_INTERRUPT);
1122 if (!desc) {
1123 dev_err(dev, "rx dma prep cyclic failed\n");
1124 ret = -ENODEV;
1125 goto config_err;
1126 }
1127
1128 /* No callback as dma buffer is drained on usart interrupt */
1129 desc->callback = NULL;
1130 desc->callback_param = NULL;
1131
1132 /* Push current DMA transaction in the pending queue */
Lee Jones24832ca2020-11-04 19:35:41 +00001133 dmaengine_submit(desc);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001134
1135 /* Issue pending DMA requests */
1136 dma_async_issue_pending(stm32port->rx_ch);
1137
1138 return 0;
1139
1140config_err:
1141 dma_free_coherent(&pdev->dev,
1142 RX_BUF_L, stm32port->rx_buf,
1143 stm32port->rx_dma_buf);
1144
1145alloc_err:
1146 dma_release_channel(stm32port->rx_ch);
1147 stm32port->rx_ch = NULL;
1148
1149 return ret;
1150}
1151
1152static int stm32_of_dma_tx_probe(struct stm32_port *stm32port,
1153 struct platform_device *pdev)
1154{
Stephen Boydd825f0b2021-01-22 19:44:25 -08001155 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001156 struct uart_port *port = &stm32port->port;
1157 struct device *dev = &pdev->dev;
1158 struct dma_slave_config config;
1159 int ret;
1160
1161 stm32port->tx_dma_busy = false;
1162
1163 /* Request DMA TX channel */
1164 stm32port->tx_ch = dma_request_slave_channel(dev, "tx");
1165 if (!stm32port->tx_ch) {
1166 dev_info(dev, "tx dma alloc failed\n");
1167 return -ENODEV;
1168 }
1169 stm32port->tx_buf = dma_alloc_coherent(&pdev->dev, TX_BUF_L,
1170 &stm32port->tx_dma_buf,
1171 GFP_KERNEL);
1172 if (!stm32port->tx_buf) {
1173 ret = -ENOMEM;
1174 goto alloc_err;
1175 }
1176
1177 /* Configure DMA channel */
1178 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001179 config.dst_addr = port->mapbase + ofs->tdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001180 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1181
1182 ret = dmaengine_slave_config(stm32port->tx_ch, &config);
1183 if (ret < 0) {
1184 dev_err(dev, "tx dma channel config failed\n");
1185 ret = -ENODEV;
1186 goto config_err;
1187 }
1188
1189 return 0;
1190
1191config_err:
1192 dma_free_coherent(&pdev->dev,
1193 TX_BUF_L, stm32port->tx_buf,
1194 stm32port->tx_dma_buf);
1195
1196alloc_err:
1197 dma_release_channel(stm32port->tx_ch);
1198 stm32port->tx_ch = NULL;
1199
1200 return ret;
1201}
1202
Maxime Coquelin48a60922015-06-10 21:19:36 +02001203static int stm32_serial_probe(struct platform_device *pdev)
1204{
Maxime Coquelin48a60922015-06-10 21:19:36 +02001205 struct stm32_port *stm32port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001206 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001207
1208 stm32port = stm32_of_get_stm32_port(pdev);
1209 if (!stm32port)
1210 return -ENODEV;
1211
Stephen Boydd825f0b2021-01-22 19:44:25 -08001212 stm32port->info = of_device_get_match_data(&pdev->dev);
1213 if (!stm32port->info)
Alexandre TORGUEada86182016-09-15 18:42:33 +02001214 return -EINVAL;
1215
Maxime Coquelin48a60922015-06-10 21:19:36 +02001216 ret = stm32_init_port(stm32port, pdev);
1217 if (ret)
1218 return ret;
1219
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001220 if (stm32port->wakeirq > 0) {
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001221 ret = device_init_wakeup(&pdev->dev, true);
1222 if (ret)
1223 goto err_uninit;
Erwan Le Ray5297f272019-05-21 17:45:46 +02001224
1225 ret = dev_pm_set_dedicated_wake_irq(&pdev->dev,
1226 stm32port->wakeirq);
1227 if (ret)
1228 goto err_nowup;
1229
1230 device_set_wakeup_enable(&pdev->dev, false);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001231 }
1232
Maxime Coquelin48a60922015-06-10 21:19:36 +02001233 ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
1234 if (ret)
Erwan Le Ray5297f272019-05-21 17:45:46 +02001235 goto err_wirq;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001236
Alexandre TORGUE34891872016-09-15 18:42:40 +02001237 ret = stm32_of_dma_rx_probe(stm32port, pdev);
1238 if (ret)
1239 dev_info(&pdev->dev, "interrupt mode used for rx (no dma)\n");
1240
1241 ret = stm32_of_dma_tx_probe(stm32port, pdev);
1242 if (ret)
1243 dev_info(&pdev->dev, "interrupt mode used for tx (no dma)\n");
1244
Maxime Coquelin48a60922015-06-10 21:19:36 +02001245 platform_set_drvdata(pdev, &stm32port->port);
1246
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001247 pm_runtime_get_noresume(&pdev->dev);
1248 pm_runtime_set_active(&pdev->dev);
1249 pm_runtime_enable(&pdev->dev);
1250 pm_runtime_put_sync(&pdev->dev);
1251
Maxime Coquelin48a60922015-06-10 21:19:36 +02001252 return 0;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001253
Erwan Le Ray5297f272019-05-21 17:45:46 +02001254err_wirq:
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001255 if (stm32port->wakeirq > 0)
Erwan Le Ray5297f272019-05-21 17:45:46 +02001256 dev_pm_clear_wake_irq(&pdev->dev);
1257
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001258err_nowup:
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001259 if (stm32port->wakeirq > 0)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001260 device_init_wakeup(&pdev->dev, false);
1261
Fabrice Gasnierada80042017-07-13 15:08:29 +00001262err_uninit:
1263 clk_disable_unprepare(stm32port->clk);
1264
1265 return ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001266}
1267
1268static int stm32_serial_remove(struct platform_device *pdev)
1269{
1270 struct uart_port *port = platform_get_drvdata(pdev);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001271 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001272 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001273 int err;
1274
1275 pm_runtime_get_sync(&pdev->dev);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001276
1277 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
1278
1279 if (stm32_port->rx_ch)
1280 dma_release_channel(stm32_port->rx_ch);
1281
1282 if (stm32_port->rx_dma_buf)
1283 dma_free_coherent(&pdev->dev,
1284 RX_BUF_L, stm32_port->rx_buf,
1285 stm32_port->rx_dma_buf);
1286
1287 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
1288
1289 if (stm32_port->tx_ch)
1290 dma_release_channel(stm32_port->tx_ch);
1291
1292 if (stm32_port->tx_dma_buf)
1293 dma_free_coherent(&pdev->dev,
1294 TX_BUF_L, stm32_port->tx_buf,
1295 stm32_port->tx_dma_buf);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001296
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001297 if (stm32_port->wakeirq > 0) {
Erwan Le Ray5297f272019-05-21 17:45:46 +02001298 dev_pm_clear_wake_irq(&pdev->dev);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001299 device_init_wakeup(&pdev->dev, false);
Erwan Le Ray5297f272019-05-21 17:45:46 +02001300 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001301
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001302 clk_disable_unprepare(stm32_port->clk);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001303
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001304 err = uart_remove_one_port(&stm32_usart_driver, port);
1305
1306 pm_runtime_disable(&pdev->dev);
1307 pm_runtime_put_noidle(&pdev->dev);
1308
1309 return err;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001310}
1311
1312
1313#ifdef CONFIG_SERIAL_STM32_CONSOLE
1314static void stm32_console_putchar(struct uart_port *port, int ch)
1315{
Alexandre TORGUEada86182016-09-15 18:42:33 +02001316 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001317 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001318
1319 while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
Maxime Coquelin48a60922015-06-10 21:19:36 +02001320 cpu_relax();
1321
Alexandre TORGUEada86182016-09-15 18:42:33 +02001322 writel_relaxed(ch, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001323}
1324
1325static void stm32_console_write(struct console *co, const char *s, unsigned cnt)
1326{
1327 struct uart_port *port = &stm32_ports[co->index].port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001328 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001329 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1330 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001331 unsigned long flags;
1332 u32 old_cr1, new_cr1;
1333 int locked = 1;
1334
1335 local_irq_save(flags);
1336 if (port->sysrq)
1337 locked = 0;
1338 else if (oops_in_progress)
1339 locked = spin_trylock(&port->lock);
1340 else
1341 spin_lock(&port->lock);
1342
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001343 /* Save and disable interrupts, enable the transmitter */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001344 old_cr1 = readl_relaxed(port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001345 new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001346 new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit);
Alexandre TORGUEada86182016-09-15 18:42:33 +02001347 writel_relaxed(new_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001348
1349 uart_console_write(port, s, cnt, stm32_console_putchar);
1350
1351 /* Restore interrupt state */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001352 writel_relaxed(old_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001353
1354 if (locked)
1355 spin_unlock(&port->lock);
1356 local_irq_restore(flags);
1357}
1358
1359static int stm32_console_setup(struct console *co, char *options)
1360{
1361 struct stm32_port *stm32port;
1362 int baud = 9600;
1363 int bits = 8;
1364 int parity = 'n';
1365 int flow = 'n';
1366
1367 if (co->index >= STM32_MAX_PORTS)
1368 return -ENODEV;
1369
1370 stm32port = &stm32_ports[co->index];
1371
1372 /*
1373 * This driver does not support early console initialization
1374 * (use ARM early printk support instead), so we only expect
1375 * this to be called during the uart port registration when the
1376 * driver gets probed and the port should be mapped at that point.
1377 */
1378 if (stm32port->port.mapbase == 0 || stm32port->port.membase == NULL)
1379 return -ENXIO;
1380
1381 if (options)
1382 uart_parse_options(options, &baud, &parity, &bits, &flow);
1383
1384 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
1385}
1386
1387static struct console stm32_console = {
1388 .name = STM32_SERIAL_NAME,
1389 .device = uart_console_device,
1390 .write = stm32_console_write,
1391 .setup = stm32_console_setup,
1392 .flags = CON_PRINTBUFFER,
1393 .index = -1,
1394 .data = &stm32_usart_driver,
1395};
1396
1397#define STM32_SERIAL_CONSOLE (&stm32_console)
1398
1399#else
1400#define STM32_SERIAL_CONSOLE NULL
1401#endif /* CONFIG_SERIAL_STM32_CONSOLE */
1402
1403static struct uart_driver stm32_usart_driver = {
1404 .driver_name = DRIVER_NAME,
1405 .dev_name = STM32_SERIAL_NAME,
1406 .major = 0,
1407 .minor = 0,
1408 .nr = STM32_MAX_PORTS,
1409 .cons = STM32_SERIAL_CONSOLE,
1410};
1411
Erwan Le Rayfe943472019-06-13 15:49:55 +02001412static void __maybe_unused stm32_serial_enable_wakeup(struct uart_port *port,
1413 bool enable)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001414{
1415 struct stm32_port *stm32_port = to_stm32_port(port);
Stephen Boydd825f0b2021-01-22 19:44:25 -08001416 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1417 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001418 u32 val;
1419
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001420 if (stm32_port->wakeirq <= 0)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001421 return;
1422
1423 if (enable) {
1424 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1425 stm32_set_bits(port, ofs->cr1, USART_CR1_UESM);
1426 val = readl_relaxed(port->membase + ofs->cr3);
1427 val &= ~USART_CR3_WUS_MASK;
1428 /* Enable Wake up interrupt from low power on start bit */
1429 val |= USART_CR3_WUS_START_BIT | USART_CR3_WUFIE;
1430 writel_relaxed(val, port->membase + ofs->cr3);
1431 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1432 } else {
1433 stm32_clr_bits(port, ofs->cr1, USART_CR1_UESM);
1434 }
1435}
1436
Erwan Le Rayfe943472019-06-13 15:49:55 +02001437static int __maybe_unused stm32_serial_suspend(struct device *dev)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001438{
1439 struct uart_port *port = dev_get_drvdata(dev);
1440
1441 uart_suspend_port(&stm32_usart_driver, port);
1442
1443 if (device_may_wakeup(dev))
1444 stm32_serial_enable_wakeup(port, true);
1445 else
1446 stm32_serial_enable_wakeup(port, false);
1447
Erwan Le Ray55484fc2020-05-19 11:41:04 +02001448 /*
1449 * When "no_console_suspend" is enabled, keep the pinctrl default state
1450 * and rely on bootloader stage to restore this state upon resume.
1451 * Otherwise, apply the idle or sleep states depending on wakeup
1452 * capabilities.
1453 */
1454 if (console_suspend_enabled || !uart_console(port)) {
1455 if (device_may_wakeup(dev))
1456 pinctrl_pm_select_idle_state(dev);
1457 else
1458 pinctrl_pm_select_sleep_state(dev);
1459 }
Erwan Le Ray94616d92019-06-13 15:49:53 +02001460
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001461 return 0;
1462}
1463
Erwan Le Rayfe943472019-06-13 15:49:55 +02001464static int __maybe_unused stm32_serial_resume(struct device *dev)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001465{
1466 struct uart_port *port = dev_get_drvdata(dev);
1467
Erwan Le Ray94616d92019-06-13 15:49:53 +02001468 pinctrl_pm_select_default_state(dev);
1469
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001470 if (device_may_wakeup(dev))
1471 stm32_serial_enable_wakeup(port, false);
1472
1473 return uart_resume_port(&stm32_usart_driver, port);
1474}
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001475
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001476static int __maybe_unused stm32_serial_runtime_suspend(struct device *dev)
1477{
1478 struct uart_port *port = dev_get_drvdata(dev);
1479 struct stm32_port *stm32port = container_of(port,
1480 struct stm32_port, port);
1481
1482 clk_disable_unprepare(stm32port->clk);
1483
1484 return 0;
1485}
1486
1487static int __maybe_unused stm32_serial_runtime_resume(struct device *dev)
1488{
1489 struct uart_port *port = dev_get_drvdata(dev);
1490 struct stm32_port *stm32port = container_of(port,
1491 struct stm32_port, port);
1492
1493 return clk_prepare_enable(stm32port->clk);
1494}
1495
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001496static const struct dev_pm_ops stm32_serial_pm_ops = {
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001497 SET_RUNTIME_PM_OPS(stm32_serial_runtime_suspend,
1498 stm32_serial_runtime_resume, NULL)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001499 SET_SYSTEM_SLEEP_PM_OPS(stm32_serial_suspend, stm32_serial_resume)
1500};
1501
Maxime Coquelin48a60922015-06-10 21:19:36 +02001502static struct platform_driver stm32_serial_driver = {
1503 .probe = stm32_serial_probe,
1504 .remove = stm32_serial_remove,
1505 .driver = {
1506 .name = DRIVER_NAME,
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001507 .pm = &stm32_serial_pm_ops,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001508 .of_match_table = of_match_ptr(stm32_match),
1509 },
1510};
1511
1512static int __init usart_init(void)
1513{
1514 static char banner[] __initdata = "STM32 USART driver initialized";
1515 int ret;
1516
1517 pr_info("%s\n", banner);
1518
1519 ret = uart_register_driver(&stm32_usart_driver);
1520 if (ret)
1521 return ret;
1522
1523 ret = platform_driver_register(&stm32_serial_driver);
1524 if (ret)
1525 uart_unregister_driver(&stm32_usart_driver);
1526
1527 return ret;
1528}
1529
1530static void __exit usart_exit(void)
1531{
1532 platform_driver_unregister(&stm32_serial_driver);
1533 uart_unregister_driver(&stm32_usart_driver);
1534}
1535
1536module_init(usart_init);
1537module_exit(usart_exit);
1538
1539MODULE_ALIAS("platform:" DRIVER_NAME);
1540MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
1541MODULE_LICENSE("GPL v2");