Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1367997
| From | Wei Ni <wni@nvidia.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 9/9] arm: tegra: set hot trips for Tegra124 |
| Date | 2016-03-31 10:50 +0200 |
| Message-ID | <riGsG-2h8-23@gated-at.bofh.it> (permalink) |
| References | <riGsF-2h8-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Enable throttle function for SOC_THERM.
Set "hot" trips for cpu and gpu thermal zones, which
can trigger the SOC_THERM hardware throttle.
Signed-off-by: Wei Ni <wni@nvidia.com>
---
arch/arm/boot/dts/tegra124.dtsi | 39 ++++++++++++++++++++++++++++++---------
1 file changed, 30 insertions(+), 9 deletions(-)
diff --git a/arch/arm/boot/dts/tegra124.dtsi b/arch/arm/boot/dts/tegra124.dtsi
index 076a384848ba..06e51bd7c548 100644
--- a/arch/arm/boot/dts/tegra124.dtsi
+++ b/arch/arm/boot/dts/tegra124.dtsi
@@ -693,7 +693,9 @@
soctherm: thermal-sensor@0,700e2000 {
compatible = "nvidia,tegra124-soctherm";
- reg = <0x0 0x700e2000 0x0 0x1000>;
+ reg = <0x0 0x700e2000 0x0 0x600 /* SOC_THERM reg_base */
+ 0x0 0x60006000 0x0 0x400>; /* CAR reg_base */
+ reg-names = "soctherm-reg", "car-reg";
interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&tegra_car TEGRA124_CLK_TSENSOR>,
<&tegra_car TEGRA124_CLK_SOC_THERM>;
@@ -701,6 +703,15 @@
resets = <&tegra_car 78>;
reset-names = "soctherm";
#thermal-sensor-cells = <1>;
+
+ throttle-cfgs {
+ throttle_heavy: heavy {
+ priority = <100>;
+ cpu-throt-depth = <85>;
+
+ #cooling-cells = <1>;
+ };
+ };
};
dfll: clock@0,70110000 {
@@ -1003,13 +1014,18 @@
hysteresis = <0>;
type = "critical";
};
+ cpu_throttle_trip: throttle-trip {
+ temperature = <100000>;
+ hysteresis = <1000>;
+ type = "hot";
+ };
};
cooling-maps {
- /*
- * There are currently no cooling maps,
- * because there are no cooling devices.
- */
+ map0 {
+ trip = <&cpu_throttle_trip>;
+ cooling-device = <&throttle_heavy 1 1>;
+ };
};
};
@@ -1049,13 +1065,18 @@
hysteresis = <0>;
type = "critical";
};
+ gpu_throttle_trip: throttle-trip {
+ temperature = <99000>;
+ hysteresis = <1000>;
+ type = "hot";
+ };
};
cooling-maps {
- /*
- * There are currently no cooling maps,
- * because there are no cooling devices.
- */
+ map0 {
+ trip = <&cpu_throttle_trip>;
+ cooling-device = <&throttle_heavy 1 1>;
+ };
};
};
--
1.9.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/9] Add HW throttle for Tegra soctherm Wei Ni <wni@nvidia.com> - 2016-03-31 10:50 +0200 [PATCH 6/9] thermal: tegra: add hw-throttle for Tegra132 Wei Ni <wni@nvidia.com> - 2016-03-31 10:50 +0200 [PATCH 8/9] arm64: tegra: set hot trips for Tegra132 Wei Ni <wni@nvidia.com> - 2016-03-31 10:50 +0200 [PATCH 9/9] arm: tegra: set hot trips for Tegra124 Wei Ni <wni@nvidia.com> - 2016-03-31 10:50 +0200 [PATCH 5/9] thermal: tegra: add hw-throttle function Wei Ni <wni@nvidia.com> - 2016-03-31 10:50 +0200 [PATCH 4/9] of: Add bindings of hw throttle for soctherm Wei Ni <wni@nvidia.com> - 2016-03-31 10:50 +0200 [PATCH 2/9] arm64: tegra: use tegra132-soctherm for Tegra132 Wei Ni <wni@nvidia.com> - 2016-03-31 11:00 +0200 Re: [PATCH 0/9] Add HW throttle for Tegra soctherm Wei Ni <wni@nvidia.com> - 2016-03-31 11:00 +0200 [PATCH 1/9] thermal: tegra: add Tegra132 specific SOC_THERM driver Wei Ni <wni@nvidia.com> - 2016-03-31 11:00 +0200
csiph-web