linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific
@ 2022-08-17 14:22 Krzysztof Kozlowski
  2022-08-17 14:22 ` [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example Krzysztof Kozlowski
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-17 14:22 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul,
	Mauro Carvalho Chehab, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Mathieu Poirier, Carvalho Chehab, devicetree,
	linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc
  Cc: Krzysztof Kozlowski

Hi,

The last MFD/syscon patch depends on the previous ones to avoid
dt_binding_check warnings.

I propose to take entire set via Rob's DT tree.

Best regards,
Krzysztof

Krzysztof Kozlowski (4):
  dt-bindings: phy: hisilicon,hi3660-usb3: simplify example
  dt-bindings: phy: hisilicon,hi3670-usb3: simplify example
  dt-bindings: remoteproc: qcom,pil-info: add missing imem compatible
  dt-bindings: mfd: syscon: require specific compatible also for
    simple-mfd

 .../devicetree/bindings/mfd/syscon.yaml       | 14 +++++++++-
 .../bindings/phy/hisilicon,hi3660-usb3.yaml   | 22 +++++-----------
 .../bindings/phy/hisilicon,hi3670-usb3.yaml   | 26 ++++++-------------
 .../bindings/remoteproc/qcom,pil-info.yaml    |  2 +-
 4 files changed, 28 insertions(+), 36 deletions(-)

-- 
2.34.1


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

* [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example
  2022-08-17 14:22 [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Krzysztof Kozlowski
@ 2022-08-17 14:22 ` Krzysztof Kozlowski
  2022-09-02 17:25   ` Vinod Koul
  2022-09-05  6:21   ` Mauro Carvalho Chehab
  2022-08-17 14:22 ` [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-17 14:22 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul,
	Mauro Carvalho Chehab, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Mathieu Poirier, Carvalho Chehab, devicetree,
	linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc
  Cc: Krzysztof Kozlowski

syscon and simple-mfd cannot be used without device specific compatible,
so simplify the example to fix this.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../bindings/phy/hisilicon,hi3660-usb3.yaml   | 22 +++++--------------
 1 file changed, 6 insertions(+), 16 deletions(-)

diff --git a/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml b/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
index c2e073e26190..20b79e2e8b82 100644
--- a/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
+++ b/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
@@ -41,20 +41,10 @@ additionalProperties: false
 
 examples:
   - |
-    bus {
-      #address-cells = <2>;
-      #size-cells = <2>;
-
-      usb3_otg_bc: usb3_otg_bc@ff200000 {
-        compatible = "syscon", "simple-mfd";
-        reg = <0x0 0xff200000 0x0 0x1000>;
-
-        usb-phy {
-          compatible = "hisilicon,hi3660-usb-phy";
-          #phy-cells = <0>;
-          hisilicon,pericrg-syscon = <&crg_ctrl>;
-          hisilicon,pctrl-syscon = <&pctrl>;
-          hisilicon,eye-diagram-param = <0x22466e4>;
-        };
-      };
+    usb-phy {
+        compatible = "hisilicon,hi3660-usb-phy";
+        #phy-cells = <0>;
+        hisilicon,pericrg-syscon = <&crg_ctrl>;
+        hisilicon,pctrl-syscon = <&pctrl>;
+        hisilicon,eye-diagram-param = <0x22466e4>;
     };
-- 
2.34.1


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

* [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: simplify example
  2022-08-17 14:22 [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Krzysztof Kozlowski
  2022-08-17 14:22 ` [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example Krzysztof Kozlowski
@ 2022-08-17 14:22 ` Krzysztof Kozlowski
  2022-09-02 17:26   ` Vinod Koul
  2022-09-05  6:19   ` Mauro Carvalho Chehab
  2022-08-17 14:22 ` [PATCH 3/4] dt-bindings: remoteproc: qcom,pil-info: add missing imem compatible Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-17 14:22 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul,
	Mauro Carvalho Chehab, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Mathieu Poirier, Carvalho Chehab, devicetree,
	linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc
  Cc: Krzysztof Kozlowski

syscon and simple-mfd cannot be used without device specific compatible,
so simplify the example to fix this.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../bindings/phy/hisilicon,hi3670-usb3.yaml   | 26 ++++++-------------
 1 file changed, 8 insertions(+), 18 deletions(-)

diff --git a/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml b/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
index ebd78acfe2de..1cb00dbcd4c5 100644
--- a/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
+++ b/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
@@ -52,22 +52,12 @@ additionalProperties: false
 
 examples:
   - |
-    bus {
-      #address-cells = <2>;
-      #size-cells = <2>;
-
-      usb3_otg_bc: usb3_otg_bc@ff200000 {
-        compatible = "syscon", "simple-mfd";
-        reg = <0x0 0xff200000 0x0 0x1000>;
-
-        usb_phy {
-          compatible = "hisilicon,hi3670-usb-phy";
-          #phy-cells = <0>;
-          hisilicon,pericrg-syscon = <&crg_ctrl>;
-          hisilicon,pctrl-syscon = <&pctrl>;
-          hisilicon,sctrl-syscon = <&sctrl>;
-          hisilicon,eye-diagram-param = <0xfdfee4>;
-          hisilicon,tx-vboost-lvl = <0x5>;
-        };
-      };
+    usb-phy {
+        compatible = "hisilicon,hi3670-usb-phy";
+        #phy-cells = <0>;
+        hisilicon,pericrg-syscon = <&crg_ctrl>;
+        hisilicon,pctrl-syscon = <&pctrl>;
+        hisilicon,sctrl-syscon = <&sctrl>;
+        hisilicon,eye-diagram-param = <0xfdfee4>;
+        hisilicon,tx-vboost-lvl = <0x5>;
     };
-- 
2.34.1


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

* [PATCH 3/4] dt-bindings: remoteproc: qcom,pil-info: add missing imem compatible
  2022-08-17 14:22 [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Krzysztof Kozlowski
  2022-08-17 14:22 ` [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example Krzysztof Kozlowski
  2022-08-17 14:22 ` [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: " Krzysztof Kozlowski
@ 2022-08-17 14:22 ` Krzysztof Kozlowski
  2022-08-17 14:22 ` [PATCH 4/4] dt-bindings: mfd: syscon: require specific compatible also for simple-mfd Krzysztof Kozlowski
  2022-09-12 18:29 ` [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Rob Herring
  4 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-17 14:22 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul,
	Mauro Carvalho Chehab, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Mathieu Poirier, Carvalho Chehab, devicetree,
	linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc
  Cc: Krzysztof Kozlowski

syscon and simple-mfd cannot be used without device specific compatible.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/remoteproc/qcom,pil-info.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/remoteproc/qcom,pil-info.yaml b/Documentation/devicetree/bindings/remoteproc/qcom,pil-info.yaml
index 9282837d64ba..a7711e3c998c 100644
--- a/Documentation/devicetree/bindings/remoteproc/qcom,pil-info.yaml
+++ b/Documentation/devicetree/bindings/remoteproc/qcom,pil-info.yaml
@@ -30,7 +30,7 @@ additionalProperties: false
 examples:
   - |
     imem@146bf000 {
-      compatible = "syscon", "simple-mfd";
+      compatible = "qcom,sdm630-imem", "syscon", "simple-mfd";
       reg = <0x146bf000 0x1000>;
 
       #address-cells = <1>;
-- 
2.34.1


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

* [PATCH 4/4] dt-bindings: mfd: syscon: require specific compatible also for simple-mfd
  2022-08-17 14:22 [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2022-08-17 14:22 ` [PATCH 3/4] dt-bindings: remoteproc: qcom,pil-info: add missing imem compatible Krzysztof Kozlowski
@ 2022-08-17 14:22 ` Krzysztof Kozlowski
  2022-09-05 14:40   ` Lee Jones
  2022-09-12 18:29 ` [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Rob Herring
  4 siblings, 1 reply; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-17 14:22 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul,
	Mauro Carvalho Chehab, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Mathieu Poirier, Carvalho Chehab, devicetree,
	linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc
  Cc: Krzysztof Kozlowski

The syscon bindings require a device specific compatible, beside the
"syscon".  However schema counts "simple-mfd" as such, which allows
simple-mfd+syscon to sneak in.

Adjust the match to be sure simple-mfd also comes with a device specific
compatible.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/mfd/syscon.yaml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/mfd/syscon.yaml b/Documentation/devicetree/bindings/mfd/syscon.yaml
index c958086a5fc3..a64c7a71e6fe 100644
--- a/Documentation/devicetree/bindings/mfd/syscon.yaml
+++ b/Documentation/devicetree/bindings/mfd/syscon.yaml
@@ -72,7 +72,7 @@ properties:
       - contains:
           const: syscon
         minItems: 2
-        maxItems: 4  # Should be enough
+        maxItems: 5  # Should be enough
 
   reg:
     maxItems: 1
@@ -93,6 +93,18 @@ required:
   - compatible
   - reg
 
+allOf:
+  - if:
+      properties:
+        compatible:
+          contains:
+            const: simple-mfd
+    then:
+      properties:
+        compatible:
+          minItems: 3
+          maxItems: 5
+
 additionalProperties: true
 
 examples:
-- 
2.34.1


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

* Re: [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example
  2022-08-17 14:22 ` [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example Krzysztof Kozlowski
@ 2022-09-02 17:25   ` Vinod Koul
  2022-09-05  6:21   ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 11+ messages in thread
From: Vinod Koul @ 2022-09-02 17:25 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Mauro Carvalho Chehab,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Mathieu Poirier,
	Carvalho Chehab, devicetree, linux-kernel, linux-usb, linux-phy,
	linux-arm-msm, linux-remoteproc

On 17-08-22, 17:22, Krzysztof Kozlowski wrote:
> syscon and simple-mfd cannot be used without device specific compatible,
> so simplify the example to fix this.

Acked-By: Vinod Koul <vkoul@kernel.org>

-- 
~Vinod

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

* Re: [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: simplify example
  2022-08-17 14:22 ` [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: " Krzysztof Kozlowski
@ 2022-09-02 17:26   ` Vinod Koul
  2022-09-05  6:19   ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 11+ messages in thread
From: Vinod Koul @ 2022-09-02 17:26 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Mauro Carvalho Chehab,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Mathieu Poirier,
	Carvalho Chehab, devicetree, linux-kernel, linux-usb, linux-phy,
	linux-arm-msm, linux-remoteproc

On 17-08-22, 17:22, Krzysztof Kozlowski wrote:
> syscon and simple-mfd cannot be used without device specific compatible,
> so simplify the example to fix this.

Acked-By: Vinod Koul <vkoul@kernel.org>

-- 
~Vinod

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

* Re: [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: simplify example
  2022-08-17 14:22 ` [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: " Krzysztof Kozlowski
  2022-09-02 17:26   ` Vinod Koul
@ 2022-09-05  6:19   ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2022-09-05  6:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Mathieu Poirier, Carvalho Chehab,
	devicetree, linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc

Em Wed, 17 Aug 2022 17:22:44 +0300
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> escreveu:

> syscon and simple-mfd cannot be used without device specific compatible,
> so simplify the example to fix this.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../bindings/phy/hisilicon,hi3670-usb3.yaml   | 26 ++++++-------------
>  1 file changed, 8 insertions(+), 18 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml b/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
> index ebd78acfe2de..1cb00dbcd4c5 100644
> --- a/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
> +++ b/Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
> @@ -52,22 +52,12 @@ additionalProperties: false
>  
>  examples:
>    - |
> -    bus {
> -      #address-cells = <2>;
> -      #size-cells = <2>;
> -
> -      usb3_otg_bc: usb3_otg_bc@ff200000 {
> -        compatible = "syscon", "simple-mfd";
> -        reg = <0x0 0xff200000 0x0 0x1000>;
> -
> -        usb_phy {
> -          compatible = "hisilicon,hi3670-usb-phy";
> -          #phy-cells = <0>;
> -          hisilicon,pericrg-syscon = <&crg_ctrl>;
> -          hisilicon,pctrl-syscon = <&pctrl>;
> -          hisilicon,sctrl-syscon = <&sctrl>;
> -          hisilicon,eye-diagram-param = <0xfdfee4>;
> -          hisilicon,tx-vboost-lvl = <0x5>;
> -        };
> -      };
> +    usb-phy {
> +        compatible = "hisilicon,hi3670-usb-phy";
> +        #phy-cells = <0>;
> +        hisilicon,pericrg-syscon = <&crg_ctrl>;
> +        hisilicon,pctrl-syscon = <&pctrl>;
> +        hisilicon,sctrl-syscon = <&sctrl>;
> +        hisilicon,eye-diagram-param = <0xfdfee4>;
> +        hisilicon,tx-vboost-lvl = <0x5>;
>      };

Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org>

Thanks,
Mauro

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

* Re: [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example
  2022-08-17 14:22 ` [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example Krzysztof Kozlowski
  2022-09-02 17:25   ` Vinod Koul
@ 2022-09-05  6:21   ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2022-09-05  6:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Lee Jones, Rob Herring, Krzysztof Kozlowski, Yu Chen,
	Binghui Wang, Kishon Vijay Abraham I, Vinod Koul, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Mathieu Poirier, Carvalho Chehab,
	devicetree, linux-kernel, linux-usb, linux-phy, linux-arm-msm,
	linux-remoteproc

Em Wed, 17 Aug 2022 17:22:43 +0300
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> escreveu:

> syscon and simple-mfd cannot be used without device specific compatible,
> so simplify the example to fix this.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../bindings/phy/hisilicon,hi3660-usb3.yaml   | 22 +++++--------------
>  1 file changed, 6 insertions(+), 16 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml b/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
> index c2e073e26190..20b79e2e8b82 100644
> --- a/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
> +++ b/Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
> @@ -41,20 +41,10 @@ additionalProperties: false
>  
>  examples:
>    - |
> -    bus {
> -      #address-cells = <2>;
> -      #size-cells = <2>;
> -
> -      usb3_otg_bc: usb3_otg_bc@ff200000 {
> -        compatible = "syscon", "simple-mfd";
> -        reg = <0x0 0xff200000 0x0 0x1000>;
> -
> -        usb-phy {
> -          compatible = "hisilicon,hi3660-usb-phy";
> -          #phy-cells = <0>;
> -          hisilicon,pericrg-syscon = <&crg_ctrl>;
> -          hisilicon,pctrl-syscon = <&pctrl>;
> -          hisilicon,eye-diagram-param = <0x22466e4>;
> -        };
> -      };
> +    usb-phy {
> +        compatible = "hisilicon,hi3660-usb-phy";
> +        #phy-cells = <0>;
> +        hisilicon,pericrg-syscon = <&crg_ctrl>;
> +        hisilicon,pctrl-syscon = <&pctrl>;
> +        hisilicon,eye-diagram-param = <0x22466e4>;
>      };

Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org>

Thanks,
Mauro

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

* Re: [PATCH 4/4] dt-bindings: mfd: syscon: require specific compatible also for simple-mfd
  2022-08-17 14:22 ` [PATCH 4/4] dt-bindings: mfd: syscon: require specific compatible also for simple-mfd Krzysztof Kozlowski
@ 2022-09-05 14:40   ` Lee Jones
  0 siblings, 0 replies; 11+ messages in thread
From: Lee Jones @ 2022-09-05 14:40 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Rob Herring, Krzysztof Kozlowski, Yu Chen, Binghui Wang,
	Kishon Vijay Abraham I, Vinod Koul, Mauro Carvalho Chehab,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Mathieu Poirier,
	Carvalho Chehab, devicetree, linux-kernel, linux-usb, linux-phy,
	linux-arm-msm, linux-remoteproc

On Wed, 17 Aug 2022, Krzysztof Kozlowski wrote:

> The syscon bindings require a device specific compatible, beside the
> "syscon".  However schema counts "simple-mfd" as such, which allows
> simple-mfd+syscon to sneak in.
> 
> Adjust the match to be sure simple-mfd also comes with a device specific
> compatible.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  Documentation/devicetree/bindings/mfd/syscon.yaml | 14 +++++++++++++-
>  1 file changed, 13 insertions(+), 1 deletion(-)

Applied, thanks.

-- 
Lee Jones [李琼斯]

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

* Re: [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific
  2022-08-17 14:22 [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2022-08-17 14:22 ` [PATCH 4/4] dt-bindings: mfd: syscon: require specific compatible also for simple-mfd Krzysztof Kozlowski
@ 2022-09-12 18:29 ` Rob Herring
  4 siblings, 0 replies; 11+ messages in thread
From: Rob Herring @ 2022-09-12 18:29 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Konrad Dybcio, Kishon Vijay Abraham I, linux-remoteproc,
	Mathieu Poirier, Krzysztof Kozlowski, linux-arm-msm, linux-usb,
	devicetree, Yu Chen, Vinod Koul, Andy Gross, Rob Herring,
	Mauro Carvalho Chehab, Binghui Wang, linux-phy, Bjorn Andersson,
	Carvalho Chehab, Lee Jones, linux-kernel

On Wed, 17 Aug 2022 17:22:42 +0300, Krzysztof Kozlowski wrote:
> Hi,
> 
> The last MFD/syscon patch depends on the previous ones to avoid
> dt_binding_check warnings.
> 
> I propose to take entire set via Rob's DT tree.

This may have been in the window where PW server moved and stopped 
getting patches, so I missed it until patch 4 got applied and broke 
linux-next...

> 
> Best regards,
> Krzysztof
> 
> Krzysztof Kozlowski (4):
>   dt-bindings: phy: hisilicon,hi3660-usb3: simplify example
>   dt-bindings: phy: hisilicon,hi3670-usb3: simplify example
>   dt-bindings: remoteproc: qcom,pil-info: add missing imem compatible
>   dt-bindings: mfd: syscon: require specific compatible also for
>     simple-mfd

I applied patches 1-3, thanks!

Rob

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

end of thread, other threads:[~2022-09-12 18:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-17 14:22 [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Krzysztof Kozlowski
2022-08-17 14:22 ` [PATCH 1/4] dt-bindings: phy: hisilicon,hi3660-usb3: simplify example Krzysztof Kozlowski
2022-09-02 17:25   ` Vinod Koul
2022-09-05  6:21   ` Mauro Carvalho Chehab
2022-08-17 14:22 ` [PATCH 2/4] dt-bindings: phy: hisilicon,hi3670-usb3: " Krzysztof Kozlowski
2022-09-02 17:26   ` Vinod Koul
2022-09-05  6:19   ` Mauro Carvalho Chehab
2022-08-17 14:22 ` [PATCH 3/4] dt-bindings: remoteproc: qcom,pil-info: add missing imem compatible Krzysztof Kozlowski
2022-08-17 14:22 ` [PATCH 4/4] dt-bindings: mfd: syscon: require specific compatible also for simple-mfd Krzysztof Kozlowski
2022-09-05 14:40   ` Lee Jones
2022-09-12 18:29 ` [PATCH 0/4] mfd/phy/remoteproc: dt-bindings: syscon: be specific Rob Herring

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).