Re: [U-Boot] [PATCH V8 0/5] Add Pantheon soc and dkb board support

2011-02-09 Thread Prafulla Wadaskar


 -Original Message-
 From: Lei Wen [mailto:lei...@marvell.com]
 Sent: Friday, January 28, 2011 1:19 AM
 To: Albert ARIBAUD; Wolfgang Denk; u-boot@lists.denx.de; Prafulla
 Wadaskar; Yu Tang; Ashish Karkare; Prabhanjan Sarnaik; Lei Wen
 Subject: [PATCH V8 0/5] Add Pantheon soc and dkb board support
 
 This patch set add the Pantheon soc and dkb board support.
 
 V2:
 This patch seris update the seperate mv_common part as suggested.
 
 V3:
 Fix config.h include place and copyright claim year.
 
 V4:
 Add change log to each patch.
 
 V5:
 Add doc in Readme for new CONFIG_SYS_MVFS.
 code style fix.
 
 V6:
 Rebase patch on latest u-boot-marvell.git.
 And fix a build warning.
 
 V7:
 Fix CONFIG_SYS_INIT_SP_ADDR put place.
 Fix timer read to avoid potential optimization out of loop.
 Correct comments in the fourth patch.
 
 V8:
 Fix copyright claim year.
 
 Lei Wen (5):
   mv: seperate kirkwood and armada from common setting
   ARM: Add Support for Marvell Pantheon Familiy SoCs
   serial: add pantheon soc support
   mvmfp: add MFP configuration support for PANTHEON
   Pantheon: Add Board Support for Marvell dkb board
 
  MAINTAINERS   |4 +
  README|5 +
  arch/arm/cpu/arm926ejs/pantheon/Makefile  |   46 ++
  arch/arm/cpu/arm926ejs/pantheon/cpu.c |   78 +
  arch/arm/cpu/arm926ejs/pantheon/dram.c|  132 +++
  arch/arm/cpu/arm926ejs/pantheon/timer.c   |  214
 +
  arch/arm/include/asm/arch-armada100/config.h  |   44 +
  arch/arm/include/asm/arch-kirkwood/config.h   |  145 +
  arch/arm/include/asm/arch-pantheon/config.h   |   38 +
  arch/arm/include/asm/arch-pantheon/cpu.h  |   79 +
  arch/arm/include/asm/arch-pantheon/mfp.h  |   41 +
  arch/arm/include/asm/arch-pantheon/pantheon.h |   54 ++
  board/Marvell/dkb/Makefile|   51 ++
  board/Marvell/dkb/dkb.c   |   54 ++
  boards.cfg|1 +
  drivers/gpio/mvmfp.c  |2 +
  drivers/serial/serial.c   |2 +
  include/configs/aspenite.h|8 +
  include/configs/dkb.h |   65 
  include/configs/mv-common.h   |  147 +++---
  20 files changed, 1084 insertions(+), 126 deletions(-)
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/Makefile
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/cpu.c
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/dram.c
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/timer.c
  create mode 100644 arch/arm/include/asm/arch-armada100/config.h
  create mode 100644 arch/arm/include/asm/arch-kirkwood/config.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/config.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/cpu.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/mfp.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/pantheon.h
  create mode 100644 board/Marvell/dkb/Makefile
  create mode 100644 board/Marvell/dkb/dkb.c
  create mode 100644 include/configs/dkb.h

Applied this patch series to u-boot-marvell.git next branch

Regards..
Prafulla . .

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


Re: [U-Boot] [PATCH V8 0/5] Add Pantheon soc and dkb board support

2011-02-04 Thread Albert ARIBAUD
Hi All,

Le 28/01/2011 10:19, Lei Wen a écrit :
 This patch set add the Pantheon soc and dkb board support.

Prafulla,

Is this patchset going to go into u-boot-marvell and requested for pull 
before 2011-03 is out?

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


[U-Boot] [PATCH V8 0/5] Add Pantheon soc and dkb board support

2011-01-28 Thread Lei Wen
This patch set add the Pantheon soc and dkb board support.

V2:
This patch seris update the seperate mv_common part as suggested.

V3:
Fix config.h include place and copyright claim year.

V4:
Add change log to each patch.

V5:
Add doc in Readme for new CONFIG_SYS_MVFS.
code style fix.

V6:
Rebase patch on latest u-boot-marvell.git.
And fix a build warning.

V7:
Fix CONFIG_SYS_INIT_SP_ADDR put place.
Fix timer read to avoid potential optimization out of loop.
Correct comments in the fourth patch.

V8:
Fix copyright claim year.

Lei Wen (5):
  mv: seperate kirkwood and armada from common setting
  ARM: Add Support for Marvell Pantheon Familiy SoCs
  serial: add pantheon soc support
  mvmfp: add MFP configuration support for PANTHEON
  Pantheon: Add Board Support for Marvell dkb board

 MAINTAINERS   |4 +
 README|5 +
 arch/arm/cpu/arm926ejs/pantheon/Makefile  |   46 ++
 arch/arm/cpu/arm926ejs/pantheon/cpu.c |   78 +
 arch/arm/cpu/arm926ejs/pantheon/dram.c|  132 +++
 arch/arm/cpu/arm926ejs/pantheon/timer.c   |  214 +
 arch/arm/include/asm/arch-armada100/config.h  |   44 +
 arch/arm/include/asm/arch-kirkwood/config.h   |  145 +
 arch/arm/include/asm/arch-pantheon/config.h   |   38 +
 arch/arm/include/asm/arch-pantheon/cpu.h  |   79 +
 arch/arm/include/asm/arch-pantheon/mfp.h  |   41 +
 arch/arm/include/asm/arch-pantheon/pantheon.h |   54 ++
 board/Marvell/dkb/Makefile|   51 ++
 board/Marvell/dkb/dkb.c   |   54 ++
 boards.cfg|1 +
 drivers/gpio/mvmfp.c  |2 +
 drivers/serial/serial.c   |2 +
 include/configs/aspenite.h|8 +
 include/configs/dkb.h |   65 
 include/configs/mv-common.h   |  147 +++---
 20 files changed, 1084 insertions(+), 126 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/pantheon/Makefile
 create mode 100644 arch/arm/cpu/arm926ejs/pantheon/cpu.c
 create mode 100644 arch/arm/cpu/arm926ejs/pantheon/dram.c
 create mode 100644 arch/arm/cpu/arm926ejs/pantheon/timer.c
 create mode 100644 arch/arm/include/asm/arch-armada100/config.h
 create mode 100644 arch/arm/include/asm/arch-kirkwood/config.h
 create mode 100644 arch/arm/include/asm/arch-pantheon/config.h
 create mode 100644 arch/arm/include/asm/arch-pantheon/cpu.h
 create mode 100644 arch/arm/include/asm/arch-pantheon/mfp.h
 create mode 100644 arch/arm/include/asm/arch-pantheon/pantheon.h
 create mode 100644 board/Marvell/dkb/Makefile
 create mode 100644 board/Marvell/dkb/dkb.c
 create mode 100644 include/configs/dkb.h

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