Re: [U-Boot] [PATCH 0/9] sh: Convert generic board

2016-06-06 Thread Yoshinori Sato
:14 GMT+09:00 Nobuhiro Iwamatsu : > > Hi, > > > > Sorry, my reply was too late. And thanks for your work. > > > > > > > > 2016-05-19 21:26 GMT+09:00 Yoshinori Sato : > >> Hello. > >> This patch series convert generic board for SH. > >>

Re: [U-Boot] [PATCH 0/9] sh: Convert generic board

2016-05-21 Thread Yoshinori Sato
On Sat, 21 May 2016 10:28:42 +0900, Tom Rini wrote: > > [1 ] > On Thu, May 19, 2016 at 09:26:46PM +0900, Yoshinori Sato wrote: > > > Hello. > > This patch series convert generic board for SH. > > Tested on r2dplus target. > > Since I believe you said before

[U-Boot] [PATCH 5/9] sh: Add missing symbol for generic board

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/u-boot.lds | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/sh/cpu/u-boot.lds b/arch/sh/cpu/u-boot.lds index 30c7a9d..4e8b718 100644 --- a/arch/sh/cpu/u-boot.lds +++ b/arch/sh/cpu/u-boot.lds @@ -80,4 +80,5 @@ SECTIONS PROVIDE (bss_end

[U-Boot] [PATCH 9/9] sh: generic board support - Kconfig

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/Kconfig b/arch/Kconfig index ec12013..291e1dc 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -96,6 +96,8 @@ config SANDBOX config SH bool "SuperH architecture"

[U-Boot] [PATCH 6/9] sh: Remove arch specific board.c

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/lib/Makefile | 1 - arch/sh/lib/board.c | 189 --- 2 files changed, 190 deletions(-) delete mode 100644 arch/sh/lib/board.c diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile index f7ae4f8

[U-Boot] [PATCH 0/9] sh: Convert generic board

2016-05-19 Thread Yoshinori Sato
Hello. This patch series convert generic board for SH. Tested on r2dplus target. Yoshinori Sato (9): board_f: Add relocate_code stub board_f: Add SH specific timer_init board_f: if SKIP_RELOC is ture, return from board_init_f board_f: Add SH specific mon_len sh: Add missing symbol for

[U-Boot] [PATCH 2/9] board_f: Add SH specific timer_init

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- common/board_f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/board_f.c b/common/board_f.c index bf768d1..fcc69b8 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -870,7 +870,7 @@ static init_fnc_t init_sequence_f

[U-Boot] [PATCH 7/9] sh: generic board support - startup

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/cpu.c | 9 + arch/sh/cpu/sh2/start.S | 22 -- arch/sh/cpu/sh3/cpu.c | 9 + arch/sh/cpu/sh3/start.S | 21 +++-- arch/sh/cpu/sh4/cpu.c | 9 + arch/sh/cpu/sh4/start.S | 23

[U-Boot] [PATCH 8/9] sh: generic board support - header

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/include/asm/u-boot.h | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/arch/sh/include/asm/u-boot.h b/arch/sh/include/asm/u-boot.h index ea37c24..9e578a6 100644 --- a/arch/sh/include/asm/u-boot.h +++ b/arch/sh/include/asm/u

[U-Boot] [PATCH 1/9] board_f: Add relocate_code stub

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- common/board_f.c | 5 + 1 file changed, 5 insertions(+) diff --git a/common/board_f.c b/common/board_f.c index 109025a..bf768d1 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -826,6 +826,11 @@ __weak int arch_cpu_init_dm(void) return 0

[U-Boot] [PATCH 3/9] board_f: if SKIP_RELOC is ture, return from board_init_f

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- common/board_f.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/board_f.c b/common/board_f.c index fcc69b8..e1122e3 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -1067,7 +1067,8 @@ void board_init_f(ulong boot_flags) #if

[U-Boot] [PATCH 4/9] board_f: Add SH specific mon_len

2016-05-19 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- common/board_f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/board_f.c b/common/board_f.c index e1122e3..f31f2de 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -270,7 +270,7 @@ static int setup_mon_len(void) gd

Re: [U-Boot] Remove sh2, sh3, sh4 architecture?

2016-05-17 Thread Yoshinori Sato
On Mon, 16 May 2016 22:16:35 +0900, Simon Glass wrote: > > Hi, > > On 16 May 2016 at 00:18, Yoshinori Sato wrote: > > On Sun, 15 May 2016 08:19:39 +0900, > > Simon Glass wrote: > >> > >> Hi, > >> > >> On 18 October 2015 at 10:19, Masah

Re: [U-Boot] Remove sh2, sh3, sh4 architecture?

2016-05-15 Thread Yoshinori Sato
te to see SH2 leave since it's becoming the J-Core architecture.. > >> Perhaps someone in the community would like to help out too? > > > > Agree. Jeff talked about that at Dublin. > > > > I haven't seen any activity. Does anyone have an update? > I h

[U-Boot] [PATCH v3] pci: Device scanning range fix

2016-04-24 Thread Yoshinori Sato
The terminal condition in the area where a PCI device is scanned is wrong, and 1f.7 isn't scanned. Signed-off-by: Yoshinori Sato --- drivers/pci/pci-uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c index c7

Re: [U-Boot] [PATCH v2] pci: Device scanning range fix.

2016-04-24 Thread Yoshinori Sato
On Mon, 25 Apr 2016 15:27:19 +0900, Bin Meng wrote: > > Hi Yoshinori, > > On Mon, Apr 25, 2016 at 2:14 PM, Yoshinori Sato > wrote: > > The terminal condition in the area where a PCI device is scanned is wrong, > > and 1f.7 isn't scanned. > > >

[U-Boot] [PATCH v2] pci: Device scanning range fix.

2016-04-24 Thread Yoshinori Sato
The terminal condition in the area where a PCI device is scanned is wrong, and 1f.7 isn't scanned. Changes v2: - update commit message. Signed-off-by: Yoshinori Sato --- drivers/pci/pci-uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci-uclas

[U-Boot] [PATCH] env_ext4: fix build error.

2016-04-18 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- common/env_ext4.c | 20 +++- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/common/env_ext4.c b/common/env_ext4.c index ce748ed..5683890 100644 --- a/common/env_ext4.c +++ b/common/env_ext4.c @@ -25,6 +25,7 @@ #include #include

[U-Boot] [PATCH 2/2] serial_sh: Add standrad SCI (w/o FIFO) support

2016-04-18 Thread Yoshinori Sato
Add support for standard type SCI (without FIFO) port. Signed-off-by: Yoshinori Sato --- doc/device-tree-bindings/serial/sh.txt | 2 +- drivers/serial/serial_sh.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/device-tree-bindings/serial/sh.txt b/doc

[U-Boot] [PATCH 1/2] serial_sh: Device Tree support

2016-04-18 Thread Yoshinori Sato
Add Device Tree bindings. Signed-off-by: Yoshinori Sato --- doc/device-tree-bindings/serial/sh.txt | 6 ++ drivers/serial/serial_sh.c | 28 2 files changed, 34 insertions(+) create mode 100644 doc/device-tree-bindings/serial/sh.txt diff --git a

[U-Boot] [PATCH] pci: Device scanning range fix.

2016-04-18 Thread Yoshinori Sato
Don't lookup pci device 1f.7 Signed-off-by: Yoshinori Sato --- drivers/pci/pci-uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c index c7fbf7b..32590ce 100644 --- a/drivers/pci/pci-uclass.c +++ b/drivers/pc

[U-Boot] [PATCH] mmc_spi: Big-endian support

2015-05-31 Thread Yoshinori Sato
Currently implement always swap for big-endian value. So doesn't work big-endian environment. Signed-off-by: Yoshinori Sato --- drivers/mmc/mmc_spi.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/mmc_spi.c b/drivers/mmc/mmc_spi.c index 5b

[U-Boot] [PATCH v2 2/2] serial_sh: Add standrad SCI (w/o FIFO) support

2015-05-31 Thread Yoshinori Sato
Add support for standard type SCI (without FIFO) port. Changes v2: rebased for v2015.07-rc1 Signed-off-by: Yoshinori Sato --- doc/device-tree-bindings/serial/sh.txt | 2 +- drivers/serial/serial_sh.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/device

[U-Boot] [PATCH v2 1/2] serial_sh: Add OF support

2015-05-31 Thread Yoshinori Sato
Add device tree support. Changes v2: rebased v2015.07-rc1 Signed-off-by: Yoshinori Sato --- doc/device-tree-bindings/serial/sh.txt | 6 ++ drivers/serial/serial_sh.c | 28 2 files changed, 34 insertions(+) create mode 100644 doc/device-tree

Re: [U-Boot] [PATCH 1/2] serial_sh: Add OF support

2015-05-31 Thread Yoshinori Sato
On Mon, 01 Jun 2015 09:08:55 +0900, Nobuhiro Iwamatsu wrote: > > Hi! > > 015-05-21 15:31 GMT+09:00 Yoshinori Sato : > > Add device tree support. > > > > Signed-off-by: Yoshinori Sato > > --- > > doc/device-tree-bindings/serial/sh.txt | 6 ++ > &

[U-Boot] [PATCH 1/2] serial_sh: Add OF support

2015-05-21 Thread Yoshinori Sato
Add device tree support. Signed-off-by: Yoshinori Sato --- doc/device-tree-bindings/serial/sh.txt | 6 ++ drivers/serial/serial_sh.c | 28 2 files changed, 34 insertions(+) create mode 100644 doc/device-tree-bindings/serial/sh.txt diff --git a/doc

[U-Boot] [PATCH 2/2] serial_sh: Add standrad SCI (w/o FIFO) support

2015-05-21 Thread Yoshinori Sato
Add support for standard type SCI (without FIFO) port. Signed-off-by: Yoshinori Sato --- doc/device-tree-bindings/serial/sh.txt | 2 +- drivers/serial/serial_sh.c | 8 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/device-tree-bindings/serial/sh.txt b

Re: [U-Boot] [PATCH] endian dependency fix

2014-02-20 Thread Yoshinori Sato
ed by a colon. > > > > In this case, "mmc: ..." > > > > Ditto in your MS7206SE series. > > > > > > Best Regards > > Masahiro Yamada > > > > ___ > > U-Boot mailing list > > U-Boot@lists.denx.de > > http://lists.denx

[U-Boot] [PATCH] endian dependency fix

2014-02-16 Thread Yoshinori Sato
mmc_spi have dependency of little-endian environment. So doesn't work big-endian environment. Signed-off-by: Yoshinori Sato --- drivers/mmc/mmc_spi.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/mmc_spi.c b/drivers/mmc/mmc_spi.c index fe

[U-Boot] [PATCH v2 6/6] Various update

2014-02-13 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/config.mk | 3 +++ arch/sh/cpu/sh2/config.mk | 4 +++- arch/sh/cpu/sh2/start.S | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/arch/sh/config.mk b/arch/sh/config.mk index 758c070..abd419a 100644 --- a/arch/sh/config.mk

[U-Boot] [PATCH v2 5/6] Module enabler cleanup

2014-02-13 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/cpu.c | 27 --- arch/sh/include/asm/cpu_sh2.h | 3 +++ arch/sh/include/asm/cpu_sh2a.h | 16 3 files changed, 31 insertions(+), 15 deletions(-) create mode 100644 arch/sh/include/asm/cpu_sh2a.h

[U-Boot] [PATCH v2 4/6] SH2A cache support

2014-02-13 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/Makefile | 6 ++ arch/sh/cpu/sh2/cache-sh2a.c | 145 ++ arch/sh/cpu/sh2/cpu.c | 31 - arch/sh/cpu/sh2/nocache.c | 36 +++ arch/sh/include/asm/cpu_sh2.h | 10 --- 5

[U-Boot] [PATCH v2 3/6] Add SH7206 support

2014-02-13 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/include/asm/cpu_sh2.h| 2 ++ arch/sh/include/asm/cpu_sh7206.h | 75 2 files changed, 77 insertions(+) create mode 100644 arch/sh/include/asm/cpu_sh7206.h diff --git a/arch/sh/include/asm/cpu_sh2.h b/arch/sh

[U-Boot] [PATCH v2 1/6] Add MS7206SE support

2014-02-13 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- board/renesas/ms7206se/Makefile| 10 +++ board/renesas/ms7206se/lowlevel_init.S | 124 + board/renesas/ms7206se/ms7206se.c | 43 boards.cfg | 1 + include/configs

[U-Boot] [PATCH v2 0/6] Add target board MS7206SE

2014-02-13 Thread Yoshinori Sato
Hi. I updated MS7206SE support. Please review and comment Changes v2 cleanup for checkpatch.pl Yoshinori Sato (6): Add MS7206SE support Add MS7206SE ethernet support Add SH7206 support SH2A cache support Module enabler cleanup Various update arch/sh/config.mk

[U-Boot] [PATCH v2 2/6] Add MS7206SE ethernet support

2014-02-13 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- drivers/net/smc9.h | 31 ++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/drivers/net/smc9.h b/drivers/net/smc9.h index 9deee9b..24b2b51 100644 --- a/drivers/net/smc9.h +++ b/drivers/net/smc9.h

Re: [U-Boot] [PATCH 1/6] Add MS7206SE support.

2014-02-12 Thread Yoshinori Sato
At Wed, 12 Feb 2014 15:50:12 +0900, Nobuhiro Iwamatsu wrote: > > Hi, Sato-san. > > 2014-02-11 21:24 GMT+09:00 Yoshinori Sato : > > Hi. > > This patch series add to Renesas MS7206SE board support. > > And SH2A targets various update. > > Please comment. >

[U-Boot] [PATCH 6/6] Update build options.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/config.mk | 3 +++ arch/sh/cpu/sh2/config.mk | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/arch/sh/config.mk b/arch/sh/config.mk index 758c070..abd419a 100644 --- a/arch/sh/config.mk +++ b/arch/sh/config.mk @@ -11,6

[U-Boot] [PATCH 4/6] module enabler cleanup.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/cpu.c | 27 --- arch/sh/include/asm/cpu_sh2.h | 4 +++- arch/sh/include/asm/cpu_sh2a.h | 19 +++ 3 files changed, 34 insertions(+), 16 deletions(-) create mode 100644 arch/sh/include/asm

[U-Boot] [PATCH 1/6] Add MS7206SE support.

2014-02-11 Thread Yoshinori Sato
Hi. This patch series add to Renesas MS7206SE board support. And SH2A targets various update. Please comment. Signed-off-by: Yoshinori Sato --- board/renesas/ms7206se/Makefile| 10 +++ board/renesas/ms7206se/lowlevel_init.S | 124 + board/renesas

[U-Boot] [PATCH 5/6] Add SH7206 support.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/include/asm/cpu_sh2.h| 2 ++ arch/sh/include/asm/cpu_sh7206.h | 75 2 files changed, 77 insertions(+) create mode 100644 arch/sh/include/asm/cpu_sh7206.h diff --git a/arch/sh/include/asm/cpu_sh2.h b/arch/sh

[U-Boot] [PATCH 2/6] SH2A cache support.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/Makefile | 6 ++ arch/sh/cpu/sh2/cache-sh2a.c | 143 ++ arch/sh/cpu/sh2/cpu.c | 31 - arch/sh/cpu/sh2/nocache.c | 37 +++ arch/sh/include/asm/cpu_sh2.h | 9 --- 5

[U-Boot] [PATCH 3/6] fix typo.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/start.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/sh/cpu/sh2/start.S b/arch/sh/cpu/sh2/start.S index 5b92a01..efda8e2 100644 --- a/arch/sh/cpu/sh2/start.S +++ b/arch/sh/cpu/sh2/start.S @@ -14,7 +14,7

[U-Boot] [PATCH 3/6] fix typo.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/start.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/sh/cpu/sh2/start.S b/arch/sh/cpu/sh2/start.S index 5b92a01..efda8e2 100644 --- a/arch/sh/cpu/sh2/start.S +++ b/arch/sh/cpu/sh2/start.S @@ -14,7 +14,7

[U-Boot] [PATCH 2/6] SH2A cache support.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/Makefile | 6 ++ arch/sh/cpu/sh2/cache-sh2a.c | 143 ++ arch/sh/cpu/sh2/cpu.c | 31 - arch/sh/cpu/sh2/nocache.c | 37 +++ arch/sh/include/asm/cpu_sh2.h | 9 --- 5

[U-Boot] [PATCH 1/6] Add MS7206SE support.

2014-02-11 Thread Yoshinori Sato
Hi. This patch series add to Renesas MS7206SE board support. And SH2A targets various update. Please comment. Signed-off-by: Yoshinori Sato --- board/renesas/ms7206se/Makefile| 10 +++ board/renesas/ms7206se/lowlevel_init.S | 124 + board/renesas

[U-Boot] [PATCH 6/6] Update build options.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/config.mk | 3 +++ arch/sh/cpu/sh2/config.mk | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/arch/sh/config.mk b/arch/sh/config.mk index 758c070..abd419a 100644 --- a/arch/sh/config.mk +++ b/arch/sh/config.mk @@ -11,6

[U-Boot] [PATCH 5/6] Add SH7206 support.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/include/asm/cpu_sh2.h| 2 ++ arch/sh/include/asm/cpu_sh7206.h | 75 2 files changed, 77 insertions(+) create mode 100644 arch/sh/include/asm/cpu_sh7206.h diff --git a/arch/sh/include/asm/cpu_sh2.h b/arch/sh

[U-Boot] [PATCH 4/6] module enabler cleanup.

2014-02-11 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch/sh/cpu/sh2/cpu.c | 27 --- arch/sh/include/asm/cpu_sh2.h | 4 +++- arch/sh/include/asm/cpu_sh2a.h | 19 +++ 3 files changed, 34 insertions(+), 16 deletions(-) create mode 100644 arch/sh/include/asm

[U-Boot] [PATCH] sh_eth.c: EDMAC descriptor leak

2011-05-15 Thread Yoshinori Sato
sc_malloc) + /* Already allocated. re-using it */ + return 0; /* * Allocate rx descriptors. They must be RX_DESC_SIZE bytes aligned */ -- Yoshinori Sato ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.d

[U-Boot] [PATCH 2/5] Add h8300 architecture part2 - headers

2011-03-02 Thread Yoshinori Sato
This part h8300 cpu support (2/3). Signed-off-by: Yoshinori Sato --- arch/h8300/include/asm/bitops.h | 186 ++ arch/h8300/include/asm/byteorder.h |6 + arch/h8300/include/asm/config.h | 26 + arch/h8300/include/asm/global_data.h | 55

[U-Boot] [PATCH 0/5] Add target EDOSK2674

2011-03-02 Thread Yoshinori Sato
Hi lists, This patches added new target EDOSK2674. Please comments. Thanks. Yoshinori Sato (5): Add h8300 architecture part1 - core Add h8300 architecture part2 - headers Add h8300 architecture part3 - misc standard SCI support Add target edosk2674 arch/h8300/config.mk

[U-Boot] [PATCH 5/5] Add target edosk2674

2011-03-02 Thread Yoshinori Sato
This part EDOSK2674 support more infomation is http://www.renesas.eu/products/tools/introductory_evaluation_tools/evaluation_development_os_kits/edosk2674r/edosk2674r_software_tools_root.jsp Signed-off-by: Yoshinori Sato --- board/edosk2674/Makefile| 48 ++ board

[U-Boot] [PATCH 4/5] standard SCI support

2011-03-02 Thread Yoshinori Sato
h8300 have simlar sh serial I/F. It without FIFO. This changes support of no FIFO. Signed-off-by: Yoshinori Sato --- drivers/serial/serial_sh.c | 74 +++--- drivers/serial/serial_sh.h | 93 +++- 2 files changed, 98

[U-Boot] [PATCH 1/5] Add h8300 architecture part1 - core

2011-03-01 Thread Yoshinori Sato
This part of h8300 cpu support Signed-off-by: Yoshinori Sato --- arch/h8300/config.mk | 35 arch/h8300/cpu/h8300s/Makefile | 53 arch/h8300/cpu/h8300s/config.mk| 26 ++ arch/h8300/cpu/h8300s/cpu.c| 83 +++ arch

[U-Boot] [PATCH 3/5] Add h8300 architecture part3 - misc

2011-03-01 Thread Yoshinori Sato
This part h8300 cpu support (3/3) Signed-off-by: Yoshinori Sato --- common/cmd_bdinfo.c | 20 common/cmd_bootm.c |2 ++ examples/standalone/Makefile |3 +-- examples/standalone/stubs.c | 20 ++-- include/image.h

Re: [U-Boot] [PATCH] xyzModem.c Packet buffer dynamic allocate

2010-10-01 Thread Yoshinori Sato
At Fri, 01 Oct 2010 09:57:49 +0200, Wolfgang Denk wrote: > > Dear Yoshinori Sato, > > In message <87sk0q1mnf.wl%ys...@users.sourceforge.jp> you wrote: > > > > It changes reduce bss usage. > > ... and increases the load on the malloc arean. > >

[U-Boot] [PATCH] xyzModem.c Packet buffer dynamic allocate

2010-09-30 Thread Yoshinori Sato
Hello. It changes reduce bss usage. Ymodem receive buffer dinamic allocation. Signed-off-by: Yoshinori Sato --- common/cmd_load.c |1 + common/xyzModem.c | 17 ++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/common/cmd_load.c b/common/cmd_load.c index