public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/8 v4] Add TMU support for Exynos5250 based SMDK5250
@ 2012-12-11 10:54 Hatim Ali
  2012-12-11 10:54 ` [U-Boot] [PATCH 1/8] EXYNOS5: FDT: Add TMU device node values Hatim Ali
                   ` (7 more replies)
  0 siblings, 8 replies; 26+ messages in thread
From: Hatim Ali @ 2012-12-11 10:54 UTC (permalink / raw)
  To: u-boot

This patch series adds 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

Changes since v3:
	- Rebased patch 1/8

Akshay Saraswat (6):
  EXYNOS5: FDT: Add TMU device node values
  EXYNOS5: TMU: Add driver for Thermal Management Unit
  EXYNOS5: Power down API for Thermal Management Unit
  Add a poll function to monitor events
  EXYNOS5: TMU: Add TMU status polling
  EXYNOS5: Config: Enable support for Exynos TMU driver

Alim Akhtar (2):
  TMU: Add u-boot command to read current temp
  EXYNOS5: Config: Enable tmu command

 README                                        |    8 +
 arch/arm/cpu/armv7/exynos/power.c             |   15 ++
 arch/arm/dts/exynos5250.dtsi                  |    5 +
 arch/arm/include/asm/arch-exynos/exynos-tmu.h |   58 +++++
 arch/arm/include/asm/arch-exynos/power.h      |    8 +
 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                    |  297 +++++++++++++++++++++++++
 include/common.h                              |    6 +
 include/configs/exynos5250-dt.h               |    7 +
 include/fdtdec.h                              |    1 +
 include/tmu.h                                 |   46 ++++
 lib/fdtdec.c                                  |    1 +
 18 files changed, 594 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
 create mode 100644 include/tmu.h

-- 
1.7.2.3

^ permalink raw reply	[flat|nested] 26+ messages in thread
* [U-Boot] [PATCH 0/8] Add TMU support for Exynos5250 based SMDK5250
@ 2012-11-06 10:18 Hatim Ali
  2012-11-06 10:18 ` [U-Boot] [PATCH 2/8] EXYNOS5: TMU: Add driver for Thermal Management Unit Hatim Ali
  0 siblings, 1 reply; 26+ messages in thread
From: Hatim Ali @ 2012-11-06 10:18 UTC (permalink / raw)
  To: u-boot

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

-- 
1.7.2.3

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

end of thread, other threads:[~2012-12-13 10:23 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-11 10:54 [U-Boot] [PATCH 0/8 v4] Add TMU support for Exynos5250 based SMDK5250 Hatim Ali
2012-12-11 10:54 ` [U-Boot] [PATCH 1/8] EXYNOS5: FDT: Add TMU device node values Hatim Ali
2012-12-12 14:51   ` Simon Glass
2012-12-11 10:54 ` [U-Boot] [PATCH 2/8] EXYNOS5: TMU: Add driver for Thermal Management Unit Hatim Ali
2012-12-11 12:41   ` Wolfgang Denk
2012-12-11 10:54 ` [U-Boot] [PATCH 3/8] EXYNOS5: Power down API " Hatim Ali
2012-12-11 12:43   ` Wolfgang Denk
2012-12-12 14:00     ` Simon Glass
2012-12-12 20:27       ` Wolfgang Denk
2012-12-11 10:54 ` [U-Boot] [PATCH 4/8] Add a poll function to monitor events Hatim Ali
2012-12-11 12:39   ` Wolfgang Denk
2012-12-12 14:14     ` Simon Glass
2012-12-12 20:44       ` Wolfgang Denk
2012-12-12 21:07         ` Simon Glass
2012-12-12 22:11           ` Wolfgang Denk
2012-12-12 23:34             ` Simon Glass
2012-12-13 10:23               ` Wolfgang Denk
2012-12-11 10:54 ` [U-Boot] [PATCH 5/8] EXYNOS5: TMU: Add TMU status polling Hatim Ali
2012-12-11 10:54 ` [U-Boot] [PATCH 6/8] EXYNOS5: Config: Enable support for Exynos TMU driver Hatim Ali
2012-12-11 10:54 ` [U-Boot] [PATCH 7/8] TMU: Add u-boot command to read current temp Hatim Ali
2012-12-11 12:30   ` Wolfgang Denk
2012-12-12 13:57     ` Simon Glass
2012-12-12 20:26       ` Wolfgang Denk
2012-12-11 10:54 ` [U-Boot] [PATCH 8/8] EXYNOS5: Config: Enable tmu command Hatim Ali
  -- strict thread matches above, loose matches on Subject: below --
2012-11-06 10:18 [U-Boot] [PATCH 0/8] Add TMU support for Exynos5250 based SMDK5250 Hatim Ali
2012-11-06 10:18 ` [U-Boot] [PATCH 2/8] EXYNOS5: TMU: Add driver for Thermal Management Unit Hatim Ali
2012-11-07  0:03   ` Simon Glass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox