Re: [U-Boot] [PATCH] MAINTAINERS: git-mailrc: Update the maintainer for rmobile

2017-12-07 Thread Nobuhiro Iwamatsu
Hi, 2017-12-01 18:07 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > On 12/01/2017 06:02 AM, Nobuhiro Iwamatsu wrote: >> Adding Marek Vasut to MAINTAINERS and git-mailrc for the Renesas ARM rmobile >> architecture. >> >> Signed-off-by: Nobuhiro Iwamatsu <i

[U-Boot] [PATCH] net: sh-eth: Add to Kconfig and convert

2017-11-30 Thread Nobuhiro Iwamatsu
This adds SH_ETHER to drivers/net/Kconfig and convert to Kconfig. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- configs/ap_sh4a_4a_defconfig | 3 ++- configs/armadillo-800eva_defconfig | 3 ++- configs/ecovec_defconfig | 3 ++- configs/espt_defconfig

[U-Boot] [PATCH] cmd: i2c: Fix use sdram sub command with CONFIG_DM_I2C

2017-11-30 Thread Nobuhiro Iwamatsu
sdram sub command of i2c command does not support Drivers Model. This adds Drivers Model support to sdram sub command. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- cmd/i2c.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/cmd/i2c.c b/cmd

[U-Boot] [PATCH] MAINTAINERS: git-mailrc: Update the maintainer for rmobile

2017-11-30 Thread Nobuhiro Iwamatsu
Adding Marek Vasut to MAINTAINERS and git-mailrc for the Renesas ARM rmobile architecture. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- doc/git-mailrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/git-mailrc b/doc/git-mailrc index 5a365cddd9..f2fc

[U-Boot] [PATCH] net: sh-eth: Fix misaligned cache operation warning

2017-11-30 Thread Nobuhiro Iwamatsu
When we using network on board using sh-eth, it prints a lot of "CACHE: Misaligned operation at range" messages. This commit fixes this problem. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- drivers/net/sh_eth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletion

[U-Boot] [PATCH v2 2/3] ARM: rmobile: Move CONFIG_SYS_TEXT_BASE to Kconfig

2017-11-30 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- v2: no change. board/atmark-techno/armadillo-800eva/Kconfig | 2 ++ board/kmc/kzm9g/Kconfig | 3 +++ board/renesas/alt/Kconfig| 4 board/renesas/blanche/Kconfig

[U-Boot] [PATCH v2 3/3] ARM: rmobile: Move config of SoCs to Kconfig

2017-11-30 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- v2: no change. arch/arm/mach-rmobile/Kconfig.32 | 31 +++ include/configs/alt.h | 1 - include/configs/armadillo-800eva.h | 1 - include/configs/gose.h | 1 - include/c

[U-Boot] [PATCH v2 1/3] ARM: rmobile: Use CONFIG_SYS_BOARD instaed of CONFIG_ARCH_RMOBILE_BOARD_STRING

2017-11-30 Thread Nobuhiro Iwamatsu
CONFIG_SYS_BOARD is provided by Kconfig, this has the same value as CONFIG_ARCH_RMOBILE_BOARD_STRING provided in .h. This switches from CONFIG_ARCH_RMOBILE_BOARD_STRING to CONFIG_SYS_BOARD. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- v2: rebase. board/atmark-techno/arm

Re: [U-Boot] [PATCH 1/3] ARM: rmobile: Use CONFIG_SYS_BOARD instaed of CONFIG_ARCH_RMOBILE_BOARD_STRING

2017-11-30 Thread Nobuhiro Iwamatsu
Hi, 2017-12-01 8:06 GMT+09:00 Nobuhiro Iwamatsu <iwama...@nigauri.org>: > CONFIG_SYS_BOARD is provided by Kconfig, this has the same value as > CONFIG_ARCH_RMOBILE_BOARD_STRING provided in .h. > This switches from CONFIG_ARCH_RMOBILE_BOARD_STRING to CONFIG_SYS_BOARD. Sorry, fo

[U-Boot] [PATCH] net: sh-eth: Change structure used in read/write function to struct sh_eth_info

2017-11-30 Thread Nobuhiro Iwamatsu
This changes Change structure used in sh_eth_read and sh_eth_write function from struct sh_eth_dev to struct sh_eth_info. This is necessary to convert to Drivers model. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- drivers/net/sh_eth.c

[U-Boot] [PATCH] net: sh-eth: Fix coding style checked by checkpatch.pl

2017-11-30 Thread Nobuhiro Iwamatsu
declaration - Fix format of block comments - Add a blank line after function/struct/union/enum declarations Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- drivers/net/sh_eth.c | 29 ++--- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/drive

[U-Boot] [PATCH] net: sh-eth: Remove bd_t from sh_eth_config()

2017-11-30 Thread Nobuhiro Iwamatsu
bd_t is not used in sh_eth_config(). This deletes bd_t from sh_eth_config(). Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- drivers/net/sh_eth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 5c62

[U-Boot] [PATCH 3/3] ARM: rmobile: Move config of SoCs to Kconfig

2017-11-30 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- arch/arm/mach-rmobile/Kconfig.32 | 31 +++ include/configs/alt.h | 1 - include/configs/armadillo-800eva.h | 1 - include/configs/gose.h | 1 - include/configs/koe

[U-Boot] [PATCH 2/3] ARM: rmobile: Move CONFIG_SYS_TEXT_BASE to Kconfig

2017-11-30 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- board/atmark-techno/armadillo-800eva/Kconfig | 2 ++ board/kmc/kzm9g/Kconfig | 3 +++ board/renesas/alt/Kconfig| 4 board/renesas/blanche/Kconfig| 4 board/renesa

[U-Boot] [PATCH 1/3] ARM: rmobile: Use CONFIG_SYS_BOARD instaed of CONFIG_ARCH_RMOBILE_BOARD_STRING

2017-11-30 Thread Nobuhiro Iwamatsu
CONFIG_SYS_BOARD is provided by Kconfig, this has the same value as CONFIG_ARCH_RMOBILE_BOARD_STRING provided in .h. This switches from CONFIG_ARCH_RMOBILE_BOARD_STRING to CONFIG_SYS_BOARD. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- board/atmark-techno/armadillo-800eva/arm

Re: [U-Boot] [PATCH v2 2/3] net: sh-eth: remove sh_eth_offset_rz table

2017-11-12 Thread Nobuhiro Iwamatsu
ter adding the PIR register, the table is EXACTLY the same as > sh_eth_offset_gigabit, so there is no value to it. > > Therefore, just delete it use the gigabit one. > > Signed-off-by: Chris Brandt <chris.bra...@renesas.com> Acked-by: Nobuhiro Iwamatsu <iwama

Re: [U-Boot] [PATCH v2 3/3] net: miiphybb: fix casting error

2017-11-12 Thread Nobuhiro Iwamatsu
; Fixes: dfcc496ed7e2 ("net: mii: Changes not made by spatch") > Signed-off-by: Chris Brandt <chris.bra...@renesas.com> Acked-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> Best regards, Nobuhiro > --- > drivers/net/phy/miiphybb.c | 2 +- > 1 file changed, 1 inser

Re: [U-Boot] [PATCH v2 1/3] net: sh-eth: fix inl and outl definitions

2017-11-12 Thread Nobuhiro Iwamatsu
> > Signed-off-by: Chris Brandt <chris.bra...@renesas.com> Acked-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/net/sh_eth.h | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/sh_eth.h b/drivers/net/sh_eth.h >

Re: [U-Boot] Where should Renesas RZ/A go under arch/arm/ ????

2017-11-12 Thread Nobuhiro Iwamatsu
ept that directory name. I >> asked if/when they would rename it, but at the moment, there is not plan >> as not to break anything. >> >> Maybe we can compromise on everything in mach-renesas?? > > OK, I can go with mach-renesas, thanks again! +1 Chirs,: The reason w

Re: [U-Boot] [PATCH] net: ravb: Fix reset GPIO handling

2017-11-12 Thread Nobuhiro Iwamatsu
path, otherwise U-Boot will crash. Thanks for this patch. I was just struggling with this problem. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Joe Hershberger <joe.hershber...@ni.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Acked-by

Re: [U-Boot] [PATCH] clk: rmobile: Add R8A7796 xHCI clock

2017-11-12 Thread Nobuhiro Iwamatsu
Hi, 2017-11-11 7:19 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Add xHCI entry into the clock tables, so that the xHCI USB driver > can enable the clock for the xHCI block via clock framework. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > C

Re: [U-Boot] [PATCH] ARM: rmobile: Enable xHCI on RCar Gen3 boards

2017-10-16 Thread Nobuhiro Iwamatsu
Hi, 2017-10-15 22:02 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Enable the XHCI support on all boards. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobile branch. Thanks

Re: [U-Boot] [PATCH] [RFC] MAINTAINERS: Add myself as RCar/RMobile comaintainer

2017-10-16 Thread Nobuhiro Iwamatsu
Hi, 2017-10-15 21:53 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > To help out with the RCar/RMobile upstreaming, I'm adding myself > as the RCar/RMobile maintainer. Thanks for your help. Acked-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> > > Signed-off-by: Marek

[U-Boot] Please pull u-boot-sh/rmobile branch

2017-10-10 Thread Nobuhiro Iwamatsu
Hi, Tom. The following changes since commit 37a7908137a8c904f43c83f3e6c269cd51bf6126: ARM: dts: rmobile: Update DTS to match Linux 4.13 (2017-09-12 23:01:51 +0200) are available in the git repository at: git://git.denx.de/u-boot-sh.git rmobile for you to fetch changes up to

Re: [U-Boot] [PATCH] ARM: rmobile: Enable DM regulator support

2017-09-24 Thread Nobuhiro Iwamatsu
<marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> I can not apply this patch by patch for configs/r8a7795_ulcb_defconfig. Because this patch requires CONFIG_MMC_UNIPHIER in configs / r8a7795_ ulcb_defconfig. I could not find the patch that made this fix. If you

Re: [U-Boot] [PATCH 6/6] usb: Drop the EHCI RCar Gen3

2017-09-23 Thread Nobuhiro Iwamatsu
Hi, 2017-09-13 2:07 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Since we use EHCI generic driver on RCar Gen3 , this driver is useless. > Remove it. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org

Re: [U-Boot] [PATCH] ARM: dts: rmobile: Update DTS to match Linux 4.13

2017-09-22 Thread Nobuhiro Iwamatsu
ek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobile branch. Thanks, Nobuhiro > --- > arch/arm/dts/r8a7795-h3ulcb.dts | 342 +--- > arch/arm/dts/r8a7795-salvator-x.dts | 565 +++-

Re: [U-Boot] [PATCH] serial: serial_sh: take into account port->clk_mode for SH7785/7786

2017-09-22 Thread Nobuhiro Iwamatsu
;thomas.petazz...@free-electrons.com> > > Any comments on this patch ? Sorry, reply is too late. Applied, thanks. > > Thanks, > > Thomas > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux and Kernel engineering > http://free-electrons.com Best regards, Nobu

Re: [U-Boot] [PATCH] ARM: rmobile: dts: Add XHCI USB node to r8a7796

2017-09-22 Thread Nobuhiro Iwamatsu
once the nodes hit mainline, this DT should be resynched. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobile branch. Thanks, Nobuhiro > --- > arch/arm/dts/r8a7796.dtsi | 8 +++- &

Re: [U-Boot] [PATCH] ARM: rmobile: Move CONFIG_CMD_ from rcar-gen3-common to configs

2017-09-22 Thread Nobuhiro Iwamatsu
Hi, 2017-09-13 2:08 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Just move those config options from macros to configs. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobi

Re: [U-Boot] [PATCH 4/6] ARM: rmobile: Enable EHCI generic on Salvator-X

2017-09-22 Thread Nobuhiro Iwamatsu
Hi, 2017-09-13 2:07 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Enable the EHCI generic driver, which is superior to ad-hoc SoC specific one. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Appl

Re: [U-Boot] [PATCH 3/6] ARM: rmobile: Move HSUSB configuration to board on ULCB

2017-09-22 Thread Nobuhiro Iwamatsu
rd > file until there is a proper infrastructure and driver for the HSUSB > block. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobile branch. Thanks, Nobuhiro > --- > board/renesas/ulc

Re: [U-Boot] [PATCH 1/6] ARM: rmobile: dts: Add EHCI USB nodes to r8a7796

2017-09-22 Thread Nobuhiro Iwamatsu
once the nodes hit mainline, this DT should be resynched. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobile branch. Thanks, Nobuhiro > --- > arch/arm/dts/r8a7796.dtsi | 51 > +

Re: [U-Boot] [PATCH 2/6] ARM: rmobile: Move HSUSB configuration to board on Salvator-X

2017-09-22 Thread Nobuhiro Iwamatsu
rd > file until there is a proper infrastructure and driver for the HSUSB > block. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> Applied to rmobile branch. Thanks, Nobuhiro > --- > board/renesas/sa

[U-Boot] Please pull u-boot-sh/rmobile branch

2017-09-04 Thread Nobuhiro Iwamatsu
+++ board/renesas/ulcb/ulcb.c | 11 +++ 3 files changed, 48 insertions(+), 16 deletions(-) -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG ID: 40AD1FA6 ___ U-Boot mailing list U-Boot@lists.denx.de https

[U-Boot] Please pull u-boot-sh/master branch

2017-08-25 Thread Nobuhiro Iwamatsu
/env_embedded.o into the link arch/sh/cpu/u-boot.lds | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG ID: 40AD1FA6 ___ U-Boot mailing list U-Boot@lists.denx.de https

[U-Boot] [PATCH] README: Fix typo in description of CONFIG_OF_EMBED

2017-08-25 Thread Nobuhiro Iwamatsu
The correct name is 'gd->fdt_blob', not 'gd->blob'. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> CC: Simon Glass <s...@chromium.org> --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 1edf3dbbd8..6adbe6b435 100644

[U-Boot] Please pull u-boot-sh/rmobile branch

2017-08-25 Thread Nobuhiro Iwamatsu
+ configs/r8a7796_salvator-x_defconfig | 4 ++ configs/r8a7796_ulcb_defconfig| 3 + drivers/clk/renesas/clk-rcar-gen3.c | 129 +- 9 files changed, 120 insertions(+), 105 deletions(-) -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG

Re: [U-Boot] [PATCH 04/12] ARM: rmobile: Enable HUSH parser

2017-08-25 Thread Nobuhiro Iwamatsu
ONFIG_BOOTARGS="console=ttySC0,115200 rw root=/dev/nfs > nfsroot=192.168.0.1:/export/rfs ip=192.168.0.20" > CONFIG_DEFAULT_FDT_FILE="r8a7796-m3ulcb.dtb" > CONFIG_VERSION_VARIABLE=y > +CONFIG_HUSH_PARSER=y > CONFIG_CMD_B

Re: [U-Boot] [PATCH 03/12] ARM: rmobile: Enable KSZ90X1 PHY on Salvator-X

2017-08-25 Thread Nobuhiro Iwamatsu
PHY_MICREL=y > +CONFIG_PHY_MICREL_KSZ90X1=y > CONFIG_DM_ETH=y > CONFIG_RENESAS_RAVB=y > CONFIG_SCIF_CONSOLE=y > -- > 2.11.0 > > ___ > U-Boot mailing list > U-Boot@lists.denx.de > https://lists.denx.de/listinfo/u-boot -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG ID: 40AD1FA6 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 11/12] ARM: rmobile: Enable MMC and USB DM on Salvator-X

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Enable the MMC and USB DM on the board since it's the modern method > and now supported by the drivers. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwa

Re: [U-Boot] [PATCH 12/12] ARM: rmobile: Enable MMC and USB DM on ULCB

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Enable the MMC and USB DM on the board since it's the modern method > and now supported by the drivers. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwa

Re: [U-Boot] [PATCH 09/12] ARM: rmobile: Remove SH SDHI probing from Salvator-X board

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Drop the SH SDHI bit from the board since SD now probes from DT instead. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- >

Re: [U-Boot] [PATCH 07/12] ARM: rmobile: Remove Serial SH probing from Salvator-X board

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Drop the Serial SH bit from the board since UART now probes from DT instead. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> >

Re: [U-Boot] [PATCH 10/12] ARM: rmobile: Remove SH SDHI probing from ULCB board

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Drop the SH SDHI bit from the board since SD now probes from DT instead. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > ---

Re: [U-Boot] [PATCH 08/12] ARM: rmobile: Remove Serial SH probing from ULCB board

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Drop the Serial SH bit from the board since UART now probes from DT instead. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > ---

Re: [U-Boot] [PATCH 06/12] ARM: rmobile: Remove RAVB probing from ULCB board

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Drop the RAVB bit from the board since RAVB now probes from DT instead. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > ---

Re: [U-Boot] [PATCH 05/12] ARM: rmobile: Remove RAVB probing from Salvator-X board

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Drop the RAVB bit from the board since RAVB now probes from DT instead. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > b

Re: [U-Boot] [PATCH 02/12] ARM: rmobile: Add u-boot, dm-pre-reloc to clock nodes on Gen3

2017-08-25 Thread Nobuhiro Iwamatsu
Hi, 2017-08-21 0:13 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > We need the clock available very early, add the u-boot,dm-pre-reloc > DT property on those nodes, so they come up very in the process. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > C

Re: [U-Boot] [PATCH 01/12] clk: rmobile: Split R8A7795 and R8A7796 core clock tables

2017-08-25 Thread Nobuhiro Iwamatsu
d-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/clk/renesas/clk-rcar-gen3.c | 129 > +++- > 1 file changed, 96 insertions(+), 33 deletions(-) Applied, thanks. Best r

[U-Boot] [PATCH] boot_fit: Change return value from FDT_ERROR to -EINVAL in fdt_offset()

2017-08-04 Thread Nobuhiro Iwamatsu
FDT_ERROR is defined as unsigned long. However, since the return value of fdt_offset() is int, a warning will occur when compiling. Also, it is better to use -EINVAL than FDT_ERROR. This fixes this problem by change return value from FDT_ERROR to -EINVAL. Signed-off-by: Nobuhiro Iwamatsu <iw

Re: [U-Boot] [PATCH] boot_fit: Fix warning: overflow in implicit constant conversion in fdt_offset()

2017-08-04 Thread Nobuhiro Iwamatsu
Hi, 2017-08-03 8:56 GMT+09:00 Franklin S Cooper Jr <fcoo...@ti.com>: > > Hi > On 08/02/2017 06:10 PM, Nobuhiro Iwamatsu wrote: >> FDT_ERROR is defined as unsigned long. However, since the return value of >> fdt_offset() is int, a warning will occur when compiling.

[U-Boot] Please pull u-boot-sh/rmobile branch

2017-08-02 Thread Nobuhiro Iwamatsu
: Convert to Kconfig serial: sh: Use the clock framework to obtain clock config net: ravb: Add OF probing support net: ravb: Detect PHY correctly net: ravb: Add clock handling support Nobuhiro Iwamatsu (1): ARM: rmobile: Update defconfig of R-Car Gen3 arch/arm/dts/Makefile

Re: [U-Boot] [PATCH 1/3] arch/sh: don't bring common/env_embedded.o into the link

2017-08-02 Thread Nobuhiro Iwamatsu
u-boot > /home/thomas/sh4aeb-linux-musl/bin/sh4aeb-linux-ld.bfd: cannot find > common/env_embedded.o > > We fix this by no longer adding the .ppcenv and .ppcenvr sections from > common/env_embedded.o into the .text section. > > Signed-off-by: Thomas Petazzoni <tho

Re: [U-Boot] [PATCH] arch/sh: allow building in big-endian mode

2017-08-02 Thread Nobuhiro Iwamatsu
/arch/sh/cpu/u-boot.lds > @@ -9,7 +9,12 @@ > > #include "config.h" > > +#ifdef CONFIG_SYS_BIG_ENDIAN > +OUTPUT_FORMAT("elf32-shbig-linux", "elf32-shbig-linux", "elf32-sh-linux") > +#else > OUTPUT_FORMAT("elf32-sh-linux", "el

Re: [U-Boot] [PATCH 3/3] mmc: sd_sdhi: Enable clock using clock framework

2017-08-02 Thread Nobuhiro Iwamatsu
mail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > Cc: Jaehoon Chung <jh80.ch...@samsung.com> Reviewed-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/mmc/sh_sdhi.c | 15 +++ > 1 file changed, 15 insertions(+) > >

Re: [U-Boot] [PATCH 2/3] mmc: sh_sdhi: Fix the ACMD handling

2017-08-02 Thread Nobuhiro Iwamatsu
st drop > this driver in favor of the uniphier one. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > Cc: Jaehoon Chung <jh80.ch.

Re: [U-Boot] [PATCH 1/3] mmc: sh_sdhi: Add DM and DT probing support

2017-08-02 Thread Nobuhiro Iwamatsu
e DM probe support. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > Cc: Jaehoon Chung <jh80.ch...@samsung.com> Reviewed-by: Nobuh

Re: [U-Boot] [PATCH 3/3] net: ravb: Add clock handling support

2017-08-02 Thread Nobuhiro Iwamatsu
ek Vasut <marek.vasut+rene...@gmail.com> > Cc: Joe Hershberger <joe.hershber...@ni.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/net/ravb.c | 21 +++-- > 1 file changed, 19 insertions(+), 2 deletions(-) > > diff --git

Re: [U-Boot] [PATCH 2/3] net: ravb: Detect PHY correctly

2017-08-02 Thread Nobuhiro Iwamatsu
d-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Joe Hershberger <joe.hershber...@ni.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/net/ravb.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git

Re: [U-Boot] [PATCH 1/3] net: ravb: Add OF probing support

2017-08-02 Thread Nobuhiro Iwamatsu
eravb-r8a7796" }, > + { .compatible = "renesas,etheravb-rcar-gen3" }, > + { } > +}; > + > U_BOOT_DRIVER(eth_ravb) = { > .name = "ravb", > .id = UCLASS_ETH, > + .of_match

Re: [U-Boot] [PATCH] serial: sh: Use the clock framework to obtain clock config

2017-08-02 Thread Nobuhiro Iwamatsu
nfig > directly out of OF. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/serial/serial_sh.c | 13 +++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > > diff --git a/d

Re: [U-Boot] [PATCH 2/3] ARM: rmobile: Enable clock framework on Salvator-X

2017-08-02 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-07-22 6:18 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Since there is now a clock driver for RCar Gen3, enable it on this board. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamat

Re: [U-Boot] [PATCH] serial: sh: Convert to Kconfig

2017-08-02 Thread Nobuhiro Iwamatsu
3rdp.h b/include/configs/sh7763rdp.h > index 2186f21f7a..0a06a246d2 100644 > --- a/include/configs/sh7763rdp.h > +++ b/include/configs/sh7763rdp.h > @@ -26,7 +26,6 @@ > #undef CONFIG_SHOW_BOOT_PROGRESS > > /* SCIF */ > -#define CONFIG_SCIF_CONSOLE1 > #define CONFIG_CONS_SCIF2 1 > > #define CONFIG_SYS_TEXT_BASE 0x8FFC > diff --git a/include/configs/sh7785lcr.h b/include/configs/sh7785lcr.h > index ab30428063..e719d7e1c5 100644 > --- a/include/configs/sh7785lcr.h > +++ b/include/configs/sh7785lcr.h > @@ -53,7 +53,6 @@ > #define CONFIG_SYS_BAUDRATE_TABLE { 115200 } > > /* SCIF */ > -#define CONFIG_SCIF_CONSOLE1 > #define CONFIG_CONS_SCIF1 1 > #define CONFIG_SCIF_EXT_CLOCK 1 > > diff --git a/include/configs/shmin.h b/include/configs/shmin.h > index 995f76a1ea..bc72233174 100644 > --- a/include/configs/shmin.h > +++ b/include/configs/shmin.h > @@ -41,7 +41,6 @@ > #define CONFIG_SYS_BAUDRATE_TABLE { 9600,14400,19200,38400,57600,115200 > } > > /* SCIF */ > -#define CONFIG_SCIF_CONSOLE1 > #define CONFIG_CONS_SCIF0 1 > > /* memory */ > diff --git a/include/configs/silk.h b/include/configs/silk.h > index 84108fd523..238783b4c4 100644 > --- a/include/configs/silk.h > +++ b/include/configs/silk.h > @@ -38,7 +38,6 @@ > #define RCAR_GEN2_UBOOT_SDRAM_SIZE (512 * 1024 * 1024) > > /* SCIF */ > -#define CONFIG_SCIF_CONSOLE > > /* FLASH */ > #define CONFIG_SPI > diff --git a/include/configs/stout.h b/include/configs/stout.h > index 16f3ce8647..3b8806d065 100644 > --- a/include/configs/stout.h > +++ b/include/configs/stout.h > @@ -40,7 +40,6 @@ > #define RCAR_GEN2_UBOOT_SDRAM_SIZE (512 * 1024 * 1024) > > /* SCIF */ > -#define CONFIG_SCIF_CONSOLE > #define CONFIG_SCIF_A > > /* SPI */ > diff --git a/include/configs/ulcb.h b/include/configs/ulcb.h > index 857fc9f8cf..921b9e5ec6 100644 > --- a/include/configs/ulcb.h > +++ b/include/configs/ulcb.h > @@ -25,7 +25,6 @@ > #endif > > /* SCIF */ > -#define CONFIG_SCIF_CONSOLE > #define CONFIG_CONS_SCIF2 > #define CONFIG_CONS_INDEX 2 > #define CONFIG_SH_SCIF_CLK_FREQCONFIG_S3D4_CLK_FREQ > diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt > index baf87996a8..8fed0dd042 100644 > --- a/scripts/config_whitelist.txt > +++ b/scripts/config_whitelist.txt > @@ -2035,7 +2035,6 @@ CONFIG_SBC8641D > CONFIG_SCF0403_LCD > CONFIG_SCIF > CONFIG_SCIF_A > -CONFIG_SCIF_CONSOLE > CONFIG_SCIF_EXT_CLOCK > CONFIG_SCIF_USE_EXT_CLK > CONFIG_SCSI_AHCI > -- > 2.11.0 > -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG ID: 40AD1FA6 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 3/3] ARM: rmobile: Enable clock framework on ULCB

2017-08-02 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-07-22 6:18 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Since there is now a clock driver for RCar Gen3, enable it on this board. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamat

Re: [U-Boot] [PATCH 2/2] ARM: rmobile: Enable OF_CONTROL on RCar Gen3

2017-08-02 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-07-22 6:17 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Since the DTs are now in place, enable OF control so that they get > bundled into the U-Boot. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > C

Re: [U-Boot] [PATCH 1/3] clk: rmobile: Add RCar Gen3 clock driver

2017-08-02 Thread Nobuhiro Iwamatsu
ing clock using > the MSTP registers. Setting clock is not supported thus far. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > drivers/clk/Kconfig | 1 + > drivers/clk/Makefile

Re: [U-Boot] [PATCH 2/2] ARM: rmobile: ulcb: Add ULCB board support

2017-08-02 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-07-22 6:15 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Add initial support for the R8A7795 and R8A7796 based ULCB board. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nig

Re: [U-Boot] [PATCH] ARM: rmobile: Increase console buffer sizes

2017-08-02 Thread Nobuhiro Iwamatsu
<marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > include/configs/rcar-gen3-common.h | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/include/configs/rcar-gen3-common.h > b/include/configs/rcar-

Re: [U-Boot] [PATCH 1/2] ARM: rmobile: Add PFC PUEN bank 5 address

2017-08-02 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-07-22 6:15 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Add the PFC5 PUEN address and SSI SDATA4 bit offset into the > rcar-gen3-base.h . > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Nobuhiro Iwa

[U-Boot] [PATCH] boot_fit: Fix warning: overflow in implicit constant conversion in fdt_offset()

2017-08-02 Thread Nobuhiro Iwamatsu
FDT_ERROR is defined as unsigned long. However, since the return value of fdt_offset() is int, a warning will occur when compiling. This fixes this problem by cast to int when setting FDT_ERROR as return value. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> CC: Franklin S Cooper Jr

[U-Boot] [PATCH] ARM: rmobile: Update defconfig of R-Car Gen3

2017-08-02 Thread Nobuhiro Iwamatsu
This updates defconfig of R-Car Gen3 to keep with the latest Kconfig. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- configs/r8a7795_salvator-x_defconfig | 3 +++ configs/r8a7795_ulcb_defconfig | 3 +++ configs/r8a7796_salvator-x_defconfig | 3 +++ c

Re: [U-Boot] [PATCH 1/5] mmc: sh_sdhi: Fix Kconfig entry

2017-05-30 Thread Nobuhiro Iwamatsu
Hi! 2017-05-31 11:06 GMT+09:00 Jaehoon Chung <jh80.ch...@samsung.com>: > On 05/31/2017 07:59 AM, Nobuhiro Iwamatsu wrote: >> Hi, Jaehoon. >> >> Could you pickup this patch series to your mmc repository, and PR to u-boot? > > Sure, I will pick this patch series. A

Re: [U-Boot] [PATCH 1/5] mmc: sh_sdhi: Fix Kconfig entry

2017-05-30 Thread Nobuhiro Iwamatsu
his was renamed >> to ARCH_RMOBILE in commit 1cc95f6e1b38 (ARM: Rmobile: Rename >> CONFIG_RMOBILE to CONFIG_ARCH_RMOBILE) . Fix this omission. >> >> Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> >> Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com&

[U-Boot] [GIT PULL] u-boot-sh/rmobile

2017-05-23 Thread Nobuhiro Iwamatsu
: salvator-x: Count all DRAM in all slots ARM: rmobile: salvator-x: Enable SCIF2 clock ARM: rmobile: salvator-x: Rename the defconfig to match the SoC ARM: rmobile: salvator-x: Add R8A7796 support Nobuhiro Iwamatsu (1): ARM: rmobile: Move address of IICDVFS(I2C) to rcar-gen3

[U-Boot] [PATCH] ARM: rmobile: Move address of IICDVFS(I2C) to rcar-gen3-base.h

2017-05-22 Thread Nobuhiro Iwamatsu
The IICDVFS(I2C) set in r8a7796.h is common in rcar-gen3. This moves CONFIG_SYS_I2C_SH_BASE0 in rcar-gen3-base.h. Signed-off-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> --- arch/arm/mach-rmobile/include/mach/r8a7796.h| 3 --- arch/arm/mach-rmobile/include/mach/rcar-gen3-base

Re: [U-Boot] [PATCH] usb: ehci: Add Renesas RCar M3/H3 EHCI support

2017-05-13 Thread Nobuhiro Iwamatsu
ck and > reset framework in place, at which point we can switch to ehci-generic. > > Signed-off-by: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com>

Re: [U-Boot] [PATCH 5/5] mmc: sh_sdhi: Add SDHI support

2017-05-13 Thread Nobuhiro Iwamatsu
eed mode SD clock frequency between 25MHz and 50MHz, > 8bit/4bit bus width, high capacity and low voltage device support. > > Signed-off-by: Kouei Abe <kouei.abe...@renesas.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...

Re: [U-Boot] [PATCH 18/23] ARM: rmobile: salvator-x: Add DVFS and PMIC support

2017-05-13 Thread Nobuhiro Iwamatsu
l.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > board/renesas/salvator-x/salvator-x.c | 9 + > include/configs/salvator-x.h | 12 > 2 files changed, 21 insertions

Re: [U-Boot] [PATCH 23/23] ARM: rmobile: salvator-x: Add R8A7796 support

2017-05-13 Thread Nobuhiro Iwamatsu
> Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > board/renesas/salvator-x/MAINTAINERS | 1 + > board/renesas/salvator-x/salvator-x.c | 28 ++-- > configs/r8a7796_salvator-x_defconfig | 31

Re: [U-Boot] [PATCH 3/5] mmc: sh_sdhi: Add 64-bit access to sd_buf support

2017-05-13 Thread Nobuhiro Iwamatsu
lt;kouei.abe...@renesas.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > Cc: Jaehoon Chung <jh80.ch...@samsung.com> Reviewed-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > arch/

Re: [U-Boot] [PATCH 1/5] mmc: sh_sdhi: Fix Kconfig entry

2017-05-13 Thread Nobuhiro Iwamatsu
ek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > Cc: Jaehoon Chung <jh80.ch...@samsung.com> Reviewed-by: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- >

Re: [U-Boot] [PATCH 4/5] mmc: sh_sdhi: Add MMC version 5.0 support

2017-05-13 Thread Nobuhiro Iwamatsu
.abe...@renesas.com> > Signed-off-by: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org

Re: [U-Boot] [PATCH 22/23] ARM: rmobile: salvator-x: Rename the defconfig to match the SoC

2017-05-13 Thread Nobuhiro Iwamatsu
ne...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > board/renesas/salvator-x/MAINTAINERS | 2 +- > configs/{salvator-x_defconfig => r8a7795_salvator-x_defconf

Re: [U-Boot] [PATCH 2/5] mmc: sh_sdhi: Set SD_INFOx interrupt mask before command starting

2017-05-13 Thread Nobuhiro Iwamatsu
.abe...@renesas.com> > Signed-off-by: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > Cc: Jaehoon Chung <jh80.ch...@samsung.com> Reviewed-by: Nobuhiro Iwama

Re: [U-Boot] [PATCH 11/23] ARM: rmobile: salvator-x: Use BIT() macro in board file

2017-05-13 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-05-13 22:57 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Cosmetic change, replace (1 << (n)) with BIT(n) . > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@ren

Re: [U-Boot] [PATCH 17/23] ARM: rmobile: salvator-x: Add RAVB ethernet support

2017-05-13 Thread Nobuhiro Iwamatsu
git a/include/configs/salvator-x.h b/include/configs/salvator-x.h > index 91307eb353..b5a98d6db2 100644 > --- a/include/configs/salvator-x.h > +++ b/include/configs/salvator-x.h > @@ -25,6 +25,12 @@ > /* [A] Hyper Flash */ > /* use to RPC(SPI Mu

Re: [U-Boot] [PATCH 16/23] ARM: rmobile: salvator-x: Add SD support

2017-05-13 Thread Nobuhiro Iwamatsu
@@ > * board/renesas/salvator-x/salvator-x.c > * This file is Salvator-X board support. > * > - * Copyright (C) 2015 Renesas Electronics Corporation > + * Copyright (C) 2015-2017 Renesas Electronics Corporation > * Copyright (C) 2015 Nobuhiro Iwamatsu <iwama...@niga

Re: [U-Boot] [PATCH 19/23] ARM: rmobile: salvator-x: Add USB support

2017-05-13 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-05-13 22:57 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Add support for the EHCI USB. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com>

Re: [U-Boot] [PATCH 21/23] ARM: rmobile: salvator-x: Enable SCIF2 clock

2017-05-13 Thread Nobuhiro Iwamatsu
Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > include/configs/salvator-x.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/configs/salvator-x.h b/include/configs/salvator-x.h > index 4ac9328e1b..0a

Re: [U-Boot] [PATCH 14/23] ARM: rmobile: salvator-x: Zap redefined DECLARE_GLOBAL_DATA_PTR

2017-05-13 Thread Nobuhiro Iwamatsu
koyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > board/renesas/salvator-x/salvator-x.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/board/renesas/salvator-x/salvator-x.c > b/board/renesas/salvator-x/salvator-x.c > index d0e21ab667.

Re: [U-Boot] [PATCH 20/23] ARM: rmobile: salvator-x: Count all DRAM in all slots

2017-05-13 Thread Nobuhiro Iwamatsu
l.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > board/renesas/salvator-x/salvator-x.c | 30 +- > 1 file changed, 29 insertions(+), 1 deletion(-) > > diff --git a

Re: [U-Boot] [PATCH 12/23] ARM: rmobile: salvator-x: Move OF_LIBFDT and CMD_FDT to board config

2017-05-13 Thread Nobuhiro Iwamatsu
CONFIG_REMAKE_ELF > > @@ -34,7 +33,6 @@ > #define CONFIG_SETUP_MEMORY_TAGS > #define CONFIG_INITRD_TAG > #define CONFIG_CMDLINE_EDITING > -#define CONFIG_OF_LIBFDT > > #undef CONFIG_SHOW_BOOT_PROGRESS > > -- > 2.11.0 > -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG ID: 40AD1FA6 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 13/23] ARM: rmobile: salvator-x: Set default device tree

2017-05-13 Thread Nobuhiro Iwamatsu
Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > configs/salvator-x_defconfig | 1 + > include/configs/rcar-gen3-common.h | 2 +- > 2 files changed, 2 insertions(+), 1 deletion(-) > > diff --git a/configs

Re: [U-Boot] [PATCH 15/23] ARM: rmobile: salvator-x: Adjust UART clock

2017-05-13 Thread Nobuhiro Iwamatsu
sut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > board/renesas/salvator-x/salvator-x.c | 4 ++-- > include/configs/salvator-x.h | 5 +++-- > scripts/config_whitelist.txt

Re: [U-Boot] [PATCH 09/23] ARM: rmobile: Add R8A7796 support

2017-05-13 Thread Nobuhiro Iwamatsu
Applied to rmobile branch, thanks! 2017-05-13 22:57 GMT+09:00 Marek Vasut <marek.va...@gmail.com>: > Add Kconfig entry for the R8A7796 RCar M3 SoC. > > Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> > Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.c

Re: [U-Boot] [PATCH 07/23] ARM: rmobile: Add R8A7796 into the CPU table

2017-05-13 Thread Nobuhiro Iwamatsu
koyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > arch/arm/mach-rmobile/cpu_info.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/mach-rmobile/cpu_info.c > b/arch/arm/mach-rmobile/cpu_info.c > index 208228ff45..faa53197d5

Re: [U-Boot] [PATCH 10/23] ARM: rmobile: Allow R8A7796 Salvator-X configuration

2017-05-13 Thread Nobuhiro Iwamatsu
> Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > arch/arm/mach-rmobile/Kconfig.64 | 3 +-- > configs/salvator-x_defconfig | 1 + > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a

Re: [U-Boot] [PATCH 05/23] ARM: rmobile: Make the Gen3 SoC configurable

2017-05-13 Thread Nobuhiro Iwamatsu
Yokoyama <hiroyuki.yokoyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > arch/arm/mach-rmobile/Kconfig.64 | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/arch/arm/mach-rmobile/Kconfig.64 > b/arch/arm/mach-rmobile/K

Re: [U-Boot] [PATCH 06/23] ARM: rmobile: Add R8A7795 into the CPU table

2017-05-13 Thread Nobuhiro Iwamatsu
koyama...@renesas.com> > Cc: Nobuhiro Iwamatsu <iwama...@nigauri.org> > --- > arch/arm/mach-rmobile/cpu_info.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/mach-rmobile/cpu_info.c > b/arch/arm/mach-rmobile/cpu_info.c > index 129ab0c0f7..208228ff45

  1   2   3   4   5   6   7   8   9   10   >