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