Re: [U-Boot] [PATCH v2] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-18 Thread Igor Grinberg
Hi Peter, On 12/16/11 08:09, Peter Barada wrote: On 12/15/2011 01:30 PM, Tom Rini wrote: On Thu, Dec 15, 2011 at 10:15 AM, Peter Barada peter.bar...@logicpd.com wrote: This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with

Re: [U-Boot] [PATCH] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-18 Thread Igor Grinberg
Hi Peter, Some comments (hopefully last ones) in addition to Wolfgang's and Tom's: On 12/16/11 22:31, Peter Barada wrote: This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load)

Re: [U-Boot] [PATCH] OMAP3: Remove unused define CONFIG_OMAP3_*_DDR

2011-12-18 Thread Igor Grinberg
On 12/16/11 11:00, Thomas Weber wrote: This patch removes the unused definitions: CONFIG_OMAP3_MICRON_DDR CONFIG_OMAP3_NUMONYX_DDR CONFIG_OMAP3_INFINEON_DDR Signed-off-by: Thomas Weber we...@corscience.de Acked-by: Igor Grinberg grinb...@compulab.co.il Thanks Thomas. -- Regards, Igor.

Re: [U-Boot] [PATCH] OMAP3: Add Corscience Tricorder board

2011-12-18 Thread Igor Grinberg
Hi Thomas, Several comments in addition to Tom's comments: On 12/15/11 12:16, Thomas Weber wrote: Tricorder is a board which is very similar to the Devkit8000. It is designed as a base platform for further medical devices.

Re: [U-Boot] [PATCH v2] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-18 Thread Wolfgang Denk
Dear Igor Grinberg, In message 4eedaba8.4010...@compulab.co.il you wrote: As for the function, in arch/arm/cpu/armv7/omap3/board.c there's already a checkboard() function that is called early (before relocation) that And keep in mind: before relocation means that the BSS segment is not

Re: [U-Boot] U-Boot on Nokia RX-51 (aka N900)

2011-12-18 Thread Wolfgang Denk
Dear Pali =?ISO-8859-1?Q?Roh=E1r?=, please do not full-quote. Quote only as much of the mail you are replying to as is needed to give enough context. It makes no sense to quoted hundrets of lines which you are not referring to in your reply. Thanks. In message

Re: [U-Boot] Some thoughts on SPL

2011-12-18 Thread jonsm...@gmail.com
On Sun, Dec 18, 2011 at 12:55 AM, Simon Glass s...@chromium.org wrote: Hi Wolfgang, On Sat, Dec 17, 2011 at 12:08 PM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message CAPnjgZ0E4RfzzL2tfff=cn0xq5ov+v-qtqny3s3zb6hn7sv...@mail.gmail.com you wrote: On Fri, Dec 16, 2011 at

[U-Boot] [PATCH v4] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-18 Thread Peter Barada
This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. Signed-off-by: Peter Barada peter.bar...@logicpd.com Cc: Tom Rini tom.r...@gmail.com Cc: Igor Grinberg

[U-Boot] [PATCH] MXS-NAND: Backport ecc.size from linux kernel

2011-12-18 Thread Marek Vasut
The ecc.size for mxs NAND driver is set to 1 in Linux kernel and to 512 in U-Boot, which causes ubi part command malfunction due to wrong subpage size. Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de Cc: Stefan Roese s...@denx.de Cc:

Re: [U-Boot] __mmc_get_env_addr() is not being called?

2011-12-18 Thread Kumar Gala
On Dec 16, 2011, at 3:42 AM, Stefano Babic wrote: On 16/12/2011 10:33, Fabio Estevam wrote: The weak function was introduced by this commit: http://git.denx.de/?p=u-boot.git;a=commitdiff;h=97039ab98c551c7860bc0977d684ef686159e0d7 which breaks non CONFIG_FSL_ESDHC users. Ok, I see -

Re: [U-Boot] [PATCH 02/16] arch/arm/lib/bootm.c: Optionally use existing atags

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:04 Pali Rohár wrote: + s = getenv (atagaddr); no space before the ( #if defined (CONFIG_SETUP_MEMORY_TAGS) || \ defined (CONFIG_CMDLINE_TAG) || \ defined (CONFIG_INITRD_TAG) || \ defined (CONFIG_SERIAL_TAG) || \ defined

Re: [U-Boot] [PATCH 11/16] New command clr: Clear the ANSI terminal

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:13 Pali Rohár wrote: --- /dev/null +++ b/common/cmd_clr.c +int do_clr(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) static + printf(ANSI_CLEAR_CONSOLE); puts() +U_BOOT_CMD( + clr,CONFIG_SYS_MAXARGS, 1, do_clr, +

Re: [U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:09 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_swap_colors(void) +{ + eorx = fgx; + fgx = bgx; + bgx = eorx; + eorx = fgx ^ bgx; +} there's nothing calling this new func in

Re: [U-Boot] [PATCH 05/16] common/main.c: Fix function readline

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:07 Pali Rohár wrote: * Ignore ANSI escape sequences for moving cursor, which are generated by keyboard you need to line wrap your changelogs -mike signature.asc Description: This is a digitally signed message part.

Re: [U-Boot] [PATCH 08/16] drivers/video/cfb_console.c: Add function console_clear and console_clear_line

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:10 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_clear_line(int line, int begin, int end) +{ +#ifdef VIDEO_HW_RECTFILL + video_hw_rectfill(VIDEO_PIXEL_SIZE, /*

Re: [U-Boot] [PATCH 09/16] drivers/video/cfb_console.c: Add functions for moving with cursor

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:11 Pali Rohár wrote: * console_cursor_fix - check and fix cursor position (if it is not out of screen) * console_cursor_up, console_cursor_down, console_cursor_left, console_cursor_right and console_cursor_set_position for changing cursor position *

Re: [U-Boot] [PATCH 10/16] drivers/video/cfb_console.c: Add support for some ANSI terminal escape codes

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:12 Pali Rohár wrote: * This patch add support for cursor move and reverse colors via ANSI espace codes in cfb_console driver * ANSI escape codes can be enabled/disabled via CONFIG_CFB_CONSOLE_ANSI your changelog needs to be line wrapped +

Re: [U-Boot] U-Boot on Nokia RX-51 (aka N900)

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 11:59:14 Pali Rohár wrote: I'm sending new patch series, which add Nokia RX-51 support to U-Boot. This patches are based on master commit 06e42c6e2ce269667daecd6229d0b7c813838203 and now U-Boot working on Nokia RX-51. please run all your patches through

Re: [U-Boot] [PATCH 13/16] New config variable CONFIG_PREMONITOR

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:15 Pali Rohár wrote: --- a/common/env_common.c +++ b/common/env_common.c +#ifdef CONFIG_PREMONITOR + premonitor= CONFIG_PREMONITOR \0 +#endif --- a/common/main.c +++ b/common/main.c +#ifdef CONFIG_PREMONITOR + if ((s =

Re: [U-Boot] [PATCH 14/16] New board support: Nokia RX-51 aka N900

2011-12-18 Thread Mike Frysinger
On Saturday 17 December 2011 12:03:16 Pali Rohár wrote: --- /dev/null +++ b/board/nokia/rx51/Makefile +clean: + rm -f $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak $(obj).depend these are unused. delete these targets. this file def needs checkpatch.pl run on it ...

Re: [U-Boot] [PATCH 15/16] New command bootmenu: ANSI terminal Boot Menu support

2011-12-18 Thread Mike Frysinger
this needs checkpatch for sure seems like this doesn't use the existing common/menu.c code ... shouldn't it ? -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 13:57:40 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:09 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_swap_colors(void) +{ + eorx = fgx; + fgx = bgx; + bgx = eorx; + eorx

Re: [U-Boot] [PATCH 15/16] New command bootmenu: ANSI terminal Boot Menu support

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 14:07:37 Mike Frysinger wrote: this needs checkpatch for sure seems like this doesn't use the existing common/menu.c code ... shouldn't it ? -mike No my ANSI terminal bootmenu does not use common/menu.c (4 months ago, there was no menu.c file) -- Pali Rohár

Re: [U-Boot] [PATCH 11/16] New command clr: Clear the ANSI terminal

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 13:56:12 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:13 Pali Rohár wrote: --- /dev/null +++ b/common/cmd_clr.c +int do_clr(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) static + printf(ANSI_CLEAR_CONSOLE); puts() puts(s) will

Re: [U-Boot] [PATCH 07/16] drivers/video/cfb_console.c: Add function console_swap_colors

2011-12-18 Thread Mike Frysinger
On Sunday 18 December 2011 14:00:10 Pali Rohár wrote: On Sunday 18 December 2011 13:57:40 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:09 Pali Rohár wrote: --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c +static void console_swap_colors(void) +{

Re: [U-Boot] [PATCH 15/16] New command bootmenu: ANSI terminal Boot Menu support

2011-12-18 Thread Mike Frysinger
On Sunday 18 December 2011 14:12:38 Pali Rohár wrote: On Sunday 18 December 2011 14:07:37 Mike Frysinger wrote: this needs checkpatch for sure seems like this doesn't use the existing common/menu.c code ... shouldn't it ? No my ANSI terminal bootmenu does not use common/menu.c (4

Re: [U-Boot] [PATCH 11/16] New command clr: Clear the ANSI terminal

2011-12-18 Thread Mike Frysinger
On Sunday 18 December 2011 14:20:35 Pali Rohár wrote: On Sunday 18 December 2011 13:56:12 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:13 Pali Rohár wrote: --- /dev/null +++ b/common/cmd_clr.c +int do_clr(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])

Re: [U-Boot] [PATCH 13/16] New config variable CONFIG_PREMONITOR

2011-12-18 Thread Mike Frysinger
On Sunday 18 December 2011 14:37:12 Pali Rohár wrote: On Sunday 18 December 2011 14:05:17 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:15 Pali Rohár wrote: --- a/common/env_common.c +++ b/common/env_common.c +#ifdef CONFIG_PREMONITOR + premonitor=

Re: [U-Boot] [PATCH 13/16] New config variable CONFIG_PREMONITOR

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 14:05:17 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:15 Pali Rohár wrote: --- a/common/env_common.c +++ b/common/env_common.c +#ifdef CONFIG_PREMONITOR + premonitor= CONFIG_PREMONITOR \0 +#endif --- a/common/main.c

Re: [U-Boot] U-Boot on Nokia RX-51 (aka N900)

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 14:01:54 Mike Frysinger wrote: On Saturday 17 December 2011 11:59:14 Pali Rohár wrote: I'm sending new patch series, which add Nokia RX-51 support to U-Boot. This patches are based on master commit 06e42c6e2ce269667daecd6229d0b7c813838203 and now U-Boot working on

Re: [U-Boot] [PATCH 02/16] arch/arm/lib/bootm.c: Optionally use existing atags

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 13:54:21 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:04 Pali Rohár wrote: + s = getenv (atagaddr); no space before the ( #if defined (CONFIG_SETUP_MEMORY_TAGS) || \ defined (CONFIG_CMDLINE_TAG) || \ defined (CONFIG_INITRD_TAG) || \

Re: [U-Boot] [PATCH 05/16] common/main.c: Fix function readline

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 13:58:30 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:07 Pali Rohár wrote: * Ignore ANSI escape sequences for moving cursor, which are generated by keyboard you need to line wrap your changelogs -mike I will fix all commit messages. -- Pali

Re: [U-Boot] [PATCH 13/16] New config variable CONFIG_PREMONITOR

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 15:08:30 Mike Frysinger wrote: On Sunday 18 December 2011 14:37:12 Pali Rohár wrote: On Sunday 18 December 2011 14:05:17 Mike Frysinger wrote: On Saturday 17 December 2011 12:03:15 Pali Rohár wrote: --- a/common/env_common.c +++ b/common/env_common.c

Re: [U-Boot] [PATCH 15/16] New command bootmenu: ANSI terminal Boot Menu support

2011-12-18 Thread Pali Rohár
On Sunday 18 December 2011 15:07:25 Mike Frysinger wrote: On Sunday 18 December 2011 14:12:38 Pali Rohár wrote: On Sunday 18 December 2011 14:07:37 Mike Frysinger wrote: this needs checkpatch for sure seems like this doesn't use the existing common/menu.c code ... shouldn't it ?

[U-Boot] [PATCH v3] U-Boot on Nokia RX-51 (aka N900)

2011-12-18 Thread Pali Rohár
Hello, I'm sending third version of rx51 patches for u-boot. All patches was checked by checkpatch.pl and no error or warning was appeared. Last 2 patches (0014 and 0015) adding ANSI terminal bootmenu support for rx51 and can be reviewed separatly (patches 0001-0013 adding nokia rx51 board

[U-Boot] [PATCH 01/15] arch/arm/cpu/armv7/omap3/lowlevel_init.S: save_boot_params

2011-12-18 Thread Pali Rohár
* Hide function save_boot_params if CONFIG_SPL_BUILD is not defined (function do nothing) * Same behaviour as in file arch/arm/cpu/armv7/omap4/lowlevel_init.S * This allow to implement board specified function save_boot_params in board code Signed-off-by: Pali Rohár pali.ro...@gmail.com ---

[U-Boot] [PATCH 02/15] arch/arm/lib/bootm.c: Optionally use existing atags

2011-12-18 Thread Pali Rohár
This patch adapts the bootm command so that it can use an existing atags command set up by a previous bootloader. If the environment variable atagaddr is unset, bootm behaves as normal. If atagaddr is set, bootm will use atags address from environment variable and also append new boot args (if

[U-Boot] [PATCH 03/15] include/twl4030.h: Add power bus message definitions

2011-12-18 Thread Pali Rohár
* Code copied from linux kernel 3.0.0 from file include/linux/i2c/twl.h Signed-off-by: Pali Rohár pali.ro...@gmail.com --- include/twl4030.h | 98 + 1 files changed, 98 insertions(+), 0 deletions(-) diff --git a/include/twl4030.h

[U-Boot] [PATCH 04/15] include/common.h: Add some ANSI escape codes definitions

2011-12-18 Thread Pali Rohár
Signed-off-by: Pali Rohár pali.ro...@gmail.com --- include/common.h | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/include/common.h b/include/common.h index 5cfdd76..640d15c 100644 --- a/include/common.h +++ b/include/common.h @@ -760,6 +760,26 @@

[U-Boot] [PATCH 06/15] drivers/video/cfb_console.c: Fix function console_scrollup

2011-12-18 Thread Pali Rohár
* Use correct buffer size, do not damage screen output Signed-off-by: Pali Rohár pali.ro...@gmail.com --- drivers/video/cfb_console.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 904caf7..9092399 100644

[U-Boot] [PATCH 05/15] common/main.c: Fix function readline

2011-12-18 Thread Pali Rohár
* Ignore ANSI escape codes for moving cursor, which are generated by keyboard Signed-off-by: Pali Rohár pali.ro...@gmail.com --- common/main.c | 51 +++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/common/main.c

[U-Boot] [PATCH 08/15] drivers/video/cfb_console.c: Add functions for moving with cursor

2011-12-18 Thread Pali Rohár
* console_cursor_fix - fix cursor position (check for out of screen) * console_cursor_up, console_cursor_down, console_cursor_left, console_cursor_right, console_cursor_set_position for change cursor position * console_newline - added param to specify count of creating new lines *

[U-Boot] [PATCH 07/15] drivers/video/cfb_console.c: Add function console_clear and console_clear_line

2011-12-18 Thread Pali Rohár
* console_clear - clear full console framebuffer output * console_clear_line - clear part of specified line (or full) Signed-off-by: Pali Rohár pali.ro...@gmail.com --- drivers/video/cfb_console.c | 64 +++ 1 files changed, 52 insertions(+), 12

[U-Boot] [PATCH 09/15] drivers/video/cfb_console.c: Add support for some ANSI terminal escape codes

2011-12-18 Thread Pali Rohár
* This patch add support for move cursor and reverse colors via ANSI espace codes in cfb_console driver * ANSI escape codes can be enabled/disabled via CONFIG_CFB_CONSOLE_ANSI Signed-off-by: Pali Rohár pali.ro...@gmail.com --- drivers/video/cfb_console.c | 216

[U-Boot] [PATCH 10/15] New command clear: Clear the ANSI terminal

2011-12-18 Thread Pali Rohár
* Command can be enabled by CONFIG_CMD_CLEAR Signed-off-by: Pali Rohár pali.ro...@gmail.com Cc: Marcel Mol mar...@mesa.nl --- common/Makefile |1 + common/cmd_clear.c | 42 ++ include/config_cmd_all.h |1 + 3 files changed, 44

[U-Boot] [PATCH 11/15] New config variable CONFIG_MENUCMD

2011-12-18 Thread Pali Rohár
* If not defined CONFIG_MENUCMD do nothing * If CONFIG_MENUKEY is 0 and was pressed any key run env menu_cmd * If pressed key was CONFIG_MENUKEY run env menu_cmd * If CONFIG_MENUKEY is not defined run env menu_cmd always * CONFIG_MENUKEY working if defined CONFIG_MENUCMD and

[U-Boot] [PATCH 12/15] New config variable CONFIG_PREMONITOR

2011-12-18 Thread Pali Rohár
* if defined run env premonitor before Main Loop for Monitor Processing Signed-off-by: Pali Rohár pali.ro...@gmail.com --- common/env_common.c |3 +++ common/main.c |4 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/common/env_common.c b/common/env_common.c

[U-Boot] [PATCH 14/15] New command bootmenu: ANSI terminal Boot Menu support

2011-12-18 Thread Pali Rohár
* Configuration is done via env variables bootmenu_delay and bootmenu_num: bootmenu_delay=delay bootmenu_num=title=commands (title and commands are separated by first char '=') delay is delay in seconds of autobooting first entry num is boot menu entry, starting from zero

[U-Boot] [PATCH 15/15] RX-51: Add support for bootmenu

2011-12-18 Thread Pali Rohár
* default bootmenu entries: NOLO kernel, internal eMMC memory, external SD card, u-boot boot order * when keyboard slide is closed always boot NOLO kernel * when keyborad slide is open in CONFIG_PREBOOT try load bootmenu.scr from first FAT partition of internal eMMC memory (also known

[U-Boot] [PATCH] arm, arm-kirkwood: disable l2c before linux boot

2011-12-18 Thread Michael Walle
The decompressor expects the L2 cache to be disabled. This fixes booting some kernels, which have CONFIG_ARM_PATCH_PHYS_VIRT enabled. Signed-off-by: Michael Walle mich...@walle.cc Cc: Albert ARIBAUD albert.u.b...@aribaud.net Cc: Prafulla Wadaskar prafu...@marvell.com ---

Re: [U-Boot] [PATCH] arm, arm-kirkwood: disable l2c before linux boot

2011-12-18 Thread Michael Walle
Am Sonntag 18 Dezember 2011, 23:09:51 schrieb Michael Walle: The decompressor expects the L2 cache to be disabled. This fixes booting some kernels, which have CONFIG_ARM_PATCH_PHYS_VIRT enabled. You should consider applying this patch to the RC, too. CONFIG_ARM_PATCH_PHYS_VIRT is enabled by

Re: [U-Boot] [STATUS] next branch started

2011-12-18 Thread Michael Walle
Please feel free to send pull-requests for next, or to point me to patches that should go into next (or even into the upcoming release). http://patchwork.ozlabs.org/patch/126328/ http://patchwork.ozlabs.org/patch/122253/ -- Michael ___ U-Boot mailing

Re: [U-Boot] [PATCH] arm, arm-kirkwood: disable l2c before linux boot

2011-12-18 Thread Marek Vasut
The decompressor expects the L2 cache to be disabled. This fixes booting some kernels, which have CONFIG_ARM_PATCH_PHYS_VIRT enabled. Signed-off-by: Michael Walle mich...@walle.cc Cc: Albert ARIBAUD albert.u.b...@aribaud.net Cc: Prafulla Wadaskar prafu...@marvell.com ---

Re: [U-Boot] [PATCH] arm, arm-kirkwood: disable l2c before linux boot

2011-12-18 Thread Michael Walle
Am Montag 19 Dezember 2011, 00:04:18 schrieb Marek Vasut: [..snip..] Please use #define name to define the magic value above (1 22) and then use it. M The bit was taken from arch/arm/cpu/arm926ejs/kirkwood/cpu.c. Unfortunately there is no documentation publicly available, so i can only

Re: [U-Boot] [PATCH v3] U-Boot on Nokia RX-51 (aka N900)

2011-12-18 Thread Wolfgang Denk
Dear Pali =?ISO-8859-1?Q?Roh=E1r?=, In message 1778406.ezGto4lKnu@pali-elitebook you wrote: I'm sending third version of rx51 patches for u-boot. All patches was checked by checkpatch.pl and no error or warning was appeared. Last 2 patches (0014 and 0015) adding ANSI terminal bootmenu

[U-Boot] Pull request: u-boot-x86/next

2011-12-18 Thread Graeme Russ
Hi Wolfgang: The following changes since commit 7b725f8485bcdd0be3cda40e435b783882bf18ec: CHECKPATCH: ./board/esd/hh405/logo_320_240_8bpp.c (2011-12-18 00:14:46 +0100) are available in the git repository at: git://git.denx.de/u-boot-x86.git next Gabe Black (7): x86: Initial commit

[U-Boot] u-boot-x86/next has been rebased - push forced

2011-12-18 Thread Graeme Russ
Hi All, Please note that the 'next' branch of u-boot-x86 has been rebased against u-boot/next published to git://git.denx.de/u-boot-x86.git via a forced push If you have cloned u-boot-x86/next, please be aware that you will need to update your local repo Regards, Graeme

Re: [U-Boot] __mmc_get_env_addr() is not being called?

2011-12-18 Thread Jason Liu
2011/12/16 Stefano Babic sba...@denx.de: On 16/12/2011 06:54, Shawn Guo wrote: Hi, Hi Shawn, I'm running v2011.12-rc1 (with one missing usdhc patch applied) on mx6qarm2 board, and seeing a problem.  When I install u-boot on a blank SD card, it boots fine with messge *** Warning - bad CRC,

[U-Boot] [PATCH] Origen: Select SCLKMPLL as FIMD0 parent clock

2011-12-18 Thread Chander Kashyap
Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- board/samsung/origen/lowlevel_init.S |5 + board/samsung/origen/origen_setup.h | 12 2 files changed, 17 insertions(+), 0 deletions(-) diff --git a/board/samsung/origen/lowlevel_init.S

[U-Boot] [PATCH 0/2] Exynos Related fixes

2011-12-18 Thread Chander Kashyap
Chander Kashyap (2): Exynos: PWM: Add TCMPB3 field in pwm structure Exynos: Fix ARM Clock frequency calculation arch/arm/cpu/armv7/exynos/clock.c |9 ++--- arch/arm/include/asm/arch-exynos/pwm.h |2 +- 2 files changed, 7 insertions(+), 4 deletions(-) -- 1.7.5.4

[U-Boot] [PATCH 1/2] Exynos: PWM: Add TCMPB3 field in pwm structure

2011-12-18 Thread Chander Kashyap
Add TCMPB3 field in pwm structure, earliar this was res1. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- arch/arm/include/asm/arch-exynos/pwm.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/pwm.h

[U-Boot] [PATCH 2/2] Exynos: Fix ARM Clock frequency calculation

2011-12-18 Thread Chander Kashyap
Earliar ARM clock frequency was calculated by: MOUTAPLL/(DIVAPLL + 1) which is actually returning SCLKAPLL. It is fixed by calcuating it as follows: ARMCLK=MOUTCORE/(DIVCORE + 1)/DIVCORE2 + 1) Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- arch/arm/cpu/armv7/exynos/clock.c |9

Re: [U-Boot] __mmc_get_env_addr() is not being called?

2011-12-18 Thread Stefano Babic
On 18/12/2011 18:56, Kumar Gala wrote: On Dec 16, 2011, at 3:42 AM, Stefano Babic wrote: On 16/12/2011 10:33, Fabio Estevam wrote: The weak function was introduced by this commit: http://git.denx.de/?p=u-boot.git;a=commitdiff;h=97039ab98c551c7860bc0977d684ef686159e0d7 which breaks non

Re: [U-Boot] [PATCH v2 2/3] fec: add the i.mx6q enet driver support

2011-12-18 Thread Stefano Babic
On 16/12/2011 16:17, Jason Liu wrote: Cc: Stefano Babic sba...@denx.de Signed-off-by: Jason Liu jason@linaro.org Acked-by: Stefano Babic sba...@denx.de Applied to u-boot-imx, next branch, thanks. Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v2 1/3] i.mx: i.mx6q: Add the enet clock function

2011-12-18 Thread Stefano Babic
On 16/12/2011 16:17, Jason Liu wrote: Cc: Stefano Babic sba...@denx.de Signed-off-by: Jason Liu jason@linaro.org Acked-by: Stefano Babic sba...@denx.de --- v2: Add Stefano's ack --- Applied to u-boot-imx, next branch, thanks. Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v2 3/3] i.mx6q: arm2: Add the enet function support

2011-12-18 Thread Stefano Babic
On 16/12/2011 16:17, Jason Liu wrote: This enable the network function on the i.mx6q armadillo2 board(arm2), thus we can use tftp to load image from network. Cc: Stefano Babic sba...@denx.de Signed-off-by: Jason Liu jason@linaro.org Tested-by: Dirk Behme dirk.be...@de.bosch.com ---

Re: [U-Boot] __mmc_get_env_addr() is not being called?

2011-12-18 Thread Jason Hui
On Mon, Dec 19, 2011 at 2:37 PM, Stefano Babic sba...@denx.de wrote: On 18/12/2011 18:56, Kumar Gala wrote: On Dec 16, 2011, at 3:42 AM, Stefano Babic wrote: On 16/12/2011 10:33, Fabio Estevam wrote: The weak function was introduced by this commit:

Re: [U-Boot] [PATCH v3] U-Boot on Nokia RX-51 (aka N900)

2011-12-18 Thread Pali Rohár
On Monday 19 December 2011 00:57:27 Wolfgang Denk wrote: Dear Pali =?ISO-8859-1?Q?Rohár?=, In message 1778406.ezGto4lKnu@pali-elitebook you wrote: I'm sending third version of rx51 patches for u-boot. All patches was checked by checkpatch.pl and no error or warning was appeared. Last 2

Re: [U-Boot] [PATCH v4] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-18 Thread Igor Grinberg
Hi Peter, Thanks for fixing all the issues pointed. I have one last question (sorry for not seeing it earlier) and one neat below. On 12/18/11 19:25, Peter Barada wrote: This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with

[U-Boot] [GIT PULL] Pull request: u-boot-imx

2011-12-18 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx (a couple of fixes): The following changes since commit a7b39185338c333a052728a7952b5f1cba4fc22a: tools/setlocalversion: Update from the Linux Kernel (2011-12-17 20:58:48 +0100) are available in the git repository at:

Re: [U-Boot] [PATCH 2/2] Exynos: Fix ARM Clock frequency calculation

2011-12-18 Thread Wolfgang Denk
Dear Chander Kashyap, In message 1324275424-29468-3-git-send-email-chander.kash...@linaro.org you wrote: Earliar ARM clock frequency was calculated by: MOUTAPLL/(DIVAPLL + 1) which is actually returning SCLKAPLL. It is fixed by calcuating it as follows: Um Comment and code disagree: