public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation
@ 2026-02-26  9:26 hehuan1
  2026-02-26 18:45 ` Conor Dooley
  2026-03-05 11:56 ` Ulf Hansson
  0 siblings, 2 replies; 3+ messages in thread
From: hehuan1 @ 2026-02-26  9:26 UTC (permalink / raw)
  To: ulf.hansson, robh, krzk+dt, conor+dt, jszhang, linux-mmc,
	devicetree, linux-kernel
  Cc: ningyu, linmin, pinkesh.vaghela, xuxiang, Huan He, Pritesh Patel

From: Huan He <hehuan1@eswincomputing.com>

The binding defines tuple-style reset-names items for some
compatibles, which implicitly enforces a fixed array length
via JSON Schema.

Defining global maxItems for resets and reset-names causes these
constraints to be intersected via allOf, resulting in an effective
minItems equal to the global maxItems. This leads to dtbs_check
failures reporting reset arrays as too short, even when the DTS
provides the correct number of entries.

Fixes: 30009a21f257 ("dt-bindings: mmc: sdhci-of-dwcmshc: Add Eswin EIC7700")
Co-developed-by: Pritesh Patel <pritesh.patel@einfochips.com>
Signed-off-by: Pritesh Patel <pritesh.patel@einfochips.com>
Signed-off-by: Huan He <hehuan1@eswincomputing.com>

---
Changes in v4:
  - Add Co-developed-by tag for Pritesh Patel

Changes in v3:
  - Add minItems: 5 in 'else' branch for non-Eswin devices

Changes in v2:
  - Keep the global maxItems constraints and add minItems: 4 for both
    resets and reset-names properties
  - Update commit message

- Link to v1: https://lore.kernel.org/all/20260211094736.88-1-hehuan1@eswincomputing.com/
---
 Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
index 7e7c55dc2440..5cebe5eb1efb 100644
--- a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
+++ b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
@@ -50,9 +50,11 @@ properties:
     maxItems: 1
 
   resets:
+    minItems: 4
     maxItems: 5
 
   reset-names:
+    minItems: 4
     maxItems: 5
 
   rockchip,txclk-tapnum:
@@ -146,6 +148,7 @@ allOf:
     else:
       properties:
         resets:
+          minItems: 5
           maxItems: 5
         reset-names:
           items:
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v4] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation
  2026-02-26  9:26 [PATCH v4] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation hehuan1
@ 2026-02-26 18:45 ` Conor Dooley
  2026-03-05 11:56 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Conor Dooley @ 2026-02-26 18:45 UTC (permalink / raw)
  To: hehuan1
  Cc: ulf.hansson, robh, krzk+dt, conor+dt, jszhang, linux-mmc,
	devicetree, linux-kernel, ningyu, linmin, pinkesh.vaghela,
	xuxiang, Pritesh Patel

[-- Attachment #1: Type: text/plain, Size: 75 bytes --]

Acked-by: Conor Dooley <conor.dooley@microchip.com>
pw-bot: not-applicable

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v4] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation
  2026-02-26  9:26 [PATCH v4] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation hehuan1
  2026-02-26 18:45 ` Conor Dooley
@ 2026-03-05 11:56 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2026-03-05 11:56 UTC (permalink / raw)
  To: hehuan1
  Cc: robh, krzk+dt, conor+dt, jszhang, linux-mmc, devicetree,
	linux-kernel, ningyu, linmin, pinkesh.vaghela, xuxiang,
	Pritesh Patel

On Thu, 26 Feb 2026 at 10:26, <hehuan1@eswincomputing.com> wrote:
>
> From: Huan He <hehuan1@eswincomputing.com>
>
> The binding defines tuple-style reset-names items for some
> compatibles, which implicitly enforces a fixed array length
> via JSON Schema.
>
> Defining global maxItems for resets and reset-names causes these
> constraints to be intersected via allOf, resulting in an effective
> minItems equal to the global maxItems. This leads to dtbs_check
> failures reporting reset arrays as too short, even when the DTS
> provides the correct number of entries.
>
> Fixes: 30009a21f257 ("dt-bindings: mmc: sdhci-of-dwcmshc: Add Eswin EIC7700")
> Co-developed-by: Pritesh Patel <pritesh.patel@einfochips.com>
> Signed-off-by: Pritesh Patel <pritesh.patel@einfochips.com>
> Signed-off-by: Huan He <hehuan1@eswincomputing.com>

Applied for next, thanks!

Kind regards
Uffe


>
> ---
> Changes in v4:
>   - Add Co-developed-by tag for Pritesh Patel
>
> Changes in v3:
>   - Add minItems: 5 in 'else' branch for non-Eswin devices
>
> Changes in v2:
>   - Keep the global maxItems constraints and add minItems: 4 for both
>     resets and reset-names properties
>   - Update commit message
>
> - Link to v1: https://lore.kernel.org/all/20260211094736.88-1-hehuan1@eswincomputing.com/
> ---
>  Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> index 7e7c55dc2440..5cebe5eb1efb 100644
> --- a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> +++ b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> @@ -50,9 +50,11 @@ properties:
>      maxItems: 1
>
>    resets:
> +    minItems: 4
>      maxItems: 5
>
>    reset-names:
> +    minItems: 4
>      maxItems: 5
>
>    rockchip,txclk-tapnum:
> @@ -146,6 +148,7 @@ allOf:
>      else:
>        properties:
>          resets:
> +          minItems: 5
>            maxItems: 5
>          reset-names:
>            items:
> --
> 2.25.1
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-03-05 11:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26  9:26 [PATCH v4] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation hehuan1
2026-02-26 18:45 ` Conor Dooley
2026-03-05 11:56 ` Ulf Hansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox