[U-Boot] [PATCH v5 1/3] arm: A320: driver for FTMAC100 ethernet controller

2009-08-09 Thread ratbert . chuang
From: Po-Yu Chuang This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board. Signed-off-by: Po-Yu Chuang --- drivers/net/Makefile |1 + drivers/net/ftmac100.c | 278 drivers/net/ftmac100.h | 154 +

[U-Boot] [PATCH v5 2/3] arm: A320: driver for FTRTC010 real time clock

2009-08-09 Thread ratbert . chuang
From: Po-Yu Chuang This patch adds an FTRTC010 driver for Faraday A320 evaluation board. Signed-off-by: Po-Yu Chuang --- drivers/rtc/Makefile |1 + drivers/rtc/ftrtc010.c | 124 2 files changed, 125 insertions(+), 0 deletions(-) create m

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

2009-08-09 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

[U-Boot] [PATCH v6 1/2] arm: A320: driver for FTRTC010 real time clock

2009-08-19 Thread ratbert . chuang
From: Po-Yu Chuang This patch adds an FTRTC010 driver for Faraday A320 evaluation board. Signed-off-by: Po-Yu Chuang --- drivers/rtc/Makefile |1 + drivers/rtc/ftrtc010.c | 124 2 files changed, 125 insertions(+), 0 deletions(-) create m

[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

[U-Boot] [PATCH v6 1/2 resend] arm: A320: driver for FTRTC010 real time clock

2009-09-01 Thread ratbert . chuang
From: Po-Yu Chuang This patch adds an FTRTC010 driver for Faraday A320 evaluation board. Signed-off-by: Po-Yu Chuang --- drivers/rtc/Makefile |1 + drivers/rtc/ftrtc010.c | 124 2 files changed, 125 insertions(+), 0 deletions(-) create m

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

2009-09-01 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

[U-Boot] [PATCH] [PATCH v2] issue write command to base for JEDEC flash

2009-07-10 Thread ratbert . chuang
From: Po-Yu Chuang For JEDEC flash, we should issue word programming command relative to base address rather than sector base address. Original source makes SST Flash fails to program sectors which are not on the 0x1 boundaries. e.g. SST39LF040 uses addr1=0x and addr2=0x2AAA, however, ea

[U-Boot] [PATCH] ignore tags

2009-07-10 Thread ratbert . chuang
From: Po-Yu Chuang Signed-off-by: Po-Yu Chuang --- .gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index e13fc96..8ccd42a 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ series cscope.* # tags files +/tags /ctags /eta

[U-Boot] [PATCH] arm: get_sp() should always be compiled

2010-11-01 Thread ratbert . chuang
From: Po-Yu Chuang get_sp() was incorrectly excluded if none of CONFIG_SETUP_MEMORY_TAGS CONFIG_CMDLINE_TAG CONFIG_INITRD_TAG CONFIG_SERIAL_TAG CONFIG_REVISION_TAG were defined. Signed-off-by: Po-Yu Chuang --- arch/arm/lib/bootm.c |4 +--- 1 files changed, 1 insertions(+), 3 dele

[U-Boot] [PATCH 1/2] arm: a320 timer: move static data to global_data struct

2010-11-01 Thread ratbert . chuang
From: Po-Yu Chuang timer.c used static data and are called before relocation. Move all static variables into global_data structure. Also cleanup timer.c from unused stubs and make it truly use 64 bit tick values. Based on Reinhard Meyer 's patch 5dca710a3d7703e41da0e9894f2d71f9e25bea6b Signed-o

[U-Boot] [PATCH 2/2] arm: a320evb: fixes for relocation support

2010-11-01 Thread ratbert . chuang
From: Po-Yu Chuang - add CONFIG_SYS_SDRAM_BASE and CONFIG_SYS_INIT_SP_ADDR - do not update gd->bd in dram_init() because bd is unavailable then Signed-off-by: Po-Yu Chuang --- board/faraday/a320evb/a320evb.c |3 +-- include/configs/a320evb.h | 10 +++--- 2 files changed, 8 inse

[U-Boot] [PATCH] get_ram_size: memory content of base address was not restored

2010-05-25 Thread ratbert . chuang
From: Po-Yu Chuang Signed-off-by: Po-Yu Chuang --- common/memsize.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/memsize.c b/common/memsize.c index 6c275c9..99469ab 100644 --- a/common/memsize.c +++ b/common/memsize.c @@ -74,6 +74,7 @@ long get_ram_size(volat

[U-Boot] [PATCH] fix bug in get_ram_size()

2010-06-28 Thread ratbert . chuang
From: Po-Yu Chuang memory content of base address was not restored Signed-off-by: Po-Yu Chuang --- common/memsize.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/memsize.c b/common/memsize.c index 6c275c9..99469ab 100644 --- a/common/memsize.c +++ b/common/mem