[U-Boot] [PATCH 0/5] ARM: OMAP4/5: Add support to boot with device tree as default

2013-03-23 Thread Sricharan R
With the kernel moving all towards device tree, this series adds support to make the device tree boot as the default for OMAP4/5 platforms. Sricharan R (5): ARM: OMAP5: Rename omap5_evm.h to omap5_uevm.h ARM: OMAP5: Set fdt_high to enable booting with Device tree ARM: OMAP5: Support loading

[U-Boot] [PATCH 2/5] ARM: OMAP5: Set fdt_high to enable booting with Device tree

2013-03-23 Thread Sricharan R
While booting with dt blob, if fdt_high is not set to 0x, the dt blob gets relocated to a high ram address, which the kernel is not able to use without HIGHMEM. So set it to 0x to avoid the issue. Signed-off-by: Sricharan R r.sricha...@ti.com --- include/configs/omap5_common.h |

[U-Boot] [PATCH 3/5] ARM: OMAP5: Support loading environment variables from txt file

2013-03-23 Thread Sricharan R
The boot.scr has to be built and copied, where as allowing to import the environment from a text file is much more friendly. Thanks to the below patch, which has much more informative change log. commit: d70f54808dfa83b574e1239c3eccbcf3317343e1 (omap4: allow the use of a plain text env file

[U-Boot] [PATCH 5/5] ARM: OMAP4/5: Make bootz as the default boot command

2013-03-23 Thread Sricharan R
So with OMAP added to multi platform kernel, the uImage no more contains a valid load address. With the uboot already supporting zImage, change the default boot command to bootz instead. Signed-off-by: Sricharan R r.sricha...@ti.com --- include/configs/omap4_common.h |6 +++---

[U-Boot] [PATCH 4/5] ARM: OMAP4/5: Change the default boot command to work with device tree

2013-03-23 Thread Sricharan R
Now with kernel moving to all device tree, the default boot command is changed to pass the device tree blob. Also, adding the findfdt command to get the dt-blob based on the board. Thanks to Tom Rini tr...@ti.com for suggesting this. Signed-off-by: Sricharan R r.sricha...@ti.com ---

[U-Boot] [PATCH 1/5] ARM: OMAP5: Rename omap5_evm.h to omap5_uevm.h

2013-03-23 Thread Sricharan R
The omap5-uevm is the reference board name for OMAP5 soc based platform. So rename it accordingly. Signed-off-by: Sricharan R r.sricha...@ti.com --- board/ti/omap5_evm/Makefile| 49 --- board/ti/omap5_evm/evm.c | 101 - board/ti/omap5_evm/mux_data.h | 304

Re: [U-Boot] [PATCH 1/5] ARM: OMAP5: Rename omap5_evm.h to omap5_uevm.h

2013-03-23 Thread Sricharan R
On Saturday 23 March 2013 01:54 PM, Sricharan R wrote: The omap5-uevm is the reference board name for OMAP5 soc based platform. So rename it accordingly. Signed-off-by: Sricharan R r.sricha...@ti.com --- board/ti/omap5_evm/Makefile| 49 --- board/ti/omap5_evm/evm.c | 101

[U-Boot] [PATCH V2 1/5] ARM: OMAP5: Rename omap5_evm to omap5_uevm

2013-03-23 Thread Sricharan R
The omap5-uevm is the reference board name for OMAP5 soc based platform. So rename it accordingly. Signed-off-by: Sricharan R r.sricha...@ti.com --- board/ti/{omap5_evm = omap5_uevm}/Makefile |0 board/ti/{omap5_evm = omap5_uevm}/evm.c |0 board/ti/{omap5_evm =

Re: [U-Boot] u-boot-imx: tags

2013-03-23 Thread Stefano Babic
On 22/03/2013 13:36, Ruud Commandeur wrote: Hi everyone, A few weeks ago I cloned the u-boot-imx git and was able to build u-boot for the mx28evk without problems. Just great, but I was wondering how to tell which u-boot version would be the best to pick. Is it just the latest and greatest,

Re: [U-Boot] [RFC] Bootcount improvements

2013-03-23 Thread Stefano Babic
On 22/03/2013 13:56, Alexandre Dilly wrote: Hi, Hi Alexandre, I'm working on an open source automatic updater for embedded systems. The goal of this project is to split a flash memory or disk in multiple partition (2 or more) and install a new root filesystem on an empty or outdated

Re: [U-Boot] Beagleboard: SPL hangs on serial init

2013-03-23 Thread Manfred Huber
Hi all, probably I found the error. It should be a bug in the ROM code of the OMAP3. Depending on the Booting Sequence of the OMAP3, SPL is hanging or not. If ROM code configures UART3 before SPL starts from NAND it will lead to a hang of the SPL. If UART3 is not configured, SPL boots

Re: [U-Boot] [PATCH 0/9] Add Regular Expressions Support

2013-03-23 Thread Otavio Salvador
On Fri, Mar 22, 2013 at 6:44 PM, Wolfgang Denk w...@denx.de wrote: The following patch series adds the SLRE Super Light Regular Expression library and uses this to add regex support for the env grep (aka grepenv) command, and new functions (or operators?) gsub and sub to the setexpr command.

Re: [U-Boot] [PATCH] omap5: Allow use of a plain text env file

2013-03-23 Thread Nishanth Menon
On 03/22/2013 08:03 PM, Tom Rini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/22/2013 06:43 PM, Nishanth Menon wrote: For production systems it is better to use script images since they are protected by checksums and carry valuable information like name and timestamp. Also, you

Re: [U-Boot] [PATCH v2] mxs: spl_mem_init: Align DDR2 init with FSL bootlets source

2013-03-23 Thread Fabio Estevam
Hi Lauri, On Tue, Mar 19, 2013 at 8:43 AM, Lauri Hintsala lauri.hints...@bluegiga.com wrote: Battery charger patch is very simple and it shouldn't affect to this problem any way: --- a/arch/arm/cpu/arm926ejs/mxs/spl_power_init.c +++ b/arch/arm/cpu/arm926ejs/mxs/spl_power_init.c @@ -918,6

[U-Boot] [PATCH v4 1/4] menu: Add support for user defined item choice function

2013-03-23 Thread Anatolij Gustschin
From: Pali Rohár pali.ro...@gmail.com Selecting menu items is currently done in menu_interactive_choice() by reading the user input strings from standard input. Extend menu_interactive_choice() to support user defined function for selecting menu items. This function and its argument can be

[U-Boot] [PATCH] menu: export menu_default_choice() function

2013-03-23 Thread Anatolij Gustschin
Checking the default menu item and obtaining its data can be useful in custom menu code. Export menu_default_choice() function which serves this purpose. Signed-off-by: Anatolij Gustschin ag...@denx.de --- common/menu.c |2 +- doc/README.menu |5 + include/menu.h |1 + 3 files

[U-Boot] [PATCH v4 2/4] New command bootmenu: ANSI terminal boot menu support

2013-03-23 Thread Anatolij Gustschin
From: Pali Rohár pali.ro...@gmail.com The bootmenu command uses U-Boot menu interfaces and provides a simple mechanism for creating menus with several boot items. When running this command the menu will be assembled as defined by a set of environment variables which contain a title and command

Re: [U-Boot] [PATCH] omap5: Allow use of a plain text env file

2013-03-23 Thread Sricharan R
Hi Nishanth, On Saturday 23 March 2013 08:57 PM, Nishanth Menon wrote: On 03/22/2013 08:03 PM, Tom Rini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/22/2013 06:43 PM, Nishanth Menon wrote: For production systems it is better to use script images since they are protected by