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


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

2009-08-19 Thread ratbert . chuang
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

diff --git a/MAINTAINERS b/MAINTAINERS
index 79873f3..aa54bdb 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -533,6 +533,10 @@ Rick Bronson 
 
AT91RM9200DKat91rm9200
 
+Po-Yu Chuang 
+
+   a320evb FA526 (ARM920T-like) (a320 SoC)
+
 George G. Davis 
 
assabet SA1100
diff --git a/MAKEALL b/MAKEALL
index 5882ceb..7c742b6 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -505,6 +505,7 @@ LIST_ARM7=" \
 #
 
 LIST_ARM9="\
+   a320evb \
ap920t  \
ap922_XA10  \
ap926ejs\
diff --git a/Makefile b/Makefile
index c9d315a..a3fb0b8 100644
--- a/Makefile
+++ b/Makefile
@@ -2661,6 +2661,9 @@ shannon_config:   unconfig
 ## ARM92xT Systems
 #
 
+a320evb_config :   unconfig
+   @$(MKCONFIG) $(@:_config=) arm arm920t a320evb faraday a320
+
 #
 ## Atmel AT91RM9200 Systems
 #
diff --git a/board/faraday/a320evb/Makefile b/board/faraday/a320evb/Makefile
new file mode 100644
index 000..74f660d
--- /dev/null
+++ b/board/faraday/a320evb/Makefile
@@ -0,0 +1,51 @@
+#
+# (C) Copyright 2000-2006
+# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+
+include $(TOPDIR)/config.mk
+
+LIB= $(obj)lib$(BOARD).a
+
+COBJS  := a320evb.o
+SOBJS  := lowlevel_init.o
+
+SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS   := $(addprefix $(obj),$(COBJS))
+SOBJS  := $(addprefix $(obj),$(SOBJS))
+
+$(LIB):$(obj).depend $(OBJS) $(SOBJS)
+   $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+
+clean:
+   rm -f $(SOBJS) $(OBJS)
+
+distclean: clean
+   rm -f $(LIB) core *.bak $(obj).depend
+
+#
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+###