Re: [U-Boot] [PATCH v2] mx31ads: Use the new relocation scheme

2011-06-01 Thread Stefano Babic
On 06/01/2011 09:46 PM, Fabio Estevam wrote: > This fixes the MX31ADS build by using the new relocation scheme. > > Signed-off-by: Fabio Estevam --- Hi Fabio, > Changes since v1: > > - Fixed lines over 80 characters. > > Build tested only. > > Do not have the hardware handy to test. Maybe s

Re: [U-Boot] da850evm: u-boot does not start without UBL since commit f1d2b313c9eb6808d30c16a9eb5251240452a56c

2011-06-01 Thread Heiko Schocher
Hello Christian, Christian Riesch wrote: > I have tried to run recent versions of u-boot on the da850evm (AM1808 > eXperimenter's Kit) board. Using Texas Instrument's User Boot Loader (UBL) > to start u-boot (the default configuration for the EVM) everything works > fine. However, if I try to get

Re: [U-Boot] [PATCH] post, arm, memorytest: add support for arm based boards

2011-06-01 Thread Heiko Schocher
Hello Mike, Mike Frysinger wrote: > On Wednesday, June 01, 2011 02:54:30 Heiko Schocher wrote: >> Wolfgang Denk wrote: >>> Heiko Schocher wrote: --- a/post/drivers/memory.c +++ b/post/drivers/memory.c @@ -455,10 +455,30 @@ static int memory_post_tests (unsigned long start, unsi

Re: [U-Boot] [PATCH v2] sh: Add Renesas rsk7264 board

2011-06-01 Thread Nobuhiro Iwamatsu
Hi, Phil. Applied to next branch. Thanks! Nobuhiro 2011/6/1 Phil Edworthy : > The rsk7264 (also know as rsk2+sh7264) is an SH2A based board > with 64MB NAND flash and 64MB SDRAM. It is very similar to the > rsk7203 board. > > Signed-off-by: Phil Edworthy > Cc: Nobuhiro Iwamatsu > --- > Changes

[U-Boot] [PATCH]Uboot tool Makefile patch for Mac OSX Snow leopard

2011-06-01 Thread sungyeon
diff --git a/tools/Makefile b/tools/Makefile index 623f908..f794ef1 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -96,11 +96,11 @@ OBJ_FILES-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1.o #endif # Flattened device tree objects -LIBFDT_OBJ_FILES-y += fdt.o -LIBFDT_OBJ_FILES-y += fdt_ro.o -LIBFDT_OBJ

[U-Boot] [PATCH 3/5] Tegra2: Add more clock support

2011-06-01 Thread Simon Glass
This adds functions to enable/disable clocks and reset to on-chip peripherals. Signed-off-by: Simon Glass --- arch/arm/cpu/armv7/tegra2/Makefile |2 +- arch/arm/cpu/armv7/tegra2/ap20.c | 57 ++ arch/arm/cpu/armv7/tegra2/clock.c | 163 + arch/

[U-Boot] [PATCH 2/5] Tegra2: Add microsecond timer functions

2011-06-01 Thread Simon Glass
These functions provide access to the high resolution microsecond timer and tidy up a global variable in the code. Signed-off-by: Simon Glass --- arch/arm/cpu/armv7/tegra2/timer.c| 27 +-- arch/arm/include/asm/arch-tegra2/timer.h | 34 +

[U-Boot] [PATCH 1/5] Tegra2: Add bitfield access macros

2011-06-01 Thread Simon Glass
To use these, set things up like this: struct uart_ctlr *uart = (struct uart_ctlr *)UART_PA_START; #define UART_PA_START 0x6700 /* Physical address of UART */ #define UART_FBCON_RANGE 5:3 /* Bit range for the FBCON field */ enum { /* An enum

[U-Boot] [PATCH 4/5] Tegra2: add additional pin multiplexing features

2011-06-01 Thread Simon Glass
This adds an enum for each pin and some functions for changing the pin muxing setup. Signed-off-by: Simon Glass --- arch/arm/cpu/armv7/tegra2/Makefile|2 +- arch/arm/cpu/armv7/tegra2/pinmux.c| 54 ++ arch/arm/include/asm/arch-tegra2/pinmux.h | 156 +

[U-Boot] [PATCH 5/5] Tegra2: Use clock and pinmux functions to simplify code

2011-06-01 Thread Simon Glass
Signed-off-by: Simon Glass --- arch/arm/cpu/armv7/tegra2/ap20.c | 47 +--- arch/arm/include/asm/arch-tegra2/clk_rst.h | 39 ++- board/nvidia/common/board.c| 13 --- 3 files changed, 25 insertions(+), 74 deletions(-)

[U-Boot] [PATCH 0/5] Add bitfields, clock and pinmux functions to simplify code

2011-06-01 Thread Simon Glass
This patch series adds bitfield operations to the Tegra code and modifies the existing code to use them. These operations are highly desirable for many reasons which I attempt to explain here. U-Boot already has some basic macros for dealing with bitfields - setbits(), clrbits() and family. These

Re: [U-Boot] [PATCH] common/cmd_fdt.c: fix wrong data displayed in fdt print

2011-06-01 Thread Jerry Van Baren
On 06/01/2011 04:45 PM, Wolfgang Denk wrote: > Dear Haojian Zhuang, > > In message<1306137210-31942-1-git-send-email-haojian.zhu...@marvell.com> you > wrote: [snip] > Applied, thanks. > > Gerald, I hope this is OK with you? Yes. > Best regards, > Wolfgang Denk Thanks, gvb __

Re: [U-Boot] da850evm: u-boot does not start without UBL since commit f1d2b313c9eb6808d30c16a9eb5251240452a56c

2011-06-01 Thread Ben Gardiner
Hi Christian, On Wed, Jun 1, 2011 at 4:26 PM, Christian Riesch wrote: > On Wednesday, June 1, 2011, Ben Gardiner >> [...] >> Last I heard about this [1] the AIS signer was unable to handle the >> dynamic elf format resulting from the introduction of arm relocation. > > I am not completely sure a

Re: [U-Boot] [PATCH] common/cmd_fdt.c: fix wrong data displayed in fdt print

2011-06-01 Thread Wolfgang Denk
Dear Haojian Zhuang, In message <1306137210-31942-1-git-send-email-haojian.zhu...@marvell.com> you wrote: > From: Haojian Zhuang > > All data in dtb is big endian. Some ARM devices are little-endian. > In print_data(), it displays data with big-endian format. For ARM device, > data should be co

Re: [U-Boot] [PATCH V3 3/6] mpc85xx boards: initdram() cleanup/bugfix

2011-06-01 Thread Wolfgang Denk
Dear Becky, ping... In message <20110504215341.a3af4126...@gemini.denx.de> I wrote: > > In message <1292627879-9027-4-git-send-email-bec...@kernel.crashing.org> you > wrote: > > Correct initdram to use phys_size_t to represent the size of > > dram; instead of changing this all over the place, a

Re: [U-Boot] [PATCH] ARM: drop unsupported 'trab' board

2011-06-01 Thread Wolfgang Denk
Dear Albert, In message <1304275463-23048-1-git-send-email...@denx.de> I wrote: > The 'trab' board configuration is broken, and there is nobody who is > interested and willing to fix it. Drop it. > > This includes support for VFD displays which have always been used by > this board only. > > Si

Re: [U-Boot] da850evm: u-boot does not start without UBL since commit f1d2b313c9eb6808d30c16a9eb5251240452a56c

2011-06-01 Thread Christian Riesch
Hello Ben, Thank you very much for your response. On Wednesday, June 1, 2011, Ben Gardiner > On Wed, Jun 1, 2011 at 12:58 PM, Christian Riesch > wrote: >> I have tried to run recent versions of u-boot on the da850evm (AM1808 >> eXperimenter's Kit) board. Using Texas Instrument's User Boot Loader

Re: [U-Boot] [PATCH] sf: kick watchdog when polling

2011-06-01 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1302913525-18649-1-git-send-email-vap...@gentoo.org> you wrote: > From: Patrick Sestier > > The status polling can take a while, so make sure we kick the > watchdog after each successful poll. > > Signed-off-by: Patrick Sestier > Signed-off-by: Mike Frysinger

Re: [U-Boot] [u-boot][PATCH] net/net.c: Update ipaddr if the environment has changed

2011-06-01 Thread Wolfgang Denk
Dear Enric Balletbo i Serra, In message <1306911707-10564-1-git-send-email-eballe...@iseebcn.com> you wrote: > At least on ARM the ipaddr is only set in board_init_r function. The > problem is if ipaddr is not defined in environment importing another > environment defined don't update the ipaddr v

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

2011-06-01 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message you wrote: > Dear Wolfgang Denk. > > Please pull u-boot-sh/master. > > The following changes since commit 5d1ee00b1fe1180503f6dfc10e87a6c6e74778f3= > : > > .gitignore: update list of u-boot.* files and add *.bin (2011-05-22 > 23:46:26 +0200) > > are availa

Re: [U-Boot] Pull request: u-boot-arm/master

2011-06-01 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4de55027.3080...@aribaud.net> you wrote: > Hi Wolfgang, > > The following changes since commit 5d1ee00b1fe1180503f6dfc10e87a6c6e74778f3: > >.gitignore: update list of u-boot.* files and add *.bin (2011-05-22 > 23:46:26 +0200) > > are available in the git re

Re: [U-Boot] 8308 processor continously reboots with u-boot-2009.11-rc1

2011-06-01 Thread Wolfgang Denk
Dear Sharath Kurudi, In message you wrote: > >I am trying to port u-boot-2009.11-rc1 on 8308 processor. I get the > following prints on the terminal and the processor continuously resets Please update and use current code instead. Best regards, Wolfgang Denk -- DENX Software Engineering

Re: [U-Boot] What is the difference between /lib and /common

2011-06-01 Thread Wolfgang Denk
Dear Graeme Russ, In message <4de0d3c2.50...@gmail.com> you wrote: > > A quick question for you - What defines what belongs in /lib versus /common? /lib should be stuff that is called from (several, many) other files, while /common is architecture independent code like the central main loop, com

Re: [U-Boot] [GIT PULL] Please pull u-boot-mpc85xx.git

2011-06-01 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > The following changes since commit 7a82c208143bbc774ffcb4e53239410f867a0794: > > Prepare v2011.06-rc1 (2011-05-19 22:23:50 +0200) > > are available in the git repository at: > git://git.denx.de/u-boot-mpc85xx.git master > > Kumar Gala (1): >

Re: [U-Boot] Pull request: nand flash

2011-06-01 Thread Wolfgang Denk
Dear Scott Wood, In message <20110524210926.ga28...@schlenkerla.am.freescale.net> you wrote: > The following changes since commit 5d1ee00b1fe1180503f6dfc10e87a6c6e74778f3: > > .gitignore: update list of u-boot.* files and add *.bin (2011-05-22 > 23:46:26 +0200) > > are available in the git re

Re: [U-Boot] Pull request u-boot-blackfin.git

2011-06-01 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1306207946-5626-1-git-send-email-vap...@gentoo.org> you wrote: > The following changes since commit 5d1ee00b1fe1180503f6dfc10e87a6c6e74778f3: > > .gitignore: update list of u-boot.* files and add *.bin (2011-05-22 > 23:46:26 +0200) > > are available in the git

Re: [U-Boot] [PATCH] Move wepep250,delta,xsengine to scrapyard

2011-06-01 Thread Wolfgang Denk
Dear Marek Vasut, In message <1305935305-25929-1-git-send-email-marek.va...@gmail.com> you wrote: > Drop wepep250 board from MAINTAINERS and add all these three boards to > doc/README.scrapyard > > Signed-off-by: Marek Vasut > --- > MAINTAINERS |4 > doc/README.scrapyard |

Re: [U-Boot] [PATCH 0/5] Common AHCI and SDHCI drivers

2011-06-01 Thread Rob Herring
On 06/01/2011 02:25 PM, Wolfgang Denk wrote: > Dear Rob Herring, > > In message<1306955427-18940-1-git-send-email-robherri...@gmail.com> you > wrote: >> From: Rob Herring >> >> This patch series enables common SDHCI and AHCI drivers for other platforms >> to use. >> >> The AHCI driver is modified

[U-Boot] [PATCH v2] mx31ads: Use the new relocation scheme

2011-06-01 Thread Fabio Estevam
This fixes the MX31ADS build by using the new relocation scheme. Signed-off-by: Fabio Estevam --- Changes since v1: - Fixed lines over 80 characters. Build tested only. Do not have the hardware handy to test. board/freescale/mx31ads/mx31ads.c | 19 --- board/freescale/mx31ads/u

Re: [U-Boot] [PATCH] mx31ads: Use the new relocation scheme

2011-06-01 Thread Wolfgang Denk
Dear Fabio Estevam, In message <1306953993-13430-1-git-send-email-fabio.este...@freescale.com> you wrote: > This fixes the MX31ADS build by using the new relocation scheme. > > Signed-off-by: Fabio Estevam ... > +#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - > GENERATED_GBL_

Re: [U-Boot] [PATCH 5/5] scsi/ahci: add support for non-PCI controllers

2011-06-01 Thread Wolfgang Denk
Dear Rob Herring, In message <1306955427-18940-6-git-send-email-robherri...@gmail.com> you wrote: > From: Rob Herring > > Add support for AHCI controllers that are not PCI based. ... > + memset((void *)ataid, 0, sizeof(hd_driveid_t *) * AHCI_MAX_PORTS); This triggers a checkpatch error.

Re: [U-Boot] [PATCH 2/5] mmc: sdhci: rework Samsung specfic code

2011-06-01 Thread Wolfgang Denk
Dear Rob Herring, In message <1306955427-18940-3-git-send-email-robherri...@gmail.com> you wrote: > From: Rob Herring > > Move the register definitions into the sdhci.c file. Set the base > address from the board init code. > > The Samsung SDHCI controller has extra registers. Make them conditi

Re: [U-Boot] [PATCH 0/5] Common AHCI and SDHCI drivers

2011-06-01 Thread Wolfgang Denk
Dear Rob Herring, In message <1306955427-18940-1-git-send-email-robherri...@gmail.com> you wrote: > From: Rob Herring > > This patch series enables common SDHCI and AHCI drivers for other platforms > to use. > > The AHCI driver is modified to support non-PCI versions of the controller. > > Th

Re: [U-Boot] [PATCH v2 2/3] common/cmd_nand.c: add ifdef protection for do_bootm

2011-06-01 Thread Wolfgang Denk
Dear Mike Frysinger, In message <20110600.50651.vap...@gentoo.org> you wrote: > > actually, if you dont mind, i'd like to obsolete this patch with the one > below. what do you think ? Please submit it as a proper patch then. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

[U-Boot] [PATCH 5/5] scsi/ahci: add support for non-PCI controllers

2011-06-01 Thread Rob Herring
From: Rob Herring Add support for AHCI controllers that are not PCI based. Signed-off-by: Rob Herring --- common/cmd_scsi.c|6 +++- drivers/block/ahci.c | 62 +- 2 files changed, 60 insertions(+), 8 deletions(-) diff --git a/common/cmd

[U-Boot] [PATCH 4/5] scsi/ahci: ata id little endian fix

2011-06-01 Thread Rob Herring
From: Rob Herring The ata id string always needs swapping, not just on BE machines. Signed-off-by: Rob Herring --- drivers/block/ahci.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c index a3ca2dc..d431c5a 100644 --- a/driv

[U-Boot] [PATCH 3/5] mmc: sdhci: exit cmd on error status

2011-06-01 Thread Rob Herring
From: Rob Herring If the controller has an error condition, then stop polling for command complete and exit mmc_send_cmd. Signed-off-by: Rob Herring --- drivers/mmc/sdhci.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c ind

[U-Boot] [PATCH 1/5] mmc: copy s5p to sdhci

2011-06-01 Thread Rob Herring
From: Rob Herring The s5p mmc controller is a standard SDHCI controller with a few extra registers. So rename it to reflect that and so other platforms can use it. Signed-off-by: Rob Herring --- drivers/mmc/Makefile |3 +- drivers/mmc/s5p_mmc.c | 478 -

[U-Boot] [PATCH 2/5] mmc: sdhci: rework Samsung specfic code

2011-06-01 Thread Rob Herring
From: Rob Herring Move the register definitions into the sdhci.c file. Set the base address from the board init code. The Samsung SDHCI controller has extra registers. Make them conditional on CONFIG_MMC_S5P. Signed-off-by: Rob Herring --- arch/arm/include/asm/arch-s5pc1xx/mmc.h | 72 -

[U-Boot] [PATCH 0/5] Common AHCI and SDHCI drivers

2011-06-01 Thread Rob Herring
From: Rob Herring This patch series enables common SDHCI and AHCI drivers for other platforms to use. The AHCI driver is modified to support non-PCI versions of the controller. The Samsung s5p mmc driver appears to be the cleanest implementation of an SDHCI controller based on reviewing variou

[U-Boot] [PATCH v7 5/5] usbeth: asix: Do a fast init if link already established

2011-06-01 Thread Simon Glass
The Asix driver takes the link down during init() and then brings it back up. This commit changes this so that if a link has already been established successfully we simply check that the link is still good. This reduces the delay between successive network commands. Signed-off-by: Simon Glass -

[U-Boot] [PATCH v7 0/5] Add SMSC95XX support including MAC address control

2011-06-01 Thread Simon Glass
The SMSC95XX is a USB hub with a built-in Ethernet adapter. This adds support for this, using the USB host network framework. The framework is extended to support setting the hardware MAC address via an environment variable, since SMSC95XX chips often have no EEPROM attached, and thus no MAC addres

[U-Boot] [PATCH v7 4/5] Put common autoload code into auto_load() function

2011-06-01 Thread Simon Glass
This is a small clean-up patch. Signed-off-by: Simon Glass --- net/bootp.c | 75 +- 1 files changed, 32 insertions(+), 43 deletions(-) diff --git a/net/bootp.c b/net/bootp.c index 4db63cb..4774624 100644 --- a/net/bootp.c +++ b/net/bootp

[U-Boot] [PATCH v7 2/5] Add Ethernet hardware MAC address framework to usbnet

2011-06-01 Thread Simon Glass
Built-in Ethernet adapters support setting the mac address by means of a ethaddr environment variable for each interface (ethaddr, eth1addr, eth2addr). This adds similar support to the USB network side, using the names usbethaddr, usbeth1addr, etc. They are kept separate since we don't want a USB

[U-Boot] [PATCH v7 1/5] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-06-01 Thread Simon Glass
The SMSC95XX is a USB hub with a built-in Ethernet adapter. This adds support for this, using the USB host network framework. Changes for v2: - Coding style cleanup - Changed some comments as suggested Changes for v3: - Change turbo_mode to #define Changes for v4: - Dropped Tegra2 specific bit -

[U-Boot] [PATCH v7 3/5] Add documentation for USB Host Networking

2011-06-01 Thread Simon Glass
This describes what it is for, devices supported, how to enable for your board in U-Boot, setting up the server, and notes about MAC addresses. Changes for v6: - Adjust documentation file according to Wolfgang's comments Signed-off-by: Simon Glass --- doc/README.usb | 157 +

[U-Boot] [PATCH] mx31ads: Use the new relocation scheme

2011-06-01 Thread Fabio Estevam
This fixes the MX31ADS build by using the new relocation scheme. Signed-off-by: Fabio Estevam --- Build tested only. Do not have the hardware handy to test. board/freescale/mx31ads/mx31ads.c | 19 --- board/freescale/mx31ads/u-boot.lds | 42 ---

Re: [U-Boot] [PATCH v2 2/3] common/cmd_nand.c: add ifdef protection for do_bootm

2011-06-01 Thread McClintock Matthew-B29882
On Wed, Jun 1, 2011 at 11:59 AM, Mike Frysinger wrote: >> I don't tink this will work since if we undef CONFIG_CMD_BOOTM we >> don't even compile common/cmd_bootm.c. > > please double check the patch where it modifies the header Sorry. I did not get that far. Yes this looks good. ACK -M ___

Re: [U-Boot] [PATCH v2 2/3] common/cmd_nand.c: add ifdef protection for do_bootm

2011-06-01 Thread Scott Wood
On Wed, 1 Jun 2011 11:10:49 -0400 Mike Frysinger wrote: > On Tuesday, May 24, 2011 11:47:39 Matthew McClintock wrote: > > Right now we do not check if do_bootm is actually built into this > > u-boot. Instead check define and only call do_bootm if it's actually > > available. > > actually, if you

Re: [U-Boot] da850evm: u-boot does not start without UBL since commit f1d2b313c9eb6808d30c16a9eb5251240452a56c

2011-06-01 Thread Ben Gardiner
Hello Christian, On Wed, Jun 1, 2011 at 12:58 PM, Christian Riesch wrote: > I have tried to run recent versions of u-boot on the da850evm (AM1808 > eXperimenter's Kit) board. Using Texas Instrument's User Boot Loader (UBL) > to start u-boot (the default configuration for the EVM) everything works

Re: [U-Boot] [PATCH] SMDKV310: Fix incorrect conditional compilation for MIU linear mapping

2011-06-01 Thread Albert ARIBAUD
Hi Thomas, Le 31/05/2011 15:52, Thomas Abraham a écrit : > Fix the incorrect macro check for MIU linear mapping conditional compilation. > > Signed-off-by: Thomas Abraham > --- > board/samsung/smdkv310/mem_setup.S |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Upon Minkyu's re

Re: [U-Boot] [PATCH] SMDKV310: CPU fequency and mmc_pre_ratio modified

2011-06-01 Thread Albert ARIBAUD
Hi Chander, Le 26/05/2011 13:10, Chander Kashyap a écrit : > Modifies CPU Frequency to 1GHz and removes hard coding of mmc_pre_ratio for > MMC Channel2 in FSYS2 register. > > Signed-off-by: Chander Kashyap > --- > board/samsung/smdkv310/lowlevel_init.S |4 ++-- > 1 files changed, 2 insertio

Re: [U-Boot] [PATCHv4 4/4] armv7: Add support for ST-Ericsson U8500 href platform

2011-06-01 Thread Albert ARIBAUD
Hi John, Le 19/04/2011 22:42, John Rigby a écrit : > Minimal platform support to boot linux from SD. > > Supported devices/hw limited to external MMC/SD slot, > GPIO, I2C and minimal PRCMU. > > Signed-off-by: John Rigby > CC: Albert Aribaud > --- > This board support requires mmc driver patch set

Re: [U-Boot] [PATCHv4 3/4] I2C: Add driver for ST-Ericsson U8500 i2c

2011-06-01 Thread Albert ARIBAUD
Hi John, Le 19/04/2011 22:42, John Rigby a écrit : > From: Michael Brandt > > Signed-off-by: John Rigby > CC: Heiko Schocher > --- > v2: Incorporate suggestions from Heiko Schocher > v3: Fix line length problem reported by Heiko Schocher > v4: No changes just rebased to latest and included for com

Re: [U-Boot] [PATCHv4 2/4] armv7: Add ST-Ericsson u8500 arch

2011-06-01 Thread Albert ARIBAUD
Hi John, Le 19/04/2011 22:42, John Rigby a écrit : > Based on ST-Ericsson internal git repo. > > Signed-off-by: Mathieu Poirier > Signed-off-by: John Rigby > CC: Albert Aribaud > --- > v2: cleanup, mostly removal of unused defines > v3: remove prototype from sys_proto.h as suggested by Wolfgang >

Re: [U-Boot] Reg. CFI flash_init and hardware write protected devices

2011-06-01 Thread Frank Svendsbøe
On Wed, Jun 1, 2011 at 5:34 PM, Stefan Roese wrote: > Hi Frank, > > On Wednesday 01 June 2011 16:33:14 Frank Svendsbøe wrote: >> >> Simply because disabling write-protection is not impossible after >> >> installation. Our device will be located 3000m below sea level. >> > >> > I see. >> >> Hmm.. t

Re: [U-Boot] [PATCH V2] Kirkwood: boards cleanup for deprecated CONFIG_CMD_AUTOSCRIPT

2011-06-01 Thread Albert ARIBAUD
Le 01/06/2011 00:05, Albert ARIBAUD a écrit : > > Signed-off-by: Albert ARIBAUD > --- > Resent on behalf of the Marvell custodian > > V2: reworked to apply on top of current u-boot-arm/master > V1: initial submission > > include/configs/aspenite.h |1 - > include/configs/dkb.h |1 -

Re: [U-Boot] Pull request: u-boot-arm/master

2011-06-01 Thread Albert ARIBAUD
Hi John, Le 01/06/2011 00:29, John Rigby a écrit : > On Tue, May 31, 2011 at 2:31 PM, Albert ARIBAUD > wrote: >> Hi Wolfgang, >> >> The following changes since commit 5d1ee00b1fe1180503f6dfc10e87a6c6e74778f3: >> >>.gitignore: update list of u-boot.* files and add *.bin (2011-05-22 >> 23:46:2

[U-Boot] Auto insurance (6/1/2011)

2011-06-01 Thread David Gorman
Hello, Our company represents an online community of over 36 million people, most of which are located in the US and Canada. This advertising allows us to present our online community with a first choice when they search for anything on any of the major search engines. We seek a preferred source

Re: [U-Boot] [PATCH v2 2/3] common/cmd_nand.c: add ifdef protection for do_bootm

2011-06-01 Thread Mike Frysinger
On Wednesday, June 01, 2011 11:55:03 McClintock Matthew-B29882 wrote: > On Wed, Jun 1, 2011 at 10:10 AM, Mike Frysinger wrote: > > actually, if you dont mind, i'd like to obsolete this patch with the one > > below. what do you think ? > > > > diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c

Re: [U-Boot] [PATCH v2 2/3] common/cmd_nand.c: add ifdef protection for do_bootm

2011-06-01 Thread McClintock Matthew-B29882
On Wed, Jun 1, 2011 at 10:10 AM, Mike Frysinger wrote: > actually, if you dont mind, i'd like to obsolete this patch with the one > below.  what do you think ? > -mike > > diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c > index 18019d6..c5c169f 100644 > --- a/common/cmd_bootm.c > +++ b/common

[U-Boot] USB support on beagleboard xM

2011-06-01 Thread Christian Spielberger
Hi, we try to enable the ethernet-interface on the BeagleBoard xM (Rev B) and therefore we need to get the USB-HOST (EHCI) working. It seems that the internal communication to the host is working, but the interface to the external PHY isn't. We are pretty sure that the USBTLL should be bypasse

Re: [U-Boot] Reg. CFI flash_init and hardware write protected devices

2011-06-01 Thread Stefan Roese
Hi Frank, On Wednesday 01 June 2011 16:33:14 Frank Svendsbøe wrote: > >> Simply because disabling write-protection is not impossible after > >> installation. Our device will be located 3000m below sea level. > > > > I see. > > Hmm.. then you read my mind :) I meant to say "is not possible" and n

Re: [U-Boot] [u-boot][PATCH] net/net.c: Update ipaddr if the environment has changed

2011-06-01 Thread Mike Frysinger
Acked-by: Mike Frysinger -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] tools: fixed svn revision l10n-ism

2011-06-01 Thread Mike Frysinger
On Wednesday, June 01, 2011 11:02:30 Stephane Fillod wrote: > -if rev=`svn info 2>/dev/null` ; then > +if rev=`LANG=C svn info 2>/dev/null` ; then > rev=`echo "${rev}" | grep '^Revision' | awk '{print $NF}'` LANG=C wont fix the bug, just make it work in more cases. you need LC_ALL=C. -mike

Re: [U-Boot] [PATCH v2 2/3] common/cmd_nand.c: add ifdef protection for do_bootm

2011-06-01 Thread Mike Frysinger
On Tuesday, May 24, 2011 11:47:39 Matthew McClintock wrote: > Right now we do not check if do_bootm is actually built into this > u-boot. Instead check define and only call do_bootm if it's actually > available. actually, if you dont mind, i'd like to obsolete this patch with the one below. what

[U-Boot] [PATCH] tools: fixed svn revision l10n-ism

2011-06-01 Thread Stephane Fillod
Fixed a l10n-ism in svn revision retrieval. Signed-off-by: Stephane Fillod --- --- a/tools/setlocalversion +++ b/tools/setlocalversion @@ -31,7 +31,7 @@ fi # Check for svn and a svn repo. -if rev=`svn info 2>/dev/null` ; then +if rev=`LANG=C svn info 2>/dev/null` ; then rev=`echo "${r

Re: [U-Boot] Reg. CFI flash_init and hardware write protected devices

2011-06-01 Thread Frank Svendsbøe
Hi Stefan, On Tue, May 31, 2011 at 4:37 PM, Stefan Roese wrote: > Hi Frank, > > On Tuesday 31 May 2011 15:55:56 Frank Svendsbøe wrote: >> > Understood. But why don't you disable write-protection when you first >> > call flash_init()? And enable the write-protection after the chip is >> > correctl

Re: [U-Boot] [PATCH] post, arm, memorytest: add support for arm based boards

2011-06-01 Thread Mike Frysinger
On Wednesday, June 01, 2011 02:54:30 Heiko Schocher wrote: > Wolfgang Denk wrote: > > Heiko Schocher wrote: > >> --- a/post/drivers/memory.c > >> +++ b/post/drivers/memory.c > >> @@ -455,10 +455,30 @@ static int memory_post_tests (unsigned long start, > >> unsigned long size) > >> > >> __attribut

[U-Boot] BDI2000 mpc8315e

2011-06-01 Thread Eder Ruiz Maria
Hi, I try put a brakpoint in function cpu_init_f, but is not working my config in BDI is: 8315-uhet>reset - TARGET: processing user reset request - BDI asserts HRESET - Reset JTAG controller passed - Bypass check: 0x0001 => 0x0001 - JTAG exists check passed - IDCODE is 0x268B401D - BDI o

Re: [U-Boot] U-Boot: using nand write to flash an ubi image, ubi part fails

2011-06-01 Thread Ben Gardiner
Hi Lars On Wed, Jun 1, 2011 at 3:57 AM, Lars Michael wrote: > Hello, > > Using mkfs.ubifs and ubinize I have created an image with 5 volumes. In Linux > I could flash it using "ubiformat /dev/mtd1 -f /root/ubi.img" and attach it > using "ubiattach /dev/ubi_ctrl -m 1". It worked. > > In producti

[U-Boot] cache support make DaVinci dm365 quicker reading emmc

2011-06-01 Thread Raffaele Recalcati
Thanks to: commit c3330e9d6a11b6ead4a2346001338ce884b5832b Author: Heiko Schocher Date: Fri Sep 17 13:10:30 2010 +0200 ARM (ARM926ejs): add data cache support, tested on magnesium and tx25 board My 'Basi' board, based on DaVinci dm365, can read the uImage (1.5MB) in 0.7 sec (with ext2loa

[U-Boot] gen-atmel-mci driver bug?

2011-06-01 Thread Jan Pohanka
Hello, I'm playing with mmc/sd card on a custom board with at91sam9g20 processor. U-boot v2011.3 now runs well as I added support for AT45DB041 dataflash, which is used on my board. It's size is only 512kB so I need sd card for Linux image and rootfs. Unfortunately I still can't get mmc/sd su

[U-Boot] QUOTA CHECK

2011-06-01 Thread Liu, Chin
A quota check is running on your mailbox account.Your account limit is 378.54 MB of mailbox space used. At 380.86 MB you will not be able send mail or receive mail. This is done so that you have time to clean out some mail (likely from your Junk and/or Trash folders) and reclaim some free space

[U-Boot] [PATCH] Add RAM configuration independent of x-loader or CH

2011-06-01 Thread Simon Schwarz
OMAP3 relied on the memory config done by X-loader or Configuration Header. This has to be reworked for the implementation of a SPL. This patch configures RAM bank 0 if CONFIG_PRELOADER is set. Settings for Micron-RAM used by devkit8000 are added to mem.h Signed-off-by: Simon Schwarz -- diff --

Re: [U-Boot] U-Boot: using nand write to flash an ubi image, ubi part fails

2011-06-01 Thread Artem Bityutskiy
On Wed, 2011-06-01 at 00:57 -0700, Lars Michael wrote: > Hello, > > Using mkfs.ubifs and ubinize I have created an image with 5 volumes. > In Linux I could flash it using "ubiformat /dev/mtd1 -f /root/ubi.img" > and attach it using "ubiattach /dev/ubi_ctrl -m 1". It worked. OK. > In production I

Re: [U-Boot] Please add me to the discussions here. Thank you

2011-06-01 Thread Anatolij Gustschin
Hi, This is something you are supposed to do yourself. Please see [1] for more details. Best regards, Anatolij [1] http://lists.denx.de/mailman/listinfo/u-boot ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Please add me to the discussions here. Thank you

2011-06-01 Thread Vishweshwar Hiremath
-- Vishweshwar Hiremath. Sr. Software Engineer. NVIDIA Graphics Pvt. Ltd Pune. (India). ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] sh: Add support for SH2A freestanding build

2011-06-01 Thread Phil Edworthy
SH2A toolchains often only provide an fdpic version of libgcc. This can't be used with bare-metal software like U-Boot, so this patch provides the necessary functions extracted from libgcc. Signed-off-by: Phil Edworthy Cc: Nobuhiro Iwamatsu --- arch/sh/cpu/sh2/config.mk |2 +- arch/sh/lib/M

[U-Boot] [u-boot][PATCH] net/net.c: Update ipaddr if the environment has changed

2011-06-01 Thread Enric Balletbo i Serra
At least on ARM the ipaddr is only set in board_init_r function. The problem is if ipaddr is not defined in environment importing another environment defined don't update the ipaddr value. For example, suppose we've a default environment without net variables defined and we want to import an uEnv.

Re: [U-Boot] [PATCH] post, arm, memorytest: add support for arm based boards

2011-06-01 Thread Heiko Schocher
Hello Wolfgang, Wolfgang Denk wrote: > Dear Heiko Schocher, > > In message <1306909447-19603-2-git-send-email...@denx.de> you wrote: >> Signed-off-by: Heiko Schocher >> --- >> post/drivers/memory.c | 20 >> 1 files changed, 20 insertions(+), 0 deletions(-) >> >> diff --gi