Message ID | 1619778592-8112-3-git-send-email-rkambl@codeaurora.org (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Daniel Lezcano |
Headers | show |
Series | Add DT bindings and device tree nodes for TSENS in SC7280 | expand |
On Fri, Apr 30, 2021 at 03:59:51PM +0530, Rajeshwari wrote: > Adding device node for TSENS controller and critical interrupt support in SC7280. > > Signed-off-by: Rajeshwari <rkambl@codeaurora.org> Please add tags from previous versions, like my 'Reviewed-by' from v2, unless a patch underwent major changes. Please also add a change log for v > 1, even if it just says 'no changes' for some patches in the series.
On Mon, May 03, 2021 at 10:33:10AM -0700, Matthias Kaehlcke wrote: > On Fri, Apr 30, 2021 at 03:59:51PM +0530, Rajeshwari wrote: > > Adding device node for TSENS controller and critical interrupt support in SC7280. > > > > Signed-off-by: Rajeshwari <rkambl@codeaurora.org> > > Please add tags from previous versions, like my 'Reviewed-by' from v2, > unless a patch underwent major changes. > > Please also add a change log for v > 1, even if it just says 'no changes' > for some patches in the series. Forgot to re-add this: Reviewed-by: Matthias Kaehlcke <mka@chromium.org>
diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi b/arch/arm64/boot/dts/qcom/sc7280.dtsi index 2cc4785..275113c 100644 --- a/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -825,6 +825,28 @@ interrupt-controller; }; + tsens0: thermal-sensor@c263000 { + compatible = "qcom,sc7280-tsens","qcom,tsens-v2"; + reg = <0 0x0c263000 0 0x1ff>, /* TM */ + <0 0x0c222000 0 0x1ff>; /* SROT */ + #qcom,sensors = <15>; + interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 508 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "uplow","critical"; + #thermal-sensor-cells = <1>; + }; + + tsens1: thermal-sensor@c265000 { + compatible = "qcom,sc7280-tsens","qcom,tsens-v2"; + reg = <0 0x0c265000 0 0x1ff>, /* TM */ + <0 0x0c223000 0 0x1ff>; /* SROT */ + #qcom,sensors = <12>; + interrupts = <GIC_SPI 507 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 509 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "uplow","critical"; + #thermal-sensor-cells = <1>; + }; + aoss_qmp: power-controller@c300000 { compatible = "qcom,sc7280-aoss-qmp"; reg = <0 0x0c300000 0 0x100000>;
Adding device node for TSENS controller and critical interrupt support in SC7280. Signed-off-by: Rajeshwari <rkambl@codeaurora.org> --- arch/arm64/boot/dts/qcom/sc7280.dtsi | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+)