[U-Boot] [PATCH 1/3 v2] sh: add support for sh7753evb board

2013-12-17 Thread Shimoda, Yoshihiro
The SH7753 EVB board has SH7753, 512MB DDR3-SDRAM, SPI ROM, Gigabit Ethernet, and eMMC. This patch support the following functions: - 512MB DDR3-SDRAM, SCIF4, SPI ROM, Gigabit Ethernet, eMMC Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- about v2: - The patch doesn't

[U-Boot] [PATCH 3/3 v2] serial_sh: add support for SH7753

2013-12-17 Thread Shimoda, Yoshihiro
Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- about v2: - The patch doesn't remove the CONFIG_CPU_SH7752. drivers/serial/serial_sh.h |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/serial/serial_sh.h b/drivers/serial/serial_sh.h

[U-Boot] [PATCH 2/3 v2] net: sh-eth: add support for SH7753

2013-12-17 Thread Shimoda, Yoshihiro
SH7753 has two fast ethernet controllers and two gigabit ethernet controllers. It is similar to SH7757. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- about v2: - The patch doesn't remove the CONFIG_CPU_SH7752. drivers/net/sh_eth.h |8 ++-- 1 files changed, 6

[U-Boot] [PATCH 3/3] serial_sh: add support for the SH7753 instead of SH7752

2013-12-16 Thread Shimoda, Yoshihiro
This patch changes the support for SH7752 to SH7753. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/serial/serial_sh.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/serial/serial_sh.h b/drivers/serial/serial_sh.h index

[U-Boot] [PATCH 2/3] net: sh-eth: add support for SH7753 instead of SH7752

2013-12-16 Thread Shimoda, Yoshihiro
SH7753 has two fast ethernet controllers and two gigabit ethernet controllers. It is similar to SH7757. This patch changes the support for SH7752 to SH7753. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/net/sh_eth.h |2 +- 1 files changed, 1 insertions(+), 1

[U-Boot] [PATCH] sh: fix trigger_address_error()

2012-11-04 Thread Shimoda, Yoshihiro
The function should set BL bit, but it should not clear other flags. So, the patch uses set_bl_bit() instead of a local asm code. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- arch/sh/include/asm/system.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

[U-Boot] [PATCH] serial_sh: Add support Renesas SH7752

2012-11-04 Thread Shimoda, Yoshihiro
Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/serial/serial_sh.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/serial/serial_sh.h b/drivers/serial/serial_sh.h index a4e..7e38a3f 100644 --- a/drivers/serial/serial_sh.h +++

[U-Boot] [PATCH] sh: add support for sh7752evb board

2012-11-04 Thread Shimoda, Yoshihiro
The R0P7752C0RZ board has SH7752, 512MB DDR3-SDRAM, SPI ROM, Gigabit Ethernet, and eMMC. This patch supports the following functions: - 512MB DDR3-SDRAM, SCIF4, SPI ROM, Gigabit Ethernet, eMMC Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- MAINTAINERS

[U-Boot] [PATCH] net: sh_eth: add support for SH7752

2012-11-04 Thread Shimoda, Yoshihiro
SH7752 has two fast ethernet controllers and two gigabit ethernet controllers. It is similar to SH7757. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/net/sh_eth.c |4 ++-- drivers/net/sh_eth.h |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff

Re: [U-Boot] [PATCH 1/4] net: sh_eth: clean up for the SH7757's code

2012-07-23 Thread Shimoda, Yoshihiro
Hi, Thank you for the reply. I will wait until it is merged. Best regards, Yoshihiro Shimoda 2012/07/23 15:27, Nobuhiro Iwamatsu wrote: Hi, Perhaps, your patch already are in Joe' patch queue, I think. http://patchwork.ozlabs.org/patch/167486/ Nobuhiro 2012/7/23 Shimoda, Yoshihiro

[U-Boot] [PATCH] sh: modify checkcpu() for SH-4A

2012-07-23 Thread Shimoda, Yoshihiro
Even if using CPU is SH-4A, the previous code always put SH4. This patch fixes it. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- arch/sh/cpu/sh4/cpu.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/sh/cpu/sh4/cpu.c b/arch/sh/cpu/sh4/cpu.c

Re: [U-Boot] [PATCH 1/4] net: sh_eth: clean up for the SH7757's code

2012-07-22 Thread Shimoda, Yoshihiro
nobuhiro.iwamatsu...@renesas.com Acked-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com 2012/6/27 Shimoda, Yoshihiro yoshihiro.shimoda...@renesas.com: The SH7757's ETHER can work using the SH7724's setting. So, the patch modifies it. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda

[U-Boot] [PATCH 1/4] net: sh_eth: clean up for the SH7757's code

2012-06-26 Thread Shimoda, Yoshihiro
The SH7757's ETHER can work using the SH7724's setting. So, the patch modifies it. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/net/sh_eth.c |9 + drivers/net/sh_eth.h | 14 ++ 2 files changed, 3 insertions(+), 20 deletions(-) diff

[U-Boot] [PATCH 2/4] net: sh_eth: add SH_ETH_TYPE_ condition

2012-06-26 Thread Shimoda, Yoshihiro
At the moment, the driver supports the following CPUs: - GETHER (Gigabit Ethernet) : SH7763, SH7734 - ETHER (Fast Ethernet): SH7724, SH7757 And the driver had the following #if: #if defined(CONFIG_CPU_SH7763) || defined(CONFIG_CPU_SH7734) #if !defined(CONFIG_CPU_SH7757)

[U-Boot] [PATCH 3/4] net: sh_eth: modify the definitions of regsiter

2012-06-26 Thread Shimoda, Yoshihiro
The previous code had many similar definitions in each CPU. This patch borrows from the sh_eth driver of Linux kernel. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/net/sh_eth.c | 108 - drivers/net/sh_eth.h | 331

[U-Boot] [PATCH 4/4] net: sh_eth: add support for SH7757's GETHER

2012-06-26 Thread Shimoda, Yoshihiro
SH7757 has 2 ETHERs and 2 GETHERs. This patch supports the SH7757's GETHER. If CONFIG_SH_ETHER_USE_GETHER is defined using SH7757, the driver handles the GETHER. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/net/sh_eth.h |9 + 1 files changed, 9

[U-Boot] net: sh_eth: fix build error when CONFIG_CPU_SH7757 is set

2012-06-21 Thread Shimoda, Yoshihiro
This patch fixes the following build error when CONFIG_CPU_SH7757 is set: In file included from sh_eth.c:32: sh_eth.h:466: error: expected identifier before ‘}’ token sh_eth.c: In function ‘sh_eth_config’: sh_eth.c:380: error: ‘ECSIPR_BRCRXIP’ undeclared (first use in this function) sh_eth.c:380:

Re: [U-Boot] net: sh_eth: fix build error when CONFIG_CPU_SH7757 is set

2012-06-21 Thread Shimoda, Yoshihiro
Hi, 2012/06/21 15:51, Nobuhiro Iwamatsu wrote: Hi, This patch already send to this ML http://lists.denx.de/pipermail/u-boot/2012-June/125789.html Thank you for the information. I will test the patch. Best regards, Yoshihiro Shimoda ___ U-Boot

Re: [U-Boot] [PATCH] net/sh-ether: Fix build by removing ECSIPR_BRCRXIP and other

2012-06-21 Thread Shimoda, Yoshihiro
Hi, 2012/06/06 11:39, Nobuhiro Iwamatsu wrote: When support sh7734 of sh-ether, ECSIPR_BRCRXIP and other were removed. Therefore SH7757 and SH7724 can not build. This revise this probelem. Signed-off-by: Nobuhiro Iwamatsu iwama...@nigauri.org I tested this patch. And, it is good.

[U-Boot] [PATCH] mmc: sh_mmcif: enable MMC_MODE_HC

2012-06-07 Thread Shimoda, Yoshihiro
The controller can control high capacity cards. So, the patch adds the flag. If the flag is not set, mmcinfo will fail when a high capacity card is used. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/mmc/sh_mmcif.c |2 +- 1 files changed, 1 insertions(+), 1

[U-Boot] [PATCH] mmc: fix capacity calculation when EXT_CSD_SEC_CNT is used

2012-06-07 Thread Shimoda, Yoshihiro
Since the type of ext_csd was array of char, the following calculation might fail when the value of ext_csd[EXT_CSD_SEC_CNT] was minus. capacity = ext_csd[EXT_CSD_SEC_CNT] 0 | ext_csd[EXT_CSD_SEC_CNT + 1] 8 | ext_csd[EXT_CSD_SEC_CNT + 2]

[U-Boot] [PATCH] sh_spi: Add 4 chip select signals supporting

2012-03-05 Thread Shimoda, Yoshihiro
The module has 4 chip select signals. This patch supports it. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- drivers/spi/sh_spi.c | 19 --- drivers/spi/sh_spi.h |4 +++- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git

[U-Boot] [PATCH] sh: sh7757lcr: add supporting for MMCIF

2012-03-05 Thread Shimoda, Yoshihiro
The sh7757lcr has 2GByte eMMC chip. This patch supports it. Signed-off-by: Yoshihiro Shimoda yoshihiro.shimoda...@renesas.com --- board/renesas/sh7757lcr/sh7757lcr.c |5 + doc/README.sh7757lcr|1 + include/configs/sh7757lcr.h | 11 +++ 3 files