Re: [U-Boot] [PATCH] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
On 09/28/2011 05:14 PM, Stefano Babic wrote: >> +#ifndef __ASSEMBLER__ >> +static inline void mx31_setup_weimcs(int cs, > Is there a reason to embed this function in imx-regs.h ? Why not in > ./arch/arm/cpu/arm1136/mx31/generic.c, where I think this function > belongs ? > I re-checked, it makes a

Re: [U-Boot] [PATCH v2] net: emaclite: Use dynamic allocation

2011-09-29 Thread Michal Simek
Mike Frysinger wrote: > Acked-by: Mike Frysinger > -mike Applied to git://git.denx.de/u-boot-microblaze.git emaclite branch Thanks, Michal -- Michal Simek, Ing. (M.Eng) w: www.monstr.eu p: +42-0-721842854 Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/ Microblaze U

[U-Boot] [PATCH 0/3] fix: regression in SMDK6400

2011-09-29 Thread Simon Schwarz
This is a fix for a regression introduced by my patch 55f429bb39614a16b1bacc9a8bea9ac01a60bfc8 to u-boot-ti/next The issue is described here: http://article.gmane.org/gmane.comp.boot-loaders.u-boot/108873 Simon Schwarz (3): nand: Remove static modifier from common functions nand: Add common

[U-Boot] [PATCH 1/3] nand: Remove static modifier from common functions

2011-09-29 Thread Simon Schwarz
Removed static modifiers from functions that were often duplicated in SPL implementations. Signed-off-by: Simon Schwarz --- drivers/mtd/nand/nand_base.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index

[U-Boot] [PATCH 2/3] nand: Add common functions to nand.h

2011-09-29 Thread Simon Schwarz
Functions often used in SPL are now part of nand.h. Signed-off-by: Simon Schwarz --- include/nand.h | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/include/nand.h b/include/nand.h index b4140794..980408a 100644 --- a/include/nand.h +++ b/include/nand.h @@ -135,9

[U-Boot] [PATCH 3/3] Fix regression in SMDK6400

2011-09-29 Thread Simon Schwarz
s3c64xx.c implemented its own nand_read_byte, nand_write_buf and nand_read_buf functions. This provoked a regression when these functions were made public by patch 55f429bb39614a16b1bacc9a8bea9ac01a60bfc8. This deletes these duplicated functions from s3c64xx.c and adds the generic implementations

[U-Boot] [PATCH V6 1/6] removed static from images in cmd_bootm.c

2011-09-29 Thread Simon Schwarz
This removes static modifier from images variable in cmd_bootm.c. Signed-off-by: Simon Schwarz --- V6 changes: - removed the mention of savebp from commit message --- common/cmd_bootm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_boo

[U-Boot] [PATCH V6 0/6] SPL Linux boot

2011-09-29 Thread Simon Schwarz
Adds direct Linux boot to SPL. It implements a spl export command to save ATAGS or FDT to NAND flash. The kernel image has to be in place for this! Changes in V5: - Rebased on u-boot-ti - fixed MAKEALL warnings and errors - adapted to general gpio interface Changes in V6: - Change old commit mess

[U-Boot] [PATCH V6 2/6] Add cmd_spl command

2011-09-29 Thread Simon Schwarz
This adds a spl command to the u-boot. Related config: CONFIG_CMD_CPL activate/deactivate the command CONFIG_CMD_SPL_NAND_OFS Offset in NAND to use Signed-off-by: Simon Schwarz --- V2 changes: CHG corrected bootm call. Now bootm is called with five parameters including A

[U-Boot] [PATCH V6 5/6] omap-common: Add NAND SPL linux booting

2011-09-29 Thread Simon Schwarz
This implements booting of Linux from NAND in SPL Related config parameters: CONFIG_SYS_NAND_SPL_KERNEL_OFFS Offset in NAND of direct boot kernel image to use in SPL CONFIG_SYS_SPL_ARGS_ADDR Address where the kernel boot arguments are expected - this is normally RAM-start +

[U-Boot] [PATCH V6 4/6] omap-common/spl: Add linux boot to SPL

2011-09-29 Thread Simon Schwarz
This adds Linux booting to the SPL This depends on CONFIG_MACH_TYPE patch by Igor Grinberg (http://article.gmane.org/gmane.comp.boot-loaders.u-boot/105809) Related CONFIGs: CONFIG_SPL_OS_BOOT Activates/Deactivates the OS booting feature CONFIG_SPL_OS_BOOT_KEY defines the IO-pin nu

[U-Boot] [PATCH V6 3/6] devkit8000/spl: init GPMC for dm9000 in SPL

2011-09-29 Thread Simon Schwarz
Linux crashes if the GPMC isn't configured for the dm9000. Signed-off-by: Simon Schwarz --- V2 changes: nothing V3 changes: nothing --- arch/arm/include/asm/omap_common.h |2 ++ board/timll/devkit8000/devkit8000.c | 31 +++ 2 files changed, 25 insertions(+),

[U-Boot] [PATCH V6 6/6] omap-common: fixes BSS overwriting problem

2011-09-29 Thread Simon Schwarz
spl_nand overwrote BSS section because it reads a whole block everytime. Now loads the block to spare area and just copy the needed junk to destination. Whole block read is necessary for ecc check! Signed-off-by: Simon Schwarz --- V2 changes: nothing V3 changes: nothing --- arch/arm/cpu/armv7/

Re: [U-Boot] omap3_beagle problem booting kernel on latest u-boot

2011-09-29 Thread Aneesh V
John, My primary suspect would be cache. But the fact that CONFIG_SYS_DCACHE_OFF is not helping is strange. Could you double-check this and also make sure that CONFIG_SYS_L2CACHE_OFF is enabled too. regards, Aneesh On Thursday 29 September 2011 11:50 AM, John Rigby wrote: > Aneesh, Dirk, Jason:

Re: [U-Boot] [PATCH] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Stefano Babic
On 09/29/2011 09:30 AM, Helmut Raiger wrote: > On 09/28/2011 05:14 PM, Stefano Babic wrote: >>> +#ifndef __ASSEMBLER__ >>> +static inline void mx31_setup_weimcs(int cs, >> Is there a reason to embed this function in imx-regs.h ? Why not in >> ./arch/arm/cpu/arm1136/mx31/generic.c, where I think thi

[U-Boot] [PATCH v3 4/4] usb: add USB support for Efika

2011-09-29 Thread Jana Rapava
This commit adds USB support for EfikaMX and EfikaSB. Signed-off-by: Jana Rapava Signed-off-by: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - introduce temporary variable in ulpi_write - whitespace changes Changes for v3: - add protection against mul

Re: [U-Boot] [PATCH] arm, davinci: add missing LSPC define for MMC/SD1

2011-09-29 Thread Heiko Schocher
Hello Laurence, Laurence Withers wrote: > On Wed, Sep 28, 2011 at 07:40:41AM +0200, Heiko Schocher wrote: >> diff --git a/arch/arm/include/asm/arch-davinci/hardware.h >> b/arch/arm/include/asm/arch-davinci/hardware.h >> index 24ae49d..a6cb07c 100644 >> --- a/arch/arm/include/asm/arch-davinci/hard

Re: [U-Boot] [PATCH] NAND: davinci: choose correct 1-bit h/w ECC reg

2011-09-29 Thread Laurence Withers
On Wed, Sep 28, 2011 at 12:58:45PM +0400, Sergei Shtylyov wrote: >You need to sign off your patch. Add this line to the changelog: > > Signed-off-by: Laurence Withers Thanks, I have reposted v2. Please ignore the posting with the unaltered subject line; I only realised after sending that I h

Re: [U-Boot] [PATCH v3 4/4] usb: add USB support for Efika

2011-09-29 Thread Marek Vasut
> This commit adds USB support for EfikaMX and EfikaSB. > > Signed-off-by: Jana Rapava > Signed-off-by: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes for v2: >              - introduce temporary variable in ulpi_write >              - whitespace changes > Changes for v3:

[U-Boot] [PATCH v4 4/4] usb: add USB support for Efika

2011-09-29 Thread Jana Rapava
This commit adds USB support for EfikaMX and EfikaSB. Signed-off-by: Jana Rapava Signed-off-by: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - introduce temporary variable in ulpi_write - whitespace changes Changes for v3: - add protection against multip

[U-Boot] [PATCH v2] NAND: davinci: choose correct 1-bit h/w ECC reg

2011-09-29 Thread Laurence Withers
In nand_davinci_readecc(), select the correct NANDFECC register based on CONFIG_SYS_NAND_CS rather than hardcoding the choice of NANDF1ECC. This allows 1-bit hardware ECC to work with chip select other than CS2. Note this now matches the usage in nand_davinci_enable_hwecc(), which already had the

[U-Boot] [PATCH] NAND: davinci: choose correct 1-bit h/w ECC reg

2011-09-29 Thread Laurence Withers
In nand_davinci_readecc(), select the correct NANDFECC register based on CONFIG_SYS_NAND_CS rather than hardcoding the choice of NANDF1ECC. This allows 1-bit hardware ECC to work with chip select other than CS2. Note this now matches the usage in nand_davinci_enable_hwecc(), which already had the

Re: [U-Boot] [PATCH] arm, davinci: add missing LSPC define for MMC/SD1

2011-09-29 Thread Laurence Withers
On Wed, Sep 28, 2011 at 07:40:41AM +0200, Heiko Schocher wrote: > diff --git a/arch/arm/include/asm/arch-davinci/hardware.h > b/arch/arm/include/asm/arch-davinci/hardware.h > index 24ae49d..a6cb07c 100644 > --- a/arch/arm/include/asm/arch-davinci/hardware.h > +++ b/arch/arm/include/asm/arch-davinc

Re: [U-Boot] [PATCH v4 4/4] usb: add USB support for Efika

2011-09-29 Thread Marek Vasut
> This commit adds USB support for EfikaMX and EfikaSB. > > Signed-off-by: Jana Rapava > Signed-off-by: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes for v2: >            - introduce temporary variable in ulpi_write >            - whitespace changes > Changes for v3: >   

[U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-29 Thread Jana Rapava
This commit adds USB support for EfikaMX and EfikaSB. Signed-off-by: Jana Rapava Signed-off-by: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - introduce temporary variable in ulpi_write - whitespace changes Changes for v3: - add protection against multiple

Re: [U-Boot] [U-Boot-Users] Wireless Ethernet

2011-09-29 Thread Wolfgang Denk
Dear Marek Vasut, In message <201109290335.42615.marek.va...@gmail.com> you wrote: > On Wednesday, September 28, 2011 09:21:57 AM Farooque, Fayaz wrote: > > Does u boot have support for wifi devices?. We need to have a setup in > > which kernel is booted through tftpboot with a wireless network >

[U-Boot] [2011.09-rc2] Fix for compile error with gcc3

2011-09-29 Thread rhabarber1848
Hi, compiling U-Boot 2011.09-rc2 with gcc-3.4.6 fails with this error: In file included from u-boot-2011.09-rc2/include/linux/compiler.h:40, from serial.c:29: u-boot-2011.09-rc2/include/linux/compiler-gcc.h:87:30: linux/compiler-gcc3.h: No such file or directory Adding compiler-

[U-Boot] [PATCH V2] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
mxc_setup_weimcs() and some macros are added to support the setup for i.MX31 WEIM chip selects. As a compromise between verbosity and readability an ASCII-art'ish bit comment is used instead of bitfields. All i.MX31 boards have been patched to use this approach using a helper program to verify the

[U-Boot] [Resend PATCH V2 (forgot generic.c)] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
setup_weimcs() and some macros are added to support the setup for i.MX31 WEIM chip selects. As a compromise between verbosity and readability an ASCII-art'ish bit comment is used instead of bitfields. All i.MX31 boards have been patched to use this approach using a helper program to verify the chan

[U-Boot] ucdragon.com

2011-09-29 Thread Alex
Preferred Domain Availability Notice: ucdragon.com will be listed for auction in a few days. This domain might be useful for you, since you own a domain similar to ucdragon.com To express interest in owning this domain, fill out the simple form here: http://LUSHSTYLE.COM/c5a380a4a667468a.30

Re: [U-Boot] [2011.09-rc2] Fix for compile error with gcc3

2011-09-29 Thread Scott McNutt
Hi rhabarber1848, A patch was recently submitted: http://patchwork.ozlabs.org/patch/116180 Thanks, --Scott rhabarber1848 wrote: > Hi, > > compiling U-Boot 2011.09-rc2 with gcc-3.4.6 fails with this error: > > In file included from u-boot-2011.09-rc2/include/linux/compiler.h:40, >

Re: [U-Boot] [U-Boot-Users] Wireless Ethernet

2011-09-29 Thread Farooque, Fayaz
I understand that. But it would be very handy in diskless booting where the bootloader has to get the kernel from a server. -Original Message- From: Wolfgang Denk [mailto:w...@denx.de] Sent: Thursday, September 29, 2011 5:30 PM To: Marek Vasut Cc: u-boot@lists.denx.de; Farooque, Fayaz S

Re: [U-Boot] [PATCH] ignore soc asm-offsets.s

2011-09-29 Thread Laurence Withers
On Mon, Sep 12, 2011 at 12:47:24AM -0400, Mike Frysinger wrote: > Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of > asm-offsets.s for SoC dirs, but missed adding it to the ignore > list which makes it show up in `git status`. > > Signed-off-by: Mike Frysinger > --- > .gitignore |

Re: [U-Boot] Regd U-Boot Architecture

2011-09-29 Thread Detlev Zundel
Hi Mayur, > Can anybody will provide me some documents/information/link related > with the U-Boot Architecture. > I'm just starting with U-Boot. If I google for "U-Boot" I find this as the first link: http://www.denx.de/wiki/U-Boot If you need more than the documents/information/links this prov

Re: [U-Boot] Is it necessary that uboot(mips) should read status register($12) before setting it

2011-09-29 Thread Detlev Zundel
Hi Bruce, > MIPS Uboot works OK.Part of the code is as below. Congratulations. Although I'm not sure what I'm congratulating on ;) > And my questions: > 1.read status register($12) and save value to $10,but don't use the value in > $10 to do anything. > Because uboot overwrite $10. > > 2.Is it

Re: [U-Boot] [Resend PATCH V2 (forgot generic.c)] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Stefano Babic
On 09/29/2011 02:25 PM, Helmut Raiger wrote: > setup_weimcs() and some macros are added to support the setup > for i.MX31 WEIM chip selects. As a compromise between verbosity > and readability an ASCII-art'ish bit comment is used instead of > bitfields. > All i.MX31 boards have been patched to use

Re: [U-Boot] [PATCH] MX51: vision2: Set global macros

2011-09-29 Thread Stefano Babic
On 09/29/2011 03:34 AM, Marek Vasut wrote: > On Wednesday, September 28, 2011 12:09:17 PM Stefano Babic wrote: >> Adapt vision2 to the current u-boot version. Drop >> own macros to set global data and use the common ones. >> >> Signed-off-by: Stefano Babic >> --- >> include/configs/vision2.h |

Re: [U-Boot] [Resend PATCH V2 (forgot generic.c)] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
On 09/29/2011 03:21 PM, Stefano Babic wrote: > >> >> static u32 mx31_decode_pll(u32 reg, u32 infreq) >> { >> @@ -126,6 +128,13 @@ void mx31_set_pad(enum iomux_pins pin, u32 config) >> >> } >> >> +void mxc_setup_weimcs(int cs, const struct mxc_weimcs *weimcs) >> +{ >> +writel(weimcs->upper

Re: [U-Boot] [Resend PATCH V2 (forgot generic.c)] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Stefano Babic
On 09/29/2011 04:01 PM, Helmut Raiger wrote: > On 09/29/2011 03:21 PM, Stefano Babic wrote: >> >>> >>> static u32 mx31_decode_pll(u32 reg, u32 infreq) >>> { >>> @@ -126,6 +128,13 @@ void mx31_set_pad(enum iomux_pins pin, u32 config) >>> >>> } >>> >>> +void mxc_setup_weimcs(int cs, const struc

Re: [U-Boot] [U-Boot-Users] Wireless Ethernet

2011-09-29 Thread Marek Vasut
On Thursday, September 29, 2011 02:36:04 PM Farooque, Fayaz wrote: > I understand that. But it would be very handy in diskless booting where the > bootloader has to get the kernel from a server. > Why not use kexec then ? ___ U-Boot mailing list U-Boot@

Re: [U-Boot] [PATCH] ignore soc asm-offsets.s

2011-09-29 Thread Mike Frysinger
On Thursday, September 29, 2011 08:40:33 Laurence Withers wrote: > On Mon, Sep 12, 2011 at 12:47:24AM -0400, Mike Frysinger wrote: > > Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of > > asm-offsets.s for SoC dirs, but missed adding it to the ignore > > list which makes it show up i

Re: [U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-29 Thread Marek Vasut
On Thursday, September 29, 2011 01:09:57 PM Jana Rapava wrote: > This commit adds USB support for EfikaMX and EfikaSB. > > Signed-off-by: Jana Rapava > Signed-off-by: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes for v2: > - introduce temporary variable in ulpi_write >

[U-Boot] [PATCH V3] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
setup_weimcs() and some macros are added to support the setup for i.MX31 WEIM chip selects. As a compromise between verbosity and readability an ASCII-art'ish bit comment is used instead of bitfields. All i.MX31 boards have been patched to use this approach using a helper program to verify the chan

Re: [U-Boot] altbootcmd and failbootcmd

2011-09-29 Thread Thomas Johnson
Thanks for all your help on this. My board has on it some static Magneto Ram and I have placed the bootcounter in this, I have it all working fine now thanks. Rgds Tom Johnson -Original Message- From: Wolfgang Denk [mailto:w...@denx.de] Sent: 28 September 2011 10:01 PM To: Kim Phillips

Re: [U-Boot] [PATCH V3] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
forget the patch, I'll resend. ... clearly a matter of under caffeination. Helmut -- Scanned by MailScanner. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V3] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Stefano Babic
On 09/29/2011 05:11 PM, Helmut Raiger wrote: > > forget the patch, I'll resend. > > ... clearly a matter of under caffeination. > Do not worry, I have the same problem... Stefano -- = DENX Software Engineering GmbH, MD:

Re: [U-Boot] omap3_beagle problem booting kernel on latest u-boot

2011-09-29 Thread John Rigby
On Thu, Sep 29, 2011 at 3:09 AM, Aneesh V wrote: > John, > > My primary suspect would be cache. But the fact that > CONFIG_SYS_DCACHE_OFF is not helping is strange. Could you double-check > this and also make sure that CONFIG_SYS_L2CACHE_OFF is enabled too. > Ok, verified that CONFIG_SYS_DCACHE_O

[U-Boot] [Resend PATCH V3] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Helmut Raiger
setup_weimcs() and some macros are added to support the setup for i.MX31 WEIM chip selects. As a compromise between verbosity and readability an ASCII-art'ish bit comment is used instead of bitfields. All i.MX31 boards have been patched to use this approach using a helper program to verify the chan

Re: [U-Boot] [PATCH 0/3] fix: regression in SMDK6400

2011-09-29 Thread Scott Wood
On 09/29/2011 02:44 AM, Simon Schwarz wrote: > This is a fix for a regression introduced by my patch > 55f429bb39614a16b1bacc9a8bea9ac01a60bfc8 to u-boot-ti/next > > The issue is described here: > http://article.gmane.org/gmane.comp.boot-loaders.u-boot/108873 > > Simon Schwarz (3): > nand: Rem

Re: [U-Boot] [2011.09-rc2] Fix for compile error with gcc3

2011-09-29 Thread Marek Vasut
On Thursday, September 29, 2011 02:13:28 PM rhabarber1848 wrote: > Hi, > > compiling U-Boot 2011.09-rc2 with gcc-3.4.6 fails with this error: > > In file included from u-boot-2011.09-rc2/include/linux/compiler.h:40, > from serial.c:29: > u-boot-2011.09-rc2/include/linux/compiler-

Re: [U-Boot] [RFC PATCH] arm: provide a CONFIG flag for disabling relocation

2011-09-29 Thread Andreas Bießmann
Dear Albert, Am 21.09.2011 um 14:31 schrieb Andreas Bießmann: > Dear Albert, > > Am Mi 21 Sep 2011 14:03:09 CEST schrieb Albert ARIBAUD: >> Le 21/09/2011 13:20, Andreas Bießmann a écrit : >>> Dear "GROYER, Anthony", >>> Dear Albert, >>> >>> Am Mi 21 Sep 2011 12:51:33 CEST schrieb Albert ARIBAUD

Re: [U-Boot] [PATCH V3] part: show efi partition name when print out partition info

2011-09-29 Thread Marek Vasut
On Thursday, September 29, 2011 04:14:40 AM Lei Wen wrote: > Hi Wolfgang, > > On Thu, Sep 8, 2011 at 12:11 PM, Lei Wen wrote: > > Previous output: [...] > > How about merge this patch included in 2011.09 release? :) > > Thanks, > Lei Hi Lei, I can't speak for Wolfgang, but I think we're pre

Re: [U-Boot] Is it necessary that uboot(mips) should read status register($12) before setting it

2011-09-29 Thread Marek Vasut
On Wednesday, September 28, 2011 11:09:05 AM RdrouterUboot Router wrote: > Hi all, > > MIPS Uboot works OK.Part of the code is as below. > > And my questions: > 1.read status register($12) and save value to $10,but don't use the value > in $10 to do anything. > Because uboot overwrite $10. > > 2

[U-Boot] [PATCH v6 4/4] usb: add USB support for Efika

2011-09-29 Thread Jana Rapava
This commit adds USB support for EfikaMX and EfikaSB. Signed-off-by: Jana Rapava Signed-off-by: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic Acked-by: Marek Vasut --- Changes for v2: - introduce temporary variable in ulpi_write - whitespace changes Changes for v3: - add protect

Re: [U-Boot] [PATCH v6 4/4] usb: add USB support for Efika

2011-09-29 Thread Marek Vasut
On Thursday, September 29, 2011 06:44:25 PM Jana Rapava wrote: > This commit adds USB support for EfikaMX and EfikaSB. > > Signed-off-by: Jana Rapava > Signed-off-by: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > > Acked-by: Marek Vasut You're not supposed to resend with only ackedby

Re: [U-Boot] [U-Boot-Users] Wireless Ethernet

2011-09-29 Thread Wolfgang Denk
Dear "Farooque, Fayaz", Please do not top post / full quote. In message you wrote: > I understand that. But it would be very handy in diskless booting where the > bootloader has to get the kernel from a server. Boot a minimal Linux kernel, and then use kexec. Best regards, Wolfgang Denk

Re: [U-Boot] [Resend PATCH V2 (forgot generic.c)] mx31: provide readable WEIM CS accessor

2011-09-29 Thread Wolfgang Denk
Dear Helmut Raiger, In message <4e847a4e.5000...@hale.at> you wrote: > > Do you really thing this is more readable: Not only that, butthe compiler has much better chances for type checking, too. > It seems pretty clumsy to me, but for sure a matter of taste. Then please go on and fix. Best reg

Re: [U-Boot] omap3_beagle problem booting kernel on latest u-boot

2011-09-29 Thread Aneesh V
John, On Thursday 29 September 2011 09:00 PM, John Rigby wrote: On Thu, Sep 29, 2011 at 3:09 AM, Aneesh V wrote: John, My primary suspect would be cache. But the fact that CONFIG_SYS_DCACHE_OFF is not helping is strange. Could you double-check this and also make sure that CONFIG_SYS_L2CACHE_O

[U-Boot] [STATUS] v2011.09 released, Merge Window is OPEN

2011-09-29 Thread Wolfgang Denk
Hello all, U-Boot v2011.09 has been released and is available from the git repository and the FTP server. KNOWN ISSUES: - Some ARM boards / drivers still have problems when caches are enabled and/or have therefore disabled caches in their config files. - We still have not found a new network

Re: [U-Boot] [STATUS] Ready for -rc2?

2011-09-29 Thread Jason
Albert, Prafulla, On Wed, Sep 28, 2011 at 08:42:42AM +0200, Albert ARIBAUD wrote: > Hi all, > > On 21/09/2011 23:34, Jason wrote: > >Albert, Prafulla, > > > >On Wed, Sep 21, 2011 at 11:00:42PM +0200, Wolfgang Denk wrote: > >>In message<20110920215703.gb7...@titan.lakedaemon.net> you wrote: > >>>

[U-Boot] Pull request u-boot-blackfin.git (sf branch)

2011-09-29 Thread Mike Frysinger
The following changes since commit 1d5e7fb403257d62f0f2419cb83fdf6b0f02f215: Prepare v2011.09 (2011-09-29 21:11:15 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git sf All have been posted to the list already. Shaohui Xie (1): sf: eon: add suppor

[U-Boot] Pull request u-boot-blackfin.git (post branch)

2011-09-29 Thread Mike Frysinger
The following changes since commit 1d5e7fb403257d62f0f2419cb83fdf6b0f02f215: Prepare v2011.09 (2011-09-29 21:11:15 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git post All have been posted to the list already. Mike Frysinger (6): Blackfin: bf53

Re: [U-Boot] [PATCH V4] console: Implement pre-console buffer

2011-09-29 Thread Graeme Russ
Hi Vadim, On Wed, Sep 28, 2011 at 12:55 AM, Vadim Bendebury wrote: > On Tue, Sep 27, 2011 at 4:22 AM, Graeme Russ wrote: >> Hi Vadim, >> >> On 27/09/11 08:50, Vadim Bendebury wrote: >>> On Wed, Aug 31, 2011 at 5:58 AM, Graeme Russ wrote: [snip] >> Typically, the pre-console buffer would exist

Re: [U-Boot] [PATCH V4] console: Implement pre-console buffer

2011-09-29 Thread Vadim Bendebury
On Thu, Sep 29, 2011 at 4:15 PM, Graeme Russ wrote: > Hi Vadim, > > On Wed, Sep 28, 2011 at 12:55 AM, Vadim Bendebury > wrote: >> On Tue, Sep 27, 2011 at 4:22 AM, Graeme Russ wrote: >>> Hi Vadim, >>> >>> On 27/09/11 08:50, Vadim Bendebury wrote: On Wed, Aug 31, 2011 at 5:58 AM, Graeme Russ

Re: [U-Boot] [PATCH V4] console: Implement pre-console buffer

2011-09-29 Thread Graeme Russ
Hi Vladim On Fri, Sep 30, 2011 at 9:39 AM, Vadim Bendebury wrote: > On Thu, Sep 29, 2011 at 4:15 PM, Graeme Russ wrote: >> Hi Vadim, >> >> On Wed, Sep 28, 2011 at 12:55 AM, Vadim Bendebury >> wrote: >>> On Tue, Sep 27, 2011 at 4:22 AM, Graeme Russ wrote: Hi Vadim, On 27/09/11 0

Re: [U-Boot] [PATCH V3] part: show efi partition name when print out partition info

2011-09-29 Thread Lei Wen
On Fri, Sep 30, 2011 at 12:16 AM, Marek Vasut wrote: > On Thursday, September 29, 2011 04:14:40 AM Lei Wen wrote: >> Hi Wolfgang, >> >> On Thu, Sep 8, 2011 at 12:11 PM, Lei Wen wrote: >> > Previous output: > > [...] > >> >> How about merge this patch included in 2011.09 release? :) >> >> Thanks,

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

2011-09-29 Thread Lars Michael
--- On Thu, 29/9/11, Aaron Williams wrote: > From: Aaron Williams > Subject: Re: [U-Boot] U-Boot: using nand write to flash an ubi image, ubi > part fails > To: u-boot@lists.denx.de > Cc: "Lars Michael" > Date: Thursday, 29 September, 2011, 4:11 > Hi Lars, > > Were you ever successful in getti

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

2011-09-29 Thread Lars Michael
--- On Thu, 29/9/11, Matthew L. Creech wrote: > On Wed, Jun 1, 2011 at 3:57 AM, Lars > Michael wrote: > > 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

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

2011-09-29 Thread Aaron Williams
Thanks. I finally found the problem on our end and now I have ubifs working beautifully. -Aaron On 09/29/2011 08:33 PM, Lars Michael wrote: > --- On Thu, 29/9/11, Aaron Williams wrote: >> From: Aaron Williams >> Subject: Re: [U-Boot] U-Boot: using nand write to flash an ubi image, ubi >> part

Re: [U-Boot] [PATCH 6/8] arm, davinci, am1808: add lowlevel functions for booting from NOR

2011-09-29 Thread Christian Riesch
Heiko, On Thu, Sep 15, 2011 at 7:59 AM, Heiko Schocher wrote: > Signed-off-by: Heiko Schocher > Cc: Paulraj Sandeep > Cc: Albert ARIBAUD > --- >  arch/arm/cpu/arm926ejs/davinci/Makefile            |    1 + >  arch/arm/cpu/arm926ejs/davinci/am1808_lowlevel.c   |  428 > >