
The patch series add support for TMU driver using device tree for Exynos5250 based SMDK5250 board. This patch series is dependent on the patch series "Add DT based ethernet driver for SMDK5250" by Hatim Ali
Akshay Saraswat (5): EXYNOS5: FDT: Add TMU device node values EXYNOS5: TMU: Add driver for Thermal Management Unit EXYNOS5: Power down API for Thermal Management Unit GEN: Add a poll function to monitor events EXYNOS5: TMU: Add TMU status polling
Alim Akhtar (1): GEN: TMU: Add u-boot command to read current temp
Hatim Ali (2): EXYNOS5: Config: Enable support for Exynos TMU driver EXYNOS5: Config: Enable tmu command
README | 7 + arch/arm/cpu/armv7/exynos/power.c | 11 + arch/arm/dts/exynos5250.dtsi | 5 + arch/arm/include/asm/arch-exynos/exynos-tmu.h | 82 +++++++ arch/arm/include/asm/arch-exynos/power.h | 4 + board/samsung/dts/exynos5250-smdk5250.dts | 13 + board/samsung/smdk5250/smdk5250.c | 36 +++ common/Makefile | 1 + common/cmd_tmu.c | 51 +++++ common/console.c | 5 + doc/device-tree-bindings/exynos/tmu.txt | 35 +++ drivers/power/Makefile | 1 + drivers/power/exynos-tmu.c | 296 +++++++++++++++++++++++++ include/common.h | 8 + include/configs/exynos5250-dt.h | 7 + include/fdtdec.h | 1 + lib/fdtdec.c | 1 + 17 files changed, 564 insertions(+), 0 deletions(-) create mode 100644 arch/arm/include/asm/arch-exynos/exynos-tmu.h create mode 100644 common/cmd_tmu.c create mode 100644 doc/device-tree-bindings/exynos/tmu.txt create mode 100644 drivers/power/exynos-tmu.c