spi: SPI core CS delay fixes and additions
authorMark Brown <broonie@kernel.org>
Fri, 13 Jan 2023 15:56:45 +0000 (15:56 +0000)
committerMark Brown <broonie@kernel.org>
Fri, 13 Jan 2023 17:37:52 +0000 (17:37 +0000)
commitc5d808691c2cf61c7b85003027ee35267dd74d7b
tree6173acd7ec3c599b79a308e1786ff1339d332376
parentf66804bf7665f9d2db04791496ba2c7f4173941c
parent5827b31d858e399e0ba9fbd33da7a39b31769e11
spi: SPI core CS delay fixes and additions

Merge series from Hector Martin <marcan@marcan.st>:

Commits f6c911f3308c ("spi: dt-bindings: Introduce
spi-cs-setup-ns property") and 33a2fde5f77b ("spi: Introduce
spi-cs-setup-ns property") introduced a new property to represent the
CS setup delay in the device tree, but they have some issues:

- The property is only parsed as a 16-bit integer number of nanoseconds,
  which limits the maximum value to ~65us. This is not a reasonable
  upper limit, as some devices might need a lot more.
- The property name is inconsistent with other delay properties, which
  use a "*-delay-ns" naming scheme.
- Only the setup delay is introduced, but not the related hold and
  inactive delay times.

This series fixes the issues and adds support for the two missing
properties. Please pull in the first 3 patches as fixes for 6.2, to
avoid introducing a problematic DT API in this release. The last two
patches can wait until 6.3, though are probably harmless to throw in
as fixes too, since they're trivial.