1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) Maxime Coquelin 2015
4 * Copyright (C) STMicroelectronics SA 2017
5 * Authors: Maxime Coquelin <mcoquelin.stm32@gmail.com>
6 * Gerald Baeza <gerald.baeza@foss.st.com>
7 * Erwan Le Ray <erwan.leray@foss.st.com>
8 *
9 * Inspired by st-asc.c from STMicroelectronics (c)
10 */
11
12 #include <linux/clk.h>
13 #include <linux/console.h>
14 #include <linux/delay.h>
15 #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>
22 #include <linux/of.h>
23 #include <linux/of_platform.h>
24 #include <linux/pinctrl/consumer.h>
25 #include <linux/platform_device.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/pm_wakeirq.h>
28 #include <linux/serial_core.h>
29 #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>
34
35 #include "serial_mctrl_gpio.h"
36 #include "stm32-usart.h"
37
38 static void stm32_usart_stop_tx(struct uart_port *port);
39 static void stm32_usart_transmit_chars(struct uart_port *port);
40
to_stm32_port(struct uart_port * port)41 static inline struct stm32_port *to_stm32_port(struct uart_port *port)
42 {
43 return container_of(port, struct stm32_port, port);
44 }
45
stm32_usart_set_bits(struct uart_port * port,u32 reg,u32 bits)46 static void stm32_usart_set_bits(struct uart_port *port, u32 reg, u32 bits)
47 {
48 u32 val;
49
50 val = readl_relaxed(port->membase + reg);
51 val |= bits;
52 writel_relaxed(val, port->membase + reg);
53 }
54
stm32_usart_clr_bits(struct uart_port * port,u32 reg,u32 bits)55 static void stm32_usart_clr_bits(struct uart_port *port, u32 reg, u32 bits)
56 {
57 u32 val;
58
59 val = readl_relaxed(port->membase + reg);
60 val &= ~bits;
61 writel_relaxed(val, port->membase + reg);
62 }
63
stm32_usart_tx_empty(struct uart_port * port)64 static unsigned int stm32_usart_tx_empty(struct uart_port *port)
65 {
66 struct stm32_port *stm32_port = to_stm32_port(port);
67 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
68
69 if (readl_relaxed(port->membase + ofs->isr) & USART_SR_TC)
70 return TIOCSER_TEMT;
71
72 return 0;
73 }
74
stm32_usart_rs485_rts_enable(struct uart_port * port)75 static void stm32_usart_rs485_rts_enable(struct uart_port *port)
76 {
77 struct stm32_port *stm32_port = to_stm32_port(port);
78 struct serial_rs485 *rs485conf = &port->rs485;
79
80 if (stm32_port->hw_flow_control ||
81 !(rs485conf->flags & SER_RS485_ENABLED))
82 return;
83
84 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
85 mctrl_gpio_set(stm32_port->gpios,
86 stm32_port->port.mctrl | TIOCM_RTS);
87 } else {
88 mctrl_gpio_set(stm32_port->gpios,
89 stm32_port->port.mctrl & ~TIOCM_RTS);
90 }
91 }
92
stm32_usart_rs485_rts_disable(struct uart_port * port)93 static void stm32_usart_rs485_rts_disable(struct uart_port *port)
94 {
95 struct stm32_port *stm32_port = to_stm32_port(port);
96 struct serial_rs485 *rs485conf = &port->rs485;
97
98 if (stm32_port->hw_flow_control ||
99 !(rs485conf->flags & SER_RS485_ENABLED))
100 return;
101
102 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
103 mctrl_gpio_set(stm32_port->gpios,
104 stm32_port->port.mctrl & ~TIOCM_RTS);
105 } else {
106 mctrl_gpio_set(stm32_port->gpios,
107 stm32_port->port.mctrl | TIOCM_RTS);
108 }
109 }
110
stm32_usart_config_reg_rs485(u32 * cr1,u32 * cr3,u32 delay_ADE,u32 delay_DDE,u32 baud)111 static void stm32_usart_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE,
112 u32 delay_DDE, u32 baud)
113 {
114 u32 rs485_deat_dedt;
115 u32 rs485_deat_dedt_max = (USART_CR1_DEAT_MASK >> USART_CR1_DEAT_SHIFT);
116 bool over8;
117
118 *cr3 |= USART_CR3_DEM;
119 over8 = *cr1 & USART_CR1_OVER8;
120
121 *cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
122
123 if (over8)
124 rs485_deat_dedt = delay_ADE * baud * 8;
125 else
126 rs485_deat_dedt = delay_ADE * baud * 16;
127
128 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
129 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
130 rs485_deat_dedt_max : rs485_deat_dedt;
131 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEAT_SHIFT) &
132 USART_CR1_DEAT_MASK;
133 *cr1 |= rs485_deat_dedt;
134
135 if (over8)
136 rs485_deat_dedt = delay_DDE * baud * 8;
137 else
138 rs485_deat_dedt = delay_DDE * baud * 16;
139
140 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
141 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
142 rs485_deat_dedt_max : rs485_deat_dedt;
143 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEDT_SHIFT) &
144 USART_CR1_DEDT_MASK;
145 *cr1 |= rs485_deat_dedt;
146 }
147
stm32_usart_config_rs485(struct uart_port * port,struct serial_rs485 * rs485conf)148 static int stm32_usart_config_rs485(struct uart_port *port,
149 struct serial_rs485 *rs485conf)
150 {
151 struct stm32_port *stm32_port = to_stm32_port(port);
152 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
153 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
154 u32 usartdiv, baud, cr1, cr3;
155 bool over8;
156
157 stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
158
159 port->rs485 = *rs485conf;
160
161 rs485conf->flags |= SER_RS485_RX_DURING_TX;
162
163 if (rs485conf->flags & SER_RS485_ENABLED) {
164 cr1 = readl_relaxed(port->membase + ofs->cr1);
165 cr3 = readl_relaxed(port->membase + ofs->cr3);
166 usartdiv = readl_relaxed(port->membase + ofs->brr);
167 usartdiv = usartdiv & GENMASK(15, 0);
168 over8 = cr1 & USART_CR1_OVER8;
169
170 if (over8)
171 usartdiv = usartdiv | (usartdiv & GENMASK(4, 0))
172 << USART_BRR_04_R_SHIFT;
173
174 baud = DIV_ROUND_CLOSEST(port->uartclk, usartdiv);
175 stm32_usart_config_reg_rs485(&cr1, &cr3,
176 rs485conf->delay_rts_before_send,
177 rs485conf->delay_rts_after_send,
178 baud);
179
180 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
181 cr3 &= ~USART_CR3_DEP;
182 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
183 } else {
184 cr3 |= USART_CR3_DEP;
185 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
186 }
187
188 writel_relaxed(cr3, port->membase + ofs->cr3);
189 writel_relaxed(cr1, port->membase + ofs->cr1);
190 } else {
191 stm32_usart_clr_bits(port, ofs->cr3,
192 USART_CR3_DEM | USART_CR3_DEP);
193 stm32_usart_clr_bits(port, ofs->cr1,
194 USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
195 }
196
197 stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
198
199 /* Adjust RTS polarity in case it's driven in software */
200 if (stm32_usart_tx_empty(port))
201 stm32_usart_rs485_rts_disable(port);
202 else
203 stm32_usart_rs485_rts_enable(port);
204
205 return 0;
206 }
207
stm32_usart_init_rs485(struct uart_port * port,struct platform_device * pdev)208 static int stm32_usart_init_rs485(struct uart_port *port,
209 struct platform_device *pdev)
210 {
211 struct serial_rs485 *rs485conf = &port->rs485;
212
213 rs485conf->flags = 0;
214 rs485conf->delay_rts_before_send = 0;
215 rs485conf->delay_rts_after_send = 0;
216
217 if (!pdev->dev.of_node)
218 return -ENODEV;
219
220 return uart_get_rs485_mode(port);
221 }
222
stm32_usart_pending_rx(struct uart_port * port,u32 * sr,int * last_res,bool threaded)223 static int stm32_usart_pending_rx(struct uart_port *port, u32 *sr,
224 int *last_res, bool threaded)
225 {
226 struct stm32_port *stm32_port = to_stm32_port(port);
227 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
228 enum dma_status status;
229 struct dma_tx_state state;
230
231 *sr = readl_relaxed(port->membase + ofs->isr);
232
233 if (threaded && stm32_port->rx_ch) {
234 status = dmaengine_tx_status(stm32_port->rx_ch,
235 stm32_port->rx_ch->cookie,
236 &state);
237 if (status == DMA_IN_PROGRESS && (*last_res != state.residue))
238 return 1;
239 else
240 return 0;
241 } else if (*sr & USART_SR_RXNE) {
242 return 1;
243 }
244 return 0;
245 }
246
stm32_usart_get_char(struct uart_port * port,u32 * sr,int * last_res)247 static unsigned long stm32_usart_get_char(struct uart_port *port, u32 *sr,
248 int *last_res)
249 {
250 struct stm32_port *stm32_port = to_stm32_port(port);
251 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
252 unsigned long c;
253
254 if (stm32_port->rx_ch) {
255 c = stm32_port->rx_buf[RX_BUF_L - (*last_res)--];
256 if ((*last_res) == 0)
257 *last_res = RX_BUF_L;
258 } else {
259 c = readl_relaxed(port->membase + ofs->rdr);
260 /* apply RDR data mask */
261 c &= stm32_port->rdr_mask;
262 }
263
264 return c;
265 }
266
stm32_usart_receive_chars(struct uart_port * port,bool irqflag)267 static void stm32_usart_receive_chars(struct uart_port *port, bool irqflag)
268 {
269 struct tty_port *tport = &port->state->port;
270 struct stm32_port *stm32_port = to_stm32_port(port);
271 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
272 unsigned long c, flags;
273 u32 sr;
274 char flag;
275
276 if (irqflag)
277 spin_lock_irqsave(&port->lock, flags);
278 else
279 spin_lock(&port->lock);
280
281 while (stm32_usart_pending_rx(port, &sr, &stm32_port->last_res,
282 irqflag)) {
283 sr |= USART_SR_DUMMY_RX;
284 flag = TTY_NORMAL;
285
286 /*
287 * Status bits has to be cleared before reading the RDR:
288 * In FIFO mode, reading the RDR will pop the next data
289 * (if any) along with its status bits into the SR.
290 * Not doing so leads to misalignement between RDR and SR,
291 * and clear status bits of the next rx data.
292 *
293 * Clear errors flags for stm32f7 and stm32h7 compatible
294 * devices. On stm32f4 compatible devices, the error bit is
295 * cleared by the sequence [read SR - read DR].
296 */
297 if ((sr & USART_SR_ERR_MASK) && ofs->icr != UNDEF_REG)
298 writel_relaxed(sr & USART_SR_ERR_MASK,
299 port->membase + ofs->icr);
300
301 c = stm32_usart_get_char(port, &sr, &stm32_port->last_res);
302 port->icount.rx++;
303 if (sr & USART_SR_ERR_MASK) {
304 if (sr & USART_SR_ORE) {
305 port->icount.overrun++;
306 } else if (sr & USART_SR_PE) {
307 port->icount.parity++;
308 } else if (sr & USART_SR_FE) {
309 /* Break detection if character is null */
310 if (!c) {
311 port->icount.brk++;
312 if (uart_handle_break(port))
313 continue;
314 } else {
315 port->icount.frame++;
316 }
317 }
318
319 sr &= port->read_status_mask;
320
321 if (sr & USART_SR_PE) {
322 flag = TTY_PARITY;
323 } else if (sr & USART_SR_FE) {
324 if (!c)
325 flag = TTY_BREAK;
326 else
327 flag = TTY_FRAME;
328 }
329 }
330
331 if (uart_prepare_sysrq_char(port, c))
332 continue;
333 uart_insert_char(port, sr, USART_SR_ORE, c, flag);
334 }
335
336 if (irqflag)
337 uart_unlock_and_check_sysrq_irqrestore(port, irqflag);
338 else
339 uart_unlock_and_check_sysrq(port);
340
341 tty_flip_buffer_push(tport);
342 }
343
stm32_usart_tx_dma_complete(void * arg)344 static void stm32_usart_tx_dma_complete(void *arg)
345 {
346 struct uart_port *port = arg;
347 struct stm32_port *stm32port = to_stm32_port(port);
348 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
349 unsigned long flags;
350
351 dmaengine_terminate_async(stm32port->tx_ch);
352 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
353 stm32port->tx_dma_busy = false;
354
355 /* Let's see if we have pending data to send */
356 spin_lock_irqsave(&port->lock, flags);
357 stm32_usart_transmit_chars(port);
358 spin_unlock_irqrestore(&port->lock, flags);
359 }
360
stm32_usart_tx_interrupt_enable(struct uart_port * port)361 static void stm32_usart_tx_interrupt_enable(struct uart_port *port)
362 {
363 struct stm32_port *stm32_port = to_stm32_port(port);
364 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
365
366 /*
367 * Enables TX FIFO threashold irq when FIFO is enabled,
368 * or TX empty irq when FIFO is disabled
369 */
370 if (stm32_port->fifoen && stm32_port->txftcfg >= 0)
371 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_TXFTIE);
372 else
373 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
374 }
375
stm32_usart_tc_interrupt_enable(struct uart_port * port)376 static void stm32_usart_tc_interrupt_enable(struct uart_port *port)
377 {
378 struct stm32_port *stm32_port = to_stm32_port(port);
379 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
380
381 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_TCIE);
382 }
383
stm32_usart_tx_interrupt_disable(struct uart_port * port)384 static void stm32_usart_tx_interrupt_disable(struct uart_port *port)
385 {
386 struct stm32_port *stm32_port = to_stm32_port(port);
387 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
388
389 if (stm32_port->fifoen && stm32_port->txftcfg >= 0)
390 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE);
391 else
392 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
393 }
394
stm32_usart_tc_interrupt_disable(struct uart_port * port)395 static void stm32_usart_tc_interrupt_disable(struct uart_port *port)
396 {
397 struct stm32_port *stm32_port = to_stm32_port(port);
398 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
399
400 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_TCIE);
401 }
402
stm32_usart_transmit_chars_pio(struct uart_port * port)403 static void stm32_usart_transmit_chars_pio(struct uart_port *port)
404 {
405 struct stm32_port *stm32_port = to_stm32_port(port);
406 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
407 struct circ_buf *xmit = &port->state->xmit;
408
409 if (stm32_port->tx_dma_busy) {
410 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
411 stm32_port->tx_dma_busy = false;
412 }
413
414 while (!uart_circ_empty(xmit)) {
415 /* Check that TDR is empty before filling FIFO */
416 if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
417 break;
418 writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
419 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
420 port->icount.tx++;
421 }
422
423 /* rely on TXE irq (mask or unmask) for sending remaining data */
424 if (uart_circ_empty(xmit))
425 stm32_usart_tx_interrupt_disable(port);
426 else
427 stm32_usart_tx_interrupt_enable(port);
428 }
429
stm32_usart_transmit_chars_dma(struct uart_port * port)430 static void stm32_usart_transmit_chars_dma(struct uart_port *port)
431 {
432 struct stm32_port *stm32port = to_stm32_port(port);
433 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
434 struct circ_buf *xmit = &port->state->xmit;
435 struct dma_async_tx_descriptor *desc = NULL;
436 unsigned int count, i;
437
438 if (stm32port->tx_dma_busy)
439 return;
440
441 stm32port->tx_dma_busy = true;
442
443 count = uart_circ_chars_pending(xmit);
444
445 if (count > TX_BUF_L)
446 count = TX_BUF_L;
447
448 if (xmit->tail < xmit->head) {
449 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
450 } else {
451 size_t one = UART_XMIT_SIZE - xmit->tail;
452 size_t two;
453
454 if (one > count)
455 one = count;
456 two = count - one;
457
458 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
459 if (two)
460 memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
461 }
462
463 desc = dmaengine_prep_slave_single(stm32port->tx_ch,
464 stm32port->tx_dma_buf,
465 count,
466 DMA_MEM_TO_DEV,
467 DMA_PREP_INTERRUPT);
468
469 if (!desc)
470 goto fallback_err;
471
472 desc->callback = stm32_usart_tx_dma_complete;
473 desc->callback_param = port;
474
475 /* Push current DMA TX transaction in the pending queue */
476 if (dma_submit_error(dmaengine_submit(desc))) {
477 /* dma no yet started, safe to free resources */
478 dmaengine_terminate_async(stm32port->tx_ch);
479 goto fallback_err;
480 }
481
482 /* Issue pending DMA TX requests */
483 dma_async_issue_pending(stm32port->tx_ch);
484
485 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
486
487 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
488 port->icount.tx += count;
489 return;
490
491 fallback_err:
492 for (i = count; i > 0; i--)
493 stm32_usart_transmit_chars_pio(port);
494 }
495
stm32_usart_transmit_chars(struct uart_port * port)496 static void stm32_usart_transmit_chars(struct uart_port *port)
497 {
498 struct stm32_port *stm32_port = to_stm32_port(port);
499 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
500 struct circ_buf *xmit = &port->state->xmit;
501 u32 isr;
502 int ret;
503
504 if (!stm32_port->hw_flow_control &&
505 port->rs485.flags & SER_RS485_ENABLED &&
506 (port->x_char ||
507 !(uart_circ_empty(xmit) || uart_tx_stopped(port)))) {
508 stm32_usart_tc_interrupt_disable(port);
509 stm32_usart_rs485_rts_enable(port);
510 }
511
512 if (port->x_char) {
513 if (stm32_port->tx_dma_busy)
514 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
515
516 /* Check that TDR is empty before filling FIFO */
517 ret =
518 readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
519 isr,
520 (isr & USART_SR_TXE),
521 10, 1000);
522 if (ret)
523 dev_warn(port->dev, "1 character may be erased\n");
524
525 writel_relaxed(port->x_char, port->membase + ofs->tdr);
526 port->x_char = 0;
527 port->icount.tx++;
528 if (stm32_port->tx_dma_busy)
529 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT);
530 return;
531 }
532
533 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
534 stm32_usart_tx_interrupt_disable(port);
535 return;
536 }
537
538 if (ofs->icr == UNDEF_REG)
539 stm32_usart_clr_bits(port, ofs->isr, USART_SR_TC);
540 else
541 writel_relaxed(USART_ICR_TCCF, port->membase + ofs->icr);
542
543 if (stm32_port->tx_ch)
544 stm32_usart_transmit_chars_dma(port);
545 else
546 stm32_usart_transmit_chars_pio(port);
547
548 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
549 uart_write_wakeup(port);
550
551 if (uart_circ_empty(xmit)) {
552 stm32_usart_tx_interrupt_disable(port);
553 if (!stm32_port->hw_flow_control &&
554 port->rs485.flags & SER_RS485_ENABLED) {
555 stm32_port->txdone = true;
556 stm32_usart_tc_interrupt_enable(port);
557 }
558 }
559 }
560
stm32_usart_interrupt(int irq,void * ptr)561 static irqreturn_t stm32_usart_interrupt(int irq, void *ptr)
562 {
563 struct uart_port *port = ptr;
564 struct tty_port *tport = &port->state->port;
565 struct stm32_port *stm32_port = to_stm32_port(port);
566 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
567 u32 sr;
568
569 sr = readl_relaxed(port->membase + ofs->isr);
570
571 if (!stm32_port->hw_flow_control &&
572 port->rs485.flags & SER_RS485_ENABLED &&
573 (sr & USART_SR_TC)) {
574 stm32_usart_tc_interrupt_disable(port);
575 stm32_usart_rs485_rts_disable(port);
576 }
577
578 if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG)
579 writel_relaxed(USART_ICR_RTOCF,
580 port->membase + ofs->icr);
581
582 if ((sr & USART_SR_WUF) && ofs->icr != UNDEF_REG) {
583 /* Clear wake up flag and disable wake up interrupt */
584 writel_relaxed(USART_ICR_WUCF,
585 port->membase + ofs->icr);
586 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE);
587 if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
588 pm_wakeup_event(tport->tty->dev, 0);
589 }
590
591 if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch))
592 stm32_usart_receive_chars(port, false);
593
594 if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch)) {
595 spin_lock(&port->lock);
596 stm32_usart_transmit_chars(port);
597 spin_unlock(&port->lock);
598 }
599
600 if (stm32_port->rx_ch)
601 return IRQ_WAKE_THREAD;
602 else
603 return IRQ_HANDLED;
604 }
605
stm32_usart_threaded_interrupt(int irq,void * ptr)606 static irqreturn_t stm32_usart_threaded_interrupt(int irq, void *ptr)
607 {
608 struct uart_port *port = ptr;
609
610 /* Receiver timeout irq for DMA RX */
611 stm32_usart_receive_chars(port, false);
612
613 return IRQ_HANDLED;
614 }
615
stm32_usart_set_mctrl(struct uart_port * port,unsigned int mctrl)616 static void stm32_usart_set_mctrl(struct uart_port *port, unsigned int mctrl)
617 {
618 struct stm32_port *stm32_port = to_stm32_port(port);
619 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
620
621 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
622 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_RTSE);
623 else
624 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
625
626 mctrl_gpio_set(stm32_port->gpios, mctrl);
627 }
628
stm32_usart_get_mctrl(struct uart_port * port)629 static unsigned int stm32_usart_get_mctrl(struct uart_port *port)
630 {
631 struct stm32_port *stm32_port = to_stm32_port(port);
632 unsigned int ret;
633
634 /* This routine is used to get signals of: DCD, DSR, RI, and CTS */
635 ret = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
636
637 return mctrl_gpio_get(stm32_port->gpios, &ret);
638 }
639
stm32_usart_enable_ms(struct uart_port * port)640 static void stm32_usart_enable_ms(struct uart_port *port)
641 {
642 mctrl_gpio_enable_ms(to_stm32_port(port)->gpios);
643 }
644
stm32_usart_disable_ms(struct uart_port * port)645 static void stm32_usart_disable_ms(struct uart_port *port)
646 {
647 mctrl_gpio_disable_ms(to_stm32_port(port)->gpios);
648 }
649
650 /* Transmit stop */
stm32_usart_stop_tx(struct uart_port * port)651 static void stm32_usart_stop_tx(struct uart_port *port)
652 {
653 stm32_usart_tx_interrupt_disable(port);
654
655 stm32_usart_rs485_rts_disable(port);
656 }
657
658 /* There are probably characters waiting to be transmitted. */
stm32_usart_start_tx(struct uart_port * port)659 static void stm32_usart_start_tx(struct uart_port *port)
660 {
661 struct circ_buf *xmit = &port->state->xmit;
662
663 if (uart_circ_empty(xmit) && !port->x_char) {
664 stm32_usart_rs485_rts_disable(port);
665 return;
666 }
667
668 stm32_usart_rs485_rts_enable(port);
669
670 stm32_usart_transmit_chars(port);
671 }
672
673 /* Flush the transmit buffer. */
stm32_usart_flush_buffer(struct uart_port * port)674 static void stm32_usart_flush_buffer(struct uart_port *port)
675 {
676 struct stm32_port *stm32_port = to_stm32_port(port);
677 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
678
679 if (stm32_port->tx_ch) {
680 dmaengine_terminate_async(stm32_port->tx_ch);
681 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
682 stm32_port->tx_dma_busy = false;
683 }
684 }
685
686 /* Throttle the remote when input buffer is about to overflow. */
stm32_usart_throttle(struct uart_port * port)687 static void stm32_usart_throttle(struct uart_port *port)
688 {
689 struct stm32_port *stm32_port = to_stm32_port(port);
690 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
691 unsigned long flags;
692
693 spin_lock_irqsave(&port->lock, flags);
694 stm32_usart_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
695 if (stm32_port->cr3_irq)
696 stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
697
698 spin_unlock_irqrestore(&port->lock, flags);
699 }
700
701 /* Unthrottle the remote, the input buffer can now accept data. */
stm32_usart_unthrottle(struct uart_port * port)702 static void stm32_usart_unthrottle(struct uart_port *port)
703 {
704 struct stm32_port *stm32_port = to_stm32_port(port);
705 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
706 unsigned long flags;
707
708 spin_lock_irqsave(&port->lock, flags);
709 stm32_usart_set_bits(port, ofs->cr1, stm32_port->cr1_irq);
710 if (stm32_port->cr3_irq)
711 stm32_usart_set_bits(port, ofs->cr3, stm32_port->cr3_irq);
712
713 spin_unlock_irqrestore(&port->lock, flags);
714 }
715
716 /* Receive stop */
stm32_usart_stop_rx(struct uart_port * port)717 static void stm32_usart_stop_rx(struct uart_port *port)
718 {
719 struct stm32_port *stm32_port = to_stm32_port(port);
720 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
721
722 stm32_usart_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
723 if (stm32_port->cr3_irq)
724 stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
725 }
726
727 /* Handle breaks - ignored by us */
stm32_usart_break_ctl(struct uart_port * port,int break_state)728 static void stm32_usart_break_ctl(struct uart_port *port, int break_state)
729 {
730 }
731
stm32_usart_startup(struct uart_port * port)732 static int stm32_usart_startup(struct uart_port *port)
733 {
734 struct stm32_port *stm32_port = to_stm32_port(port);
735 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
736 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
737 const char *name = to_platform_device(port->dev)->name;
738 u32 val;
739 int ret;
740
741 ret = request_threaded_irq(port->irq, stm32_usart_interrupt,
742 stm32_usart_threaded_interrupt,
743 IRQF_ONESHOT | IRQF_NO_SUSPEND,
744 name, port);
745 if (ret)
746 return ret;
747
748 if (stm32_port->swap) {
749 val = readl_relaxed(port->membase + ofs->cr2);
750 val |= USART_CR2_SWAP;
751 writel_relaxed(val, port->membase + ofs->cr2);
752 }
753
754 /* RX FIFO Flush */
755 if (ofs->rqr != UNDEF_REG)
756 writel_relaxed(USART_RQR_RXFRQ, port->membase + ofs->rqr);
757
758 /* RX enabling */
759 val = stm32_port->cr1_irq | USART_CR1_RE | BIT(cfg->uart_enable_bit);
760 stm32_usart_set_bits(port, ofs->cr1, val);
761
762 return 0;
763 }
764
stm32_usart_shutdown(struct uart_port * port)765 static void stm32_usart_shutdown(struct uart_port *port)
766 {
767 struct stm32_port *stm32_port = to_stm32_port(port);
768 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
769 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
770 u32 val, isr;
771 int ret;
772
773 if (stm32_port->tx_dma_busy) {
774 dmaengine_terminate_async(stm32_port->tx_ch);
775 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
776 }
777
778 /* Disable modem control interrupts */
779 stm32_usart_disable_ms(port);
780
781 val = USART_CR1_TXEIE | USART_CR1_TE;
782 val |= stm32_port->cr1_irq | USART_CR1_RE;
783 val |= BIT(cfg->uart_enable_bit);
784 if (stm32_port->fifoen)
785 val |= USART_CR1_FIFOEN;
786
787 ret = readl_relaxed_poll_timeout(port->membase + ofs->isr,
788 isr, (isr & USART_SR_TC),
789 10, 100000);
790
791 /* Send the TC error message only when ISR_TC is not set */
792 if (ret)
793 dev_err(port->dev, "Transmission is not complete\n");
794
795 /* flush RX & TX FIFO */
796 if (ofs->rqr != UNDEF_REG)
797 writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ,
798 port->membase + ofs->rqr);
799
800 stm32_usart_clr_bits(port, ofs->cr1, val);
801
802 free_irq(port->irq, port);
803 }
804
stm32_usart_set_termios(struct uart_port * port,struct ktermios * termios,struct ktermios * old)805 static void stm32_usart_set_termios(struct uart_port *port,
806 struct ktermios *termios,
807 struct ktermios *old)
808 {
809 struct stm32_port *stm32_port = to_stm32_port(port);
810 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
811 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
812 struct serial_rs485 *rs485conf = &port->rs485;
813 unsigned int baud, bits;
814 u32 usartdiv, mantissa, fraction, oversampling;
815 tcflag_t cflag = termios->c_cflag;
816 u32 cr1, cr2, cr3, isr;
817 unsigned long flags;
818 int ret;
819
820 if (!stm32_port->hw_flow_control)
821 cflag &= ~CRTSCTS;
822
823 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
824
825 spin_lock_irqsave(&port->lock, flags);
826
827 ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
828 isr,
829 (isr & USART_SR_TC),
830 10, 100000);
831
832 /* Send the TC error message only when ISR_TC is not set. */
833 if (ret)
834 dev_err(port->dev, "Transmission is not complete\n");
835
836 /* Stop serial port and reset value */
837 writel_relaxed(0, port->membase + ofs->cr1);
838
839 /* flush RX & TX FIFO */
840 if (ofs->rqr != UNDEF_REG)
841 writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ,
842 port->membase + ofs->rqr);
843
844 cr1 = USART_CR1_TE | USART_CR1_RE;
845 if (stm32_port->fifoen)
846 cr1 |= USART_CR1_FIFOEN;
847 cr2 = stm32_port->swap ? USART_CR2_SWAP : 0;
848
849 /* Tx and RX FIFO configuration */
850 cr3 = readl_relaxed(port->membase + ofs->cr3);
851 cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTIE;
852 if (stm32_port->fifoen) {
853 if (stm32_port->txftcfg >= 0)
854 cr3 |= stm32_port->txftcfg << USART_CR3_TXFTCFG_SHIFT;
855 if (stm32_port->rxftcfg >= 0)
856 cr3 |= stm32_port->rxftcfg << USART_CR3_RXFTCFG_SHIFT;
857 }
858
859 if (cflag & CSTOPB)
860 cr2 |= USART_CR2_STOP_2B;
861
862 bits = tty_get_char_size(cflag);
863 stm32_port->rdr_mask = (BIT(bits) - 1);
864
865 if (cflag & PARENB) {
866 bits++;
867 cr1 |= USART_CR1_PCE;
868 }
869
870 /*
871 * Word length configuration:
872 * CS8 + parity, 9 bits word aka [M1:M0] = 0b01
873 * CS7 or (CS6 + parity), 7 bits word aka [M1:M0] = 0b10
874 * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00
875 * M0 and M1 already cleared by cr1 initialization.
876 */
877 if (bits == 9) {
878 cr1 |= USART_CR1_M0;
879 } else if ((bits == 7) && cfg->has_7bits_data) {
880 cr1 |= USART_CR1_M1;
881 } else if (bits != 8) {
882 dev_dbg(port->dev, "Unsupported data bits config: %u bits\n"
883 , bits);
884 cflag &= ~CSIZE;
885 cflag |= CS8;
886 termios->c_cflag = cflag;
887 bits = 8;
888 if (cflag & PARENB) {
889 bits++;
890 cr1 |= USART_CR1_M0;
891 }
892 }
893
894 if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch ||
895 (stm32_port->fifoen &&
896 stm32_port->rxftcfg >= 0))) {
897 if (cflag & CSTOPB)
898 bits = bits + 3; /* 1 start bit + 2 stop bits */
899 else
900 bits = bits + 2; /* 1 start bit + 1 stop bit */
901
902 /* RX timeout irq to occur after last stop bit + bits */
903 stm32_port->cr1_irq = USART_CR1_RTOIE;
904 writel_relaxed(bits, port->membase + ofs->rtor);
905 cr2 |= USART_CR2_RTOEN;
906 /* Not using dma, enable fifo threshold irq */
907 if (!stm32_port->rx_ch)
908 stm32_port->cr3_irq = USART_CR3_RXFTIE;
909 }
910
911 cr1 |= stm32_port->cr1_irq;
912 cr3 |= stm32_port->cr3_irq;
913
914 if (cflag & PARODD)
915 cr1 |= USART_CR1_PS;
916
917 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
918 if (cflag & CRTSCTS) {
919 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
920 cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
921 }
922
923 usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
924
925 /*
926 * The USART supports 16 or 8 times oversampling.
927 * By default we prefer 16 times oversampling, so that the receiver
928 * has a better tolerance to clock deviations.
929 * 8 times oversampling is only used to achieve higher speeds.
930 */
931 if (usartdiv < 16) {
932 oversampling = 8;
933 cr1 |= USART_CR1_OVER8;
934 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_OVER8);
935 } else {
936 oversampling = 16;
937 cr1 &= ~USART_CR1_OVER8;
938 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
939 }
940
941 mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
942 fraction = usartdiv % oversampling;
943 writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
944
945 uart_update_timeout(port, cflag, baud);
946
947 port->read_status_mask = USART_SR_ORE;
948 if (termios->c_iflag & INPCK)
949 port->read_status_mask |= USART_SR_PE | USART_SR_FE;
950 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
951 port->read_status_mask |= USART_SR_FE;
952
953 /* Characters to ignore */
954 port->ignore_status_mask = 0;
955 if (termios->c_iflag & IGNPAR)
956 port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
957 if (termios->c_iflag & IGNBRK) {
958 port->ignore_status_mask |= USART_SR_FE;
959 /*
960 * If we're ignoring parity and break indicators,
961 * ignore overruns too (for real raw support).
962 */
963 if (termios->c_iflag & IGNPAR)
964 port->ignore_status_mask |= USART_SR_ORE;
965 }
966
967 /* Ignore all characters if CREAD is not set */
968 if ((termios->c_cflag & CREAD) == 0)
969 port->ignore_status_mask |= USART_SR_DUMMY_RX;
970
971 if (stm32_port->rx_ch)
972 cr3 |= USART_CR3_DMAR;
973
974 if (rs485conf->flags & SER_RS485_ENABLED) {
975 stm32_usart_config_reg_rs485(&cr1, &cr3,
976 rs485conf->delay_rts_before_send,
977 rs485conf->delay_rts_after_send,
978 baud);
979 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
980 cr3 &= ~USART_CR3_DEP;
981 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
982 } else {
983 cr3 |= USART_CR3_DEP;
984 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
985 }
986
987 } else {
988 cr3 &= ~(USART_CR3_DEM | USART_CR3_DEP);
989 cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
990 }
991
992 /* Configure wake up from low power on start bit detection */
993 if (stm32_port->wakeup_src) {
994 cr3 &= ~USART_CR3_WUS_MASK;
995 cr3 |= USART_CR3_WUS_START_BIT;
996 }
997
998 writel_relaxed(cr3, port->membase + ofs->cr3);
999 writel_relaxed(cr2, port->membase + ofs->cr2);
1000 writel_relaxed(cr1, port->membase + ofs->cr1);
1001
1002 stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1003 spin_unlock_irqrestore(&port->lock, flags);
1004
1005 /* Handle modem control interrupts */
1006 if (UART_ENABLE_MS(port, termios->c_cflag))
1007 stm32_usart_enable_ms(port);
1008 else
1009 stm32_usart_disable_ms(port);
1010 }
1011
stm32_usart_type(struct uart_port * port)1012 static const char *stm32_usart_type(struct uart_port *port)
1013 {
1014 return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
1015 }
1016
stm32_usart_release_port(struct uart_port * port)1017 static void stm32_usart_release_port(struct uart_port *port)
1018 {
1019 }
1020
stm32_usart_request_port(struct uart_port * port)1021 static int stm32_usart_request_port(struct uart_port *port)
1022 {
1023 return 0;
1024 }
1025
stm32_usart_config_port(struct uart_port * port,int flags)1026 static void stm32_usart_config_port(struct uart_port *port, int flags)
1027 {
1028 if (flags & UART_CONFIG_TYPE)
1029 port->type = PORT_STM32;
1030 }
1031
1032 static int
stm32_usart_verify_port(struct uart_port * port,struct serial_struct * ser)1033 stm32_usart_verify_port(struct uart_port *port, struct serial_struct *ser)
1034 {
1035 /* No user changeable parameters */
1036 return -EINVAL;
1037 }
1038
stm32_usart_pm(struct uart_port * port,unsigned int state,unsigned int oldstate)1039 static void stm32_usart_pm(struct uart_port *port, unsigned int state,
1040 unsigned int oldstate)
1041 {
1042 struct stm32_port *stm32port = container_of(port,
1043 struct stm32_port, port);
1044 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
1045 const struct stm32_usart_config *cfg = &stm32port->info->cfg;
1046 unsigned long flags;
1047
1048 switch (state) {
1049 case UART_PM_STATE_ON:
1050 pm_runtime_get_sync(port->dev);
1051 break;
1052 case UART_PM_STATE_OFF:
1053 spin_lock_irqsave(&port->lock, flags);
1054 stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1055 spin_unlock_irqrestore(&port->lock, flags);
1056 pm_runtime_put_sync(port->dev);
1057 break;
1058 }
1059 }
1060
1061 static const struct uart_ops stm32_uart_ops = {
1062 .tx_empty = stm32_usart_tx_empty,
1063 .set_mctrl = stm32_usart_set_mctrl,
1064 .get_mctrl = stm32_usart_get_mctrl,
1065 .stop_tx = stm32_usart_stop_tx,
1066 .start_tx = stm32_usart_start_tx,
1067 .throttle = stm32_usart_throttle,
1068 .unthrottle = stm32_usart_unthrottle,
1069 .stop_rx = stm32_usart_stop_rx,
1070 .enable_ms = stm32_usart_enable_ms,
1071 .break_ctl = stm32_usart_break_ctl,
1072 .startup = stm32_usart_startup,
1073 .shutdown = stm32_usart_shutdown,
1074 .flush_buffer = stm32_usart_flush_buffer,
1075 .set_termios = stm32_usart_set_termios,
1076 .pm = stm32_usart_pm,
1077 .type = stm32_usart_type,
1078 .release_port = stm32_usart_release_port,
1079 .request_port = stm32_usart_request_port,
1080 .config_port = stm32_usart_config_port,
1081 .verify_port = stm32_usart_verify_port,
1082 };
1083
1084 /*
1085 * STM32H7 RX & TX FIFO threshold configuration (CR3 RXFTCFG / TXFTCFG)
1086 * Note: 1 isn't a valid value in RXFTCFG / TXFTCFG. In this case,
1087 * RXNEIE / TXEIE can be used instead of threshold irqs: RXFTIE / TXFTIE.
1088 * So, RXFTCFG / TXFTCFG bitfields values are encoded as array index + 1.
1089 */
1090 static const u32 stm32h7_usart_fifo_thresh_cfg[] = { 1, 2, 4, 8, 12, 14, 16 };
1091
stm32_usart_get_ftcfg(struct platform_device * pdev,const char * p,int * ftcfg)1092 static void stm32_usart_get_ftcfg(struct platform_device *pdev, const char *p,
1093 int *ftcfg)
1094 {
1095 u32 bytes, i;
1096
1097 /* DT option to get RX & TX FIFO threshold (default to 8 bytes) */
1098 if (of_property_read_u32(pdev->dev.of_node, p, &bytes))
1099 bytes = 8;
1100
1101 for (i = 0; i < ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg); i++)
1102 if (stm32h7_usart_fifo_thresh_cfg[i] >= bytes)
1103 break;
1104 if (i >= ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg))
1105 i = ARRAY_SIZE(stm32h7_usart_fifo_thresh_cfg) - 1;
1106
1107 dev_dbg(&pdev->dev, "%s set to %d bytes\n", p,
1108 stm32h7_usart_fifo_thresh_cfg[i]);
1109
1110 /* Provide FIFO threshold ftcfg (1 is invalid: threshold irq unused) */
1111 if (i)
1112 *ftcfg = i - 1;
1113 else
1114 *ftcfg = -EINVAL;
1115 }
1116
stm32_usart_deinit_port(struct stm32_port * stm32port)1117 static void stm32_usart_deinit_port(struct stm32_port *stm32port)
1118 {
1119 clk_disable_unprepare(stm32port->clk);
1120 }
1121
stm32_usart_init_port(struct stm32_port * stm32port,struct platform_device * pdev)1122 static int stm32_usart_init_port(struct stm32_port *stm32port,
1123 struct platform_device *pdev)
1124 {
1125 struct uart_port *port = &stm32port->port;
1126 struct resource *res;
1127 int ret, irq;
1128
1129 irq = platform_get_irq(pdev, 0);
1130 if (irq < 0)
1131 return irq;
1132
1133 port->iotype = UPIO_MEM;
1134 port->flags = UPF_BOOT_AUTOCONF;
1135 port->ops = &stm32_uart_ops;
1136 port->dev = &pdev->dev;
1137 port->fifosize = stm32port->info->cfg.fifosize;
1138 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_STM32_CONSOLE);
1139 port->irq = irq;
1140 port->rs485_config = stm32_usart_config_rs485;
1141
1142 ret = stm32_usart_init_rs485(port, pdev);
1143 if (ret)
1144 return ret;
1145
1146 stm32port->wakeup_src = stm32port->info->cfg.has_wakeup &&
1147 of_property_read_bool(pdev->dev.of_node, "wakeup-source");
1148
1149 stm32port->swap = stm32port->info->cfg.has_swap &&
1150 of_property_read_bool(pdev->dev.of_node, "rx-tx-swap");
1151
1152 stm32port->fifoen = stm32port->info->cfg.has_fifo;
1153 if (stm32port->fifoen) {
1154 stm32_usart_get_ftcfg(pdev, "rx-threshold",
1155 &stm32port->rxftcfg);
1156 stm32_usart_get_ftcfg(pdev, "tx-threshold",
1157 &stm32port->txftcfg);
1158 }
1159
1160 port->membase = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
1161 if (IS_ERR(port->membase))
1162 return PTR_ERR(port->membase);
1163 port->mapbase = res->start;
1164
1165 spin_lock_init(&port->lock);
1166
1167 stm32port->clk = devm_clk_get(&pdev->dev, NULL);
1168 if (IS_ERR(stm32port->clk))
1169 return PTR_ERR(stm32port->clk);
1170
1171 /* Ensure that clk rate is correct by enabling the clk */
1172 ret = clk_prepare_enable(stm32port->clk);
1173 if (ret)
1174 return ret;
1175
1176 stm32port->port.uartclk = clk_get_rate(stm32port->clk);
1177 if (!stm32port->port.uartclk) {
1178 ret = -EINVAL;
1179 goto err_clk;
1180 }
1181
1182 stm32port->gpios = mctrl_gpio_init(&stm32port->port, 0);
1183 if (IS_ERR(stm32port->gpios)) {
1184 ret = PTR_ERR(stm32port->gpios);
1185 goto err_clk;
1186 }
1187
1188 /*
1189 * Both CTS/RTS gpios and "st,hw-flow-ctrl" (deprecated) or "uart-has-rtscts"
1190 * properties should not be specified.
1191 */
1192 if (stm32port->hw_flow_control) {
1193 if (mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_CTS) ||
1194 mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_RTS)) {
1195 dev_err(&pdev->dev, "Conflicting RTS/CTS config\n");
1196 ret = -EINVAL;
1197 goto err_clk;
1198 }
1199 }
1200
1201 return ret;
1202
1203 err_clk:
1204 clk_disable_unprepare(stm32port->clk);
1205
1206 return ret;
1207 }
1208
stm32_usart_of_get_port(struct platform_device * pdev)1209 static struct stm32_port *stm32_usart_of_get_port(struct platform_device *pdev)
1210 {
1211 struct device_node *np = pdev->dev.of_node;
1212 int id;
1213
1214 if (!np)
1215 return NULL;
1216
1217 id = of_alias_get_id(np, "serial");
1218 if (id < 0) {
1219 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
1220 return NULL;
1221 }
1222
1223 if (WARN_ON(id >= STM32_MAX_PORTS))
1224 return NULL;
1225
1226 stm32_ports[id].hw_flow_control =
1227 of_property_read_bool (np, "st,hw-flow-ctrl") /*deprecated*/ ||
1228 of_property_read_bool (np, "uart-has-rtscts");
1229 stm32_ports[id].port.line = id;
1230 stm32_ports[id].cr1_irq = USART_CR1_RXNEIE;
1231 stm32_ports[id].cr3_irq = 0;
1232 stm32_ports[id].last_res = RX_BUF_L;
1233 return &stm32_ports[id];
1234 }
1235
1236 #ifdef CONFIG_OF
1237 static const struct of_device_id stm32_match[] = {
1238 { .compatible = "st,stm32-uart", .data = &stm32f4_info},
1239 { .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
1240 { .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
1241 {},
1242 };
1243
1244 MODULE_DEVICE_TABLE(of, stm32_match);
1245 #endif
1246
stm32_usart_of_dma_rx_remove(struct stm32_port * stm32port,struct platform_device * pdev)1247 static void stm32_usart_of_dma_rx_remove(struct stm32_port *stm32port,
1248 struct platform_device *pdev)
1249 {
1250 if (stm32port->rx_buf)
1251 dma_free_coherent(&pdev->dev, RX_BUF_L, stm32port->rx_buf,
1252 stm32port->rx_dma_buf);
1253 }
1254
stm32_usart_of_dma_rx_probe(struct stm32_port * stm32port,struct platform_device * pdev)1255 static int stm32_usart_of_dma_rx_probe(struct stm32_port *stm32port,
1256 struct platform_device *pdev)
1257 {
1258 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
1259 struct uart_port *port = &stm32port->port;
1260 struct device *dev = &pdev->dev;
1261 struct dma_slave_config config;
1262 struct dma_async_tx_descriptor *desc = NULL;
1263 int ret;
1264
1265 /*
1266 * Using DMA and threaded handler for the console could lead to
1267 * deadlocks.
1268 */
1269 if (uart_console(port))
1270 return -ENODEV;
1271
1272 stm32port->rx_buf = dma_alloc_coherent(dev, RX_BUF_L,
1273 &stm32port->rx_dma_buf,
1274 GFP_KERNEL);
1275 if (!stm32port->rx_buf)
1276 return -ENOMEM;
1277
1278 /* Configure DMA channel */
1279 memset(&config, 0, sizeof(config));
1280 config.src_addr = port->mapbase + ofs->rdr;
1281 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1282
1283 ret = dmaengine_slave_config(stm32port->rx_ch, &config);
1284 if (ret < 0) {
1285 dev_err(dev, "rx dma channel config failed\n");
1286 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1287 return ret;
1288 }
1289
1290 /* Prepare a DMA cyclic transaction */
1291 desc = dmaengine_prep_dma_cyclic(stm32port->rx_ch,
1292 stm32port->rx_dma_buf,
1293 RX_BUF_L, RX_BUF_P, DMA_DEV_TO_MEM,
1294 DMA_PREP_INTERRUPT);
1295 if (!desc) {
1296 dev_err(dev, "rx dma prep cyclic failed\n");
1297 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1298 return -ENODEV;
1299 }
1300
1301 /* No callback as dma buffer is drained on usart interrupt */
1302 desc->callback = NULL;
1303 desc->callback_param = NULL;
1304
1305 /* Push current DMA transaction in the pending queue */
1306 ret = dma_submit_error(dmaengine_submit(desc));
1307 if (ret) {
1308 dmaengine_terminate_sync(stm32port->rx_ch);
1309 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1310 return ret;
1311 }
1312
1313 /* Issue pending DMA requests */
1314 dma_async_issue_pending(stm32port->rx_ch);
1315
1316 return 0;
1317 }
1318
stm32_usart_of_dma_tx_remove(struct stm32_port * stm32port,struct platform_device * pdev)1319 static void stm32_usart_of_dma_tx_remove(struct stm32_port *stm32port,
1320 struct platform_device *pdev)
1321 {
1322 if (stm32port->tx_buf)
1323 dma_free_coherent(&pdev->dev, TX_BUF_L, stm32port->tx_buf,
1324 stm32port->tx_dma_buf);
1325 }
1326
stm32_usart_of_dma_tx_probe(struct stm32_port * stm32port,struct platform_device * pdev)1327 static int stm32_usart_of_dma_tx_probe(struct stm32_port *stm32port,
1328 struct platform_device *pdev)
1329 {
1330 const struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
1331 struct uart_port *port = &stm32port->port;
1332 struct device *dev = &pdev->dev;
1333 struct dma_slave_config config;
1334 int ret;
1335
1336 stm32port->tx_dma_busy = false;
1337
1338 stm32port->tx_buf = dma_alloc_coherent(dev, TX_BUF_L,
1339 &stm32port->tx_dma_buf,
1340 GFP_KERNEL);
1341 if (!stm32port->tx_buf)
1342 return -ENOMEM;
1343
1344 /* Configure DMA channel */
1345 memset(&config, 0, sizeof(config));
1346 config.dst_addr = port->mapbase + ofs->tdr;
1347 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1348
1349 ret = dmaengine_slave_config(stm32port->tx_ch, &config);
1350 if (ret < 0) {
1351 dev_err(dev, "tx dma channel config failed\n");
1352 stm32_usart_of_dma_tx_remove(stm32port, pdev);
1353 return ret;
1354 }
1355
1356 return 0;
1357 }
1358
stm32_usart_serial_probe(struct platform_device * pdev)1359 static int stm32_usart_serial_probe(struct platform_device *pdev)
1360 {
1361 struct stm32_port *stm32port;
1362 int ret;
1363
1364 stm32port = stm32_usart_of_get_port(pdev);
1365 if (!stm32port)
1366 return -ENODEV;
1367
1368 stm32port->info = of_device_get_match_data(&pdev->dev);
1369 if (!stm32port->info)
1370 return -EINVAL;
1371
1372 stm32port->rx_ch = dma_request_chan(&pdev->dev, "rx");
1373 if (PTR_ERR(stm32port->rx_ch) == -EPROBE_DEFER)
1374 return -EPROBE_DEFER;
1375
1376 /* Fall back in interrupt mode for any non-deferral error */
1377 if (IS_ERR(stm32port->rx_ch))
1378 stm32port->rx_ch = NULL;
1379
1380 stm32port->tx_ch = dma_request_chan(&pdev->dev, "tx");
1381 if (PTR_ERR(stm32port->tx_ch) == -EPROBE_DEFER) {
1382 ret = -EPROBE_DEFER;
1383 goto err_dma_rx;
1384 }
1385 /* Fall back in interrupt mode for any non-deferral error */
1386 if (IS_ERR(stm32port->tx_ch))
1387 stm32port->tx_ch = NULL;
1388
1389 ret = stm32_usart_init_port(stm32port, pdev);
1390 if (ret)
1391 goto err_dma_tx;
1392
1393 if (stm32port->wakeup_src) {
1394 device_set_wakeup_capable(&pdev->dev, true);
1395 ret = dev_pm_set_wake_irq(&pdev->dev, stm32port->port.irq);
1396 if (ret)
1397 goto err_deinit_port;
1398 }
1399
1400 if (stm32port->rx_ch && stm32_usart_of_dma_rx_probe(stm32port, pdev)) {
1401 /* Fall back in interrupt mode */
1402 dma_release_channel(stm32port->rx_ch);
1403 stm32port->rx_ch = NULL;
1404 }
1405
1406 if (stm32port->tx_ch && stm32_usart_of_dma_tx_probe(stm32port, pdev)) {
1407 /* Fall back in interrupt mode */
1408 dma_release_channel(stm32port->tx_ch);
1409 stm32port->tx_ch = NULL;
1410 }
1411
1412 if (!stm32port->rx_ch)
1413 dev_info(&pdev->dev, "interrupt mode for rx (no dma)\n");
1414 if (!stm32port->tx_ch)
1415 dev_info(&pdev->dev, "interrupt mode for tx (no dma)\n");
1416
1417 platform_set_drvdata(pdev, &stm32port->port);
1418
1419 pm_runtime_get_noresume(&pdev->dev);
1420 pm_runtime_set_active(&pdev->dev);
1421 pm_runtime_enable(&pdev->dev);
1422
1423 ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
1424 if (ret)
1425 goto err_port;
1426
1427 pm_runtime_put_sync(&pdev->dev);
1428
1429 return 0;
1430
1431 err_port:
1432 pm_runtime_disable(&pdev->dev);
1433 pm_runtime_set_suspended(&pdev->dev);
1434 pm_runtime_put_noidle(&pdev->dev);
1435
1436 if (stm32port->tx_ch)
1437 stm32_usart_of_dma_tx_remove(stm32port, pdev);
1438 if (stm32port->rx_ch)
1439 stm32_usart_of_dma_rx_remove(stm32port, pdev);
1440
1441 if (stm32port->wakeup_src)
1442 dev_pm_clear_wake_irq(&pdev->dev);
1443
1444 err_deinit_port:
1445 if (stm32port->wakeup_src)
1446 device_set_wakeup_capable(&pdev->dev, false);
1447
1448 stm32_usart_deinit_port(stm32port);
1449
1450 err_dma_tx:
1451 if (stm32port->tx_ch)
1452 dma_release_channel(stm32port->tx_ch);
1453
1454 err_dma_rx:
1455 if (stm32port->rx_ch)
1456 dma_release_channel(stm32port->rx_ch);
1457
1458 return ret;
1459 }
1460
stm32_usart_serial_remove(struct platform_device * pdev)1461 static int stm32_usart_serial_remove(struct platform_device *pdev)
1462 {
1463 struct uart_port *port = platform_get_drvdata(pdev);
1464 struct stm32_port *stm32_port = to_stm32_port(port);
1465 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1466 int err;
1467
1468 pm_runtime_get_sync(&pdev->dev);
1469 err = uart_remove_one_port(&stm32_usart_driver, port);
1470 if (err)
1471 return(err);
1472
1473 pm_runtime_disable(&pdev->dev);
1474 pm_runtime_set_suspended(&pdev->dev);
1475 pm_runtime_put_noidle(&pdev->dev);
1476
1477 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
1478
1479 if (stm32_port->tx_ch) {
1480 stm32_usart_of_dma_tx_remove(stm32_port, pdev);
1481 dma_release_channel(stm32_port->tx_ch);
1482 }
1483
1484 if (stm32_port->rx_ch) {
1485 dmaengine_terminate_async(stm32_port->rx_ch);
1486 stm32_usart_of_dma_rx_remove(stm32_port, pdev);
1487 dma_release_channel(stm32_port->rx_ch);
1488 }
1489
1490 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
1491
1492 if (stm32_port->wakeup_src) {
1493 dev_pm_clear_wake_irq(&pdev->dev);
1494 device_init_wakeup(&pdev->dev, false);
1495 }
1496
1497 stm32_usart_deinit_port(stm32_port);
1498
1499 return 0;
1500 }
1501
1502 #ifdef CONFIG_SERIAL_STM32_CONSOLE
stm32_usart_console_putchar(struct uart_port * port,int ch)1503 static void stm32_usart_console_putchar(struct uart_port *port, int ch)
1504 {
1505 struct stm32_port *stm32_port = to_stm32_port(port);
1506 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1507
1508 while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
1509 cpu_relax();
1510
1511 writel_relaxed(ch, port->membase + ofs->tdr);
1512 }
1513
stm32_usart_console_write(struct console * co,const char * s,unsigned int cnt)1514 static void stm32_usart_console_write(struct console *co, const char *s,
1515 unsigned int cnt)
1516 {
1517 struct uart_port *port = &stm32_ports[co->index].port;
1518 struct stm32_port *stm32_port = to_stm32_port(port);
1519 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1520 const struct stm32_usart_config *cfg = &stm32_port->info->cfg;
1521 unsigned long flags;
1522 u32 old_cr1, new_cr1;
1523 int locked = 1;
1524
1525 if (oops_in_progress)
1526 locked = spin_trylock_irqsave(&port->lock, flags);
1527 else
1528 spin_lock_irqsave(&port->lock, flags);
1529
1530 /* Save and disable interrupts, enable the transmitter */
1531 old_cr1 = readl_relaxed(port->membase + ofs->cr1);
1532 new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
1533 new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit);
1534 writel_relaxed(new_cr1, port->membase + ofs->cr1);
1535
1536 uart_console_write(port, s, cnt, stm32_usart_console_putchar);
1537
1538 /* Restore interrupt state */
1539 writel_relaxed(old_cr1, port->membase + ofs->cr1);
1540
1541 if (locked)
1542 spin_unlock_irqrestore(&port->lock, flags);
1543 }
1544
stm32_usart_console_setup(struct console * co,char * options)1545 static int stm32_usart_console_setup(struct console *co, char *options)
1546 {
1547 struct stm32_port *stm32port;
1548 int baud = 9600;
1549 int bits = 8;
1550 int parity = 'n';
1551 int flow = 'n';
1552
1553 if (co->index >= STM32_MAX_PORTS)
1554 return -ENODEV;
1555
1556 stm32port = &stm32_ports[co->index];
1557
1558 /*
1559 * This driver does not support early console initialization
1560 * (use ARM early printk support instead), so we only expect
1561 * this to be called during the uart port registration when the
1562 * driver gets probed and the port should be mapped at that point.
1563 */
1564 if (stm32port->port.mapbase == 0 || !stm32port->port.membase)
1565 return -ENXIO;
1566
1567 if (options)
1568 uart_parse_options(options, &baud, &parity, &bits, &flow);
1569
1570 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
1571 }
1572
1573 static struct console stm32_console = {
1574 .name = STM32_SERIAL_NAME,
1575 .device = uart_console_device,
1576 .write = stm32_usart_console_write,
1577 .setup = stm32_usart_console_setup,
1578 .flags = CON_PRINTBUFFER,
1579 .index = -1,
1580 .data = &stm32_usart_driver,
1581 };
1582
1583 #define STM32_SERIAL_CONSOLE (&stm32_console)
1584
1585 #else
1586 #define STM32_SERIAL_CONSOLE NULL
1587 #endif /* CONFIG_SERIAL_STM32_CONSOLE */
1588
1589 static struct uart_driver stm32_usart_driver = {
1590 .driver_name = DRIVER_NAME,
1591 .dev_name = STM32_SERIAL_NAME,
1592 .major = 0,
1593 .minor = 0,
1594 .nr = STM32_MAX_PORTS,
1595 .cons = STM32_SERIAL_CONSOLE,
1596 };
1597
stm32_usart_serial_en_wakeup(struct uart_port * port,bool enable)1598 static void __maybe_unused stm32_usart_serial_en_wakeup(struct uart_port *port,
1599 bool enable)
1600 {
1601 struct stm32_port *stm32_port = to_stm32_port(port);
1602 const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1603
1604 if (!stm32_port->wakeup_src)
1605 return;
1606
1607 /*
1608 * Enable low-power wake-up and wake-up irq if argument is set to
1609 * "enable", disable low-power wake-up and wake-up irq otherwise
1610 */
1611 if (enable) {
1612 stm32_usart_set_bits(port, ofs->cr1, USART_CR1_UESM);
1613 stm32_usart_set_bits(port, ofs->cr3, USART_CR3_WUFIE);
1614 } else {
1615 stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_UESM);
1616 stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE);
1617 }
1618 }
1619
stm32_usart_serial_suspend(struct device * dev)1620 static int __maybe_unused stm32_usart_serial_suspend(struct device *dev)
1621 {
1622 struct uart_port *port = dev_get_drvdata(dev);
1623
1624 uart_suspend_port(&stm32_usart_driver, port);
1625
1626 if (device_may_wakeup(dev) || device_wakeup_path(dev))
1627 stm32_usart_serial_en_wakeup(port, true);
1628
1629 /*
1630 * When "no_console_suspend" is enabled, keep the pinctrl default state
1631 * and rely on bootloader stage to restore this state upon resume.
1632 * Otherwise, apply the idle or sleep states depending on wakeup
1633 * capabilities.
1634 */
1635 if (console_suspend_enabled || !uart_console(port)) {
1636 if (device_may_wakeup(dev) || device_wakeup_path(dev))
1637 pinctrl_pm_select_idle_state(dev);
1638 else
1639 pinctrl_pm_select_sleep_state(dev);
1640 }
1641
1642 return 0;
1643 }
1644
stm32_usart_serial_resume(struct device * dev)1645 static int __maybe_unused stm32_usart_serial_resume(struct device *dev)
1646 {
1647 struct uart_port *port = dev_get_drvdata(dev);
1648
1649 pinctrl_pm_select_default_state(dev);
1650
1651 if (device_may_wakeup(dev) || device_wakeup_path(dev))
1652 stm32_usart_serial_en_wakeup(port, false);
1653
1654 return uart_resume_port(&stm32_usart_driver, port);
1655 }
1656
stm32_usart_runtime_suspend(struct device * dev)1657 static int __maybe_unused stm32_usart_runtime_suspend(struct device *dev)
1658 {
1659 struct uart_port *port = dev_get_drvdata(dev);
1660 struct stm32_port *stm32port = container_of(port,
1661 struct stm32_port, port);
1662
1663 clk_disable_unprepare(stm32port->clk);
1664
1665 return 0;
1666 }
1667
stm32_usart_runtime_resume(struct device * dev)1668 static int __maybe_unused stm32_usart_runtime_resume(struct device *dev)
1669 {
1670 struct uart_port *port = dev_get_drvdata(dev);
1671 struct stm32_port *stm32port = container_of(port,
1672 struct stm32_port, port);
1673
1674 return clk_prepare_enable(stm32port->clk);
1675 }
1676
1677 static const struct dev_pm_ops stm32_serial_pm_ops = {
1678 SET_RUNTIME_PM_OPS(stm32_usart_runtime_suspend,
1679 stm32_usart_runtime_resume, NULL)
1680 SET_SYSTEM_SLEEP_PM_OPS(stm32_usart_serial_suspend,
1681 stm32_usart_serial_resume)
1682 };
1683
1684 static struct platform_driver stm32_serial_driver = {
1685 .probe = stm32_usart_serial_probe,
1686 .remove = stm32_usart_serial_remove,
1687 .driver = {
1688 .name = DRIVER_NAME,
1689 .pm = &stm32_serial_pm_ops,
1690 .of_match_table = of_match_ptr(stm32_match),
1691 },
1692 };
1693
stm32_usart_init(void)1694 static int __init stm32_usart_init(void)
1695 {
1696 static char banner[] __initdata = "STM32 USART driver initialized";
1697 int ret;
1698
1699 pr_info("%s\n", banner);
1700
1701 ret = uart_register_driver(&stm32_usart_driver);
1702 if (ret)
1703 return ret;
1704
1705 ret = platform_driver_register(&stm32_serial_driver);
1706 if (ret)
1707 uart_unregister_driver(&stm32_usart_driver);
1708
1709 return ret;
1710 }
1711
stm32_usart_exit(void)1712 static void __exit stm32_usart_exit(void)
1713 {
1714 platform_driver_unregister(&stm32_serial_driver);
1715 uart_unregister_driver(&stm32_usart_driver);
1716 }
1717
1718 module_init(stm32_usart_init);
1719 module_exit(stm32_usart_exit);
1720
1721 MODULE_ALIAS("platform:" DRIVER_NAME);
1722 MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
1723 MODULE_LICENSE("GPL v2");
1724