[U-Boot] Please pull u-boot-ppc4xx/master

2014-11-19 Thread Stefan Roese
Hi Tom, please pull the patch series from Dirk. It includes one CFI related patch and one mpc83xx where we have the Ack from Kim. The following changes since commit f196044dfd64745a163773c6c746f9e149ace127: ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500)

Re: [U-Boot] [PATCH v2 02/17] dm: core: Allow access to the device's driver_id data

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Tue, 11 Nov 2014 10:46:18 -0700 Simon Glass s...@chromium.org wrote: diff --git a/drivers/core/device.c b/drivers/core/device.c index 49faa29..0d84776 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@ -548,3 +548,8 @@ int device_find_next_child(struct udevice

Re: [U-Boot] [PATCH v2 03/17] dm: core: Add functions to find parent and OF data

2014-11-19 Thread Masahiro Yamada
On Tue, 11 Nov 2014 10:46:19 -0700 Simon Glass s...@chromium.org wrote: Add dev_get_parent() as a convenience to obtain the parent of a device. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: None drivers/core/device.c | 5 + include/dm/device.h | 8

Re: [U-Boot] [PATCH v2 0/17] dm: Add I2C support and convert sandbox, tegra

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Tue, 11 Nov 2014 10:46:16 -0700 Simon Glass s...@chromium.org wrote: This series adds I2C support to driver model. It has become apparent that this is a high priority as it is widely used. It follows along to some extent from the SPI conversion. Several changes are made

Re: [U-Boot] [PATCH v2 14/17] dm: i2c: dts: Add an I2C bus for sandbox

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Tue, 11 Nov 2014 10:46:30 -0700 Simon Glass s...@chromium.org wrote: diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 7614715..11748ae 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -134,6 +134,23 @@

[U-Boot] [PATCH 1/3] powerpc: mpc52xx: a4m072: Convert to generic board

2014-11-19 Thread Stefan Roese
Signed-off-by: Stefan Roese s...@denx.de Cc: Wolfgang Denk w...@denx.de --- include/configs/a4m072.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/a4m072.h b/include/configs/a4m072.h index cc88ac1..3c67655 100644 --- a/include/configs/a4m072.h +++

[U-Boot] [PATCH 2/3] powerpc: mpc52xx: a3m071/a4m2k: Convert to generic board

2014-11-19 Thread Stefan Roese
a3m071 and a4m2k share one config header. So adding the generic board defines in this one file is enough to convert both boards. Signed-off-by: Stefan Roese s...@denx.de Cc: Wolfgang Denk w...@denx.de --- include/configs/a3m071.h | 2 ++ 1 file changed, 2 insertions(+) diff --git

[U-Boot] [PATCH 3/3] powerpc: mpc52xx: Clear GD in the main U-Boot stage for SPL usage

2014-11-19 Thread Stefan Roese
When an MPC5200 based board is used with SPL support, the main U-Boot needs to clear the GD (global data) struct again. Otherwise the generic board init code in board_init_f (when CONFIG_SYS_GENERIC_BOARD is defined) will not initialize all GD variables correctly. Resulting in a hangup on the

Re: [U-Boot] [PATCH v2 08/17] dm: i2c: Add a uclass for I2C

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Tue, 11 Nov 2014 10:46:24 -0700 Simon Glass s...@chromium.org wrote: The uclass implements the same operations as the current I2C framework but makes some changes to make it fit driver model better: - Remove the chip address from API calls - Remove the address length from

Re: [U-Boot] [PATCH v2 08/17] dm: i2c: Add a uclass for I2C

2014-11-19 Thread Masahiro Yamada
Hi Simon, Let me correct my question. (I should have read my mail three times before sending.) On Wed, 19 Nov 2014 17:56:34 +0900 Masahiro Yamada yamad...@jp.panasonic.com wrote: + +int i2c_get_chip(struct udevice *bus, uint chip_addr, struct udevice **devp) +{ + struct

Re: [U-Boot] [PATCH v6 2/4] mx6: thermal: Add i.MX6 CPU thermal sensor support

2014-11-19 Thread Stefano Babic
Hi Fabio, On 18/11/2014 15:16, Fabio Estevam wrote: Hi Stefano, On Mon, Nov 17, 2014 at 10:49 AM, Stefano Babic sba...@denx.de wrote: I have some conceptional question here. This introduces a new set or, better, class of drivers, as we are used to see in kernel as thermal. As we

Re: [U-Boot] [PATCH 8/8] dm: core: abolish u-boot, dm-pre-reloc property

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Tue, 18 Nov 2014 14:37:33 + Simon Glass s...@chromium.org wrote: Hi Masahiro, On 18 November 2014 12:51, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Mon, 17 Nov 2014 18:17:43 + Simon Glass s...@chromium.org wrote: Hi Masahiro, On

[U-Boot] [PATCH] mpc85xx/sleep: flush cache after restoring DDR data

2014-11-19 Thread b29983
From: Tang Yuantian yuantian.t...@freescale.com Cache needs to be flushed after restoring DDR data. Signed-off-by: Tang Yuantian yuantian.t...@freescale.com --- board/freescale/t102xrdb/t102xrdb.c | 2 ++ board/freescale/t104xrdb/t104xrdb.c | 2 ++ 2 files changed, 4 insertions(+) diff --git

Re: [U-Boot] [PATCH v2 02/17] dm: core: Allow access to the device's driver_id data

2014-11-19 Thread Simon Glass
Hi Masahiro, On 19 November 2014 08:25, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Tue, 11 Nov 2014 10:46:18 -0700 Simon Glass s...@chromium.org wrote: diff --git a/drivers/core/device.c b/drivers/core/device.c index 49faa29..0d84776 100644 --- a/drivers/core/device.c

Re: [U-Boot] [PATCH v2 03/17] dm: core: Add functions to find parent and OF data

2014-11-19 Thread Simon Glass
Hi Masahiro, On 19 November 2014 08:27, Masahiro Yamada yamad...@jp.panasonic.com wrote: On Tue, 11 Nov 2014 10:46:19 -0700 Simon Glass s...@chromium.org wrote: Add dev_get_parent() as a convenience to obtain the parent of a device. Signed-off-by: Simon Glass s...@chromium.org ---

Re: [U-Boot] [PATCH v2 08/17] dm: i2c: Add a uclass for I2C

2014-11-19 Thread Simon Glass
Hi Masahiro, On 19 November 2014 08:56, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Tue, 11 Nov 2014 10:46:24 -0700 Simon Glass s...@chromium.org wrote: The uclass implements the same operations as the current I2C framework but makes some changes to make it fit driver

Re: [U-Boot] [PATCH v2 14/17] dm: i2c: dts: Add an I2C bus for sandbox

2014-11-19 Thread Simon Glass
Hi Masahiro, On 19 November 2014 08:29, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Tue, 11 Nov 2014 10:46:30 -0700 Simon Glass s...@chromium.org wrote: diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 7614715..11748ae 100644 ---

[U-Boot] [PATCH 0/6] ARM: at91: SAMA5: extract the common sama5 chip configurations to a common header

2014-11-19 Thread Josh Wu
This patch series reorganized the configurations for SAMA5 chips. Make the common part into one file. That way we don't need to have many copy of the same configurations. Josh Wu (6): ARM: at91: sama5d3_xplained: spl: enable PMECC header generation ARM: at91: sama5: move the common part of

[U-Boot] [PATCH 6/6] ARM: at91: at91sam9x5: mmc: save environment as a file in FAT partition.

2014-11-19 Thread Josh Wu
This patch will save U-Boot environment as a file: uboot.env, in FAT partition instead of saving it in raw sector of SD card. Since saving environment in raw sector has risk of corrupting the SD card and only can use very small size. Save as a FAT file has no above limitation. Signed-off-by: Josh

[U-Boot] [PATCH 3/6] ARM: at91: sama5d3_xplained: set ENV_FAT_DEVICE_AND_PART intead of using number

2014-11-19 Thread Josh Wu
We set ENV_FAT_DEVICE_AND_PART to 0. That specify the device number and not specify the partition number. So when 1. no partition table: take device 0 as a FAT file system. 2. has parttion table: use device 0 partition 1. For more details, please refer to the commit:

[U-Boot] [PATCH 5/6] ARM: at91: sama5: move the bootcmd definition to the common header

2014-11-19 Thread Josh Wu
All the SAMA5 chips has almost same bootcmd except SAMA5D3X-EK board. SAMA5D3X-EK has old serial flash boot command. So just updated to following same boot command as SAMA5D4EK. Another point is the mmc bootcmd's dtb name. Which should changed according to boards. In this patch I just use dtb for

[U-Boot] [PATCH 4/6] ARM: at91: sama5d3: mmc: save enviroment as a fat file (uboot.env)

2014-11-19 Thread Josh Wu
Signed-off-by: Josh Wu josh...@atmel.com --- include/configs/sama5d3xek.h | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/include/configs/sama5d3xek.h b/include/configs/sama5d3xek.h index ee0fddb..39aa75b 100644 --- a/include/configs/sama5d3xek.h +++

[U-Boot] [PATCH 1/6] ARM: at91: sama5d3_xplained: spl: enable PMECC header generation

2014-11-19 Thread Josh Wu
As sama5d3 xplained support the PMECC. So add the PMECC header for spl binary. That make ROM loader can use PMECC to avoid error flips in spl code in nandflash. Signed-off-by: Josh Wu josh...@atmel.com --- include/configs/sama5d3_xplained.h | 1 + 1 file changed, 1 insertion(+) diff --git

[U-Boot] [PATCH 2/6] ARM: at91: sama5: move the common part of configurations to at91-sama5_common.h

2014-11-19 Thread Josh Wu
Create a new configuration file: at91-sama5_common.h. Which include the configurations that reused by all SAMA5 chips. In the command header, we add the CMD_SETEXPR. NOTE: NOR flash definition should be put before including the common header. Signed-off-by: Josh Wu josh...@atmel.com ---

[U-Boot] m68k maintenance

2014-11-19 Thread Angelo Dureghello
Dear Jason Jin, this mail to ask if you are still interested in the role of m68k custodian. If not, please let us know, i am proposing myself as custodian since quite active on u-boot m68k development currently. Regards, Angelo Dureghello ___ U-Boot

Re: [U-Boot] [PATCH 1/3] powerpc: mpc52xx: a4m072: Convert to generic board

2014-11-19 Thread Wolfgang Denk
Dear Stefan Roese, In message 1416386268-31398-1-git-send-email...@denx.de you wrote: Signed-off-by: Stefan Roese s...@denx.de Cc: Wolfgang Denk w...@denx.de --- include/configs/a4m072.h | 2 ++ 1 file changed, 2 insertions(+) Applied, thanks. Best regards, Wolfgang Denk -- DENX

Re: [U-Boot] [PATCH 2/3] powerpc: mpc52xx: a3m071/a4m2k: Convert to generic board

2014-11-19 Thread Wolfgang Denk
Dear Stefan Roese, In message 1416386268-31398-2-git-send-email...@denx.de you wrote: a3m071 and a4m2k share one config header. So adding the generic board defines in this one file is enough to convert both boards. Signed-off-by: Stefan Roese s...@denx.de Cc: Wolfgang Denk w...@denx.de ---

Re: [U-Boot] [PATCH 3/3] powerpc: mpc52xx: Clear GD in the main U-Boot stage for SPL usage

2014-11-19 Thread Wolfgang Denk
Dear Stefan Roese, In message 1416386268-31398-3-git-send-email...@denx.de you wrote: When an MPC5200 based board is used with SPL support, the main U-Boot needs to clear the GD (global data) struct again. Otherwise the generic board init code in board_init_f (when CONFIG_SYS_GENERIC_BOARD

[U-Boot] powerpc: mpc52xx: PULL REQUEST

2014-11-19 Thread Wolfgang Denk
Dear Tom, The following changes since commit f196044dfd64745a163773c6c746f9e149ace127: ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500) are available in the git repository at: git://git.denx.de/u-boot-mpc5xxx.git master for you to fetch changes up to

Re: [U-Boot] [SOLVED] loadb problem.

2014-11-19 Thread Wolfgang Denk
Dear Bo, In message 1416343564051-196714.p...@n7.nabble.com you wrote: The TESTING variable was defined to debug the Spifilib library that is needed for quad spi flash on lpc cpus. As you can see in the very first post, I made some printfs and a 10 ms delay. I removed those as well, so in

Re: [U-Boot] [PATCH v2 0/17] dm: Add I2C support and convert sandbox, tegra

2014-11-19 Thread Heiko Schocher
Hello Masahiro, Am 19.11.2014 09:27, schrieb Masahiro Yamada: Hi Simon, On Tue, 11 Nov 2014 10:46:16 -0700 Simon Glass s...@chromium.org wrote: This series adds I2C support to driver model. It has become apparent that this is a high priority as it is widely used. It follows along to some

[U-Boot] [PATCH v5 2/3] common/lcd: Make lcd_dt_simplefb_configure_node use fdt_setup_simplefb_node

2014-11-19 Thread Hans de Goede
Change lcd_dt_simplefb_configure_node into a wrapper around the new generic fdt_setup_simplefb_node helper function. Signed-off-by: Hans de Goede hdego...@redhat.com --- common/lcd.c | 47 +-- 1 file changed, 5 insertions(+), 42 deletions(-) diff

[U-Boot] [PATCH v5 1/3] fdt_support: Add a fdt_setup_simplefb_node helper function

2014-11-19 Thread Hans de Goede
Add a generic helper to fill and enable simplefb nodes. The first user of this will be the sunxi display code. lcd_dt_simplefb_configure_node is also a good candidate to be converted to use this, but that requires someone to run some tests first, as lcd_dt_simplefb_configure_node does not honor

[U-Boot] [PATCH v5 0/3] sunxi: video: Add simplefb support

2014-11-19 Thread Hans de Goede
Hi All, Here is v5 of my sunxi simplefb support set. Changes since v4: -Make sunxi_simplefb_setup return error codes -Add a patch to make lcd_dt_simplefb_configure_node use the new fdt_setup_simplefb_node helper (only compile tested!) Changes since v3: -Added a fdt_setup_simplefb_node() helper

[U-Boot] [PATCH v5 3/3] sunxi: video: Add simplefb support

2014-11-19 Thread Hans de Goede
From: Luc Verhaegen l...@skynet.be Add simplefb support, note this depends on the kernel having support for the clocks property which has recently been added to the simplefb devicetree binding. Signed-off-by: Luc Verhaegen l...@skynet.be [hdego...@redhat.com: Use pre-populated simplefb node

Re: [U-Boot] [PATCH 1/5] sun6i: Make dram clk and zq value Kconfig options

2014-11-19 Thread Hans de Goede
Hi, On 11/18/2014 03:07 PM, Ian Campbell wrote: On Tue, 2014-11-18 at 12:32 +0100, Hans de Goede wrote: Hi, On 11/17/2014 07:54 PM, Ian Campbell wrote: On Sun, 2014-11-16 at 17:16 +0100, Hans de Goede wrote: +config DRAM_ZQ + int sun6i dram zq value if EXPERT + default 123 == 0x7b,

Re: [U-Boot] [PATCH 5/5] sun6i: Add new CSQ_CS908 board

2014-11-19 Thread Hans de Goede
Hi, On 11/18/2014 03:10 PM, Ian Campbell wrote: On Tue, 2014-11-18 at 13:47 +0100, Hans de Goede wrote: Hi, On 11/17/2014 08:03 PM, Ian Campbell wrote: On Sun, 2014-11-16 at 17:16 +0100, Hans de Goede wrote: The CSQ CS908 is an A31s based top-set box, with 1G RAM, 8G NAND, rtl8188etv usb

Re: [U-Boot] [PATCH v6 2/4] mx6: thermal: Add i.MX6 CPU thermal sensor support

2014-11-19 Thread Otavio Salvador
On Wed, Nov 19, 2014 at 7:08 AM, Stefano Babic sba...@denx.de wrote: On 18/11/2014 15:16, Fabio Estevam wrote: On Mon, Nov 17, 2014 at 10:49 AM, Stefano Babic sba...@denx.de wrote: I have some conceptional question here. This introduces a new set or, better, class of drivers, as we are used

[U-Boot] [PATCH] arm: make arch memset/memcpy to work with Thumb2 builds

2014-11-19 Thread Stefan Agner
Resynchronize memcpy/memset with kernel and build them explicitly in Thumb2 mode (unified syntax). Those assembler files can be built and linked in ARM mode too, however when calling them from Thumb2 built code, the stack got corrupted and the copy did not succeed (the exact details have not been

[U-Boot] [PATCH v4] .travis.yml: build u-boot on travis-ci

2014-11-19 Thread Roger Meier
From: Meier, Roger r.me...@siemens.com Goal: - building all variants of U-Boot with multiple configurations - code quality checks and metrics - https://travis-ci.org/u-boot/u-boot/builds --- Changes for v4: - ignore HACKKIT board (suggested by Wolfgang Denk) - add /tmp/dtc as first

[U-Boot] [PATCH] arm: mx6: Change defines ENET_xxMHz to ENET_xxMHZ (no CamelCase)

2014-11-19 Thread Stefan Roese
As checkpatch complaines about these camel-case defines, lets change them to only use upper-case characters. Signed-off-by: Stefan Roese s...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com Cc: Jon Nettleton jon.nettle...@gmail.com Cc: Stefano Babic

[U-Boot] [PATCH] cmd_fuse: return CMD_RET_FAILURE on error

2014-11-19 Thread Hector Palacios
Fuse drivers, like the mxs_ocotp.c, may return negative error codes but the commands are not allowed to return negative error codes to the shell, otherwise the following error appears: exit not allowed from main input shell. Signed-off-by: Hector Palacios hector.palac...@digi.com ---

[U-Boot] [PATCH v1 1/2] odroid: Update README with USB host information

2014-11-19 Thread Suriyan Ramasami
Add information wrt the USB host side of things for the Odroid-U2/U3 and the Odroid-X/X2 Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v1: - Add USB host notes for the Odroid doc/README.odroid | 48 1 file changed, 48

[U-Boot] [PATCH v1 2/2] odroid: usbhost - Add missing gpio_request call

2014-11-19 Thread Suriyan Ramasami
The USB host code was missing gpio_request() calls before using the gpio functions, causing errors to be printed out. Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v1: - Added gpio_request() call in board_gpio_init() board/samsung/odroid/odroid.c | 13 +++-- 1

Re: [U-Boot] Query on CONFIG_SYS_THUMB_BUILD

2014-11-19 Thread Bill Pringlemeir
On 19 Nov 2014, w...@denx.de wrote: Dear Albert, In message 20141119074214.3d414ce6@lilith you wrote: For -mauto-it, it is not documented in the gas documentation online or in my current as' --target-help. I'll dig this deeper today, but barring any scream from me, the change above is fine

[U-Boot] [PATCH 0/3] dm: display devices in a tree-like format for easy debug

2014-11-19 Thread Masahiro Yamada
When I was reviewing I2C DM series, I found it difficult to track what is going on. When is this node is bound/probe? etc. I think this tool is helpful to know which device is bound/probe. Devices are listed like tree command does. Masahiro Yamada (3): lib: string: move strlcpy() to a

[U-Boot] [PATCH 1/3] lib: string: move strlcpy() to a common place

2014-11-19 Thread Masahiro Yamada
Move strlcpy() definition from drivers/usb/gadget/ether.c to lib/string.c because it is a very useful function. Let's add the prototype to include/linux/string.h too. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- drivers/usb/gadget/ether.c | 24

[U-Boot] [PATCH 3/3] sandbox: enable showdev command

2014-11-19 Thread Masahiro Yamada
Of course, this command can be used on any boards besides sandbox. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- include/configs/sandbox.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index ee4b244..334142b 100644 ---

[U-Boot] [PATCH 2/3] dm: add a command to list devices in a tree-like format

2014-11-19 Thread Masahiro Yamada
We are adding more and more drivers to driver model these days. Compared with the ad-hoc driver system, it seems pretty difficult to understand how drivers are working on driver model. For ex. - Which devices have been bound? - Which devices have been probed? - Which is the parent of this

Re: [U-Boot] [PATCH 1/7] common/board_f: add setup of initial stack frame for MIPS

2014-11-19 Thread Daniel Schwierzeck
Hi Simon, On 17.11.2014 07:24, Simon Glass wrote: Hi Daniel, On 15 November 2014 22:46, Daniel Schwierzeck daniel.schwierz...@gmail.com wrote: The MIPS specific setup of the initial stack frame was not ported to generic board_f. Signed-off-by: Daniel Schwierzeck

Re: [U-Boot] [PATCH v3 3/3] arm: odroid: usb: add support for usb host including ethernet

2014-11-19 Thread Przemyslaw Marczak
Hello Suriyan, On 11/18/2014 06:34 PM, Suriyan Ramasami wrote: Hello Przemyslaw, On Tue, Nov 18, 2014 at 3:09 AM, Przemyslaw Marczak p.marc...@samsung.com wrote: Hello Suriyan, On 11/18/2014 04:30 AM, Suriyan Ramasami wrote: Hello Minkyu Kang/Przemyslaw and of course anyone else who can

Re: [U-Boot] [PATCH v1 1/2] odroid: Update README with USB host information

2014-11-19 Thread Przemyslaw Marczak
Hello, On 11/19/2014 05:21 PM, Suriyan Ramasami wrote: Add information wrt the USB host side of things for the Odroid-U2/U3 and the Odroid-X/X2 Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v1: - Add USB host notes for the Odroid doc/README.odroid | 48

Re: [U-Boot] [PATCH v1 2/2] odroid: usbhost - Add missing gpio_request call

2014-11-19 Thread Przemyslaw Marczak
Hello, On 11/19/2014 05:21 PM, Suriyan Ramasami wrote: The USB host code was missing gpio_request() calls before using the gpio functions, causing errors to be printed out. Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v1: - Added gpio_request() call in board_gpio_init()

Re: [U-Boot] [PATCH U-Boot] ARM: rpi_b: detect board revision

2014-11-19 Thread Stephen Warren
On 11/18/2014 09:40 PM, Stephen Warren wrote: Detect the board revision early during boot, and print the decoded model name. Eventually, this information can be used for tasks such as: - Allowing/preventing USB device mode; some models have a USB device on- board so only host mode makes

Re: [U-Boot] Query on CONFIG_SYS_THUMB_BUILD

2014-11-19 Thread Albert ARIBAUD
Hello Bill, On Wed, 19 Nov 2014 11:31:05 -0500, Bill Pringlemeir bpringlem...@nbsps.com wrote: On 19 Nov 2014, w...@denx.de wrote: Dear Albert, In message 20141119074214.3d414ce6@lilith you wrote: For -mauto-it, it is not documented in the gas documentation online or in my current

Re: [U-Boot] u-boot, fsl_espi.c driver

2014-11-19 Thread Joakim Tjernlund
Jagan Teki jagannadh.t...@gmail.com wrote on 2014/11/18 22:31:53: On 18 November 2014 14:42, Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Ping? Joakim Tjernlund/Transmode wrote on 2014/10/29 19:43:14: Couldn't understand what discussion is going, does some issue in driver or

Re: [U-Boot] [PATCH v1 1/2] odroid: Update README with USB host information

2014-11-19 Thread Suriyan Ramasami
Hello Przemyslaw, On Wed, Nov 19, 2014 at 9:39 AM, Przemyslaw Marczak p.marc...@samsung.com wrote: Hello, On 11/19/2014 05:21 PM, Suriyan Ramasami wrote: Add information wrt the USB host side of things for the Odroid-U2/U3 and the Odroid-X/X2 Signed-off-by: Suriyan Ramasami

Re: [U-Boot] Query on CONFIG_SYS_THUMB_BUILD

2014-11-19 Thread Bill Pringlemeir
In message 20141119074214.3d414ce6@lilith you^H^H^H Stefan wrote: For -mauto-it, it is not documented in the gas documentation online or in my current as' --target-help. I'll dig this deeper today, but barring any scream from me, the change above is fine globally in U-Boot. On 19 Nov

Re: [U-Boot] [PATCH v1 1/2] odroid: Update README with USB host information

2014-11-19 Thread Przemyslaw Marczak
Hi, On 11/19/2014 07:29 PM, Suriyan Ramasami wrote: Hello Przemyslaw, On Wed, Nov 19, 2014 at 9:39 AM, Przemyslaw Marczak p.marc...@samsung.com wrote: Hello, On 11/19/2014 05:21 PM, Suriyan Ramasami wrote: Add information wrt the USB host side of things for the Odroid-U2/U3 and the

Re: [U-Boot] [PATCH v1 1/2] odroid: Update README with USB host information

2014-11-19 Thread Suriyan Ramasami
Hello Przemyslaw, On Wed, Nov 19, 2014 at 10:40 AM, Przemyslaw Marczak p.marc...@samsung.com wrote: Hi, On 11/19/2014 07:29 PM, Suriyan Ramasami wrote: Hello Przemyslaw, On Wed, Nov 19, 2014 at 9:39 AM, Przemyslaw Marczak p.marc...@samsung.com wrote: Hello, On 11/19/2014 05:21 PM,

Re: [U-Boot] [PATCH U-Boot] ARM: rpi_b: detect board revision

2014-11-19 Thread Matthias Klein
Am 19.11.2014 um 18:43 schrieb Stephen Warren: On 11/18/2014 09:40 PM, Stephen Warren wrote: Detect the board revision early during boot, and print the decoded model name. Eventually, this information can be used for tasks such as: - Allowing/preventing USB device mode; some models have a USB

[U-Boot] [PATCH] git-mailrc: fix mips alias

2014-11-19 Thread Daniel Schwierzeck
Signed-off-by: Daniel Schwierzeck daniel.schwierz...@gmail.com --- doc/git-mailrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/git-mailrc b/doc/git-mailrc index ad22763..1231b6b 100644 --- a/doc/git-mailrc +++ b/doc/git-mailrc @@ -14,6 +14,7 @@ alias aaribaud

Re: [U-Boot] [PATCH v1 1/2] odroid: Update README with USB host information

2014-11-19 Thread Przemyslaw Marczak
Hello, On 11/19/2014 07:47 PM, Suriyan Ramasami wrote: Hello Przemyslaw, On Wed, Nov 19, 2014 at 10:40 AM, Przemyslaw Marczak p.marc...@samsung.com wrote: Hi, On 11/19/2014 07:29 PM, Suriyan Ramasami wrote: Hello Przemyslaw, On Wed, Nov 19, 2014 at 9:39 AM, Przemyslaw Marczak

[U-Boot] [RFC PATCH] Kbuild: introduce Makefile in arch/$ARCH/

2014-11-19 Thread Daniel Schwierzeck
Introduce a Makefile under arch/$ARCH/ and include it in the top Makefile (similar to Linux kernel). This allows further refactoringi like moving architecture-specific code out of global makefiles, deprecating config variables (CPU, CPUDIR, SOC) or deprecating arch/$ARCH/config.mk. In contrary to

[U-Boot] [RFC Patch 1/2] powerpc: Move fsl_errata.h out of arch/powerpc

2014-11-19 Thread York Sun
This header file becomes common for both powerpc and arm SoCs. Signed-off-by: York Sun york...@freescale.com CC: Alison Wang alison.w...@freescale.com CC: Nikhil Badola nikhil.bad...@freescale.com --- This patch is needed if USB is enabled for LS1021 SoC. arch/powerpc/cpu/mpc85xx/cmd_errata.c

[U-Boot] [RFC Patch 2/2] driver/usb/fsl: Make FSL USB driver common

2014-11-19 Thread York Sun
Add ifdef for powerpc specific code. This driver can be used by arm SoCs. Signed-off-by: York Sun york...@freescale.com CC: Alison Wang alison.w...@freescale.com CC: Nikhil Badola nikhil.bad...@freescale.com --- This patch is needed if fsl USB driver is enabled for ARM SoCs, like LS1021.

Re: [U-Boot] [PATCH v5 0/3] sunxi: video: Add simplefb support

2014-11-19 Thread Simon Glass
Hi Hans, On 19 November 2014 13:31, Hans de Goede hdego...@redhat.com wrote: Hi All, Here is v5 of my sunxi simplefb support set. Changes since v4: -Make sunxi_simplefb_setup return error codes -Add a patch to make lcd_dt_simplefb_configure_node use the new fdt_setup_simplefb_node helper

Re: [U-Boot] [PATCH 1/7] common/board_f: add setup of initial stack frame for MIPS

2014-11-19 Thread Simon Glass
Hi Daniel, On 19 November 2014 16:59, Daniel Schwierzeck daniel.schwierz...@gmail.com wrote: Hi Simon, On 17.11.2014 07:24, Simon Glass wrote: Hi Daniel, On 15 November 2014 22:46, Daniel Schwierzeck daniel.schwierz...@gmail.com wrote: The MIPS specific setup of the initial stack frame

Re: [U-Boot] [PATCH 1/5] arm: socfpga: dts: altr, rst-mgr.h: Move to SPDX license identifiers

2014-11-19 Thread Marek Vasut
all, thank you! Can you please verify u-boot-socfpga branch topic/drivers/spi-20141119 and test if all stil works please ? Best regards, Marek Vasut ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] usb: ehci: do not set the LSB of Current qTD pointer

2014-11-19 Thread Marek Vasut
On Monday, November 17, 2014 at 09:54:14 AM, Masahiro Yamada wrote: According to EHCI specification, the LSB of DWORD 3 of Queue Head (Current qTD Pointer) is not T-bit, but always zero. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Applied, thanks! Best regards, Marek Vasut

Re: [U-Boot] [PATCH] cmd_fuse: return CMD_RET_FAILURE on error

2014-11-19 Thread Benoît Thébaudeau
Dear Hector Palacios, On Wed, Nov 19, 2014 at 4:52 PM, Hector Palacios hector.palac...@digi.com wrote: Fuse drivers, like the mxs_ocotp.c, may return negative error codes but the commands are not allowed to return negative error codes to the shell, Correct, except -1 for CMD_RET_USAGE.

Re: [U-Boot] [PATCH 0/6] ARM: at91: SAMA5: extract the common sama5 chip configurations to a common header

2014-11-19 Thread Bo Shen
Hi Josh, On 11/19/2014 07:02 PM, Josh Wu wrote: This patch series reorganized the configurations for SAMA5 chips. Make the common part into one file. That way we don't need to have many copy of the same configurations. Thanks for this patch. However, the u-boot is switching to Kconfig, so in

Re: [U-Boot] [PATCH 1/6] ARM: at91: sama5d3_xplained: spl: enable PMECC header generation

2014-11-19 Thread Bo Shen
Hi Josh, On 11/19/2014 07:03 PM, Josh Wu wrote: As sama5d3 xplained support the PMECC. So add the PMECC header for spl binary. That make ROM loader can use PMECC to avoid error flips in spl code in nandflash. Signed-off-by: Josh Wu josh...@atmel.com Thanks. Acked-by: Bo Shen

Re: [U-Boot] [PATCH 0/6] ARM: at91: SAMA5: extract the common sama5 chip configurations to a common header

2014-11-19 Thread Josh Wu
Hi, Bo On 11/20/2014 9:12 AM, Bo Shen wrote: Hi Josh, On 11/19/2014 07:02 PM, Josh Wu wrote: This patch series reorganized the configurations for SAMA5 chips. Make the common part into one file. That way we don't need to have many copy of the same configurations. Thanks for this patch.

Re: [U-Boot] [PATCH 0/6] ARM: at91: SAMA5: extract the common sama5 chip configurations to a common header

2014-11-19 Thread Bo Shen
Hello Josh, On 11/20/2014 11:22 AM, Josh Wu wrote: Hi, Bo On 11/20/2014 9:12 AM, Bo Shen wrote: Hi Josh, On 11/19/2014 07:02 PM, Josh Wu wrote: This patch series reorganized the configurations for SAMA5 chips. Make the common part into one file. That way we don't need to have many copy of

[U-Boot] [PATCH 1/2] ARM: rpi: rename rpi_b to rpi

2014-11-19 Thread Stephen Warren
The U-Boot port runs on a variety of RPi models, not just the B. So, rename the port to something slightly more generic. Signed-off-by: Stephen Warren swar...@wwwdotorg.org --- These two patches are based on ARM: rpi_b: detect board revision which I sent recently. --- arch/arm/Kconfig

[U-Boot] [PATCH 2/2] ARM: rpi: support an environment

2014-11-19 Thread Stephen Warren
Enable ENV_IS_IN_FAT so that the environment can be stored persistently. It's stored in the FAT partition that the RPi firmware requires. On most RPis, this is on the SD card (which must be present in order for the system to boot). On the CM this is on the built-in eMMC device. Since we now have

Re: [U-Boot] [PATCH v5 1/3] fdt_support: Add a fdt_setup_simplefb_node helper function

2014-11-19 Thread Stephen Warren
On 11/19/2014 06:31 AM, Hans de Goede wrote: Add a generic helper to fill and enable simplefb nodes. The first user of this will be the sunxi display code. lcd_dt_simplefb_configure_node is also a good candidate to be converted to use this, but that requires someone to run some tests

Re: [U-Boot] [RFC Patch 1/2] powerpc: Move fsl_errata.h out of arch/powerpc

2014-11-19 Thread Prabhakar Kushwaha
Hi York, On 11/20/2014 2:54 AM, York Sun wrote: This header file becomes common for both powerpc and arm SoCs. Signed-off-by: York Sun york...@freescale.com CC: Alison Wang alison.w...@freescale.com CC: Nikhil Badola nikhil.bad...@freescale.com --- This patch is needed if USB is enabled for

[U-Boot] CTRL-C hangs after hush: fix segfault on syntax error

2014-11-19 Thread Stephen Warren
Rabin, With 128059b926b3 hush: fix segfault on syntax error applied, I find that if I press CTRL-C at the U-Boot prompt, U-Boot hangs. If I revert that commit, CTRL-C works fine (prints CTRL-C and returns to the command prompt). I'm testing on real HW (rpi_b board), although I don't expect the

Re: [U-Boot] [PATCH v2 08/17] dm: i2c: Add a uclass for I2C

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Wed, 19 Nov 2014 10:24:47 + Simon Glass s...@chromium.org wrote: BTW, address_offset within the chip and data are treated in the same way in I2C bus. Should we pass them separately to each driver? I mean, can we put the offset address and data in the buffer?

Re: [U-Boot] [PATCH v2 02/17] dm: core: Allow access to the device's driver_id data

2014-11-19 Thread Masahiro Yamada
Hi Simon, On Wed, 19 Nov 2014 09:35:54 + Simon Glass s...@chromium.org wrote: Hi Masahiro, On 19 November 2014 08:25, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Tue, 11 Nov 2014 10:46:18 -0700 Simon Glass s...@chromium.org wrote: diff --git

Re: [U-Boot] [PATCH 1/5] arm: socfpga: dts: altr, rst-mgr.h: Move to SPDX license identifiers

2014-11-19 Thread Stefan Roese
...@denx.de Cc: Pavel Machek pa...@denx.de Applied all, thank you! Can you please verify u-boot-socfpga branch topic/drivers/spi-20141119 and test if all stil works please ? Looks good. Tested successfully on SoCrates. Thanks, Stefan ___ U-Boot mailing

[U-Boot] [PATCH] imx: mx53loco: Add raw initrd support

2014-11-19 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET guillaume.gar...@free.fr Cc: Stefano Babic sba...@denx.de Cc: Jason Liu r64...@freescale.com --- include/configs/mx53loco.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 10fb1f4..42bc3c8 100644