Re: [U-Boot] [PATCH v2 1/4] imx: mx6sabresd/sabreauto: Move MX6Q/DL DDR and FDT configs to defconfig

2014-11-03 Thread Li Ye-B37916
Hi Stefano, On 9/9/2014 2:50 PM, Ye.Li wrote: > To support more iMX6 variants, > 1. Make the DDR size configurable based on the defconfig file > 2. Make the FDT file configurable based on the defconfig file > > Signed-off-by: Ye.Li > --- > Changes since v1: > - Rework the short log subject > > b

Re: [U-Boot] [PATCH] common.h: Add prototype of arch_preboot_os

2014-11-03 Thread Igor Grinberg
On 11/04/14 09:14, Nobuhiro Iwamatsu wrote: > When we used arch_preboot_os() function because prototype of this is not > declared, following warning is output. Or.. you just need to include the correct file: $ grep -nr arch_preboot_os include/ include/bootm.h:57:void arch_preboot_os(void); > >

[U-Boot] [PATCH v2 2/3] imx:mx6sxsabresd add usb support

2014-11-03 Thread Peng Fan
Add usb support for mx6sxsabresd board. There are two usb port on mx6sxsabresd board: 1. OTG 2. OTG The second port is actually an otg port with a USB A type interface on the board. Signed-off-by: Peng Fan Signed-off-by: Ye Li --- Changes v2: Add otg polarity setting Move pinmux setting into

[U-Boot] [PATCH v2 0/3] imx:mx6 add usb support

2014-11-03 Thread Peng Fan
Changes v2: - move pinmux setting into board_init - add otg polarity setting in board_ehci_hcd_init - Introduce a new weak function to give board a choice to decide the work mode of the otg port, since a otg port can also work in host mode without touch ID pin. Peng Fan (3): usb:ehci-mx

[U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-03 Thread Peng Fan
Include a weak function board_ehci_usb_mode to gives board code a choice. If the board want the otg port work in host mode but not device mode, this should be handled. Signed-off-by: Peng Fan Signed-off-by: Ye Li --- Changes v2: Introduce a new weak function to let board have a choice to decid

[U-Boot] [PATCH v2 3/3] imx:mx6slevk add usb support

2014-11-03 Thread Peng Fan
Add usb support for mx6slevk board. Signed-off-by: Peng Fan Signed-off-by: Ye Li --- Changes v2: Add otg polarity setting move pinmux into board_init arch/arm/include/asm/arch-mx6/mx6sl_pins.h | 5 +++ board/freescale/mx6slevk/mx6slevk.c| 51 ++ include/

[U-Boot] [PATCH v3 2/2] imx: mx6sxsabresd: Add board support for USDHC2 and USDHC3

2014-11-03 Thread Ye . Li
Add full support for USDHC2, USDHC3, USDHC4 on mx6sx sabresd board. The default boot socket is USDHC4, so the MMC environment device and mmcdev variable are set to this device. Signed-off-by: Ye.Li --- Changes since v2: - Modify the default mmcdev environment variable to USDHC4 (dev 2) Changes s

[U-Boot] [PATCH v3 1/2] mmc: fsl_esdhc: Update esdhc driver for iMX6SX

2014-11-03 Thread Ye . Li
The reset value of "uSDHCx_INT_STATUS_EN" register is changed to 0 on iMX6SX. So the fsl_esdhc driver must update to set the register, otherwise no state can be detected. Signed-off-by: Ye.Li --- Changes since v2: - None Changes since v1: - Remove codes which set INT_STATUS_EN register according

[U-Boot] [PATCH] arm: rmobile: Add support gose board

2014-11-03 Thread Nobuhiro Iwamatsu
The gose board has R8A7793, 1GB DDR3-SDRAM, USB, Ethernet, and more. This patch supports the following functions: - DDR3-SDRAM - SCIF - QSPI - SPI Signed-off-by: Hisashi Nakamura Signed-off-by: Nobuhiro Iwamatsu --- arch/arm/cpu/armv7/rmobile/Kconfig |4 + board/renesas/gose/Kconfig

[U-Boot] [PATCH] imx: mx6slevk: Change default mmcdev to USDHC2 device

2014-11-03 Thread Ye . Li
Since USDHC1 and USDHC3 added, the dev index for USDHC2 changed to 1. So modify the default mmcdev in environment variables to dev 1. Signed-off-by: Ye.Li --- include/configs/mx6slevk.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/mx6slevk.h b/include

[U-Boot] [PATCH] usb: rmobile: Use ARRAY_SIZE(usb_base_address) instead of CONFIG_USB_MAX_CONTROLLER_COUNT

2014-11-03 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu CC: Marek Vasut --- drivers/usb/host/ehci-rmobile.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/usb/host/ehci-rmobile.c b/drivers/usb/host/ehci-rmobile.c index b433087..7fe79ef 100644 --- a/drivers/usb/host/ehci-rmobile.c +

[U-Boot] [PATCH] common.h: Add prototype of arch_preboot_os

2014-11-03 Thread Nobuhiro Iwamatsu
When we used arch_preboot_os() function because prototype of this is not declared, following warning is output. - warning: function declaration isn't a prototype [-Wstrict-prototypes] - This adds prototype of arch_preboot_os() to include/common.h. Signed-off-by: Nobuhiro Iwamatsu --- i

Re: [U-Boot] [PATCH 1/2] usb: ehci: rmobile: Add support R8A7793

2014-11-03 Thread Nobuhiro Iwamatsu
Hi! 2014-11-04 14:02 GMT+09:00 Marek Vasut : > On Tuesday, November 04, 2014 at 01:56:41 AM, Nobuhiro Iwamatsu wrote: > > Hi! > >> R8A7793 has same IP of USB controller as R8A7791 and R8A7794 of rmobile >> ARM SoCs. This adds support R8A7793 to EHCI HCD of rmobile. >> >> Signed-off-by: Nobuhiro Iw

Re: [U-Boot] [RFC] x86: Intel FSP integration

2014-11-03 Thread Simon Glass
Hi Bin, On 3 November 2014 20:05, Bin Meng wrote: > Hi Simon, > > Thanks for the comments. > > On Tue, Nov 4, 2014 at 10:09 AM, Simon Glass wrote: >> Hi Bin, >> >> Well it's certainly not ideal but from what I can tell these blobs are >> a fact of life on Intel machines still. For the ivybridge

Re: [U-Boot] [RFC PATCH v1 2/2] arm:kgdb add KGDB support for arm platform

2014-11-03 Thread Simon Glass
HI Peng, On 31 October 2014 23:12, Peng Fan wrote: > The register save/restore: > Use get_bad_stack and bad_save_user_regs to save regs. > Introduce und_restore_regs to restore the previous regs before > trigger a breakpoint. > > Signed-off-by: Peng Fan Looks good so far as I understand it. A f

Re: [U-Boot] [RFC PATCH v1 1/2] kgdb: add breakpoint support

2014-11-03 Thread Simon Glass
Hi Peng, On 31 October 2014 23:12, Peng Fan wrote: > Add Z/z protocal support for breakpoint set/remove. > > Signed-off-by: Peng Fan This looks good to me - I just have a few bits below. > --- > common/kgdb.c | 273 > + > include/kgdb.

Re: [U-Boot] verifying & signing

2014-11-03 Thread Simon Glass
Hi, On 3 November 2014 20:01, Srinivasan S wrote: > Hi Simon, > > Good Morning! > > Many Thanks a lot for all your support so far, > > 1. With respect to the verified boot , I want to put the images onto NAND > FLASH, Could you please let me know what is the procedure of flashing the > verifie

Re: [U-Boot] [PATCH] fs: make it possible to read the filesystem UUID

2014-11-03 Thread Simon Glass
Hi Christian, On 31 October 2014 09:08, Christian Gmeiner wrote: > Some filesystems have a UUID stored in its superblock. To > allow using root=UUID=... for the kernel command line we > need a way to read-out the filesystem UUID. > > Hit any key to stop autoboot: 0 > => fsuuid > fsuuid - Look up

Re: [U-Boot] [linux-sunxi] [PATCH 1/9] sun6i: Add new p2wi controller driver

2014-11-03 Thread Chen-Yu Tsai
Hi, On Tue, Nov 4, 2014 at 2:10 PM, Olliver Schinagl wrote: > Hy Wens, > > This is some really old work, and I'm assuming hans picked it up, as I never > tested the code (didn't have hardware at the time) I believe Hans did pick it up for u-boot-sunxi, and now we're just mainlining it. > I'll c

[U-Boot] [PULL] u-boot-usb/master

2014-11-03 Thread Marek Vasut
The following changes since commit 46b7b2e8025770fb29f7810c2d7d15a6650b9643: Merge branch 'master' of git://git.denx.de/u-boot-mips (2014-11-03 12:46:12 -0500) are available in the git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to 4dc949266da6f55ef2

Re: [U-Boot] [PATCH 1/2] usb: ehci: rmobile: Add support R8A7793

2014-11-03 Thread Marek Vasut
On Tuesday, November 04, 2014 at 01:56:41 AM, Nobuhiro Iwamatsu wrote: Hi! > R8A7793 has same IP of USB controller as R8A7791 and R8A7794 of rmobile > ARM SoCs. This adds support R8A7793 to EHCI HCD of rmobile. > > Signed-off-by: Nobuhiro Iwamatsu > --- > drivers/usb/host/ehci-rmobile.c | 5 ++

Re: [U-Boot] Query on the ci_udc driver for USB client implementation

2014-11-03 Thread Marek Vasut
On Monday, November 03, 2014 at 04:46:48 PM, Fabio Estevam wrote: > On Mon, Nov 3, 2014 at 3:33 AM, Sanchayan Maity > > wrote: > > Hello, > > > > Any pointers? > > Adding Marek and Stefan on Cc in case they can provide some help. > > Regards, > > Fabio Estevam > > > Thanks & Regards, > > San

Re: [U-Boot] [PATCH v6 0/6] fs: fat/ext4/sandbox - Deal with files greater than 2GB

2014-11-03 Thread Simon Glass
(trimming the CC list a bit) Hi Suriyan, On 3 November 2014 19:49, Suriyan Ramasami wrote: > > The commands fatls/ext4ls give negative values when dealing with files > greater than 2GB. > The commands fatsize/ext4size do not update the variable filesize for > these files. > > To deal with this,

Re: [U-Boot] [linux-sunxi] [PATCH 1/9] sun6i: Add new p2wi controller driver

2014-11-03 Thread Olliver Schinagl
Hy Wens, This is some really old work, and I'm assuming hans picked it up, as I never tested the code (didn't have hardware at the time) I'll comment as I remember it and hope that helps. On a side note, do we know what p2wi stands for? I'm guessing 2wi is allwinners try at combining the nam

Re: [U-Boot] [PATCH 2/2] sunxi: Request USB vbus gpio

2014-11-03 Thread Simon Glass
Hi Hans, On 31 October 2014 10:23, Hans de Goede wrote: > This is necessary for the device-model enabled builds to work properly. > > Signed-off-by: Hans de Goede Acked-by: Simon Glass > --- > drivers/usb/host/ehci-sunxi.c | 10 ++ > 1 file changed, 10 insertions(+) > > diff --git a/

Re: [U-Boot] [PATCH 1/2] sunxi: Request card detect gpio

2014-11-03 Thread Simon Glass
HI Hans, On 31 October 2014 10:23, Hans de Goede wrote: > This is necessary for the device-model enabled builds to work properly. > > Signed-off-by: Hans de Goede Acked-by: Simon Glass > --- > drivers/mmc/sunxi_mmc.c | 32 ++-- > 1 file changed, 22 insertions(+),

Re: [U-Boot] verified boot of beaglebone black

2014-11-03 Thread Simon Glass
Hi, On 3 November 2014 23:09, Srinivasan S wrote: > Hi, > > Thanks a lot for your replies, > When I was executing the below ie., Step 5: Sign the kernel from > http://lists.denx.de/pipermail/u-boot/2014-June/180845.html > > When I was using the mkimage tools for sigining am facing the below err

[U-Boot] [PATCH v2] u_qe: add u_qe_upload_firmware for u_qe

2014-11-03 Thread Zhao Qiang
Signed-off-by: Zhao Qiang --- Changes for v2: - put u_qe functions under "#ifdef CONFIG_U_QE" drivers/qe/qe.c | 129 +++- drivers/qe/qe.h | 6 ++- 2 files changed, 133 insertions(+), 2 deletions(-) diff --git a/drivers/qe/qe.c b/driv

Re: [U-Boot] [PATCH 1/4] exynos5: fix GPIO information of exynos5420

2014-11-03 Thread Hyungwon Hwang
Dear Jaehoon Chung, On Tue, 04 Nov 2014 13:51:04 +0900 Jaehoon Chung wrote: > On 10/31/2014 09:08 PM, Hyungwon Hwang wrote: > > This patch fixes wrong GPIO information such as GPIO bank, table which is > > used to convert GPIO name to index, bank base address, and etc. > > > > Signed-off-by: Hy

Re: [U-Boot] [PATCH v2 0/4] Adds support for Exynos5422 odroid xu3 board

2014-11-03 Thread Jaehoon Chung
When you sent the patch vX, add the changelog. I don't know what changed at your patch V2. Best Regards, Jaehoon Chung On 10/31/2014 09:14 PM, Hyungwon Hwang wrote: > This patchset adds support for Exynos5422 odroid xu3 board. > I have done this work on the patchset submitted by Akshay Saraswat.

[U-Boot] [PATCH 4/5] usb: s3c-otg: Allow custom gusbcfg

2014-11-03 Thread Marek Vasut
Allow passing in a custom configuration of the gusbcfg register via platform data. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Vince Bridgers Cc: Pavel Machek Cc: Stefan Roese Cc: Lukasz Majewski --- drivers/usb/gadget/s3c_udc_otg.c | 18 -- d

[U-Boot] [PATCH 1/5] usb: s3c-otg: Remove useless include

2014-11-03 Thread Marek Vasut
Remove the useless inclusion of arch/arm/gpio.h , which is completely bogus in this driver. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Vince Bridgers Cc: Pavel Machek Cc: Stefan Roese Cc: Lukasz Majewski --- drivers/usb/gadget/s3c_udc_otg.c | 1 - 1 file changed, 1 d

[U-Boot] [PATCH 3/5] usb: s3c-otg: Split out PHY control

2014-11-03 Thread Marek Vasut
Split the Samsung specific PHY control into a separate file and compile this into the S3C OTG driver only if used on a Samsung system. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Vince Bridgers Cc: Pavel Machek Cc: Stefan Roese Cc: Lukasz Majewski --- drivers/usb/gadg

[U-Boot] [PATCH 5/5] arm: socfpga: Add example UDC config

2014-11-03 Thread Marek Vasut
Add example of an USB UDC configuration with DFU and UMS. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Vince Bridgers Cc: Pavel Machek Cc: Stefan Roese Cc: Lukasz Majewski --- board/altera/socfpga/socfpga_cyclone5.c | 21 + include/configs/socfpga_c

[U-Boot] [PATCH 2/5] usb: s3c-otg: Encapsulate PHY control

2014-11-03 Thread Marek Vasut
Encapsulate the Samsung PHY control and it's register accesses into the otg_phy_init() and otg_phy_off() functions. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Vince Bridgers Cc: Pavel Machek Cc: Stefan Roese Cc: Lukasz Majewski --- drivers/usb/gadget/s3c_udc_otg.c |

Re: [U-Boot] [PATCH 2/4] Exynos5800: Add support for Exynos5800

2014-11-03 Thread Hyungwon Hwang
Dear Jaehoon Chung, On Tue, 04 Nov 2014 13:56:00 +0900 Jaehoon Chung wrote: > On 10/31/2014 09:08 PM, Hyungwon Hwang wrote: > > The gpios of Exynos5800 are different from that of Exynos5420. This patch > > adds the gpio information and table of Exynos5800. > > > > Signed-off-by: Hyungwon Hwang

Re: [U-Boot] [PATCH 2/4] Exynos5800: Add support for Exynos5800

2014-11-03 Thread Jaehoon Chung
On 10/31/2014 09:08 PM, Hyungwon Hwang wrote: > The gpios of Exynos5800 are different from that of Exynos5420. This patch adds > the gpio information and table of Exynos5800. > > Signed-off-by: Hyungwon Hwang > --- > arch/arm/include/asm/arch-exynos/gpio.h | 31 +-- >

Re: [U-Boot] [PATCH 1/4] exynos5: fix GPIO information of exynos5420

2014-11-03 Thread Jaehoon Chung
On 10/31/2014 09:08 PM, Hyungwon Hwang wrote: > This patch fixes wrong GPIO information such as GPIO bank, table which is used > to convert GPIO name to index, bank base address, and etc. > > Signed-off-by: Hyungwon Hwang > --- > arch/arm/include/asm/arch-exynos/cpu.h | 11 +- > arch/arm/inclu

[U-Boot] [PATCH] i2c: rcar_i2c: Fix order of restart and clear status

2014-11-03 Thread Nobuhiro Iwamatsu
In case of repeated START condition, the restart has to be kicked before clear status (MSR register). If it is kicked after clear status, R-Car I2C may transfer data (TXD register) or receive data (RXD register) instead of transferring slave address (MAR register). Signed-off-by: Ryo Kataoka Sign

Re: [U-Boot] [RFC] x86: Intel FSP integration

2014-11-03 Thread Bin Meng
Hi Simon, Thanks for the comments. On Tue, Nov 4, 2014 at 10:09 AM, Simon Glass wrote: > Hi Bin, > > Well it's certainly not ideal but from what I can tell these blobs are > a fact of life on Intel machines still. For the ivybridge stuff, I've > found I need a microcode blob, a video BIOS blob a

[U-Boot] [PATCH v6 6/6] sandbox: interface changes to accomodate files greater than 2GB

2014-11-03 Thread Suriyan Ramasami
Change the interface for the sandbox functions to take in an extra parameter of type "loff_t *" to return the size. The return values of these funtions now serve as an indicator of error conditions alone. Signed-off-by: Suriyan Ramasami --- Changes in v6: * Simon - Split this into a separate p

[U-Boot] [PATCH v6 4/6] ext4: interface changes to accomodate files greater than 2GB

2014-11-03 Thread Suriyan Ramasami
Change the interface for the ext4 functions to take in an extra parameter of type "loff_t *" to return the size. The return values of these funtions now serve as an indicator of error conditions alone. Signed-off-by: Suriyan Ramasami --- Changes in v6: * Simon - Split this into a separate patch

[U-Boot] [PATCH v6 3/6] fat: interface changes to accomodate files greater than 2GB

2014-11-03 Thread Suriyan Ramasami
Change the interface for the fat functions to take in an extra parameter of type "loff_t *" to return the size. The return values of these funtions now serve as an indicator of error conditions alone. Signed-off-by: Suriyan Ramasami --- Changes in v6: * Simon - Split this into a separate patch

[U-Boot] [PATCH v6 5/6] sandbox: Use md5sum and fatwrite to enable testing of fs commands

2014-11-03 Thread Suriyan Ramasami
Enable md5sum to check the MD5 of the read and written files to check their contents for validity. Use map_sysmem() to map buffer in a sandbox environment. Signed-off-by: Suriyan Ramasami --- Changes in v6: * Simon - Split this into a separate patch Changes in v5: None common/cmd_md5sum.c

[U-Boot] [PATCH v6 1/6] sandbox: script for testing sandbox/ext4/fat/fs commands

2014-11-03 Thread Suriyan Ramasami
Test size/read/write commands in a sandbox environment. Signed-off-by: Suriyan Ramasami --- Changes in v6: * Update expected results in comments * Simon comments - * Remove README file and add it in start of script * Drop blank lines in top of functions * Put repeating constants in lower cas

[U-Boot] [PATCH v6 2/6] fs: interface changes to accomodate files greater than 2GB

2014-11-03 Thread Suriyan Ramasami
Change the interface for the generic FS functions to take in an extra parameter of type "loff_t *" to return the size. The return values of these funtions now serve as an indicator of error conditions alone. Signed-off-by: Suriyan Ramasami --- Changes in v6: * Simon - Split this into a separate

Re: [U-Boot] [GIT PULL] u-boot-mips/master

2014-11-03 Thread Tom Rini
On Fri, Oct 31, 2014 at 07:50:43PM +0100, Daniel Schwierzeck wrote: > The following changes since commit 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6: > > arm: interrupt_init: set sp in IRQ/FIQ modes (2014-10-29 09:03:28 -0400) > > are available in the git repository at: > > git://git.denx.de/u

Re: [U-Boot] Pull request: u-boot-uniphier/master

2014-11-03 Thread Tom Rini
On Wed, Oct 29, 2014 at 11:00:04PM +0900, Masahiro YAMADA wrote: > Hi Tom, > > The following changes since commit d58a9451e7339ed4cf2b2627e534611f427fb791: > > ppc/arm: zap EMK boards (2014-10-28 12:48:31 -0400) > > are available in the git repository at: > > git://git.denx.de/u-boot-uniph

Re: [U-Boot] Pull request: u-boot-spi/master

2014-11-03 Thread Tom Rini
On Tue, Oct 28, 2014 at 12:13:58AM +0530, Jagannadha Sutradharudu Teki wrote: > Hi Tom, > > Please pull this PR. > > thanks! > -- > Jagan. > > The following changes since commit 0ce4af99c07acebf4fce9a91f1099d2460629293: > > Merge branch 'master' of git://git.denx.de/u-boot-imx (2014-10-27 09

Re: [U-Boot] [RFC] x86: Intel FSP integration

2014-11-03 Thread Simon Glass
Hi Bin, On 2 November 2014 19:26, Bin Meng wrote: > Hi Simon, > > I am preparing patches for my U-Boot port on Intel Crown Bay CRB which uses > Intel FSP for the memory and chipset initialization. Intel FSP is a binary > blob inside which 3 pre-defined entry pointes are available for 3rd party >

Re: [U-Boot] [PATCH v2 3/4] odroid: make some macros common

2014-11-03 Thread Hyungwon Hwang
On Mon, 03 Nov 2014 09:51:25 +0100 Lukasz Majewski wrote: > Hi Hyungwon, > > > Some macros are used commonly for odroid series boards. This patch > > makes a common header file to congregate that kinds of macros. Even > > though there are more macros which can be common, they are not become > >

Re: [U-Boot] [PATCH v2 2/4] Exynos5800: Add support for Exynos5800

2014-11-03 Thread Hyungwon Hwang
Dear Lukasz, On Mon, 03 Nov 2014 09:34:12 +0100 Lukasz Majewski wrote: > Hi Hyungwon, > > > The gpios of Exynos5800 are different from that of Exynos5420. This > > patch adds the gpio information and table of Exynos5800. > > > > Signed-off-by: Hyungwon Hwang > > --- > > arch/arm/include/asm/

Re: [U-Boot] Please fix warnings on ARM Samsung boards

2014-11-03 Thread Minkyu Kang
Dear Masahiro YAMADA, On 04/11/14 00:38, Masahiro YAMADA wrote: > Hi Samsung developers, > > > I see some warnings when I build Samsung boards. > > > I requested this three months ago, > but nobody would fix the warnings. > http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/191762 > > >

[U-Boot] [PATCH 2/2] usb: ehci: rmobile: Collect up address data

2014-11-03 Thread Nobuhiro Iwamatsu
R8A7791, R8A7793 and R8A7794 have same IP of USB controller. This collect up address data of each SoCs. Signed-off-by: Nobuhiro Iwamatsu --- drivers/usb/host/ehci-rmobile.c | 13 ++--- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/drivers/usb/host/ehci-rmobile.c b/driver

[U-Boot] [PATCH 1/2] usb: ehci: rmobile: Add support R8A7793

2014-11-03 Thread Nobuhiro Iwamatsu
R8A7793 has same IP of USB controller as R8A7791 and R8A7794 of rmobile ARM SoCs. This adds support R8A7793 to EHCI HCD of rmobile. Signed-off-by: Nobuhiro Iwamatsu --- drivers/usb/host/ehci-rmobile.c | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/usb/host/ehci-rmobile.c b/driv

[U-Boot] [PATCH 3/3] net: sh-eth: Add cache writeback control after setting bit of DMA descriptor

2014-11-03 Thread Nobuhiro Iwamatsu
A bit field of DMA descriptor is on memory area of DMA. If we set data to bit of DMA descriptor, we must be writeback data of DMA descriptor. Signed-off-by: Nobuhiro Iwamatsu --- drivers/net/sh_eth.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/net/sh_et

[U-Boot] [PATCH 2/3] net: sh-eth: Use memalign instead of orignal memroy alignment function

2014-11-03 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu --- drivers/net/sh_eth.c | 83 drivers/net/sh_eth.h | 6 ++-- 2 files changed, 41 insertions(+), 48 deletions(-) diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index c5bc97c..d1d3b68 100644 --- a/dri

[U-Boot] [PATCH 1/3] net: sh-eth: Remove definition of RX_DESC_SIZE and TX_DESC_SIZE

2014-11-03 Thread Nobuhiro Iwamatsu
RX_DESC_SIZE and TX_DESC_SIZE mean the size of the data descriptor for sh-eth. We can acquire this in sizeof. It is not necessary to define these in define. Signed-off-by: Nobuhiro Iwamatsu --- drivers/net/sh_eth.c | 20 drivers/net/sh_eth.h | 4 2 files changed, 12 in

[U-Boot] [PATCH] serial: sh: r8a7794: Add support external clock

2014-11-03 Thread Nobuhiro Iwamatsu
The baud rate setting of external clock is enabled. Signed-off-by: Hisashi Nakamura Signed-off-by: Nobuhiro Iwamatsu --- drivers/serial/serial_sh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/serial/serial_sh.h b/drivers/serial/serial_sh.h index bb6a55e..5340

[U-Boot] [PATCH] net: sh-eth: Add support R8A7793

2014-11-03 Thread Nobuhiro Iwamatsu
R8A7793 has the same sh-ether IP core as other SH/rmobile. This patch adds support of R8A7793. Signed-off-by: Nobuhiro Iwamatsu --- drivers/net/sh_eth.c | 5 +++-- drivers/net/sh_eth.h | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_

[U-Boot] [PATCH] serial: sh: Add support R8A7793

2014-11-03 Thread Nobuhiro Iwamatsu
This adds the preset value to register for R8A7793. Signed-off-by: Nobuhiro Iwamatsu --- drivers/serial/serial_sh.h | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/serial/serial_sh.h b/drivers/serial/serial_sh.h index fe8cde4..bb6a55e 100644 --- a/drivers/s

[U-Boot] [U-boot] [Patch] keystone2: replace printf on puts where it's possible

2014-11-03 Thread Ivan Khoronzhuk
It is better to use simple puts() function instead of printf() when it's possible. Also remove redundant sprintf(). Signed-off-by: Ivan Khoronzhuk --- arch/arm/cpu/armv7/keystone/ddr3.c | 2 +- arch/arm/cpu/armv7/keystone/keystone.c | 4 ++-- board/ti/ks2_evm/board.c | 7 ++-

[U-Boot] [U-boot] [Patch] dma: keystone_nav: remove spurious qm_cfg verification

2014-11-03 Thread Ivan Khoronzhuk
The verification qm_cfg existence is done at ksnav_init(). So, there is no need to verify it after initialization. Signed-off-by: Ivan Khoronzhuk --- drivers/dma/keystone_nav.c | 12 1 file changed, 12 deletions(-) diff --git a/drivers/dma/keystone_nav.c b/drivers/dma/keystone_nav.

Re: [U-Boot] Can't find -lgcc

2014-11-03 Thread Anatolij Gustschin
Hello, On Mon, 3 Nov 2014 14:17:45 + Brad Andrews wrote: > Hello, > Can someone help with the error below. > My system specs: > Fedora 3.16.6-200.fc20.i686 > ELDK 5.5.2 > > export > PATH=/home/brad/development/ELDK/powerpc/sysroots/i686-eldk-linux/usr/bin:/home/brad/development/ELDK/powerp

Re: [U-Boot] [PATCH v2] mtd: nand: allow to skip BBT scanning during NAND inititialization

2014-11-03 Thread Scott Wood
On Mon, 2014-11-03 at 15:40 -0600, Scott Wood wrote: > On Thu, 2014-10-23 at 21:25 +0900, Masahiro Yamada wrote: > > Since commit ff94bc40af34 (mtd, ubi, ubifs: resync with Linux-3.14), > > chip->scan_bbt() is called at the end of nand_scan_tail(). > > It means the first read access happens immedia

Re: [U-Boot] [PATCH] nand: reinstate lazy bad block scanning

2014-11-03 Thread Scott Wood
On Wed, 2014-10-22 at 13:40 +0200, Rostislav Lisovy wrote: > Commit ff94bc40af3481d47546595ba73c136de6af6929 > ("mtd, ubi, ubifs: resync with Linux-3.14") > accidentally reverted part of the commit > 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde > ("NAND: Scan bad blocks lazily."). > > Reinstate the ch

Re: [U-Boot] [PATCH v2] mtd: nand: allow to skip BBT scanning during NAND inititialization

2014-11-03 Thread Scott Wood
On Thu, 2014-10-23 at 21:25 +0900, Masahiro Yamada wrote: > Since commit ff94bc40af34 (mtd, ubi, ubifs: resync with Linux-3.14), > chip->scan_bbt() is called at the end of nand_scan_tail(). > It means the first read access happens immediately after the generic > NAND initialization process. > > It

Re: [U-Boot] buildman: using wrong libgcc.a

2014-11-03 Thread Simon Glass
Hi, On 30 October 2014 14:57, Jeroen Hofstee wrote: > Hello Steve, > > On 30-10-14 21:42, Steve Rae wrote: >> >> H -- maybe it would be better to specify the entire path for the >> CROSS_COMPILE, and not rely on the PATH to find the cross compile tools: >> >> diff --git a/tools/buildman/toolc

Re: [U-Boot] [PATCH] fs: make it possible to read the filesystem UUID

2014-11-03 Thread Stephen Warren
On 10/31/2014 09:08 AM, Christian Gmeiner wrote: Some filesystems have a UUID stored in its superblock. To allow using root=UUID=... for the kernel command line we need a way to read-out the filesystem UUID. Hit any key to stop autoboot: 0 => fsuuid fsuuid - Look up a filesystem UUID Usage: fs

[U-Boot] [PATCH] mvebu_mmc: Speed up access time

2014-11-03 Thread Mario Schuknecht
Remove udelay, because card status is polled in a loop. Signed-off-by: Mario Schuknecht --- drivers/mmc/mvebu_mmc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/mmc/mvebu_mmc.c b/drivers/mmc/mvebu_mmc.c index 9f98c3f..2bf9444 100644 --- a/drivers/mmc/mvebu_mmc.c +++ b/drivers/mmc

Re: [U-Boot] Please pull u-boot-x86

2014-11-03 Thread Tom Rini
On Wed, Oct 29, 2014 at 01:13:37PM -0600, Simon Glass wrote: > Hi Tom, > > I am leaving out the common bootm change until I have looked into > tests more. I doubt it will make RC1 at this stage. But here are the > rest of the x86 pending changes before the 'raw' support starts. > > > The follo

Re: [U-Boot] [PULL] u-boot-mpc5xxx / master

2014-11-03 Thread Tom Rini
On Wed, Oct 29, 2014 at 04:32:49PM +0100, Wolfgang Denk wrote: > Dear Tom, > > > The following changes since commit d58a9451e7339ed4cf2b2627e534611f427fb791: > > ppc/arm: zap EMK boards (2014-10-28 12:48:31 -0400) > > are available in the git repository at: > > git://git.denx.de/u-boot-mp

[U-Boot] [U-boot] [Patch 2/2] keystone2: change default boot mode to ubi

2014-11-03 Thread Ivan Khoronzhuk
From: Murali Karicheri To allow out of box demo, change default boot mode to ubi boot now that NAND is functional in latest EVMs. Signed-off-by: Murali Karicheri Signed-off-by: Ivan Khoronzhuk --- include/configs/ks2_evm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/in

[U-Boot] [U-boot] [Patch 1/2] ks2_evm: configs: fix UBI volume name

2014-11-03 Thread Ivan Khoronzhuk
The UBI volume name has to be prefixed with "ubi:". Signed-off-by: Ivan Khoronzhuk --- include/configs/ks2_evm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h index e5e628f..3c72517 100644 --- a/include/configs/ks2_evm.h

[U-Boot] [U-boot] [Patch 0/2] keystone2: change default boot mode to ubi

2014-11-03 Thread Ivan Khoronzhuk
These patches fix ubi boot and enable it by default. Ivan Khoronzhuk (1): ks2_evm: configs: fix UBI volume name Murali Karicheri (1): keystone2: change default boot mode to ubi include/configs/ks2_evm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 1.9.1 __

Re: [U-Boot] [linux-sunxi] [PATCH 4/9] sun6i: Add cpucfg register definitions

2014-11-03 Thread Chen-Yu Tsai
Hi, On Mon, Nov 3, 2014 at 11:34 PM, Hans de Goede wrote: > Not used atm, for future use (e.g. PSCI). > > Signed-off-by: Hans de Goede > --- > arch/arm/include/asm/arch-sunxi/cpu.h| 5 +++ > arch/arm/include/asm/arch-sunxi/cpucfg.h | 67 > > 2 files change

Re: [U-Boot] [linux-sunxi] [PATCH 5/9] sun4i: Rename dram files to dram_sun4i.x

2014-11-03 Thread Chen-Yu Tsai
On Mon, Nov 3, 2014 at 11:34 PM, Hans de Goede wrote: > In preparation for adding sun6i dram support. > > Signed-off-by: Hans de Goede > --- > arch/arm/cpu/armv7/sunxi/Makefile| 6 +- > arch/arm/cpu/armv7/sunxi/dram.c | 750 > --- > arch/arm/cp

Re: [U-Boot] [linux-sunxi] [PATCH 1/9] sun6i: Add new p2wi controller driver

2014-11-03 Thread Chen-Yu Tsai
Hi, On Mon, Nov 3, 2014 at 11:34 PM, Hans de Goede wrote: > From: Oliver Schinagl > > The A31 uses a new push-pull two wire interface, which features higher > transfer speeds (upto 6 MHz) in theory. While the hardware can burst 8 > bytes each time, this driver will only see very little use and t

Re: [U-Boot] Query on the ci_udc driver for USB client implementation

2014-11-03 Thread Fabio Estevam
On Mon, Nov 3, 2014 at 3:33 AM, Sanchayan Maity wrote: > Hello, > > Any pointers? Adding Marek and Stefan on Cc in case they can provide some help. Regards, Fabio Estevam > > Thanks & Regards, > Sanchayan Maity. > > On Thursday 30 October 2014 11:14 AM, Sanchayan Maity wrote: >> Hello, >> >> I

[U-Boot] Please fix warnings on ARM Samsung boards

2014-11-03 Thread Masahiro YAMADA
Hi Samsung developers, I see some warnings when I build Samsung boards. I requested this three months ago, but nobody would fix the warnings. http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/191762 masahiro@oscar:~/workspace/u-boot$ arm-unknown-linux-gnueabi-gcc -v Using built-in spec

[U-Boot] [PATCH 5/9] sun4i: Rename dram files to dram_sun4i.x

2014-11-03 Thread Hans de Goede
In preparation for adding sun6i dram support. Signed-off-by: Hans de Goede --- arch/arm/cpu/armv7/sunxi/Makefile| 6 +- arch/arm/cpu/armv7/sunxi/dram.c | 750 --- arch/arm/cpu/armv7/sunxi/dram_sun4i.c| 750 +++ ar

[U-Boot] [PATCH 9/9] sun6i: Add Mele M9 board

2014-11-03 Thread Hans de Goede
Signed-off-by: Hans de Goede --- board/sunxi/Kconfig | 4 board/sunxi/MAINTAINERS | 1 + configs/Mele_M9_defconfig | 9 + 3 files changed, 14 insertions(+) create mode 100644 configs/Mele_M9_defconfig diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig index df47863..f60

[U-Boot] [PATCH 7/9] sun6i: Poke magic sram controller register to avoid cache issues

2014-11-03 Thread Hans de Goede
Without this the cache will only work in write-through mode, and as soon as it is put in write-back mode things break. Signed-off-by: Hans de Goede --- arch/arm/cpu/armv7/sunxi/board.c | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/cpu/armv7/sunxi/board.c b/arch/arm/cpu/armv7/

[U-Boot] [PATCH 8/9] sun6i: Enable SPL

2014-11-03 Thread Hans de Goede
Enable the SPL now that we've all the necessary bits in place. Signed-off-by: Hans de Goede --- board/sunxi/Kconfig| 1 + configs/Colombus_defconfig | 9 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig index 905e62d..df47

[U-Boot] [PATCH 6/9] sun6i: Add dram initialization code

2014-11-03 Thread Hans de Goede
Add full support for dram initialization, using a fixed clock and autodetection of the memory organization (numbers of channels, bus-width, etc.). This is based on dram_sun6i.c and dram.h from u-boot in the Allwinner A31 SDK, extended with extra initialization sequences and the autodetect algorith

[U-Boot] [PATCH 4/9] sun6i: Add cpucfg register definitions

2014-11-03 Thread Hans de Goede
Not used atm, for future use (e.g. PSCI). Signed-off-by: Hans de Goede --- arch/arm/include/asm/arch-sunxi/cpu.h| 5 +++ arch/arm/include/asm/arch-sunxi/cpucfg.h | 67 2 files changed, 72 insertions(+) create mode 100644 arch/arm/include/asm/arch-sunxi/cpuc

[U-Boot] [PATCH 1/9] sun6i: Add new p2wi controller driver

2014-11-03 Thread Hans de Goede
From: Oliver Schinagl The A31 uses a new push-pull two wire interface, which features higher transfer speeds (upto 6 MHz) in theory. While the hardware can burst 8 bytes each time, this driver will only see very little use and thus is limited to single byte transmission only. Signed-off-by: Oliv

[U-Boot] [PATCH 3/9] sun6i: Add clock functions needed for SPL / DRAM init

2014-11-03 Thread Hans de Goede
Add clock_init_safe and clockset_pll5 functions, as these are needed for SPL support resp. DRAM init (which is needed for SPL too). Also add some extra clock register constant defines. Signed-off-by: Hans de Goede --- arch/arm/cpu/armv7/sunxi/clock_sun6i.c| 77 ++

[U-Boot] [PATCH 2/9] sun6i: Add basic axp221 driver

2014-11-03 Thread Hans de Goede
From: Oliver Schinagl The A31 uses the AXP221 pmic for various voltages. Signed-off-by: Oliver Schinagl Signed-off-by: Hans de Goede --- board/sunxi/board.c| 14 ++ configs/Colombus_defconfig | 1 + drivers/power/Makefile | 1 + drivers/power/axp221.c | 103 ++

[U-Boot] [PATCH 0/9] sun6i: dram-init & SPL support

2014-11-03 Thread Hans de Goede
Hi All, After spending a lot of time on this, I'm happy to present this patch series adding A31 dram init and SPL support, allowing one to boot Allwinner A31 boards using just u-boot for all stages of the boot :) Please review, I will add these to u-boot-sunxi/next and send a pull-req as soon as

[U-Boot] Fwd: verifying & signing

2014-11-03 Thread srinivasan
-- Forwarded message -- From: srinivasan Date: Sun, Nov 2, 2014 at 6:10 PM Subject: verifying & signing To: s...@chromium.org Hi Simon, http://lists.denx.de/pipermail/u-boot/2014-June/180845.html As the above link explains the Signing of kernel & verifying with uboot, Could yo

[U-Boot] Fwd: verifying & signing

2014-11-03 Thread srinivasan
Hi Simon, http://lists.denx.de/pipermail/u-boot/2014-June/180845.html As the above link explains the Signing of kernel & verifying with uboot, Could you please let me know do you have any methods of signing & verifying the linux kernel with root file system ie., am using ti-sdk-am335x-evm-07.00.

[U-Boot] Can't find -lgcc

2014-11-03 Thread Brad Andrews
Hello, Can someone help with the error below. My system specs: Fedora 3.16.6-200.fc20.i686 ELDK 5.5.2 export PATH=/home/brad/development/ELDK/powerpc/sysroots/i686-eldk-linux/usr/bin:/home/brad/development/ELDK/powerpc/sysroots/i686-eldk-linux/usr/bin/powerpc-linux:$PATH export ARCH=powerpc expor

Re: [U-Boot] Query on the ci_udc driver for USB client implementation

2014-11-03 Thread Sanchayan Maity
Hello, Any pointers? Thanks & Regards, Sanchayan Maity. On Thursday 30 October 2014 11:14 AM, Sanchayan Maity wrote: > Hello, > > I am currently implementing USB Host and client support for Freescale Vybrid > platform in u-boot. I managed to get the host implementation working. > > For the

[U-Boot] [PATCH v2 3/3] km_arm: call 'sf release' in the newenv and update scripts

2014-11-03 Thread Valentin Longchamp
This is necessary to make sure that all the pins used for SPI access, especially the CS, are configured back to the NAND Flash interface. Otherwise, if either newenv or update are called, u-boot cannot access the NAND Flash anymore. Signed-off-by: Valentin Longchamp --- Changes in v2: None inc

[U-Boot] [PATCH v2 1/3] env_sf: generalize call to spi_flash_free after accesses

2014-11-03 Thread Valentin Longchamp
Some board require spi_flash_free to be called after all the accesses, in order, for instance, to restore the pin multiplexing configuration in the case where the SPI pins are multiplexed. This was done only in env_relocate_spec and not in saveenv. saveenv is thus changed in order to have the same

[U-Boot] [PATCH v2 2/3] cmd_sf: add 'release' command

2014-11-03 Thread Valentin Longchamp
The release command is the pendant of the probe command. This command allows to call spi_flash_free from the command line. This may be necessary for some boards where sf probe does change the state of the hardware (like with some pin multiplexing changes for instance). Signed-off-by: Valentin Long

[U-Boot] [PATCH v2 0/3] Serial Flash: call spi_flash_free more coherently

2014-11-03 Thread Valentin Longchamp
Some board require spi_flash_free to be called after all the accesses, in order, for instance, to restore the pin multiplexing configuration in the case where the SPI pins are multiplexed. This patch series tries to enhance this. Patch 1 adds spi_flash_free calls to env_sf so that the SPI interfac

Re: [U-Boot] [PATCH 1/5] imx:mx6sxsabresd add usb support

2014-11-03 Thread Peng Fan
Hi, 在 11/3/2014 8:28 PM, Stefano Babic 写道: Hi Peng, On 01/11/2014 03:19, Peng Fan wrote: Add usb support for mx6sxsabresd board. Signed-off-by: Peng Fan Signed-off-by: Ye.Li --- board/freescale/mx6sxsabresd/mx6sxsabresd.c | 29 + include/configs/mx6sxsabresd.

[U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support

2014-11-03 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/ti_armv7_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index 85171db..7d07bcd 100644 --- a/include/configs/ti_armv7_common.h +++ b/include/confi

  1   2   >