serial: 8250: bcm2835aux - defer if clock is zero

See: https://github.com/raspberrypi/linux/issues/3700

Signed-off-by: Phil Elwell <phil@raspberrypi.com>
This commit is contained in:
Phil Elwell
2020-07-02 13:53:20 +01:00
committed by Dom Cobley
parent 699029acdf
commit be67bad71a

View File

@@ -156,6 +156,13 @@ static int bcm2835aux_serial_probe(struct platform_device *pdev)
*/
up.port.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) {