blob: 6ddc6b08b29a1d6457de8e95d2ad86ac7056041f [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
Maxime Coquelin6b596a82015-06-16 11:12:19 +020011#if defined(CONFIG_SERIAL_STM32_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
Maxime Coquelin48a60922015-06-10 21:19:36 +020012#define SUPPORT_SYSRQ
13#endif
14
Alexandre TORGUE34891872016-09-15 18:42:40 +020015#include <linux/clk.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020016#include <linux/console.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020017#include <linux/delay.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020018#include <linux/dma-direction.h>
19#include <linux/dmaengine.h>
20#include <linux/dma-mapping.h>
21#include <linux/io.h>
22#include <linux/iopoll.h>
23#include <linux/irq.h>
24#include <linux/module.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020025#include <linux/of.h>
26#include <linux/of_platform.h>
Erwan Le Ray94616d92019-06-13 15:49:53 +020027#include <linux/pinctrl/consumer.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020028#include <linux/platform_device.h>
29#include <linux/pm_runtime.h>
Fabrice Gasnier270e5a72017-07-13 15:08:30 +000030#include <linux/pm_wakeirq.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020031#include <linux/serial_core.h>
Alexandre TORGUE34891872016-09-15 18:42:40 +020032#include <linux/serial.h>
33#include <linux/spinlock.h>
34#include <linux/sysrq.h>
35#include <linux/tty_flip.h>
36#include <linux/tty.h>
Maxime Coquelin48a60922015-06-10 21:19:36 +020037
Alexandre TORGUEbc5a0b52016-09-15 18:42:35 +020038#include "stm32-usart.h"
Maxime Coquelin48a60922015-06-10 21:19:36 +020039
40static void stm32_stop_tx(struct uart_port *port);
Alexandre TORGUE34891872016-09-15 18:42:40 +020041static void stm32_transmit_chars(struct uart_port *port);
Maxime Coquelin48a60922015-06-10 21:19:36 +020042
43static inline struct stm32_port *to_stm32_port(struct uart_port *port)
44{
45 return container_of(port, struct stm32_port, port);
46}
47
48static void stm32_set_bits(struct uart_port *port, u32 reg, u32 bits)
49{
50 u32 val;
51
52 val = readl_relaxed(port->membase + reg);
53 val |= bits;
54 writel_relaxed(val, port->membase + reg);
55}
56
57static void stm32_clr_bits(struct uart_port *port, u32 reg, u32 bits)
58{
59 u32 val;
60
61 val = readl_relaxed(port->membase + reg);
62 val &= ~bits;
63 writel_relaxed(val, port->membase + reg);
64}
65
Bich HEMON1bcda092018-03-12 09:50:05 +000066static void stm32_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE,
67 u32 delay_DDE, u32 baud)
68{
69 u32 rs485_deat_dedt;
70 u32 rs485_deat_dedt_max = (USART_CR1_DEAT_MASK >> USART_CR1_DEAT_SHIFT);
71 bool over8;
72
73 *cr3 |= USART_CR3_DEM;
74 over8 = *cr1 & USART_CR1_OVER8;
75
76 if (over8)
77 rs485_deat_dedt = delay_ADE * baud * 8;
78 else
79 rs485_deat_dedt = delay_ADE * baud * 16;
80
81 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
82 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
83 rs485_deat_dedt_max : rs485_deat_dedt;
84 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEAT_SHIFT) &
85 USART_CR1_DEAT_MASK;
86 *cr1 |= rs485_deat_dedt;
87
88 if (over8)
89 rs485_deat_dedt = delay_DDE * baud * 8;
90 else
91 rs485_deat_dedt = delay_DDE * baud * 16;
92
93 rs485_deat_dedt = DIV_ROUND_CLOSEST(rs485_deat_dedt, 1000);
94 rs485_deat_dedt = rs485_deat_dedt > rs485_deat_dedt_max ?
95 rs485_deat_dedt_max : rs485_deat_dedt;
96 rs485_deat_dedt = (rs485_deat_dedt << USART_CR1_DEDT_SHIFT) &
97 USART_CR1_DEDT_MASK;
98 *cr1 |= rs485_deat_dedt;
99}
100
101static int stm32_config_rs485(struct uart_port *port,
102 struct serial_rs485 *rs485conf)
103{
104 struct stm32_port *stm32_port = to_stm32_port(port);
105 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
106 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
107 u32 usartdiv, baud, cr1, cr3;
108 bool over8;
Bich HEMON1bcda092018-03-12 09:50:05 +0000109
Bich HEMON1bcda092018-03-12 09:50:05 +0000110 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
111
112 port->rs485 = *rs485conf;
113
114 rs485conf->flags |= SER_RS485_RX_DURING_TX;
115
116 if (rs485conf->flags & SER_RS485_ENABLED) {
117 cr1 = readl_relaxed(port->membase + ofs->cr1);
118 cr3 = readl_relaxed(port->membase + ofs->cr3);
119 usartdiv = readl_relaxed(port->membase + ofs->brr);
120 usartdiv = usartdiv & GENMASK(15, 0);
121 over8 = cr1 & USART_CR1_OVER8;
122
123 if (over8)
124 usartdiv = usartdiv | (usartdiv & GENMASK(4, 0))
125 << USART_BRR_04_R_SHIFT;
126
127 baud = DIV_ROUND_CLOSEST(port->uartclk, usartdiv);
128 stm32_config_reg_rs485(&cr1, &cr3,
129 rs485conf->delay_rts_before_send,
130 rs485conf->delay_rts_after_send, baud);
131
132 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
133 cr3 &= ~USART_CR3_DEP;
134 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
135 } else {
136 cr3 |= USART_CR3_DEP;
137 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
138 }
139
140 writel_relaxed(cr3, port->membase + ofs->cr3);
141 writel_relaxed(cr1, port->membase + ofs->cr1);
142 } else {
143 stm32_clr_bits(port, ofs->cr3, USART_CR3_DEM | USART_CR3_DEP);
144 stm32_clr_bits(port, ofs->cr1,
145 USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
146 }
147
148 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Bich HEMON1bcda092018-03-12 09:50:05 +0000149
150 return 0;
151}
152
153static int stm32_init_rs485(struct uart_port *port,
154 struct platform_device *pdev)
155{
156 struct serial_rs485 *rs485conf = &port->rs485;
157
158 rs485conf->flags = 0;
159 rs485conf->delay_rts_before_send = 0;
160 rs485conf->delay_rts_after_send = 0;
161
162 if (!pdev->dev.of_node)
163 return -ENODEV;
164
165 uart_get_rs485_mode(&pdev->dev, rs485conf);
166
167 return 0;
168}
169
Baoyou Xieb97055b2016-09-26 19:58:56 +0800170static int stm32_pending_rx(struct uart_port *port, u32 *sr, int *last_res,
171 bool threaded)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200172{
173 struct stm32_port *stm32_port = to_stm32_port(port);
174 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
175 enum dma_status status;
176 struct dma_tx_state state;
177
178 *sr = readl_relaxed(port->membase + ofs->isr);
179
180 if (threaded && stm32_port->rx_ch) {
181 status = dmaengine_tx_status(stm32_port->rx_ch,
182 stm32_port->rx_ch->cookie,
183 &state);
184 if ((status == DMA_IN_PROGRESS) &&
185 (*last_res != state.residue))
186 return 1;
187 else
188 return 0;
189 } else if (*sr & USART_SR_RXNE) {
190 return 1;
191 }
192 return 0;
193}
194
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200195static unsigned long stm32_get_char(struct uart_port *port, u32 *sr,
196 int *last_res)
Alexandre TORGUE34891872016-09-15 18:42:40 +0200197{
198 struct stm32_port *stm32_port = to_stm32_port(port);
199 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
200 unsigned long c;
201
202 if (stm32_port->rx_ch) {
203 c = stm32_port->rx_buf[RX_BUF_L - (*last_res)--];
204 if ((*last_res) == 0)
205 *last_res = RX_BUF_L;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200206 } else {
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200207 c = readl_relaxed(port->membase + ofs->rdr);
208 /* apply RDR data mask */
209 c &= stm32_port->rdr_mask;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200210 }
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200211
212 return c;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200213}
214
215static void stm32_receive_chars(struct uart_port *port, bool threaded)
Maxime Coquelin48a60922015-06-10 21:19:36 +0200216{
217 struct tty_port *tport = &port->state->port;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200218 struct stm32_port *stm32_port = to_stm32_port(port);
219 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200220 unsigned long c;
221 u32 sr;
222 char flag;
223
Andy Shevchenko29d60982017-08-13 17:47:41 +0300224 if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
Maxime Coquelin48a60922015-06-10 21:19:36 +0200225 pm_wakeup_event(tport->tty->dev, 0);
226
Gerald Baezae5707912017-07-13 15:08:27 +0000227 while (stm32_pending_rx(port, &sr, &stm32_port->last_res, threaded)) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200228 sr |= USART_SR_DUMMY_RX;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200229 flag = TTY_NORMAL;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200230
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200231 /*
232 * Status bits has to be cleared before reading the RDR:
233 * In FIFO mode, reading the RDR will pop the next data
234 * (if any) along with its status bits into the SR.
235 * Not doing so leads to misalignement between RDR and SR,
236 * and clear status bits of the next rx data.
237 *
238 * Clear errors flags for stm32f7 and stm32h7 compatible
239 * devices. On stm32f4 compatible devices, the error bit is
240 * cleared by the sequence [read SR - read DR].
241 */
242 if ((sr & USART_SR_ERR_MASK) && ofs->icr != UNDEF_REG)
243 stm32_clr_bits(port, ofs->icr, USART_ICR_ORECF |
244 USART_ICR_PECF | USART_ICR_FECF);
245
246 c = stm32_get_char(port, &sr, &stm32_port->last_res);
247 port->icount.rx++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200248 if (sr & USART_SR_ERR_MASK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200249 if (sr & USART_SR_ORE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200250 port->icount.overrun++;
251 } else if (sr & USART_SR_PE) {
252 port->icount.parity++;
253 } else if (sr & USART_SR_FE) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200254 /* Break detection if character is null */
255 if (!c) {
256 port->icount.brk++;
257 if (uart_handle_break(port))
258 continue;
259 } else {
260 port->icount.frame++;
261 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200262 }
263
264 sr &= port->read_status_mask;
265
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200266 if (sr & USART_SR_PE) {
Maxime Coquelin48a60922015-06-10 21:19:36 +0200267 flag = TTY_PARITY;
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200268 } else if (sr & USART_SR_FE) {
269 if (!c)
270 flag = TTY_BREAK;
271 else
272 flag = TTY_FRAME;
273 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200274 }
275
276 if (uart_handle_sysrq_char(port, c))
277 continue;
278 uart_insert_char(port, sr, USART_SR_ORE, c, flag);
279 }
280
281 spin_unlock(&port->lock);
282 tty_flip_buffer_push(tport);
283 spin_lock(&port->lock);
284}
285
Alexandre TORGUE34891872016-09-15 18:42:40 +0200286static void stm32_tx_dma_complete(void *arg)
287{
288 struct uart_port *port = arg;
289 struct stm32_port *stm32port = to_stm32_port(port);
290 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200291
292 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
293 stm32port->tx_dma_busy = false;
294
295 /* Let's see if we have pending data to send */
296 stm32_transmit_chars(port);
297}
298
Erwan Le Rayd0757192019-06-18 12:02:24 +0200299static void stm32_tx_interrupt_enable(struct uart_port *port)
300{
301 struct stm32_port *stm32_port = to_stm32_port(port);
302 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
303
304 /*
305 * Enables TX FIFO threashold irq when FIFO is enabled,
306 * or TX empty irq when FIFO is disabled
307 */
308 if (stm32_port->fifoen)
309 stm32_set_bits(port, ofs->cr3, USART_CR3_TXFTIE);
310 else
311 stm32_set_bits(port, ofs->cr1, USART_CR1_TXEIE);
312}
313
314static void stm32_tx_interrupt_disable(struct uart_port *port)
315{
316 struct stm32_port *stm32_port = to_stm32_port(port);
317 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
318
319 if (stm32_port->fifoen)
320 stm32_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE);
321 else
322 stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE);
323}
324
Alexandre TORGUE34891872016-09-15 18:42:40 +0200325static void stm32_transmit_chars_pio(struct uart_port *port)
326{
327 struct stm32_port *stm32_port = to_stm32_port(port);
328 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
329 struct circ_buf *xmit = &port->state->xmit;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200330
331 if (stm32_port->tx_dma_busy) {
332 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
333 stm32_port->tx_dma_busy = false;
334 }
335
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200336 while (!uart_circ_empty(xmit)) {
337 /* Check that TDR is empty before filling FIFO */
338 if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
339 break;
340 writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr);
341 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
342 port->icount.tx++;
343 }
Alexandre TORGUE34891872016-09-15 18:42:40 +0200344
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200345 /* rely on TXE irq (mask or unmask) for sending remaining data */
346 if (uart_circ_empty(xmit))
Erwan Le Rayd0757192019-06-18 12:02:24 +0200347 stm32_tx_interrupt_disable(port);
Erwan Le Ray5d9176e2019-06-18 12:02:23 +0200348 else
Erwan Le Rayd0757192019-06-18 12:02:24 +0200349 stm32_tx_interrupt_enable(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +0200350}
351
352static void stm32_transmit_chars_dma(struct uart_port *port)
353{
354 struct stm32_port *stm32port = to_stm32_port(port);
355 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
356 struct circ_buf *xmit = &port->state->xmit;
357 struct dma_async_tx_descriptor *desc = NULL;
358 dma_cookie_t cookie;
359 unsigned int count, i;
360
361 if (stm32port->tx_dma_busy)
362 return;
363
364 stm32port->tx_dma_busy = true;
365
366 count = uart_circ_chars_pending(xmit);
367
368 if (count > TX_BUF_L)
369 count = TX_BUF_L;
370
371 if (xmit->tail < xmit->head) {
372 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], count);
373 } else {
374 size_t one = UART_XMIT_SIZE - xmit->tail;
375 size_t two;
376
377 if (one > count)
378 one = count;
379 two = count - one;
380
381 memcpy(&stm32port->tx_buf[0], &xmit->buf[xmit->tail], one);
382 if (two)
383 memcpy(&stm32port->tx_buf[one], &xmit->buf[0], two);
384 }
385
386 desc = dmaengine_prep_slave_single(stm32port->tx_ch,
387 stm32port->tx_dma_buf,
388 count,
389 DMA_MEM_TO_DEV,
390 DMA_PREP_INTERRUPT);
391
392 if (!desc) {
393 for (i = count; i > 0; i--)
394 stm32_transmit_chars_pio(port);
395 return;
396 }
397
398 desc->callback = stm32_tx_dma_complete;
399 desc->callback_param = port;
400
401 /* Push current DMA TX transaction in the pending queue */
402 cookie = dmaengine_submit(desc);
403
404 /* Issue pending DMA TX requests */
405 dma_async_issue_pending(stm32port->tx_ch);
406
Alexandre TORGUE34891872016-09-15 18:42:40 +0200407 stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
408
409 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
410 port->icount.tx += count;
411}
412
Maxime Coquelin48a60922015-06-10 21:19:36 +0200413static void stm32_transmit_chars(struct uart_port *port)
414{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200415 struct stm32_port *stm32_port = to_stm32_port(port);
416 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200417 struct circ_buf *xmit = &port->state->xmit;
418
419 if (port->x_char) {
Alexandre TORGUE34891872016-09-15 18:42:40 +0200420 if (stm32_port->tx_dma_busy)
421 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200422 writel_relaxed(port->x_char, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200423 port->x_char = 0;
424 port->icount.tx++;
Alexandre TORGUE34891872016-09-15 18:42:40 +0200425 if (stm32_port->tx_dma_busy)
426 stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200427 return;
428 }
429
Erwan Le Rayb83b9572019-05-21 17:45:44 +0200430 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Erwan Le Rayd0757192019-06-18 12:02:24 +0200431 stm32_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200432 return;
433 }
434
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200435 if (ofs->icr == UNDEF_REG)
436 stm32_clr_bits(port, ofs->isr, USART_SR_TC);
437 else
438 stm32_set_bits(port, ofs->icr, USART_ICR_TCCF);
439
Alexandre TORGUE34891872016-09-15 18:42:40 +0200440 if (stm32_port->tx_ch)
441 stm32_transmit_chars_dma(port);
442 else
443 stm32_transmit_chars_pio(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200444
445 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
446 uart_write_wakeup(port);
447
448 if (uart_circ_empty(xmit))
Erwan Le Rayd0757192019-06-18 12:02:24 +0200449 stm32_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200450}
451
452static irqreturn_t stm32_interrupt(int irq, void *ptr)
453{
454 struct uart_port *port = ptr;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200455 struct stm32_port *stm32_port = to_stm32_port(port);
456 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200457 u32 sr;
458
Alexandre TORGUE01d32d72016-09-15 18:42:41 +0200459 spin_lock(&port->lock);
460
Alexandre TORGUEada86182016-09-15 18:42:33 +0200461 sr = readl_relaxed(port->membase + ofs->isr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200462
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200463 if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG)
464 writel_relaxed(USART_ICR_RTOCF,
465 port->membase + ofs->icr);
466
Fabrice Gasnier270e5a72017-07-13 15:08:30 +0000467 if ((sr & USART_SR_WUF) && (ofs->icr != UNDEF_REG))
468 writel_relaxed(USART_ICR_WUCF,
469 port->membase + ofs->icr);
470
Alexandre TORGUE34891872016-09-15 18:42:40 +0200471 if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch))
472 stm32_receive_chars(port, false);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200473
Alexandre TORGUE34891872016-09-15 18:42:40 +0200474 if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch))
Maxime Coquelin48a60922015-06-10 21:19:36 +0200475 stm32_transmit_chars(port);
476
Alexandre TORGUE01d32d72016-09-15 18:42:41 +0200477 spin_unlock(&port->lock);
478
Alexandre TORGUE34891872016-09-15 18:42:40 +0200479 if (stm32_port->rx_ch)
480 return IRQ_WAKE_THREAD;
481 else
482 return IRQ_HANDLED;
483}
484
485static irqreturn_t stm32_threaded_interrupt(int irq, void *ptr)
486{
487 struct uart_port *port = ptr;
488 struct stm32_port *stm32_port = to_stm32_port(port);
489
490 spin_lock(&port->lock);
491
492 if (stm32_port->rx_ch)
493 stm32_receive_chars(port, true);
494
Maxime Coquelin48a60922015-06-10 21:19:36 +0200495 spin_unlock(&port->lock);
496
497 return IRQ_HANDLED;
498}
499
500static unsigned int stm32_tx_empty(struct uart_port *port)
501{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200502 struct stm32_port *stm32_port = to_stm32_port(port);
503 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
504
505 return readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200506}
507
508static void stm32_set_mctrl(struct uart_port *port, unsigned int mctrl)
509{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200510 struct stm32_port *stm32_port = to_stm32_port(port);
511 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
512
Maxime Coquelin48a60922015-06-10 21:19:36 +0200513 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS))
Alexandre TORGUEada86182016-09-15 18:42:33 +0200514 stm32_set_bits(port, ofs->cr3, USART_CR3_RTSE);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200515 else
Alexandre TORGUEada86182016-09-15 18:42:33 +0200516 stm32_clr_bits(port, ofs->cr3, USART_CR3_RTSE);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200517}
518
519static unsigned int stm32_get_mctrl(struct uart_port *port)
520{
521 /* This routine is used to get signals of: DCD, DSR, RI, and CTS */
522 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
523}
524
525/* Transmit stop */
526static void stm32_stop_tx(struct uart_port *port)
527{
Erwan Le Rayd0757192019-06-18 12:02:24 +0200528 stm32_tx_interrupt_disable(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200529}
530
531/* There are probably characters waiting to be transmitted. */
532static void stm32_start_tx(struct uart_port *port)
533{
534 struct circ_buf *xmit = &port->state->xmit;
535
536 if (uart_circ_empty(xmit))
537 return;
538
Alexandre TORGUE34891872016-09-15 18:42:40 +0200539 stm32_transmit_chars(port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200540}
541
542/* Throttle the remote when input buffer is about to overflow. */
543static void stm32_throttle(struct uart_port *port)
544{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200545 struct stm32_port *stm32_port = to_stm32_port(port);
546 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200547 unsigned long flags;
548
549 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200550 stm32_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200551 if (stm32_port->cr3_irq)
552 stm32_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
553
Maxime Coquelin48a60922015-06-10 21:19:36 +0200554 spin_unlock_irqrestore(&port->lock, flags);
555}
556
557/* Unthrottle the remote, the input buffer can now accept data. */
558static void stm32_unthrottle(struct uart_port *port)
559{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200560 struct stm32_port *stm32_port = to_stm32_port(port);
561 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200562 unsigned long flags;
563
564 spin_lock_irqsave(&port->lock, flags);
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200565 stm32_set_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200566 if (stm32_port->cr3_irq)
567 stm32_set_bits(port, ofs->cr3, stm32_port->cr3_irq);
568
Maxime Coquelin48a60922015-06-10 21:19:36 +0200569 spin_unlock_irqrestore(&port->lock, flags);
570}
571
572/* Receive stop */
573static void stm32_stop_rx(struct uart_port *port)
574{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200575 struct stm32_port *stm32_port = to_stm32_port(port);
576 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
577
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200578 stm32_clr_bits(port, ofs->cr1, stm32_port->cr1_irq);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200579 if (stm32_port->cr3_irq)
580 stm32_clr_bits(port, ofs->cr3, stm32_port->cr3_irq);
581
Maxime Coquelin48a60922015-06-10 21:19:36 +0200582}
583
584/* Handle breaks - ignored by us */
585static void stm32_break_ctl(struct uart_port *port, int break_state)
586{
587}
588
589static int stm32_startup(struct uart_port *port)
590{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200591 struct stm32_port *stm32_port = to_stm32_port(port);
592 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200593 const char *name = to_platform_device(port->dev)->name;
594 u32 val;
595 int ret;
596
Alexandre TORGUE34891872016-09-15 18:42:40 +0200597 ret = request_threaded_irq(port->irq, stm32_interrupt,
598 stm32_threaded_interrupt,
599 IRQF_NO_SUSPEND, name, port);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200600 if (ret)
601 return ret;
602
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200603 /* RX FIFO Flush */
604 if (ofs->rqr != UNDEF_REG)
605 stm32_set_bits(port, ofs->rqr, USART_RQR_RXFRQ);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200606
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200607 /* Tx and RX FIFO configuration */
Erwan Le Rayd0757192019-06-18 12:02:24 +0200608 if (stm32_port->fifoen) {
609 val = readl_relaxed(port->membase + ofs->cr3);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200610 val &= ~(USART_CR3_TXFTCFG_MASK | USART_CR3_RXFTCFG_MASK);
Erwan Le Rayd0757192019-06-18 12:02:24 +0200611 val |= USART_CR3_TXFTCFG_HALF << USART_CR3_TXFTCFG_SHIFT;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200612 val |= USART_CR3_RXFTCFG_HALF << USART_CR3_RXFTCFG_SHIFT;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200613 writel_relaxed(val, port->membase + ofs->cr3);
614 }
615
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200616 /* RX FIFO enabling */
617 val = stm32_port->cr1_irq | USART_CR1_RE;
618 if (stm32_port->fifoen)
619 val |= USART_CR1_FIFOEN;
620 stm32_set_bits(port, ofs->cr1, val);
621
Maxime Coquelin48a60922015-06-10 21:19:36 +0200622 return 0;
623}
624
625static void stm32_shutdown(struct uart_port *port)
626{
Alexandre TORGUEada86182016-09-15 18:42:33 +0200627 struct stm32_port *stm32_port = to_stm32_port(port);
628 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +0200629 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200630 u32 val, isr;
631 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200632
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200633 val = USART_CR1_TXEIE | USART_CR1_TE;
634 val |= stm32_port->cr1_irq | USART_CR1_RE;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +0200635 val |= BIT(cfg->uart_enable_bit);
Gerald Baeza351a7622017-07-13 15:08:30 +0000636 if (stm32_port->fifoen)
637 val |= USART_CR1_FIFOEN;
Erwan Le Ray64c32ea2019-05-21 17:45:45 +0200638
639 ret = readl_relaxed_poll_timeout(port->membase + ofs->isr,
640 isr, (isr & USART_SR_TC),
641 10, 100000);
642
643 if (ret)
644 dev_err(port->dev, "transmission complete not set\n");
645
Alexandre TORGUEa14f66a2016-09-15 18:42:36 +0200646 stm32_clr_bits(port, ofs->cr1, val);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200647
648 free_irq(port->irq, port);
649}
650
YueHaibing929ffa42019-05-28 17:04:49 +0800651static unsigned int stm32_get_databits(struct ktermios *termios)
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200652{
653 unsigned int bits;
654
655 tcflag_t cflag = termios->c_cflag;
656
657 switch (cflag & CSIZE) {
658 /*
659 * CSIZE settings are not necessarily supported in hardware.
660 * CSIZE unsupported configurations are handled here to set word length
661 * to 8 bits word as default configuration and to print debug message.
662 */
663 case CS5:
664 bits = 5;
665 break;
666 case CS6:
667 bits = 6;
668 break;
669 case CS7:
670 bits = 7;
671 break;
672 /* default including CS8 */
673 default:
674 bits = 8;
675 break;
676 }
677
678 return bits;
679}
680
Maxime Coquelin48a60922015-06-10 21:19:36 +0200681static void stm32_set_termios(struct uart_port *port, struct ktermios *termios,
682 struct ktermios *old)
683{
684 struct stm32_port *stm32_port = to_stm32_port(port);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200685 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
686 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Bich HEMON1bcda092018-03-12 09:50:05 +0000687 struct serial_rs485 *rs485conf = &port->rs485;
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200688 unsigned int baud, bits;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200689 u32 usartdiv, mantissa, fraction, oversampling;
690 tcflag_t cflag = termios->c_cflag;
691 u32 cr1, cr2, cr3;
692 unsigned long flags;
693
694 if (!stm32_port->hw_flow_control)
695 cflag &= ~CRTSCTS;
696
697 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8);
698
699 spin_lock_irqsave(&port->lock, flags);
700
701 /* Stop serial port and reset value */
Alexandre TORGUEada86182016-09-15 18:42:33 +0200702 writel_relaxed(0, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200703
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200704 /* flush RX & TX FIFO */
705 if (ofs->rqr != UNDEF_REG)
706 stm32_set_bits(port, ofs->rqr,
707 USART_RQR_TXFRQ | USART_RQR_RXFRQ);
Bich HEMON1bcda092018-03-12 09:50:05 +0000708
Erwan Le Ray84872dc2019-06-18 12:02:26 +0200709 cr1 = USART_CR1_TE | USART_CR1_RE;
Gerald Baeza351a7622017-07-13 15:08:30 +0000710 if (stm32_port->fifoen)
711 cr1 |= USART_CR1_FIFOEN;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200712 cr2 = 0;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200713 cr3 = readl_relaxed(port->membase + ofs->cr3);
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200714 cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTCFG_MASK | USART_CR3_RXFTIE
Erwan Le Rayd0757192019-06-18 12:02:24 +0200715 | USART_CR3_TXFTCFG_MASK;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200716
717 if (cflag & CSTOPB)
718 cr2 |= USART_CR2_STOP_2B;
719
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200720 bits = stm32_get_databits(termios);
Erwan Le Ray6c5962f2019-05-21 17:45:43 +0200721 stm32_port->rdr_mask = (BIT(bits) - 1);
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200722
Maxime Coquelin48a60922015-06-10 21:19:36 +0200723 if (cflag & PARENB) {
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200724 bits++;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200725 cr1 |= USART_CR1_PCE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200726 }
727
Erwan Le Rayc8a9d042019-05-21 17:45:41 +0200728 /*
729 * Word length configuration:
730 * CS8 + parity, 9 bits word aka [M1:M0] = 0b01
731 * CS7 or (CS6 + parity), 7 bits word aka [M1:M0] = 0b10
732 * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00
733 * M0 and M1 already cleared by cr1 initialization.
734 */
735 if (bits == 9)
736 cr1 |= USART_CR1_M0;
737 else if ((bits == 7) && cfg->has_7bits_data)
738 cr1 |= USART_CR1_M1;
739 else if (bits != 8)
740 dev_dbg(port->dev, "Unsupported data bits config: %u bits\n"
741 , bits);
742
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200743 if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch ||
744 stm32_port->fifoen)) {
745 if (cflag & CSTOPB)
746 bits = bits + 3; /* 1 start bit + 2 stop bits */
747 else
748 bits = bits + 2; /* 1 start bit + 1 stop bit */
749
750 /* RX timeout irq to occur after last stop bit + bits */
751 stm32_port->cr1_irq = USART_CR1_RTOIE;
752 writel_relaxed(bits, port->membase + ofs->rtor);
753 cr2 |= USART_CR2_RTOEN;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200754 /* Not using dma, enable fifo threshold irq */
755 if (!stm32_port->rx_ch)
756 stm32_port->cr3_irq = USART_CR3_RXFTIE;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +0200757 }
758
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +0200759 cr1 |= stm32_port->cr1_irq;
760 cr3 |= stm32_port->cr3_irq;
761
Maxime Coquelin48a60922015-06-10 21:19:36 +0200762 if (cflag & PARODD)
763 cr1 |= USART_CR1_PS;
764
765 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
766 if (cflag & CRTSCTS) {
767 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
Bich HEMON35abe982017-07-13 15:08:28 +0000768 cr3 |= USART_CR3_CTSE | USART_CR3_RTSE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200769 }
770
771 usartdiv = DIV_ROUND_CLOSEST(port->uartclk, baud);
772
773 /*
774 * The USART supports 16 or 8 times oversampling.
775 * By default we prefer 16 times oversampling, so that the receiver
776 * has a better tolerance to clock deviations.
777 * 8 times oversampling is only used to achieve higher speeds.
778 */
779 if (usartdiv < 16) {
780 oversampling = 8;
Bich HEMON1bcda092018-03-12 09:50:05 +0000781 cr1 |= USART_CR1_OVER8;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200782 stm32_set_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200783 } else {
784 oversampling = 16;
Bich HEMON1bcda092018-03-12 09:50:05 +0000785 cr1 &= ~USART_CR1_OVER8;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200786 stm32_clr_bits(port, ofs->cr1, USART_CR1_OVER8);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200787 }
788
789 mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT;
790 fraction = usartdiv % oversampling;
Alexandre TORGUEada86182016-09-15 18:42:33 +0200791 writel_relaxed(mantissa | fraction, port->membase + ofs->brr);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200792
793 uart_update_timeout(port, cflag, baud);
794
795 port->read_status_mask = USART_SR_ORE;
796 if (termios->c_iflag & INPCK)
797 port->read_status_mask |= USART_SR_PE | USART_SR_FE;
798 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200799 port->read_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200800
801 /* Characters to ignore */
802 port->ignore_status_mask = 0;
803 if (termios->c_iflag & IGNPAR)
804 port->ignore_status_mask = USART_SR_PE | USART_SR_FE;
805 if (termios->c_iflag & IGNBRK) {
Erwan Le Ray4f01d832019-05-21 17:45:42 +0200806 port->ignore_status_mask |= USART_SR_FE;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200807 /*
808 * If we're ignoring parity and break indicators,
809 * ignore overruns too (for real raw support).
810 */
811 if (termios->c_iflag & IGNPAR)
812 port->ignore_status_mask |= USART_SR_ORE;
813 }
814
815 /* Ignore all characters if CREAD is not set */
816 if ((termios->c_cflag & CREAD) == 0)
817 port->ignore_status_mask |= USART_SR_DUMMY_RX;
818
Alexandre TORGUE34891872016-09-15 18:42:40 +0200819 if (stm32_port->rx_ch)
820 cr3 |= USART_CR3_DMAR;
821
Bich HEMON1bcda092018-03-12 09:50:05 +0000822 if (rs485conf->flags & SER_RS485_ENABLED) {
823 stm32_config_reg_rs485(&cr1, &cr3,
824 rs485conf->delay_rts_before_send,
825 rs485conf->delay_rts_after_send, baud);
826 if (rs485conf->flags & SER_RS485_RTS_ON_SEND) {
827 cr3 &= ~USART_CR3_DEP;
828 rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND;
829 } else {
830 cr3 |= USART_CR3_DEP;
831 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
832 }
833
834 } else {
835 cr3 &= ~(USART_CR3_DEM | USART_CR3_DEP);
836 cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK);
837 }
838
Alexandre TORGUEada86182016-09-15 18:42:33 +0200839 writel_relaxed(cr3, port->membase + ofs->cr3);
840 writel_relaxed(cr2, port->membase + ofs->cr2);
841 writel_relaxed(cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200842
Bich HEMON1bcda092018-03-12 09:50:05 +0000843 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +0200844 spin_unlock_irqrestore(&port->lock, flags);
845}
846
847static const char *stm32_type(struct uart_port *port)
848{
849 return (port->type == PORT_STM32) ? DRIVER_NAME : NULL;
850}
851
852static void stm32_release_port(struct uart_port *port)
853{
854}
855
856static int stm32_request_port(struct uart_port *port)
857{
858 return 0;
859}
860
861static void stm32_config_port(struct uart_port *port, int flags)
862{
863 if (flags & UART_CONFIG_TYPE)
864 port->type = PORT_STM32;
865}
866
867static int
868stm32_verify_port(struct uart_port *port, struct serial_struct *ser)
869{
870 /* No user changeable parameters */
871 return -EINVAL;
872}
873
874static void stm32_pm(struct uart_port *port, unsigned int state,
875 unsigned int oldstate)
876{
877 struct stm32_port *stm32port = container_of(port,
878 struct stm32_port, port);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200879 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
880 struct stm32_usart_config *cfg = &stm32port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200881 unsigned long flags = 0;
882
883 switch (state) {
884 case UART_PM_STATE_ON:
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +0200885 pm_runtime_get_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200886 break;
887 case UART_PM_STATE_OFF:
888 spin_lock_irqsave(&port->lock, flags);
Alexandre TORGUEada86182016-09-15 18:42:33 +0200889 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
Maxime Coquelin48a60922015-06-10 21:19:36 +0200890 spin_unlock_irqrestore(&port->lock, flags);
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +0200891 pm_runtime_put_sync(port->dev);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200892 break;
893 }
894}
895
896static const struct uart_ops stm32_uart_ops = {
897 .tx_empty = stm32_tx_empty,
898 .set_mctrl = stm32_set_mctrl,
899 .get_mctrl = stm32_get_mctrl,
900 .stop_tx = stm32_stop_tx,
901 .start_tx = stm32_start_tx,
902 .throttle = stm32_throttle,
903 .unthrottle = stm32_unthrottle,
904 .stop_rx = stm32_stop_rx,
905 .break_ctl = stm32_break_ctl,
906 .startup = stm32_startup,
907 .shutdown = stm32_shutdown,
908 .set_termios = stm32_set_termios,
909 .pm = stm32_pm,
910 .type = stm32_type,
911 .release_port = stm32_release_port,
912 .request_port = stm32_request_port,
913 .config_port = stm32_config_port,
914 .verify_port = stm32_verify_port,
915};
916
917static int stm32_init_port(struct stm32_port *stm32port,
918 struct platform_device *pdev)
919{
920 struct uart_port *port = &stm32port->port;
921 struct resource *res;
922 int ret;
923
924 port->iotype = UPIO_MEM;
925 port->flags = UPF_BOOT_AUTOCONF;
926 port->ops = &stm32_uart_ops;
927 port->dev = &pdev->dev;
Erwan Le Rayd0757192019-06-18 12:02:24 +0200928 port->fifosize = stm32port->info->cfg.fifosize;
Erwan Le Ray2c58e562019-05-21 17:45:47 +0200929
930 ret = platform_get_irq(pdev, 0);
931 if (ret <= 0) {
932 if (ret != -EPROBE_DEFER)
933 dev_err(&pdev->dev, "Can't get event IRQ: %d\n", ret);
934 return ret ? ret : -ENODEV;
935 }
936 port->irq = ret;
937
Bich HEMON7d8f6862018-03-15 08:44:46 +0000938 port->rs485_config = stm32_config_rs485;
939
940 stm32_init_rs485(port, pdev);
941
Erwan Le Ray2c58e562019-05-21 17:45:47 +0200942 if (stm32port->info->cfg.has_wakeup) {
943 stm32port->wakeirq = platform_get_irq(pdev, 1);
944 if (stm32port->wakeirq <= 0 && stm32port->wakeirq != -ENXIO) {
945 if (stm32port->wakeirq != -EPROBE_DEFER)
946 dev_err(&pdev->dev,
947 "Can't get event wake IRQ: %d\n",
948 stm32port->wakeirq);
949 return stm32port->wakeirq ? stm32port->wakeirq :
950 -ENODEV;
951 }
952 }
953
Gerald Baeza351a7622017-07-13 15:08:30 +0000954 stm32port->fifoen = stm32port->info->cfg.has_fifo;
Maxime Coquelin48a60922015-06-10 21:19:36 +0200955
956 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
957 port->membase = devm_ioremap_resource(&pdev->dev, res);
958 if (IS_ERR(port->membase))
959 return PTR_ERR(port->membase);
960 port->mapbase = res->start;
961
962 spin_lock_init(&port->lock);
963
964 stm32port->clk = devm_clk_get(&pdev->dev, NULL);
965 if (IS_ERR(stm32port->clk))
966 return PTR_ERR(stm32port->clk);
967
968 /* Ensure that clk rate is correct by enabling the clk */
969 ret = clk_prepare_enable(stm32port->clk);
970 if (ret)
971 return ret;
972
973 stm32port->port.uartclk = clk_get_rate(stm32port->clk);
Fabrice Gasnierada80042017-07-13 15:08:29 +0000974 if (!stm32port->port.uartclk) {
975 clk_disable_unprepare(stm32port->clk);
Maxime Coquelin48a60922015-06-10 21:19:36 +0200976 ret = -EINVAL;
Fabrice Gasnierada80042017-07-13 15:08:29 +0000977 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200978
Maxime Coquelin48a60922015-06-10 21:19:36 +0200979 return ret;
980}
981
982static struct stm32_port *stm32_of_get_stm32_port(struct platform_device *pdev)
983{
984 struct device_node *np = pdev->dev.of_node;
985 int id;
986
987 if (!np)
988 return NULL;
989
990 id = of_alias_get_id(np, "serial");
Gerald Baezae5707912017-07-13 15:08:27 +0000991 if (id < 0) {
992 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", id);
993 return NULL;
994 }
Maxime Coquelin48a60922015-06-10 21:19:36 +0200995
996 if (WARN_ON(id >= STM32_MAX_PORTS))
997 return NULL;
998
999 stm32_ports[id].hw_flow_control = of_property_read_bool(np,
Alexandre TORGUE59bed2d2016-09-15 18:42:37 +02001000 "st,hw-flow-ctrl");
Maxime Coquelin48a60922015-06-10 21:19:36 +02001001 stm32_ports[id].port.line = id;
Erwan Le Ray4cc0ed62019-06-18 12:02:22 +02001002 stm32_ports[id].cr1_irq = USART_CR1_RXNEIE;
Erwan Le Rayd0a6a7b2019-06-18 12:02:25 +02001003 stm32_ports[id].cr3_irq = 0;
Gerald Baezae5707912017-07-13 15:08:27 +00001004 stm32_ports[id].last_res = RX_BUF_L;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001005 return &stm32_ports[id];
1006}
1007
1008#ifdef CONFIG_OF
1009static const struct of_device_id stm32_match[] = {
Alexandre TORGUEada86182016-09-15 18:42:33 +02001010 { .compatible = "st,stm32-uart", .data = &stm32f4_info},
Alexandre TORGUEada86182016-09-15 18:42:33 +02001011 { .compatible = "st,stm32f7-uart", .data = &stm32f7_info},
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001012 { .compatible = "st,stm32h7-uart", .data = &stm32h7_info},
Maxime Coquelin48a60922015-06-10 21:19:36 +02001013 {},
1014};
1015
1016MODULE_DEVICE_TABLE(of, stm32_match);
1017#endif
1018
Alexandre TORGUE34891872016-09-15 18:42:40 +02001019static int stm32_of_dma_rx_probe(struct stm32_port *stm32port,
1020 struct platform_device *pdev)
1021{
1022 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
1023 struct uart_port *port = &stm32port->port;
1024 struct device *dev = &pdev->dev;
1025 struct dma_slave_config config;
1026 struct dma_async_tx_descriptor *desc = NULL;
1027 dma_cookie_t cookie;
1028 int ret;
1029
1030 /* Request DMA RX channel */
1031 stm32port->rx_ch = dma_request_slave_channel(dev, "rx");
1032 if (!stm32port->rx_ch) {
1033 dev_info(dev, "rx dma alloc failed\n");
1034 return -ENODEV;
1035 }
1036 stm32port->rx_buf = dma_alloc_coherent(&pdev->dev, RX_BUF_L,
1037 &stm32port->rx_dma_buf,
1038 GFP_KERNEL);
1039 if (!stm32port->rx_buf) {
1040 ret = -ENOMEM;
1041 goto alloc_err;
1042 }
1043
1044 /* Configure DMA channel */
1045 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001046 config.src_addr = port->mapbase + ofs->rdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001047 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1048
1049 ret = dmaengine_slave_config(stm32port->rx_ch, &config);
1050 if (ret < 0) {
1051 dev_err(dev, "rx dma channel config failed\n");
1052 ret = -ENODEV;
1053 goto config_err;
1054 }
1055
1056 /* Prepare a DMA cyclic transaction */
1057 desc = dmaengine_prep_dma_cyclic(stm32port->rx_ch,
1058 stm32port->rx_dma_buf,
1059 RX_BUF_L, RX_BUF_P, DMA_DEV_TO_MEM,
1060 DMA_PREP_INTERRUPT);
1061 if (!desc) {
1062 dev_err(dev, "rx dma prep cyclic failed\n");
1063 ret = -ENODEV;
1064 goto config_err;
1065 }
1066
1067 /* No callback as dma buffer is drained on usart interrupt */
1068 desc->callback = NULL;
1069 desc->callback_param = NULL;
1070
1071 /* Push current DMA transaction in the pending queue */
1072 cookie = dmaengine_submit(desc);
1073
1074 /* Issue pending DMA requests */
1075 dma_async_issue_pending(stm32port->rx_ch);
1076
1077 return 0;
1078
1079config_err:
1080 dma_free_coherent(&pdev->dev,
1081 RX_BUF_L, stm32port->rx_buf,
1082 stm32port->rx_dma_buf);
1083
1084alloc_err:
1085 dma_release_channel(stm32port->rx_ch);
1086 stm32port->rx_ch = NULL;
1087
1088 return ret;
1089}
1090
1091static int stm32_of_dma_tx_probe(struct stm32_port *stm32port,
1092 struct platform_device *pdev)
1093{
1094 struct stm32_usart_offsets *ofs = &stm32port->info->ofs;
1095 struct uart_port *port = &stm32port->port;
1096 struct device *dev = &pdev->dev;
1097 struct dma_slave_config config;
1098 int ret;
1099
1100 stm32port->tx_dma_busy = false;
1101
1102 /* Request DMA TX channel */
1103 stm32port->tx_ch = dma_request_slave_channel(dev, "tx");
1104 if (!stm32port->tx_ch) {
1105 dev_info(dev, "tx dma alloc failed\n");
1106 return -ENODEV;
1107 }
1108 stm32port->tx_buf = dma_alloc_coherent(&pdev->dev, TX_BUF_L,
1109 &stm32port->tx_dma_buf,
1110 GFP_KERNEL);
1111 if (!stm32port->tx_buf) {
1112 ret = -ENOMEM;
1113 goto alloc_err;
1114 }
1115
1116 /* Configure DMA channel */
1117 memset(&config, 0, sizeof(config));
Arnd Bergmann8e5481d2016-09-23 21:38:51 +02001118 config.dst_addr = port->mapbase + ofs->tdr;
Alexandre TORGUE34891872016-09-15 18:42:40 +02001119 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1120
1121 ret = dmaengine_slave_config(stm32port->tx_ch, &config);
1122 if (ret < 0) {
1123 dev_err(dev, "tx dma channel config failed\n");
1124 ret = -ENODEV;
1125 goto config_err;
1126 }
1127
1128 return 0;
1129
1130config_err:
1131 dma_free_coherent(&pdev->dev,
1132 TX_BUF_L, stm32port->tx_buf,
1133 stm32port->tx_dma_buf);
1134
1135alloc_err:
1136 dma_release_channel(stm32port->tx_ch);
1137 stm32port->tx_ch = NULL;
1138
1139 return ret;
1140}
1141
Maxime Coquelin48a60922015-06-10 21:19:36 +02001142static int stm32_serial_probe(struct platform_device *pdev)
1143{
Alexandre TORGUEada86182016-09-15 18:42:33 +02001144 const struct of_device_id *match;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001145 struct stm32_port *stm32port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001146 int ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001147
1148 stm32port = stm32_of_get_stm32_port(pdev);
1149 if (!stm32port)
1150 return -ENODEV;
1151
Alexandre TORGUEada86182016-09-15 18:42:33 +02001152 match = of_match_device(stm32_match, &pdev->dev);
1153 if (match && match->data)
1154 stm32port->info = (struct stm32_usart_info *)match->data;
1155 else
1156 return -EINVAL;
1157
Maxime Coquelin48a60922015-06-10 21:19:36 +02001158 ret = stm32_init_port(stm32port, pdev);
1159 if (ret)
1160 return ret;
1161
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001162 if (stm32port->wakeirq > 0) {
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001163 ret = device_init_wakeup(&pdev->dev, true);
1164 if (ret)
1165 goto err_uninit;
Erwan Le Ray5297f272019-05-21 17:45:46 +02001166
1167 ret = dev_pm_set_dedicated_wake_irq(&pdev->dev,
1168 stm32port->wakeirq);
1169 if (ret)
1170 goto err_nowup;
1171
1172 device_set_wakeup_enable(&pdev->dev, false);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001173 }
1174
Maxime Coquelin48a60922015-06-10 21:19:36 +02001175 ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port);
1176 if (ret)
Erwan Le Ray5297f272019-05-21 17:45:46 +02001177 goto err_wirq;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001178
Alexandre TORGUE34891872016-09-15 18:42:40 +02001179 ret = stm32_of_dma_rx_probe(stm32port, pdev);
1180 if (ret)
1181 dev_info(&pdev->dev, "interrupt mode used for rx (no dma)\n");
1182
1183 ret = stm32_of_dma_tx_probe(stm32port, pdev);
1184 if (ret)
1185 dev_info(&pdev->dev, "interrupt mode used for tx (no dma)\n");
1186
Maxime Coquelin48a60922015-06-10 21:19:36 +02001187 platform_set_drvdata(pdev, &stm32port->port);
1188
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001189 pm_runtime_get_noresume(&pdev->dev);
1190 pm_runtime_set_active(&pdev->dev);
1191 pm_runtime_enable(&pdev->dev);
1192 pm_runtime_put_sync(&pdev->dev);
1193
Maxime Coquelin48a60922015-06-10 21:19:36 +02001194 return 0;
Fabrice Gasnierada80042017-07-13 15:08:29 +00001195
Erwan Le Ray5297f272019-05-21 17:45:46 +02001196err_wirq:
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001197 if (stm32port->wakeirq > 0)
Erwan Le Ray5297f272019-05-21 17:45:46 +02001198 dev_pm_clear_wake_irq(&pdev->dev);
1199
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001200err_nowup:
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001201 if (stm32port->wakeirq > 0)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001202 device_init_wakeup(&pdev->dev, false);
1203
Fabrice Gasnierada80042017-07-13 15:08:29 +00001204err_uninit:
1205 clk_disable_unprepare(stm32port->clk);
1206
1207 return ret;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001208}
1209
1210static int stm32_serial_remove(struct platform_device *pdev)
1211{
1212 struct uart_port *port = platform_get_drvdata(pdev);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001213 struct stm32_port *stm32_port = to_stm32_port(port);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001214 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001215 int err;
1216
1217 pm_runtime_get_sync(&pdev->dev);
Alexandre TORGUE34891872016-09-15 18:42:40 +02001218
1219 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAR);
1220
1221 if (stm32_port->rx_ch)
1222 dma_release_channel(stm32_port->rx_ch);
1223
1224 if (stm32_port->rx_dma_buf)
1225 dma_free_coherent(&pdev->dev,
1226 RX_BUF_L, stm32_port->rx_buf,
1227 stm32_port->rx_dma_buf);
1228
1229 stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT);
1230
1231 if (stm32_port->tx_ch)
1232 dma_release_channel(stm32_port->tx_ch);
1233
1234 if (stm32_port->tx_dma_buf)
1235 dma_free_coherent(&pdev->dev,
1236 TX_BUF_L, stm32_port->tx_buf,
1237 stm32_port->tx_dma_buf);
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001238
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001239 if (stm32_port->wakeirq > 0) {
Erwan Le Ray5297f272019-05-21 17:45:46 +02001240 dev_pm_clear_wake_irq(&pdev->dev);
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001241 device_init_wakeup(&pdev->dev, false);
Erwan Le Ray5297f272019-05-21 17:45:46 +02001242 }
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001243
Alexandre TORGUE511c7b12016-09-15 18:42:38 +02001244 clk_disable_unprepare(stm32_port->clk);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001245
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001246 err = uart_remove_one_port(&stm32_usart_driver, port);
1247
1248 pm_runtime_disable(&pdev->dev);
1249 pm_runtime_put_noidle(&pdev->dev);
1250
1251 return err;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001252}
1253
1254
1255#ifdef CONFIG_SERIAL_STM32_CONSOLE
1256static void stm32_console_putchar(struct uart_port *port, int ch)
1257{
Alexandre TORGUEada86182016-09-15 18:42:33 +02001258 struct stm32_port *stm32_port = to_stm32_port(port);
1259 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1260
1261 while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE))
Maxime Coquelin48a60922015-06-10 21:19:36 +02001262 cpu_relax();
1263
Alexandre TORGUEada86182016-09-15 18:42:33 +02001264 writel_relaxed(ch, port->membase + ofs->tdr);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001265}
1266
1267static void stm32_console_write(struct console *co, const char *s, unsigned cnt)
1268{
1269 struct uart_port *port = &stm32_ports[co->index].port;
Alexandre TORGUEada86182016-09-15 18:42:33 +02001270 struct stm32_port *stm32_port = to_stm32_port(port);
1271 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001272 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
Maxime Coquelin48a60922015-06-10 21:19:36 +02001273 unsigned long flags;
1274 u32 old_cr1, new_cr1;
1275 int locked = 1;
1276
1277 local_irq_save(flags);
1278 if (port->sysrq)
1279 locked = 0;
1280 else if (oops_in_progress)
1281 locked = spin_trylock(&port->lock);
1282 else
1283 spin_lock(&port->lock);
1284
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001285 /* Save and disable interrupts, enable the transmitter */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001286 old_cr1 = readl_relaxed(port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001287 new_cr1 = old_cr1 & ~USART_CR1_IE_MASK;
Alexandre TORGUE87f1f802016-09-15 18:42:42 +02001288 new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit);
Alexandre TORGUEada86182016-09-15 18:42:33 +02001289 writel_relaxed(new_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001290
1291 uart_console_write(port, s, cnt, stm32_console_putchar);
1292
1293 /* Restore interrupt state */
Alexandre TORGUEada86182016-09-15 18:42:33 +02001294 writel_relaxed(old_cr1, port->membase + ofs->cr1);
Maxime Coquelin48a60922015-06-10 21:19:36 +02001295
1296 if (locked)
1297 spin_unlock(&port->lock);
1298 local_irq_restore(flags);
1299}
1300
1301static int stm32_console_setup(struct console *co, char *options)
1302{
1303 struct stm32_port *stm32port;
1304 int baud = 9600;
1305 int bits = 8;
1306 int parity = 'n';
1307 int flow = 'n';
1308
1309 if (co->index >= STM32_MAX_PORTS)
1310 return -ENODEV;
1311
1312 stm32port = &stm32_ports[co->index];
1313
1314 /*
1315 * This driver does not support early console initialization
1316 * (use ARM early printk support instead), so we only expect
1317 * this to be called during the uart port registration when the
1318 * driver gets probed and the port should be mapped at that point.
1319 */
1320 if (stm32port->port.mapbase == 0 || stm32port->port.membase == NULL)
1321 return -ENXIO;
1322
1323 if (options)
1324 uart_parse_options(options, &baud, &parity, &bits, &flow);
1325
1326 return uart_set_options(&stm32port->port, co, baud, parity, bits, flow);
1327}
1328
1329static struct console stm32_console = {
1330 .name = STM32_SERIAL_NAME,
1331 .device = uart_console_device,
1332 .write = stm32_console_write,
1333 .setup = stm32_console_setup,
1334 .flags = CON_PRINTBUFFER,
1335 .index = -1,
1336 .data = &stm32_usart_driver,
1337};
1338
1339#define STM32_SERIAL_CONSOLE (&stm32_console)
1340
1341#else
1342#define STM32_SERIAL_CONSOLE NULL
1343#endif /* CONFIG_SERIAL_STM32_CONSOLE */
1344
1345static struct uart_driver stm32_usart_driver = {
1346 .driver_name = DRIVER_NAME,
1347 .dev_name = STM32_SERIAL_NAME,
1348 .major = 0,
1349 .minor = 0,
1350 .nr = STM32_MAX_PORTS,
1351 .cons = STM32_SERIAL_CONSOLE,
1352};
1353
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001354#ifdef CONFIG_PM_SLEEP
1355static void stm32_serial_enable_wakeup(struct uart_port *port, bool enable)
1356{
1357 struct stm32_port *stm32_port = to_stm32_port(port);
1358 struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
1359 struct stm32_usart_config *cfg = &stm32_port->info->cfg;
1360 u32 val;
1361
Erwan Le Ray2c58e562019-05-21 17:45:47 +02001362 if (stm32_port->wakeirq <= 0)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001363 return;
1364
1365 if (enable) {
1366 stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1367 stm32_set_bits(port, ofs->cr1, USART_CR1_UESM);
1368 val = readl_relaxed(port->membase + ofs->cr3);
1369 val &= ~USART_CR3_WUS_MASK;
1370 /* Enable Wake up interrupt from low power on start bit */
1371 val |= USART_CR3_WUS_START_BIT | USART_CR3_WUFIE;
1372 writel_relaxed(val, port->membase + ofs->cr3);
1373 stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit));
1374 } else {
1375 stm32_clr_bits(port, ofs->cr1, USART_CR1_UESM);
1376 }
1377}
1378
1379static int stm32_serial_suspend(struct device *dev)
1380{
1381 struct uart_port *port = dev_get_drvdata(dev);
1382
1383 uart_suspend_port(&stm32_usart_driver, port);
1384
1385 if (device_may_wakeup(dev))
1386 stm32_serial_enable_wakeup(port, true);
1387 else
1388 stm32_serial_enable_wakeup(port, false);
1389
Erwan Le Ray94616d92019-06-13 15:49:53 +02001390 pinctrl_pm_select_sleep_state(dev);
1391
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001392 return 0;
1393}
1394
1395static int stm32_serial_resume(struct device *dev)
1396{
1397 struct uart_port *port = dev_get_drvdata(dev);
1398
Erwan Le Ray94616d92019-06-13 15:49:53 +02001399 pinctrl_pm_select_default_state(dev);
1400
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001401 if (device_may_wakeup(dev))
1402 stm32_serial_enable_wakeup(port, false);
1403
1404 return uart_resume_port(&stm32_usart_driver, port);
1405}
1406#endif /* CONFIG_PM_SLEEP */
1407
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001408static int __maybe_unused stm32_serial_runtime_suspend(struct device *dev)
1409{
1410 struct uart_port *port = dev_get_drvdata(dev);
1411 struct stm32_port *stm32port = container_of(port,
1412 struct stm32_port, port);
1413
1414 clk_disable_unprepare(stm32port->clk);
1415
1416 return 0;
1417}
1418
1419static int __maybe_unused stm32_serial_runtime_resume(struct device *dev)
1420{
1421 struct uart_port *port = dev_get_drvdata(dev);
1422 struct stm32_port *stm32port = container_of(port,
1423 struct stm32_port, port);
1424
1425 return clk_prepare_enable(stm32port->clk);
1426}
1427
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001428static const struct dev_pm_ops stm32_serial_pm_ops = {
Erwan Le Rayfb6dcef2019-06-13 15:49:54 +02001429 SET_RUNTIME_PM_OPS(stm32_serial_runtime_suspend,
1430 stm32_serial_runtime_resume, NULL)
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001431 SET_SYSTEM_SLEEP_PM_OPS(stm32_serial_suspend, stm32_serial_resume)
1432};
1433
Maxime Coquelin48a60922015-06-10 21:19:36 +02001434static struct platform_driver stm32_serial_driver = {
1435 .probe = stm32_serial_probe,
1436 .remove = stm32_serial_remove,
1437 .driver = {
1438 .name = DRIVER_NAME,
Fabrice Gasnier270e5a72017-07-13 15:08:30 +00001439 .pm = &stm32_serial_pm_ops,
Maxime Coquelin48a60922015-06-10 21:19:36 +02001440 .of_match_table = of_match_ptr(stm32_match),
1441 },
1442};
1443
1444static int __init usart_init(void)
1445{
1446 static char banner[] __initdata = "STM32 USART driver initialized";
1447 int ret;
1448
1449 pr_info("%s\n", banner);
1450
1451 ret = uart_register_driver(&stm32_usart_driver);
1452 if (ret)
1453 return ret;
1454
1455 ret = platform_driver_register(&stm32_serial_driver);
1456 if (ret)
1457 uart_unregister_driver(&stm32_usart_driver);
1458
1459 return ret;
1460}
1461
1462static void __exit usart_exit(void)
1463{
1464 platform_driver_unregister(&stm32_serial_driver);
1465 uart_unregister_driver(&stm32_usart_driver);
1466}
1467
1468module_init(usart_init);
1469module_exit(usart_exit);
1470
1471MODULE_ALIAS("platform:" DRIVER_NAME);
1472MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver");
1473MODULE_LICENSE("GPL v2");