From: Kukjin Kim <kgene.kim@samsung.com>
To: "'Amit Daniel Kachhap'" <amit.daniel@samsung.com>,
linux-pm@vger.kernel.org
Cc: "'Thomas Abraham'" <thomas.abraham@linaro.org>,
"'Zhang Rui'" <rui.zhang@intel.com>,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
amit.kachhap@gmail.com
Subject: RE: [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440
Date: Tue, 02 Apr 2013 19:26:44 +0900 [thread overview]
Message-ID: <237c01ce2f8c$92eb8ac0$b8c2a040$%kim@samsung.com> (raw)
In-Reply-To: <1364297642-2746-1-git-send-email-amit.daniel@samsung.com>
Amit Daniel Kachhap wrote:
>
> This patchset adds TMU(Thermal management Unit) driver support for
> exynos5440 platform. There are 3 instances of the TMU controllers so
> necessary cleanup is done to handle multiple thermal zone.
>
> Patch 1 [thermal: exynos: Adapt to temperature emulation core thermal]
> is a re-post of the earlier posted patch,
> https://patchwork.kernel.org/patch/2123131/.
>
Looks OK to me on whole series, there is my ack only on 1st patch though.
So if you want to add my ack, feel free:
Acked-by: Kukjin Kim <kgene.kim@samsung.com>
Thanks.
- Kukjin
> All these patches are based on thermal maintainers git tree,
> git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git next.
>
> Amit Daniel Kachhap (9):
> thermal: exynos: Adapt to temperature emulation core thermal
> framework
> thermal: exynos: Add support for instance based register/unregister
> thermal: exynos: Moving into samsung directory for easy maintenance.
> thermal: exynos: Bifurcate exynos thermal common and tmu controller
> code
> thermal: exynos: Make the zone handling dependent on trip count
> thermal: exynos: small cleanups to prepare for adding exynos5440
> driver
> thermal: exynos: Add support for exynos5440 TMU sensor.
> thermal: exynos: Parse the platform data from the device tree.
> ARM: dts: Add device tree node for exynos5440 TMU controller
>
> .../bindings/thermal/exynos5440-thermal.txt | 93 ++
> Documentation/thermal/exynos_thermal_emulation | 8 +-
> arch/arm/boot/dts/exynos5440.dtsi | 43 +
> drivers/thermal/Kconfig | 22 +-
> drivers/thermal/Makefile | 2 +-
> drivers/thermal/exynos_thermal.c | 1112
--------------------
> drivers/thermal/samsung/Kconfig | 32 +
> drivers/thermal/samsung/Makefile | 6 +
> drivers/thermal/samsung/exynos4210_thermal.c | 658 ++++++++++++
> drivers/thermal/samsung/exynos5440_thermal.c | 712 +++++++++++++
> drivers/thermal/samsung/exynos_common.c | 515 +++++++++
> drivers/thermal/samsung/exynos_common.h | 74 ++
> include/linux/platform_data/exynos_thermal.h | 37 +-
> 13 files changed, 2163 insertions(+), 1151 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/thermal/exynos5440-
> thermal.txt
> delete mode 100644 drivers/thermal/exynos_thermal.c
> create mode 100644 drivers/thermal/samsung/Kconfig
> create mode 100644 drivers/thermal/samsung/Makefile
> create mode 100644 drivers/thermal/samsung/exynos4210_thermal.c
> create mode 100644 drivers/thermal/samsung/exynos5440_thermal.c
> create mode 100644 drivers/thermal/samsung/exynos_common.c
> create mode 100644 drivers/thermal/samsung/exynos_common.h
next prev parent reply other threads:[~2013-04-02 10:26 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-26 11:33 Amit Daniel Kachhap
2013-03-26 11:33 ` [PATCH 1/9] thermal: exynos: Adapt to temperature emulation core thermal framework Amit Daniel Kachhap
2013-04-11 19:33 ` [1/9] " Eduardo Valentin
2013-04-12 10:57 ` amit kachhap
2013-03-26 11:33 ` [PATCH 2/9] thermal: exynos: Add support for instance based register/unregister Amit Daniel Kachhap
2013-04-11 20:09 ` [2/9] " Eduardo Valentin
2013-04-12 11:03 ` amit kachhap
2013-03-26 11:33 ` [PATCH 3/9] thermal: exynos: Moving into samsung directory for easy maintenance Amit Daniel Kachhap
2013-04-11 20:25 ` [3/9] " Eduardo Valentin
2013-03-26 11:33 ` [PATCH 4/9] thermal: exynos: Bifurcate exynos thermal common and tmu controller code Amit Daniel Kachhap
2013-04-11 20:30 ` [4/9] " Eduardo Valentin
2013-04-12 11:06 ` amit daniel kachhap
2013-04-11 20:42 ` Eduardo Valentin
2013-04-12 11:09 ` amit daniel kachhap
2013-04-12 12:42 ` Eduardo Valentin
2013-03-26 11:33 ` [PATCH 5/9] thermal: exynos: Make the zone handling dependent on trip count Amit Daniel Kachhap
2013-04-11 20:48 ` [5/9] " Eduardo Valentin
2013-04-12 11:16 ` amit daniel kachhap
2013-04-12 12:45 ` Eduardo Valentin
2013-03-26 11:33 ` [PATCH 6/9] thermal: exynos: small cleanups to prepare for adding exynos5440 driver Amit Daniel Kachhap
2013-04-11 20:54 ` [6/9] " Eduardo Valentin
2013-04-12 11:18 ` amit daniel kachhap
2013-03-26 11:34 ` [PATCH 7/9] thermal: exynos: Add support for exynos5440 TMU sensor Amit Daniel Kachhap
2013-04-11 21:04 ` [7/9] " Eduardo Valentin
2013-04-12 11:32 ` amit daniel kachhap
2013-03-26 11:34 ` [PATCH 8/9] thermal: exynos: Parse the platform data from the device tree Amit Daniel Kachhap
2013-04-11 21:13 ` [8/9] " Eduardo Valentin
2013-03-26 11:34 ` [PATCH 9/9] ARM: dts: Add device tree node for exynos5440 TMU controller Amit Daniel Kachhap
2013-04-08 12:24 ` Kukjin Kim
2013-04-11 21:15 ` [9/9] " Eduardo Valentin
2013-04-02 10:26 ` Kukjin Kim [this message]
2013-04-09 5:24 ` [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440 amit daniel kachhap
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='237c01ce2f8c$92eb8ac0$b8c2a040$%kim@samsung.com' \
--to=kgene.kim@samsung.com \
--cc=amit.daniel@samsung.com \
--cc=amit.kachhap@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=rui.zhang@intel.com \
--cc=thomas.abraham@linaro.org \
/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
Powered by JetHome