From: Lukasz Majewski <l.majewski@samsung.com>
To: Eduardo Valentin <edubezval@gmail.com>
Cc: Zhang Rui <rui.zhang@intel.com>,
Kukjin Kim <kgene.kim@samsung.com>, Kukjin Kim <kgene@kernel.org>,
Linux PM list <linux-pm@vger.kernel.org>,
"linux-samsung-soc@vger.kernel.org"
<linux-samsung-soc@vger.kernel.org>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Lukasz Majewski <l.majewski@majess.pl>,
Amit Daniel Kachhap <amit.daniel@samsung.com>,
Abhilash Kesavan <kesavan.abhilash@gmail.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Chanwoo Choi <cw00.choi@samsung.com>
Subject: Re: [PATCH v3 13/16] thermal: exynos: dts: Provide device tree bindings identical to the one in exynos_tmu_data.c
Date: Thu, 15 Jan 2015 17:03:36 +0100 [thread overview]
Message-ID: <20150115170336.3bfc1fab@amdc2363> (raw)
In-Reply-To: <20150114190550.GB4105@developer>
Hi Eduardo,
> On Wed, Jan 14, 2015 at 02:41:11PM +0100, Lukasz Majewski wrote:
> > Presented device tree bindings provide data already hardcoded in the
> > exynos_tmu_data.c file.
> > After this commit, it should be possible to reuse common thermal
> > core framework in Exynos SoCs.
> >
> > Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
> > ---
> > Changes for v2:
> > - Add proper TMU entries for exynos3250.dtsi
> > Changes for v3:
> > - Remove "type" DT properties, which will be extracted from
> > compatible
> > - "samsung,tmu_" prefix for TMU specific properties has been added
> >
> > ---
> > arch/arm/boot/dts/exynos3250.dtsi | 2 ++
> > arch/arm/boot/dts/exynos4.dtsi | 4 ++++
> > arch/arm/boot/dts/exynos4210.dtsi | 21 ++++++++++++++++++++-
> > arch/arm/boot/dts/exynos4x12.dtsi | 1 +
> > arch/arm/boot/dts/exynos5250.dtsi | 5 +++--
> > arch/arm/boot/dts/exynos5420.dtsi | 28 ++++++++++++++++++++++++++++
> > arch/arm/boot/dts/exynos5440.dtsi | 18 ++++++++++++++++++
> > 7 files changed, 76 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/arm/boot/dts/exynos3250.dtsi
> > b/arch/arm/boot/dts/exynos3250.dtsi index 2246549..8cc078c 100644
> > --- a/arch/arm/boot/dts/exynos3250.dtsi
> > +++ b/arch/arm/boot/dts/exynos3250.dtsi
> > @@ -18,6 +18,7 @@
> > */
> >
> > #include "skeleton.dtsi"
> > +#include "exynos4-cpu-thermal.dtsi"
> > #include <dt-bindings/clock/exynos3250.h>
> >
> > / {
> > @@ -188,6 +189,7 @@
> > interrupts = <0 216 0>;
> > clocks = <&cmu CLK_TMU_APBIF>;
> > clock-names = "tmu_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > status = "disabled";
> > };
> >
> > diff --git a/arch/arm/boot/dts/exynos4.dtsi
> > b/arch/arm/boot/dts/exynos4.dtsi index b8168f1..f18d746 100644
> > --- a/arch/arm/boot/dts/exynos4.dtsi
> > +++ b/arch/arm/boot/dts/exynos4.dtsi
> > @@ -645,4 +645,8 @@
> > samsung,sysreg = <&sys_reg>;
> > status = "disabled";
> > };
> > +
> > + tmu: tmu@100C0000 {
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > + };
> > };
> > diff --git a/arch/arm/boot/dts/exynos4210.dtsi
> > b/arch/arm/boot/dts/exynos4210.dtsi index 2e66df8..7f0e012 100644
> > --- a/arch/arm/boot/dts/exynos4210.dtsi
> > +++ b/arch/arm/boot/dts/exynos4210.dtsi
> > @@ -21,6 +21,7 @@
> >
> > #include "exynos4.dtsi"
> > #include "exynos4210-pinctrl.dtsi"
> > +#include "exynos4-cpu-thermal.dtsi"
> >
> > / {
> > compatible = "samsung,exynos4210", "samsung,exynos4";
> > @@ -146,16 +147,34 @@
> > reg = <0x03860000 0x1000>;
> > };
> >
> > - tmu@100C0000 {
> > + tmu: tmu@100C0000 {
> > compatible = "samsung,exynos4210-tmu";
> > interrupt-parent = <&combiner>;
> > reg = <0x100C0000 0x100>;
> > interrupts = <2 4>;
> > clocks = <&clock CLK_TMU_APBIF>;
> > clock-names = "tmu_apbif";
> > + samsung,tmu_gain = <15>;
> > + samsung,tmu_reference_voltage = <7>;
> > status = "disabled";
> > };
> >
> > + thermal-zones {
> > + cpu_thermal: cpu-thermal {
> > + trips {
> > + cpu_alert0: cpu-alert-0 {
> > + temperature = <85000>; /*
> > millicelsius */
> > + };
> > + cpu_alert1: cpu-alert-1 {
> > + temperature = <100000>; /*
> > millicelsius */
> > + };
> > + cpu_alert2: cpu-alert-2 {
> > + temperature = <110000>; /*
> > millicelsius */
> > + };
> > + };
> > + };
> > + };
> > +
> > g2d@12800000 {
> > compatible = "samsung,s5pv210-g2d";
> > reg = <0x12800000 0x1000>;
> > diff --git a/arch/arm/boot/dts/exynos4x12.dtsi
> > b/arch/arm/boot/dts/exynos4x12.dtsi index 93b7040..3ee2031 100644
> > --- a/arch/arm/boot/dts/exynos4x12.dtsi
> > +++ b/arch/arm/boot/dts/exynos4x12.dtsi
> > @@ -19,6 +19,7 @@
> >
> > #include "exynos4.dtsi"
> > #include "exynos4x12-pinctrl.dtsi"
> > +#include "exynos4-cpu-thermal.dtsi"
> >
> > / {
> > aliases {
> > diff --git a/arch/arm/boot/dts/exynos5250.dtsi
> > b/arch/arm/boot/dts/exynos5250.dtsi index dd5c3a0..07fd73a 100644
> > --- a/arch/arm/boot/dts/exynos5250.dtsi
> > +++ b/arch/arm/boot/dts/exynos5250.dtsi
> > @@ -20,7 +20,7 @@
> > #include <dt-bindings/clock/exynos5250.h>
> > #include "exynos5.dtsi"
> > #include "exynos5250-pinctrl.dtsi"
> > -
> > +#include "exynos4-cpu-thermal.dtsi"
> > #include <dt-bindings/clock/exynos-audss-clk.h>
> >
> > / {
> > @@ -236,12 +236,13 @@
> > status = "disabled";
> > };
> >
> > - tmu@10060000 {
> > + tmu: tmu@10060000 {
> > compatible = "samsung,exynos5250-tmu";
> > reg = <0x10060000 0x100>;
> > interrupts = <0 65 0>;
> > clocks = <&clock CLK_TMU>;
> > clock-names = "tmu_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > };
> >
> > thermal-zones {
> > diff --git a/arch/arm/boot/dts/exynos5420.dtsi
> > b/arch/arm/boot/dts/exynos5420.dtsi index 517e50f..f5771e5 100644
> > --- a/arch/arm/boot/dts/exynos5420.dtsi
> > +++ b/arch/arm/boot/dts/exynos5420.dtsi
> > @@ -761,6 +761,7 @@
> > interrupts = <0 65 0>;
> > clocks = <&clock CLK_TMU>;
> > clock-names = "tmu_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > };
> >
> > tmu_cpu1: tmu@10064000 {
> > @@ -769,6 +770,7 @@
> > interrupts = <0 183 0>;
> > clocks = <&clock CLK_TMU>;
> > clock-names = "tmu_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > };
> >
> > tmu_cpu2: tmu@10068000 {
> > @@ -777,6 +779,7 @@
> > interrupts = <0 184 0>;
> > clocks = <&clock CLK_TMU>, <&clock CLK_TMU>;
> > clock-names = "tmu_apbif", "tmu_triminfo_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > };
> >
> > tmu_cpu3: tmu@1006c000 {
> > @@ -785,6 +788,7 @@
> > interrupts = <0 185 0>;
> > clocks = <&clock CLK_TMU>, <&clock CLK_TMU_GPU>;
> > clock-names = "tmu_apbif", "tmu_triminfo_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > };
> >
> > tmu_gpu: tmu@100a0000 {
> > @@ -793,6 +797,30 @@
> > interrupts = <0 215 0>;
> > clocks = <&clock CLK_TMU_GPU>, <&clock CLK_TMU>;
> > clock-names = "tmu_apbif", "tmu_triminfo_apbif";
> > + #include "exynos4412-tmu-sensor-conf.dtsi"
> > + };
> > +
> > + thermal-zones {
> > + cpu0_thermal: cpu0-thermal {
> > + thermal-sensors = <&tmu_cpu0>;
> > + #include "exynos5420-trip-points.dtsi"
> > + };
> > + cpu1_thermal: cpu1-thermal {
> > + thermal-sensors = <&tmu_cpu1>;
> > + #include "exynos5420-trip-points.dtsi"
> > + };
> > + cpu2_thermal: cpu2-thermal {
> > + thermal-sensors = <&tmu_cpu2>;
> > + #include "exynos5420-trip-points.dtsi"
> > + };
> > + cpu3_thermal: cpu3-thermal {
> > + thermal-sensors = <&tmu_cpu3>;
> > + #include "exynos5420-trip-points.dtsi"
> > + };
> > + gpu_thermal: gpu-thermal {
> > + thermal-sensors = <&tmu_gpu>;
> > + #include "exynos5420-trip-points.dtsi"
> > + };
> > };
> >
> > watchdog: watchdog@101D0000 {
> > diff --git a/arch/arm/boot/dts/exynos5440.dtsi
> > b/arch/arm/boot/dts/exynos5440.dtsi index 8f3373c..59d9416 100644
> > --- a/arch/arm/boot/dts/exynos5440.dtsi
> > +++ b/arch/arm/boot/dts/exynos5440.dtsi
> > @@ -219,6 +219,7 @@
> > interrupts = <0 58 0>;
> > clocks = <&clock CLK_B_125>;
> > clock-names = "tmu_apbif";
> > + #include "exynos5440-tmu-sensor-conf.dtsi"
> > };
> >
> > tmuctrl_1: tmuctrl@16011C {
> > @@ -227,6 +228,7 @@
> > interrupts = <0 58 0>;
> > clocks = <&clock CLK_B_125>;
> > clock-names = "tmu_apbif";
> > + #include "exynos5440-tmu-sensor-conf.dtsi"
> > };
> >
> > tmuctrl_2: tmuctrl@160120 {
> > @@ -235,6 +237,22 @@
> > interrupts = <0 58 0>;
> > clocks = <&clock CLK_B_125>;
> > clock-names = "tmu_apbif";
> > + #include "exynos5440-tmu-sensor-conf.dtsi"
> > + };
> > +
> > + thermal-zones {
> > + cpu0_thermal: cpu0-thermal {
> > + thermal-sensors = <&tmuctrl_0>;
> > + #include "exynos5440-trip-points.dtsi"
> > + };
> > + cpu1_thermal: cpu1-thermal {
> > + thermal-sensors = <&tmuctrl_1>;
> > + #include "exynos5440-trip-points.dtsi"
> > + };
> > + cpu2_thermal: cpu2-thermal {
> > + thermal-sensors = <&tmuctrl_2>;
> > + #include "exynos5440-trip-points.dtsi"
> > + };
>
> For all thermal zones added in this patch, can you please make sure
> they all've got the mandatory fields?
This is a better place to put all mandatory fields - not the patch
06/16 - for two reasons:
1. tmu alias (as the sensor) is defined here
2. Here the "real" support (not only for cpu cooling) for thermal-zones
is added.
>
> > };
> >
> > sata@210000 {
> > --
> > 2.0.0.rc2
> >
--
Best regards,
Lukasz Majewski
Samsung R&D Institute Poland (SRPOL) | Linux Platform Group
next prev parent reply other threads:[~2015-01-15 16:03 UTC|newest]
Thread overview: 244+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-09 16:38 [PATCH 00/21] thermal: exynos: Thermal code rework to use device tree Lukasz Majewski
2014-10-09 16:38 ` [PATCH 01/21] thermal: of: Extend of-thermal.c to provide number of trip points Lukasz Majewski
2014-11-07 1:34 ` Eduardo Valentin
2014-11-07 9:14 ` Lukasz Majewski
2014-10-09 16:38 ` [PATCH 02/21] thermal: of: Extend of-thermal.c to provide check if trip point is enabled Lukasz Majewski
2014-11-07 1:37 ` Eduardo Valentin
2014-11-07 9:15 ` Lukasz Majewski
2014-10-09 16:38 ` [PATCH 03/21] thermal: of: Extend of-thermal.c to provide number of non critical trip points Lukasz Majewski
2014-11-07 1:41 ` Eduardo Valentin
2014-11-07 10:05 ` Lukasz Majewski
2014-11-07 16:06 ` Eduardo Valentin
2014-11-07 16:43 ` Lukasz Majewski
2014-11-12 9:42 ` Lukasz Majewski
2014-11-18 15:20 ` Eduardo Valentin
2014-11-18 20:25 ` Lukasz Majewski
2014-11-07 23:04 ` Dmitry Torokhov
2014-10-09 16:38 ` [PATCH 04/21] thermal: of: Extend current of-thermal.c code to allow setting emulated temp Lukasz Majewski
2014-11-07 1:44 ` Eduardo Valentin
2014-11-07 11:20 ` Lukasz Majewski
2014-11-18 15:23 ` Eduardo Valentin
2014-11-18 20:28 ` Lukasz Majewski
2014-10-09 16:38 ` [PATCH 05/21] thermal: exynos: cosmetic: Correct comment format Lukasz Majewski
2014-10-09 16:38 ` [PATCH 06/21] thermal: exynos: Provide thermal_exynos.h file to be included in device tree files Lukasz Majewski
2014-10-09 16:38 ` [PATCH 07/21] thermal: dts: trats: Enable TMU on the Exynos4210 trats device Lukasz Majewski
2014-10-09 16:38 ` [PATCH 08/21] thermal: dts: exynos: Adding LD010 regulator node necessary for TMU on Odroid U3 board Lukasz Majewski
2014-10-09 16:38 ` [PATCH 09/21] thermal: dts: Provide bindings and enable TMU at Exynos4x12 devices Lukasz Majewski
2014-10-09 16:38 ` [PATCH 10/21] thermal: cpu_cooling: dts: Define device tree bindings for Exynos cpu cooling functionality Lukasz Majewski
2014-10-09 16:38 ` [PATCH 11/21] thermal: cpu_cooling: Modify exynos thermal code to use device tree for cpu cooling configuration Lukasz Majewski
2014-10-09 16:38 ` [PATCH 12/21] thermal: exynos: dts: Add default definition for the TMU sensor Lukasz Majewski
2014-10-09 16:38 ` [PATCH 13/21] thermal: dts: Default trip points definition for Exynos5420 SoCs Lukasz Majewski
2014-10-09 16:38 ` [PATCH 14/21] thermal: exynos: dts: Define default thermal-zones for Exynos4 Lukasz Majewski
2014-10-09 16:38 ` [PATCH 15/21] thermal: dts: exynos: Trip points and sensor configuration data for Exynos5440 Lukasz Majewski
2014-10-09 16:38 ` [PATCH 16/21] thermal: exynos: dts: Provide device tree bindings identical to one in exynos_tmu_data.c Lukasz Majewski
2014-10-09 16:38 ` [PATCH 17/21] thermal: samsung: core: Exynos TMU rework to use device tree for configuration Lukasz Majewski
2014-10-09 16:38 ` [PATCH 18/21] thermal: exynos: Remove exynos_thermal_common.[c|h] files Lukasz Majewski
2014-10-09 16:38 ` [PATCH 19/21] thermal: exynos: Remove exynos_tmu_data.c file Lukasz Majewski
2014-10-09 16:38 ` [PATCH 20/21] thermal: exynos: Make Exynos5250 TMU compatible with Exynos4412 Lukasz Majewski
2014-10-09 16:38 ` [PATCH 21/21] thermal: exynos: Make Exynos3250 " Lukasz Majewski
2014-10-09 23:34 ` Chanwoo Choi
2014-10-10 8:51 ` Lukasz Majewski
2014-10-23 8:50 ` [PATCH 00/21] thermal: exynos: Thermal code rework to use device tree Lukasz Majewski
2014-11-20 16:21 ` [PATCH v2 0/4] thermal: of: of-thermal.c API extensions Lukasz Majewski
2014-11-20 16:21 ` [PATCH v2 1/4] thermal: of: Extend of-thermal.c to provide number of trip points Lukasz Majewski
2014-11-25 6:04 ` Eduardo Valentin
2014-11-26 8:28 ` Lukasz Majewski
2014-11-20 16:21 ` [PATCH v2 2/4] thermal: of: Extend of-thermal.c to provide check if trip point is enabled Lukasz Majewski
2014-11-25 8:25 ` Eduardo Valentin
2014-11-26 8:31 ` Lukasz Majewski
2014-11-20 16:21 ` [PATCH v2 3/4] thermal: of: Extend of-thermal to export table of trip points Lukasz Majewski
2014-11-25 20:36 ` Eduardo Valentin
2014-11-26 8:35 ` Lukasz Majewski
2014-11-26 15:18 ` Eduardo Valentin
2014-11-26 20:43 ` navneet kumar
2014-11-26 21:12 ` Guenter Roeck
2014-11-26 23:12 ` navneet kumar
2014-11-26 23:09 ` Eduardo Valentin
2014-11-27 9:42 ` Lukasz Majewski
2014-11-25 20:38 ` Eduardo Valentin
2014-11-26 8:39 ` Lukasz Majewski
2014-11-20 16:21 ` [PATCH v2 4/4] thermal: of: Extend current of-thermal.c code to allow setting emulated temp Lukasz Majewski
2014-11-25 20:44 ` Eduardo Valentin
2014-11-26 8:47 ` Lukasz Majewski
2014-12-08 17:04 ` [PATCH v3 0/5] thermal: of: of-thermal.c API extensions Lukasz Majewski
2014-12-08 17:04 ` [PATCH v3 1/5] thermal: of: Extend of-thermal.c to provide number of trip points Lukasz Majewski
2014-12-08 19:52 ` Eduardo Valentin
2014-12-08 23:02 ` Lukasz Majewski
2014-12-08 17:04 ` [PATCH v3 2/5] thermal: of: Extend of-thermal.c to provide check if trip point is valid Lukasz Majewski
2014-12-08 17:04 ` [PATCH v3 3/5] thermal: of: Rename struct __thermal_trip to struct thermal_trip Lukasz Majewski
2014-12-08 17:04 ` [PATCH v3 4/5] thermal: of: Extend of-thermal to export table of trip points Lukasz Majewski
2014-12-08 17:04 ` [PATCH v3 5/5] thermal: of: Extend current of-thermal.c code to allow setting emulated temp Lukasz Majewski
2014-12-09 1:21 ` [PATCH v3 0/5] thermal: of: of-thermal.c API extensions Eduardo Valentin
2014-12-10 12:09 ` [PATCH v2 00/17] thermal: exynos: Thermal code rework to use device tree Lukasz Majewski
2014-12-10 10:27 ` Eduardo Valentin
2014-12-10 14:19 ` Lukasz Majewski
2014-12-22 15:50 ` Abhilash Kesavan
2014-12-22 16:21 ` Lukasz Majewski
2014-12-23 15:27 ` Abhilash Kesavan
2014-12-10 12:09 ` [PATCH v2 01/17] thermal: exynos: cosmetic: Correct comment format Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 02/17] thermal: exynos: Provide thermal_exynos.h file to be included in device tree files Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 03/17] thermal: dts: trats: Enable TMU on the Exynos4210 trats device Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 04/17] thermal: dts: exynos: Add LD010 regulator node necessary for TMU on Odroid Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 05/17] thermal: dts: Enable TMU at Exynos4412 based Odroid U3 device Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 06/17] thermal: cpu_cooling: dts: Define device tree bindings for Exynos cpu cooling functionality Lukasz Majewski
2015-01-02 18:15 ` Eduardo Valentin
2015-01-12 14:09 ` Lukasz Majewski
2015-01-12 14:24 ` Eduardo Valentin
2015-01-13 8:22 ` Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 07/17] thermal: cpu_cooling: Modify exynos thermal code to use device tree for cpu cooling configuration Lukasz Majewski
2015-01-02 18:18 ` Eduardo Valentin
2015-01-12 17:08 ` Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 08/17] thermal: exynos: dts: Add default definition of the TMU sensor parameter Lukasz Majewski
2015-01-02 18:11 ` Eduardo Valentin
2015-01-02 18:26 ` Eduardo Valentin
2015-01-12 14:42 ` Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 09/17] thermal: dts: Default trip points definition for Exynos5420 SoCs Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 10/17] thermal: exynos: dts: Define default thermal-zones for Exynos4 Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 11/17] thermal: dts: exynos: Trip points and sensor configuration data for Exynos5440 Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 12/17] thermal: exynos: dts: Provide device tree bindings identical to one in exynos_tmu_data.c Lukasz Majewski
2015-01-02 18:13 ` Eduardo Valentin
2015-01-12 15:36 ` Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 13/17] thermal: samsung: core: Exynos TMU rework to use device tree for configuration Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 14/17] thermal: exynos: Remove exynos_thermal_common.[c|h] files Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 15/17] thermal: exynos: Remove exynos_tmu_data.c file Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 16/17] thermal: exynos: Make Exynos5250 TMU compatible with Exynos4412 Lukasz Majewski
2014-12-10 12:09 ` [PATCH v2 17/17] thermal: exynos: Make Exynos3250 " Lukasz Majewski
2015-01-02 18:25 ` [PATCH v2 00/17] thermal: exynos: Thermal code rework to use device tree Eduardo Valentin
2015-01-03 19:53 ` Lukasz Majewski
2015-01-05 21:11 ` Eduardo Valentin
2015-01-14 13:40 ` [PATCH v3 00/16] " Lukasz Majewski
2015-01-14 13:40 ` [PATCH v3 01/16] thermal: exynos: cosmetic: Correct comment format Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 02/16] thermal: exynos: Provide thermal_exynos.h file to be included in device tree files Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 03/16] arm: dts: trats: Enable TMU on the Exynos4210 trats device Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 04/16] arm: dts: odroid: Add LD010 regulator node necessary for TMU on Odroid Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 05/16] thermal: dts: Enable TMU at Exynos4412 based Odroid U3 device Lukasz Majewski
2015-01-14 18:48 ` Eduardo Valentin
2015-01-14 13:41 ` [PATCH v3 06/16] arm: dts: Adding CPU cooling binding for Exynos SoCs Lukasz Majewski
2015-01-14 18:57 ` Eduardo Valentin
2015-01-14 13:41 ` [PATCH v3 07/16] thermal: exynos: Modify exynos thermal code to use device tree for cpu cooling configuration Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 08/16] thermal: exynos: dts: Add default definition of the TMU sensor parameter Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 09/16] dts: Documentation: Extending documentation entry for exynos-thermal Lukasz Majewski
2015-01-14 18:52 ` Eduardo Valentin
2015-01-14 19:01 ` Eduardo Valentin
2015-01-14 13:41 ` [PATCH v3 10/16] thermal: dts: Default trip points definition for Exynos5420 SoCs Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 11/16] thermal: exynos: dts: Define default thermal-zones for Exynos4 Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 12/16] thermal: dts: exynos: Trip points and sensor configuration data for Exynos5440 Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 13/16] thermal: exynos: dts: Provide device tree bindings identical to the one in exynos_tmu_data.c Lukasz Majewski
2015-01-14 19:05 ` Eduardo Valentin
2015-01-15 16:03 ` Lukasz Majewski [this message]
2015-01-14 13:41 ` [PATCH v3 14/16] thermal: samsung: core: Exynos TMU rework to use device tree for configuration Lukasz Majewski
2015-01-14 18:46 ` Eduardo Valentin
2015-01-15 15:17 ` Lukasz Majewski
2015-01-21 1:23 ` Eduardo Valentin
2015-01-21 8:10 ` Lukasz Majewski
2015-01-21 9:20 ` Eduardo Valentin
2015-01-22 14:17 ` Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 15/16] thermal: exynos: Remove exynos_thermal_common.[c|h] files Lukasz Majewski
2015-01-14 13:41 ` [PATCH v3 16/16] thermal: exynos: Remove exynos_tmu_data.c file Lukasz Majewski
2015-01-16 0:00 ` [PATCH v3 00/16] thermal: exynos: Thermal code rework to use device tree Tobias Jakobi
2015-01-16 8:29 ` Lukasz Majewski
2015-01-19 23:29 ` Tobias Jakobi
2015-01-20 8:17 ` Lukasz Majewski
2015-01-22 1:06 ` Tobias Jakobi
2015-01-21 9:08 ` Eduardo Valentin
2015-01-24 1:00 ` Tobias Jakobi
2015-01-16 11:30 ` [PATCH v4 00/17] " Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 01/17] thermal: exynos: cosmetic: Correct comment format Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 02/17] thermal: exynos: Provide thermal_exynos.h file to be included in device tree files Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 03/17] arm: dts: trats: Enable TMU on the Exynos4210 trats device Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 04/17] arm: dts: odroid: Add LD010 regulator node necessary for TMU on Odroid Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 05/17] arm: dts: odroid: Enable TMU at Exynos4412 based Odroid U3 device Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 06/17] arm: dts: Adding CPU cooling binding for Exynos SoCs Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 07/17] thermal: exynos: Modify exynos thermal code to use device tree for cpu cooling configuration Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 08/17] thermal: exynos: dts: Add default definition of the TMU sensor parameter Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 09/17] dts: Documentation: Extending documentation entry for exynos-thermal Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 10/17] thermal: dts: Default trip points definition for Exynos5420 SoCs Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 11/17] thermal: exynos: dts: Define default thermal-zones for Exynos4 Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 12/17] thermal: dts: exynos: Trip points and sensor configuration data for Exynos5440 Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 13/17] dts: Documentation: Update exynos-thermal.txt example " Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 14/17] thermal: exynos: dts: Provide device tree bindings identical to the one in exynos_tmu_data.c Lukasz Majewski
2015-01-16 11:30 ` [PATCH v4 15/17] thermal: samsung: core: Exynos TMU rework to use device tree for configuration Lukasz Majewski
2015-01-16 11:31 ` [PATCH v4 16/17] thermal: exynos: Remove exynos_thermal_common.[c|h] files Lukasz Majewski
2015-01-16 11:31 ` [PATCH v4 17/17] thermal: exynos: Remove exynos_tmu_data.c file Lukasz Majewski
2015-01-17 7:17 ` [PATCH v4 00/17] thermal: exynos: Thermal code rework to use device tree Abhilash Kesavan
2015-01-19 7:57 ` Lukasz Majewski
2015-01-23 7:42 ` Kukjin Kim
2015-01-23 9:59 ` Lukasz Majewski
2015-01-23 11:00 ` Kukjin Kim
2015-01-23 14:45 ` Eduardo Valentin
2015-01-24 4:04 ` Kukjin Kim
2015-01-19 11:20 ` [PATCH v5 00/18] " Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 01/18] thermal: exynos: cosmetic: Correct comment format Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 02/18] thermal: exynos: Provide thermal_exynos.h file to be included in device tree files Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 03/18] arm: dts: trats: Enable TMU on the Exynos4210 trats device Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 04/18] arm: dts: odroid: Add LDO10 regulator node necessary for TMU on Odroid Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 05/18] arm: dts: odroid: Enable TMU at Exynos4412 based Odroid U3 device Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 06/18] arm: dts: Adding CPU cooling binding for Exynos SoCs Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 07/18] thermal: exynos: Modify exynos thermal code to use device tree for cpu cooling configuration Lukasz Majewski
2015-01-21 2:18 ` Eduardo Valentin
2015-01-21 8:21 ` Lukasz Majewski
2015-01-21 8:33 ` Lukasz Majewski
2015-01-21 9:08 ` Viresh Kumar
2015-01-21 9:47 ` Lukasz Majewski
2015-01-21 9:55 ` Viresh Kumar
2015-01-21 10:09 ` Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 08/18] thermal: exynos: dts: Add default definition of the TMU sensor parameter Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 09/18] dts: Documentation: Extending documentation entry for exynos-thermal Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 10/18] thermal: dts: Default trip points definition for Exynos5420 SoCs Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 11/18] thermal: exynos: dts: Define default thermal-zones for Exynos4 Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 12/18] thermal: dts: exynos: Trip points and sensor configuration data for Exynos5440 Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 13/18] dts: Documentation: Update exynos-thermal.txt example " Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 14/18] thermal: exynos: dts: Provide device tree bindings identical to the one in exynos_tmu_data.c Lukasz Majewski
2015-01-19 11:20 ` [PATCH v5 15/18] thermal: samsung: core: Exynos TMU rework to use device tree for configuration Lukasz Majewski
2015-01-21 3:18 ` Eduardo Valentin
2015-01-21 8:40 ` Lukasz Majewski
2015-01-21 9:14 ` Eduardo Valentin
2015-01-21 3:25 ` Eduardo Valentin
2015-01-21 8:48 ` Lukasz Majewski
2015-01-19 11:21 ` [PATCH v5 16/18] thermal: exynos: Remove exynos_thermal_common.[c|h] files Lukasz Majewski
2015-01-19 11:21 ` [PATCH v5 17/18] thermal: exynos: Remove exynos_tmu_data.c file Lukasz Majewski
2015-01-19 11:21 ` [PATCH v5 18/18] thermal: exynos: Remove not needed exynos_tmu_init_data declarations from exynos_tmu.h Lukasz Majewski
2015-01-21 3:30 ` Eduardo Valentin
2015-01-21 9:00 ` Lukasz Majewski
2015-01-21 1:55 ` [PATCH v5 00/18] thermal: exynos: Thermal code rework to use device tree Eduardo Valentin
2015-01-23 12:09 ` [PATCH v6 " Lukasz Majewski
2015-01-23 12:09 ` [PATCH v6 01/18] thermal: exynos: cosmetic: Correct comment format Lukasz Majewski
2015-01-23 12:09 ` [PATCH v6 02/18] thermal: exynos: Provide thermal_exynos.h file to be included in device tree files Lukasz Majewski
2015-01-23 12:09 ` [PATCH v6 03/18] arm: dts: trats: Enable TMU on the Exynos4210 trats device Lukasz Majewski
2015-01-23 12:09 ` [PATCH v6 04/18] arm: dts: odroid: Add LDO10 regulator node necessary for TMU on Odroid Lukasz Majewski
2015-01-23 12:09 ` [PATCH v6 05/18] arm: dts: odroid: Enable TMU at Exynos4412 based Odroid U3 device Lukasz Majewski
2015-01-23 12:23 ` Aw: " Tobias Jakobi
2015-01-23 12:09 ` [PATCH v6 06/18] arm: dts: Adding CPU cooling binding for Exynos SoCs Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 07/18] thermal: exynos: Modify exynos thermal code to use device tree for cpu cooling configuration Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 09/18] thermal: exynos: dts: Add default definition of the TMU sensor parameter Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 10/18] dts: Documentation: Extending documentation entry for exynos-thermal Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 11/18] thermal: dts: Default trip points definition for Exynos5420 SoCs Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 12/18] thermal: exynos: dts: Define default thermal-zones for Exynos4 Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 13/18] thermal: dts: exynos: Trip points and sensor configuration data for Exynos5440 Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 14/18] dts: Documentation: Update exynos-thermal.txt example " Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 15/18] thermal: exynos: dts: Provide device tree bindings identical to the one in exynos_tmu_data.c Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 16/18] thermal: samsung: core: Exynos TMU rework to use device tree for configuration Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 17/18] thermal: exynos: Remove exynos_thermal_common.[c|h] files Lukasz Majewski
2015-01-23 12:10 ` [PATCH v6 18/18] thermal: exynos: Remove exynos_tmu_data.c file Lukasz Majewski
2015-01-24 21:49 ` [PATCH v6 00/18] thermal: exynos: Thermal code rework to use device tree Eduardo Valentin
2015-01-26 8:49 ` Lukasz Majewski
2015-01-29 23:34 ` Kukjin Kim
2015-02-23 10:13 ` Lukasz Majewski
2015-02-23 11:18 ` Kukjin Kim
2015-02-23 12:28 ` Lukasz Majewski
2015-02-26 15:56 ` Lukasz Majewski
2015-02-26 21:21 ` Kukjin Kim
2015-01-23 12:14 ` [PATCH v6 08/18] cpufreq: exynos: Use device tree to determine if cpufreq cooling should be registered Lukasz Majewski
2015-01-23 12:59 ` Viresh Kumar
2015-01-23 13:57 ` Lukasz Majewski
2015-01-25 14:01 ` Viresh Kumar
2015-01-25 16:27 ` Lukasz Majewski
2015-01-25 16:46 ` Eduardo Valentin
2015-01-25 21:55 ` Lukasz Majewski
2015-01-26 9:25 ` [PATCH] cpufreq: exynos: Use simple approach to asses if cpu cooling can be used Lukasz Majewski
2015-01-27 3:44 ` Viresh Kumar
2015-02-04 9:00 ` Lukasz Majewski
2015-02-05 15:54 ` [PATCH v2] " Lukasz Majewski
2015-02-26 10:36 ` Lukasz Majewski
2015-02-26 18:25 ` Eduardo Valentin
2015-02-26 21:23 ` Lukasz Majewski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150115170336.3bfc1fab@amdc2363 \
--to=l.majewski@samsung.com \
--cc=amit.daniel@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=cw00.choi@samsung.com \
--cc=edubezval@gmail.com \
--cc=kesavan.abhilash@gmail.com \
--cc=kgene.kim@samsung.com \
--cc=kgene@kernel.org \
--cc=kyungmin.park@samsung.com \
--cc=l.majewski@majess.pl \
--cc=linux-pm@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=rui.zhang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).