Re: [U-Boot] compile the u-boot

2012-01-13 Thread Jilin Zhou
Hi Albert, Thanks for the reply. My host environment is Mac. Our company has a cross compiler toolchain for armv7. The commands I run are as follows: 1. export CROSS_COMPILE=ntoarmv7- 2. make omap4_panda_config 3. make all We use this cross compiler every day and it should be fine. Anywhere

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

2012-01-13 Thread Stefano Babic
On 11/01/2012 14:59, Helmut Raiger wrote: This patch modifies mxcmmc.c to be used not only by i.MX27 but also by i.MX31 boards. Both use the same SD controller, but have different clock set-ups. The i.MX27 imx_get_XXXclock functions are made static to generic.c and a public mxc_get_clock()

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Sughosh Ganu
hi Christian, On Fri Jan 13, 2012 at 09:06:26AM +0100, Christian Riesch wrote: Hi Sughosh, I had a look at the patch and I tried to understand what's going on here (I must confess that I didn't know anything about this cache stuff). Ok, thanks for taking time off to understand this issue.

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

2012-01-13 Thread Stefano Babic
On 11/01/2012 14:59, Helmut Raiger wrote: board_mmc_init() initializes the pins of SDHC1 and turns on V_MMC1 of the PMIC. Config adds support for EXT2 and FAT. Signed-off-by: Helmut Raiger helmut.rai...@hale.at --- Hi Helmut, + + /* turn on power V_MMC1, bit 18 is the VMMC1 enable

[U-Boot] [PATCH] i.mx6: mx6x_pins: Fix uart txd definitions

2012-01-13 Thread Dirk Behme
From: Troy Kisky troy.ki...@boundarydevices.com The uart txd pad can also provide the rxd function. But it does not stop its tx role. This could be used for a half duplex serial port. Change names to reduce confusion. Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky

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

2012-01-13 Thread Dirk Behme
To be able to load the device tree and initrd correctly, set the fdt_high and initrd_high environment variables. Using 0x implies that the device tree and the initrd are initially copied to working addresses. This will avoid an additional copy. Loading the device tree to 0x3000 and

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

2012-01-13 Thread Dirk Behme
From: Troy Kisky troy.ki...@boundarydevices.com This allows the Linux kernel to use UART1 before pinmux support is added for UART1 Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Jason Liu jason@linaro.org CC: Stefano Babic

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Robert Deliën
Hi Stephan, Of course you can post patches ! Any fix is always high appreciated ! I figured patches on a different repo were a bit 'unusual', but I'll clean up my work and submit my patch soon. Exactly which kernel version ? Do you tried with mainline kernel ? The board is officially

Re: [U-Boot] u-boot-imx on Freescale MX28EVK

2012-01-13 Thread Robert Deliën
Hi Matthias, I a patch would be welcome. I only need USB and SPI flash for my application. And USB was easy to setup. Currently I am also jiggling around the SPI / SPI flash support. For USB, all you need to do is to configure it in and to copy Marek's clock setup in board_early_init_f for

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

[U-Boot] [PATCH 1/3] ARM: I2C: I2C Multi byte address support

2012-01-13 Thread Patil, Rachna
Existing OMAP I2C driver does not support address length greater than one. Hence this patch is to add support for 2 byte address read/write. Signed-off-by: Philip, Avinash avinashphi...@ti.com Signed-off-by: Hebbar, Gururaja gururaja.heb...@ti.com Signed-off-by: Patil, Rachna rac...@ti.com ---

[U-Boot] [PATCH 2/3] ARM: AM33XX: Add AM33XX I2C driver support

2012-01-13 Thread Patil, Rachna
1. Compliant with Philips I2C specification version 2.1 2. Supports upto 100Kbps in standard mode. Signed-off-by: Chandan Nath chandan.n...@ti.com Signed-off-by: Patil, Rachna rac...@ti.com --- drivers/i2c/omap24xx_i2c.c | 20 +--- 1 files changed, 13 insertions(+), 7

[U-Boot] [PATCH 3/3] ARM: AM33XX: Add i2c support

2012-01-13 Thread Patil, Rachna
Add i2c driver board hookup for AM335X EVM. Signed-off-by: Chandan Nath chandan.n...@ti.com Signed-off-by: Patil, Rachna rac...@ti.com --- arch/arm/cpu/armv7/am33xx/clock.c |5 ++ arch/arm/include/asm/arch-am33xx/common_def.h |1 + arch/arm/include/asm/arch-am33xx/cpu.h

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

2012-01-13 Thread Dirk Behme
On 13.01.2012 11:48, Stefano Babic wrote: 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

Re: [U-Boot] [PATCH 1/3] ARM: I2C: I2C Multi byte address support

2012-01-13 Thread Heiko Schocher
Hello Patil, Patil, Rachna wrote: Existing OMAP I2C driver does not support address length greater than one. Hence this patch is to add support for 2 byte address read/write. Signed-off-by: Philip, Avinash avinashphi...@ti.com Signed-off-by: Hebbar, Gururaja gururaja.heb...@ti.com

[U-Boot] [PATCH 1/5] net: fec_mxc: Add 1000 Mbps selection

2012-01-13 Thread Dirk Behme
From: Troy Kisky troy.ki...@boundarydevices.com Add 1000 Mbps selection and print negotiated speed Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba...@denx.de CC: Marek Vasut marek.va...@gmail.com ---

[U-Boot] [PATCH 2/5] net: fec_mxc: Increase autonegotiation timeout

2012-01-13 Thread Dirk Behme
From: Troy Kisky troy.ki...@boundarydevices.com Timeouts were happening to soon for some switches. Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba...@denx.de CC: Marek Vasut marek.va...@gmail.com ---

[U-Boot] [PATCH 5/5] i.mx6q: mx6qsabrelite: Update the network configuration

2012-01-13 Thread Dirk Behme
From: Troy Kisky troy.ki...@boundarydevices.com Enable the usage of PHY_MICREL_KSZ9021, force the master mode and minimize the tx clock delay. There is an issue with the gigabit ethernet mode at the SabreLite boards: When operating on a Gb LAN, the FEC occasionally receives packets larger than

[U-Boot] [PATCH 3/5] miiphyutil: Add Micrel KSZ9021 support to miiphy_speed

2012-01-13 Thread Dirk Behme
From: Troy Kisky troy.ki...@boundarydevices.com Previously, only GIGE phy was supported in this function. Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba...@denx.de CC: Marek Vasut marek.va...@gmail.com ---

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

2012-01-13 Thread Dirk Behme
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...@denx.de CC: Marek Vasut

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

2012-01-13 Thread Marek Vasut
On 12.01.2012 16:37, Marek Vasut 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 --- ... + if (max_hz imx_spi_slave-freq) +

Re: [U-Boot] u-boot-imx on Freescale MX28EVK

2012-01-13 Thread Matthias Fuchs
Robert, On 13.01.2012 11:33, Robert Deliën wrote: Hi Matthias, I a patch would be welcome. I only need USB and SPI flash for my application. And USB was easy to setup. Currently I am also jiggling around the SPI / SPI flash support. For USB, all you need to do is to configure it in and

Re: [U-Boot] [PATCH v3 4/4] zipitz2: fix boot issue introduced by PXA low level init rework

2012-01-13 Thread Marek Vasut
CONFIG_SYS_INIT_SP_ADDR points to RAM, but it's used before DRAM controller init. Fix it by setting CONFIG_SYS_INIT_SP_ADDR to SRAM Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- v2: no changes v3: introduce PHYS_SRAM, use it for SYS_INIT_SP_ADDR calculation

Re: [U-Boot] [PATCH v3 1/4] PXA: PXA27x Matrix keypad driver

2012-01-13 Thread Marek Vasut
From: Marek Vasut marek.va...@gmail.com Signed-off-by: Marek Vasut marek.va...@gmail.com Signed-off-by: Vasily Khoruzhick anars...@gmail.com [vasily: adapted Marek's old version for newer u-boot, fixed multiple keypresses handling] --- v2: use struct-based access to regs, minor

Re: [U-Boot] [PATCH 1/5] net: fec_mxc: Add 1000 Mbps selection

2012-01-13 Thread Marek Vasut
From: Troy Kisky troy.ki...@boundarydevices.com Add 1000 Mbps selection and print negotiated speed Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba...@denx.de CC: Marek Vasut marek.va...@gmail.com ---

Re: [U-Boot] [PATCH 3/5] miiphyutil: Add Micrel KSZ9021 support to miiphy_speed

2012-01-13 Thread Marek Vasut
From: Troy Kisky troy.ki...@boundarydevices.com Previously, only GIGE phy was supported in this function. Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba...@denx.de CC: Marek Vasut marek.va...@gmail.com ---

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

2012-01-13 Thread Marek Vasut
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...@denx.de CC: Marek Vasut

Re: [U-Boot] [PATCH 1/3 v8] arm926ejs: add NXP LPC32x0 cpu series support

2012-01-13 Thread Marek Vasut
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy v...@mleia.com Cc: Albert ARIBAUD albert.u.b...@aribaud.net Cc: Wolfgang Denk w...@denx.de --- Quick skim looks fine: Acked-by: Marek Vasut marek.va...@gmail.com Changes from v7 to v8: *

Re: [U-Boot] [PATCH 2/3 v3] serial: add LPC32X0 high-speed UART devices support

2012-01-13 Thread Marek Vasut
This change adds an implementation of high-speed UART found on NXP LPC32X0 SoCs. Such UARTs are enumerated as UART1, UART2 and UART7. Signed-off-by: Vladimir Zapolskiy v...@mleia.com Cc: Albert ARIBAUD albert.u.b...@aribaud.net Cc: Wolfgang Denk w...@denx.de --- Quick skim looks fine

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Marek Vasut
Hi Stephan, Of course you can post patches ! Any fix is always high appreciated ! I figured patches on a different repo were a bit 'unusual', but I'll clean up my work and submit my patch soon. Exactly which kernel version ? Do you tried with mainline kernel ? The board is

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Stefano Babic
On 13/01/2012 13:56, Robert Deliën wrote: Looks like CPUfreq+usb is doing something eerie ... Fabio, can you look into it? I've Kernel 3.2.1 and it works. So I've made a clean-built of my 3.1.6 and works too. No idea why it failed before, but I'm going to disregard that for now. I think

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Marek Vasut
On 13/01/2012 13:56, Robert Deliën wrote: Looks like CPUfreq+usb is doing something eerie ... Fabio, can you look into it? I've Kernel 3.2.1 and it works. So I've made a clean-built of my 3.1.6 and works too. No idea why it failed before, but I'm going to disregard that for now. I

Re: [U-Boot] [PATCH v3 1/4] PXA: PXA27x Matrix keypad driver

2012-01-13 Thread Vasily Khoruzhick
On Fri, 2012-01-13 at 13:41 +0100, Marek Vasut wrote: +#define KPDK_DK1 (0x1 1) +#define KPDK_DK0 (0x1 0) Drop those two spaces here Two spaces? It's tabs! Btw, it's for good looking formatting and it was taken from pxa-regs.h. I'd like to preserve it like it is. +static

Re: [U-Boot] [PATCH v3 3/4] zipitz2: use pxa_mmc_gen as MMC driver

2012-01-13 Thread Vasily Khoruzhick
On Fri, 2012-01-13 at 13:35 +0100, Marek Vasut wrote: + if mmc rescan 0 ext2load mmc 0 0xa000 boot/uboot.script ; \ Why mmc rescan 0 ? Because otherwise it does nothing to detect card and scan for partitions? 0 is mmc device index. Regards Vasily

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Fabio Estevam
Hi Robert, On Fri, Jan 13, 2012 at 11:06 AM, Stefano Babic sba...@denx.de wrote: Unfortunately we cannot step up to another Kernel because we need the FreeScale power supply driver for our battery and that's not yet supported in later Kernel versions. However, the logical approach is to

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

Re: [U-Boot] Help needed on Colibri T20 - Iris Board

2012-01-13 Thread Stéphane Carvalho
Hi guys, Here's the situation: We applied the following patches to an original u-boot source code (2011.09 version): [U-Boot] [PATCH 1/2] Tegra2: Make XTal speed configurable [U-Boot] [PATCH 2/2] Tegra2: Add support for Toradex Colibri T20 board And we use the antmicro patches for the Colibri

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

2012-01-13 Thread Stefano Babic
On 11/01/2012 20:20, Fabio Estevam wrote: Since commit 97039ab98 (env_mmc: Allow board code to override the environment address) mmc_get_env_addr is a weak-aliased function in common/env_mmc.c The mmc_get_env_addr implementation that exists at board/freescale/common/sdhc_boot.c is meant to

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Tom Rini
On Fri, Jan 13, 2012 at 1:26 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Christian, On Fri Jan 13, 2012 at 09:06:26AM +0100, Christian Riesch wrote: Hi Sughosh, I had a look at the patch and I tried to understand what's going on here (I must confess that I didn't know anything about

Re: [U-Boot] [PATCH 4/7] tegra: Add I2C driver

2012-01-13 Thread Simon Glass
Hi Heiko, On Thu, Jan 12, 2012 at 11:12 PM, Heiko Schocher h...@denx.de wrote: Hello Stephen, Stephen Warren wrote: Simon Glass wrote ednesday, January 11, 2012 9:18 PM: On Mon, Jan 9, 2012 at 2:07 PM, Stephen Warren swar...@nvidia.com wrote: On 12/26/2011 11:11 AM, Simon Glass wrote:

Re: [U-Boot] Help needed on Colibri T20 - Iris Board

2012-01-13 Thread Simon Glass
Hi Stéphane, On Fri, Jan 13, 2012 at 6:03 AM, Stéphane Carvalho carvalho.steph...@gmail.com wrote: Hi guys, Here's the situation: We applied the following patches to an original u-boot source code (2011.09 version): [U-Boot] [PATCH 1/2] Tegra2: Make XTal speed configurable [U-Boot]

Re: [U-Boot] [PATCH v2 0/7] tegra: Add I2C driver and associated parts

2012-01-13 Thread Simon Glass
Hi Heiko, On Thu, Jan 12, 2012 at 10:28 PM, Heiko Schocher h...@denx.de wrote: Hello Simon, Simon Glass wrote: This series brings in an I2C driver for Tegra which can be configured by a flat device tree. It supports 8- and 16-bit addresses and both the normal I2C ports and the DVC port

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Heiko Schocher
Hello Christian, Christian Riesch wrote: Hi Sughosh, I had a look at the patch and I tried to understand what's going on here (I must confess that I didn't know anything about this cache stuff). On Tue, Jan 10, 2012 at 7:12 PM, Sughosh Ganu urwithsugh...@gmail.com wrote: The current

Re: [U-Boot] [PATCH v2 4/7] tegra: Add I2C driver

2012-01-13 Thread Simon Glass
Hi Heiko, On Thu, Jan 12, 2012 at 11:25 PM, Heiko Schocher h...@denx.de wrote: Hello Simon, Simon Glass wrote: From: Yen Lin ye...@nvidia.com Add basic i2c driver for Tegra2 with 8- and 16-bit address support. The driver requires CONFIG_OF_CONTROL to obtain its configuration from the

Re: [U-Boot] [PATCH v2 4/7] tegra: Add I2C driver

2012-01-13 Thread Heiko Schocher
Hello Simon, Simon Glass wrote: Hi Heiko, On Thu, Jan 12, 2012 at 11:25 PM, Heiko Schocher h...@denx.de wrote: Hello Simon, Simon Glass wrote: From: Yen Lin ye...@nvidia.com Add basic i2c driver for Tegra2 with 8- and 16-bit address support. The driver requires CONFIG_OF_CONTROL to

Re: [U-Boot] [PATCH 4/7] tegra: Add I2C driver

2012-01-13 Thread Heiko Schocher
Hello Simon, Simon Glass wrote: Hi Heiko, On Thu, Jan 12, 2012 at 11:12 PM, Heiko Schocher h...@denx.de wrote: Hello Stephen, Stephen Warren wrote: Simon Glass wrote ednesday, January 11, 2012 9:18 PM: On Mon, Jan 9, 2012 at 2:07 PM, Stephen Warren swar...@nvidia.com wrote: On

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Heiko Schocher
Hello Sugosh, Sughosh Ganu wrote: hi Christian, On Fri Jan 13, 2012 at 09:06:26AM +0100, Christian Riesch wrote: Hi Sughosh, I had a look at the patch and I tried to understand what's going on here (I must confess that I didn't know anything about this cache stuff). Ok, thanks for

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Robert Deliën
I've Kernel 3.2.1 and it works. So I've made a clean-built of my 3.1.6 and works too. No idea why it failed before, but I'm going to disregard that for now. I think it's safe to conclude that the problem is an incompatibility between the FreeScale supplied 2.6.35.3-571 Kernel and the

Re: [U-Boot] mx28evk_config integration

2012-01-13 Thread Robert Deliën
About the 2.6.35 cpufreq bug you see: I remember to see a patch for it. Let me locate it and I will point it to you. If there's anything you can remember, please throw it at me: Anything is useful. Or simply try to disable cpufreq if you need a quick workaround for 2.6.35. I'll try that

Re: [U-Boot] [PATCH v2 0/6] overo: add SPL support

2012-01-13 Thread Andreas Müller
On Tuesday, January 03, 2012 05:23:34 PM Tom Rini tom.r...@gmail.com wrote: On Thu, Dec 22, 2011 at 4:04 AM, Andreas Müller schnitzelt...@gmx.de wrote: I manually sent this series to Steve as suggested in review by Tom Parts 1 to 5 are fine and I've sent my comments on 6, thanks! Tom, 1-5:

Re: [U-Boot] [PATCH v3 6/7] omap_rev_string: output to stdout

2012-01-13 Thread Tom Rini
On Wed, Jan 4, 2012 at 6:26 PM, Andreas Müller schnitzelt...@gmx.de wrote: * avoid potential buffer overflows * allow SPL-build not to output Texas Instruments Revision detection unimplemented Signed-off-by: Andreas Müller schnitzelt...@gmx.de ---  

[U-Boot] [PATCH] [v2] powerpc/85xx: move the Fman microcode from ef000000 to eff40000

2012-01-13 Thread Timur Tabi
On some Freescale reference boards for SOCs with Fman devices, the Fman microcode is located at address 0xEF00 in NOR flash. Unfortunately, this address is in the middle of nowhere and makes it difficult to partition flash space for other images. So we change the expected address to

Re: [U-Boot] [PATCH v3 3/4] zipitz2: use pxa_mmc_gen as MMC driver

2012-01-13 Thread Marek Vasut
On Fri, 2012-01-13 at 13:35 +0100, Marek Vasut wrote: + if mmc rescan 0 ext2load mmc 0 0xa000 boot/uboot.script ; \ Why mmc rescan 0 ? Because otherwise it does nothing to detect card and scan for partitions? 0 is mmc device index. I see ... so mmc rescan takes such a parameter.

Re: [U-Boot] [PATCH v3 1/4] PXA: PXA27x Matrix keypad driver

2012-01-13 Thread Marek Vasut
On Fri, 2012-01-13 at 13:41 +0100, Marek Vasut wrote: +#define KPDK_DK1 (0x1 1) +#define KPDK_DK0 (0x1 0) Drop those two spaces here Two spaces? It's tabs! Btw, it's for good looking formatting and it was taken from pxa-regs.h. I'd like to preserve it like it is. Then change

Re: [U-Boot] [PATCH v3 6/7] omap_rev_string: output to stdout

2012-01-13 Thread Tom Rini
On Fri, Jan 13, 2012 at 9:31 AM, Tom Rini tom.r...@gmail.com wrote: On Wed, Jan 4, 2012 at 6:26 PM, Andreas Müller schnitzelt...@gmx.de wrote: * avoid potential buffer overflows * allow SPL-build not to output Texas Instruments Revision detection unimplemented Signed-off-by: Andreas Müller

Re: [U-Boot] [PATCH v3 0/7] overo: add SPL support

2012-01-13 Thread Tom Rini
On Wed, Jan 4, 2012 at 6:26 PM, Andreas Müller schnitzelt...@gmx.de wrote: V1 - V2 * cleanups: replace printf with one argument by puts [1-2] * cleanups: remove unused macros and macro values / tabbing / remove FSF address [3] * i2c: move all local variables to SRAM [4] * OMAP SPL: call

Re: [U-Boot] [PATCH 0/6] Cleanups and updates for cm-t35/3730

2012-01-13 Thread Tom Rini
On Tue, Jan 3, 2012 at 8:15 AM, Tom Rini tr...@ti.com wrote: On 01/02/2012 07:01 AM, Igor Grinberg wrote: This patch series some what clean up cm-t35 board files, add separate EEPROM handling file, fixes the incorrect board revision passed to Linux. Nikita Kiryanov (6):   cm-t35: cleanup

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Sughosh Ganu
hi Heiko, On Fri Jan 13, 2012 at 04:06:22PM +0100, Heiko Schocher wrote: snip mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */ /* * disable MMU stuff and caches */ mrc p15, 0, r0, c1, c0, 0 - bic r0, r0, #0x2300 /*

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Sughosh Ganu
On Fri Jan 13, 2012 at 07:41:37AM -0700, Tom Rini wrote: On Fri, Jan 13, 2012 at 1:26 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: snip        bic     r0, r0, #0x0087     /* clear bits 7, 2:0 (B--- -CAM) */        orr     r0, r0, #0x0002     /* set bit 2 (A) Align */    

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Sughosh Ganu
hi Heiko, On Fri Jan 13, 2012 at 04:29:29PM +0100, Heiko Schocher wrote: Hello Sugosh, Sughosh Ganu wrote: hi Christian, On Fri Jan 13, 2012 at 09:06:26AM +0100, Christian Riesch wrote: Hi Sughosh, I had a look at the patch and I tried to understand what's going on here (I must

Re: [U-Boot] [PATCH 06/14] tegra: Add EMC support for optimal memory timings

2012-01-13 Thread Simon Glass
Hi Stephen, On Thu, Jan 12, 2012 at 12:43 PM, Simon Glass s...@chromium.org wrote: Hi Stephen, On Mon, Jan 9, 2012 at 3:38 PM, Stephen Warren swar...@nvidia.com wrote: On 12/26/2011 12:32 PM, Simon Glass wrote: From: Jimmy Zhang jimmzh...@nvidia.com Add support for setting up the memory

Re: [U-Boot] [PATCH 12/14] tegra: Set vdd_core and vdd_cpu to high

2012-01-13 Thread Simon Glass
Hi Stephen, On Tue, Jan 10, 2012 at 10:40 AM, Stephen Warren swar...@nvidia.com wrote: On 12/26/2011 12:33 PM, Simon Glass wrote: From: Jimmy Zhang jimmzh...@nvidia.com At cold boot, the default voltage supplied by pmu is not high enough to support emc to run at its highest clock frequency.

[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

Re: [U-Boot] [PATCH v3 7/7] overo: add SPL support

2012-01-13 Thread Tom Rini
On Wed, Jan 4, 2012 at 6:26 PM, Andreas Müller schnitzelt...@gmx.de wrote: * implementation based on ti beagleboard/omap3evm * timing data and i2c workaround for revision 0 boards taken from x-loader * run-tested with overo revision 0 and 1 / boot from NAND and SDcard * run-tested with

Re: [U-Boot] [PATCH 1/2 V2] arm926: Flush the data cache before disabling it.

2012-01-13 Thread Aneesh V
On Friday 13 January 2012 11:08 PM, Sughosh Ganu wrote: hi Heiko, On Fri Jan 13, 2012 at 04:29:29PM +0100, Heiko Schocher wrote: Hello Sugosh, Sughosh Ganu wrote: hi Christian, On Fri Jan 13, 2012 at 09:06:26AM +0100, Christian Riesch wrote: Hi Sughosh, I had a look at the patch and I

Re: [U-Boot] [PATCH] [v2] powerpc/85xx: move the Fman microcode from ef000000 to eff40000

2012-01-13 Thread Wolfgang Denk
Dear Timur Tabi, In message 1326472903-6423-1-git-send-email-ti...@freescale.com you wrote: On some Freescale reference boards for SOCs with Fman devices, the Fman microcode is located at address 0xEF00 in NOR flash. Unfortunately, this address is in the middle of nowhere and makes it

Re: [U-Boot] [PATCH] [v2] powerpc/85xx: move the Fman microcode from ef000000 to eff40000

2012-01-13 Thread Timur Tabi
Wolfgang Denk wrote: Instead of hard-coding magic addresses which then need to be changed again and again, would it not make more sense to read the value from an environment variable so it can be easily changed without having to modify the source, rebuild, reinstall all the time? (Adding

Re: [U-Boot] [GIT PULL] please pull u-boot-mpc85xx

2012-01-13 Thread Kumar Gala
On Jan 13, 2012, at 10:24 AM, Paul Gortmaker wrote: Hi Kumar, Was there a problem with my add printout of LCRR patch: http://patchwork.ozlabs.org/patch/131707/ or did it just get lost over the usual holiday period chaos? Thanks for merging the others, as they were the more

Re: [U-Boot] [PATCH 1/2] eXMeritus HWW-1U-1A: Add support for the AT24C128N I2C EEPROM

2012-01-13 Thread Kumar Gala
On Dec 15, 2011, at 9:26 PM, Kyle Moffett wrote: This EEPROM is hardware-write-protected and used to persist key information such as the serial number and MAC addresses even if the primary environment sector in NOR FLASH is overwritten. During manufacturing, the environment is initialized

Re: [U-Boot] [PATCH 2/2] eXMeritus HWW-1U-1A: Minor environment variable tweaks

2012-01-13 Thread Kumar Gala
On Dec 15, 2011, at 9:26 PM, Kyle Moffett wrote: Most of the ethernet connections are internal links with specialized hardware and are not useful for dhcp or general-purpose networking; U-Boot should not be cycling through them. Force the primary external network interface in ethprime and

Re: [U-Boot] [PATCH 85xx-next 0/8] Updates for Wind River sbc8548 board

2012-01-13 Thread Kumar Gala
On Dec 30, 2011, at 10:53 PM, Paul Gortmaker wrote: This updates the sbc8548 board support with several improvements for the end users. -ability to use SPD DDR config for easy RAM upgrades -ability to use alternate SODIMM flash for backup u-boot image -localbus config settings fixed

Re: [U-Boot] [PATCH] fsl_lbc: add printout of LCRR and LBCR to local bus regs

2012-01-13 Thread Kumar Gala
On Dec 15, 2011, at 9:22 AM, Paul Gortmaker wrote: It can be handy to have these in the output when trying to debug odd behaviour. Signed-off-by: Paul Gortmaker paul.gortma...@windriver.com applied to 85xx - k ___ U-Boot mailing list

Re: [U-Boot] Please pull u-boot-mmc.git

2012-01-13 Thread Wolfgang Denk
Dear Andy Fleming, In message 1326080645-5780-1-git-send-email-aflem...@freescale.com you wrote: The following changes since commit 9a4209869bd2c37affd931d627b3c3e72952: ARM: highbank: enable networking and pxe (2012-01-05 20:10:38 +0100) are available in the git repository at:

Re: [U-Boot] [GIT PULL] Please pull u-boot-mpc83xx: new 8321 tuge1, GPIO support, fixes

2012-01-13 Thread Wolfgang Denk
Dear Kim Phillips, In message 20120109202052.ae28ccb964402aa7afab5...@freescale.com you wrote: Please pull 8321-based tuge1 board support, GPIO support for the mpc8313erdb, and other fixes: The following changes since commit 9a4209869bd2c37affd931d627b3c3e72952: ARM: highbank:

Re: [U-Boot] Please pull u-boot-ppc4xx

2012-01-13 Thread Wolfgang Denk
Dear Stefan Roese, In message 201201100842.58840...@denx.de you wrote: Hi Wolfgang, please pull the following changes: The following changes since commit 9a4209869bd2c37affd931d627b3c3e72952: ARM: highbank: enable networking and pxe (2012-01-05 20:10:38 +0100) are available in the

Re: [U-Boot] [GIT PULL] Pull request: i2c

2012-01-13 Thread Wolfgang Denk
Dear Heiko Schocher, In message 4f0d37aa.4080...@denx.de you wrote: Hello Wolfgang, The following changes since commit 9a4209869bd2c37affd931d627b3c3e72952: ARM: highbank: enable networking and pxe (2012-01-05 20:10:38 +0100) are available in the git repository at:

[U-Boot] mx28: bug in mxs_spi driver

2012-01-13 Thread Matthias Fuchs
Hi, I ran into trouble when trying to extend MX28EVK board support for a SPI flash (SST24VF032B). Some code finally runs into spi_flash_cmd_poll_bit() (spi_flash.c). This function is then used to poll the flash's status register: int spi_flash_cmd_poll_bit(struct spi_flash *flash, unsigned long

Re: [U-Boot] [PATCH] net/eth.c: fix eth_write_hwaddr() to use dev-enetaddr as fall back

2012-01-13 Thread Wolfgang Denk
Dear Eric Miao, In message 1313559224-4627-1-git-send-email-eric.m...@linaro.org you wrote: Ignore the return value of eth_getenv_enetaddr_by_index(), and if it fails, fall back to use dev-enetaddr, which could be filled up by the ethernet device driver. Actually, this is the original

Re: [U-Boot] [PATCH v2 4/9] Stop using builtin_run_command()

2012-01-13 Thread Wolfgang Denk
Dear Simon Glass, In message 1323542641-14541-5-git-send-email-...@chromium.org you wrote: This function is only one of the parser options, so use run_command() instead. It knows how to use hush if selected. ... debug(Starting %s process...\n, __FUNCTION__); -#if

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

2012-01-13 Thread Tom Rini
Hi Albert, The following changes since commit 10a4fa9e22b9677819b3901a87eec05875b346ad: Aneesh V (1): omap4: fix boot issue on ES2.0 Panda are available in the git repository at: git://git.denx.de/u-boot-ti.git master Andreas Müller (7): drivers/i2c/omap24xx_i2c.c: replace

Re: [U-Boot] compile the u-boot

2012-01-13 Thread Wolfgang Denk
Dear Jilin Zhou, In message 65fa52f035a583499cf50319f9e7adbc081...@exmbx1.ott.qnx.com you wrote: Thanks for the reply. My host environment is Mac. Our company has a cross compiler toolchain for armv7. Meybe it has some problem? We use this cross compiler every day and it should be fine.

Re: [U-Boot] [PATCH 09/14] tegra: Add warmboot implementation

2012-01-13 Thread Simon Glass
Hi Stephen, [Yen please can you read this also?] On Tue, Jan 10, 2012 at 10:30 AM, Stephen Warren swar...@nvidia.com wrote: On 12/26/2011 12:33 PM, Simon Glass wrote: From: Yen Lin ye...@nvidia.com Add code to set up the warm boot area in the Tegra CPU ready for a resume after suspend.

Re: [U-Boot] [GIT PULL] please pull u-boot-mpc85xx

2012-01-13 Thread Wolfgang Denk
Dear Kumar Gala, In message alpine.lfd.2.00.1201121408060.21...@right.am.freescale.net you wrote: The following changes since commit 9a4209869bd2c37affd931d627b3c3e72952: Rob Herring (1): ARM: highbank: enable networking and pxe are available in the git repository at:

Re: [U-Boot] [PATCH] post/Makefile: Only build FP post tests if enabled via CONFIG_SYS_POST_FPU

2012-01-13 Thread Wolfgang Denk
Dear Kumar Gala, In message 1326396641-20928-1-git-send-email-ga...@kernel.crashing.org you wrote: Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- post/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX

Re: [U-Boot] [PATCH v2 4/9] Stop using builtin_run_command()

2012-01-13 Thread Simon Glass
Hi Wolfgang, On Fri, Jan 13, 2012 at 11:27 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message 1323542641-14541-5-git-send-email-...@chromium.org you wrote: This function is only one of the parser options, so use run_command() instead. It knows how to use hush if selected.

Re: [U-Boot] [PATCH 1/9] Strip mkenvimage

2012-01-13 Thread Wolfgang Denk
Dear David Wagner, In message 1322080098-3151-2-git-send-email-david.wag...@free-electrons.com you wrote: Signed-off-by: David Wagner david.wag...@free-electrons.com --- tools/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk

Re: [U-Boot] [PATCH 0/9] mkenvimage: v10/v11 diff split into several patches

2012-01-13 Thread Wolfgang Denk
Dear David Wagner, In message 1322080098-3151-1-git-send-email-david.wag...@free-electrons.com you wrote: First, thanks for having mainlined mkenvimage :) These patches mainly address Wolfgang's remarks. There are a couple others. I first intended to submit a v11 patch but since the

Re: [U-Boot] [PATCH v2 1/9] openrisc: Add architecture header files

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-2-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - Copyright/license information added to headers - ptrace.h updated from Linux

Re: [U-Boot] [PATCH v2 2/9] openrisc: Add architecture image support

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-3-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - None common/image.c |1 + include/image.h |1 + 2 files changed, 2

Re: [U-Boot] [PATCH v2 4/9] openrisc: Add library functions

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-5-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - Remove superfluous extern statements - Use ARRAY_SIZE to determine end of

Re: [U-Boot] [PATCH v2 5/9] openrisc: Add board info printout to cmd_bdinfo

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-6-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - None common/cmd_bdinfo.c | 22 ++ 1 files changed, 22

Re: [U-Boot] [PATCH v2 7/9] openrisc: Add openrisc-generic example board

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-8-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - Remove references to deprecated CONFIG_NET_MULTI

Re: [U-Boot] [PATCH v2 6/9] openrisc: Add support for standalone programs

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-7-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - None examples/standalone/stubs.c | 14 ++ 1 files changed, 14

Re: [U-Boot] [PATCH v2 8/9] openrisc: Add architecture to MAKEALL

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-9-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - None MAKEALL |5 + 1 files changed, 5 insertions(+), 0 deletions(-)

Re: [U-Boot] [PATCH v2 9/9] openrisc: Add MAINTAINERS entry

2012-01-13 Thread Wolfgang Denk
Dear Stefan Kristiansson, In message 1322370297-22892-10-git-send-email-stefan.kristians...@saunalahti.fi you wrote: Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- Changes in v2: - None MAINTAINERS | 11 +++ 1 files changed, 11 insertions(+), 0

Re: [U-Boot] [PATCH v2] net: allow setting env enetaddr from net device setting

2012-01-13 Thread Wolfgang Denk
Dear Rob Herring, In message 1323199478-21001-1-git-send-email-robherri...@gmail.com you wrote: From: Rob Herring rob.herr...@calxeda.com If the net driver has setup a valid ethernet address and an ethernet address is not set in the environment already, then set the environment variables

Re: [U-Boot] Fwd: [PATCH v6 1/2] Introduce generic TPM support in u-boot

2012-01-13 Thread Wolfgang Denk
Dear Vadim Bendebury, In message CAC3GErGZSBQXC=gjgvcwdavzkkrdasvhrvxgkt9tlsvybtx...@mail.gmail.com you wrote: Do you mean all newer patch versions are supposed to include logs of all previous patch versions? Yes, as documented - see

Re: [U-Boot] [PATCH] [v2] powerpc/85xx: move the Fman microcode from ef000000 to eff40000

2012-01-13 Thread Timur Tabi
Timur Tabi wrote: Well, I tried that a while back and it didn't work, but I can't remember why. That was before I implemented a unified approach to Fman ucode identification, so maybe it will work better now. Ok, I remember now. The problem was that using the environment variable was messy.

Re: [U-Boot] [PATCH 05/14] tegra: Add tegra_get_chip_type() to detect SKU

2012-01-13 Thread Simon Glass
Hi Stephen, On Thu, Jan 12, 2012 at 11:48 AM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Thursday, January 12, 2012 12:36 PM: On Mon, Jan 9, 2012 at 3:24 PM, Stephen Warren swar...@nvidia.com wrote: On 12/26/2011 12:32 PM, Simon Glass wrote: ... I think this should

[U-Boot] [PATCH v2 0/20] tegra: warmboot (suspend / resume) support

2012-01-13 Thread Simon Glass
This series adds support for warm boot, allowing the device to suspend and resume. U-Boot sets up some 'warm boot' code in a special area such that the SOC can find it on a resume. This code is responsible for setting up memory and clocked and then allowing the OS to continue where it left off.

  1   2   >