Re: [U-Boot] RAM burst mode problem

2009-09-03 Thread Frank Svendsbøe
Hi Mikhail, Burst mode UPM setup is not trivial, and it is quite amount of work to go through your table, so I'm not surprised nobody has replied. I assume you've verified the generated waveforms using a logic analyzer/scope, and compared them to the DRAMs datasheet (?). If you have access to a Wi

Re: [U-Boot] [PATCH v3 4/4] tools: mkimage: Add: Kirkwood Boot Image support (kwbimage)

2009-09-03 Thread Simon Kagstrom
Hi Prafulla! I see the complications and understand that it might be difficult to get it running. On Thu, 3 Sep 2009 07:15:48 -0700 Prafulla Wadaskar wrote: > > I think it could also be useful to be able to produce just the boot > > header without the U-boot image. For example if you want to pl

Re: [U-Boot] [PATCH 2/2] License cleanup: remove all files with "All Rights Reserved" notices.

2009-09-03 Thread Michal Simek
Hi Wolfgang, 2009/9/2 Wolfgang Denk > "All Rights Reserved" conflicts with the GPL. > > Signed-off-by: Wolfgang Denk > --- > > drivers/net/ns9750_eth.c | 790 --- > drivers/net/tigon3.c | 5697 > > drivers/net/tigon3

Re: [U-Boot] U-boot environment on Sheevaplug

2009-09-03 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Tuesday, August 25, 2009 1:00 PM > To: U-Boot ML > Cc: Prafulla Wadaskar; Nicolas Pitre > Subject: Re: [U-Boot] U-boot environment on Sheevaplug > > Hi again! > > I just wanted to check if there

[U-Boot] [PATCH 1/3] push LOAD_ADDR out to arch mk files

2009-09-03 Thread Mike Frysinger
Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in the standalone Makefile, push the setting up of LOAD_ADDR out to the arch config.mk (and rename to STANDALONE_LOAD_ADDR in the process). This keeps the common code clean and lets the arch do whatever crazy crap it wants in i

[U-Boot] [PATCH 3/3] atmel_df_pow2: standalone to convert dataflashes to pow2

2009-09-03 Thread Mike Frysinger
Atmel DataFlashes by default operate with pages that are slightly bigger than normal binary sizes (i.e. many are 1056 byte pages rather than 1024 bytes). However, they also have a "power of 2" mode where the pages show up with the normal binary size. The latter mode is required in order to boot w

[U-Boot] [PATCH 2/3] standalone: convert to kbuild style

2009-09-03 Thread Mike Frysinger
Clean up the arch/cpu/board/config checks as well as redundant setting of srec/bin variables by using the kbuild VAR-$(...) style. Signed-off-by: Mike Frysinger --- examples/standalone/Makefile | 96 - 1 files changed, 28 insertions(+), 68 deletions(-)

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

2009-09-03 Thread Mike Frysinger
The following changes since commit 3aa8b68d80dbcb6829af60485c1e388b39af793d: Wolfgang Denk (1): Merge branch 'next' of ../next are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Harald Krapfenbauer (1): Blackfin: cm-bf537u: new board port

[U-Boot] Newest Version U-boot

2009-09-03 Thread Marcos Cunha
<><>___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] TEST

2009-09-03 Thread Wolfgang Denk
Please ignore. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de The flow chart is a most thoroughly o

Re: [U-Boot] Virtual addresses, u-boot, and the MMU

2009-09-03 Thread Andrew Dyer
On Thu, Sep 3, 2009 at 11:09 AM, Becky Bruce wrote: > This makes sense to me.  The disable function would need to flush the > range from the cache, but that's the only difficulty I forsee. > However, I dug up some AVR32 docs, and it looks like the whole dual > cacheable/CI mapping thing may be arch

Re: [U-Boot] Virtual addresses, u-boot, and the MMU

2009-09-03 Thread J. William Campbell
Becky Bruce wrote: > > On Sep 2, 2009, at 2:59 AM, Wolfgang Denk wrote: > >> Dear "J. William Campbell", >> >> In message <4a9d99b1.1010...@comcast.net> you wrote: >>> >> ... Becky then posted the summary of this discussion here: http://thread.gmane.org/gmane.comp.boot-loaders.u-boot

Re: [U-Boot] Virtual addresses, u-boot, and the MMU

2009-09-03 Thread Becky Bruce
On Sep 2, 2009, at 2:59 AM, Wolfgang Denk wrote: > Dear "J. William Campbell", > > In message <4a9d99b1.1010...@comcast.net> you wrote: >> > ... >>> Becky then posted the summary of this discussion here: >>> >>> http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/50705 > ... >> In quick summar

Re: [U-Boot] [PATCH] ppc/85xx: Fix bug in setup_mp code

2009-09-03 Thread Kumar Gala
On Sep 3, 2009, at 9:41 AM, Peter Tyser wrote: > On Thu, 2009-09-03 at 08:58 -0500, Kumar Gala wrote: >> Its possible that we try and copy the boot page code out of flash >> into a >> DDR location that doesn't have a TLB cover it. For example, if we >> have >> 3G of DDR we typically only map

[U-Boot] Odd value for I2C_TIMEOUT in fsl_i2c.c

2009-09-03 Thread Timur Tabi
Currently we define I2C_TIMEOUT like this: #define I2C_TIMEOUT (CONFIG_SYS_HZ / 4) I'm seeing some I2C instability on a new board I'm working on, especially with SPD. If I change the above to #define I2C_TIMEOUT (CONFIG_SYS_HZ / 2) The problems go away (or at least, so far appear to)

Re: [U-Boot] [PATCH][v1] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-03 Thread Peter Tyser
Hi Marcel, On Thu, 2009-09-03 at 14:52 +, Marcel Ziswiler wrote: > ep8248: add support for device tree and secondary Ethernet interface. This commit message shouldn't be necessary since its identical to your commit subject. > + > +#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIB

[U-Boot] [PATCH][v1] ep8248: add support for device tree and secondary Ethernet interface.

2009-09-03 Thread Marcel Ziswiler
ep8248: add support for device tree and secondary Ethernet interface. Signed-off-by: Marcel Ziswiler --- board/ep8248/ep8248.c| 36 +- include/configs/ep8248.h | 53 -- 2 files changed, 57 insertions(+), 32 deletions

Re: [U-Boot] [PATCH] ppc/85xx: Fix bug in setup_mp code

2009-09-03 Thread Peter Tyser
On Thu, 2009-09-03 at 08:58 -0500, Kumar Gala wrote: > Its possible that we try and copy the boot page code out of flash into a > DDR location that doesn't have a TLB cover it. For example, if we have > 3G of DDR we typically only map the first 2G. In the cases of 4G+ this > wasn't an issue since

Re: [U-Boot] [PATCH 1/2 v2] 85xx: CONFIG_MP Boot Page Translation update

2009-09-03 Thread Peter Tyser
On Thu, 2009-09-03 at 08:25 -0500, Kumar Gala wrote: > On Aug 7, 2009, at 3:57 PM, Peter Tyser wrote: > > > > >>> diff --git a/cpu/mpc85xx/mp.c b/cpu/mpc85xx/mp.c > >>> index 76f02a4..53fc3be 100644 > >>> --- a/cpu/mpc85xx/mp.c > >>> +++ b/cpu/mpc85xx/mp.c > >>> @@ -129,7 +129,7 @@ ulong get_spin_

Re: [U-Boot] [PATCH v3 4/4] tools: mkimage: Add: Kirkwood Boot Image support (kwbimage)

2009-09-03 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Thursday, September 03, 2009 5:30 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH v3 4/4] tools: mkimage: Add: > Kirkwood

[U-Boot] [PATCH][v1] ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().

2009-09-03 Thread Poonam Aggrwal
While in probecpu() UART is still not initialized. Signed-off-by: Poonam Aggrwal Acked-by: Kumar Gala --- applies on git.am.freescale.net/mirrors/u-boot.git cpu/mpc85xx/cpu.c |4 cpu/mpc86xx/cpu.c |6 ++ cpu/mpc8xxx/cpu.c |6 -- 3 files changed, 10 insertions(+), 6 dele

[U-Boot] Request to mailing list U-Boot-Users

2009-09-03 Thread Tien Guo
*Subscribing to U-Boot* Subscribe to U-Boot by filling out the following form. You will be sent email requesting confirmation, to prevent others from gratuitously subscribing you. This is a private list, which means that the list of members is not available to non-members. Your email

[U-Boot] [PATCH] ppc/85xx: Fix bug in setup_mp code

2009-09-03 Thread Kumar Gala
Its possible that we try and copy the boot page code out of flash into a DDR location that doesn't have a TLB cover it. For example, if we have 3G of DDR we typically only map the first 2G. In the cases of 4G+ this wasn't an issue since the reset page TLB mapping covered the last page of memory w

Re: [U-Boot] [PATCH 1/2 v2] 85xx: CONFIG_MP Boot Page Translation update

2009-09-03 Thread Kumar Gala
On Aug 7, 2009, at 3:57 PM, Peter Tyser wrote: > >>> diff --git a/cpu/mpc85xx/mp.c b/cpu/mpc85xx/mp.c >>> index 76f02a4..53fc3be 100644 >>> --- a/cpu/mpc85xx/mp.c >>> +++ b/cpu/mpc85xx/mp.c >>> @@ -129,7 +129,7 @@ ulong get_spin_addr(void) >>> >>> ulong addr = >>> (ulong)&__spin_t

[U-Boot] [PATCH] ppc/85xx: Add a simple function to search the TLB

2009-09-03 Thread Kumar Gala
Allow us to search the TLB array based on an address. This is useful if we want to change an entry but dont know where it happens to be located. For example, the boot page mapping we use on MP or the flash TLB that we change the WIMGE settings for after we've relocated. Signed-off-by: Kumar Gala

[U-Boot] HP Jornada flashrom doesnt boot

2009-09-03 Thread Kristoffer Ericson
Greetings, Im at the state where it compiles nicely (thanks wolfgang!) but doesnt do anything. I am working with an old blob code that I know works and tried to move all the data from there into u-boot. Currently I get no output at all on serial and the handheld itself makes a small humming noise

[U-Boot] [PATCH v2] Reset i2c slave devices during init on mpc5xxx cpus

2009-09-03 Thread Eric Millbrandt
Reset any i2c devices that may have been interrupted during a system reset. Normally this would be accomplished by clocking the line until SCL and SDA are released and then sending a start condtiion (From an Atmel datasheet). There is no direct access to the i2c pins so instead create start command

Re: [U-Boot] [PATCH v3 4/4] tools: mkimage: Add: Kirkwood Boot Image support (kwbimage)

2009-09-03 Thread Simon Kagstrom
On Mon, 24 Aug 2009 23:03:59 +0530 Prafulla Wadaskar wrote: > This patch adds type kwbimabe support for new mkimage core > For more details refer docs/README.kwbimage > +Command syntax: > +-- > +./tools/mkimage -l > + to list the kwb image file details > + > +./tools/mki

Re: [U-Boot] [PATCH v3 4/4] tools: mkimage: Add: Kirkwood Boot Image support (kwbimage)

2009-09-03 Thread Prafulla Wadaskar
> -Original Message- > From: Prafulla Wadaskar > Sent: Tuesday, September 01, 2009 10:45 PM > To: u-boot@lists.denx.de > Cc: Prabhanjan Sarnaik; Ashish Karkare > Subject: RE: [PATCH v3 4/4] tools: mkimage: Add: Kirkwood > Boot Image support (kwbimage) > > > > > -Original Messag

[U-Boot] RTLWS11 / XUM-2009, 28-30 September, TU-Dresden - Call for Participation

2009-09-03 Thread Wolfgang Denk
Hello, I apologize in advance if you should consider this message off topic; please feel free to ignore it. I'm reposting it here as a number af U-Boot developers happen to be present at XUM-2009 (including myself), so just in case you don't have anything better to do... --- Forwarded Mess

Re: [U-Boot] HP Jornada 720 flashrom

2009-09-03 Thread Wolfgang Denk
Dear Kristoffer Ericson, In message <20090903130919.7696972f.kristoffer.eric...@gmail.com> you wrote: > > Still having trouble finding exactly what is causing it. > See below for my include/configs/jornada.h file. ... > +/* > + * Command line configuration. > + */ > +#include This will include

Re: [U-Boot] HP Jornada 720 flashrom

2009-09-03 Thread Kristoffer Ericson
Still having trouble finding exactly what is causing it. See below for my include/configs/jornada.h file. diff --git a/include/configs/jornada.h b/include/configs/jornada.h new file mode 100644 index 000..270b54f --- /dev/null +++ b/include/configs/jornada.h @@ -0,0 +1,166 @@ +/* + * (C) Cop

[U-Boot] [PATCH v3] zlib: fix code when DEBUG is defined

2009-09-03 Thread Giuseppe CONDORELLI
Removed stdio.h inclusion and moved trace macros to use printf avoiding to write debug informations to standard error. Signed-off-by: Giuseppe Condorelli --- lib_generic/zlib.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib_generic/zlib.c b/lib_generic/zlib.c in

Re: [U-Boot] [PATCH v2] zlib: fix code when DEBUG is defined

2009-09-03 Thread Wolfgang Denk
Dear Giuseppe CONDORELLI, In message <011301ca2c7a$b5d83c40$c0818...@st.com> you wrote: > > > What happens when we return here? Obviously this function is supposed > > to never return. Should we call hang() here? > > Given that z_error is invoked by Assert macro (never used) and that "exit" > fu

Re: [U-Boot] [PATCH v2] zlib: fix code when DEBUG is defined

2009-09-03 Thread Giuseppe CONDORELLI
Dear Wolfgang Denk, > Isn't that great? Sure!!! :) > What happens when we return here? Obviously this function is supposed > to never return. Should we call hang() here? Given that z_error is invoked by Assert macro (never used) and that "exit" function (other than closing all opened stream) wil

[U-Boot] Interrupts in uboot with ARM AT91SAM9 (V2)

2009-09-03 Thread Manuel Sahm
Hello, I have to use interrupts in UBoot 1.3.4 - how could I enable them ? I have an AT91SAM9G20 - in ist header file I enable CONFIG_USE_IRQ und uncomment the lines#ifdefc CONFIG_USE_IRQ #error #endif. I inserted the lines: #define CONFIG_STACKSIZE_IRQ (4*1024) #define CONFIG_STACKSIZE_FI

Re: [U-Boot] [PATCH v2] zlib: fix code when DEBUG is defined

2009-09-03 Thread Wolfgang Denk
Dear Giuseppe CONDORELLI, In message <1251970209-9053-1-git-send-email-giuseppe.condore...@st.com> you wrote: > Removed stdio.h inclusion and moved trace macros to use printf avoiding to > write debug informations to standard error. > > Signed-off-by: Giuseppe Condorelli > --- > lib_generic/zl

[U-Boot] [PATCH v2] zlib: fix code when DEBUG is defined

2009-09-03 Thread Giuseppe CONDORELLI
Removed stdio.h inclusion and moved trace macros to use printf avoiding to write debug informations to standard error. Signed-off-by: Giuseppe Condorelli --- lib_generic/zlib.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib_generic/zlib.c b/lib_generic/zlib.c ind

Re: [U-Boot] [PATCH] zlib: fix code when DEBUG is defined

2009-09-03 Thread Wolfgang Denk
Dear Giuseppe CONDORELLI, In message <1251965311-5739-1-git-send-email-giuseppe.condore...@st.com> you wrote: > Removed stdio.h inclusion and moved trace macros to use printf avoiding to > write debug informations to standard error. > > Signed-off-by: Giuseppe Condorelli > --- > lib_generic/zl

[U-Boot] Interrupts in uboot with ARM AT91SAM9

2009-09-03 Thread Manuel Sahm
Hello, I have to use interrupts in UBoot 1.3.4 - how could I enable them ? I have an AT91SAM9G20 - in ist header file I enable CONFIG_USE_IRQ und uncomment the lines#ifdefc CONFIG_USE_IRQ #error #endif. I inserted the lines: #define CONFIG_STACKSIZE_IRQ (4*1024) #define CONFIG_STACKSIZE_FIQ