[U-Boot] [PATCH]powerpc/85xx: Make inclusion of USB device fixup conditional

2011-11-07 Thread Ramneek Mehresh
Include call to usb device-fixup only when CONFIG_HAS_FSL_DR_USB is defined for the platform - P1020RDB, P1010RDB, P1020-PC Signed-off-by: Ramneek Mehresh --- board/freescale/p1010rdb/p1010rdb.c |2 ++ board/freescale/p1_p2_rdb/p1_p2_rdb.c |2 ++ board/freescale/p1_p2_rdb_p

Re: [U-Boot] [PATCH v2 3/3] image: Allow images to indicate they're loadable at any address

2011-11-07 Thread Simon Glass
Hi Nicolas, On Mon, Nov 7, 2011 at 7:51 PM, Nicolas Pitre wrote: > On Mon, 7 Nov 2011, Simon Glass wrote: > >> On Mon, Nov 7, 2011 at 4:35 PM, Nicolas Pitre wrote: >> >> > On Tue, 8 Nov 2011, Wolfgang Denk wrote: >> > >> >> Dear Nicolas Pitre, >> >> >> >> > We don't want any hardcoded architectu

Re: [U-Boot] [PATCH] sh: avoid multiple definition errors with cache funcs

2011-11-07 Thread Nobuhiro Iwamatsu
Applied, thanks. Best regards, Nobuhiro 2011/10/27 Mike Frysinger : > Recent builds for SH4 boards fail with a lot of errors like: >        cmd_mem.o: In function 'dcache_invalid_range': >        include/asm/cache.h:25: multiple definition of 'dcache_invalid_range' >        include/asm/cache.h:

Re: [U-Boot] [PATCH] sh7763rdp: change config for new sh_eth driver

2011-11-07 Thread Nobuhiro Iwamatsu
Applied, thanks. Best regards, Nobuhiro 2011/10/31 Yoshihiro Shimoda : > The new sh_eth driver uses the phy driver. So, this patch enables it. > > Signed-off-by: Yoshihiro Shimoda > --- >  include/configs/sh7763rdp.h |    4 >  1 files changed, 4 insertions(+), 0 deletions(-) > > diff --g

Re: [U-Boot] [PATCH] sh: espt: change config for new sh_eth driver

2011-11-07 Thread Nobuhiro Iwamatsu
Applied, thanks. Best regards, Nobuhiro 2011/10/31 Yoshihiro Shimoda : > The new sh_eth driver uses the phy driver. So, this patch enables it. > > Signed-off-by: Yoshihiro Shimoda > --- >  include/configs/espt.h |    4 >  1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/

[U-Boot] [PATCH] arm: a320evb: define mach-type in board config file

2011-11-07 Thread Andrew Chen
From: Yan-Pai Chen MACH_TYPE_FARADAY was dropped from mach-types.h. Add it back to board config file. Signed-off-by: Yan-Pai Chen --- board/faraday/a320evb/a320evb.c |1 - include/configs/a320evb.h |6 ++ 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/board/fa

[U-Boot] Starting U-boot from RAM in FPGA custom board

2011-11-07 Thread pcuser p
Hi, I am a newbie to bootloaders, My requirement is to port u-boot + linux to a FPGA board (ARM926EJS + video Coprocessors + basic peripherals (uart,ethernet)) I am basically trying to start u-boot from RAM since flash is already locked with fpga code. I happened to see some of mail chains about q

[U-Boot] [PATCH] sh: Add updating method of SPI ROM to README of sh7757lcr

2011-11-07 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu --- doc/README.sh7757lcr | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/doc/README.sh7757lcr b/doc/README.sh7757lcr index 49fea50..78a9b8f 100644 --- a/doc/README.sh7757lcr +++ b/doc/README.sh7757lcr @@ -61,3 +61,17 @@ You c

[U-Boot] [PATCH] [x86] Fix how the location of the realmode and bios blobs are calculated

2011-11-07 Thread Gabe Black
There are two blobs embedded into the u-boot image which are linked to run at an address which is different from where they actually end up in the ROM, one called "realmode" and one called "bios". There are realmode_setup and bios_setup functions which prepare those blobs by copying them into the l

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

2011-11-07 Thread Wolfgang Denk
Dear Kim Phillips, In message <2007184242.d07f6073aa57d2b24eece...@freescale.com> you wrote: > Wolfgang, > > Please pull some mpc83xx updates (mostly checkpatch cleanups): > > > The following changes since commit 688d8f33f27ea596efb6632388ee60360996eed0: > > Merge branch 'master' of git:

[U-Boot] [PATCH] [x86] Don't relocate symbols which point to things that aren't relocated

2011-11-07 Thread Gabe Black
This change adds an upper bound for symbols which are fixed up after u-boot is relocated into RAM. This way portions that are left at their original location can be referred to without having to manually fix up any pointers. Signed-off-by: Gabe Black --- arch/x86/lib/bios_setup.c |7 ++-

Re: [U-Boot] Code relocation in U-boot.

2011-11-07 Thread Sandeep Sharma
Hi, You are absolutely right. I am talking about ARM code located in start.S file. I am not able to figure out from from the referred link. I also consulted " http://infocenter.arm.com/help/topic/com.arm.doc.ihi0044d/IHI0044D_aaelf.pdf " which talks about arm code relocation but it is also not hel

Re: [U-Boot] [PATCH] [x86] Don't relocate symbols which point to things that aren't relocated

2011-11-07 Thread Gabe Black
This and my previous patch are quite related and could have been combined into a series or even a single patch. I didn't see this one until I'd already sent the other one, though. Even though keeping them separate was unintentional, these are doing slightly different things. The first one fixes a b

Re: [U-Boot] [PATCH 07/12] OMAP3 SPL: Rework memory initalization and devkit8000 support

2011-11-07 Thread Igor Grinberg
Hi Tom, On 11/07/11 22:05, Tom Rini wrote: > This changes to making the board be responsible for providing the > memory initialization timings in SPL and converts the devkit8000 > to this framework. In SPL we try and initialize both CS0 and CS1. > > Cc: Frederik Kriewitz > Signed-off-by: Tom Ri

[U-Boot] [PATCH v2] [x86] Don't relocate symbols which point to things that aren't relocated

2011-11-07 Thread Gabe Black
This change adds an upper bound for symbols which are fixed up after u-boot is relocated into RAM. This way portions that are left at their original location can be referred to without having to manually fix up any pointers. Signed-off-by: Gabe Black --- Changes in v2: Merge in a fix in a later p

Re: [U-Boot] [PATCH] mvgbe: remove setting of ethaddr within the driver

2011-11-07 Thread Prafulla Wadaskar
> -Original Message- > From: Michael Walle [mailto:mich...@walle.cc] > Sent: Tuesday, November 08, 2011 3:38 AM > To: u-boot@lists.denx.de > Cc: Michael Walle; Mike Frysinger; Valentin Longchamp; Eric > Cooper; Jason Cooper; Siddarth Gore; Albert ARIBAUD; Prafulla > Wadaskar; Simon Guinot

Re: [U-Boot] [PATCH 2/2] mvgbe: fix network device indices

2011-11-07 Thread Prafulla Wadaskar
> -Original Message- > From: Mike Frysinger [mailto:vap...@gentoo.org] > Sent: Saturday, November 05, 2011 4:37 AM > To: Prafulla Wadaskar > Cc: Michael Walle; u-boot@lists.denx.de; Wolfgang Denk > Subject: Re: [PATCH 2/2] mvgbe: fix network device indices > > On Friday 04 November 2011

[U-Boot] [PATCH] powerpc/85xx: Fix warning for USB device-fixup

2011-11-07 Thread Ramneek Mehresh
Fix USB device-fixup warning "node not found". This was occuring because of static nature of start_offset variable Static start_offset was storing offset of last node modified, and was becoming issue if node fixup is carried multiple times, resulting in "node not found" warning Signed-off-by: Ram

Re: [U-Boot] [PATCH 08/12] OMAP3 SPL: Add identify_pop_memory function

2011-11-07 Thread Igor Grinberg
On 11/07/11 22:05, Tom Rini wrote: > A number of boards are populated with a PoP chip for both DDR and NAND > memory. So to determine DDR timings the NAND chip needs to be probed > and mfr/id returned to the board to make decisions with. All of this > code is put into spl_pop_probe.c and controll

Re: [U-Boot] [PATCH 2/2] mvgbe: fix network device indices

2011-11-07 Thread Prafulla Wadaskar
> -Original Message- > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] > Sent: Saturday, November 05, 2011 3:24 PM > To: Mike Frysinger > Cc: Prafulla Wadaskar; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 2/2] mvgbe: fix network device > indices > > Le 05/11/2011 00:06, M

Re: [U-Boot] [PATCH 09/12] OMAP3: Add SPL support to Beagleboard

2011-11-07 Thread Igor Grinberg
On 11/07/11 22:05, Tom Rini wrote: > This introduces 200MHz Micron parts timing information based on x-loader > to . The memory init logic is also based on what > x-loader does in these cases. Note that while previously u-boot would > be flashed in with SW ECC in this case it now must be flashed

<    1   2   3