[PATCH RESEND 0/2] Misc OMAP GPIO/UART fixes

Judith Mendez posted 2 patches 1 month, 2 weeks ago
drivers/gpio/gpio-omap.c            | 29 +++++++++++++++++++++++++++++
drivers/tty/serial/8250/8250_omap.c |  4 ++--
2 files changed, 31 insertions(+), 2 deletions(-)
[PATCH RESEND 0/2] Misc OMAP GPIO/UART fixes
Posted by Judith Mendez 1 month, 2 weeks ago
This patch series carries some miscellaneous
OMAP driver fixes for GPIO and UART drivers.

For GPIO, add gpio_enable and gpio_disable calls
to gpio-omap which fixes an issue where if there
is an irq storm, serial console is unresponsive.

For UART, move pm_runtime_get_sync since the
current order of omap_8250_rx_dma_flush and
pm_runtime_get_sync calls are set in a way that
when omap_8250_shutdown returns, dma->rx_running
is set and this causes issues next time the UART
is re-opened.

Changes since v1:
- Fix CC list
- Drop Fixes tag

Judith Mendez (2):
  gpio: omap: Add omap_gpio_disable/enable_irq calls
  serial: 8250: omap: Move pm_runtime_get_sync

 drivers/gpio/gpio-omap.c            | 29 +++++++++++++++++++++++++++++
 drivers/tty/serial/8250/8250_omap.c |  4 ++--
 2 files changed, 31 insertions(+), 2 deletions(-)


base-commit: f45840d172a06d07a1a408b38bdb0be9ab3fd8cb
-- 
2.47.0
Re: [PATCH RESEND 0/2] Misc OMAP GPIO/UART fixes
Posted by Kevin Hilman 1 month, 2 weeks ago
Judith Mendez <jm@ti.com> writes:

> This patch series carries some miscellaneous
> OMAP driver fixes for GPIO and UART drivers.
>
> For GPIO, add gpio_enable and gpio_disable calls
> to gpio-omap which fixes an issue where if there
> is an irq storm, serial console is unresponsive.
>
> For UART, move pm_runtime_get_sync since the
> current order of omap_8250_rx_dma_flush and
> pm_runtime_get_sync calls are set in a way that
> when omap_8250_shutdown returns, dma->rx_running
> is set and this causes issues next time the UART
> is re-opened.

Could you summarize which OMAP platforms this was tested on?

Thanks,

Kevin