
This patch series support for Samsung TRATS board, and add the headers of watchdog and power.
I missed logs of v2 on this thread, so I'm going to add this: http://lists.denx.de/pipermail/u-boot/2012-January/114857.html
Also, this patch is tested on Samsung TRATS board.
Thank you.
Best Regards, Heungjun Kim
Changes for v2: - sort the list of the name in MAINTAINERS - modify to GPLv2+ - change assem code in lowlevel_init.S to C code in lowlevel_util.c - do not defile values for variables if the variable is feature - remove miscellaneouses
Changes for v3: - implement lowlevel_init.S by C - remove lowlevel_init.S, the functions is inserted into trats.c - add watchdog.h for Exynos4 - add power.h amd modify cpu.h for Exynos4
HeungJun, Kim (3): ARMV7: Exynos4: Add watchdog.h for Exynos4 ARMV7: Exynos4: Add supoort power for Exynos4 ARMV7: Exynos4: Add support for TRATS board
MAINTAINERS | 4 + arch/arm/include/asm/arch-exynos/cpu.h | 1 + arch/arm/include/asm/arch-exynos/power.h | 230 ++++++++ arch/arm/include/asm/arch-exynos/watchdog.h | 53 ++ board/samsung/trats/Makefile | 43 ++ board/samsung/trats/trats.c | 349 ++++++++++++ board/samsung/trats/trats_setup.h | 814 +++++++++++++++++++++++++++ boards.cfg | 1 + include/configs/trats.h | 216 +++++++ 9 files changed, 1711 insertions(+), 0 deletions(-) create mode 100644 arch/arm/include/asm/arch-exynos/power.h create mode 100644 arch/arm/include/asm/arch-exynos/watchdog.h create mode 100644 board/samsung/trats/Makefile create mode 100644 board/samsung/trats/trats.c create mode 100644 board/samsung/trats/trats_setup.h create mode 100644 include/configs/trats.h