Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

serial: mctrl_gpio: split disable_ms into sync and no_sync APIs

The following splat has been observed on a SAMA5D27 platform using
atmel_serial:

BUG: sleeping function called from invalid context at kernel/irq/manage.c:738
in_atomic(): 1, irqs_disabled(): 128, non_block: 0, pid: 27, name: kworker/u5:0
preempt_count: 1, expected: 0
INFO: lockdep is turned off.
irq event stamp: 0
hardirqs last enabled at (0): [<00000000>] 0x0
hardirqs last disabled at (0): [<c01588f0>] copy_process+0x1c4c/0x7bec
softirqs last enabled at (0): [<c0158944>] copy_process+0x1ca0/0x7bec
softirqs last disabled at (0): [<00000000>] 0x0
CPU: 0 UID: 0 PID: 27 Comm: kworker/u5:0 Not tainted 6.13.0-rc7+ #74
Hardware name: Atmel SAMA5
Workqueue: hci0 hci_power_on [bluetooth]
Call trace:
unwind_backtrace from show_stack+0x18/0x1c
show_stack from dump_stack_lvl+0x44/0x70
dump_stack_lvl from __might_resched+0x38c/0x598
__might_resched from disable_irq+0x1c/0x48
disable_irq from mctrl_gpio_disable_ms+0x74/0xc0
mctrl_gpio_disable_ms from atmel_disable_ms.part.0+0x80/0x1f4
atmel_disable_ms.part.0 from atmel_set_termios+0x764/0x11e8
atmel_set_termios from uart_change_line_settings+0x15c/0x994
uart_change_line_settings from uart_set_termios+0x2b0/0x668
uart_set_termios from tty_set_termios+0x600/0x8ec
tty_set_termios from ttyport_set_flow_control+0x188/0x1e0
ttyport_set_flow_control from wilc_setup+0xd0/0x524 [hci_wilc]
wilc_setup [hci_wilc] from hci_dev_open_sync+0x330/0x203c [bluetooth]
hci_dev_open_sync [bluetooth] from hci_dev_do_open+0x40/0xb0 [bluetooth]
hci_dev_do_open [bluetooth] from hci_power_on+0x12c/0x664 [bluetooth]
hci_power_on [bluetooth] from process_one_work+0x998/0x1a38
process_one_work from worker_thread+0x6e0/0xfb4
worker_thread from kthread+0x3d4/0x484
kthread from ret_from_fork+0x14/0x28

This warning is emitted when trying to toggle, at the highest level,
some flow control (with serdev_device_set_flow_control) in a device
driver. At the lowest level, the atmel_serial driver is using
serial_mctrl_gpio lib to enable/disable the corresponding IRQs
accordingly. The warning emitted by CONFIG_DEBUG_ATOMIC_SLEEP is due to
disable_irq (called in mctrl_gpio_disable_ms) being possibly called in
some atomic context (some tty drivers perform modem lines configuration
in regions protected by port lock).

Split mctrl_gpio_disable_ms into two differents APIs, a non-blocking one
and a blocking one. Replace mctrl_gpio_disable_ms calls with the
relevant version depending on whether the call is protected by some port
lock.

Suggested-by: Jiri Slaby <jirislaby@kernel.org>
Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
Acked-by: Richard Genoud <richard.genoud@bootlin.com>
Link: https://lore.kernel.org/r/20250217-atomic_sleep_mctrl_serial_gpio-v3-1-59324b313eef@bootlin.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Alexis Lothoré and committed by
Greg Kroah-Hartman
1bd2aad5 e7498202

+47 -16
+1 -1
Documentation/driver-api/serial/driver.rst
··· 103 103 .. kernel-doc:: drivers/tty/serial/serial_mctrl_gpio.c 104 104 :identifiers: mctrl_gpio_init mctrl_gpio_to_gpiod 105 105 mctrl_gpio_set mctrl_gpio_get mctrl_gpio_enable_ms 106 - mctrl_gpio_disable_ms 106 + mctrl_gpio_disable_ms_sync mctrl_gpio_disable_ms_no_sync
+1 -1
drivers/tty/serial/8250/8250_port.c
··· 1680 1680 if (up->bugs & UART_BUG_NOMSR) 1681 1681 return; 1682 1682 1683 - mctrl_gpio_disable_ms(up->gpios); 1683 + mctrl_gpio_disable_ms_no_sync(up->gpios); 1684 1684 1685 1685 up->ier &= ~UART_IER_MSI; 1686 1686 serial_port_out(port, UART_IER, up->ier);
+1 -1
drivers/tty/serial/atmel_serial.c
··· 700 700 701 701 atmel_port->ms_irq_enabled = false; 702 702 703 - mctrl_gpio_disable_ms(atmel_port->gpios); 703 + mctrl_gpio_disable_ms_no_sync(atmel_port->gpios); 704 704 705 705 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS)) 706 706 idr |= ATMEL_US_CTSIC;
+1 -1
drivers/tty/serial/imx.c
··· 1608 1608 imx_uart_dma_exit(sport); 1609 1609 } 1610 1610 1611 - mctrl_gpio_disable_ms(sport->gpios); 1611 + mctrl_gpio_disable_ms_sync(sport->gpios); 1612 1612 1613 1613 uart_port_lock_irqsave(&sport->port, &flags); 1614 1614 ucr2 = imx_uart_readl(sport, UCR2);
+27 -7
drivers/tty/serial/serial_mctrl_gpio.c
··· 296 296 } 297 297 EXPORT_SYMBOL_GPL(mctrl_gpio_enable_ms); 298 298 299 - /** 300 - * mctrl_gpio_disable_ms - disable irqs and handling of changes to the ms lines 301 - * @gpios: gpios to disable 302 - */ 303 - void mctrl_gpio_disable_ms(struct mctrl_gpios *gpios) 299 + static void mctrl_gpio_disable_ms(struct mctrl_gpios *gpios, bool sync) 304 300 { 305 301 enum mctrl_gpio_idx i; 306 302 ··· 312 316 if (!gpios->irq[i]) 313 317 continue; 314 318 315 - disable_irq(gpios->irq[i]); 319 + if (sync) 320 + disable_irq(gpios->irq[i]); 321 + else 322 + disable_irq_nosync(gpios->irq[i]); 316 323 } 317 324 } 318 - EXPORT_SYMBOL_GPL(mctrl_gpio_disable_ms); 325 + 326 + /** 327 + * mctrl_gpio_disable_ms_sync - disable irqs and handling of changes to the ms 328 + * lines, and wait for any pending IRQ to be processed 329 + * @gpios: gpios to disable 330 + */ 331 + void mctrl_gpio_disable_ms_sync(struct mctrl_gpios *gpios) 332 + { 333 + mctrl_gpio_disable_ms(gpios, true); 334 + } 335 + EXPORT_SYMBOL_GPL(mctrl_gpio_disable_ms_sync); 336 + 337 + /** 338 + * mctrl_gpio_disable_ms_no_sync - disable irqs and handling of changes to the 339 + * ms lines, and return immediately 340 + * @gpios: gpios to disable 341 + */ 342 + void mctrl_gpio_disable_ms_no_sync(struct mctrl_gpios *gpios) 343 + { 344 + mctrl_gpio_disable_ms(gpios, false); 345 + } 346 + EXPORT_SYMBOL_GPL(mctrl_gpio_disable_ms_no_sync); 319 347 320 348 void mctrl_gpio_enable_irq_wake(struct mctrl_gpios *gpios) 321 349 {
+14 -3
drivers/tty/serial/serial_mctrl_gpio.h
··· 80 80 void mctrl_gpio_enable_ms(struct mctrl_gpios *gpios); 81 81 82 82 /* 83 - * Disable gpio interrupts to report status line changes. 83 + * Disable gpio interrupts to report status line changes, and block until 84 + * any corresponding IRQ is processed 84 85 */ 85 - void mctrl_gpio_disable_ms(struct mctrl_gpios *gpios); 86 + void mctrl_gpio_disable_ms_sync(struct mctrl_gpios *gpios); 87 + 88 + /* 89 + * Disable gpio interrupts to report status line changes, and return 90 + * immediately 91 + */ 92 + void mctrl_gpio_disable_ms_no_sync(struct mctrl_gpios *gpios); 86 93 87 94 /* 88 95 * Enable gpio wakeup interrupts to enable wake up source. ··· 143 136 { 144 137 } 145 138 146 - static inline void mctrl_gpio_disable_ms(struct mctrl_gpios *gpios) 139 + static inline void mctrl_gpio_disable_ms_sync(struct mctrl_gpios *gpios) 140 + { 141 + } 142 + 143 + static inline void mctrl_gpio_disable_ms_no_sync(struct mctrl_gpios *gpios) 147 144 { 148 145 } 149 146
+1 -1
drivers/tty/serial/sh-sci.c
··· 2310 2310 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line); 2311 2311 2312 2312 s->autorts = false; 2313 - mctrl_gpio_disable_ms(to_sci_port(port)->gpios); 2313 + mctrl_gpio_disable_ms_sync(to_sci_port(port)->gpios); 2314 2314 2315 2315 uart_port_lock_irqsave(port, &flags); 2316 2316 sci_stop_rx(port);
+1 -1
drivers/tty/serial/stm32-usart.c
··· 944 944 945 945 static void stm32_usart_disable_ms(struct uart_port *port) 946 946 { 947 - mctrl_gpio_disable_ms(to_stm32_port(port)->gpios); 947 + mctrl_gpio_disable_ms_sync(to_stm32_port(port)->gpios); 948 948 } 949 949 950 950 /* Transmit stop */