* [PATCH v2 05/12] dt-bindings: interconnect: split SC8180x to own schema
2023-03-25 12:24 [PATCH v2 00/12] Introduce the SC8180x devices Vinod Koul
@ 2023-03-25 12:24 ` Vinod Koul
2023-03-26 14:10 ` Rob Herring
2023-03-27 7:46 ` [PATCH v2 00/12] Introduce the SC8180x devices Krzysztof Kozlowski
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Vinod Koul @ 2023-03-25 12:24 UTC (permalink / raw)
To: Georgi Djakov, Bjorn Andersson
Cc: linux-arm-msm, Vinod Koul, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, linux-pm, devicetree, linux-kernel
SC8180x comes with interconnects having and missing IO address space, and
variable number of clocks, so split it from common file for easier
maintenance and to fix warnings like:
sc8180x-lenovo-flex-5g.dtb: interconnect-0: 'reg' is a required property
Signed-off-by: Vinod Koul <vkoul@kernel.org>
---
.../bindings/interconnect/qcom,rpmh.yaml | 11 ---
.../interconnect/qcom,sc8180x-rpmh.yaml | 76 +++++++++++++++++++
2 files changed, 76 insertions(+), 11 deletions(-)
create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
diff --git a/Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml b/Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml
index 4d93ad415e0b..5cbc3be49e99 100644
--- a/Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml
+++ b/Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml
@@ -39,17 +39,6 @@ properties:
- qcom,sc7180-npu-noc
- qcom,sc7180-qup-virt
- qcom,sc7180-system-noc
- - qcom,sc8180x-aggre1-noc
- - qcom,sc8180x-aggre2-noc
- - qcom,sc8180x-camnoc-virt
- - qcom,sc8180x-compute-noc
- - qcom,sc8180x-config-noc
- - qcom,sc8180x-dc-noc
- - qcom,sc8180x-gem-noc
- - qcom,sc8180x-mc-virt
- - qcom,sc8180x-mmss-noc
- - qcom,sc8180x-qup-virt
- - qcom,sc8180x-system-noc
- qcom,sdm670-aggre1-noc
- qcom,sdm670-aggre2-noc
- qcom,sdm670-config-noc
diff --git a/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml b/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
new file mode 100644
index 000000000000..613af6caa71d
--- /dev/null
+++ b/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
@@ -0,0 +1,76 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/interconnect/qcom,sc8180x-rpmh.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Qualcomm RPMh Network-On-Chip Interconnect on SC8180X
+
+maintainers:
+ - Bjorn Andersson <andersson@kernel.org>
+ - Konrad Dybcio <konrad.dybcio@linaro.org>
+
+description: |
+ RPMh interconnect providers support system bandwidth requirements through
+ RPMh hardware accelerators known as Bus Clock Manager (BCM).
+
+ See also:: include/dt-bindings/interconnect/qcom,sc8180x.h
+
+properties:
+ compatible:
+ enum:
+ - qcom,sc8180x-aggre1-noc
+ - qcom,sc8180x-aggre1-noc
+ - qcom,sc8180x-aggre2-noc
+ - qcom,sc8180x-camnoc-virt
+ - qcom,sc8180x-compute-noc
+ - qcom,sc8180x-config-noc
+ - qcom,sc8180x-dc-noc
+ - qcom,sc8180x-gem-noc
+ - qcom,sc8180x-mc-virt
+ - qcom,sc8180x-mmss-noc
+ - qcom,sc8180x-qup-virt
+ - qcom,sc8180x-system-noc
+
+ reg:
+ maxItems: 1
+
+ clocks:
+ minItems: 1
+ maxItems: 2
+
+allOf:
+ - $ref: qcom,rpmh-common.yaml#
+ - if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - qcom,sc8180x-camnoc-virt
+ - qcom,sc8180x-mc-virt
+ - qcom,sc8180x-qup-virt
+ then:
+ properties:
+ reg: false
+ else:
+ required:
+ - reg
+required:
+ - compatible
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ camnoc_virt: interconnect-0{
+ compatible = "qcom,sc8180x-camnoc-virt";
+ #interconnect-cells = <2>;
+ qcom,bcm-voters = <&apps_bcm_voter>;
+ };
+
+ aggre1_noc: interconnect@16e0000 {
+ compatible = "qcom,sc8180x-aggre1-noc";
+ reg = <0 0x016e0000 0 0xd080>;
+ #interconnect-cells = <2>;
+ qcom,bcm-voters = <&apps_bcm_voter>;
+ };
--
2.39.2
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH v2 05/12] dt-bindings: interconnect: split SC8180x to own schema
2023-03-25 12:24 ` [PATCH v2 05/12] dt-bindings: interconnect: split SC8180x to own schema Vinod Koul
@ 2023-03-26 14:10 ` Rob Herring
2023-03-28 8:29 ` Vinod Koul
0 siblings, 1 reply; 8+ messages in thread
From: Rob Herring @ 2023-03-26 14:10 UTC (permalink / raw)
To: Vinod Koul
Cc: devicetree, Konrad Dybcio, Georgi Djakov, linux-pm, Rob Herring,
Bjorn Andersson, linux-arm-msm, Krzysztof Kozlowski, linux-kernel
On Sat, 25 Mar 2023 17:54:37 +0530, Vinod Koul wrote:
> SC8180x comes with interconnects having and missing IO address space, and
> variable number of clocks, so split it from common file for easier
> maintenance and to fix warnings like:
>
> sc8180x-lenovo-flex-5g.dtb: interconnect-0: 'reg' is a required property
>
> Signed-off-by: Vinod Koul <vkoul@kernel.org>
> ---
> .../bindings/interconnect/qcom,rpmh.yaml | 11 ---
> .../interconnect/qcom,sc8180x-rpmh.yaml | 76 +++++++++++++++++++
> 2 files changed, 76 insertions(+), 11 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
>
My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
on your patch (DT_CHECKER_FLAGS is new in v5.13):
yamllint warnings/errors:
dtschema/dtc warnings/errors:
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml: properties:compatible:enum: ['qcom,sc8180x-aggre1-noc', 'qcom,sc8180x-aggre1-noc', 'qcom,sc8180x-aggre2-noc', 'qcom,sc8180x-camnoc-virt', 'qcom,sc8180x-compute-noc', 'qcom,sc8180x-config-noc', 'qcom,sc8180x-dc-noc', 'qcom,sc8180x-gem-noc', 'qcom,sc8180x-mc-virt', 'qcom,sc8180x-mmss-noc', 'qcom,sc8180x-qup-virt', 'qcom,sc8180x-system-noc'] has non-unique elements
from schema $id: http://devicetree.org/meta-schemas/keywords.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.example.dtb: interconnect@16e0000: reg: [[0, 23986176], [0, 53376]] is too long
From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.example.dtb: interconnect@16e0000: Unevaluated properties are not allowed ('reg' was unexpected)
From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230325122444.249507-6-vkoul@kernel.org
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH v2 05/12] dt-bindings: interconnect: split SC8180x to own schema
2023-03-26 14:10 ` Rob Herring
@ 2023-03-28 8:29 ` Vinod Koul
0 siblings, 0 replies; 8+ messages in thread
From: Vinod Koul @ 2023-03-28 8:29 UTC (permalink / raw)
To: Rob Herring
Cc: devicetree, Konrad Dybcio, Georgi Djakov, linux-pm, Rob Herring,
Bjorn Andersson, linux-arm-msm, Krzysztof Kozlowski, linux-kernel
On 26-03-23, 09:10, Rob Herring wrote:
>
> On Sat, 25 Mar 2023 17:54:37 +0530, Vinod Koul wrote:
> > SC8180x comes with interconnects having and missing IO address space, and
> > variable number of clocks, so split it from common file for easier
> > maintenance and to fix warnings like:
> >
> > sc8180x-lenovo-flex-5g.dtb: interconnect-0: 'reg' is a required property
> >
> > Signed-off-by: Vinod Koul <vkoul@kernel.org>
> > ---
> > .../bindings/interconnect/qcom,rpmh.yaml | 11 ---
> > .../interconnect/qcom,sc8180x-rpmh.yaml | 76 +++++++++++++++++++
> > 2 files changed, 76 insertions(+), 11 deletions(-)
> > create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sc8180x-rpmh.yaml
> >
>
> My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
> on your patch (DT_CHECKER_FLAGS is new in v5.13):
Thanks I have fixed this error, will post v3 soon
--
~Vinod
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 00/12] Introduce the SC8180x devices
2023-03-25 12:24 [PATCH v2 00/12] Introduce the SC8180x devices Vinod Koul
2023-03-25 12:24 ` [PATCH v2 05/12] dt-bindings: interconnect: split SC8180x to own schema Vinod Koul
@ 2023-03-27 7:46 ` Krzysztof Kozlowski
2023-03-27 14:12 ` Bjorn Andersson
2023-04-03 15:07 ` (subset) " Mark Brown
2023-04-05 4:09 ` Bjorn Andersson
3 siblings, 1 reply; 8+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-27 7:46 UTC (permalink / raw)
To: Vinod Koul, Bjorn Andersson, Lorenzo Pieralisi, Bjorn Helgaas,
Greg Kroah-Hartman, Georgi Djakov, Mark Brown
Cc: linux-arm-msm, Alim Akhtar, Avri Altman, Bart Van Assche,
Thomas Gleixner, Marc Zyngier, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, devicetree, linux-kernel,
Krzysztof Wilczyński, linux-pci, Kishon Vijay Abraham I,
linux-phy, Wesley Cheng, linux-usb, linux-pm, linux-scsi,
Liam Girdwood
On 25/03/2023 13:24, Vinod Koul wrote:
> This introduces Qualcomm SC8180x SoC which features in Lenovo Flex 5G
> laptop. This also adds support for Primus platform as well as Lenovo Flex 5G
> laptop.
>
> I would be great if submaintainers can ack the binding patch so that
> everything can go thru qcom tree
I think Bjorn recently was rejecting taking bindings patches, so what
changed?
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 00/12] Introduce the SC8180x devices
2023-03-27 7:46 ` [PATCH v2 00/12] Introduce the SC8180x devices Krzysztof Kozlowski
@ 2023-03-27 14:12 ` Bjorn Andersson
0 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2023-03-27 14:12 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Vinod Koul, Lorenzo Pieralisi, Bjorn Helgaas, Greg Kroah-Hartman,
Georgi Djakov, Mark Brown, linux-arm-msm, Alim Akhtar,
Avri Altman, Bart Van Assche, Thomas Gleixner, Marc Zyngier,
Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, devicetree,
linux-kernel, Krzysztof Wilczyński, linux-pci,
Kishon Vijay Abraham I, linux-phy, Wesley Cheng, linux-usb,
linux-pm, linux-scsi, Liam Girdwood
On Mon, Mar 27, 2023 at 09:46:31AM +0200, Krzysztof Kozlowski wrote:
> On 25/03/2023 13:24, Vinod Koul wrote:
> > This introduces Qualcomm SC8180x SoC which features in Lenovo Flex 5G
> > laptop. This also adds support for Primus platform as well as Lenovo Flex 5G
> > laptop.
> >
> > I would be great if submaintainers can ack the binding patch so that
> > everything can go thru qcom tree
>
> I think Bjorn recently was rejecting taking bindings patches, so what
> changed?
>
Nothing changed. In the interest of reducing the risk for merge
conflicts I still think it's best if bindings goes via respective
maintainer trees; so patch 1 is for me...
Regards,
Bjorn
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: (subset) [PATCH v2 00/12] Introduce the SC8180x devices
2023-03-25 12:24 [PATCH v2 00/12] Introduce the SC8180x devices Vinod Koul
2023-03-25 12:24 ` [PATCH v2 05/12] dt-bindings: interconnect: split SC8180x to own schema Vinod Koul
2023-03-27 7:46 ` [PATCH v2 00/12] Introduce the SC8180x devices Krzysztof Kozlowski
@ 2023-04-03 15:07 ` Mark Brown
2023-04-05 4:09 ` Bjorn Andersson
3 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2023-04-03 15:07 UTC (permalink / raw)
To: Bjorn Andersson, Lorenzo Pieralisi, Bjorn Helgaas,
Greg Kroah-Hartman, Georgi Djakov, Vinod Koul
Cc: linux-arm-msm, Alim Akhtar, Avri Altman, Bart Van Assche,
Thomas Gleixner, Marc Zyngier, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, devicetree, linux-kernel,
Krzysztof Wilczyński, linux-pci, Kishon Vijay Abraham I,
linux-phy, Wesley Cheng, linux-usb, linux-pm, linux-scsi,
Liam Girdwood
On Sat, 25 Mar 2023 17:54:32 +0530, Vinod Koul wrote:
> This introduces Qualcomm SC8180x SoC which features in Lenovo Flex 5G
> laptop. This also adds support for Primus platform as well as Lenovo Flex 5G
> laptop.
>
> I would be great if submaintainers can ack the binding patch so that
> everything can go thru qcom tree
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
Thanks!
[08/12] regulator: dt-bindings: qcom,rpmh: Add compatible for PMC8180
commit: fc4fef625decc80cf3a72e884a4e37288bfa0f9b
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: (subset) [PATCH v2 00/12] Introduce the SC8180x devices
2023-03-25 12:24 [PATCH v2 00/12] Introduce the SC8180x devices Vinod Koul
` (2 preceding siblings ...)
2023-04-03 15:07 ` (subset) " Mark Brown
@ 2023-04-05 4:09 ` Bjorn Andersson
3 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2023-04-05 4:09 UTC (permalink / raw)
To: Lorenzo Pieralisi, Vinod Koul, Greg Kroah-Hartman, Georgi Djakov,
Mark Brown, Bjorn Helgaas
Cc: linux-arm-msm, Krzysztof Kozlowski, Marc Zyngier, Liam Girdwood,
linux-kernel, linux-pci, Konrad Dybcio, linux-pm, Rob Herring,
Kishon Vijay Abraham I, Avri Altman, devicetree, linux-usb,
Krzysztof Wilczyński, linux-phy, Thomas Gleixner, linux-scsi,
Bart Van Assche, Alim Akhtar, Wesley Cheng
On Sat, 25 Mar 2023 17:54:32 +0530, Vinod Koul wrote:
> This introduces Qualcomm SC8180x SoC which features in Lenovo Flex 5G
> laptop. This also adds support for Primus platform as well as Lenovo Flex 5G
> laptop.
>
> I would be great if submaintainers can ack the binding patch so that
> everything can go thru qcom tree
>
> [...]
Applied, thanks!
[01/12] dt-bindings: firmware: document Qualcomm SC8180X SCM
commit: c78ad8597ed961e822bf86ce7f1916dbfba255ef
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread