2021-04-09 14:01:26

by Satya Priya

[permalink] [raw]
Subject: [PATCH V2 0/4] Add RTC support for PMIC PMK8350

satya priya (4):
rtc: pm8xxx: Add RTC support for PMIC PMK8350
dt-bindings: mfd: Add compatible for pmk8350 rtc
dt-bindings: mfd: Convert pm8xxx bindings to yaml
dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings

.../devicetree/bindings/mfd/qcom-pm8xxx.txt | 99 ----------------------
.../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 ++++++++++++
.../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml | 62 ++++++++++++++
drivers/rtc/rtc-pm8xxx.c | 11 +++
4 files changed, 127 insertions(+), 99 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml

--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation


2021-04-09 14:01:38

by Satya Priya

[permalink] [raw]
Subject: [PATCH V2 4/4] dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings

Add binding doc for qcom pm8xxx rtc device.

Signed-off-by: satya priya <[email protected]>
---
Changes in V2:
- Added this in V2 to have separate binding for rtc node.

.../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml | 62 ++++++++++++++++++++++
1 file changed, 62 insertions(+)
create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml

diff --git a/Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml b/Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
new file mode 100644
index 0000000..4fba6db
--- /dev/null
+++ b/Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
@@ -0,0 +1,62 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/rtc/qcom-pm8xxx-rtc.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Qualcomm PM8xxx PMIC RTC device
+
+maintainers:
+ - Satya Priya <[email protected]>
+
+properties:
+ compatible:
+ enum:
+ - qcom,pm8058-rtc
+ - qcom,pm8921-rtc
+ - qcom,pm8941-rtc
+ - qcom,pm8018-rtc
+ - qcom,pmk8350-rtc
+
+ reg:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ allow-set-time:
+ $ref: /schemas/types.yaml#/definitions/flag
+ description:
+ Indicates that the setting of RTC time is allowed by the host CPU.
+
+required:
+ - compatible
+ - reg
+ - interrupts
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/spmi/spmi.h>
+ spmi_bus: spmi@c440000 {
+ reg = <0x0c440000 0x1100>;
+ #address-cells = <2>;
+ #size-cells = <0>;
+ pmicintc: pmic@0 {
+ reg = <0x0 SPMI_USID>;
+ compatible = "qcom,pm8921";
+ interrupts = <104 8>;
+ #interrupt-cells = <2>;
+ interrupt-controller;
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ pm8921_rtc: rtc@11d {
+ compatible = "qcom,pm8921-rtc";
+ reg = <0x11d>;
+ interrupts = <0x27 0>;
+ };
+ };
+ };
+...
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

2021-04-09 14:01:44

by Satya Priya

[permalink] [raw]
Subject: [PATCH V2 1/4] rtc: pm8xxx: Add RTC support for PMIC PMK8350

Add the comaptible string for PMIC PMK8350.

Signed-off-by: satya priya <[email protected]>
Reviewed-by: Bjorn Andersson <[email protected]>
---
Chnges in V2:
- No change.

drivers/rtc/rtc-pm8xxx.c | 11 +++++++++++
1 file changed, 11 insertions(+)

diff --git a/drivers/rtc/rtc-pm8xxx.c b/drivers/rtc/rtc-pm8xxx.c
index eb20659..29a1c65 100644
--- a/drivers/rtc/rtc-pm8xxx.c
+++ b/drivers/rtc/rtc-pm8xxx.c
@@ -445,6 +445,16 @@ static const struct pm8xxx_rtc_regs pm8941_regs = {
.alarm_en = BIT(7),
};

+static const struct pm8xxx_rtc_regs pmk8350_regs = {
+ .ctrl = 0x6146,
+ .write = 0x6140,
+ .read = 0x6148,
+ .alarm_rw = 0x6240,
+ .alarm_ctrl = 0x6246,
+ .alarm_ctrl2 = 0x6248,
+ .alarm_en = BIT(7),
+};
+
/*
* Hardcoded RTC bases until IORESOURCE_REG mapping is figured out
*/
@@ -453,6 +463,7 @@ static const struct of_device_id pm8xxx_id_table[] = {
{ .compatible = "qcom,pm8018-rtc", .data = &pm8921_regs },
{ .compatible = "qcom,pm8058-rtc", .data = &pm8058_regs },
{ .compatible = "qcom,pm8941-rtc", .data = &pm8941_regs },
+ { .compatible = "qcom,pmk8350-rtc", .data = &pmk8350_regs },
{ },
};
MODULE_DEVICE_TABLE(of, pm8xxx_id_table);
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

2021-04-09 14:02:07

by Satya Priya

[permalink] [raw]
Subject: [PATCH V2 2/4] dt-bindings: mfd: Add compatible for pmk8350 rtc

Add compatible string for pmk8350 rtc support.

Signed-off-by: satya priya <[email protected]>
Reviewed-by: Bjorn Andersson <[email protected]>
---
Changes in V2:
- Moved this patch before conversion patches.

Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt | 1 +
1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
index 9e5eba4..07f4925 100644
--- a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
+++ b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
@@ -64,6 +64,7 @@ The below bindings specify the set of valid subnodes.
"qcom,pm8921-rtc"
"qcom,pm8941-rtc"
"qcom,pm8018-rtc"
+ "qcom,pmk8350-rtc"

- reg:
Usage: required
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

2021-04-09 14:03:35

by Satya Priya

[permalink] [raw]
Subject: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

Convert pm8xxx bindings from .txt to .yaml format. Also,
split this binding into two: parent binding(qcom-pm8xxx.yaml)
and child node RTC binding(qcom-pm8xxx-rtc.yaml).

Signed-off-by: satya priya <[email protected]>
---
Changes in V2:
- As per Bjorn's comments, I've split this into two, one parent binding
and one child node rtc binding.
- Fixed bot errors and changed maintainer name.

.../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
.../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
2 files changed, 54 insertions(+), 100 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml

diff --git a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
deleted file mode 100644
index 07f4925..0000000
--- a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
+++ /dev/null
@@ -1,100 +0,0 @@
-Qualcomm PM8xxx PMIC multi-function devices
-
-The PM8xxx family of Power Management ICs are used to provide regulated
-voltages and other various functionality to Qualcomm SoCs.
-
-= PROPERTIES
-
-- compatible:
- Usage: required
- Value type: <string>
- Definition: must be one of:
- "qcom,pm8058"
- "qcom,pm8821"
- "qcom,pm8921"
-
-- #address-cells:
- Usage: required
- Value type: <u32>
- Definition: must be 1
-
-- #size-cells:
- Usage: required
- Value type: <u32>
- Definition: must be 0
-
-- interrupts:
- Usage: required
- Value type: <prop-encoded-array>
- Definition: specifies the interrupt that indicates a subdevice
- has generated an interrupt (summary interrupt). The
- format of the specifier is defined by the binding document
- describing the node's interrupt parent.
-
-- #interrupt-cells:
- Usage: required
- Value type : <u32>
- Definition: must be 2. Specifies the number of cells needed to encode
- an interrupt source. The 1st cell contains the interrupt
- number. The 2nd cell is the trigger type and level flags
- encoded as follows:
-
- 1 = low-to-high edge triggered
- 2 = high-to-low edge triggered
- 4 = active high level-sensitive
- 8 = active low level-sensitive
-
-- interrupt-controller:
- Usage: required
- Value type: <empty>
- Definition: identifies this node as an interrupt controller
-
-= SUBCOMPONENTS
-
-The PMIC contains multiple independent functions, each described in a subnode.
-The below bindings specify the set of valid subnodes.
-
-== Real-Time Clock
-
-- compatible:
- Usage: required
- Value type: <string>
- Definition: must be one of:
- "qcom,pm8058-rtc"
- "qcom,pm8921-rtc"
- "qcom,pm8941-rtc"
- "qcom,pm8018-rtc"
- "qcom,pmk8350-rtc"
-
-- reg:
- Usage: required
- Value type: <prop-encoded-array>
- Definition: single entry specifying the base address of the RTC registers
-
-- interrupts:
- Usage: required
- Value type: <prop-encoded-array>
- Definition: single entry specifying the RTC's alarm interrupt
-
-- allow-set-time:
- Usage: optional
- Value type: <empty>
- Definition: indicates that the setting of RTC time is allowed by
- the host CPU
-
-= EXAMPLE
-
- pmicintc: pmic@0 {
- compatible = "qcom,pm8921";
- interrupts = <104 8>;
- #interrupt-cells = <2>;
- interrupt-controller;
- #address-cells = <1>;
- #size-cells = <0>;
-
- rtc@11d {
- compatible = "qcom,pm8921-rtc";
- reg = <0x11d>;
- interrupts = <0x27 0>;
- };
- };
diff --git a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
new file mode 100644
index 0000000..9065ec5
--- /dev/null
+++ b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
@@ -0,0 +1,54 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/mfd/qcom-pm8xxx.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Qualcomm PM8xxx PMIC multi-function devices
+
+maintainers:
+ - Satya Priya <[email protected]>
+
+description: |
+ The PM8xxx family of Power Management ICs are used to provide regulated
+ voltages and other various functionality to Qualcomm SoCs.
+
+properties:
+ compatible:
+ enum:
+ - qcom,pm8058
+ - qcom,pm8821
+ - qcom,pm8921
+
+ reg:
+ maxItems: 1
+
+ '#address-cells':
+ const: 1
+
+ '#size-cells':
+ const: 0
+
+ interrupts:
+ maxItems: 1
+
+ '#interrupt-cells':
+ const: 2
+
+ interrupt-controller: true
+
+patternProperties:
+ "rtc@[0-9a-f]+$":
+ type: object
+ $ref: "../rtc/qcom-pm8xxx-rtc.yaml"
+
+required:
+ - compatible
+ - '#address-cells'
+ - '#size-cells'
+ - interrupts
+ - '#interrupt-cells'
+ - interrupt-controller
+
+additionalProperties: false
+...
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

2021-04-09 15:50:32

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

On Fri 09 Apr 08:59 CDT 2021, satya priya wrote:

> Convert pm8xxx bindings from .txt to .yaml format. Also,
> split this binding into two: parent binding(qcom-pm8xxx.yaml)
> and child node RTC binding(qcom-pm8xxx-rtc.yaml).
>
> Signed-off-by: satya priya <[email protected]>
> ---
> Changes in V2:
> - As per Bjorn's comments, I've split this into two, one parent binding
> and one child node rtc binding.
> - Fixed bot errors and changed maintainer name.
>
> .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> 2 files changed, 54 insertions(+), 100 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>
> diff --git a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> deleted file mode 100644
> index 07f4925..0000000
> --- a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> +++ /dev/null
> @@ -1,100 +0,0 @@
> -Qualcomm PM8xxx PMIC multi-function devices
> -
> -The PM8xxx family of Power Management ICs are used to provide regulated
> -voltages and other various functionality to Qualcomm SoCs.
> -
> -= PROPERTIES
> -
> -- compatible:
> - Usage: required
> - Value type: <string>
> - Definition: must be one of:
> - "qcom,pm8058"
> - "qcom,pm8821"
> - "qcom,pm8921"
> -
> -- #address-cells:
> - Usage: required
> - Value type: <u32>
> - Definition: must be 1
> -
> -- #size-cells:
> - Usage: required
> - Value type: <u32>
> - Definition: must be 0
> -
> -- interrupts:
> - Usage: required
> - Value type: <prop-encoded-array>
> - Definition: specifies the interrupt that indicates a subdevice
> - has generated an interrupt (summary interrupt). The
> - format of the specifier is defined by the binding document
> - describing the node's interrupt parent.
> -
> -- #interrupt-cells:
> - Usage: required
> - Value type : <u32>
> - Definition: must be 2. Specifies the number of cells needed to encode
> - an interrupt source. The 1st cell contains the interrupt
> - number. The 2nd cell is the trigger type and level flags
> - encoded as follows:
> -
> - 1 = low-to-high edge triggered
> - 2 = high-to-low edge triggered
> - 4 = active high level-sensitive
> - 8 = active low level-sensitive
> -
> -- interrupt-controller:
> - Usage: required
> - Value type: <empty>
> - Definition: identifies this node as an interrupt controller
> -
> -= SUBCOMPONENTS
> -
> -The PMIC contains multiple independent functions, each described in a subnode.
> -The below bindings specify the set of valid subnodes.
> -
> -== Real-Time Clock
> -
> -- compatible:
> - Usage: required
> - Value type: <string>
> - Definition: must be one of:
> - "qcom,pm8058-rtc"
> - "qcom,pm8921-rtc"
> - "qcom,pm8941-rtc"
> - "qcom,pm8018-rtc"
> - "qcom,pmk8350-rtc"
> -
> -- reg:
> - Usage: required
> - Value type: <prop-encoded-array>
> - Definition: single entry specifying the base address of the RTC registers
> -
> -- interrupts:
> - Usage: required
> - Value type: <prop-encoded-array>
> - Definition: single entry specifying the RTC's alarm interrupt
> -
> -- allow-set-time:
> - Usage: optional
> - Value type: <empty>
> - Definition: indicates that the setting of RTC time is allowed by
> - the host CPU
> -
> -= EXAMPLE
> -
> - pmicintc: pmic@0 {
> - compatible = "qcom,pm8921";
> - interrupts = <104 8>;
> - #interrupt-cells = <2>;
> - interrupt-controller;
> - #address-cells = <1>;
> - #size-cells = <0>;
> -
> - rtc@11d {
> - compatible = "qcom,pm8921-rtc";
> - reg = <0x11d>;
> - interrupts = <0x27 0>;
> - };
> - };
> diff --git a/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> new file mode 100644
> index 0000000..9065ec5
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> @@ -0,0 +1,54 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/mfd/qcom-pm8xxx.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Qualcomm PM8xxx PMIC multi-function devices
> +
> +maintainers:
> + - Satya Priya <[email protected]>
> +
> +description: |
> + The PM8xxx family of Power Management ICs are used to provide regulated
> + voltages and other various functionality to Qualcomm SoCs.
> +
> +properties:
> + compatible:
> + enum:
> + - qcom,pm8058
> + - qcom,pm8821
> + - qcom,pm8921
> +
> + reg:
> + maxItems: 1
> +
> + '#address-cells':
> + const: 1
> +
> + '#size-cells':
> + const: 0
> +
> + interrupts:
> + maxItems: 1
> +
> + '#interrupt-cells':
> + const: 2
> +
> + interrupt-controller: true
> +
> +patternProperties:
> + "rtc@[0-9a-f]+$":
> + type: object
> + $ref: "../rtc/qcom-pm8xxx-rtc.yaml"

This doesn't exist, so patch 3 and 4 should come in opposite order...

Apart from tat I think this looks good.

Reviewed-by: Bjorn Andersson <[email protected]>

Regards,
Bjorn

> +
> +required:
> + - compatible
> + - '#address-cells'
> + - '#size-cells'
> + - interrupts
> + - '#interrupt-cells'
> + - interrupt-controller
> +
> +additionalProperties: false
> +...
> --
> QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
> of Code Aurora Forum, hosted by The Linux Foundation
>

2021-04-09 15:52:09

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH V2 4/4] dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings

On Fri 09 Apr 08:59 CDT 2021, satya priya wrote:

> Add binding doc for qcom pm8xxx rtc device.
>

Reviewed-by: Bjorn Andersson <[email protected]>

Regards,
Bjorn

> Signed-off-by: satya priya <[email protected]>
> ---
> Changes in V2:
> - Added this in V2 to have separate binding for rtc node.
>
> .../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml | 62 ++++++++++++++++++++++
> 1 file changed, 62 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>
> diff --git a/Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml b/Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
> new file mode 100644
> index 0000000..4fba6db
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
> @@ -0,0 +1,62 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/rtc/qcom-pm8xxx-rtc.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Qualcomm PM8xxx PMIC RTC device
> +
> +maintainers:
> + - Satya Priya <[email protected]>
> +
> +properties:
> + compatible:
> + enum:
> + - qcom,pm8058-rtc
> + - qcom,pm8921-rtc
> + - qcom,pm8941-rtc
> + - qcom,pm8018-rtc
> + - qcom,pmk8350-rtc
> +
> + reg:
> + maxItems: 1
> +
> + interrupts:
> + maxItems: 1
> +
> + allow-set-time:
> + $ref: /schemas/types.yaml#/definitions/flag
> + description:
> + Indicates that the setting of RTC time is allowed by the host CPU.
> +
> +required:
> + - compatible
> + - reg
> + - interrupts
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/spmi/spmi.h>
> + spmi_bus: spmi@c440000 {
> + reg = <0x0c440000 0x1100>;
> + #address-cells = <2>;
> + #size-cells = <0>;
> + pmicintc: pmic@0 {
> + reg = <0x0 SPMI_USID>;
> + compatible = "qcom,pm8921";
> + interrupts = <104 8>;
> + #interrupt-cells = <2>;
> + interrupt-controller;
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + pm8921_rtc: rtc@11d {
> + compatible = "qcom,pm8921-rtc";
> + reg = <0x11d>;
> + interrupts = <0x27 0>;
> + };
> + };
> + };
> +...
> --
> QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
> of Code Aurora Forum, hosted by The Linux Foundation
>

2021-04-10 14:50:11

by kernel test robot

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

Hi satya,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on abelloni/rtc-next]
[also build test WARNING on lee-mfd/for-mfd-next robh/for-next v5.12-rc6 next-20210409]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url: https://github.com/0day-ci/linux/commits/satya-priya/Add-RTC-support-for-PMIC-PMK8350/20210409-220149
base: https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git rtc-next
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <[email protected]>


dtcheck warnings: (new ones prefixed by >>)
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: power-controller@2099000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
>> arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
Unknown file referenced: [Errno 2] No such file or directory: '/usr/local/lib/python3.9/dist-packages/dtschema/schemas/rtc/qcom-pm8xxx-rtc.yaml'
--
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: power-controller@2099000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
>> arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
Unknown file referenced: [Errno 2] No such file or directory: '/usr/local/lib/python3.9/dist-packages/dtschema/schemas/rtc/qcom-pm8xxx-rtc.yaml'
--
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: power-controller@2099000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
>> arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
Unknown file referenced: [Errno 2] No such file or directory: '/usr/local/lib/python3.9/dist-packages/dtschema/schemas/rtc/qcom-pm8xxx-rtc.yaml'
--
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: power-controller@2099000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
>> arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
Unknown file referenced: [Errno 2] No such file or directory: '/usr/local/lib/python3.9/dist-packages/dtschema/schemas/rtc/qcom-pm8xxx-rtc.yaml'

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/[email protected]

2021-04-11 12:51:26

by kernel test robot

[permalink] [raw]
Subject: Re: [PATCH V2 4/4] dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings

Hi satya,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on abelloni/rtc-next]
[also build test WARNING on lee-mfd/for-mfd-next robh/for-next v5.12-rc6 next-20210409]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url: https://github.com/0day-ci/linux/commits/satya-priya/Add-RTC-support-for-PMIC-PMK8350/20210409-220149
base: https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git rtc-next
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <[email protected]>


dtcheck warnings: (new ones prefixed by >>)
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: timer@2000000: clock-frequency: 'oneOf' conditional failed, one must be fixed:
[[27000000], [32768]] is too long
missing size tag in [[27000000], [32768]]
[27000000] is too short
[32768] is too short
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: clock-controller@900000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/clock/qcom,gcc.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: ak8975@c: 'vid-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/magnetometer/asahi-kasei,ak8975.yaml
>> arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: pmic@0: 'gpio@150', 'keypad@148', 'led@131', 'led@132', 'led@133', 'led@48', 'mpps@50', 'pwrkey@1c', 'vibrator@4a', 'xoadc@197' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: gpio@150: ethernet-gpios: {'phandle': [[23]], 'pinconf': {'pins': ['gpio7'], 'function': ['normal'], 'input-enable': True, 'bias-disable': True, 'power-source': [[2]]}} is not of type 'array'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-consumer.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: gpio@150: bmp085-gpios: {'phandle': [[17]], 'pinconf': {'pins': ['gpio16'], 'function': ['normal'], 'input-enable': True, 'bias-disable': True, 'power-source': [[2]]}} is not of type 'array'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-consumer.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: gpio@150: mpu3050-gpios: {'phandle': [[18]], 'pinconf': {'pins': ['gpio17'], 'function': ['normal'], 'input-enable': True, 'bias-disable': True, 'power-source': [[2]]}} is not of type 'array'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-consumer.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: gpio@150: sdcc3-gpios: {'phandle': [[35]], 'pinconf': {'pins': ['gpio22'], 'function': ['normal'], 'input-enable': True, 'bias-disable': True, 'power-source': [[2]]}} is not of type 'array'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-consumer.yaml
arch/arm/boot/dts/qcom-apq8060-dragonboard.dt.yaml: gpio@150: sdcc5-gpios: {'phandle': [[37]], 'pinconf': {'pins': ['gpio26'], 'function': ['normal'], 'input-enable': True, 'bias-pull-up': True, 'qcom,pull-up-strength': [[0]], 'power-source': [[2]]}} is not of type 'array'
--
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: pmic@0: 'gpio@150', 'mpps@50', 'pwrkey@1c', 'xoadc@197' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: gpio@150: wlan-gpios: {'phandle': [[104]], 'pios': {'pins': ['gpio43'], 'function': ['normal'], 'bias-disable': True, 'power-source': [[2]]}} is not of type 'array'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-consumer.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: xoadc@197: 'adc-channel@00', 'adc-channel@01', 'adc-channel@02', 'adc-channel@04', 'adc-channel@08', 'adc-channel@09', 'adc-channel@0a', 'adc-channel@0b', 'adc-channel@0c', 'adc-channel@0d', 'adc-channel@0e', 'adc-channel@0f' do not match any of the regexes: '^(adc-channel@)[0-9a-f]$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: xoadc@197: 'adc-channel@c' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: xoadc@197: 'adc-channel@d' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-cm-qs600.dt.yaml: xoadc@197: 'adc-channel@f' is a required property
--
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: pmic@0: 'gpio@150', 'mpps@50', 'pwrkey@1c', 'xoadc@197' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: gpio@150: wlan-gpios: {'phandle': [[111]], 'pios': {'pins': ['gpio43'], 'function': ['normal'], 'bias-disable': True, 'power-source': [[2]]}} is not of type 'array'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-consumer.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: xoadc@197: 'adc-channel@00', 'adc-channel@01', 'adc-channel@02', 'adc-channel@04', 'adc-channel@08', 'adc-channel@09', 'adc-channel@0a', 'adc-channel@0b', 'adc-channel@0c', 'adc-channel@0d', 'adc-channel@0e', 'adc-channel@0f' do not match any of the regexes: '^(adc-channel@)[0-9a-f]$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: xoadc@197: 'adc-channel@c' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: xoadc@197: 'adc-channel@d' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-ifc6410.dt.yaml: xoadc@197: 'adc-channel@f' is a required property
--
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: pmic@0: 'gpio@150', 'mpps@50', 'pwrkey@1c', 'xoadc@197' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: xoadc@197: 'adc-channel@00', 'adc-channel@01', 'adc-channel@02', 'adc-channel@04', 'adc-channel@08', 'adc-channel@09', 'adc-channel@0a', 'adc-channel@0b', 'adc-channel@0c', 'adc-channel@0d', 'adc-channel@0e', 'adc-channel@0f' do not match any of the regexes: '^(adc-channel@)[0-9a-f]$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: xoadc@197: 'adc-channel@c' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: xoadc@197: 'adc-channel@d' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: xoadc@197: 'adc-channel@f' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-sony-xperia-yuga.dt.yaml: qfprom@700000: $nodename:0: 'qfprom@700000' does not match '^(eeprom|efuse|nvram)(@.*|-[0-9a-f])*$'
--
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: power-controller@20a9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: power-controller@20b9000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/power/power-domain.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: sps-sic-non-secure@12100000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: pmic@1: 'mpps@50' does not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: pmic@0: 'gpio@150', 'mpps@50', 'pwrkey@1c', 'xoadc@197' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: xoadc@197: 'adc-channel@00', 'adc-channel@01', 'adc-channel@02', 'adc-channel@04', 'adc-channel@08', 'adc-channel@09', 'adc-channel@0a', 'adc-channel@0b', 'adc-channel@0c', 'adc-channel@0d', 'adc-channel@0e', 'adc-channel@0f' do not match any of the regexes: '^(adc-channel@)[0-9a-f]$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: xoadc@197: 'adc-channel@c' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: xoadc@197: 'adc-channel@d' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: xoadc@197: 'adc-channel@f' is a required property
From schema: Documentation/devicetree/bindings/iio/adc/qcom,pm8018-adc.yaml
arch/arm/boot/dts/qcom-apq8064-asus-nexus7-flo.dt.yaml: qfprom@700000: $nodename:0: 'qfprom@700000' does not match '^(eeprom|efuse|nvram)(@.*|-[0-9a-f])*$'
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: tcsr-mutex: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: vadc@3100: 'bat_temp', 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_gnd', 'ref_vdd', 'vbat_sns' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: iadc@3600: compatible:0: 'qcom,spmi-iadc' was expected
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: iadc@3600: compatible: ['qcom,pm8941-iadc', 'qcom,spmi-iadc'] is too long
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: iadc@3600: compatible: Additional items are not allowed ('qcom,spmi-iadc' was unexpected)
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-apq8074-dragonboard.dt.yaml: regulators: '5vs1', '5vs2' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: hwlock: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: hwlock: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: vadc@3100: 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_buf_625mv', 'ref_gnd', 'ref_vdd' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: rpm_requests: 'pma8084-regulators' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.yaml
arch/arm/boot/dts/qcom-apq8084-ifc6540.dt.yaml: pma8084-regulators: '5vs1' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/dt-core.yaml
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: hwlock: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: hwlock: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: vadc@3100: 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_buf_625mv', 'ref_gnd', 'ref_vdd' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: rpm_requests: 'pma8084-regulators' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.yaml
arch/arm/boot/dts/qcom-apq8084-mtp.dt.yaml: pma8084-regulators: '5vs1' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/dt-core.yaml
--
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: timer@2000000: clock-frequency: 'oneOf' conditional failed, one must be fixed:
[[27000000], [32768]] is too long
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: timer@2000000: clock-frequency: 'oneOf' conditional failed, one must be fixed:
[[27000000], [32768]] is too long
missing size tag in [[27000000], [32768]]
[27000000] is too short
[32768] is too short
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: clock-controller@900000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/clock/qcom,gcc.yaml
>> arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: pmic@0: 'gpio@150', 'keypad@148', 'mpps@50', 'pwrkey@1c', 'vibrator@4a', 'xoadc@197' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: clock-controller@2082000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: amba: $nodename:0: 'amba' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: sdcc@12400000: $nodename:0: 'sdcc@12400000' does not match '^mmc(@.*)?$'
From schema: Documentation/devicetree/bindings/mmc/arm,pl18x.yaml
arch/arm/boot/dts/qcom-msm8660-surf.dt.yaml: sdcc@12140000: $nodename:0: 'sdcc@12140000' does not match '^mmc(@.*)?$'
--
[32768] is too short
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: clock-controller@900000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/clock/qcom,gcc.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: clock-controller@4000000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/clock/qcom,mmcc.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: clock-controller@2011000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
>> arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: pmic@0: 'keypad@148', 'pwrkey@1c' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: amba: $nodename:0: 'amba' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: sdcc@12400000: $nodename:0: 'sdcc@12400000' does not match '^mmc(@.*)?$'
From schema: Documentation/devicetree/bindings/mmc/arm,pl18x.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: sdcc@12180000: $nodename:0: 'sdcc@12180000' does not match '^mmc(@.*)?$'
From schema: Documentation/devicetree/bindings/mmc/arm,pl18x.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: regulators: $nodename:0: 'regulators' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/qcom-msm8960-cdp.dt.yaml: regulators: gpio-regulator@91: 'anyOf' conditional failed, one must be fixed:
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: tcsr-mutex: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: vadc@3100: 'bat_temp', 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_gnd', 'ref_vdd', 'vbat_sns' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: iadc@3600: compatible:0: 'qcom,spmi-iadc' was expected
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: iadc@3600: compatible: ['qcom,pm8941-iadc', 'qcom,spmi-iadc'] is too long
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: iadc@3600: compatible: Additional items are not allowed ('qcom,spmi-iadc' was unexpected)
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-fairphone-fp2.dt.yaml: regulators: '5vs1', '5vs2' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: mpu6515@68: i2c-gate: False schema does not allow {'#address-cells': [[1]], '#size-cells': [[0]], 'ak8963@f': {'compatible': ['asahi-kasei,ak8963'], 'reg': [[15]], 'gpios': [[29, 67, 0]], 'vid-supply': [[68]], 'vdd-supply': [[67]]}, 'bmp280@76': {'compatible': ['bosch,bmp280'], 'reg': [[118]], 'vdda-supply': [[68]], 'vddd-supply': [[67]]}}
From schema: Documentation/devicetree/bindings/iio/imu/invensense,mpu6050.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: ak8963@f: 'vid-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/magnetometer/asahi-kasei,ak8975.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: otg: $nodename:0: 'otg' does not match '^(hog-[0-9]+|.+-hog(-[0-9]+)?)$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-hog.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: vadc@3100: 'bat_temp', 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_gnd', 'ref_vdd', 'vbat_sns' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: iadc@3600: compatible:0: 'qcom,spmi-iadc' was expected
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: iadc@3600: compatible: ['qcom,pm8941-iadc', 'qcom,spmi-iadc'] is too long
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-lge-nexus5-hammerhead.dt.yaml: iadc@3600: compatible: Additional items are not allowed ('qcom,spmi-iadc' was unexpected)
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: tcsr-mutex: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: vadc@3100: 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_buf_625mv', 'ref_gnd', 'ref_vdd' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: ocmem@fdd00000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/qcom,ocmem.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: rpm_requests: 'clock-controller', 'pm8841-regulators', 'pm8941-regulators', 'pma8084-regulators' do not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: pma8084-regulators: '5vs1' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/dt-core.yaml
arch/arm/boot/dts/qcom-msm8974-samsung-klte.dt.yaml: touchkey@20: linux,keycodes:0:0: 580 is greater than the maximum of 255
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: tcsr-mutex: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: vadc@3100: 'bat_temp', 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_gnd', 'ref_vdd', 'vbat_sns' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: iadc@3600: compatible:0: 'qcom,spmi-iadc' was expected
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: iadc@3600: compatible: ['qcom,pm8941-iadc', 'qcom,spmi-iadc'] is too long
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: iadc@3600: compatible: Additional items are not allowed ('qcom,spmi-iadc' was unexpected)
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-amami.dt.yaml: regulators: '5vs1', '5vs2' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: tcsr-mutex: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: vadc@3100: 'bat_temp', 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_gnd', 'ref_vdd', 'vbat_sns' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: iadc@3600: compatible:0: 'qcom,spmi-iadc' was expected
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: iadc@3600: compatible: ['qcom,pm8941-iadc', 'qcom,spmi-iadc'] is too long
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: iadc@3600: compatible: Additional items are not allowed ('qcom,spmi-iadc' was unexpected)
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-castor.dt.yaml: regulators: '5vs1', '5vs2' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: tcsr-mutex: 'reg' is a required property
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: tcsr-mutex: 'syscon' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/hwlock/qcom-hwspinlock.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: memory@fc428000: 'device_type' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/memory.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: spmi@fc4cf000: reg: [[4232900608, 4096], [4232884224, 4096], [4232880128, 4096]] is too long
From schema: Documentation/devicetree/bindings/spmi/spmi.yaml
>> arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: rtc@6000: reg: [[24576], [24832]] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: rtc@6000: 'reg-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: vadc@3100: 'bat_temp', 'die_temp', 'ref_1250v', 'ref_625mv', 'ref_gnd', 'ref_vdd', 'vbat_sns' do not match any of the regexes: '^.*@[0-9a-f]+$', 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-vadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: iadc@3600: compatible:0: 'qcom,spmi-iadc' was expected
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: iadc@3600: compatible: ['qcom,pm8941-iadc', 'qcom,spmi-iadc'] is too long
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: iadc@3600: compatible: Additional items are not allowed ('qcom,spmi-iadc' was unexpected)
From schema: Documentation/devicetree/bindings/iio/adc/qcom,spmi-iadc.yaml
arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dt.yaml: regulators: '5vs1', '5vs2' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
missing size tag in [[27000000], [32768]]
[27000000] is too short
[32768] is too short
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: clock-controller@900000: '#power-domain-cells' is a required property
From schema: Documentation/devicetree/bindings/clock/qcom,gcc.yaml
arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: clock-controller@2011000: compatible: 'anyOf' conditional failed, one must be fixed:
['syscon'] is too short
'syscon' is not one of ['allwinner,sun8i-a83t-system-controller', 'allwinner,sun8i-h3-system-controller', 'allwinner,sun8i-v3s-system-controller', 'allwinner,sun50i-a64-system-controller', 'hisilicon,dsa-subctrl', 'hisilicon,hi6220-sramctrl', 'hisilicon,pcie-sas-subctrl', 'hisilicon,peri-subctrl', 'microchip,sparx5-cpu-syscon', 'mstar,msc313-pmsleep', 'rockchip,px30-qos', 'rockchip,rk3066-qos', 'rockchip,rk3288-qos', 'rockchip,rk3399-qos', 'samsung,exynos3-sysreg', 'samsung,exynos4-sysreg', 'samsung,exynos5-sysreg', 'samsung,exynos5433-sysreg']
From schema: Documentation/devicetree/bindings/mfd/syscon.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: pmic@0: compatible:0: 'qcom,pm8018' is not one of ['qcom,pm8058', 'qcom,pm8821', 'qcom,pm8921']
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: pmic@0: compatible: ['qcom,pm8018', 'qcom,pm8921'] is too long
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: pmic@0: compatible: Additional items are not allowed ('qcom,pm8921' was unexpected)
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: pmic@0: rtc@11d:compatible: ['qcom,pm8018-rtc', 'qcom,pm8921-rtc'] is too long
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: pmic@0: rtc@11d:compatible: Additional items are not allowed ('qcom,pm8921-rtc' was unexpected)
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: pmic@0: 'gpio@150', 'mpp@50', 'pwrkey@1c' do not match any of the regexes: 'pinctrl-[0-9]+', 'rtc@[0-9a-f]+$'
From schema: Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: rtc@11d: compatible: ['qcom,pm8018-rtc', 'qcom,pm8921-rtc'] is too long
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>> arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: rtc@11d: compatible: Additional items are not allowed ('qcom,pm8921-rtc' was unexpected)
From schema: Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: amba: $nodename:0: 'amba' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: sdcc@12180000: $nodename:0: 'sdcc@12180000' does not match '^mmc(@.*)?$'
From schema: Documentation/devicetree/bindings/mmc/arm,pl18x.yaml
arch/arm/boot/dts/qcom-mdm9615-wp8548-mangoh-green.dt.yaml: sdcc@12140000: $nodename:0: 'sdcc@12140000' does not match '^mmc(@.*)?$'
From schema: Documentation/devicetree/bindings/mmc/arm,pl18x.yaml

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/[email protected]

2021-04-13 06:25:29

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

On Fri, 09 Apr 2021 19:29:25 +0530, satya priya wrote:
> Convert pm8xxx bindings from .txt to .yaml format. Also,
> split this binding into two: parent binding(qcom-pm8xxx.yaml)
> and child node RTC binding(qcom-pm8xxx-rtc.yaml).
>
> Signed-off-by: satya priya <[email protected]>
> ---
> Changes in V2:
> - As per Bjorn's comments, I've split this into two, one parent binding
> and one child node rtc binding.
> - Fixed bot errors and changed maintainer name.
>
> .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> 2 files changed, 54 insertions(+), 100 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>

Reviewed-by: Rob Herring <[email protected]>

2021-04-13 06:27:00

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH V2 4/4] dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings

On Fri, 09 Apr 2021 19:29:26 +0530, satya priya wrote:
> Add binding doc for qcom pm8xxx rtc device.
>
> Signed-off-by: satya priya <[email protected]>
> ---
> Changes in V2:
> - Added this in V2 to have separate binding for rtc node.
>
> .../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml | 62 ++++++++++++++++++++++
> 1 file changed, 62 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>

Reviewed-by: Rob Herring <[email protected]>

2021-04-13 11:00:09

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH V2 2/4] dt-bindings: mfd: Add compatible for pmk8350 rtc

On Fri, 09 Apr 2021 19:29:24 +0530, satya priya wrote:
> Add compatible string for pmk8350 rtc support.
>
> Signed-off-by: satya priya <[email protected]>
> Reviewed-by: Bjorn Andersson <[email protected]>
> ---
> Changes in V2:
> - Moved this patch before conversion patches.
>
> Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt | 1 +
> 1 file changed, 1 insertion(+)
>

Acked-by: Rob Herring <[email protected]>

2021-04-13 22:59:43

by Alexandre Belloni

[permalink] [raw]
Subject: Re: [PATCH V2 0/4] Add RTC support for PMIC PMK8350

Lee,

On 09/04/2021 19:29:22+0530, satya priya wrote:
> satya priya (4):
> rtc: pm8xxx: Add RTC support for PMIC PMK8350
> dt-bindings: mfd: Add compatible for pmk8350 rtc
> dt-bindings: mfd: Convert pm8xxx bindings to yaml
> dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings
>
> .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 99 ----------------------
> .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 ++++++++++++
> .../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml | 62 ++++++++++++++
> drivers/rtc/rtc-pm8xxx.c | 11 +++
> 4 files changed, 127 insertions(+), 99 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml
>

This is mostly about the RTC driver but the bindings doc is in mfd. How
do you prefer that to be merged? there is no build dependency so I can
take 1 and 4 and you could take 2 and 3. Or one of us can take all 4
patches.

--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

2021-04-14 14:52:02

by Lee Jones

[permalink] [raw]
Subject: Re: [PATCH V2 2/4] dt-bindings: mfd: Add compatible for pmk8350 rtc

On Fri, 09 Apr 2021, satya priya wrote:

> Add compatible string for pmk8350 rtc support.
>
> Signed-off-by: satya priya <[email protected]>
> Reviewed-by: Bjorn Andersson <[email protected]>
> ---
> Changes in V2:
> - Moved this patch before conversion patches.
>
> Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt | 1 +
> 1 file changed, 1 insertion(+)

Applied, thanks.

--
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

2021-04-14 14:52:39

by Lee Jones

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

On Fri, 09 Apr 2021, satya priya wrote:

> Convert pm8xxx bindings from .txt to .yaml format. Also,
> split this binding into two: parent binding(qcom-pm8xxx.yaml)
> and child node RTC binding(qcom-pm8xxx-rtc.yaml).
>
> Signed-off-by: satya priya <[email protected]>
> ---
> Changes in V2:
> - As per Bjorn's comments, I've split this into two, one parent binding
> and one child node rtc binding.
> - Fixed bot errors and changed maintainer name.
>
> .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> 2 files changed, 54 insertions(+), 100 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml

Applied, thanks.

--
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

2021-04-16 18:56:02

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

On Wed, Apr 14, 2021 at 3:38 AM Lee Jones <[email protected]> wrote:
>
> On Fri, 09 Apr 2021, satya priya wrote:
>
> > Convert pm8xxx bindings from .txt to .yaml format. Also,
> > split this binding into two: parent binding(qcom-pm8xxx.yaml)
> > and child node RTC binding(qcom-pm8xxx-rtc.yaml).
> >
> > Signed-off-by: satya priya <[email protected]>
> > ---
> > Changes in V2:
> > - As per Bjorn's comments, I've split this into two, one parent binding
> > and one child node rtc binding.
> > - Fixed bot errors and changed maintainer name.
> >
> > .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> > .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> > 2 files changed, 54 insertions(+), 100 deletions(-)
> > delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> > create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
>
> Applied, thanks.

You need to apply the rtc schema too. linux-next has an error on this one now.

Rob

2021-04-16 21:52:43

by Alexandre Belloni

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

Hi,

On 16/04/2021 12:20:30-0500, Rob Herring wrote:
> On Wed, Apr 14, 2021 at 3:38 AM Lee Jones <[email protected]> wrote:
> >
> > On Fri, 09 Apr 2021, satya priya wrote:
> >
> > > Convert pm8xxx bindings from .txt to .yaml format. Also,
> > > split this binding into two: parent binding(qcom-pm8xxx.yaml)
> > > and child node RTC binding(qcom-pm8xxx-rtc.yaml).
> > >
> > > Signed-off-by: satya priya <[email protected]>
> > > ---
> > > Changes in V2:
> > > - As per Bjorn's comments, I've split this into two, one parent binding
> > > and one child node rtc binding.
> > > - Fixed bot errors and changed maintainer name.
> > >
> > > .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> > > .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> > > 2 files changed, 54 insertions(+), 100 deletions(-)
> > > delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> > > create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> >
> > Applied, thanks.
>
> You need to apply the rtc schema too. linux-next has an error on this one now.
>

I'm going to apply it later tonight


--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

2021-04-16 22:22:20

by Alexandre Belloni

[permalink] [raw]
Subject: Re: (subset) [PATCH V2 0/4] Add RTC support for PMIC PMK8350

On Fri, 9 Apr 2021 19:29:22 +0530, satya priya wrote:
> satya priya (4):
> rtc: pm8xxx: Add RTC support for PMIC PMK8350
> dt-bindings: mfd: Add compatible for pmk8350 rtc
> dt-bindings: mfd: Convert pm8xxx bindings to yaml
> dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings
>
> .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 99 ----------------------
> .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 ++++++++++++
> .../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml | 62 ++++++++++++++
> drivers/rtc/rtc-pm8xxx.c | 11 +++
> 4 files changed, 127 insertions(+), 99 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml

Applied, thanks!

[1/4] rtc: pm8xxx: Add RTC support for PMIC PMK8350
commit: c8f0ca8b7a4b91f637ccd9a55f37dbac73d6f6bf
[4/4] dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings
commit: 8138c5f0318c69a878582d2140dac08e6a99880d

Best regards,
--
Alexandre Belloni <[email protected]>

2021-04-29 15:23:05

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

On Fri, Apr 16, 2021 at 2:17 PM Alexandre Belloni
<[email protected]> wrote:
>
> Hi,
>
> On 16/04/2021 12:20:30-0500, Rob Herring wrote:
> > On Wed, Apr 14, 2021 at 3:38 AM Lee Jones <[email protected]> wrote:
> > >
> > > On Fri, 09 Apr 2021, satya priya wrote:
> > >
> > > > Convert pm8xxx bindings from .txt to .yaml format. Also,
> > > > split this binding into two: parent binding(qcom-pm8xxx.yaml)
> > > > and child node RTC binding(qcom-pm8xxx-rtc.yaml).
> > > >
> > > > Signed-off-by: satya priya <[email protected]>
> > > > ---
> > > > Changes in V2:
> > > > - As per Bjorn's comments, I've split this into two, one parent binding
> > > > and one child node rtc binding.
> > > > - Fixed bot errors and changed maintainer name.
> > > >
> > > > .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> > > > .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> > > > 2 files changed, 54 insertions(+), 100 deletions(-)
> > > > delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> > > > create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> > >
> > > Applied, thanks.
> >
> > You need to apply the rtc schema too. linux-next has an error on this one now.
> >
>
> I'm going to apply it later tonight

I've said this before, but MFD bindings with more than one schema file
like this one need to go thru one tree or things break temporarily (as
now Linus' tree is broken).

Rob

2021-05-04 15:12:41

by Alexandre Belloni

[permalink] [raw]
Subject: Re: [PATCH V2 3/4] dt-bindings: mfd: Convert pm8xxx bindings to yaml

On 29/04/2021 10:18:21-0500, Rob Herring wrote:
> On Fri, Apr 16, 2021 at 2:17 PM Alexandre Belloni
> <[email protected]> wrote:
> >
> > Hi,
> >
> > On 16/04/2021 12:20:30-0500, Rob Herring wrote:
> > > On Wed, Apr 14, 2021 at 3:38 AM Lee Jones <[email protected]> wrote:
> > > >
> > > > On Fri, 09 Apr 2021, satya priya wrote:
> > > >
> > > > > Convert pm8xxx bindings from .txt to .yaml format. Also,
> > > > > split this binding into two: parent binding(qcom-pm8xxx.yaml)
> > > > > and child node RTC binding(qcom-pm8xxx-rtc.yaml).
> > > > >
> > > > > Signed-off-by: satya priya <[email protected]>
> > > > > ---
> > > > > Changes in V2:
> > > > > - As per Bjorn's comments, I've split this into two, one parent binding
> > > > > and one child node rtc binding.
> > > > > - Fixed bot errors and changed maintainer name.
> > > > >
> > > > > .../devicetree/bindings/mfd/qcom-pm8xxx.txt | 100 ---------------------
> > > > > .../devicetree/bindings/mfd/qcom-pm8xxx.yaml | 54 +++++++++++
> > > > > 2 files changed, 54 insertions(+), 100 deletions(-)
> > > > > delete mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.txt
> > > > > create mode 100644 Documentation/devicetree/bindings/mfd/qcom-pm8xxx.yaml
> > > >
> > > > Applied, thanks.
> > >
> > > You need to apply the rtc schema too. linux-next has an error on this one now.
> > >
> >
> > I'm going to apply it later tonight
>
> I've said this before, but MFD bindings with more than one schema file
> like this one need to go thru one tree or things break temporarily (as
> now Linus' tree is broken).
>

Noted, I'll be more careful next time.

> Rob

--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com