Message ID | 20191106065017.22144-2-rnayak@codeaurora.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Add device tree support for sc7180 | expand |
On Wed, 6 Nov 2019 12:20:04 +0530, Rajendra Nayak wrote: > Add a SoC string 'sc7180' for the qualcomm SC7180 SoC. > Also add a new board type 'idp' > > Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> > Reviewed-by: Vinod Koul <vkoul@kernel.org> > --- > v4: Added schema for sc7180 IDP board > > Documentation/devicetree/bindings/arm/qcom.yaml | 6 ++++++ > 1 file changed, 6 insertions(+) > Reviewed-by: Rob Herring <robh@kernel.org>
Quoting Rajendra Nayak (2019-11-05 22:50:04) > Add a SoC string 'sc7180' for the qualcomm SC7180 SoC. > Also add a new board type 'idp' > > Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> > Reviewed-by: Vinod Koul <vkoul@kernel.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> I see that it isn't sorted but o well!
On 11/7/2019 11:13 PM, Stephen Boyd wrote: > Quoting Rajendra Nayak (2019-11-05 22:50:04) >> Add a SoC string 'sc7180' for the qualcomm SC7180 SoC. >> Also add a new board type 'idp' >> >> Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> >> Reviewed-by: Vinod Koul <vkoul@kernel.org> >> --- > > Reviewed-by: Stephen Boyd <swboyd@chromium.org> > > I see that it isn't sorted but o well! Well, it wasn't sorted to begin with, so I left it unsorted ¯\_(ツ)_/¯
diff --git a/Documentation/devicetree/bindings/arm/qcom.yaml b/Documentation/devicetree/bindings/arm/qcom.yaml index e39d8f02e33c..11c3c02d8a80 100644 --- a/Documentation/devicetree/bindings/arm/qcom.yaml +++ b/Documentation/devicetree/bindings/arm/qcom.yaml @@ -36,6 +36,7 @@ description: | mdm9615 ipq8074 sdm845 + sc7180 The 'board' element must be one of the following strings: @@ -46,6 +47,7 @@ description: | sbc hk01 qrd + idp The 'soc_version' and 'board_version' elements take the form of v<Major>.<Minor> where the minor number may be omitted when it's zero, i.e. v1.0 is the same @@ -144,4 +146,8 @@ properties: - qcom,ipq8074-hk01 - const: qcom,ipq8074 + - items: + - enum: + - qcom,sc7180-idp + - const: qcom,sc7180 ...