Re: [U-Boot] [PATCH v2 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-03-27 Thread Inderpal Singh
Dear Minkyu,

Let me know your view about this patchset.

With Regards,
Inder

On 15 March 2013 11:53, Inderpal Singh inderpal.si...@linaro.org wrote:
 The first patch moves the tzpc_init file from smdk5250 to armv7/exynos.
 The second makes tzpc_init common for exynos4 and exynos5. And the third
 makes necessary changes to exynos4 based origen and smdkv310 boards.

 The patchset has been tested on exynos4 based origen and exynos5 based
 Arndale board.

 Changes in v2:
 - removed uninitialised warning for start and end variables
 - corrected the SPL_TEXT_BASE for origen and smdkv310
 - Added Chander's Acked-by

 Inderpal Singh (3):
   exynos: move tzpc_init to armv7/exynos
   exynos: update tzpc_init to make it common for exynos4 and exynos5
   exynos: Update origen and smdkv310 to use common tzpc_init

  arch/arm/cpu/armv7/exynos/Makefile  |2 +-
  arch/arm/cpu/armv7/exynos/tzpc_init.c   |   57 +
  arch/arm/cpu/armv7/s5p-common/Makefile  |2 ++
  arch/arm/include/asm/arch-exynos/tzpc.h |   28 +++
  board/samsung/origen/lowlevel_init.S|   44 ++-
  board/samsung/origen/origen_setup.h |   25 -
  board/samsung/smdk5250/Makefile |1 -
  board/samsung/smdk5250/lowlevel_init.S  |2 ++
  board/samsung/smdk5250/setup.h  |   25 -
  board/samsung/smdk5250/tzpc_init.c  |   48 -
  board/samsung/smdkv310/lowlevel_init.S  |   60 
 ++-
  include/configs/exynos5250-dt.h |2 --
  include/configs/origen.h|2 ++
  include/configs/smdkv310.h  |2 ++
  spl/Makefile|4 +++
  15 files changed, 102 insertions(+), 202 deletions(-)
  create mode 100644 arch/arm/cpu/armv7/exynos/tzpc_init.c
  delete mode 100644 board/samsung/smdk5250/tzpc_init.c

 --
 1.7.9.5

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-03-27 Thread Minkyu Kang
On 27/03/13 17:46, Inderpal Singh wrote:
 Dear Minkyu,
 
 Let me know your view about this patchset.
 
 With Regards,
 Inder
 
 On 15 March 2013 11:53, Inderpal Singh inderpal.si...@linaro.org wrote:
 The first patch moves the tzpc_init file from smdk5250 to armv7/exynos.
 The second makes tzpc_init common for exynos4 and exynos5. And the third
 makes necessary changes to exynos4 based origen and smdkv310 boards.

 The patchset has been tested on exynos4 based origen and exynos5 based
 Arndale board.

 Changes in v2:
 - removed uninitialised warning for start and end variables
 - corrected the SPL_TEXT_BASE for origen and smdkv310
 - Added Chander's Acked-by

 Inderpal Singh (3):
   exynos: move tzpc_init to armv7/exynos
   exynos: update tzpc_init to make it common for exynos4 and exynos5
   exynos: Update origen and smdkv310 to use common tzpc_init

  arch/arm/cpu/armv7/exynos/Makefile  |2 +-
  arch/arm/cpu/armv7/exynos/tzpc_init.c   |   57 +
  arch/arm/cpu/armv7/s5p-common/Makefile  |2 ++
  arch/arm/include/asm/arch-exynos/tzpc.h |   28 +++
  board/samsung/origen/lowlevel_init.S|   44 ++-
  board/samsung/origen/origen_setup.h |   25 -
  board/samsung/smdk5250/Makefile |1 -
  board/samsung/smdk5250/lowlevel_init.S  |2 ++
  board/samsung/smdk5250/setup.h  |   25 -
  board/samsung/smdk5250/tzpc_init.c  |   48 -
  board/samsung/smdkv310/lowlevel_init.S  |   60 
 ++-
  include/configs/exynos5250-dt.h |2 --
  include/configs/origen.h|2 ++
  include/configs/smdkv310.h  |2 ++
  spl/Makefile|4 +++
  15 files changed, 102 insertions(+), 202 deletions(-)
  create mode 100644 arch/arm/cpu/armv7/exynos/tzpc_init.c
  delete mode 100644 board/samsung/smdk5250/tzpc_init.c

 --
 1.7.9.5

 

listed in my queue.

Thanks,
Minkyu Kang.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-03-15 Thread Inderpal Singh
The first patch moves the tzpc_init file from smdk5250 to armv7/exynos.
The second makes tzpc_init common for exynos4 and exynos5. And the third
makes necessary changes to exynos4 based origen and smdkv310 boards.

The patchset has been tested on exynos4 based origen and exynos5 based
Arndale board.

Changes in v2:
- removed uninitialised warning for start and end variables
- corrected the SPL_TEXT_BASE for origen and smdkv310
- Added Chander's Acked-by

Inderpal Singh (3):
  exynos: move tzpc_init to armv7/exynos
  exynos: update tzpc_init to make it common for exynos4 and exynos5
  exynos: Update origen and smdkv310 to use common tzpc_init

 arch/arm/cpu/armv7/exynos/Makefile  |2 +-
 arch/arm/cpu/armv7/exynos/tzpc_init.c   |   57 +
 arch/arm/cpu/armv7/s5p-common/Makefile  |2 ++
 arch/arm/include/asm/arch-exynos/tzpc.h |   28 +++
 board/samsung/origen/lowlevel_init.S|   44 ++-
 board/samsung/origen/origen_setup.h |   25 -
 board/samsung/smdk5250/Makefile |1 -
 board/samsung/smdk5250/lowlevel_init.S  |2 ++
 board/samsung/smdk5250/setup.h  |   25 -
 board/samsung/smdk5250/tzpc_init.c  |   48 -
 board/samsung/smdkv310/lowlevel_init.S  |   60 ++-
 include/configs/exynos5250-dt.h |2 --
 include/configs/origen.h|2 ++
 include/configs/smdkv310.h  |2 ++
 spl/Makefile|4 +++
 15 files changed, 102 insertions(+), 202 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/exynos/tzpc_init.c
 delete mode 100644 board/samsung/smdk5250/tzpc_init.c

-- 
1.7.9.5

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot