linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440
@ 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
                   ` (9 more replies)
  0 siblings, 10 replies; 32+ messages in thread
From: Amit Daniel Kachhap @ 2013-03-26 11:33 UTC (permalink / raw)
  To: linux-pm
  Cc: Thomas Abraham, Zhang Rui, linux-samsung-soc, linux-kernel,
	amit.kachhap, Kukjin Kim

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/.

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


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2013-04-12 12:45 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-26 11:33 [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440 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 ` [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440 Kukjin Kim
2013-04-09  5:24   ` amit daniel kachhap

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).