Re: [U-Boot] [PATCH v6 2/2] arm: A320: Add support for Faraday A320 evaluation board

2009-09-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 09:41 Tue 01 Sep , Po-Yu Chuang wrote:
> Dear Jean-Christophe PLAGNIOL-VILLARD,
> 
> 2009/8/20 Po-Yu Chuang :
> > Dear Jean-Christophe PLAGNIOL-VILLARD,
> >> From: Po-Yu Chuang 
> >>
> >> This patch adds support for A320 evaluation board from Faraday. This board
> >> uses FA526 processor by default and has 512kB and 32MB NOR flash, 64M RAM.
> >> FA526 is an ARMv4 processor and uses the ARM920T source in this patch.
> >>
> >> Signed-off-by: Po-Yu Chuang 
> > I failed to CC you again, but the patches appear in the mailing list.
> > Hope you can see them.
> >
> > The command I used is like below.
> > Is there anything wrong?
> >
> > git send-email \
> > --from=ratbert.chu...@gmail.com \
> > --to=u-b...@lists.denx.de \
> > --cc=plagn...@jcrosoft.com \
> > --cc...@denx.de \
> > --cc=augulis.dar...@gmail.com \
> > 0002-arm-A320-Add-support-for-Faraday-A320-evaluation-boa.patch
> 
> Did you get the patches?
> or I need to resend again?
still not please send me it as attached or please put on a http or ftp server

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


Re: [U-Boot] [PATCH v6 2/2] arm: A320: Add support for Faraday A320 evaluation board

2009-08-31 Thread Po-Yu Chuang
Dear Jean-Christophe PLAGNIOL-VILLARD,

2009/8/20 Po-Yu Chuang :
> Dear Jean-Christophe PLAGNIOL-VILLARD,
>> From: Po-Yu Chuang 
>>
>> This patch adds support for A320 evaluation board from Faraday. This board
>> uses FA526 processor by default and has 512kB and 32MB NOR flash, 64M RAM.
>> FA526 is an ARMv4 processor and uses the ARM920T source in this patch.
>>
>> Signed-off-by: Po-Yu Chuang 
> I failed to CC you again, but the patches appear in the mailing list.
> Hope you can see them.
>
> The command I used is like below.
> Is there anything wrong?
>
> git send-email \
> --from=ratbert.chu...@gmail.com \
> --to=u-b...@lists.denx.de \
> --cc=plagn...@jcrosoft.com \
> --cc...@denx.de \
> --cc=augulis.dar...@gmail.com \
> 0002-arm-A320-Add-support-for-Faraday-A320-evaluation-boa.patch

Did you get the patches?
or I need to resend again?

best regards,
Po-Yu Chuang
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v6 2/2] arm: A320: Add support for Faraday A320 evaluation board

2009-08-19 Thread Po-Yu Chuang
Dear Jean-Christophe PLAGNIOL-VILLARD,

2009/8/20  :
> From: Po-Yu Chuang 
>
> This patch adds support for A320 evaluation board from Faraday. This board
> uses FA526 processor by default and has 512kB and 32MB NOR flash, 64M RAM.
> FA526 is an ARMv4 processor and uses the ARM920T source in this patch.
>
> Signed-off-by: Po-Yu Chuang 
> ---
>  MAINTAINERS                           |    4 +
>  MAKEALL                               |    1 +
>  Makefile                              |    3 +
>  board/faraday/a320evb/Makefile        |   51 
>  board/faraday/a320evb/a320evb.c       |   73 +++
>  board/faraday/a320evb/config.mk       |   35 +
>  board/faraday/a320evb/lowlevel_init.S |  118 +
>  cpu/arm920t/a320/Makefile             |   47 +++
>  cpu/arm920t/a320/ftsmc020.c           |   51 
>  cpu/arm920t/a320/reset.S              |   22 
>  cpu/arm920t/a320/timer.c              |  193 
>  include/asm-arm/arch-a320/a320.h      |   35 +
>  include/asm-arm/arch-a320/ftpmu010.h  |  190 
>  include/asm-arm/arch-a320/ftsdmc020.h |  103 +++
>  include/asm-arm/arch-a320/ftsmc020.h  |   79 
>  include/asm-arm/arch-a320/fttmr010.h  |   73 +++
>  include/configs/a320evb.h             |  222 
> +
>  17 files changed, 1300 insertions(+), 0 deletions(-)
>  create mode 100644 board/faraday/a320evb/Makefile
>  create mode 100644 board/faraday/a320evb/a320evb.c
>  create mode 100644 board/faraday/a320evb/config.mk
>  create mode 100644 board/faraday/a320evb/lowlevel_init.S
>  create mode 100644 cpu/arm920t/a320/Makefile
>  create mode 100644 cpu/arm920t/a320/ftsmc020.c
>  create mode 100644 cpu/arm920t/a320/reset.S
>  create mode 100644 cpu/arm920t/a320/timer.c
>  create mode 100644 include/asm-arm/arch-a320/a320.h
>  create mode 100644 include/asm-arm/arch-a320/ftpmu010.h
>  create mode 100644 include/asm-arm/arch-a320/ftsdmc020.h
>  create mode 100644 include/asm-arm/arch-a320/ftsmc020.h
>  create mode 100644 include/asm-arm/arch-a320/fttmr010.h
>  create mode 100644 include/configs/a320evb.h

I failed to CC you again, but the patches appear in the mailing list.
Hope you can see them.

The command I used is like below.
Is there anything wrong?

git send-email \
--from=ratbert.chu...@gmail.com \
--to=u-b...@lists.denx.de \
--cc=plagn...@jcrosoft.com \
--cc...@denx.de \
--cc=augulis.dar...@gmail.com \
0002-arm-A320-Add-support-for-Faraday-A320-evaluation-boa.patch

best regards,
Po-Yu Chuang
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot