0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-25 06:26:15 +00:00
openwrt/target/linux/bcm27xx/patches-6.6/950-0225-serial-8250-bcm2835aux-defer-if-clock-is-zero.patch
Álvaro Fernández Rojas 8c405cdccc bcm27xx: add 6.6 kernel patches
The patches were generated from the RPi repo with the following command:
git format-patch v6.6.34..rpi-6.1.y

Some patches needed rebasing and, as usual, the applied and reverted, wireless
drivers, Github workflows, READMEs and defconfigs patches were removed.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2024-06-18 18:52:49 +02:00

29 lines
977 B
Diff

From 007c2c484b9da70536de4eee3b1d01ee2f0a3aa1 Mon Sep 17 00:00:00 2001
From: Phil Elwell <phil@raspberrypi.com>
Date: Thu, 2 Jul 2020 13:53:20 +0100
Subject: [PATCH 0225/1085] serial: 8250: bcm2835aux - defer if clock is zero
See: https://github.com/raspberrypi/linux/issues/3700
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
---
drivers/tty/serial/8250/8250_bcm2835aux.c | 7 +++++++
1 file changed, 7 insertions(+)
--- a/drivers/tty/serial/8250/8250_bcm2835aux.c
+++ b/drivers/tty/serial/8250/8250_bcm2835aux.c
@@ -182,6 +182,13 @@ static int bcm2835aux_serial_probe(struc
*/
up.port.uartclk = uartclk * 2;
+ /* The clock is only queried at probe time, which means we get one shot
+ * at this. A zero clock is never going to work and is almost certainly
+ * due to a parent not being ready, so prefer to defer.
+ */
+ if (!up.port.uartclk)
+ return -EPROBE_DEFER;
+
/* register the port */
ret = serial8250_register_8250_port(&up);
if (ret < 0) {