Re: [U-Boot] U-boot resets when booting Linux kernel

2008-11-27 Thread Simon Boman
2008/11/26 Jerry Van Baren <[EMAIL PROTECTED]>: > Simon Boman wrote: >> >> 2008/11/24 Simon Boman <[EMAIL PROTECTED]>: > > [snip] > >>> I can add that this occur after "Delete the old LMB reservation" in >>> bootm.c and the function fdt_resize(of_flat_tree) is executing. The >>> problem as I have u

Re: [U-Boot] Installing Linux kernel, nothing to execute in RAM...

2008-11-27 Thread Simon Boman
2008/11/26 Simon Boman <[EMAIL PROTECTED]>: > Hi! > > I have a modifed MPC8360 platform with a U-boot git-version from October. > Now I'm trying to install a Linux kernel and everything looks fine > until it starts to execute the kernel in RAM, there is only some bad > assembler instructions and th

Re: [U-Boot] Can I run ELDK on Cygwin

2008-11-27 Thread Wolfgang Denk
Dear "Diptopal Basu", In message <[EMAIL PROTECTED]> you wrote: > > I am new to U boot and my ultimate goal is to port uC Linux on an ARM 9T > based board . I want to work on the cygwin environment . Is it possible to > use ELDK on Cygwin ? No, you cannot. The ELDK needs a Linux host environmen

Re: [U-Boot] IRAM

2008-11-27 Thread Anatolij Gustschin
kishore choudhari wrote: > hi all, > I want to know some details on IRAM . can any body please tell me > what is IRAM , and any technical details on it. http://www.catb.org/~esr/faqs/smart-questions.html http://acronyms.thefreedictionary.com/iram You probably mean "Intelligent RAM"? The

Re: [U-Boot] Getting a message no rule to make target .

2008-11-27 Thread Remy Bohmer
Hello Diptopal, > $ make at91rm9200_net_config > I get the message "make: *** No rule to make target > `at91rm9200_net_config'. Stop." > > Is this an error I might get even if I was using the right environment too . Uuh, it looks like this configuration really does not exist... There is no boar

Re: [U-Boot] grep for message

2008-11-27 Thread michael
Hi, Alessandro Rubini wrote: >> It is nessary a grep with the full message? There are a lot of situation >> when the grep is impossible. >> > > FWIW, I think it's not important to have the message in one line. > > I prefer to grep for the message in the object files. This is > especially usef

[U-Boot] [RFC PATCH V2 0/2] Prepare USB layer to support ehci core

2008-11-27 Thread Michael Trimarchi
Prepare usb layer to support ehci core Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- common/cmd_usb.c |2 +- common/usb.c |2 +- include/usb.h | 19 +++ include/usb_defs.h | 10 ++ 4 files changed, 23 insertions(+), 10 deletions(-) dif

[U-Boot] [RFC PATCH V2 2/2] Add Freescale ehci USB support

2008-11-27 Thread Michael Trimarchi
Add Freescale ehci USB support Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- drivers/usb/Makefile |2 + drivers/usb/usb_ehci_fsl.c | 99 drivers/usb/usb_ehci_fsl.h | 82 3 files changed, 18

[U-Boot] [PATCH] Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX module.

2008-11-27 Thread Dirk Eibach
Signed-off-by: Dirk Eibach <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |1 + Makefile |3 + board/gdsys/gdppc440etx/Makefile | 51 board/gdsys/gdppc440etx/config.mk | 44 +++ bo

[U-Boot] EHCI patchset

2008-11-27 Thread michael
Hi, I just cleanup the works done by Tor Krill and other peaple. I don't have the freescale board to test the patchset. I will test it in next days maybe over an ixp465 board. The EHCI patchset can be applied to the last u-boot-usb tree. Michael ___

Re: [U-Boot] EHCI patchset

2008-11-27 Thread Stefan Roese
Hi Michael, On Thursday 27 November 2008, michael wrote: > I just cleanup the works done by Tor Krill and other peaple. Thanks a lot for your work here. Really appreciated. > I don't > have the freescale board to test the > patchset. I will test it in next days maybe over an ixp465 board. The >

Re: [U-Boot] [RFC PATCH V2 1/2] Add USB ehci core files

2008-11-27 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:34 Thu 27 Nov , Michael Trimarchi wrote: > Add USB ehci core files > > Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> > > --- > drivers/usb/usb_ehci.h | 120 > drivers/usb/usb_ehci_core.c | 635 > +++ > drivers/usb/usb_ehci

Re: [U-Boot] [RFC PATCH V2 2/2] Add Freescale ehci USB support

2008-11-27 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:35 Thu 27 Nov , Michael Trimarchi wrote: > Add Freescale ehci USB support > > Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> > > --- > drivers/usb/Makefile |2 + > drivers/usb/usb_ehci_fsl.c | 99 > > drivers/usb/usb_ehci_

Re: [U-Boot] [PATCH] usbtty/omap: update to current API

2008-11-27 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:00 Wed 26 Nov , Remy Bohmer wrote: > Hello Jean-Christophe, > > >> In message <[EMAIL PROTECTED]> you wrote: > >> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > >> > >> > diff --git a/drivers/serial/usbtty.c b/drivers/serial/usbtty.c > > What are we going to do

[U-Boot] [PATCH] MTD: Fix problem based on non-working relocation (list head mtd_partitions)

2008-11-27 Thread Stefan Roese
Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon first call of add_mtd_partitions(). Otherwise this won't work on platforms where the relocation is broken (like MIPS or PPC). Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- drivers/mtd/mtdpart.c | 10 +- 1 fi

[U-Boot] [PATCH] UBI: Enable re-initializing of the "ubi part" command

2008-11-27 Thread Stefan Roese
With this patch now, the user can call "ubi part" multiple times to re-connect the UBI device to another MTD partition. Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- common/cmd_ubi.c|9 + drivers/mtd/ubi/build.c |1 + include/ubi_uboot.h |1 + 3 files changed

[U-Boot] [PATCH] OneNAND: Add missing mtd info struct before calling onenand_erase()

2008-11-27 Thread Stefan Roese
Without this patch "saveenv" crashes when MTD partitions are enabled (e.g. for use in UBI) via CONFIG_MTD_PARTITIONS. Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- common/env_onenand.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/env_onenand.c b/common/env

[U-Boot] [PATCH] Added optional iteration limit for alternative memory test.

2008-11-27 Thread Dirk Eibach
We want to use mtest for production memory test. I implemented an iteration limit, so expect can parse the results. The iteration limit is passed to mtest as a fourth parameter: [start [end [pattern [iterations If no fourth parameter is supplied, there is no iteration limit and the test will l

[U-Boot] Getting a message no rule to make target .

2008-11-27 Thread Diptopal Basu
Hi , Actually I am using the wrong environment to compile u boot I learnt after a reply from this forum . However on Cygwin ( I am aware that this is not the right way to do it ) when I get into the u-boot-1.1.6 folder ( I am using yagarto cross compiler tool , and I admit I am wrong here

[U-Boot] [RFC PATCH V2 1/2] Add USB ehci core files

2008-11-27 Thread Michael Trimarchi
Add USB ehci core files Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- drivers/usb/usb_ehci.h | 120 drivers/usb/usb_ehci_core.c | 635 +++ drivers/usb/usb_ehci_core.h | 29 ++ 3 files changed, 784 insertions(+), 0 deletions(-)

Re: [U-Boot] EHCI patchset

2008-11-27 Thread michael
Hi, Stefan Roese wrote: > Hi Michael, > > On Thursday 27 November 2008, michael wrote: > >> I just cleanup the works done by Tor Krill and other peaple. >> > > Thanks a lot for your work here. Really appreciated. > > >> I don't >> have the freescale board to test the >> patchset. I wil

Re: [U-Boot] Not able to access uboot newsgroup from thunderbird

2008-11-27 Thread Michael Lawnick
Sriram Chadalavada said the following: > My mistake Wolfang. Will not happen again. Although I am not sure why I am > not able to access the newsgroup from Thunderbird. > > I am using the free news server nntp.aioe.org. Anyone else using thunderbird > to access the newsgroup?? Subscribe to news.g

Re: [U-Boot] [PATCH] Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX module.

2008-11-27 Thread Wolfgang Denk
Dear Dirk Eibach, In message <[EMAIL PROTECTED]> you wrote: > > Subject: Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX > module. Please keep the subject well under 70 characters so it makes a good title line for the commit message. > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@

Re: [U-Boot] [PATCH] Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX module.

2008-11-27 Thread Stefan Roese
Hi Dirk, On Thursday 27 November 2008, Dirk Eibach wrote: > Signed-off-by: Dirk Eibach <[EMAIL PROTECTED]> Please find below some comments in addition to Wolfgangs comments: > diff --git a/board/gdsys/gdppc440etx/init.S > b/board/gdsys/gdppc440etx/init.S new file mode 100644 > index 000..f

Re: [U-Boot] Need input: Use Virtual address in commands; add translation/physical

2008-11-27 Thread Andrew Dyer
>> I would love to see memory addresses get parsed through a common >> routine - that would allow easily hooking in an arch/platform specific >> routine to filter out addresses that should be avoided. > > U-Boot is not supposed to do any such filtering. > > "UNIX was not designed to stop you from d

Re: [U-Boot] [PATCH] Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX module.

2008-11-27 Thread Jerry Van Baren
Stefan Roese wrote: > Hi Dirk, > > On Thursday 27 November 2008, Dirk Eibach wrote: [snip] >> +#include >> +#include >> + >> +/* General */ >> +#define TLB_VALID 0x0200 >> + >> +/* Supported page sizes */ >> + >> +#define SZ_1K 0x >> +#define SZ_4K 0x0010

[U-Boot] NAND Flash M5329 Problems

2008-11-27 Thread Carlos kescuin
Hi every one. I'm trying to get a complete U-boot configuration for my Freescale M5320EVB Board, but I'm getting some problems wite NAND Flash detection and configuration. When I attache the #define NANDFLASH_SIZE 16 to the M5329EVB.h file and try to compile U-boot I get this error: m68k-elf-gc

Re: [U-Boot] [PATCH] Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX module.

2008-11-27 Thread Stefan Roese
On Thursday 27 November 2008, Jerry Van Baren wrote: > > Just include: > > > > #include > > > > and you get all those defines for free. > > > > Best regards, > > Stefan > > Hi Stefan, > > I'll do you four letters fewer: Nice. ;) > #include > > ...since include/asm is symlinked to the active asm

Re: [U-Boot] weak functions not being over-ridden (location dependent)

2008-11-27 Thread Mike Frysinger
On Wednesday 26 November 2008 14:32:48 Graeme Russ wrote: > Wolfgang Denk wrote: > > In message ... you wrote: > >>> I have a very strange problem - I am trying to define a weak function, > >>> but whether or not the function is overridden depends on where I put > >>> the overriding function. Case

[U-Boot] [patch 0/2] Cleanup non-ascii characters and cleanup patch FAT on non standard sector size devices

2008-11-27 Thread Remy Bohmer
This patch series contains a cleanup of the use of non-ascii characters in FAT-fs files, and also a cleanup of a patch originally posted by Igor Luri. However, the patch posted by Igor on the mailinglist was still not readable (base64 inlined patch) and thus not mergable or testable. So, I merged

[U-Boot] [patch 1/2] Remove non-ascii characters from fat code

2008-11-27 Thread Remy Bohmer
This code contains some non-ascii characters in comment lines and code. Most editors do not display those characters properly and editing those files results always in diffs at these places which are usually not required to be changed at all. This is error prone. So, remove those weird characters

[U-Boot] [patch 2/2] Cleanup patch Fat on non standard sector size devices

2008-11-27 Thread Remy Bohmer
The patch below is a patch originally posted by Igor Luri. However, the patch posted on the mailinglist was not readable (base64) and thus not mergable or testable. Also tabs/spaces were malformed. So, I merged the whole patch by hand and posted it again. Igor can you please check if I did this c

Re: [U-Boot] Need input: Use Virtual address in commands; add translation/physical

2008-11-27 Thread Wolfgang Denk
Dear Andrew, In message <[EMAIL PROTECTED]> you wrote: > > What about suicidal things like accessing a bus region that hangs the > machine, hitting the one address that resets the whole thing? Yes, I > know that's broken design, but hardware like that exists, and is not > going to change because

Re: [U-Boot] [PATCH] Added support for the Guntermann & Drunck PowerPC 440 EP/GR ETX module.

2008-11-27 Thread Wolfgang Denk
Dear Jerry Van Baren, In message <[EMAIL PROTECTED]> you wrote: > > > #include ... > > I'll do you four letters fewer: > > #include > > ...since include/asm is symlinked to the active asm-. Thanks - well spotted. To summarize: asm-ppc is a four letters word :-) Best regards, Wolfgang Denk