| .. | .. |
|---|
| 8 | 8 | * Inspired by st-asc.c from STMicroelectronics (c) |
|---|
| 9 | 9 | */ |
|---|
| 10 | 10 | |
|---|
| 11 | | -#if defined(CONFIG_SERIAL_STM32_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) |
|---|
| 12 | | -#define SUPPORT_SYSRQ |
|---|
| 13 | | -#endif |
|---|
| 14 | | - |
|---|
| 15 | 11 | #include <linux/clk.h> |
|---|
| 16 | 12 | #include <linux/console.h> |
|---|
| 17 | 13 | #include <linux/delay.h> |
|---|
| .. | .. |
|---|
| 24 | 20 | #include <linux/module.h> |
|---|
| 25 | 21 | #include <linux/of.h> |
|---|
| 26 | 22 | #include <linux/of_platform.h> |
|---|
| 23 | +#include <linux/pinctrl/consumer.h> |
|---|
| 27 | 24 | #include <linux/platform_device.h> |
|---|
| 28 | 25 | #include <linux/pm_runtime.h> |
|---|
| 29 | 26 | #include <linux/pm_wakeirq.h> |
|---|
| .. | .. |
|---|
| 34 | 31 | #include <linux/tty_flip.h> |
|---|
| 35 | 32 | #include <linux/tty.h> |
|---|
| 36 | 33 | |
|---|
| 34 | +#include "serial_mctrl_gpio.h" |
|---|
| 37 | 35 | #include "stm32-usart.h" |
|---|
| 38 | 36 | |
|---|
| 39 | | -static void stm32_stop_tx(struct uart_port *port); |
|---|
| 40 | | -static void stm32_transmit_chars(struct uart_port *port); |
|---|
| 37 | +static void stm32_usart_stop_tx(struct uart_port *port); |
|---|
| 38 | +static void stm32_usart_transmit_chars(struct uart_port *port); |
|---|
| 41 | 39 | |
|---|
| 42 | 40 | static inline struct stm32_port *to_stm32_port(struct uart_port *port) |
|---|
| 43 | 41 | { |
|---|
| 44 | 42 | return container_of(port, struct stm32_port, port); |
|---|
| 45 | 43 | } |
|---|
| 46 | 44 | |
|---|
| 47 | | -static void stm32_set_bits(struct uart_port *port, u32 reg, u32 bits) |
|---|
| 45 | +static void stm32_usart_set_bits(struct uart_port *port, u32 reg, u32 bits) |
|---|
| 48 | 46 | { |
|---|
| 49 | 47 | u32 val; |
|---|
| 50 | 48 | |
|---|
| .. | .. |
|---|
| 53 | 51 | writel_relaxed(val, port->membase + reg); |
|---|
| 54 | 52 | } |
|---|
| 55 | 53 | |
|---|
| 56 | | -static void stm32_clr_bits(struct uart_port *port, u32 reg, u32 bits) |
|---|
| 54 | +static void stm32_usart_clr_bits(struct uart_port *port, u32 reg, u32 bits) |
|---|
| 57 | 55 | { |
|---|
| 58 | 56 | u32 val; |
|---|
| 59 | 57 | |
|---|
| .. | .. |
|---|
| 62 | 60 | writel_relaxed(val, port->membase + reg); |
|---|
| 63 | 61 | } |
|---|
| 64 | 62 | |
|---|
| 65 | | -static void stm32_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE, |
|---|
| 66 | | - u32 delay_DDE, u32 baud) |
|---|
| 63 | +static void stm32_usart_config_reg_rs485(u32 *cr1, u32 *cr3, u32 delay_ADE, |
|---|
| 64 | + u32 delay_DDE, u32 baud) |
|---|
| 67 | 65 | { |
|---|
| 68 | 66 | u32 rs485_deat_dedt; |
|---|
| 69 | 67 | u32 rs485_deat_dedt_max = (USART_CR1_DEAT_MASK >> USART_CR1_DEAT_SHIFT); |
|---|
| .. | .. |
|---|
| 71 | 69 | |
|---|
| 72 | 70 | *cr3 |= USART_CR3_DEM; |
|---|
| 73 | 71 | over8 = *cr1 & USART_CR1_OVER8; |
|---|
| 72 | + |
|---|
| 73 | + *cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK); |
|---|
| 74 | 74 | |
|---|
| 75 | 75 | if (over8) |
|---|
| 76 | 76 | rs485_deat_dedt = delay_ADE * baud * 8; |
|---|
| .. | .. |
|---|
| 97 | 97 | *cr1 |= rs485_deat_dedt; |
|---|
| 98 | 98 | } |
|---|
| 99 | 99 | |
|---|
| 100 | | -static int stm32_config_rs485(struct uart_port *port, |
|---|
| 101 | | - struct serial_rs485 *rs485conf) |
|---|
| 100 | +static int stm32_usart_config_rs485(struct uart_port *port, |
|---|
| 101 | + struct serial_rs485 *rs485conf) |
|---|
| 102 | 102 | { |
|---|
| 103 | 103 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 104 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 105 | | - struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 104 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 105 | + const struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 106 | 106 | u32 usartdiv, baud, cr1, cr3; |
|---|
| 107 | 107 | bool over8; |
|---|
| 108 | 108 | |
|---|
| 109 | | - stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 109 | + stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 110 | 110 | |
|---|
| 111 | 111 | port->rs485 = *rs485conf; |
|---|
| 112 | 112 | |
|---|
| .. | .. |
|---|
| 124 | 124 | << USART_BRR_04_R_SHIFT; |
|---|
| 125 | 125 | |
|---|
| 126 | 126 | baud = DIV_ROUND_CLOSEST(port->uartclk, usartdiv); |
|---|
| 127 | | - stm32_config_reg_rs485(&cr1, &cr3, |
|---|
| 128 | | - rs485conf->delay_rts_before_send, |
|---|
| 129 | | - rs485conf->delay_rts_after_send, baud); |
|---|
| 127 | + stm32_usart_config_reg_rs485(&cr1, &cr3, |
|---|
| 128 | + rs485conf->delay_rts_before_send, |
|---|
| 129 | + rs485conf->delay_rts_after_send, |
|---|
| 130 | + baud); |
|---|
| 130 | 131 | |
|---|
| 131 | 132 | if (rs485conf->flags & SER_RS485_RTS_ON_SEND) { |
|---|
| 132 | 133 | cr3 &= ~USART_CR3_DEP; |
|---|
| .. | .. |
|---|
| 139 | 140 | writel_relaxed(cr3, port->membase + ofs->cr3); |
|---|
| 140 | 141 | writel_relaxed(cr1, port->membase + ofs->cr1); |
|---|
| 141 | 142 | } else { |
|---|
| 142 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_DEM | USART_CR3_DEP); |
|---|
| 143 | | - stm32_clr_bits(port, ofs->cr1, |
|---|
| 144 | | - USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK); |
|---|
| 143 | + stm32_usart_clr_bits(port, ofs->cr3, |
|---|
| 144 | + USART_CR3_DEM | USART_CR3_DEP); |
|---|
| 145 | + stm32_usart_clr_bits(port, ofs->cr1, |
|---|
| 146 | + USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK); |
|---|
| 145 | 147 | } |
|---|
| 146 | 148 | |
|---|
| 147 | | - stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 149 | + stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 148 | 150 | |
|---|
| 149 | 151 | return 0; |
|---|
| 150 | 152 | } |
|---|
| 151 | 153 | |
|---|
| 152 | | -static int stm32_init_rs485(struct uart_port *port, |
|---|
| 153 | | - struct platform_device *pdev) |
|---|
| 154 | +static int stm32_usart_init_rs485(struct uart_port *port, |
|---|
| 155 | + struct platform_device *pdev) |
|---|
| 154 | 156 | { |
|---|
| 155 | 157 | struct serial_rs485 *rs485conf = &port->rs485; |
|---|
| 156 | 158 | |
|---|
| .. | .. |
|---|
| 161 | 163 | if (!pdev->dev.of_node) |
|---|
| 162 | 164 | return -ENODEV; |
|---|
| 163 | 165 | |
|---|
| 164 | | - uart_get_rs485_mode(&pdev->dev, rs485conf); |
|---|
| 165 | | - |
|---|
| 166 | | - return 0; |
|---|
| 166 | + return uart_get_rs485_mode(port); |
|---|
| 167 | 167 | } |
|---|
| 168 | 168 | |
|---|
| 169 | | -static int stm32_pending_rx(struct uart_port *port, u32 *sr, int *last_res, |
|---|
| 170 | | - bool threaded) |
|---|
| 169 | +static int stm32_usart_pending_rx(struct uart_port *port, u32 *sr, |
|---|
| 170 | + int *last_res, bool threaded) |
|---|
| 171 | 171 | { |
|---|
| 172 | 172 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 173 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 173 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 174 | 174 | enum dma_status status; |
|---|
| 175 | 175 | struct dma_tx_state state; |
|---|
| 176 | 176 | |
|---|
| .. | .. |
|---|
| 180 | 180 | status = dmaengine_tx_status(stm32_port->rx_ch, |
|---|
| 181 | 181 | stm32_port->rx_ch->cookie, |
|---|
| 182 | 182 | &state); |
|---|
| 183 | | - if ((status == DMA_IN_PROGRESS) && |
|---|
| 184 | | - (*last_res != state.residue)) |
|---|
| 183 | + if (status == DMA_IN_PROGRESS && (*last_res != state.residue)) |
|---|
| 185 | 184 | return 1; |
|---|
| 186 | 185 | else |
|---|
| 187 | 186 | return 0; |
|---|
| .. | .. |
|---|
| 191 | 190 | return 0; |
|---|
| 192 | 191 | } |
|---|
| 193 | 192 | |
|---|
| 194 | | -static unsigned long stm32_get_char(struct uart_port *port, u32 *sr, |
|---|
| 195 | | - int *last_res) |
|---|
| 193 | +static unsigned long stm32_usart_get_char(struct uart_port *port, u32 *sr, |
|---|
| 194 | + int *last_res) |
|---|
| 196 | 195 | { |
|---|
| 197 | 196 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 198 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 197 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 199 | 198 | unsigned long c; |
|---|
| 200 | 199 | |
|---|
| 201 | 200 | if (stm32_port->rx_ch) { |
|---|
| .. | .. |
|---|
| 211 | 210 | return c; |
|---|
| 212 | 211 | } |
|---|
| 213 | 212 | |
|---|
| 214 | | -static void stm32_receive_chars(struct uart_port *port, bool threaded) |
|---|
| 213 | +static void stm32_usart_receive_chars(struct uart_port *port, bool threaded) |
|---|
| 215 | 214 | { |
|---|
| 216 | 215 | struct tty_port *tport = &port->state->port; |
|---|
| 217 | 216 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 218 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 217 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 219 | 218 | unsigned long c; |
|---|
| 220 | 219 | u32 sr; |
|---|
| 221 | 220 | char flag; |
|---|
| 222 | 221 | |
|---|
| 223 | | - if (irqd_is_wakeup_set(irq_get_irq_data(port->irq))) |
|---|
| 224 | | - pm_wakeup_event(tport->tty->dev, 0); |
|---|
| 222 | + spin_lock(&port->lock); |
|---|
| 225 | 223 | |
|---|
| 226 | | - while (stm32_pending_rx(port, &sr, &stm32_port->last_res, threaded)) { |
|---|
| 224 | + while (stm32_usart_pending_rx(port, &sr, &stm32_port->last_res, |
|---|
| 225 | + threaded)) { |
|---|
| 227 | 226 | sr |= USART_SR_DUMMY_RX; |
|---|
| 228 | 227 | flag = TTY_NORMAL; |
|---|
| 229 | 228 | |
|---|
| .. | .. |
|---|
| 242 | 241 | writel_relaxed(sr & USART_SR_ERR_MASK, |
|---|
| 243 | 242 | port->membase + ofs->icr); |
|---|
| 244 | 243 | |
|---|
| 245 | | - c = stm32_get_char(port, &sr, &stm32_port->last_res); |
|---|
| 244 | + c = stm32_usart_get_char(port, &sr, &stm32_port->last_res); |
|---|
| 246 | 245 | port->icount.rx++; |
|---|
| 247 | 246 | if (sr & USART_SR_ERR_MASK) { |
|---|
| 248 | 247 | if (sr & USART_SR_ORE) { |
|---|
| .. | .. |
|---|
| 278 | 277 | } |
|---|
| 279 | 278 | |
|---|
| 280 | 279 | spin_unlock(&port->lock); |
|---|
| 280 | + |
|---|
| 281 | 281 | tty_flip_buffer_push(tport); |
|---|
| 282 | | - spin_lock(&port->lock); |
|---|
| 283 | 282 | } |
|---|
| 284 | 283 | |
|---|
| 285 | | -static void stm32_tx_dma_complete(void *arg) |
|---|
| 284 | +static void stm32_usart_tx_dma_complete(void *arg) |
|---|
| 286 | 285 | { |
|---|
| 287 | 286 | struct uart_port *port = arg; |
|---|
| 288 | 287 | struct stm32_port *stm32port = to_stm32_port(port); |
|---|
| 289 | | - struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 288 | + const struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 289 | + unsigned long flags; |
|---|
| 290 | 290 | |
|---|
| 291 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 291 | + dmaengine_terminate_async(stm32port->tx_ch); |
|---|
| 292 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 292 | 293 | stm32port->tx_dma_busy = false; |
|---|
| 293 | 294 | |
|---|
| 294 | 295 | /* Let's see if we have pending data to send */ |
|---|
| 295 | | - stm32_transmit_chars(port); |
|---|
| 296 | + spin_lock_irqsave(&port->lock, flags); |
|---|
| 297 | + stm32_usart_transmit_chars(port); |
|---|
| 298 | + spin_unlock_irqrestore(&port->lock, flags); |
|---|
| 296 | 299 | } |
|---|
| 297 | 300 | |
|---|
| 298 | | -static void stm32_transmit_chars_pio(struct uart_port *port) |
|---|
| 301 | +static void stm32_usart_tx_interrupt_enable(struct uart_port *port) |
|---|
| 299 | 302 | { |
|---|
| 300 | 303 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 301 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 304 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 305 | + |
|---|
| 306 | + /* |
|---|
| 307 | + * Enables TX FIFO threashold irq when FIFO is enabled, |
|---|
| 308 | + * or TX empty irq when FIFO is disabled |
|---|
| 309 | + */ |
|---|
| 310 | + if (stm32_port->fifoen) |
|---|
| 311 | + stm32_usart_set_bits(port, ofs->cr3, USART_CR3_TXFTIE); |
|---|
| 312 | + else |
|---|
| 313 | + stm32_usart_set_bits(port, ofs->cr1, USART_CR1_TXEIE); |
|---|
| 314 | +} |
|---|
| 315 | + |
|---|
| 316 | +static void stm32_usart_tx_interrupt_disable(struct uart_port *port) |
|---|
| 317 | +{ |
|---|
| 318 | + struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 319 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 320 | + |
|---|
| 321 | + if (stm32_port->fifoen) |
|---|
| 322 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_TXFTIE); |
|---|
| 323 | + else |
|---|
| 324 | + stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_TXEIE); |
|---|
| 325 | +} |
|---|
| 326 | + |
|---|
| 327 | +static void stm32_usart_transmit_chars_pio(struct uart_port *port) |
|---|
| 328 | +{ |
|---|
| 329 | + struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 330 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 302 | 331 | struct circ_buf *xmit = &port->state->xmit; |
|---|
| 303 | | - unsigned int isr; |
|---|
| 304 | | - int ret; |
|---|
| 305 | 332 | |
|---|
| 306 | 333 | if (stm32_port->tx_dma_busy) { |
|---|
| 307 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 334 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 308 | 335 | stm32_port->tx_dma_busy = false; |
|---|
| 309 | 336 | } |
|---|
| 310 | 337 | |
|---|
| 311 | | - ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr, |
|---|
| 312 | | - isr, |
|---|
| 313 | | - (isr & USART_SR_TXE), |
|---|
| 314 | | - 10, 100000); |
|---|
| 338 | + while (!uart_circ_empty(xmit)) { |
|---|
| 339 | + /* Check that TDR is empty before filling FIFO */ |
|---|
| 340 | + if (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE)) |
|---|
| 341 | + break; |
|---|
| 342 | + writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr); |
|---|
| 343 | + xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
|---|
| 344 | + port->icount.tx++; |
|---|
| 345 | + } |
|---|
| 315 | 346 | |
|---|
| 316 | | - if (ret) |
|---|
| 317 | | - dev_err(port->dev, "tx empty not set\n"); |
|---|
| 318 | | - |
|---|
| 319 | | - stm32_set_bits(port, ofs->cr1, USART_CR1_TXEIE); |
|---|
| 320 | | - |
|---|
| 321 | | - writel_relaxed(xmit->buf[xmit->tail], port->membase + ofs->tdr); |
|---|
| 322 | | - xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
|---|
| 323 | | - port->icount.tx++; |
|---|
| 347 | + /* rely on TXE irq (mask or unmask) for sending remaining data */ |
|---|
| 348 | + if (uart_circ_empty(xmit)) |
|---|
| 349 | + stm32_usart_tx_interrupt_disable(port); |
|---|
| 350 | + else |
|---|
| 351 | + stm32_usart_tx_interrupt_enable(port); |
|---|
| 324 | 352 | } |
|---|
| 325 | 353 | |
|---|
| 326 | | -static void stm32_transmit_chars_dma(struct uart_port *port) |
|---|
| 354 | +static void stm32_usart_transmit_chars_dma(struct uart_port *port) |
|---|
| 327 | 355 | { |
|---|
| 328 | 356 | struct stm32_port *stm32port = to_stm32_port(port); |
|---|
| 329 | | - struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 357 | + const struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 330 | 358 | struct circ_buf *xmit = &port->state->xmit; |
|---|
| 331 | 359 | struct dma_async_tx_descriptor *desc = NULL; |
|---|
| 332 | | - dma_cookie_t cookie; |
|---|
| 333 | 360 | unsigned int count, i; |
|---|
| 334 | 361 | |
|---|
| 335 | 362 | if (stm32port->tx_dma_busy) |
|---|
| .. | .. |
|---|
| 363 | 390 | DMA_MEM_TO_DEV, |
|---|
| 364 | 391 | DMA_PREP_INTERRUPT); |
|---|
| 365 | 392 | |
|---|
| 366 | | - if (!desc) { |
|---|
| 367 | | - for (i = count; i > 0; i--) |
|---|
| 368 | | - stm32_transmit_chars_pio(port); |
|---|
| 369 | | - return; |
|---|
| 370 | | - } |
|---|
| 393 | + if (!desc) |
|---|
| 394 | + goto fallback_err; |
|---|
| 371 | 395 | |
|---|
| 372 | | - desc->callback = stm32_tx_dma_complete; |
|---|
| 396 | + desc->callback = stm32_usart_tx_dma_complete; |
|---|
| 373 | 397 | desc->callback_param = port; |
|---|
| 374 | 398 | |
|---|
| 375 | 399 | /* Push current DMA TX transaction in the pending queue */ |
|---|
| 376 | | - cookie = dmaengine_submit(desc); |
|---|
| 400 | + if (dma_submit_error(dmaengine_submit(desc))) { |
|---|
| 401 | + /* dma no yet started, safe to free resources */ |
|---|
| 402 | + dmaengine_terminate_async(stm32port->tx_ch); |
|---|
| 403 | + goto fallback_err; |
|---|
| 404 | + } |
|---|
| 377 | 405 | |
|---|
| 378 | 406 | /* Issue pending DMA TX requests */ |
|---|
| 379 | 407 | dma_async_issue_pending(stm32port->tx_ch); |
|---|
| 380 | 408 | |
|---|
| 381 | | - stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 409 | + stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 382 | 410 | |
|---|
| 383 | 411 | xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1); |
|---|
| 384 | 412 | port->icount.tx += count; |
|---|
| 413 | + return; |
|---|
| 414 | + |
|---|
| 415 | +fallback_err: |
|---|
| 416 | + for (i = count; i > 0; i--) |
|---|
| 417 | + stm32_usart_transmit_chars_pio(port); |
|---|
| 385 | 418 | } |
|---|
| 386 | 419 | |
|---|
| 387 | | -static void stm32_transmit_chars(struct uart_port *port) |
|---|
| 420 | +static void stm32_usart_transmit_chars(struct uart_port *port) |
|---|
| 388 | 421 | { |
|---|
| 389 | 422 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 390 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 423 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 391 | 424 | struct circ_buf *xmit = &port->state->xmit; |
|---|
| 425 | + u32 isr; |
|---|
| 426 | + int ret; |
|---|
| 392 | 427 | |
|---|
| 393 | 428 | if (port->x_char) { |
|---|
| 394 | 429 | if (stm32_port->tx_dma_busy) |
|---|
| 395 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 430 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 431 | + |
|---|
| 432 | + /* Check that TDR is empty before filling FIFO */ |
|---|
| 433 | + ret = |
|---|
| 434 | + readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr, |
|---|
| 435 | + isr, |
|---|
| 436 | + (isr & USART_SR_TXE), |
|---|
| 437 | + 10, 1000); |
|---|
| 438 | + if (ret) |
|---|
| 439 | + dev_warn(port->dev, "1 character may be erased\n"); |
|---|
| 440 | + |
|---|
| 396 | 441 | writel_relaxed(port->x_char, port->membase + ofs->tdr); |
|---|
| 397 | 442 | port->x_char = 0; |
|---|
| 398 | 443 | port->icount.tx++; |
|---|
| 399 | 444 | if (stm32_port->tx_dma_busy) |
|---|
| 400 | | - stm32_set_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 445 | + stm32_usart_set_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 401 | 446 | return; |
|---|
| 402 | 447 | } |
|---|
| 403 | 448 | |
|---|
| 404 | 449 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { |
|---|
| 405 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE); |
|---|
| 450 | + stm32_usart_tx_interrupt_disable(port); |
|---|
| 406 | 451 | return; |
|---|
| 407 | 452 | } |
|---|
| 408 | 453 | |
|---|
| 409 | 454 | if (ofs->icr == UNDEF_REG) |
|---|
| 410 | | - stm32_clr_bits(port, ofs->isr, USART_SR_TC); |
|---|
| 455 | + stm32_usart_clr_bits(port, ofs->isr, USART_SR_TC); |
|---|
| 411 | 456 | else |
|---|
| 412 | 457 | writel_relaxed(USART_ICR_TCCF, port->membase + ofs->icr); |
|---|
| 413 | 458 | |
|---|
| 414 | 459 | if (stm32_port->tx_ch) |
|---|
| 415 | | - stm32_transmit_chars_dma(port); |
|---|
| 460 | + stm32_usart_transmit_chars_dma(port); |
|---|
| 416 | 461 | else |
|---|
| 417 | | - stm32_transmit_chars_pio(port); |
|---|
| 462 | + stm32_usart_transmit_chars_pio(port); |
|---|
| 418 | 463 | |
|---|
| 419 | 464 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
|---|
| 420 | 465 | uart_write_wakeup(port); |
|---|
| 421 | 466 | |
|---|
| 422 | 467 | if (uart_circ_empty(xmit)) |
|---|
| 423 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE); |
|---|
| 468 | + stm32_usart_tx_interrupt_disable(port); |
|---|
| 424 | 469 | } |
|---|
| 425 | 470 | |
|---|
| 426 | | -static irqreturn_t stm32_interrupt(int irq, void *ptr) |
|---|
| 471 | +static irqreturn_t stm32_usart_interrupt(int irq, void *ptr) |
|---|
| 427 | 472 | { |
|---|
| 428 | 473 | struct uart_port *port = ptr; |
|---|
| 474 | + struct tty_port *tport = &port->state->port; |
|---|
| 429 | 475 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 430 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 476 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 431 | 477 | u32 sr; |
|---|
| 432 | | - |
|---|
| 433 | | - spin_lock(&port->lock); |
|---|
| 434 | 478 | |
|---|
| 435 | 479 | sr = readl_relaxed(port->membase + ofs->isr); |
|---|
| 436 | 480 | |
|---|
| 437 | | - if ((sr & USART_SR_WUF) && (ofs->icr != UNDEF_REG)) |
|---|
| 438 | | - writel_relaxed(USART_ICR_WUCF, |
|---|
| 481 | + if ((sr & USART_SR_RTOF) && ofs->icr != UNDEF_REG) |
|---|
| 482 | + writel_relaxed(USART_ICR_RTOCF, |
|---|
| 439 | 483 | port->membase + ofs->icr); |
|---|
| 440 | 484 | |
|---|
| 485 | + if ((sr & USART_SR_WUF) && ofs->icr != UNDEF_REG) { |
|---|
| 486 | + /* Clear wake up flag and disable wake up interrupt */ |
|---|
| 487 | + writel_relaxed(USART_ICR_WUCF, |
|---|
| 488 | + port->membase + ofs->icr); |
|---|
| 489 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE); |
|---|
| 490 | + if (irqd_is_wakeup_set(irq_get_irq_data(port->irq))) |
|---|
| 491 | + pm_wakeup_event(tport->tty->dev, 0); |
|---|
| 492 | + } |
|---|
| 493 | + |
|---|
| 441 | 494 | if ((sr & USART_SR_RXNE) && !(stm32_port->rx_ch)) |
|---|
| 442 | | - stm32_receive_chars(port, false); |
|---|
| 495 | + stm32_usart_receive_chars(port, false); |
|---|
| 443 | 496 | |
|---|
| 444 | | - if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch)) |
|---|
| 445 | | - stm32_transmit_chars(port); |
|---|
| 446 | | - |
|---|
| 447 | | - spin_unlock(&port->lock); |
|---|
| 497 | + if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch)) { |
|---|
| 498 | + spin_lock(&port->lock); |
|---|
| 499 | + stm32_usart_transmit_chars(port); |
|---|
| 500 | + spin_unlock(&port->lock); |
|---|
| 501 | + } |
|---|
| 448 | 502 | |
|---|
| 449 | 503 | if (stm32_port->rx_ch) |
|---|
| 450 | 504 | return IRQ_WAKE_THREAD; |
|---|
| .. | .. |
|---|
| 452 | 506 | return IRQ_HANDLED; |
|---|
| 453 | 507 | } |
|---|
| 454 | 508 | |
|---|
| 455 | | -static irqreturn_t stm32_threaded_interrupt(int irq, void *ptr) |
|---|
| 509 | +static irqreturn_t stm32_usart_threaded_interrupt(int irq, void *ptr) |
|---|
| 456 | 510 | { |
|---|
| 457 | 511 | struct uart_port *port = ptr; |
|---|
| 458 | 512 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 459 | 513 | |
|---|
| 460 | | - spin_lock(&port->lock); |
|---|
| 461 | | - |
|---|
| 462 | 514 | if (stm32_port->rx_ch) |
|---|
| 463 | | - stm32_receive_chars(port, true); |
|---|
| 464 | | - |
|---|
| 465 | | - spin_unlock(&port->lock); |
|---|
| 515 | + stm32_usart_receive_chars(port, true); |
|---|
| 466 | 516 | |
|---|
| 467 | 517 | return IRQ_HANDLED; |
|---|
| 468 | 518 | } |
|---|
| 469 | 519 | |
|---|
| 470 | | -static unsigned int stm32_tx_empty(struct uart_port *port) |
|---|
| 520 | +static unsigned int stm32_usart_tx_empty(struct uart_port *port) |
|---|
| 471 | 521 | { |
|---|
| 472 | 522 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 473 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 523 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 474 | 524 | |
|---|
| 475 | 525 | if (readl_relaxed(port->membase + ofs->isr) & USART_SR_TC) |
|---|
| 476 | 526 | return TIOCSER_TEMT; |
|---|
| .. | .. |
|---|
| 478 | 528 | return 0; |
|---|
| 479 | 529 | } |
|---|
| 480 | 530 | |
|---|
| 481 | | -static void stm32_set_mctrl(struct uart_port *port, unsigned int mctrl) |
|---|
| 531 | +static void stm32_usart_set_mctrl(struct uart_port *port, unsigned int mctrl) |
|---|
| 482 | 532 | { |
|---|
| 483 | 533 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 484 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 534 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 485 | 535 | |
|---|
| 486 | 536 | if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) |
|---|
| 487 | | - stm32_set_bits(port, ofs->cr3, USART_CR3_RTSE); |
|---|
| 537 | + stm32_usart_set_bits(port, ofs->cr3, USART_CR3_RTSE); |
|---|
| 488 | 538 | else |
|---|
| 489 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_RTSE); |
|---|
| 539 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_RTSE); |
|---|
| 540 | + |
|---|
| 541 | + mctrl_gpio_set(stm32_port->gpios, mctrl); |
|---|
| 490 | 542 | } |
|---|
| 491 | 543 | |
|---|
| 492 | | -static unsigned int stm32_get_mctrl(struct uart_port *port) |
|---|
| 544 | +static unsigned int stm32_usart_get_mctrl(struct uart_port *port) |
|---|
| 493 | 545 | { |
|---|
| 546 | + struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 547 | + unsigned int ret; |
|---|
| 548 | + |
|---|
| 494 | 549 | /* This routine is used to get signals of: DCD, DSR, RI, and CTS */ |
|---|
| 495 | | - return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS; |
|---|
| 550 | + ret = TIOCM_CAR | TIOCM_DSR | TIOCM_CTS; |
|---|
| 551 | + |
|---|
| 552 | + return mctrl_gpio_get(stm32_port->gpios, &ret); |
|---|
| 553 | +} |
|---|
| 554 | + |
|---|
| 555 | +static void stm32_usart_enable_ms(struct uart_port *port) |
|---|
| 556 | +{ |
|---|
| 557 | + mctrl_gpio_enable_ms(to_stm32_port(port)->gpios); |
|---|
| 558 | +} |
|---|
| 559 | + |
|---|
| 560 | +static void stm32_usart_disable_ms(struct uart_port *port) |
|---|
| 561 | +{ |
|---|
| 562 | + mctrl_gpio_disable_ms(to_stm32_port(port)->gpios); |
|---|
| 496 | 563 | } |
|---|
| 497 | 564 | |
|---|
| 498 | 565 | /* Transmit stop */ |
|---|
| 499 | | -static void stm32_stop_tx(struct uart_port *port) |
|---|
| 566 | +static void stm32_usart_stop_tx(struct uart_port *port) |
|---|
| 500 | 567 | { |
|---|
| 501 | 568 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 502 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 569 | + struct serial_rs485 *rs485conf = &port->rs485; |
|---|
| 503 | 570 | |
|---|
| 504 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_TXEIE); |
|---|
| 571 | + stm32_usart_tx_interrupt_disable(port); |
|---|
| 572 | + |
|---|
| 573 | + if (rs485conf->flags & SER_RS485_ENABLED) { |
|---|
| 574 | + if (rs485conf->flags & SER_RS485_RTS_ON_SEND) { |
|---|
| 575 | + mctrl_gpio_set(stm32_port->gpios, |
|---|
| 576 | + stm32_port->port.mctrl & ~TIOCM_RTS); |
|---|
| 577 | + } else { |
|---|
| 578 | + mctrl_gpio_set(stm32_port->gpios, |
|---|
| 579 | + stm32_port->port.mctrl | TIOCM_RTS); |
|---|
| 580 | + } |
|---|
| 581 | + } |
|---|
| 505 | 582 | } |
|---|
| 506 | 583 | |
|---|
| 507 | 584 | /* There are probably characters waiting to be transmitted. */ |
|---|
| 508 | | -static void stm32_start_tx(struct uart_port *port) |
|---|
| 585 | +static void stm32_usart_start_tx(struct uart_port *port) |
|---|
| 509 | 586 | { |
|---|
| 587 | + struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 588 | + struct serial_rs485 *rs485conf = &port->rs485; |
|---|
| 510 | 589 | struct circ_buf *xmit = &port->state->xmit; |
|---|
| 511 | 590 | |
|---|
| 512 | 591 | if (uart_circ_empty(xmit) && !port->x_char) |
|---|
| 513 | 592 | return; |
|---|
| 514 | 593 | |
|---|
| 515 | | - stm32_transmit_chars(port); |
|---|
| 594 | + if (rs485conf->flags & SER_RS485_ENABLED) { |
|---|
| 595 | + if (rs485conf->flags & SER_RS485_RTS_ON_SEND) { |
|---|
| 596 | + mctrl_gpio_set(stm32_port->gpios, |
|---|
| 597 | + stm32_port->port.mctrl | TIOCM_RTS); |
|---|
| 598 | + } else { |
|---|
| 599 | + mctrl_gpio_set(stm32_port->gpios, |
|---|
| 600 | + stm32_port->port.mctrl & ~TIOCM_RTS); |
|---|
| 601 | + } |
|---|
| 602 | + } |
|---|
| 603 | + |
|---|
| 604 | + stm32_usart_transmit_chars(port); |
|---|
| 516 | 605 | } |
|---|
| 517 | 606 | |
|---|
| 518 | 607 | /* Throttle the remote when input buffer is about to overflow. */ |
|---|
| 519 | | -static void stm32_throttle(struct uart_port *port) |
|---|
| 608 | +static void stm32_usart_throttle(struct uart_port *port) |
|---|
| 520 | 609 | { |
|---|
| 521 | 610 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 522 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 611 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 523 | 612 | unsigned long flags; |
|---|
| 524 | 613 | |
|---|
| 525 | 614 | spin_lock_irqsave(&port->lock, flags); |
|---|
| 526 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_RXNEIE); |
|---|
| 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 | + |
|---|
| 527 | 619 | spin_unlock_irqrestore(&port->lock, flags); |
|---|
| 528 | 620 | } |
|---|
| 529 | 621 | |
|---|
| 530 | 622 | /* Unthrottle the remote, the input buffer can now accept data. */ |
|---|
| 531 | | -static void stm32_unthrottle(struct uart_port *port) |
|---|
| 623 | +static void stm32_usart_unthrottle(struct uart_port *port) |
|---|
| 532 | 624 | { |
|---|
| 533 | 625 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 534 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 626 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 535 | 627 | unsigned long flags; |
|---|
| 536 | 628 | |
|---|
| 537 | 629 | spin_lock_irqsave(&port->lock, flags); |
|---|
| 538 | | - stm32_set_bits(port, ofs->cr1, USART_CR1_RXNEIE); |
|---|
| 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 | + |
|---|
| 539 | 634 | spin_unlock_irqrestore(&port->lock, flags); |
|---|
| 540 | 635 | } |
|---|
| 541 | 636 | |
|---|
| 542 | 637 | /* Receive stop */ |
|---|
| 543 | | -static void stm32_stop_rx(struct uart_port *port) |
|---|
| 638 | +static void stm32_usart_stop_rx(struct uart_port *port) |
|---|
| 544 | 639 | { |
|---|
| 545 | 640 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 546 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 641 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 547 | 642 | |
|---|
| 548 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_RXNEIE); |
|---|
| 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); |
|---|
| 549 | 646 | } |
|---|
| 550 | 647 | |
|---|
| 551 | 648 | /* Handle breaks - ignored by us */ |
|---|
| 552 | | -static void stm32_break_ctl(struct uart_port *port, int break_state) |
|---|
| 649 | +static void stm32_usart_break_ctl(struct uart_port *port, int break_state) |
|---|
| 553 | 650 | { |
|---|
| 554 | 651 | } |
|---|
| 555 | 652 | |
|---|
| 556 | | -static int stm32_startup(struct uart_port *port) |
|---|
| 653 | +static int stm32_usart_startup(struct uart_port *port) |
|---|
| 557 | 654 | { |
|---|
| 558 | 655 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 559 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 656 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 657 | + const struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 560 | 658 | const char *name = to_platform_device(port->dev)->name; |
|---|
| 561 | 659 | u32 val; |
|---|
| 562 | 660 | int ret; |
|---|
| 563 | 661 | |
|---|
| 564 | | - ret = request_threaded_irq(port->irq, stm32_interrupt, |
|---|
| 565 | | - stm32_threaded_interrupt, |
|---|
| 566 | | - IRQF_NO_SUSPEND, name, port); |
|---|
| 662 | + ret = request_threaded_irq(port->irq, stm32_usart_interrupt, |
|---|
| 663 | + stm32_usart_threaded_interrupt, |
|---|
| 664 | + IRQF_ONESHOT | IRQF_NO_SUSPEND, |
|---|
| 665 | + name, port); |
|---|
| 567 | 666 | if (ret) |
|---|
| 568 | 667 | return ret; |
|---|
| 569 | 668 | |
|---|
| 570 | | - val = USART_CR1_RXNEIE | USART_CR1_TE | USART_CR1_RE; |
|---|
| 571 | | - if (stm32_port->fifoen) |
|---|
| 572 | | - val |= USART_CR1_FIFOEN; |
|---|
| 573 | | - stm32_set_bits(port, ofs->cr1, val); |
|---|
| 669 | + /* RX FIFO Flush */ |
|---|
| 670 | + if (ofs->rqr != UNDEF_REG) |
|---|
| 671 | + writel_relaxed(USART_RQR_RXFRQ, port->membase + ofs->rqr); |
|---|
| 672 | + |
|---|
| 673 | + /* RX enabling */ |
|---|
| 674 | + val = stm32_port->cr1_irq | USART_CR1_RE | BIT(cfg->uart_enable_bit); |
|---|
| 675 | + stm32_usart_set_bits(port, ofs->cr1, val); |
|---|
| 574 | 676 | |
|---|
| 575 | 677 | return 0; |
|---|
| 576 | 678 | } |
|---|
| 577 | 679 | |
|---|
| 578 | | -static void stm32_shutdown(struct uart_port *port) |
|---|
| 680 | +static void stm32_usart_shutdown(struct uart_port *port) |
|---|
| 579 | 681 | { |
|---|
| 580 | 682 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 581 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 582 | | - struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 683 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 684 | + const struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 583 | 685 | u32 val, isr; |
|---|
| 584 | 686 | int ret; |
|---|
| 585 | 687 | |
|---|
| 586 | | - val = USART_CR1_TXEIE | USART_CR1_RXNEIE | USART_CR1_TE | USART_CR1_RE; |
|---|
| 688 | + /* Disable modem control interrupts */ |
|---|
| 689 | + stm32_usart_disable_ms(port); |
|---|
| 690 | + |
|---|
| 691 | + val = USART_CR1_TXEIE | USART_CR1_TE; |
|---|
| 692 | + val |= stm32_port->cr1_irq | USART_CR1_RE; |
|---|
| 587 | 693 | val |= BIT(cfg->uart_enable_bit); |
|---|
| 588 | 694 | if (stm32_port->fifoen) |
|---|
| 589 | 695 | val |= USART_CR1_FIFOEN; |
|---|
| .. | .. |
|---|
| 595 | 701 | if (ret) |
|---|
| 596 | 702 | dev_err(port->dev, "transmission complete not set\n"); |
|---|
| 597 | 703 | |
|---|
| 598 | | - stm32_clr_bits(port, ofs->cr1, val); |
|---|
| 704 | + /* flush RX & TX FIFO */ |
|---|
| 705 | + if (ofs->rqr != UNDEF_REG) |
|---|
| 706 | + writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ, |
|---|
| 707 | + port->membase + ofs->rqr); |
|---|
| 708 | + |
|---|
| 709 | + stm32_usart_clr_bits(port, ofs->cr1, val); |
|---|
| 599 | 710 | |
|---|
| 600 | 711 | free_irq(port->irq, port); |
|---|
| 601 | 712 | } |
|---|
| 602 | 713 | |
|---|
| 603 | | -unsigned int stm32_get_databits(struct ktermios *termios) |
|---|
| 714 | +static unsigned int stm32_usart_get_databits(struct ktermios *termios) |
|---|
| 604 | 715 | { |
|---|
| 605 | 716 | unsigned int bits; |
|---|
| 606 | 717 | |
|---|
| .. | .. |
|---|
| 630 | 741 | return bits; |
|---|
| 631 | 742 | } |
|---|
| 632 | 743 | |
|---|
| 633 | | -static void stm32_set_termios(struct uart_port *port, struct ktermios *termios, |
|---|
| 634 | | - struct ktermios *old) |
|---|
| 744 | +static void stm32_usart_set_termios(struct uart_port *port, |
|---|
| 745 | + struct ktermios *termios, |
|---|
| 746 | + struct ktermios *old) |
|---|
| 635 | 747 | { |
|---|
| 636 | 748 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 637 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 638 | | - struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 749 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 750 | + const struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 639 | 751 | struct serial_rs485 *rs485conf = &port->rs485; |
|---|
| 640 | 752 | unsigned int baud, bits; |
|---|
| 641 | 753 | u32 usartdiv, mantissa, fraction, oversampling; |
|---|
| .. | .. |
|---|
| 663 | 775 | /* Stop serial port and reset value */ |
|---|
| 664 | 776 | writel_relaxed(0, port->membase + ofs->cr1); |
|---|
| 665 | 777 | |
|---|
| 666 | | - cr1 = USART_CR1_TE | USART_CR1_RE | USART_CR1_RXNEIE; |
|---|
| 778 | + /* flush RX & TX FIFO */ |
|---|
| 779 | + if (ofs->rqr != UNDEF_REG) |
|---|
| 780 | + writel_relaxed(USART_RQR_TXFRQ | USART_RQR_RXFRQ, |
|---|
| 781 | + port->membase + ofs->rqr); |
|---|
| 667 | 782 | |
|---|
| 783 | + cr1 = USART_CR1_TE | USART_CR1_RE; |
|---|
| 668 | 784 | if (stm32_port->fifoen) |
|---|
| 669 | 785 | cr1 |= USART_CR1_FIFOEN; |
|---|
| 670 | 786 | cr2 = 0; |
|---|
| 671 | | - cr3 = 0; |
|---|
| 787 | + |
|---|
| 788 | + /* Tx and RX FIFO configuration */ |
|---|
| 789 | + cr3 = readl_relaxed(port->membase + ofs->cr3); |
|---|
| 790 | + cr3 &= USART_CR3_TXFTIE | USART_CR3_RXFTIE; |
|---|
| 791 | + if (stm32_port->fifoen) { |
|---|
| 792 | + cr3 &= ~(USART_CR3_TXFTCFG_MASK | USART_CR3_RXFTCFG_MASK); |
|---|
| 793 | + cr3 |= USART_CR3_TXFTCFG_HALF << USART_CR3_TXFTCFG_SHIFT; |
|---|
| 794 | + cr3 |= USART_CR3_RXFTCFG_HALF << USART_CR3_RXFTCFG_SHIFT; |
|---|
| 795 | + } |
|---|
| 672 | 796 | |
|---|
| 673 | 797 | if (cflag & CSTOPB) |
|---|
| 674 | 798 | cr2 |= USART_CR2_STOP_2B; |
|---|
| 675 | 799 | |
|---|
| 676 | | - bits = stm32_get_databits(termios); |
|---|
| 800 | + bits = stm32_usart_get_databits(termios); |
|---|
| 677 | 801 | stm32_port->rdr_mask = (BIT(bits) - 1); |
|---|
| 678 | 802 | |
|---|
| 679 | 803 | if (cflag & PARENB) { |
|---|
| .. | .. |
|---|
| 688 | 812 | * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00 |
|---|
| 689 | 813 | * M0 and M1 already cleared by cr1 initialization. |
|---|
| 690 | 814 | */ |
|---|
| 691 | | - if (bits == 9) |
|---|
| 815 | + if (bits == 9) { |
|---|
| 692 | 816 | cr1 |= USART_CR1_M0; |
|---|
| 693 | | - else if ((bits == 7) && cfg->has_7bits_data) |
|---|
| 817 | + } else if ((bits == 7) && cfg->has_7bits_data) { |
|---|
| 694 | 818 | cr1 |= USART_CR1_M1; |
|---|
| 695 | | - else if (bits != 8) |
|---|
| 819 | + } else if (bits != 8) { |
|---|
| 696 | 820 | dev_dbg(port->dev, "Unsupported data bits config: %u bits\n" |
|---|
| 697 | 821 | , bits); |
|---|
| 822 | + cflag &= ~CSIZE; |
|---|
| 823 | + cflag |= CS8; |
|---|
| 824 | + termios->c_cflag = cflag; |
|---|
| 825 | + bits = 8; |
|---|
| 826 | + if (cflag & PARENB) { |
|---|
| 827 | + bits++; |
|---|
| 828 | + cr1 |= USART_CR1_M0; |
|---|
| 829 | + } |
|---|
| 830 | + } |
|---|
| 831 | + |
|---|
| 832 | + if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch || |
|---|
| 833 | + stm32_port->fifoen)) { |
|---|
| 834 | + if (cflag & CSTOPB) |
|---|
| 835 | + bits = bits + 3; /* 1 start bit + 2 stop bits */ |
|---|
| 836 | + else |
|---|
| 837 | + bits = bits + 2; /* 1 start bit + 1 stop bit */ |
|---|
| 838 | + |
|---|
| 839 | + /* RX timeout irq to occur after last stop bit + bits */ |
|---|
| 840 | + stm32_port->cr1_irq = USART_CR1_RTOIE; |
|---|
| 841 | + writel_relaxed(bits, port->membase + ofs->rtor); |
|---|
| 842 | + cr2 |= USART_CR2_RTOEN; |
|---|
| 843 | + /* Not using dma, enable fifo threshold irq */ |
|---|
| 844 | + if (!stm32_port->rx_ch) |
|---|
| 845 | + stm32_port->cr3_irq = USART_CR3_RXFTIE; |
|---|
| 846 | + } |
|---|
| 847 | + |
|---|
| 848 | + cr1 |= stm32_port->cr1_irq; |
|---|
| 849 | + cr3 |= stm32_port->cr3_irq; |
|---|
| 698 | 850 | |
|---|
| 699 | 851 | if (cflag & PARODD) |
|---|
| 700 | 852 | cr1 |= USART_CR1_PS; |
|---|
| .. | .. |
|---|
| 716 | 868 | if (usartdiv < 16) { |
|---|
| 717 | 869 | oversampling = 8; |
|---|
| 718 | 870 | cr1 |= USART_CR1_OVER8; |
|---|
| 719 | | - stm32_set_bits(port, ofs->cr1, USART_CR1_OVER8); |
|---|
| 871 | + stm32_usart_set_bits(port, ofs->cr1, USART_CR1_OVER8); |
|---|
| 720 | 872 | } else { |
|---|
| 721 | 873 | oversampling = 16; |
|---|
| 722 | 874 | cr1 &= ~USART_CR1_OVER8; |
|---|
| 723 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_OVER8); |
|---|
| 875 | + stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_OVER8); |
|---|
| 724 | 876 | } |
|---|
| 725 | 877 | |
|---|
| 726 | 878 | mantissa = (usartdiv / oversampling) << USART_BRR_DIV_M_SHIFT; |
|---|
| .. | .. |
|---|
| 757 | 909 | cr3 |= USART_CR3_DMAR; |
|---|
| 758 | 910 | |
|---|
| 759 | 911 | if (rs485conf->flags & SER_RS485_ENABLED) { |
|---|
| 760 | | - stm32_config_reg_rs485(&cr1, &cr3, |
|---|
| 761 | | - rs485conf->delay_rts_before_send, |
|---|
| 762 | | - rs485conf->delay_rts_after_send, baud); |
|---|
| 912 | + stm32_usart_config_reg_rs485(&cr1, &cr3, |
|---|
| 913 | + rs485conf->delay_rts_before_send, |
|---|
| 914 | + rs485conf->delay_rts_after_send, |
|---|
| 915 | + baud); |
|---|
| 763 | 916 | if (rs485conf->flags & SER_RS485_RTS_ON_SEND) { |
|---|
| 764 | 917 | cr3 &= ~USART_CR3_DEP; |
|---|
| 765 | 918 | rs485conf->flags &= ~SER_RS485_RTS_AFTER_SEND; |
|---|
| .. | .. |
|---|
| 773 | 926 | cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK); |
|---|
| 774 | 927 | } |
|---|
| 775 | 928 | |
|---|
| 929 | + /* Configure wake up from low power on start bit detection */ |
|---|
| 930 | + if (stm32_port->wakeirq > 0) { |
|---|
| 931 | + cr3 &= ~USART_CR3_WUS_MASK; |
|---|
| 932 | + cr3 |= USART_CR3_WUS_START_BIT; |
|---|
| 933 | + } |
|---|
| 934 | + |
|---|
| 776 | 935 | writel_relaxed(cr3, port->membase + ofs->cr3); |
|---|
| 777 | 936 | writel_relaxed(cr2, port->membase + ofs->cr2); |
|---|
| 778 | 937 | writel_relaxed(cr1, port->membase + ofs->cr1); |
|---|
| 779 | 938 | |
|---|
| 780 | | - stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 939 | + stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 781 | 940 | spin_unlock_irqrestore(&port->lock, flags); |
|---|
| 941 | + |
|---|
| 942 | + /* Handle modem control interrupts */ |
|---|
| 943 | + if (UART_ENABLE_MS(port, termios->c_cflag)) |
|---|
| 944 | + stm32_usart_enable_ms(port); |
|---|
| 945 | + else |
|---|
| 946 | + stm32_usart_disable_ms(port); |
|---|
| 782 | 947 | } |
|---|
| 783 | 948 | |
|---|
| 784 | | -static const char *stm32_type(struct uart_port *port) |
|---|
| 949 | +static const char *stm32_usart_type(struct uart_port *port) |
|---|
| 785 | 950 | { |
|---|
| 786 | 951 | return (port->type == PORT_STM32) ? DRIVER_NAME : NULL; |
|---|
| 787 | 952 | } |
|---|
| 788 | 953 | |
|---|
| 789 | | -static void stm32_release_port(struct uart_port *port) |
|---|
| 954 | +static void stm32_usart_release_port(struct uart_port *port) |
|---|
| 790 | 955 | { |
|---|
| 791 | 956 | } |
|---|
| 792 | 957 | |
|---|
| 793 | | -static int stm32_request_port(struct uart_port *port) |
|---|
| 958 | +static int stm32_usart_request_port(struct uart_port *port) |
|---|
| 794 | 959 | { |
|---|
| 795 | 960 | return 0; |
|---|
| 796 | 961 | } |
|---|
| 797 | 962 | |
|---|
| 798 | | -static void stm32_config_port(struct uart_port *port, int flags) |
|---|
| 963 | +static void stm32_usart_config_port(struct uart_port *port, int flags) |
|---|
| 799 | 964 | { |
|---|
| 800 | 965 | if (flags & UART_CONFIG_TYPE) |
|---|
| 801 | 966 | port->type = PORT_STM32; |
|---|
| 802 | 967 | } |
|---|
| 803 | 968 | |
|---|
| 804 | 969 | static int |
|---|
| 805 | | -stm32_verify_port(struct uart_port *port, struct serial_struct *ser) |
|---|
| 970 | +stm32_usart_verify_port(struct uart_port *port, struct serial_struct *ser) |
|---|
| 806 | 971 | { |
|---|
| 807 | 972 | /* No user changeable parameters */ |
|---|
| 808 | 973 | return -EINVAL; |
|---|
| 809 | 974 | } |
|---|
| 810 | 975 | |
|---|
| 811 | | -static void stm32_pm(struct uart_port *port, unsigned int state, |
|---|
| 812 | | - unsigned int oldstate) |
|---|
| 976 | +static void stm32_usart_pm(struct uart_port *port, unsigned int state, |
|---|
| 977 | + unsigned int oldstate) |
|---|
| 813 | 978 | { |
|---|
| 814 | 979 | struct stm32_port *stm32port = container_of(port, |
|---|
| 815 | 980 | struct stm32_port, port); |
|---|
| 816 | | - struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 817 | | - struct stm32_usart_config *cfg = &stm32port->info->cfg; |
|---|
| 981 | + const struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 982 | + const struct stm32_usart_config *cfg = &stm32port->info->cfg; |
|---|
| 818 | 983 | unsigned long flags = 0; |
|---|
| 819 | 984 | |
|---|
| 820 | 985 | switch (state) { |
|---|
| 821 | 986 | case UART_PM_STATE_ON: |
|---|
| 822 | | - clk_prepare_enable(stm32port->clk); |
|---|
| 987 | + pm_runtime_get_sync(port->dev); |
|---|
| 823 | 988 | break; |
|---|
| 824 | 989 | case UART_PM_STATE_OFF: |
|---|
| 825 | 990 | spin_lock_irqsave(&port->lock, flags); |
|---|
| 826 | | - stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 991 | + stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 827 | 992 | spin_unlock_irqrestore(&port->lock, flags); |
|---|
| 828 | | - clk_disable_unprepare(stm32port->clk); |
|---|
| 993 | + pm_runtime_put_sync(port->dev); |
|---|
| 829 | 994 | break; |
|---|
| 830 | 995 | } |
|---|
| 831 | 996 | } |
|---|
| 832 | 997 | |
|---|
| 833 | 998 | static const struct uart_ops stm32_uart_ops = { |
|---|
| 834 | | - .tx_empty = stm32_tx_empty, |
|---|
| 835 | | - .set_mctrl = stm32_set_mctrl, |
|---|
| 836 | | - .get_mctrl = stm32_get_mctrl, |
|---|
| 837 | | - .stop_tx = stm32_stop_tx, |
|---|
| 838 | | - .start_tx = stm32_start_tx, |
|---|
| 839 | | - .throttle = stm32_throttle, |
|---|
| 840 | | - .unthrottle = stm32_unthrottle, |
|---|
| 841 | | - .stop_rx = stm32_stop_rx, |
|---|
| 842 | | - .break_ctl = stm32_break_ctl, |
|---|
| 843 | | - .startup = stm32_startup, |
|---|
| 844 | | - .shutdown = stm32_shutdown, |
|---|
| 845 | | - .set_termios = stm32_set_termios, |
|---|
| 846 | | - .pm = stm32_pm, |
|---|
| 847 | | - .type = stm32_type, |
|---|
| 848 | | - .release_port = stm32_release_port, |
|---|
| 849 | | - .request_port = stm32_request_port, |
|---|
| 850 | | - .config_port = stm32_config_port, |
|---|
| 851 | | - .verify_port = stm32_verify_port, |
|---|
| 999 | + .tx_empty = stm32_usart_tx_empty, |
|---|
| 1000 | + .set_mctrl = stm32_usart_set_mctrl, |
|---|
| 1001 | + .get_mctrl = stm32_usart_get_mctrl, |
|---|
| 1002 | + .stop_tx = stm32_usart_stop_tx, |
|---|
| 1003 | + .start_tx = stm32_usart_start_tx, |
|---|
| 1004 | + .throttle = stm32_usart_throttle, |
|---|
| 1005 | + .unthrottle = stm32_usart_unthrottle, |
|---|
| 1006 | + .stop_rx = stm32_usart_stop_rx, |
|---|
| 1007 | + .enable_ms = stm32_usart_enable_ms, |
|---|
| 1008 | + .break_ctl = stm32_usart_break_ctl, |
|---|
| 1009 | + .startup = stm32_usart_startup, |
|---|
| 1010 | + .shutdown = stm32_usart_shutdown, |
|---|
| 1011 | + .set_termios = stm32_usart_set_termios, |
|---|
| 1012 | + .pm = stm32_usart_pm, |
|---|
| 1013 | + .type = stm32_usart_type, |
|---|
| 1014 | + .release_port = stm32_usart_release_port, |
|---|
| 1015 | + .request_port = stm32_usart_request_port, |
|---|
| 1016 | + .config_port = stm32_usart_config_port, |
|---|
| 1017 | + .verify_port = stm32_usart_verify_port, |
|---|
| 852 | 1018 | }; |
|---|
| 853 | 1019 | |
|---|
| 854 | | -static int stm32_init_port(struct stm32_port *stm32port, |
|---|
| 855 | | - struct platform_device *pdev) |
|---|
| 1020 | +static int stm32_usart_init_port(struct stm32_port *stm32port, |
|---|
| 1021 | + struct platform_device *pdev) |
|---|
| 856 | 1022 | { |
|---|
| 857 | 1023 | struct uart_port *port = &stm32port->port; |
|---|
| 858 | 1024 | struct resource *res; |
|---|
| 859 | 1025 | int ret; |
|---|
| 860 | 1026 | |
|---|
| 1027 | + ret = platform_get_irq(pdev, 0); |
|---|
| 1028 | + if (ret <= 0) |
|---|
| 1029 | + return ret ? : -ENODEV; |
|---|
| 1030 | + |
|---|
| 861 | 1031 | port->iotype = UPIO_MEM; |
|---|
| 862 | 1032 | port->flags = UPF_BOOT_AUTOCONF; |
|---|
| 863 | 1033 | port->ops = &stm32_uart_ops; |
|---|
| 864 | 1034 | port->dev = &pdev->dev; |
|---|
| 865 | | - port->irq = platform_get_irq(pdev, 0); |
|---|
| 866 | | - port->rs485_config = stm32_config_rs485; |
|---|
| 1035 | + port->fifosize = stm32port->info->cfg.fifosize; |
|---|
| 1036 | + port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_STM32_CONSOLE); |
|---|
| 1037 | + port->irq = ret; |
|---|
| 1038 | + port->rs485_config = stm32_usart_config_rs485; |
|---|
| 867 | 1039 | |
|---|
| 868 | | - stm32_init_rs485(port, pdev); |
|---|
| 1040 | + ret = stm32_usart_init_rs485(port, pdev); |
|---|
| 1041 | + if (ret) |
|---|
| 1042 | + return ret; |
|---|
| 869 | 1043 | |
|---|
| 870 | | - stm32port->wakeirq = platform_get_irq(pdev, 1); |
|---|
| 1044 | + if (stm32port->info->cfg.has_wakeup) { |
|---|
| 1045 | + stm32port->wakeirq = platform_get_irq_optional(pdev, 1); |
|---|
| 1046 | + if (stm32port->wakeirq <= 0 && stm32port->wakeirq != -ENXIO) |
|---|
| 1047 | + return stm32port->wakeirq ? : -ENODEV; |
|---|
| 1048 | + } |
|---|
| 1049 | + |
|---|
| 871 | 1050 | stm32port->fifoen = stm32port->info->cfg.has_fifo; |
|---|
| 872 | 1051 | |
|---|
| 873 | 1052 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
|---|
| .. | .. |
|---|
| 889 | 1068 | |
|---|
| 890 | 1069 | stm32port->port.uartclk = clk_get_rate(stm32port->clk); |
|---|
| 891 | 1070 | if (!stm32port->port.uartclk) { |
|---|
| 892 | | - clk_disable_unprepare(stm32port->clk); |
|---|
| 893 | 1071 | ret = -EINVAL; |
|---|
| 1072 | + goto err_clk; |
|---|
| 894 | 1073 | } |
|---|
| 1074 | + |
|---|
| 1075 | + stm32port->gpios = mctrl_gpio_init(&stm32port->port, 0); |
|---|
| 1076 | + if (IS_ERR(stm32port->gpios)) { |
|---|
| 1077 | + ret = PTR_ERR(stm32port->gpios); |
|---|
| 1078 | + goto err_clk; |
|---|
| 1079 | + } |
|---|
| 1080 | + |
|---|
| 1081 | + /* Both CTS/RTS gpios and "st,hw-flow-ctrl" should not be specified */ |
|---|
| 1082 | + if (stm32port->hw_flow_control) { |
|---|
| 1083 | + if (mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_CTS) || |
|---|
| 1084 | + mctrl_gpio_to_gpiod(stm32port->gpios, UART_GPIO_RTS)) { |
|---|
| 1085 | + dev_err(&pdev->dev, "Conflicting RTS/CTS config\n"); |
|---|
| 1086 | + ret = -EINVAL; |
|---|
| 1087 | + goto err_clk; |
|---|
| 1088 | + } |
|---|
| 1089 | + } |
|---|
| 1090 | + |
|---|
| 1091 | + return ret; |
|---|
| 1092 | + |
|---|
| 1093 | +err_clk: |
|---|
| 1094 | + clk_disable_unprepare(stm32port->clk); |
|---|
| 895 | 1095 | |
|---|
| 896 | 1096 | return ret; |
|---|
| 897 | 1097 | } |
|---|
| 898 | 1098 | |
|---|
| 899 | | -static struct stm32_port *stm32_of_get_stm32_port(struct platform_device *pdev) |
|---|
| 1099 | +static struct stm32_port *stm32_usart_of_get_port(struct platform_device *pdev) |
|---|
| 900 | 1100 | { |
|---|
| 901 | 1101 | struct device_node *np = pdev->dev.of_node; |
|---|
| 902 | 1102 | int id; |
|---|
| .. | .. |
|---|
| 913 | 1113 | if (WARN_ON(id >= STM32_MAX_PORTS)) |
|---|
| 914 | 1114 | return NULL; |
|---|
| 915 | 1115 | |
|---|
| 916 | | - stm32_ports[id].hw_flow_control = of_property_read_bool(np, |
|---|
| 917 | | - "st,hw-flow-ctrl"); |
|---|
| 1116 | + stm32_ports[id].hw_flow_control = |
|---|
| 1117 | + of_property_read_bool (np, "st,hw-flow-ctrl") /*deprecated*/ || |
|---|
| 1118 | + of_property_read_bool (np, "uart-has-rtscts"); |
|---|
| 918 | 1119 | stm32_ports[id].port.line = id; |
|---|
| 1120 | + stm32_ports[id].cr1_irq = USART_CR1_RXNEIE; |
|---|
| 1121 | + stm32_ports[id].cr3_irq = 0; |
|---|
| 919 | 1122 | stm32_ports[id].last_res = RX_BUF_L; |
|---|
| 920 | 1123 | return &stm32_ports[id]; |
|---|
| 921 | 1124 | } |
|---|
| .. | .. |
|---|
| 931 | 1134 | MODULE_DEVICE_TABLE(of, stm32_match); |
|---|
| 932 | 1135 | #endif |
|---|
| 933 | 1136 | |
|---|
| 934 | | -static int stm32_of_dma_rx_probe(struct stm32_port *stm32port, |
|---|
| 935 | | - struct platform_device *pdev) |
|---|
| 1137 | +static int stm32_usart_of_dma_rx_probe(struct stm32_port *stm32port, |
|---|
| 1138 | + struct platform_device *pdev) |
|---|
| 936 | 1139 | { |
|---|
| 937 | | - struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 1140 | + const struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 938 | 1141 | struct uart_port *port = &stm32port->port; |
|---|
| 939 | 1142 | struct device *dev = &pdev->dev; |
|---|
| 940 | 1143 | struct dma_slave_config config; |
|---|
| 941 | 1144 | struct dma_async_tx_descriptor *desc = NULL; |
|---|
| 942 | | - dma_cookie_t cookie; |
|---|
| 943 | 1145 | int ret; |
|---|
| 1146 | + |
|---|
| 1147 | + /* |
|---|
| 1148 | + * Using DMA and threaded handler for the console could lead to |
|---|
| 1149 | + * deadlocks. |
|---|
| 1150 | + */ |
|---|
| 1151 | + if (uart_console(port)) |
|---|
| 1152 | + return -ENODEV; |
|---|
| 944 | 1153 | |
|---|
| 945 | 1154 | /* Request DMA RX channel */ |
|---|
| 946 | 1155 | stm32port->rx_ch = dma_request_slave_channel(dev, "rx"); |
|---|
| .. | .. |
|---|
| 949 | 1158 | return -ENODEV; |
|---|
| 950 | 1159 | } |
|---|
| 951 | 1160 | stm32port->rx_buf = dma_alloc_coherent(&pdev->dev, RX_BUF_L, |
|---|
| 952 | | - &stm32port->rx_dma_buf, |
|---|
| 953 | | - GFP_KERNEL); |
|---|
| 1161 | + &stm32port->rx_dma_buf, |
|---|
| 1162 | + GFP_KERNEL); |
|---|
| 954 | 1163 | if (!stm32port->rx_buf) { |
|---|
| 955 | 1164 | ret = -ENOMEM; |
|---|
| 956 | 1165 | goto alloc_err; |
|---|
| .. | .. |
|---|
| 984 | 1193 | desc->callback_param = NULL; |
|---|
| 985 | 1194 | |
|---|
| 986 | 1195 | /* Push current DMA transaction in the pending queue */ |
|---|
| 987 | | - cookie = dmaengine_submit(desc); |
|---|
| 1196 | + ret = dma_submit_error(dmaengine_submit(desc)); |
|---|
| 1197 | + if (ret) { |
|---|
| 1198 | + dmaengine_terminate_sync(stm32port->rx_ch); |
|---|
| 1199 | + goto config_err; |
|---|
| 1200 | + } |
|---|
| 988 | 1201 | |
|---|
| 989 | 1202 | /* Issue pending DMA requests */ |
|---|
| 990 | 1203 | dma_async_issue_pending(stm32port->rx_ch); |
|---|
| .. | .. |
|---|
| 1003 | 1216 | return ret; |
|---|
| 1004 | 1217 | } |
|---|
| 1005 | 1218 | |
|---|
| 1006 | | -static int stm32_of_dma_tx_probe(struct stm32_port *stm32port, |
|---|
| 1007 | | - struct platform_device *pdev) |
|---|
| 1219 | +static int stm32_usart_of_dma_tx_probe(struct stm32_port *stm32port, |
|---|
| 1220 | + struct platform_device *pdev) |
|---|
| 1008 | 1221 | { |
|---|
| 1009 | | - struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 1222 | + const struct stm32_usart_offsets *ofs = &stm32port->info->ofs; |
|---|
| 1010 | 1223 | struct uart_port *port = &stm32port->port; |
|---|
| 1011 | 1224 | struct device *dev = &pdev->dev; |
|---|
| 1012 | 1225 | struct dma_slave_config config; |
|---|
| .. | .. |
|---|
| 1021 | 1234 | return -ENODEV; |
|---|
| 1022 | 1235 | } |
|---|
| 1023 | 1236 | stm32port->tx_buf = dma_alloc_coherent(&pdev->dev, TX_BUF_L, |
|---|
| 1024 | | - &stm32port->tx_dma_buf, |
|---|
| 1025 | | - GFP_KERNEL); |
|---|
| 1237 | + &stm32port->tx_dma_buf, |
|---|
| 1238 | + GFP_KERNEL); |
|---|
| 1026 | 1239 | if (!stm32port->tx_buf) { |
|---|
| 1027 | 1240 | ret = -ENOMEM; |
|---|
| 1028 | 1241 | goto alloc_err; |
|---|
| .. | .. |
|---|
| 1054 | 1267 | return ret; |
|---|
| 1055 | 1268 | } |
|---|
| 1056 | 1269 | |
|---|
| 1057 | | -static int stm32_serial_probe(struct platform_device *pdev) |
|---|
| 1270 | +static int stm32_usart_serial_probe(struct platform_device *pdev) |
|---|
| 1058 | 1271 | { |
|---|
| 1059 | | - const struct of_device_id *match; |
|---|
| 1060 | 1272 | struct stm32_port *stm32port; |
|---|
| 1061 | 1273 | int ret; |
|---|
| 1062 | 1274 | |
|---|
| 1063 | | - stm32port = stm32_of_get_stm32_port(pdev); |
|---|
| 1275 | + stm32port = stm32_usart_of_get_port(pdev); |
|---|
| 1064 | 1276 | if (!stm32port) |
|---|
| 1065 | 1277 | return -ENODEV; |
|---|
| 1066 | 1278 | |
|---|
| 1067 | | - match = of_match_device(stm32_match, &pdev->dev); |
|---|
| 1068 | | - if (match && match->data) |
|---|
| 1069 | | - stm32port->info = (struct stm32_usart_info *)match->data; |
|---|
| 1070 | | - else |
|---|
| 1279 | + stm32port->info = of_device_get_match_data(&pdev->dev); |
|---|
| 1280 | + if (!stm32port->info) |
|---|
| 1071 | 1281 | return -EINVAL; |
|---|
| 1072 | 1282 | |
|---|
| 1073 | | - ret = stm32_init_port(stm32port, pdev); |
|---|
| 1283 | + ret = stm32_usart_init_port(stm32port, pdev); |
|---|
| 1074 | 1284 | if (ret) |
|---|
| 1075 | 1285 | return ret; |
|---|
| 1076 | 1286 | |
|---|
| 1077 | | - if (stm32port->info->cfg.has_wakeup && stm32port->wakeirq >= 0) { |
|---|
| 1287 | + if (stm32port->wakeirq > 0) { |
|---|
| 1078 | 1288 | ret = device_init_wakeup(&pdev->dev, true); |
|---|
| 1079 | 1289 | if (ret) |
|---|
| 1080 | 1290 | goto err_uninit; |
|---|
| .. | .. |
|---|
| 1087 | 1297 | device_set_wakeup_enable(&pdev->dev, false); |
|---|
| 1088 | 1298 | } |
|---|
| 1089 | 1299 | |
|---|
| 1090 | | - ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port); |
|---|
| 1091 | | - if (ret) |
|---|
| 1092 | | - goto err_wirq; |
|---|
| 1093 | | - |
|---|
| 1094 | | - ret = stm32_of_dma_rx_probe(stm32port, pdev); |
|---|
| 1300 | + ret = stm32_usart_of_dma_rx_probe(stm32port, pdev); |
|---|
| 1095 | 1301 | if (ret) |
|---|
| 1096 | 1302 | dev_info(&pdev->dev, "interrupt mode used for rx (no dma)\n"); |
|---|
| 1097 | 1303 | |
|---|
| 1098 | | - ret = stm32_of_dma_tx_probe(stm32port, pdev); |
|---|
| 1304 | + ret = stm32_usart_of_dma_tx_probe(stm32port, pdev); |
|---|
| 1099 | 1305 | if (ret) |
|---|
| 1100 | 1306 | dev_info(&pdev->dev, "interrupt mode used for tx (no dma)\n"); |
|---|
| 1101 | 1307 | |
|---|
| 1102 | 1308 | platform_set_drvdata(pdev, &stm32port->port); |
|---|
| 1103 | 1309 | |
|---|
| 1310 | + pm_runtime_get_noresume(&pdev->dev); |
|---|
| 1311 | + pm_runtime_set_active(&pdev->dev); |
|---|
| 1312 | + pm_runtime_enable(&pdev->dev); |
|---|
| 1313 | + |
|---|
| 1314 | + ret = uart_add_one_port(&stm32_usart_driver, &stm32port->port); |
|---|
| 1315 | + if (ret) |
|---|
| 1316 | + goto err_port; |
|---|
| 1317 | + |
|---|
| 1318 | + pm_runtime_put_sync(&pdev->dev); |
|---|
| 1319 | + |
|---|
| 1104 | 1320 | return 0; |
|---|
| 1105 | 1321 | |
|---|
| 1106 | | -err_wirq: |
|---|
| 1107 | | - if (stm32port->info->cfg.has_wakeup && stm32port->wakeirq >= 0) |
|---|
| 1322 | +err_port: |
|---|
| 1323 | + pm_runtime_disable(&pdev->dev); |
|---|
| 1324 | + pm_runtime_set_suspended(&pdev->dev); |
|---|
| 1325 | + pm_runtime_put_noidle(&pdev->dev); |
|---|
| 1326 | + |
|---|
| 1327 | + if (stm32port->rx_ch) { |
|---|
| 1328 | + dmaengine_terminate_async(stm32port->rx_ch); |
|---|
| 1329 | + dma_release_channel(stm32port->rx_ch); |
|---|
| 1330 | + } |
|---|
| 1331 | + |
|---|
| 1332 | + if (stm32port->rx_dma_buf) |
|---|
| 1333 | + dma_free_coherent(&pdev->dev, |
|---|
| 1334 | + RX_BUF_L, stm32port->rx_buf, |
|---|
| 1335 | + stm32port->rx_dma_buf); |
|---|
| 1336 | + |
|---|
| 1337 | + if (stm32port->tx_ch) { |
|---|
| 1338 | + dmaengine_terminate_async(stm32port->tx_ch); |
|---|
| 1339 | + dma_release_channel(stm32port->tx_ch); |
|---|
| 1340 | + } |
|---|
| 1341 | + |
|---|
| 1342 | + if (stm32port->tx_dma_buf) |
|---|
| 1343 | + dma_free_coherent(&pdev->dev, |
|---|
| 1344 | + TX_BUF_L, stm32port->tx_buf, |
|---|
| 1345 | + stm32port->tx_dma_buf); |
|---|
| 1346 | + |
|---|
| 1347 | + if (stm32port->wakeirq > 0) |
|---|
| 1108 | 1348 | dev_pm_clear_wake_irq(&pdev->dev); |
|---|
| 1109 | 1349 | |
|---|
| 1110 | 1350 | err_nowup: |
|---|
| 1111 | | - if (stm32port->info->cfg.has_wakeup && stm32port->wakeirq >= 0) |
|---|
| 1351 | + if (stm32port->wakeirq > 0) |
|---|
| 1112 | 1352 | device_init_wakeup(&pdev->dev, false); |
|---|
| 1113 | 1353 | |
|---|
| 1114 | 1354 | err_uninit: |
|---|
| .. | .. |
|---|
| 1117 | 1357 | return ret; |
|---|
| 1118 | 1358 | } |
|---|
| 1119 | 1359 | |
|---|
| 1120 | | -static int stm32_serial_remove(struct platform_device *pdev) |
|---|
| 1360 | +static int stm32_usart_serial_remove(struct platform_device *pdev) |
|---|
| 1121 | 1361 | { |
|---|
| 1122 | 1362 | struct uart_port *port = platform_get_drvdata(pdev); |
|---|
| 1123 | 1363 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 1124 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1125 | | - struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 1364 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1365 | + int err; |
|---|
| 1126 | 1366 | |
|---|
| 1127 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAR); |
|---|
| 1367 | + pm_runtime_get_sync(&pdev->dev); |
|---|
| 1368 | + err = uart_remove_one_port(&stm32_usart_driver, port); |
|---|
| 1369 | + if (err) |
|---|
| 1370 | + return(err); |
|---|
| 1128 | 1371 | |
|---|
| 1129 | | - if (stm32_port->rx_ch) |
|---|
| 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); |
|---|
| 1130 | 1380 | dma_release_channel(stm32_port->rx_ch); |
|---|
| 1381 | + } |
|---|
| 1131 | 1382 | |
|---|
| 1132 | 1383 | if (stm32_port->rx_dma_buf) |
|---|
| 1133 | 1384 | dma_free_coherent(&pdev->dev, |
|---|
| 1134 | 1385 | RX_BUF_L, stm32_port->rx_buf, |
|---|
| 1135 | 1386 | stm32_port->rx_dma_buf); |
|---|
| 1136 | 1387 | |
|---|
| 1137 | | - stm32_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 1388 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_DMAT); |
|---|
| 1138 | 1389 | |
|---|
| 1139 | | - if (stm32_port->tx_ch) |
|---|
| 1390 | + if (stm32_port->tx_ch) { |
|---|
| 1391 | + dmaengine_terminate_async(stm32_port->tx_ch); |
|---|
| 1140 | 1392 | dma_release_channel(stm32_port->tx_ch); |
|---|
| 1393 | + } |
|---|
| 1141 | 1394 | |
|---|
| 1142 | 1395 | if (stm32_port->tx_dma_buf) |
|---|
| 1143 | 1396 | dma_free_coherent(&pdev->dev, |
|---|
| 1144 | 1397 | TX_BUF_L, stm32_port->tx_buf, |
|---|
| 1145 | 1398 | stm32_port->tx_dma_buf); |
|---|
| 1146 | 1399 | |
|---|
| 1147 | | - if (cfg->has_wakeup && stm32_port->wakeirq >= 0) { |
|---|
| 1400 | + if (stm32_port->wakeirq > 0) { |
|---|
| 1148 | 1401 | dev_pm_clear_wake_irq(&pdev->dev); |
|---|
| 1149 | 1402 | device_init_wakeup(&pdev->dev, false); |
|---|
| 1150 | 1403 | } |
|---|
| 1151 | 1404 | |
|---|
| 1152 | 1405 | clk_disable_unprepare(stm32_port->clk); |
|---|
| 1153 | 1406 | |
|---|
| 1154 | | - return uart_remove_one_port(&stm32_usart_driver, port); |
|---|
| 1407 | + return 0; |
|---|
| 1155 | 1408 | } |
|---|
| 1156 | 1409 | |
|---|
| 1157 | | - |
|---|
| 1158 | 1410 | #ifdef CONFIG_SERIAL_STM32_CONSOLE |
|---|
| 1159 | | -static void stm32_console_putchar(struct uart_port *port, int ch) |
|---|
| 1411 | +static void stm32_usart_console_putchar(struct uart_port *port, int ch) |
|---|
| 1160 | 1412 | { |
|---|
| 1161 | 1413 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 1162 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1414 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1163 | 1415 | |
|---|
| 1164 | 1416 | while (!(readl_relaxed(port->membase + ofs->isr) & USART_SR_TXE)) |
|---|
| 1165 | 1417 | cpu_relax(); |
|---|
| .. | .. |
|---|
| 1167 | 1419 | writel_relaxed(ch, port->membase + ofs->tdr); |
|---|
| 1168 | 1420 | } |
|---|
| 1169 | 1421 | |
|---|
| 1170 | | -static void stm32_console_write(struct console *co, const char *s, unsigned cnt) |
|---|
| 1422 | +static void stm32_usart_console_write(struct console *co, const char *s, |
|---|
| 1423 | + unsigned int cnt) |
|---|
| 1171 | 1424 | { |
|---|
| 1172 | 1425 | struct uart_port *port = &stm32_ports[co->index].port; |
|---|
| 1173 | 1426 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 1174 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1175 | | - struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 1427 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1428 | + const struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 1176 | 1429 | unsigned long flags; |
|---|
| 1177 | 1430 | u32 old_cr1, new_cr1; |
|---|
| 1178 | 1431 | int locked = 1; |
|---|
| .. | .. |
|---|
| 1191 | 1444 | new_cr1 |= USART_CR1_TE | BIT(cfg->uart_enable_bit); |
|---|
| 1192 | 1445 | writel_relaxed(new_cr1, port->membase + ofs->cr1); |
|---|
| 1193 | 1446 | |
|---|
| 1194 | | - uart_console_write(port, s, cnt, stm32_console_putchar); |
|---|
| 1447 | + uart_console_write(port, s, cnt, stm32_usart_console_putchar); |
|---|
| 1195 | 1448 | |
|---|
| 1196 | 1449 | /* Restore interrupt state */ |
|---|
| 1197 | 1450 | writel_relaxed(old_cr1, port->membase + ofs->cr1); |
|---|
| .. | .. |
|---|
| 1201 | 1454 | local_irq_restore(flags); |
|---|
| 1202 | 1455 | } |
|---|
| 1203 | 1456 | |
|---|
| 1204 | | -static int stm32_console_setup(struct console *co, char *options) |
|---|
| 1457 | +static int stm32_usart_console_setup(struct console *co, char *options) |
|---|
| 1205 | 1458 | { |
|---|
| 1206 | 1459 | struct stm32_port *stm32port; |
|---|
| 1207 | 1460 | int baud = 9600; |
|---|
| .. | .. |
|---|
| 1220 | 1473 | * this to be called during the uart port registration when the |
|---|
| 1221 | 1474 | * driver gets probed and the port should be mapped at that point. |
|---|
| 1222 | 1475 | */ |
|---|
| 1223 | | - if (stm32port->port.mapbase == 0 || stm32port->port.membase == NULL) |
|---|
| 1476 | + if (stm32port->port.mapbase == 0 || !stm32port->port.membase) |
|---|
| 1224 | 1477 | return -ENXIO; |
|---|
| 1225 | 1478 | |
|---|
| 1226 | 1479 | if (options) |
|---|
| .. | .. |
|---|
| 1232 | 1485 | static struct console stm32_console = { |
|---|
| 1233 | 1486 | .name = STM32_SERIAL_NAME, |
|---|
| 1234 | 1487 | .device = uart_console_device, |
|---|
| 1235 | | - .write = stm32_console_write, |
|---|
| 1236 | | - .setup = stm32_console_setup, |
|---|
| 1488 | + .write = stm32_usart_console_write, |
|---|
| 1489 | + .setup = stm32_usart_console_setup, |
|---|
| 1237 | 1490 | .flags = CON_PRINTBUFFER, |
|---|
| 1238 | 1491 | .index = -1, |
|---|
| 1239 | 1492 | .data = &stm32_usart_driver, |
|---|
| .. | .. |
|---|
| 1254 | 1507 | .cons = STM32_SERIAL_CONSOLE, |
|---|
| 1255 | 1508 | }; |
|---|
| 1256 | 1509 | |
|---|
| 1257 | | -#ifdef CONFIG_PM_SLEEP |
|---|
| 1258 | | -static void stm32_serial_enable_wakeup(struct uart_port *port, bool enable) |
|---|
| 1510 | +static void __maybe_unused stm32_usart_serial_en_wakeup(struct uart_port *port, |
|---|
| 1511 | + bool enable) |
|---|
| 1259 | 1512 | { |
|---|
| 1260 | 1513 | struct stm32_port *stm32_port = to_stm32_port(port); |
|---|
| 1261 | | - struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1262 | | - struct stm32_usart_config *cfg = &stm32_port->info->cfg; |
|---|
| 1263 | | - u32 val; |
|---|
| 1514 | + const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; |
|---|
| 1264 | 1515 | |
|---|
| 1265 | | - if (!cfg->has_wakeup || stm32_port->wakeirq < 0) |
|---|
| 1516 | + if (stm32_port->wakeirq <= 0) |
|---|
| 1266 | 1517 | return; |
|---|
| 1267 | 1518 | |
|---|
| 1519 | + /* |
|---|
| 1520 | + * Enable low-power wake-up and wake-up irq if argument is set to |
|---|
| 1521 | + * "enable", disable low-power wake-up and wake-up irq otherwise |
|---|
| 1522 | + */ |
|---|
| 1268 | 1523 | if (enable) { |
|---|
| 1269 | | - stm32_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 1270 | | - stm32_set_bits(port, ofs->cr1, USART_CR1_UESM); |
|---|
| 1271 | | - val = readl_relaxed(port->membase + ofs->cr3); |
|---|
| 1272 | | - val &= ~USART_CR3_WUS_MASK; |
|---|
| 1273 | | - /* Enable Wake up interrupt from low power on start bit */ |
|---|
| 1274 | | - val |= USART_CR3_WUS_START_BIT | USART_CR3_WUFIE; |
|---|
| 1275 | | - writel_relaxed(val, port->membase + ofs->cr3); |
|---|
| 1276 | | - stm32_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); |
|---|
| 1524 | + stm32_usart_set_bits(port, ofs->cr1, USART_CR1_UESM); |
|---|
| 1525 | + stm32_usart_set_bits(port, ofs->cr3, USART_CR3_WUFIE); |
|---|
| 1277 | 1526 | } else { |
|---|
| 1278 | | - stm32_clr_bits(port, ofs->cr1, USART_CR1_UESM); |
|---|
| 1527 | + stm32_usart_clr_bits(port, ofs->cr1, USART_CR1_UESM); |
|---|
| 1528 | + stm32_usart_clr_bits(port, ofs->cr3, USART_CR3_WUFIE); |
|---|
| 1279 | 1529 | } |
|---|
| 1280 | 1530 | } |
|---|
| 1281 | 1531 | |
|---|
| 1282 | | -static int stm32_serial_suspend(struct device *dev) |
|---|
| 1532 | +static int __maybe_unused stm32_usart_serial_suspend(struct device *dev) |
|---|
| 1283 | 1533 | { |
|---|
| 1284 | 1534 | struct uart_port *port = dev_get_drvdata(dev); |
|---|
| 1285 | 1535 | |
|---|
| 1286 | 1536 | uart_suspend_port(&stm32_usart_driver, port); |
|---|
| 1287 | 1537 | |
|---|
| 1288 | 1538 | if (device_may_wakeup(dev)) |
|---|
| 1289 | | - stm32_serial_enable_wakeup(port, true); |
|---|
| 1539 | + stm32_usart_serial_en_wakeup(port, true); |
|---|
| 1290 | 1540 | else |
|---|
| 1291 | | - stm32_serial_enable_wakeup(port, false); |
|---|
| 1541 | + stm32_usart_serial_en_wakeup(port, false); |
|---|
| 1542 | + |
|---|
| 1543 | + /* |
|---|
| 1544 | + * When "no_console_suspend" is enabled, keep the pinctrl default state |
|---|
| 1545 | + * and rely on bootloader stage to restore this state upon resume. |
|---|
| 1546 | + * Otherwise, apply the idle or sleep states depending on wakeup |
|---|
| 1547 | + * capabilities. |
|---|
| 1548 | + */ |
|---|
| 1549 | + if (console_suspend_enabled || !uart_console(port)) { |
|---|
| 1550 | + if (device_may_wakeup(dev)) |
|---|
| 1551 | + pinctrl_pm_select_idle_state(dev); |
|---|
| 1552 | + else |
|---|
| 1553 | + pinctrl_pm_select_sleep_state(dev); |
|---|
| 1554 | + } |
|---|
| 1292 | 1555 | |
|---|
| 1293 | 1556 | return 0; |
|---|
| 1294 | 1557 | } |
|---|
| 1295 | 1558 | |
|---|
| 1296 | | -static int stm32_serial_resume(struct device *dev) |
|---|
| 1559 | +static int __maybe_unused stm32_usart_serial_resume(struct device *dev) |
|---|
| 1297 | 1560 | { |
|---|
| 1298 | 1561 | struct uart_port *port = dev_get_drvdata(dev); |
|---|
| 1299 | 1562 | |
|---|
| 1563 | + pinctrl_pm_select_default_state(dev); |
|---|
| 1564 | + |
|---|
| 1300 | 1565 | if (device_may_wakeup(dev)) |
|---|
| 1301 | | - stm32_serial_enable_wakeup(port, false); |
|---|
| 1566 | + stm32_usart_serial_en_wakeup(port, false); |
|---|
| 1302 | 1567 | |
|---|
| 1303 | 1568 | return uart_resume_port(&stm32_usart_driver, port); |
|---|
| 1304 | 1569 | } |
|---|
| 1305 | | -#endif /* CONFIG_PM_SLEEP */ |
|---|
| 1570 | + |
|---|
| 1571 | +static int __maybe_unused stm32_usart_runtime_suspend(struct device *dev) |
|---|
| 1572 | +{ |
|---|
| 1573 | + struct uart_port *port = dev_get_drvdata(dev); |
|---|
| 1574 | + struct stm32_port *stm32port = container_of(port, |
|---|
| 1575 | + struct stm32_port, port); |
|---|
| 1576 | + |
|---|
| 1577 | + clk_disable_unprepare(stm32port->clk); |
|---|
| 1578 | + |
|---|
| 1579 | + return 0; |
|---|
| 1580 | +} |
|---|
| 1581 | + |
|---|
| 1582 | +static int __maybe_unused stm32_usart_runtime_resume(struct device *dev) |
|---|
| 1583 | +{ |
|---|
| 1584 | + struct uart_port *port = dev_get_drvdata(dev); |
|---|
| 1585 | + struct stm32_port *stm32port = container_of(port, |
|---|
| 1586 | + struct stm32_port, port); |
|---|
| 1587 | + |
|---|
| 1588 | + return clk_prepare_enable(stm32port->clk); |
|---|
| 1589 | +} |
|---|
| 1306 | 1590 | |
|---|
| 1307 | 1591 | static const struct dev_pm_ops stm32_serial_pm_ops = { |
|---|
| 1308 | | - SET_SYSTEM_SLEEP_PM_OPS(stm32_serial_suspend, stm32_serial_resume) |
|---|
| 1592 | + SET_RUNTIME_PM_OPS(stm32_usart_runtime_suspend, |
|---|
| 1593 | + stm32_usart_runtime_resume, NULL) |
|---|
| 1594 | + SET_SYSTEM_SLEEP_PM_OPS(stm32_usart_serial_suspend, |
|---|
| 1595 | + stm32_usart_serial_resume) |
|---|
| 1309 | 1596 | }; |
|---|
| 1310 | 1597 | |
|---|
| 1311 | 1598 | static struct platform_driver stm32_serial_driver = { |
|---|
| 1312 | | - .probe = stm32_serial_probe, |
|---|
| 1313 | | - .remove = stm32_serial_remove, |
|---|
| 1599 | + .probe = stm32_usart_serial_probe, |
|---|
| 1600 | + .remove = stm32_usart_serial_remove, |
|---|
| 1314 | 1601 | .driver = { |
|---|
| 1315 | 1602 | .name = DRIVER_NAME, |
|---|
| 1316 | 1603 | .pm = &stm32_serial_pm_ops, |
|---|
| .. | .. |
|---|
| 1318 | 1605 | }, |
|---|
| 1319 | 1606 | }; |
|---|
| 1320 | 1607 | |
|---|
| 1321 | | -static int __init usart_init(void) |
|---|
| 1608 | +static int __init stm32_usart_init(void) |
|---|
| 1322 | 1609 | { |
|---|
| 1323 | 1610 | static char banner[] __initdata = "STM32 USART driver initialized"; |
|---|
| 1324 | 1611 | int ret; |
|---|
| .. | .. |
|---|
| 1336 | 1623 | return ret; |
|---|
| 1337 | 1624 | } |
|---|
| 1338 | 1625 | |
|---|
| 1339 | | -static void __exit usart_exit(void) |
|---|
| 1626 | +static void __exit stm32_usart_exit(void) |
|---|
| 1340 | 1627 | { |
|---|
| 1341 | 1628 | platform_driver_unregister(&stm32_serial_driver); |
|---|
| 1342 | 1629 | uart_unregister_driver(&stm32_usart_driver); |
|---|
| 1343 | 1630 | } |
|---|
| 1344 | 1631 | |
|---|
| 1345 | | -module_init(usart_init); |
|---|
| 1346 | | -module_exit(usart_exit); |
|---|
| 1632 | +module_init(stm32_usart_init); |
|---|
| 1633 | +module_exit(stm32_usart_exit); |
|---|
| 1347 | 1634 | |
|---|
| 1348 | 1635 | MODULE_ALIAS("platform:" DRIVER_NAME); |
|---|
| 1349 | 1636 | MODULE_DESCRIPTION("STMicroelectronics STM32 serial port driver"); |
|---|