Re: [PATCH v9 06/15] dt-bindings: mfd: amd,pensando-elbasr: Add AMD Pensando System Resource chip

From: Krzysztof Kozlowski
Date: Thu Jan 19 2023 - 02:58:58 EST


On 19/01/2023 04:51, Brad Larson wrote:
> Add support for the AMD Pensando SoC System Resource chip using the
> SPI interface. The device functions are accessed using four
> chip-selects. This device is present for all Pensando SoC designs.
>
> Signed-off-by: Brad Larson <blarson@xxxxxxx>
> ---
>
> Changes since v6:
> - Instead of four nodes, one per chip-select, a single
> node is used with reset-cells in the parent.
> - No MFD API is used anymore in the driver so it made
> sense to move this to drivers/spi.
> - This driver is common for all Pensando SoC based designs
> so changed the name to pensando-sr.c to not make it Elba
> SoC specific.
> - Added property cs for the chip-select number which is used
> by the driver to create /dev/pensr0.<cs>
>
> ---
> .../bindings/spi/amd,pensando-sr.yaml | 68 +++++++++++++++++++
> 1 file changed, 68 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/spi/amd,pensando-sr.yaml
>
> diff --git a/Documentation/devicetree/bindings/spi/amd,pensando-sr.yaml b/Documentation/devicetree/bindings/spi/amd,pensando-sr.yaml
> new file mode 100644
> index 000000000000..8504652f6e19
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/spi/amd,pensando-sr.yaml
> @@ -0,0 +1,68 @@
> +# SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/spi/amd,pensando-sr.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: AMD Pensando SoC Resource Controller
> +
> +description: |
> + AMD Pensando SoC Resource Controller is a set of
> + control/status registers accessed on four chip-selects.
> + This device is present in all Pensando SoC based designs.
> +
> +maintainers:
> + - Brad Larson <blarson@xxxxxxx>
> +
> +properties:
> + compatible:
> + contains:

That's not correct syntax. Please start from existing schema or
example-schema. Drop contains.

> + enum:
> + - amd,pensando-sr
> +
> + reg:
> + minItems: 1

maxItems. Which example or existing schema pointed you to use minItems?

> +
> + cs:
> + minItems: 1
> + maxItems: 4
> + description:
> + Device chip select

Drop entire property. Isn't reg for this on SPI bus?

> +
> + '#reset-cells':
> + const: 1
> +
> + interrupts:
> + maxItems: 1
> +
> + spi-max-frequency: true

Drop. Missing reference to spi-peripheral-props.

> +
> +required:
> + - compatible
> + - cs
> + - spi-max-frequency
> + - '#reset-cells'
> +
> +unevaluatedProperties: false

This does not make sense on its own. It works with additional ref. When
you add ref to spi props, it will be fine. But without it you should use
additionalProperties: false.


Best regards,
Krzysztof