Re: [U-Boot] config_distro_bootcmd: Avoid scanning usb twice (under some circumstances)

2014-11-23 Thread Hans de Goede
Hi, On 11/20/2014 07:59 PM, Hans de Goede wrote: When using usb-keyboard support, the preboot env variable must be set to a command to scan usb, so that the keyboard is available to interrupt autoboot. The logical command to add when using config_distro_bootcmd.h is run usb_init, as that

[U-Boot] [PATCH] sunxi: Use usb start rather then run usb_init for preboot with usb-kbd

2014-11-23 Thread Hans de Goede
In an effort to avoid usb getting scanned twice when using an usb keyboard, and booting from usb, I've set preboot to run usb_init in the CONFIG_USB_KEYBOARD patch. This is wrong however, as it causes usb to not be scanned (and the keyboard to not be found) if an env save is done, since then the

Re: [U-Boot] [PATCH] sunxi: Use usb start rather then run usb_init for preboot with usb-kbd

2014-11-23 Thread Ian Campbell
On Sun, 2014-11-23 at 12:14 +0100, Hans de Goede wrote: In an effort to avoid usb getting scanned twice when using an usb keyboard, and booting from usb, I've set preboot to run usb_init in the CONFIG_USB_KEYBOARD patch. This is wrong however, as it causes usb to not be scanned (and the

[U-Boot] [PATCH] sunxi: correct Mele M9 Vbus gpio settings

2014-11-23 Thread Hans de Goede
I noticed that the kernel and u-boot settings were different, double checking has confirmed that the kernel settings are correct. Signed-off-by: Hans de Goede hdego...@redhat.com --- configs/Mele_M9_defconfig | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 1/2] config_distro_bootcmd.h: Allow user to indicate that usb is inited in preboot

2014-11-23 Thread Hans de Goede
When using usb-keyboard support, typically usb will already get started from preboot. In this case doing it again in the bootcmd is undesirable. Allow the user of config_distro_bootcmd to indicate that usb is inited in preboot through the user setting BOOTENV_PREBOOT_INITS_USB. Signed-off-by:

[U-Boot] [PATCH 2/2] sunxi: Avoid usb getting scanned twice when using usb kbd + usb boot

2014-11-23 Thread Hans de Goede
Use the new BOOTENV_PREBOOT_INITS_USB define to avoid usb being scanned twice when using usb kbd + usb boot. Signed-off-by: Hans de Goede hdego...@redhat.com --- include/configs/sunxi-common.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/configs/sunxi-common.h

Re: [U-Boot] USB Host not enumerating properly on AM335x-based board

2014-11-23 Thread Albert ARIBAUD
Hello Anatolij, On Sat, 22 Nov 2014 00:40:58 +0100, Anatolij Gustschin ag...@denx.de wrote: Hi Maxime, On Thu, 20 Nov 2014 17:49:17 +0100 Maxime Ripard maxime.rip...@free-electrons.com wrote: Hi, I'm currently working on 2014.07, on a custom TI AM335x based board. Everything

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

2014-11-23 Thread Albert ARIBAUD
Hello Simon, On Fri, 21 Nov 2014 23:29:53 +0100, Simon Glass s...@chromium.org wrote: Do you mean you implemented the same (similar) behavior as the legacy I2C framework? Yes, we need the ability to scan the bus and find which devices are present. Side note: not sure this was touched

Re: [U-Boot] [PATCH] sunxi: correct Mele M9 Vbus gpio settings

2014-11-23 Thread Ian Campbell
On Sun, 2014-11-23 at 12:42 +0100, Hans de Goede wrote: I noticed that the kernel and u-boot settings were different, double checking has confirmed that the kernel settings are correct. Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Ian Campbell i...@hellion.org.uk ---

Re: [U-Boot] [PATCH v2 1/9] dm: at91: Correct text base for snapper9260

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:08, Simon Glass s...@chromium.org wrote: The value should be 0x21f0. Fix it. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Use a text base of 0x21f0 include/configs/snapper9260.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [U-Boot] [PATCH v2 4/9] dm: at91: Add platform data for GPIO on at91sam9260-based boards

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:08, Simon Glass s...@chromium.org wrote: These boards all have the same GPIO arrangement, so add some common platform data that can be used by all boards. Remove the configs which are no longer required. Signed-off-by: Simon Glass s...@chromium.org --- Changes in

Re: [U-Boot] [PATCH v2 6/9] dm: at91: Add driver model support for the serial driver

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:09, Simon Glass s...@chromium.org wrote: Add driver model support while retaining the existing legacy code. This allows the driver to support boards that have converted to driver model as well as those that have not. Signed-off-by: Simon Glass s...@chromium.org ---

Re: [U-Boot] [PATCH v2 3/9] dm: at91: Add driver model support for atmel GPIO driver

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:08, Simon Glass s...@chromium.org wrote: Modify this driver to support driver model, with platform data required to determine the GPIOs that it controls. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Remove unnecessary port number check - Use

Re: [U-Boot] [PATCH v2 7/9] dm: at91: Convert snapper9260 to use driver model

2014-11-23 Thread Simon Glass
On 5 November 2014 at 03:54, Simon Glass s...@chromium.org wrote: Hi Masahiro, On 1 November 2014 10:27, Masahiro YAMADA yamad...@jp.panasonic.com wrote: Hi Simon, 2014-10-30 4:09 GMT+09:00 Simon Glass s...@chromium.org: diff --git a/include/configs/snapper9260.h

Re: [U-Boot] [PATCH v2 9/9] dm: serial: Support changing the baud rate

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:09, Simon Glass s...@chromium.org wrote: Implement this feature in the uclass so that the baudrate can be changed with 'setenv baudrate rate'. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Add a patch to implement baud rate changes

Re: [U-Boot] [PATCH v2 5/9] dm: at91: Refactor serial driver slightly for driver model

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:08, Simon Glass s...@chromium.org wrote: Before adding driver model support, split out a few of the functions so that they can be used by the driver model code. Signed-off-by: Simon Glass s...@chromium.org Acked-by: Andreas Bießmann andreas.de...@googlemail.com ---

Re: [U-Boot] [PATCH v3 02/14] dm: tegra: Avoid using arch-specific memcpy() in SPL

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: The faster functions are not actually available in SPL and the code size likely isn't worth it. Use the normal memcpy() in SPL. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: - Add new patch to avoid using

Re: [U-Boot] [PATCH v3 03/14] dm: Split the simple malloc() implementation into its own file

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: The simple malloc() implementation is used when memory is tight. It provides a simple buffer with an incrementing pointer. At present the implementation is inside dlmalloc. Move it into its own file so that it is easier to

Re: [U-Boot] [PATCH v2 8/9] dm: at91: Add myself as maintainer for snapper9260

2014-11-23 Thread Simon Glass
On 29 October 2014 at 20:09, Simon Glass s...@chromium.org wrote: The old maintainer has left, so take this over. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Add new patch to add myself as maintainer for snapper9260 board/bluewater/snapper9260/MAINTAINERS | 2 +- 1

Re: [U-Boot] [PATCH v3 04/14] dm: arm: spl: Allow simple malloc() in SPL

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: For SPL it is sometimes useful to have a simple malloc() just to permit driver model to work, in the cases where the full malloc() is not made available by the board config. Signed-off-by: Simon Glass s...@chromium.org ---

Re: [U-Boot] [PATCH v3 05/14] dm: spl: Make simple malloc() available when enabled

2014-11-23 Thread Simon Glass
On 10 November 2014 at 17:16, Simon Glass s...@chromium.org wrote: Set up the simple malloc() implementation when requested, in preference to the full malloc(). Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: None Changes in v2: None common/spl/spl.c | 11 ++- 1

Re: [U-Boot] [PATCH v3 08/14] dm: Allow stdio registration to be dropped

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: Provide a CONFIG_DM_STDIO option to enable registering a serial device with the stdio library. This is seldom useful in SPL, so disable it by default when building for SPL. Signed-off-by: Simon Glass s...@chromium.org

Re: [U-Boot] [PATCH v3 06/14] dm: spl: Allow driver model to be used

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: When enabled, set up driver model for SPL. This allows SPL to use the same drivers as the main U-Boot. Signed-off-by: Simon Glass s...@chromium.org Acked-by: Tom Rini tr...@ti.com --- Changes in v3: None Changes in v2:

Re: [U-Boot] [PATCH v3 11/14] dm: tegra: Add platform data for the GPIO driver

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: Add platform data for the GPIO driver. It doesn't need to contain anything since the GPIO driver will actually use information from the CONFIGs for now. This merely serves to ensure that the GPIO driver is bound.

Re: [U-Boot] [PATCH v3 10/14] dm: tegra: Add platform data for the SPL uart

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: Since we currently don't have device tree available in SPL, add platform data so the uart works. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: None Changes in v2: None drivers/serial/serial_tegra.c | 16

Re: [U-Boot] [PATCH v3 09/14] dm: Disable dm_warn() in SPL

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: Since this function can use up quite a bit of space for its strings, disable it by default in SPL. Use CONFIG_DM_WARN to re-enable it. Signed-off-by: Simon Glass s...@chromium.org Reviewed-by: Tom Rini tr...@ti.com ---

Re: [U-Boot] [PATCH v3 12/14] dm: arm: spl: Make driver model linker lists available

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: The linker lists feature is useful in SPL as it holds the driver model platform data. So don't throw away the lists. Signed-off-by: Simon Glass s...@chromium.org Reviewed-by: Tom Rini tr...@ti.com --- Changes in v3: None

Re: [U-Boot] [PATCH v3 14/14] dm: Update documentation to include CONFIG_DM... options

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass s...@chromium.org wrote: Add documentation for the various driver model options that are now available. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: - Rebase to master Changes in v2: - Rebase to master README

Re: [U-Boot] [PATCH v2 01/17] dm: i2c: Move error reporting into a common function

2014-11-23 Thread Simon Glass
On 17 November 2014 at 07:27, Heiko Schocher h...@denx.de wrote: Hello Simon, Am 11.11.2014 18:46, schrieb Simon Glass: Factor out the common code to make it easier to adjust it. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Add a suitable commit message

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

2014-11-23 Thread Simon Glass
On 20 November 2014 at 19:39, Simon Glass s...@chromium.org wrote: Hi Masahiro, On 20 November 2014 06:06, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Wed, 19 Nov 2014 09:35:54 + Simon Glass s...@chromium.org wrote: Hi Masahiro, On 19 November 2014 08:25,

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

2014-11-23 Thread Simon Glass
On 19 November 2014 at 02:37, Simon Glass s...@chromium.org wrote: 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

Re: [U-Boot] [PATCH v2 04/17] dm: fdt: Correct handling of aliases with embedded digits

2014-11-23 Thread Simon Glass
On 17 November 2014 at 19:32, Tom Rini tr...@ti.com wrote: On Mon, Nov 17, 2014 at 05:57:43AM +, Simon Glass wrote: Hi Tom, On 17 November 2014 00:46, Tom Rini tr...@ti.com wrote: On Tue, Nov 11, 2014 at 10:46:20AM -0700, Simon Glass wrote: Since we scan from left to right looking

Re: [U-Boot] [PATCH v2 05/17] dm: Add a function to bind a device by driver name

2014-11-23 Thread Simon Glass
On 17 November 2014 at 07:29, Heiko Schocher h...@denx.de wrote: Hello Simon, Am 11.11.2014 18:46, schrieb Simon Glass: In some cases we need to manually bind a device to a particular driver. Add a function to do this. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: -

Re: [U-Boot] [PATCH v2 06/17] dm: spi: Correct handling of SPI chip selects in sandbox

2014-11-23 Thread Simon Glass
On 17 November 2014 at 07:29, Heiko Schocher h...@denx.de wrote: Hello Simon, Am 11.11.2014 18:46, schrieb Simon Glass: This code was not updated when the chip select handling was adjusted. Fix it to call the correct function. Signed-off-by: Simon Glass s...@chromium.org --- Changes in

Re: [U-Boot] [PATCH v2 07/17] dm: spi: Use device_bind_driver() instead of our own function

2014-11-23 Thread Simon Glass
On 17 November 2014 at 07:29, Heiko Schocher h...@denx.de wrote: Hello Simon, Am 11.11.2014 18:46, schrieb Simon Glass: The SPI function does the same thing, so we may as well just use the new generic function. The 'cs' parameter was not actually used, so can be dropped. Signed-off-by:

Re: [U-Boot] [PATCH 1/8] dm: core: a trivial clean up

2014-11-23 Thread Simon Glass
On 17 November 2014 at 10:08, Simon Glass s...@chromium.org wrote: On 17 November 2014 08:19, Masahiro Yamada yamad...@jp.panasonic.com wrote: Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Acked-by: Simon Glass s...@chromium.org Applied to u-boot-dm.

Re: [U-Boot] [PATCH 2/8] dm: core: remove meaningless if conditional

2014-11-23 Thread Simon Glass
On 17 November 2014 at 19:23, Simon Glass s...@chromium.org wrote: Hi Masahiro, On 17 November 2014 11:19, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hi Simon, On Mon, 17 Nov 2014 09:14:15 + Simon Glass s...@chromium.org wrote: Hi Masahiro, On 17 November 2014 08:19,

Re: [U-Boot] [PATCH 4/8] dm: core: remove unnecessary return condition in uclass lookup

2014-11-23 Thread Simon Glass
On 17 November 2014 at 10:16, Simon Glass s...@chromium.org wrote: On 17 November 2014 08:19, Masahiro Yamada yamad...@jp.panasonic.com wrote: These conditions never happen. - There is no real uclass with UCLASS_INVALID id. - uclass never becomes NULL because ll_entry_start() always returns

Re: [U-Boot] [PATCH] cros_ec: Fix uninitialised variable in cros_ec.c

2014-11-23 Thread Simon Glass
On 12 November 2014 at 02:06, Simon Glass s...@chromium.org wrote: This fixes this cppcheck report: [drivers/misc/cros_ec.c:704]: (error) Uninitialized variable: req Signed-off-by: Simon Glass s...@chromium.org Reported-by: Wolfgang Denk w...@denx.de Applied to u-boot-dm.

Re: [U-Boot] [PATCH 3/8] dm: core: remove unnecessary return condition in driver lookup

2014-11-23 Thread Simon Glass
On 17 November 2014 at 02:14, Simon Glass s...@chromium.org wrote: On 17 November 2014 08:19, Masahiro Yamada yamad...@jp.panasonic.com wrote: The variable drv never becomes NULL because ll_entry_start() always returns a valid pointer even if there are no entries. The case n_ents == 0 is

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

2014-11-23 Thread Hans de Goede
It turns out that there is a too large spread between boards to handle this with a default value, turn this into Kconfig options, and set the values the factory images are using for the Colombus and Mele_M9 boards. Note this changes the ZQ default when not overriden through defconfig from 120 to

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

2014-11-23 Thread Hans de Goede
It turns out that there is a too large spread between boards to handle this with a default value, turn this into Kconfig options, and set the values the factory images are using for the Colombus and Mele_M9 boards. Note this changes the ZQ default when not overriden through defconfig from 120 to

[U-Boot] [PATCH v2 0/5] sun6i: A31s / CSQ_CS908 board support

2014-11-23 Thread Hans de Goede
Hi, Here is v2 of my sun6i: A31s / CSQ_CS908 board support series. Changes since v1: -sun6i: Make dram clk and zq value Kconfig options -Mention changing of default zq value in commit message -Drop if EXPERT usage, as that breaks setting things through defconfig files -sun6i: Drop some unknown

[U-Boot] [PATCH v2 2/5] sun6i: Add sunxi_get_ss_bonding_id() function

2014-11-23 Thread Hans de Goede
Add a sunxi_get_ss_bonding_id() function, and use it to differentiate between the A31s and the A31. Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Ian Campbell i...@hellion.org.uk --- arch/arm/cpu/armv7/sunxi/cpu_info.c | 38 ++-

[U-Boot] [PATCH v2 3/5] sun6i: dram: Do not try to initialize a second dram chan on A31s

2014-11-23 Thread Hans de Goede
The A31s only has one dram channel, so do not bother with trying to initialize a second channel. Signed-off-by: Hans de Goede hdego...@redhat.com --- arch/arm/cpu/armv7/sunxi/Makefile | 2 +- arch/arm/cpu/armv7/sunxi/dram_sun6i.c | 11 +-- 2 files changed, 10 insertions(+), 3

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

2014-11-23 Thread Hans de Goede
The CSQ CS908 is an A31s based top-set box, with 1G RAM, 8G NAND, rtl8188etv usb wifi, 2 USB A receptacles (1 connected through the OTG controller), ethernet, 3.5 mm jack with a/v out and hdmi out:

[U-Boot] [PATCH v2 4/5] sun6i: Drop some unknown magic from dram init

2014-11-23 Thread Hans de Goede
Allwinner tells us that this bit of code is the rtc ram being used to detect coming out of super-standby mode, and if that is the case, going out of self-refresh mode. Since we do not support super-standby mode, this can be dropped. Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Ian

Re: [U-Boot] [PATCH v2 00/12] spi: sf: ICH SPI driver fix and flash params update

2014-11-23 Thread Bin Meng
Hi Jagan, On Wed, Nov 12, 2014 at 3:04 PM, Jagan Teki jagannadh.t...@gmail.com wrote: On 12 November 2014 07:57, Bin Meng bmeng...@gmail.com wrote: Hi Jagan, On Wed, Nov 5, 2014 at 10:56 AM, Bin Meng bmeng...@gmail.com wrote: Hi Jagan, On Wed, Nov 5, 2014 at 5:21 AM, Jagan Teki

[U-Boot] usbkbd input double echoed

2014-11-23 Thread Nikita Kiryanov
Hi all, I've enabled USB keyboard for cm_fx6 using these three defines: #define CONFIG_USB_KEYBOARD #define CONFIG_SYS_USB_EVENT_POLL #define CONFIG_SYS_STDIO_DEREGISTER I am able to probe it with `usb start`, and set it as input using `setenv stdin usbkbd`. It works, save for one problem:

[U-Boot] Please pull u-boot-dm

2014-11-23 Thread Simon Glass
Hi Tom, There several driver model series outstanding. This request tries to bring in what I think is ready for merging. - at91 series - most of the SPL series, but as mentioned I need a revert of 1ee30aee before enabling this on Tegra (I know you are working on that) - the common parts of the

Re: [U-Boot] usbkbd input double echoed

2014-11-23 Thread Hans de Goede
Hi, On 11/23/2014 04:07 PM, Nikita Kiryanov wrote: Hi all, I've enabled USB keyboard for cm_fx6 using these three defines: #define CONFIG_USB_KEYBOARD #define CONFIG_SYS_USB_EVENT_POLL #define CONFIG_SYS_STDIO_DEREGISTER I am able to probe it with `usb start`, and set it as input

[U-Boot] [PATCH] sunxi: video: Add extra modes and allow selecting the mode via hdmi_mode env

2014-11-23 Thread Hans de Goede
Add the following extra modes: 1280x720@50 1920x1080@60 1920x1200@60 And allow selecting them by setting (and then saving and rebooting) a hdmi_mode env variable to the name of the mode. Also make the reserved fb mem slightly larger to allow 1920x1200 to work. Signed-off-by: Hans de Goede

[U-Boot] [PATCH v3 1/4] dts: Bring in Chrome OS keyboard device tree definition

2014-11-23 Thread Simon Glass
This will be used by nyan, but bring it in in a separate patch since it will be common to other boards. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: - Add patch to bring in cros-ec-keyboard.dtsi Changes in v2: None arch/arm/dts/cros-ec-keyboard.dtsi | 105

[U-Boot] [PATCH v3 3/4] tegra: config: Enable FIT and device tree for all boards

2014-11-23 Thread Simon Glass
Modern kernels require a device tree to boot. Enable FIT support to permit booting these images, rather than just legacy images. This allows booting of Chrome OS kernels, among other things. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: - Add new patch to enable FIT support for

[U-Boot] [PATCH v3 2/4] tegra: dts: Sync tegra124.dtsi with linux kernel

2014-11-23 Thread Simon Glass
Sync this up with Linux v3.18-rc5. Exclude features that are unlikely to supported in U-Boot soon (regulators, pinmux). Also the addresses are updated to 32-bit. Otherwise it is the same. Also bring in the dt-bindings for pinctrl. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: -

[U-Boot] [PATCH v3 4/4] ARM: tegra: Add support for nyan board

2014-11-23 Thread Simon Glass
From: Allen Martin amar...@nvidia.com Nyan is a Tegra124 clamshell board that is very similar to venice2, but it has a different panel, the sdcard cd and wp sense are flipped, and it has a different revision of the AS3722 PMIC. This is the Acer Chromebook 13 CB5-311-T7NN (13.3-inch HD, NVIDIA

Re: [U-Boot] [PATCH v3 4/4] ARM: tegra: Add support for nyan board

2014-11-23 Thread Simon Glass
Hi, On 23 November 2014 at 09:12, Simon Glass s...@chromium.org wrote: From: Allen Martin amar...@nvidia.com Nyan is a Tegra124 clamshell board that is very similar to venice2, but it has a different panel, the sdcard cd and wp sense are flipped, and it has a different revision of the

Re: [U-Boot] set and test a local variable in a script

2014-11-23 Thread Andreas Neubacher
hi, many, many, many thx for your quick response ... now it works, and i know why it hasn't :) br, Andy On 22.11.2014 23:56, Wolfgang Denk wrote: Dear Andreas, In message 5470d48c.1080...@gmx.at you wrote: i'm trying to set a local variable and test the variable in an if-then-else

Re: [U-Boot] set and test a local variable in a script

2014-11-23 Thread Wolfgang Denk
Dear Andreas, In message 547211ba.7080...@gmx.at you wrote: many, many, many thx for your quick response ... now it works, and i know why it hasn't :) I'm glad I was able to help. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB

Re: [U-Boot] [PATCH] fix: tools: kwbimage.c: Initialize headersz to suppress warning

2014-11-23 Thread Lukasz Majewski
Hi Albert, Sorry for a late reply. Hello Lukasz, On Sat, 22 Nov 2014 07:56:35 +0100, Lukasz Majewski l.majew...@majess.pl wrote: Agreed in general, but not for this one, since fixing is the carpet, I assume that you are presenting below an answer to a general case.

Re: [U-Boot] buildman reports error of script/binutils-version.sh

2014-11-23 Thread Simon Glass
Hi, On 21 November 2014 at 16:36, York Sun york...@freescale.com wrote: Simon, Shall we consider host error to be an error reported by buildman? I happen to try a newer version of toolchain from Linaro. Buildman reports this error +../scripts/binutils-version.sh: line 20: printf: 09:

Re: [U-Boot] [PATCH] fdt: remove fdtdec_get_alias_node() function

2014-11-23 Thread Simon Glass
On 21 November 2014 at 03:47, Masahiro Yamada yamad...@jp.panasonic.com wrote: The fdt_path_offset() checks an alias too. fdtdec_get_alias_node(blob, foo) is equivalent to fdt_path_offset(blob, foo). Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com ---

Re: [U-Boot] [PATCH] imx:mx6 fix return value of mxc_get_clock

2014-11-23 Thread Fabio Estevam
On Sun, Nov 23, 2014 at 1:52 AM, Peng Fan peng@freescale.com wrote: mxc_get_clock's return type is unsigned int. 'return -1' is same with 'return 0x', so 0 should be used as the return value when unsupported mxc_clock type is passed to mxc_get_clock. Also include an err message

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

2014-11-23 Thread Minkyu Kang
On 21/11/14 10:26, Suriyan Ramasami wrote: Add information wrt using the USB host interface for loading kernel over ethernet and/or usb mass storage. Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v2: - Make updates to be of use from a user's perspective

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

2014-11-23 Thread Minkyu Kang
On 21/11/14 10:26, Suriyan Ramasami wrote: The USB host code was missing gpio_request() calls before using the gpio functions, causing errors to be printed out. As a side note calls to max77686_set_buck_mode(OPMODE_OFF/OPMODE_ON) have been removed, as they did not have any effect. This is as

Re: [U-Boot] [PATCH v2] odroid: Turn blue LED on

2014-11-23 Thread Minkyu Kang
Dear Suriyan Ramasami, On 18/11/14 08:50, Suriyan Ramasami wrote: To indicate that U-Boot is active, turn on the blue LED. Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v2: - Przemyslaw Marczak, Add gpio_request call. Changes in v1: - First try

[U-Boot] [PATCHv4 respin 2/6] ARM: HYP/non-sec: Fix the ARCH Timer frequency setting.

2014-11-23 Thread Xiubo Li
For some SoCs, the system clock frequency may not equal to the ARCH Timer's frequency. This patch uses the CONFIG_TIMER_CLK_FREQ instead of CONFIG_SYS_CLK_FREQ, then the system clock macro and arch timer macor could be set separately and without interfering each other. Signed-off-by: Xiubo Li

Re: [U-Boot] [PATCH v8 2/3] Odroid-XU3: Add support for Odroid-XU3

2014-11-23 Thread Hyungwon Hwang
Dear Jaehoon Chung, On Thu, 20 Nov 2014 21:08:30 +0900 Jaehoon Chung jh80.ch...@samsung.com wrote: Hi, CPU:Exynos5800@1200MHz Board: Odroid XU3 based on EXYNOS5422 Exynos5800? is it right? Exynos5800 is a variant of Exynos5422 for chromebook, so they are almost same. The support

[U-Boot] qemu-system-arm segfaults on zynq_zed

2014-11-23 Thread Douglas Rupp
I'm brand new to Uboot, so hopefully this is just some missing switch. I did search the archive, and I was able to build and u-boot a versaatilepb version, but xilinx-zynq-a9 is the one I really need. u-boot-2014.10$ make zynq_zed_defconfig u-boot-2014.10$ make all CROSS_COMPILE=arm-none-eabi-

[U-Boot] [PATCH v3] odroid: Turn blue LED on

2014-11-23 Thread Suriyan Ramasami
To indicate that U-Boot is active, turn on the blue LED. Signed-off-by: Suriyan Ramasami suriya...@gmail.com Acked-by: Przemyslaw Marczak p.marc...@samsung.com --- Changes in v3: - Minkyu Kang, Rebase Changes in v2: - Przemyslaw Marczak, Add gpio_request call. Changes in v1: - First try

Re: [U-Boot] qemu-system-arm segfaults on zynq_zed

2014-11-23 Thread Jagan Teki
On 24 November 2014 at 06:03, Douglas Rupp douglas.b.r...@gmail.com wrote: I'm brand new to Uboot, so hopefully this is just some missing switch. I did search the archive, and I was able to build and u-boot a versaatilepb version, but xilinx-zynq-a9 is the one I really need. u-boot-2014.10$

[U-Boot] [PATCH] mtd/nand/vf610_nfc: Disable subpage writes

2014-11-23 Thread Sanchayan Maity
This patch disables subpage writes for vf610_nfc nand driver. This is required, as without this fix, writing unaligned u-boot images with DFU results in a hang. Trying to write unalgined binary images also results in a hang, without disabling subpage writes. Patch has been tested on a Colibri

Re: [U-Boot] [PATCH v3] odroid: Turn blue LED on

2014-11-23 Thread Minkyu Kang
On 24/11/14 15:15, Suriyan Ramasami wrote: To indicate that U-Boot is active, turn on the blue LED. Signed-off-by: Suriyan Ramasami suriya...@gmail.com Acked-by: Przemyslaw Marczak p.marc...@samsung.com --- Changes in v3: - Minkyu Kang, Rebase Changes in v2: - Przemyslaw Marczak, Add

Re: [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND

2014-11-23 Thread Joakim Tjernlund
York Sun york...@freescale.com wrote on 2014/10/24 18:02:03: On 10/24/2014 08:39 AM, Joakim Tjernlund wrote: Booting my t1042 I get: Loading Ramdisk to 2e639000, end 2cc4 ... OK Loading Device Tree to 03fe4000, end 03fffd45 ... OK WARNING Could not get liodn of node /pcie@ffe24:

Re: [U-Boot] [PATCH v3 10/26] x86: ivybridge: Enable PCI in early init

2014-11-23 Thread James Zhou
Hello Simon, Is there a specific case to use PCI before relocation? Or it only applies for x86? If so, we could figure out how to use this new feature. Thanks for the info. Regards, James Date: Fri, 21 Nov 2014 07:51:08 +0100 From: s...@chromium.org To: u-boot@lists.denx.de CC: