* [PATCH v3 1/1] dt-bindings: remoteproc: imx_rproc: add minItems for power-domain
@ 2024-06-10 15:17 Frank Li
2024-06-13 16:54 ` Rob Herring (Arm)
2024-06-17 14:41 ` Mathieu Poirier
0 siblings, 2 replies; 3+ messages in thread
From: Frank Li @ 2024-06-10 15:17 UTC (permalink / raw)
To: krzk
Cc: Frank.li, andersson, conor+dt, devicetree, festevam, imx, kernel,
krzk+dt, linux-arm-kernel, linux-kernel, linux-remoteproc,
mathieu.poirier, peng.fan, robh, s.hauer, shawnguo
"fsl,imx8qxp-cm4" and "fsl,imx8qm-cm4" need minimum 2 power domains. Other
platform doesn't require 'power-domain'.
Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
Notes:
Change from v2 to v3
- only imx8qxp and imx8qm need power-domain, other platform don't need it.
- update commit message.
Change from v1 to v2
- set minitem to 2 at top
- Add imx8qm compatible string also
- use not logic to handle difference compatible string restriction
- update commit message.
pass dt_binding_check.
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j8 dt_binding_check DT_SCHEMA_FILES=fsl,imx-rproc.yaml
SCHEMA Documentation/devicetree/bindings/processed-schema.json
CHKDT Documentation/devicetree/bindings
LINT Documentation/devicetree/bindings
DTEX Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.example.dts
DTC_CHK Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.example.dtb
.../bindings/remoteproc/fsl,imx-rproc.yaml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml b/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml
index df36e29d974ca..57d75acb0b5e5 100644
--- a/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml
+++ b/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml
@@ -59,6 +59,7 @@ properties:
maxItems: 32
power-domains:
+ minItems: 2
maxItems: 8
fsl,auto-boot:
@@ -99,6 +100,20 @@ allOf:
properties:
fsl,iomuxc-gpr: false
+ - if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - fsl,imx8qxp-cm4
+ - fsl,imx8qm-cm4
+ then:
+ required:
+ - power-domains
+ else:
+ properties:
+ power-domains: false
+
additionalProperties: false
examples:
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3 1/1] dt-bindings: remoteproc: imx_rproc: add minItems for power-domain
2024-06-10 15:17 [PATCH v3 1/1] dt-bindings: remoteproc: imx_rproc: add minItems for power-domain Frank Li
@ 2024-06-13 16:54 ` Rob Herring (Arm)
2024-06-17 14:41 ` Mathieu Poirier
1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring (Arm) @ 2024-06-13 16:54 UTC (permalink / raw)
To: Frank Li
Cc: Frank.li, linux-remoteproc, krzk+dt, linux-kernel, krzk,
linux-arm-kernel, s.hauer, mathieu.poirier, imx, devicetree,
festevam, kernel, peng.fan, andersson, conor+dt, shawnguo
On Mon, 10 Jun 2024 11:17:21 -0400, Frank Li wrote:
> "fsl,imx8qxp-cm4" and "fsl,imx8qm-cm4" need minimum 2 power domains. Other
> platform doesn't require 'power-domain'.
>
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
>
> Notes:
> Change from v2 to v3
> - only imx8qxp and imx8qm need power-domain, other platform don't need it.
> - update commit message.
>
> Change from v1 to v2
> - set minitem to 2 at top
> - Add imx8qm compatible string also
> - use not logic to handle difference compatible string restriction
> - update commit message.
>
> pass dt_binding_check.
>
> make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j8 dt_binding_check DT_SCHEMA_FILES=fsl,imx-rproc.yaml
> SCHEMA Documentation/devicetree/bindings/processed-schema.json
> CHKDT Documentation/devicetree/bindings
> LINT Documentation/devicetree/bindings
> DTEX Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.example.dts
> DTC_CHK Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.example.dtb
>
> .../bindings/remoteproc/fsl,imx-rproc.yaml | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3 1/1] dt-bindings: remoteproc: imx_rproc: add minItems for power-domain
2024-06-10 15:17 [PATCH v3 1/1] dt-bindings: remoteproc: imx_rproc: add minItems for power-domain Frank Li
2024-06-13 16:54 ` Rob Herring (Arm)
@ 2024-06-17 14:41 ` Mathieu Poirier
1 sibling, 0 replies; 3+ messages in thread
From: Mathieu Poirier @ 2024-06-17 14:41 UTC (permalink / raw)
To: Frank Li
Cc: krzk, andersson, conor+dt, devicetree, festevam, imx, kernel,
krzk+dt, linux-arm-kernel, linux-kernel, linux-remoteproc,
peng.fan, robh, s.hauer, shawnguo
On Mon, Jun 10, 2024 at 11:17:21AM -0400, Frank Li wrote:
> "fsl,imx8qxp-cm4" and "fsl,imx8qm-cm4" need minimum 2 power domains. Other
> platform doesn't require 'power-domain'.
>
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
>
> Notes:
> Change from v2 to v3
> - only imx8qxp and imx8qm need power-domain, other platform don't need it.
> - update commit message.
>
> Change from v1 to v2
> - set minitem to 2 at top
> - Add imx8qm compatible string also
> - use not logic to handle difference compatible string restriction
> - update commit message.
>
> pass dt_binding_check.
>
> make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j8 dt_binding_check DT_SCHEMA_FILES=fsl,imx-rproc.yaml
> SCHEMA Documentation/devicetree/bindings/processed-schema.json
> CHKDT Documentation/devicetree/bindings
> LINT Documentation/devicetree/bindings
> DTEX Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.example.dts
> DTC_CHK Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.example.dtb
>
> .../bindings/remoteproc/fsl,imx-rproc.yaml | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
Applied.
Thanks,
Mathieu
> diff --git a/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml b/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml
> index df36e29d974ca..57d75acb0b5e5 100644
> --- a/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml
> +++ b/Documentation/devicetree/bindings/remoteproc/fsl,imx-rproc.yaml
> @@ -59,6 +59,7 @@ properties:
> maxItems: 32
>
> power-domains:
> + minItems: 2
> maxItems: 8
>
> fsl,auto-boot:
> @@ -99,6 +100,20 @@ allOf:
> properties:
> fsl,iomuxc-gpr: false
>
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - fsl,imx8qxp-cm4
> + - fsl,imx8qm-cm4
> + then:
> + required:
> + - power-domains
> + else:
> + properties:
> + power-domains: false
> +
> additionalProperties: false
>
> examples:
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-06-17 14:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-10 15:17 [PATCH v3 1/1] dt-bindings: remoteproc: imx_rproc: add minItems for power-domain Frank Li
2024-06-13 16:54 ` Rob Herring (Arm)
2024-06-17 14:41 ` Mathieu Poirier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).