1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) Maxime Coquelin 2015
4 * Copyright (C) STMicroelectronics SA 2017
8 * Inspired by st-asc.c from STMicroelectronics (c)
11 #if defined(CONFIG_SERIAL_STM32_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
15 #include <linux/clk.h>
16 #include <linux/console.h>
17 #include <linux/delay.h>
18 #include <linux/dma-direction.h>
19 #include <linux/dmaengine.h>
20 #include <linux/dma-mapping.h>
22 #include <linux/iopoll.h>
23 #include <linux/irq.h>
24 #include <linux/module.h>
26 #include <linux/of_platform.h>
27 #include <linux/platform_device.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/pm_wakeirq.h>
30 #include <linux/serial_core.h>
31 #include <linux/serial.h>
32 #include <linux/spinlock.h>
33 #include <linux/sysrq.h>
34 #include <linux/tty_flip.h>
35 #include <linux/tty.h>
37 #include "stm32-usart.h"
39 static void stm32_stop_tx(struct uart_port *port);
40 static void stm32_transmit_chars(struct uart_port *port);
42 static inline struct stm32_port *to_stm32_port(struct uart_port *port)
44 return container_of(port, struct stm32_port, port);
47 static void stm32_set_bits(struct uart_port *port, u32 reg, u32 bits)
51 val = readl_relaxed(port->membase + reg);
53 writel_relaxed(val, port->membase + reg);
56 static void stm32_clr_bits(struct uart_port *port, u32 reg, u32 bits)
60 val = readl_relaxed(port->membase + reg);
62 writel_relaxed(val, port->membase + reg);
65 static int stm32_pending_rx(struct uart_port *port, u32 *sr, int *last_res,
68 struct stm32_port *stm32_port = to_stm32_port(port);
69 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
70 enum dma_status status;
71 struct dma_tx_state state;
73 *sr = readl_relaxed(port->membase + ofs->isr);
75 if (threaded && stm32_port->rx_ch) {
76 status = dmaengine_tx_status(stm32_port->rx_ch,
77 stm32_port->rx_ch->cookie,
79 if ((status == DMA_IN_PROGRESS) &&
80 (*last_res != state.residue))
84 } else if (*sr & USART_SR_RXNE) {
91 stm32_get_char(struct uart_port *port, u32 *sr, int *last_res)
93 struct stm32_port *stm32_port = to_stm32_port(port);
94 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
97 if (stm32_port->rx_ch) {
98 c = stm32_port->rx_buf[RX_BUF_L - (*last_res)--];
100 *last_res = RX_BUF_L;
103 return readl_relaxed(port->membase + ofs->rdr);
107 static void stm32_receive_chars(struct uart_port *port, bool threaded)
109 struct tty_port *tport = &port->state->port;
110 struct stm32_port *stm32_port = to_stm32_port(port);
111 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
116 if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
117 pm_wakeup_event(tport->tty->dev, 0);
119 while (stm32_pending_rx(port, &sr, &stm32_port->last_res, threaded)) {
120 sr |= USART_SR_DUMMY_RX;
121 c = stm32_get_char(port, &sr, &stm32_port->last_res);
125 if (sr & USART_SR_ERR_MASK) {
126 if (sr & USART_SR_LBD) {
128 if (uart_handle_break(port))
130 } else if (sr & USART_SR_ORE) {
131 if (ofs->icr != UNDEF_REG)
132 writel_relaxed(USART_ICR_ORECF,
135 port->icount.overrun++;
136 } else if (sr & USART_SR_PE) {
137 port->icount.parity++;
138 } else if (sr & USART_SR_FE) {
139 port->icount.frame++;
142 sr &= port->read_status_mask;
144 if (sr & USART_SR_LBD)
146 else if (sr & USART_SR_PE)
148 else if (sr & USART_SR_FE)
152 if (uart_handle_sysrq_char(port, c))
154 uart_insert_char(port, sr, USART_SR_ORE, c, flag);
157 spin_unlock(&port->lock);
158 tty_flip_buffer_push(tport);
159 spin_lock(&port->lock);
162 static void stm32_tx_dma_complete(void *arg)
164 struct uart_port *port = arg;
165 struct stm32_port *stm32port = to_stm32_port(port);
166 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
170 ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
176 dev_err(port->dev, "terminal count not set\n");
178 if (ofs->icr == UNDEF_REG)
179 stm32_clr_bits(port, ofs->isr, USART_SR_TC);
181 stm32_set_bits(port, ofs->icr, USART_CR_TC);
183 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
184 stm32port->tx_dma_busy = false;
186 /* Let's see if we have pending data to send */
187 stm32_transmit_chars(port);
190 static void stm32_transmit_chars_pio(struct uart_port *port)
192 struct stm32_port *stm32_port = to_stm32_port(port);
193 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
194 struct circ_buf *xmit = &port->state->xmit;
198 if (stm32_port->tx_dma_busy) {
199 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
200 stm32_port->tx_dma_busy = false;
203 ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr,
205 (isr & USART_SR_TXE),
209 dev_err(port->dev, "tx empty not set\n");
211 stm32_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
213 writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
214 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
218 static void stm32_transmit_chars_dma(struct uart_port *port)
220 struct stm32_port *stm32port = to_stm32_port(port);
221 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
222 struct circ_buf *xmit = &port->state->xmit;
223 struct dma_async_tx_descriptor *desc = NULL;
225 unsigned int count, i;
227 if (stm32port->tx_dma_busy)
230 stm32port->tx_dma_busy = true;
232 count = uart_circ_chars_pending(xmit);
234 if (count > TX_BUF_L)
237 if (xmit->tail < xmit->head) {
238 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
240 size_t one = UART_XMIT_SIZE - xmit->tail;
247 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
249 memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
252 desc = dmaengine_prep_slave_single(stm32port->tx_ch,
253 stm32port->tx_dma_buf,
259 for (i = count; i > 0; i--)
260 stm32_transmit_chars_pio(port);
264 desc->callback = stm32_tx_dma_complete;
265 desc->callback_param = port;
267 /* Push current DMA TX transaction in the pending queue */
268 cookie = dmaengine_submit(desc);
270 /* Issue pending DMA TX requests */
271 dma_async_issue_pending(stm32port->tx_ch);
273 stm32_clr_bits(port, ofs->isr, USART_SR_TC);
274 stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
276 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
277 port->icount.tx += count;
280 static void stm32_transmit_chars(struct uart_port *port)
282 struct stm32_port *stm32_port = to_stm32_port(port);
283 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
284 struct circ_buf *xmit = &port->state->xmit;
287 if (stm32_port->tx_dma_busy)
288 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
289 writel_relaxed(port->x_char, port->membase + ofs->tdr);
292 if (stm32_port->tx_dma_busy)
293 stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
297 if (uart_tx_stopped(port)) {
302 if (uart_circ_empty(xmit)) {
307 if (stm32_port->tx_ch)
308 stm32_transmit_chars_dma(port);
310 stm32_transmit_chars_pio(port);
312 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
313 uart_write_wakeup(port);
315 if (uart_circ_empty(xmit))
319 static irqreturn_t stm32_interrupt(int irq, void *ptr)
321 struct uart_port *port = ptr;
322 struct stm32_port *stm32_port = to_stm32_port(port);
323 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
326 spin_lock(&port->lock);
328 sr = readl_relaxed(port->membase + ofs->isr);
330 if ((sr & USART_SR_WUF) && (ofs->icr != UNDEF_REG))
331 writel_relaxed(USART_ICR_WUCF,
332 port->membase + ofs->icr);
334 if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch))
335 stm32_receive_chars(port, false);
337 if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch))
338 stm32_transmit_chars(port);
340 spin_unlock(&port->lock);
342 if (stm32_port->rx_ch)
343 return IRQ_WAKE_THREAD;
348 static irqreturn_t stm32_threaded_interrupt(int irq, void *ptr)
350 struct uart_port *port = ptr;
351 struct stm32_port *stm32_port = to_stm32_port(port);
353 spin_lock(&port->lock);
355 if (stm32_port->rx_ch)
356 stm32_receive_chars(port, true);
358 spin_unlock(&port->lock);
363 static unsigned int stm32_tx_empty(struct uart_port *port)
365 struct stm32_port *stm32_port = to_stm32_port(port);
366 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
368 return readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE;
371 static void stm32_set_mctrl(struct uart_port *port, unsigned int mctrl)
373 struct stm32_port *stm32_port = to_stm32_port(port);
374 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
376 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
377 stm32_set_bits(port, ofs->cr3, USART_CR3_RTSE);
379 stm32_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
382 static unsigned int stm32_get_mctrl(struct uart_port *port)
384 /* This routine is used to get signals of: DCD, DSR, RI, and CTS */
385 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
389 static void stm32_stop_tx(struct uart_port *port)
391 struct stm32_port *stm32_port = to_stm32_port(port);
392 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
394 stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
397 /* There are probably characters waiting to be transmitted. */
398 static void stm32_start_tx(struct uart_port *port)
400 struct circ_buf *xmit = &port->state->xmit;
402 if (uart_circ_empty(xmit))
405 stm32_transmit_chars(port);
408 /* Throttle the remote when input buffer is about to overflow. */
409 static void stm32_throttle(struct uart_port *port)
411 struct stm32_port *stm32_port = to_stm32_port(port);
412 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
415 spin_lock_irqsave(&port->lock, flags);
416 stm32_clr_bits(port, ofs->cr1, USART_CR1_RXNEIE);
417 spin_unlock_irqrestore(&port->lock, flags);
420 /* Unthrottle the remote, the input buffer can now accept data. */
421 static void stm32_unthrottle(struct uart_port *port)
423 struct stm32_port *stm32_port = to_stm32_port(port);
424 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
427 spin_lock_irqsave(&port->lock, flags);
428 stm32_set_bits(port, ofs->cr1, USART_CR1_RXNEIE);
429 spin_unlock_irqrestore(&port->lock, flags);
433 static void stm32_stop_rx(struct uart_port *port)
435 struct stm32_port *stm32_port = to_stm32_port(port);
436 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
438 stm32_clr_bits(port, ofs->cr1, USART_CR1_RXNEIE);
441 /* Handle breaks - ignored by us */
442 static void stm32_break_ctl(struct uart_port *port, int break_state)
446 static int stm32_startup(struct uart_port *port)
448 struct stm32_port *stm32_port = to_stm32_port(port);
449 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
450 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
451 const char *name = to_platform_device(port->dev)->name;
455 ret = request_threaded_irq(port->irq, stm32_interrupt,
456 stm32_threaded_interrupt,
457 IRQF_NO_SUSPEND, name, port);
461 if (cfg->has_wakeup && stm32_port->wakeirq >= 0) {
462 ret = dev_pm_set_dedicated_wake_irq(port->dev,
463 stm32_port->wakeirq);
465 free_irq(port->irq, port);
470 val = USART_CR1_RXNEIE | USART_CR1_TE | USART_CR1_RE;
471 if (stm32_port->fifoen)
472 val |= USART_CR1_FIFOEN;
473 stm32_set_bits(port, ofs->cr1, val);
478 static void stm32_shutdown(struct uart_port *port)
480 struct stm32_port *stm32_port = to_stm32_port(port);
481 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
482 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
485 val = USART_CR1_TXEIE | USART_CR1_RXNEIE | USART_CR1_TE | USART_CR1_RE;
486 val |= BIT(cfg->uart_enable_bit);
487 if (stm32_port->fifoen)
488 val |= USART_CR1_FIFOEN;
489 stm32_clr_bits(port, ofs->cr1, val);
491 dev_pm_clear_wake_irq(port->dev);
492 free_irq(port->irq, port);
495 static void stm32_set_termios(struct uart_port *port, struct ktermios *termios,
496 struct ktermios *old)
498 struct stm32_port *stm32_port = to_stm32_port(port);
499 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
500 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
502 u32 usartdiv, mantissa, fraction, oversampling;
503 tcflag_t cflag = termios->c_cflag;
507 if (!stm32_port->hw_flow_control)
510 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
512 spin_lock_irqsave(&port->lock, flags);
514 /* Stop serial port and reset value */
515 writel_relaxed(0, port->membase + ofs->cr1);
517 cr1 = USART_CR1_TE | USART_CR1_RE | USART_CR1_RXNEIE;
518 cr1 |= BIT(cfg->uart_enable_bit);
519 if (stm32_port->fifoen)
520 cr1 |= USART_CR1_FIFOEN;
525 cr2 |= USART_CR2_STOP_2B;
527 if (cflag & PARENB) {
528 cr1 |= USART_CR1_PCE;
529 if ((cflag & CSIZE) == CS8) {
530 if (cfg->has_7bits_data)
540 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
541 if (cflag & CRTSCTS) {
542 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
543 cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
546 usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
549 * The USART supports 16 or 8 times oversampling.
550 * By default we prefer 16 times oversampling, so that the receiver
551 * has a better tolerance to clock deviations.
552 * 8 times oversampling is only used to achieve higher speeds.
556 stm32_set_bits(port, ofs->cr1, USART_CR1_OVER8);
559 stm32_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
562 mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
563 fraction = usartdiv % oversampling;
564 writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
566 uart_update_timeout(port, cflag, baud);
568 port->read_status_mask = USART_SR_ORE;
569 if (termios->c_iflag & INPCK)
570 port->read_status_mask |= USART_SR_PE | USART_SR_FE;
571 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
572 port->read_status_mask |= USART_SR_LBD;
574 /* Characters to ignore */
575 port->ignore_status_mask = 0;
576 if (termios->c_iflag & IGNPAR)
577 port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
578 if (termios->c_iflag & IGNBRK) {
579 port->ignore_status_mask |= USART_SR_LBD;
581 * If we're ignoring parity and break indicators,
582 * ignore overruns too (for real raw support).
584 if (termios->c_iflag & IGNPAR)
585 port->ignore_status_mask |= USART_SR_ORE;
588 /* Ignore all characters if CREAD is not set */
589 if ((termios->c_cflag & CREAD) == 0)
590 port->ignore_status_mask |= USART_SR_DUMMY_RX;
592 if (stm32_port->rx_ch)
593 cr3 |= USART_CR3_DMAR;
595 writel_relaxed(cr3, port->membase + ofs->cr3);
596 writel_relaxed(cr2, port->membase + ofs->cr2);
597 writel_relaxed(cr1, port->membase + ofs->cr1);
599 spin_unlock_irqrestore(&port->lock, flags);
602 static const char *stm32_type(struct uart_port *port)
604 return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
607 static void stm32_release_port(struct uart_port *port)
611 static int stm32_request_port(struct uart_port *port)
616 static void stm32_config_port(struct uart_port *port, int flags)
618 if (flags & UART_CONFIG_TYPE)
619 port->type = PORT_STM32;
623 stm32_verify_port(struct uart_port *port, struct serial_struct *ser)
625 /* No user changeable parameters */
629 static void stm32_pm(struct uart_port *port, unsigned int state,
630 unsigned int oldstate)
632 struct stm32_port *stm32port = container_of(port,
633 struct stm32_port, port);
634 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
635 struct stm32_usart_config *cfg = &stm32port->info->cfg;
636 unsigned long flags = 0;
639 case UART_PM_STATE_ON:
640 clk_prepare_enable(stm32port->clk);
642 case UART_PM_STATE_OFF:
643 spin_lock_irqsave(&port->lock, flags);
644 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
645 spin_unlock_irqrestore(&port->lock, flags);
646 clk_disable_unprepare(stm32port->clk);
651 static const struct uart_ops stm32_uart_ops = {
652 .tx_empty = stm32_tx_empty,
653 .set_mctrl = stm32_set_mctrl,
654 .get_mctrl = stm32_get_mctrl,
655 .stop_tx = stm32_stop_tx,
656 .start_tx = stm32_start_tx,
657 .throttle = stm32_throttle,
658 .unthrottle = stm32_unthrottle,
659 .stop_rx = stm32_stop_rx,
660 .break_ctl = stm32_break_ctl,
661 .startup = stm32_startup,
662 .shutdown = stm32_shutdown,
663 .set_termios = stm32_set_termios,
666 .release_port = stm32_release_port,
667 .request_port = stm32_request_port,
668 .config_port = stm32_config_port,
669 .verify_port = stm32_verify_port,
672 static int stm32_init_port(struct stm32_port *stm32port,
673 struct platform_device *pdev)
675 struct uart_port *port = &stm32port->port;
676 struct resource *res;
679 port->iotype = UPIO_MEM;
680 port->flags = UPF_BOOT_AUTOCONF;
681 port->ops = &stm32_uart_ops;
682 port->dev = &pdev->dev;
683 port->irq = platform_get_irq(pdev, 0);
684 stm32port->wakeirq = platform_get_irq(pdev, 1);
685 stm32port->fifoen = stm32port->info->cfg.has_fifo;
687 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
688 port->membase = devm_ioremap_resource(&pdev->dev, res);
689 if (IS_ERR(port->membase))
690 return PTR_ERR(port->membase);
691 port->mapbase = res->start;
693 spin_lock_init(&port->lock);
695 stm32port->clk = devm_clk_get(&pdev->dev, NULL);
696 if (IS_ERR(stm32port->clk))
697 return PTR_ERR(stm32port->clk);
699 /* Ensure that clk rate is correct by enabling the clk */
700 ret = clk_prepare_enable(stm32port->clk);
704 stm32port->port.uartclk = clk_get_rate(stm32port->clk);
705 if (!stm32port->port.uartclk) {
706 clk_disable_unprepare(stm32port->clk);
713 static struct stm32_port *stm32_of_get_stm32_port(struct platform_device *pdev)
715 struct device_node *np = pdev->dev.of_node;
721 id = of_alias_get_id(np, "serial");
723 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
727 if (WARN_ON(id >= STM32_MAX_PORTS))
730 stm32_ports[id].hw_flow_control = of_property_read_bool(np,
732 stm32_ports[id].port.line = id;
733 stm32_ports[id].last_res = RX_BUF_L;
734 return &stm32_ports[id];
738 static const struct of_device_id stm32_match[] = {
739 { .compatible = "st,stm32-uart", .data = &stm32f4_info},
740 { .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
741 { .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
745 MODULE_DEVICE_TABLE(of, stm32_match);
748 static int stm32_of_dma_rx_probe(struct stm32_port *stm32port,
749 struct platform_device *pdev)
751 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
752 struct uart_port *port = &stm32port->port;
753 struct device *dev = &pdev->dev;
754 struct dma_slave_config config;
755 struct dma_async_tx_descriptor *desc = NULL;
759 /* Request DMA RX channel */
760 stm32port->rx_ch = dma_request_slave_channel(dev, "rx");
761 if (!stm32port->rx_ch) {
762 dev_info(dev, "rx dma alloc failed\n");
765 stm32port->rx_buf = dma_alloc_coherent(&pdev->dev, RX_BUF_L,
766 &stm32port->rx_dma_buf,
768 if (!stm32port->rx_buf) {
773 /* Configure DMA channel */
774 memset(&config, 0, sizeof(config));
775 config.src_addr = port->mapbase + ofs->rdr;
776 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
778 ret = dmaengine_slave_config(stm32port->rx_ch, &config);
780 dev_err(dev, "rx dma channel config failed\n");
785 /* Prepare a DMA cyclic transaction */
786 desc = dmaengine_prep_dma_cyclic(stm32port->rx_ch,
787 stm32port->rx_dma_buf,
788 RX_BUF_L, RX_BUF_P, DMA_DEV_TO_MEM,
791 dev_err(dev, "rx dma prep cyclic failed\n");
796 /* No callback as dma buffer is drained on usart interrupt */
797 desc->callback = NULL;
798 desc->callback_param = NULL;
800 /* Push current DMA transaction in the pending queue */
801 cookie = dmaengine_submit(desc);
803 /* Issue pending DMA requests */
804 dma_async_issue_pending(stm32port->rx_ch);
809 dma_free_coherent(&pdev->dev,
810 RX_BUF_L, stm32port->rx_buf,
811 stm32port->rx_dma_buf);
814 dma_release_channel(stm32port->rx_ch);
815 stm32port->rx_ch = NULL;
820 static int stm32_of_dma_tx_probe(struct stm32_port *stm32port,
821 struct platform_device *pdev)
823 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
824 struct uart_port *port = &stm32port->port;
825 struct device *dev = &pdev->dev;
826 struct dma_slave_config config;
829 stm32port->tx_dma_busy = false;
831 /* Request DMA TX channel */
832 stm32port->tx_ch = dma_request_slave_channel(dev, "tx");
833 if (!stm32port->tx_ch) {
834 dev_info(dev, "tx dma alloc failed\n");
837 stm32port->tx_buf = dma_alloc_coherent(&pdev->dev, TX_BUF_L,
838 &stm32port->tx_dma_buf,
840 if (!stm32port->tx_buf) {
845 /* Configure DMA channel */
846 memset(&config, 0, sizeof(config));
847 config.dst_addr = port->mapbase + ofs->tdr;
848 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
850 ret = dmaengine_slave_config(stm32port->tx_ch, &config);
852 dev_err(dev, "tx dma channel config failed\n");
860 dma_free_coherent(&pdev->dev,
861 TX_BUF_L, stm32port->tx_buf,
862 stm32port->tx_dma_buf);
865 dma_release_channel(stm32port->tx_ch);
866 stm32port->tx_ch = NULL;
871 static int stm32_serial_probe(struct platform_device *pdev)
873 const struct of_device_id *match;
874 struct stm32_port *stm32port;
877 stm32port = stm32_of_get_stm32_port(pdev);
881 match = of_match_device(stm32_match, &pdev->dev);
882 if (match && match->data)
883 stm32port->info = (struct stm32_usart_info *)match->data;
887 ret = stm32_init_port(stm32port, pdev);
891 if (stm32port->info->cfg.has_wakeup && stm32port->wakeirq >= 0) {
892 ret = device_init_wakeup(&pdev->dev, true);
897 ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
901 ret = stm32_of_dma_rx_probe(stm32port, pdev);
903 dev_info(&pdev->dev, "interrupt mode used for rx (no dma)\n");
905 ret = stm32_of_dma_tx_probe(stm32port, pdev);
907 dev_info(&pdev->dev, "interrupt mode used for tx (no dma)\n");
909 platform_set_drvdata(pdev, &stm32port->port);
914 if (stm32port->info->cfg.has_wakeup && stm32port->wakeirq >= 0)
915 device_init_wakeup(&pdev->dev, false);
918 clk_disable_unprepare(stm32port->clk);
923 static int stm32_serial_remove(struct platform_device *pdev)
925 struct uart_port *port = platform_get_drvdata(pdev);
926 struct stm32_port *stm32_port = to_stm32_port(port);
927 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
928 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
930 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
932 if (stm32_port->rx_ch)
933 dma_release_channel(stm32_port->rx_ch);
935 if (stm32_port->rx_dma_buf)
936 dma_free_coherent(&pdev->dev,
937 RX_BUF_L, stm32_port->rx_buf,
938 stm32_port->rx_dma_buf);
940 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
942 if (stm32_port->tx_ch)
943 dma_release_channel(stm32_port->tx_ch);
945 if (stm32_port->tx_dma_buf)
946 dma_free_coherent(&pdev->dev,
947 TX_BUF_L, stm32_port->tx_buf,
948 stm32_port->tx_dma_buf);
950 if (cfg->has_wakeup && stm32_port->wakeirq >= 0)
951 device_init_wakeup(&pdev->dev, false);
953 clk_disable_unprepare(stm32_port->clk);
955 return uart_remove_one_port(&stm32_usart_driver, port);
959 #ifdef CONFIG_SERIAL_STM32_CONSOLE
960 static void stm32_console_putchar(struct uart_port *port, int ch)
962 struct stm32_port *stm32_port = to_stm32_port(port);
963 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
965 while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
968 writel_relaxed(ch, port->membase + ofs->tdr);
971 static void stm32_console_write(struct console *co, const char *s, unsigned cnt)
973 struct uart_port *port = &stm32_ports[co->index].port;
974 struct stm32_port *stm32_port = to_stm32_port(port);
975 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
976 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
978 u32 old_cr1, new_cr1;
981 local_irq_save(flags);
984 else if (oops_in_progress)
985 locked = spin_trylock(&port->lock);
987 spin_lock(&port->lock);
989 /* Save and disable interrupts, enable the transmitter */
990 old_cr1 = readl_relaxed(port->membase + ofs->cr1);
991 new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
992 new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit);
993 writel_relaxed(new_cr1, port->membase + ofs->cr1);
995 uart_console_write(port, s, cnt, stm32_console_putchar);
997 /* Restore interrupt state */
998 writel_relaxed(old_cr1, port->membase + ofs->cr1);
1001 spin_unlock(&port->lock);
1002 local_irq_restore(flags);
1005 static int stm32_console_setup(struct console *co, char *options)
1007 struct stm32_port *stm32port;
1013 if (co->index >= STM32_MAX_PORTS)
1016 stm32port = &stm32_ports[co->index];
1019 * This driver does not support early console initialization
1020 * (use ARM early printk support instead), so we only expect
1021 * this to be called during the uart port registration when the
1022 * driver gets probed and the port should be mapped at that point.
1024 if (stm32port->port.mapbase == 0 || stm32port->port.membase == NULL)
1028 uart_parse_options(options, &baud, &parity, &bits, &flow);
1030 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
1033 static struct console stm32_console = {
1034 .name = STM32_SERIAL_NAME,
1035 .device = uart_console_device,
1036 .write = stm32_console_write,
1037 .setup = stm32_console_setup,
1038 .flags = CON_PRINTBUFFER,
1040 .data = &stm32_usart_driver,
1043 #define STM32_SERIAL_CONSOLE (&stm32_console)
1046 #define STM32_SERIAL_CONSOLE NULL
1047 #endif /* CONFIG_SERIAL_STM32_CONSOLE */
1049 static struct uart_driver stm32_usart_driver = {
1050 .driver_name = DRIVER_NAME,
1051 .dev_name = STM32_SERIAL_NAME,
1054 .nr = STM32_MAX_PORTS,
1055 .cons = STM32_SERIAL_CONSOLE,
1058 #ifdef CONFIG_PM_SLEEP
1059 static void stm32_serial_enable_wakeup(struct uart_port *port, bool enable)
1061 struct stm32_port *stm32_port = to_stm32_port(port);
1062 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1063 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
1066 if (!cfg->has_wakeup || stm32_port->wakeirq < 0)
1070 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1071 stm32_set_bits(port, ofs->cr1, USART_CR1_UESM);
1072 val = readl_relaxed(port->membase + ofs->cr3);
1073 val &= ~USART_CR3_WUS_MASK;
1074 /* Enable Wake up interrupt from low power on start bit */
1075 val |= USART_CR3_WUS_START_BIT | USART_CR3_WUFIE;
1076 writel_relaxed(val, port->membase + ofs->cr3);
1077 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1079 stm32_clr_bits(port, ofs->cr1, USART_CR1_UESM);
1083 static int stm32_serial_suspend(struct device *dev)
1085 struct uart_port *port = dev_get_drvdata(dev);
1087 uart_suspend_port(&stm32_usart_driver, port);
1089 if (device_may_wakeup(dev))
1090 stm32_serial_enable_wakeup(port, true);
1092 stm32_serial_enable_wakeup(port, false);
1097 static int stm32_serial_resume(struct device *dev)
1099 struct uart_port *port = dev_get_drvdata(dev);
1101 if (device_may_wakeup(dev))
1102 stm32_serial_enable_wakeup(port, false);
1104 return uart_resume_port(&stm32_usart_driver, port);
1106 #endif /* CONFIG_PM_SLEEP */
1108 static const struct dev_pm_ops stm32_serial_pm_ops = {
1109 SET_SYSTEM_SLEEP_PM_OPS(stm32_serial_suspend, stm32_serial_resume)
1112 static struct platform_driver stm32_serial_driver = {
1113 .probe = stm32_serial_probe,
1114 .remove = stm32_serial_remove,
1116 .name = DRIVER_NAME,
1117 .pm = &stm32_serial_pm_ops,
1118 .of_match_table = of_match_ptr(stm32_match),
1122 static int __init usart_init(void)
1124 static char banner[] __initdata = "STM32 USART driver initialized";
1127 pr_info("%s\n", banner);
1129 ret = uart_register_driver(&stm32_usart_driver);
1133 ret = platform_driver_register(&stm32_serial_driver);
1135 uart_unregister_driver(&stm32_usart_driver);
1140 static void __exit usart_exit(void)
1142 platform_driver_unregister(&stm32_serial_driver);
1143 uart_unregister_driver(&stm32_usart_driver);
1146 module_init(usart_init);
1147 module_exit(usart_exit);
1149 MODULE_ALIAS("platform:" DRIVER_NAME);
1150 MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
1151 MODULE_LICENSE("GPL v2");