spi: Parse hold/inactive CS delay values from the DT
authorJanne Grunau <j@jannau.net>
Fri, 13 Jan 2023 10:23:10 +0000 (19:23 +0900)
committerMark Brown <broonie@kernel.org>
Fri, 13 Jan 2023 12:31:51 +0000 (12:31 +0000)
Now that we support parsing the setup time from the Device Tree, we can
also easily support the remaining hold and inactive time delay values.

Signed-off-by: Janne Grunau <j@jannau.net>
Signed-off-by: Hector Martin <marcan@marcan.st>
Link: https://lore.kernel.org/r/20230113102309.18308-4-marcan@marcan.st
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi.c

index 3f33934f5429a2d079db811eacc3aa9fd357de53..fc4f6308efd859a47f9393bd544ddc34f5199d80 100644 (file)
@@ -2327,6 +2327,8 @@ static int of_spi_parse_dt(struct spi_controller *ctlr, struct spi_device *spi,
 
        /* Device CS delays */
        of_spi_parse_dt_cs_delay(nc, &spi->cs_setup, "spi-cs-setup-delay-ns");
+       of_spi_parse_dt_cs_delay(nc, &spi->cs_hold, "spi-cs-hold-delay-ns");
+       of_spi_parse_dt_cs_delay(nc, &spi->cs_inactive, "spi-cs-inactive-delay-ns");
 
        return 0;
 }