[U-Boot] [PATCH] Handle environment variables like commands

2008-10-15 Thread Stefano Babic
. For this reason, builtin is a reserved word an no environment variable can be set with this name. Signed-off-by : Stefano Babic [EMAIL PROTECTED] --- common/cmd_nvedit.c |8 common/hush.c |9 - common/main.c | 37 + tools

Re: [U-Boot] [PATCH] Handle environment variables like commands

2008-10-15 Thread stefano babic
: This is not true, I think. The change you are talking about is in hush.c (so it must cover *only* the hush shell). The other change is in the run_command() function and it is called when CFG_HUSH_PARSER is not defined. So both cases are covered. Best regards, Stefano Babic

[U-Boot] [PATCH] Handle environment variables like commands

2008-10-15 Thread Stefano Babic
. Signed-off-by : Stefano Babic [EMAIL PROTECTED] --- common/hush.c |9 - common/main.c | 37 + 2 files changed, 45 insertions(+), 1 deletions(-) diff --git a/common/hush.c b/common/hush.c index 093c428..68f8a6a 100644 --- a/common/hush.c +++ b

Re: [U-Boot] CFI Driver Problem: flash not ready

2008-10-20 Thread stefano babic
? Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email

Re: [U-Boot] [PATCH] Handle environment variables like commands

2008-10-20 Thread stefano babic
ideas is welcome. I admit I have no better ideas...with positional parameters we can start even some complex scripts. I take a look how to implement them, if there are no other suggestions. Best regards, Stefano Babic -- stefano [EMAIL PROTECTED] GPG Key: 0x55814DDE Fingerprint 4E85 2A66 4CBA

Re: [U-Boot] [PATCH] i.mx6q: mx6qarm2: Enable the usboh3 clock

2011-12-28 Thread Stefano Babic
@linaro.org --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49

Re: [U-Boot] [PATCH v3] i.mx: i.mx6q: add the initial support for i.mx6q Sabre Lite board

2011-12-28 Thread Stefano Babic
. Ok, fine. For my information only, is there a revision version to be checked if the board needs this small loader ? Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Stefano Babic
to have a new function name only for the MX.28, and I would like to maintain the same set of functions for all i.MX SOCs. The rest of the patchset is ok for me, I will send also my Ack. Best regards, Stefano Babic -- = DENX Software

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Stefano Babic
On 20/12/2011 14:53, Fabio Estevam wrote: Add initial support for Freescale MX28EVK board. Tested boot via SD card and by loading a kernel via TFTP through the FEC interface. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Acked-by: Stefano Babic sba...@denx.de Best regards

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Stefano Babic
On 28/12/2011 13:46, Fabio Estevam wrote: Hi Stefano, On Wed, Dec 28, 2011 at 10:36 AM, Stefano Babic sba...@denx.de wrote: Hi Fabio, there are still open answers from me and Marek for the first patch: mx28: Let imx_get_mac_from_fuse be common for mx28 My main concern is that I dislike

Re: [U-Boot] [PATCH v7 3/4] mx28: Let dram_init be common for mx28

2011-12-28 Thread Stefano Babic
On 20/12/2011 16:46, Fabio Estevam wrote: Let dram_init function be a common function, so that other mx28 boards can reuse it. Signed-off-by: Fabio Estevam fabio.este...@freescale.com Acked-by: Marek Vasut marek.va...@gmail.com --- Applied to u-boot-imx, thanks. Best regards, Stefano

Re: [U-Boot] [PATCH v8 2/4] mx28: Let imx_get_mac_from_fuse be common for mx28

2011-12-28 Thread Stefano Babic
On 20/12/2011 17:42, Fabio Estevam wrote: Let imx_get_mac_from_fuse function be a common function, so that other mx28 boards can reuse it. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH v7 1/4] net: imx: Add multi-FEC support for imx_get_mac_from_fuse

2011-12-28 Thread Stefano Babic
...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49

Re: [U-Boot] [PATCH v7 2/4] mx28: Let imx_get_mac_from_fuse be common for mx28

2011-12-28 Thread Stefano Babic
On 20/12/2011 16:46, Fabio Estevam wrote: Let imx_get_mac_from_fuse function be a common function, so that other mx28 boards can reuse it. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

[U-Boot] [PATCH 2/4] FPGA: use debug() instead of module debug printf

2011-12-28 Thread Stefano Babic
Replace also __FUNCTION__ with standard __func__ Signed-off-by: Stefano Babic sba...@denx.de --- common/cmd_fpga.c | 59 +--- 1 files changed, 28 insertions(+), 31 deletions(-) diff --git a/common/cmd_fpga.c b/common/cmd_fpga.c index 8946345

[U-Boot] [PATCH 1/4] fpga: add definition for Xilinx Spartan-6 XC6SLX4

2011-12-28 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de --- include/spartan3.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/spartan3.h b/include/spartan3.h index 67ede4b..89f1156 100644 --- a/include/spartan3.h +++ b/include/spartan3.h @@ -80,6 +80,12 @@ typedef

[U-Boot] [PATCH 3/4] fpga: Spartan-3: let print the progress if configured

2011-12-28 Thread Stefano Babic
CONFIG_SYS_FPGA_PROG_FEEDBACK was already introduced to print the current status of FPGA loading - an undef in the code made this CONFIG_ useless. Signed-off-by: Stefano Babic sba...@denx.de --- drivers/fpga/spartan3.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

[U-Boot] [PATCH 4/4] ARM: omap3: Added Teejet mt_ventoux

2011-12-28 Thread Stefano Babic
The mt_ventoux board is a custom board using the Technexion TAM3517 module. Signed-off-by: Stefano Babic sba...@denx.de --- MAINTAINERS |1 + board/teejet/mt_ventoux/Makefile | 44 board/teejet/mt_ventoux/mt_ventoux.c | 235 +++ board

Re: [U-Boot] [PATCH 4/4] ARM: omap3: Added Teejet mt_ventoux

2011-12-29 Thread Stefano Babic
CONFIG_MACH_TYPEMACH_TYPE_AM3517_MT_VENTOUX + +#define CONFIG_CMD_FPGA Can it be space instead of tab after define, like all others? Sure, I check it in the whole file. Thanks, Stefano Babic -- = DENX Software

Re: [U-Boot] [PATCH] i.mx6:imx6q: allign MAC address with burned-in ordering

2011-12-29 Thread Stefano Babic
] --- mac[2] fuse: 0x630[7:0] MAC_ADDR[39:32] --- mac[1] fuse: 0x630[15:8] MAC_ADDR[47:40] --- mac[0] This patch also fix the error caculation for the fuse bank[0] address Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH] sdhc_boot: Introduce CONFIG_FSL_FIXED_MMC_LOCATION option

2011-12-29 Thread Stefano Babic
this config option on their board file. This fixes the retrieval of CONFIG_ENV_OFFSET on non-PowerPC boards. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic

Re: [U-Boot] [PATCH] m28evk: Use GENERATED_GBL_DATA_SIZE

2011-12-29 Thread Stefano Babic
a ARCH configuration file Apart of that, I think it is not bad to merge this Fabio's patch - it makes the board consistent with the other ones. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang

[U-Boot] [PATCH V12 02/14] devki8000: add config for spl command

2012-01-04 Thread Stefano Babic
From: Simon Schwarz simonschwarz...@googlemail.com This adds some configs for devkit8000 to use the new spl command Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V10 changes: This is new

[U-Boot] [PATCH V12 01/14] Add cmd_spl command

2012-01-04 Thread Stefano Babic
...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V2 changes: CHG corrected bootm call. Now bootm is called with five parameters including Address of FDT in RAM. This fixes the hang on savebp fdt call. ADD debug output of the actual bootm parameter call CHG help

[U-Boot] SPL Linux Boot - updated

2012-01-04 Thread Stefano Babic
Hi, here an updated version of the patchset to boot Linux directly from SPL. It fixes the (minor) comments received in version 11. List of changes: - drop commented lines into arch/arm/cpu/armv7/Makefile after checking build for OMAP4/5 - use CONFIG_SPL_I2C_SUPPORT to protect I2C code - fix

[U-Boot] [PATCH V12 03/14] omap-common: Add NAND SPL linux booting

2012-01-04 Thread Stefano Babic
arguments are expected - this is normally RAM-start + 0x100 (on ARM) Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V2 changes: nothing V3 changes: nothing V4 changes: ADD define

[U-Boot] [PATCH V12 04/14] devkit8000/spl: init GPMC for dm9000 in SPL

2012-01-04 Thread Stefano Babic
From: Simon Schwarz simonschwarz...@googlemail.com Linux crashes if the GPMC isn't configured for the dm9000. Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V2 changes: nothing V3 changes

[U-Boot] [PATCH V12 06/14] omap/spl: change output of spl_parse_image_header

2012-01-04 Thread Stefano Babic
From: Simon Schwarz simonschwarz...@googlemail.com This only outputs Assuming u-boot.bin... if debug is active. Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V11: no changes V12

[U-Boot] [PATCH V12 05/14] omap-common/spl: Add linux boot to SPL

2012-01-04 Thread Stefano Babic
- this is normaly RAM-begin + 0x100 Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V2 changes: nothing V3 changes: nothing V4 changes: CHG Using CONFIG_MACH_TYPE now. DEL

[U-Boot] [PATCH V12 07/14] devkit8000: Implement and activate direct OS boot

2012-01-04 Thread Stefano Babic
From: Simon Schwarz simonschwarz...@googlemail.com - Implements spl_start_uboot() for devkit8000 - Add configs to activate direct OS boot from SPL Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w

[U-Boot] [PATCH V12 08/14] Add cache functions to SPL for armv7

2012-01-04 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Wolfgang Denk w...@denx.de CC: Simon Schwarz simonschwarz...@gmail.com --- Changes since V11: - enable cache files in Makefile after checking build for OMAP4/5 arch/arm/cpu/armv7/Makefile |2 -- arch/arm/cpu

[U-Boot] [PATCH V12 09/14] OMAP3: SPL: do not call I2C init if no I2C is set.

2012-01-04 Thread Stefano Babic
Call i2c initialization in spl_board_init only if I2C is configured for the board. Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Wolfgang Denk w...@denx.de CC: Simon Schwarz simonschwarz...@gmail.com --- V12: - use CONFIG_SPL_I2C_SUPPORT to protect I2C code

[U-Boot] [PATCH V12 10/14] OMAP3: move SPL files to be used by other architectures.

2012-01-04 Thread Stefano Babic
The SPL used on OMAPx can be reused by other SOCs from different architectures. Move common files into common/ directory. Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Wolfgang Denk w...@denx.de CC: Simon Schwarz simonschwarz...@gmail.com --- V12: no changes

[U-Boot] [PATCH V12 12/14] SPL: call cleanup_before_linux() before booting Linux

2012-01-04 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Wolfgang Denk w...@denx.de CC: Simon Schwarz simonschwarz...@gmail.com --- common/spl.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/spl.c b/common/spl.c index 5fdf3fb..cf5395e

[U-Boot] [PATCH V12 14/14] OMAP3: twister: add support to boot Linux from SPL

2012-01-04 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Wolfgang Denk w...@denx.de CC: Simon Schwarz simonschwarz...@gmail.com --- V12: - change GPIO to select U-Boot als image board/technexion/twister/twister.c | 23 +++ include/configs/twister.h

[U-Boot] [PATCH V12 13/14] Fix build OMAP4/5

2012-01-04 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de --- arch/arm/cpu/armv7/omap-common/hwinit-common.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/omap-common/hwinit-common.c b/arch/arm/cpu/armv7/omap-common/hwinit-common.c index f65705d..4040d02 100644

[U-Boot] [PATCH V12 11/14] TI: SPL: make SPL available for other SOCs as TI

2012-01-04 Thread Stefano Babic
The SPL is developped first for TI-OMAPx. The patch move OMAP specific function into OMAP directory. Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Wolfgang Denk w...@denx.de CC: Simon Schwarz simonschwarz...@gmail.com --- V12: replace tab with space defining

[U-Boot] [PATCH V2 4/4] ARM: omap3: Added Teejet mt_ventoux

2012-01-04 Thread Stefano Babic
The mt_ventoux board is a custom board using the Technexion TAM3517 module. Signed-off-by: Stefano Babic sba...@denx.de CC: Ilya Yanok ya...@emcraft.com CC: Igor Grinberg grinb...@compulab.co.il --- Changes since V1: - CONFIG_FPGA must be enabled (S. Babic) - reworking fpga functions (Igor

Re: [U-Boot] [PATCH V12 08/14] Add cache functions to SPL for armv7

2012-01-04 Thread Stefano Babic
On 04/01/2012 12:33, Aneesh V wrote: Hi Stefano, Hi, On Wednesday 04 January 2012 09:25 AM, Stefano Babic wrote: Signed-off-by: Stefano Babicsba...@denx.de CC: Tom Rinitom.r...@gmail.com CC: Wolfgang Denkw...@denx.de CC: Simon Schwarzsimonschwarz...@gmail.com --- Changes since V11

Re: [U-Boot] [PATCH] MX28: Fix MXSBOOT segfault if no params specified

2012-01-04 Thread Stefano Babic
On 22/12/2011 20:55, Marek Vasut wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- tools/mxsboot.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/tools/mxsboot.c b/tools/mxsboot.c index

Re: [U-Boot] [PATCH] m28evk: Use GENERATED_GBL_DATA_SIZE

2012-01-04 Thread Stefano Babic
On 29/12/2011 14:35, Fabio Estevam wrote: Use GENERATED_GBL_DATA_SIZE for calculating CONFIG_SYS_INIT_SP_OFFSET. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH V12 08/14] Add cache functions to SPL for armv7

2012-01-04 Thread Stefano Babic
On 04/01/2012 14:58, Simon Schwarz wrote: Hi Stefano, Hi Simon, Just FYI: I already did this with DMA - the patch was rejected and I haven't worked on it since (as you already said it is some work...). Yes, of course - it makes sense to find a solution that will be accepted before

Re: [U-Boot] [PATCH V2 4/4] ARM: omap3: Added Teejet mt_ventoux

2012-01-04 Thread Stefano Babic
On 04/01/2012 15:25, Tom Rini wrote: On Wed, Jan 4, 2012 at 2:02 AM, Stefano Babic sba...@denx.de wrote: The mt_ventoux board is a custom board using the Technexion TAM3517 module. Signed-off-by: Stefano Babic sba...@denx.de CC: Ilya Yanok ya...@emcraft.com CC: Igor Grinberg grinb

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

2012-01-04 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx, thanks. The following changes since commit a747cc0a8c55d69a56a6db80a35cdb48c853447d: tegra2: Optimize out-of-tree build for Ventana. (2011-12-24 10:23:32 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master Eric

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

2012-01-04 Thread Stefano Babic
On 04/01/2012 18:41, Fabio Estevam wrote: Hi Stefano, On Wed, Jan 4, 2012 at 2:57 PM, Stefano Babic sba...@denx.de wrote: Fabio Estevam (6): net: imx: Add multi-FEC support for imx_get_mac_from_fuse mx28: Let imx_get_mac_from_fuse be common for mx28 mx28: Let dram_init

Re: [U-Boot] Porting board from FSL to mainline U-Boot

2012-01-08 Thread stefano babic
, the way is to modify mkimage to add NOR, too. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49

Re: [U-Boot] [PATCH V12 02/14] devki8000: add config for spl command

2012-01-08 Thread stefano babic
Am 07/01/2012 11:21, schrieb Andreas Bießmann: Dear Stefano Babic, I do not want to be pedantic, but the subject line contains 'devki8000' which should be 'devkit8000'. You are not pedantic, the subject contain an error, and I will fix it - thanks ! Best regards, Stefano Babic

Re: [U-Boot] [PATCH] M28EVK: Fix build if CONFIG_CMD_NAND not selected

2012-01-11 Thread Stefano Babic
On 01/01/2012 05:28, Marek Vasut wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- include/configs/m28evk.h |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) Applied to u-boot-imx, thanks. Best regards

Re: [U-Boot] [PATCH] mx28: fix clearing of IRQs in power init

2012-01-11 Thread Stefano Babic
the correct method to clear the IRQs fixes it. Signed-off-by: Zach Sadecki z...@itwatchdogs.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option

2012-01-11 Thread Stefano Babic
it from other board files. Maybe it is worth to have a single patch dropping CONFIG_NET_MULTI from all boards instead of single patches - I assume that the patchs's length remains under the ML limit. Stefano Babic -- = DENX

Re: [U-Boot] [PATCH] imx: mx6q: add aipstz init for off platform periph

2012-01-11 Thread Stefano Babic
(TP):0 - allows unstrusted master Signed-off-by: Jason Liu jason@linaro.org Cc: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH v4] i.mx: i.mx6q: add the initial support for i.mx6q Sabre Lite board

2012-01-11 Thread Stefano Babic
/?p=u-boot/u-boot-mmc.git;a=shortlog;h=refs/heads/master Can we go on and apply this patch [1] then, too? Yes, now it is possible to merge your patch ! Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH v4] i.mx: i.mx6q: add the initial support for i.mx6q Sabre Lite board

2012-01-11 Thread Stefano Babic
--- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax

[U-Boot] [PATCH V13 02/14] devkit8000: add config for spl command

2012-01-11 Thread Stefano Babic
From: Simon Schwarz simonschwarz...@googlemail.com This adds some configs for devkit8000 to use the new spl command Signed-off-by: Simon Schwarz simonschwarz...@gmail.com CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w...@denx.de --- V13: subject devki8000

[U-Boot] [PATCH V13 04/14] devkit8000/spl: init GPMC for dm9000 in SPL

2012-01-11 Thread Stefano Babic
From: Simon Schwarz simonschwarz...@googlemail.com Linux crashes if the GPMC isn't configured for the dm9000. Signed-off-by: Simon Schwarz simonschwarz...@gmail.com Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini tom.r...@gmail.com CC: Stefano Babic sba...@denx.de CC: Wolfgang Denk w

Re: [U-Boot] [PATCH] sdhc_boot: Introduce CONFIG_FSL_FIXED_MMC_LOCATION option

2012-01-11 Thread Stefano Babic
into u-boot-imx. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989

Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Stefano Babic
On 11/01/2012 13:47, Fabio Estevam wrote: CONFIG_NET_MULTI is not used anymore, so remove it from board files. Cc: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Kumar Gala kumar.g...@freescale.com Cc: Sandeep Paulraj s-paul...@ti.com Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH v2] sdhc_boot: Introduce CONFIG_FSL_FIXED_MMC_LOCATION option

2012-01-12 Thread Stefano Babic
+ include/configs/p1_p2_rdb_pc.h |1 + 9 files changed, 9 insertions(+), 1 deletions(-) Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk

Re: [U-Boot] [PATCH 1/2] mmc: access mxcmmc from mx31 boards

2012-01-13 Thread Stefano Babic
...@hale.at --- It looks fine to me. Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194

Re: [U-Boot] [PATCH 2/2] tt01: add MMC support

2012-01-13 Thread Stefano Babic
*/ + if (pmic_reg_read(p, 33, val) 0) Sure do we have not constants to be used insstead of fixed values ? If not, can you add such constants ? Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH 1/2] SPI: Add i.MX ECSPI driver

2012-01-13 Thread Stefano Babic
On 12/01/2012 16:27, Dirk Behme wrote: From: Eric Nelson eric.nel...@boundarydevices.com Signed-off-by: Eric Nelson eric.nel...@boundarydevices.com CC: Jason Liu jason@linaro.org CC: Stefano Babic sba...@denx.de --- drivers/spi/Makefile|1 + drivers/spi/imx_ecspi.c | 334

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Stefano Babic
driver for our battery and that's not yet supported in later Kernel versions. However, the logical approach is to port the power supply driver to the current kernel, and also to push it to mainline ! Best regards, Stefano Babic

Re: [U-Boot] [PATCH 4/5] net: fec_mxc: Nove autonegoatiate restart after mii_postcall

2012-01-13 Thread Stefano Babic
On 13/01/2012 13:10, Dirk Behme wrote: From: Troy Kisky troy.ki...@boundarydevices.com Allow boards to change what is advertised before an autoneg restart happens. Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba

Re: [U-Boot] [PATCH v2] sdhc_boot: Introduce CONFIG_FSL_FIXED_MMC_LOCATION option

2012-01-13 Thread Stefano Babic
this config option on their board file. This fixes the retrieval of CONFIG_ENV_OFFSET on non-PowerPC boards. Signed-off-by: Fabio Estevam fabio.este...@freescale.com Applied to u-boot-imx, thanks. Best regards, Stefano Babic

[U-Boot] [PATCH V3 4/4] ARM: omap3: Added Teejet mt_ventoux

2012-01-13 Thread Stefano Babic
The mt_ventoux board is a custom board using the Technexion TAM3517 module. Signed-off-by: Stefano Babic sba...@denx.de CC: Ilya Yanok ya...@emcraft.com CC: Igor Grinberg grinb...@compulab.co.il CC: Tom Rini tom.r...@gmail.com --- Changes since V2: - CONFIG_OMAP_HSMMC requires CONFIG_GENERIC_MMC

Re: [U-Boot] [PATCH V3 2/2] ARM: omap3: add support to Technexion twister board

2012-01-14 Thread Stefano Babic
On 14/01/2012 09:47, Albert ARIBAUD wrote: (re-sent due to the U-Boot MX rejecting my provider's servers -- again) Hi Stefano, Hi Albert, hi Tom, drivers/usb/host/libusb_host.o: In function `usb_lowlevel_init': /home/uboot/src/u-boot-arm/drivers/usb/host/ehci-hcd.c:814: undefined

Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-14 Thread Stefano Babic
On 11/01/2012 13:47, Fabio Estevam wrote: CONFIG_NET_MULTI is not used anymore, so remove it from board files. Cc: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Kumar Gala kumar.g...@freescale.com Cc: Sandeep Paulraj s-paul...@ti.com Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH V3 2/2] ARM: omap3: add support to Technexion twister board

2012-01-14 Thread Stefano Babic
*, ..added Wolfgang in CC Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142

Re: [U-Boot] [PATCH V3 2/2] ARM: omap3: add support to Technexion twister board

2012-01-14 Thread Stefano Babic
On 14/01/2012 15:25, Tom Rini wrote: So what happened is I accidentally put this board into u-boot-ti/next a while back, before the USB changes went in, without realizing it. The reason the USB changes haven't gone in, still, is that they've been made more generic (as the IP block is shared

Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-15 Thread Stefano Babic
On 15/01/2012 02:12, Mike Frysinger wrote: On Saturday 14 January 2012 05:08:46 Stefano Babic wrote: On 11/01/2012 13:47, Fabio Estevam wrote: CONFIG_NET_MULTI is not used anymore, so remove it from board files. include/configs/P1010RDB.h |5 - include/configs/PM826.h

Re: [U-Boot] [PATCH V13 04/14] devkit8000/spl: init GPMC for dm9000 in SPL

2012-01-16 Thread Stefano Babic
On 15/01/2012 20:47, Simon Schwarz wrote: Jep - no one cared about the patch as far as i can see: http://article.gmane.org/gmane.comp.boot-loaders.u-boot/119453 Bad...maybe it was woth to include it in the patchset, but it should be enough to mark it is required. I did a rebase - will send

[U-Boot] [PATCH] ARM: omap3: temporary disable USB on TAM3517 boards

2012-01-16 Thread Stefano Babic
The TAM3517 boards require a patch for EHCI OMAP that does not yet find a way to mainline. The patch disables temporary USB until EHCI OMAP will be supported. Signed-off-by: Stefano Babic sba...@denx.de Cc: Tom Rini tom.r...@gmail.com Cc: Albert Aribaud albert.u.b...@aribaud.net --- include

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2012-01-16 Thread Stefano Babic
On 16/01/2012 08:58, Govindraj wrote: Th v2 patch series [1] posted is based on top of this patch. If I understand well, we need in any case Ilya's patch. In this case, it is maybe worth to merge Ilya's patch in the meanwhile (and please drop my patch that remove USB support from TAM3517

Re: [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation

2012-01-16 Thread Stefano Babic
three patches into u-boot-imx. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax

Re: [U-Boot] [PATCH 1/2] SPI: Add i.MX ECSPI driver

2012-01-16 Thread Stefano Babic
for i.mx6. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989-80

Re: [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically

2012-01-17 Thread Stefano Babic
On 12/01/2012 10:28, Dirk Behme wrote: Signed-off-by: Dirk Behme dirk.be...@de.bosch.com CC: Fabio Estevam feste...@gmail.com CC: Stefano Babic sba...@denx.de CC: Jason Liu jason@linaro.org --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation

2012-01-17 Thread Stefano Babic
On 12/01/2012 10:28, Dirk Behme wrote: i.MX53 is supported, too. Add this to the introduction of the documentation. Signed-off-by: Dirk Behme dirk.be...@de.bosch.com CC: Fabio Estevam feste...@gmail.com CC: Stefano Babic sba...@denx.de CC: Jason Liu jason@linaro.org --- Applied to u

Re: [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6

2012-01-17 Thread Stefano Babic
On 12/01/2012 10:28, Dirk Behme wrote: The i.MX6 processor can boot from NOR flash and SATA disks, additionally. Add the flash offsets for these additional boot modes. Signed-off-by: Dirk Behme dirk.be...@de.bosch.com Signed-off-by: Fabio Estevam feste...@gmail.com CC: Stefano Babic sba

Re: [U-Boot] [PATCH] i.mx6q: configs: Add fdt_high and initrd_high variables

2012-01-17 Thread Stefano Babic
Note: This requires that the kernel has CONFIG_HIGHMEM enabled. Signed-off-by: Dirk Behme dirk.be...@de.bosch.com CC: Jason Liu jason@linaro.org CC: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH] i.mx6q: mx6qsabrelite: Setup uart1 pinmux

2012-01-17 Thread Stefano Babic
jason@linaro.org CC: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office

Re: [U-Boot] [PATCH] i.mx6q: mx6qsabrelite: Add the ethernet function support

2012-01-17 Thread Stefano Babic
On 13/01/2012 09:56, Dirk Behme wrote: From: Jason Liu jason@linaro.org Signed-off-by: Jason Liu jason@linaro.org Signed-off-by: Eric Miao eric.m...@linaro.org CC: Jason Liu jason@linaro.org CC: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, thanks. Best regards

Re: [U-Boot] [PATCH 1/2] mmc: access mxcmmc from mx31 boards

2012-01-17 Thread Stefano Babic
...@hale.at --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone

Re: [U-Boot] [PATCH 1/2] fsl_pmic.h: add regulator mode 0 and 1 bits

2012-01-17 Thread Stefano Babic
in both PMIC and they differ. The way to do is to have a pmic specific header file with the bit definitions. We have already include/mc13892.h, and you can add include/mc13783.h with the constants you need. Best regards, Stefano Babic

Re: [U-Boot] [PATCH v2] configs: Remove CONFIG_NET_MULTI from board files

2012-01-17 Thread Stefano Babic
On 15/01/2012 16:03, Fabio Estevam wrote: CONFIG_NET_MULTI is not used anymore, so remove it from board files. Cc: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Kumar Gala kumar.g...@freescale.com Cc: Sandeep Paulraj s-paul...@ti.com Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH] arm: Add Prep subcommand support to bootm

2012-01-17 Thread Stefano Babic
in command cmd_spl export Signed-off-by: Simon Schwarz simonschwarz...@gmail.com Acked-by: Stefano Babic sba...@denx.de Tested-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic -- = DENX Software Engineering GmbH

[U-Boot] [PATCH] imx6: mx6qarm2: updated

2012-01-17 Thread Stefano Babic
Commit 314284b1567f1ce29c19060641e7f213146f7ab8 has changed board_mmc_getcd() function prototype, while mx6qarm2 has still the old one. Signed-off-by: Stefano Babic sba...@denx.de CC: Jason Liu jason@linaro.org --- board/freescale/mx6qarm2/mx6qarm2.c |9 + 1 files changed, 5

Re: [U-Boot] [PATCH] imx6: mx6qarm2: updated

2012-01-17 Thread Stefano Babic
On 17/01/2012 13:03, Fabio Estevam wrote: Hi Stefano, On Tue, Jan 17, 2012 at 9:18 AM, Stefano Babic sba...@denx.de wrote: Commit 314284b1567f1ce29c19060641e7f213146f7ab8 has changed board_mmc_getcd() function prototype, while mx6qarm2 has still the old one. Signed-off-by: Stefano Babic

[U-Boot] [PATCH V2] imx6: mx6qarm2: updated board_mmc_getcd() to the new prototype

2012-01-17 Thread Stefano Babic
Commit 314284b1567f1ce29c19060641e7f213146f7ab8 has changed board_mmc_getcd() function prototype, while mx6qarm2 has still the old one. Signed-off-by: Stefano Babic sba...@denx.de CC: Jason Liu jason@linaro.org Acked-by: Dirk Behme dirk.be...@de.bosch.com --- board/freescale/mx6qarm2

Re: [U-Boot] [PATCH V2] imx6: mx6qarm2: updated board_mmc_getcd() to the new prototype

2012-01-18 Thread Stefano Babic
value for the SD4, and return 1 not 0 to MMC. Thanks - I send V3 with the required change. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office

Re: [U-Boot] [PATCH 2/6] mx6q: Add support for ECSPI through mxc_spi driver

2012-01-18 Thread Stefano Babic
On 18/01/2012 02:44, Eric Nelson wrote: On 01/17/2012 06:27 PM, Marek Vasut wrote: On 01/17/2012 04:19 PM, Marek Vasut wrote: Signed-off-by: Eric Nelsoneric.nel...@boundarydevices.com +/* ECSPI registers */ +struct cspi_regs { +u32 rxdata; +u32 txdata; +u32 ctrl; +u32 cfg;

[U-Boot] [PATCH V3] imx6: mx6qarm2: updated board_mmc_getcd() to the new prototype

2012-01-18 Thread Stefano Babic
Commit 314284b1567f1ce29c19060641e7f213146f7ab8 has changed board_mmc_getcd() function prototype, while mx6qarm2 has still the old one. Signed-off-by: Stefano Babic sba...@denx.de CC: Jason Liu jason@linaro.org Acked-by: Dirk Behme dirk.be...@de.bosch.com --- Changes since V1: - update

Re: [U-Boot] [PATCH V3 2/2] tt01: add MMC support

2012-01-18 Thread Stefano Babic
(video maintainer in CC) to get his opinion. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49

Re: [U-Boot] [PATCH 2/6] mx6q: Add support for ECSPI through mxc_spi driver

2012-01-18 Thread Stefano Babic
On 18/01/2012 17:08, Marek Vasut wrote: Ok guys, I see ... Stefano, you're ok with putting the reg structures into these header files? The reg structures are already into these header files - the patch moves only the bit meaning inside the imx-regs.h files. We can discuss if we should move

Re: [U-Boot] [PATCH 2/6] mx6q: Add support for ECSPI through mxc_spi driver

2012-01-19 Thread Stefano Babic
boards that use more than one channel of SPI (for PMIC and SF), we're using ECSPI on both. I think the same was true on the MX51 EVK. Yes, it is the same. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH 6/6] mx6q: mx6qsabrelite: Provide defaults for placing environment in serial flash

2012-01-20 Thread Stefano Babic
On 20/01/2012 08:48, Jason Hui wrote: I'm wondering how the CONFIG_ENV_SPI_CS could be 0x5300? Vague? Then the left open question is only above one. The SPI driver can take as chip select the controller's chip selects as well as an external GPIO. The LSB byte has the value of the internal

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

2012-01-22 Thread Stefano Babic
CONFIG_NET_MULTI from board files Helmut Raiger (1): mmc: access mxcmmc from mx31 boards Jason Liu (1): i.mx6q: mx6qsabrelite: Add the ethernet function support Stefano Babic (1): imx6: mx6qarm2: updated board_mmc_getcd() to the new prototype Troy Kisky (2): i.mx6: mx6x_pins: Fix uart

Re: [U-Boot] [PATCH] mx28: Show CPU frequency

2012-01-23 Thread Stefano Babic
of the clocks, there is the clocks command. So really I prefer the patch as it is - the information printed are the same as for other SOCs, not only i.MX. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang

Re: [U-Boot] [PATCH] mx28: Show CPU frequency

2012-01-24 Thread Stefano Babic
(Freescale i.MX28 family\n); + printf(Freescale i.MX28 family at %d MHz\n, + mxc_get_clock(MXC_ARM_CLK) / 100); return 0; } #endif Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH] mx28: fix i.MX28 spi driver

2012-01-24 Thread Stefano Babic
, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: off...@denx.de

Re: [U-Boot] USBTTY for CONFIG_USB_GADGET

2012-01-24 Thread Stefano Babic
or is there some alternative? This is very interesting ! There is a lot of boards using CONFIG_USB_DEVICE. We cannot drop then CONFIG_USB_DEVICE, but new boards must use the new interface. Best regards, Stefano Babic -- = DENX

  1   2   3   4   5   6   7   8   9   10   >