Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Haavard Skinnemoen
Jean-Christophe PLAGNIOL-VILLARD wrote: > for at91 the GUARD_TIME is 1 and IIRC it's lcd specific You just contradicted yourself. The Guard time is the number of empty frames (with control signals enabled but no data) to wait before starting to send valid data to the display. Setting it slightly

[U-Boot] Problem with uboot booting image

2009-06-22 Thread Rahanesh
Hi All, I am trying to boot Linux from uboot. I have cross compiled Linux and ramdisk for my board. After cross compilation i did a tftp to download the image(Linux + Filesystem) to RAM(0x8080) . From there i copied it to flash(0xad04). Now on a reset u boot comes up and then when tryin

Re: [U-Boot] [PATCH v2 1/3][repost] nand: Add Marvell Kirkwood NAND driver

2009-06-22 Thread Prafulla Wadaskar
> -Original Message- > From: Scott Wood [mailto:scottw...@freescale.com] > Sent: Tuesday, June 23, 2009 3:35 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik; > Ronen Shitrit > Subject: Re: [U-Boot] [PATCH v2 1/3][repost] nand: Add > Marvell Ki

[U-Boot] link error in MPC8313ERDB_NAND_33_config or MPC8313ERDB_NAND_66_config

2009-06-22 Thread wanjiutuan
In LTIB, first I executed such command “make MPC8313ERDB_NAND_33_config; make”, There are some link errors in nand_spl, such as “undefined reference restgprXXX”, but for u-boot ,there is no problems. ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH-ARM] Bug-fix in drivers mtd nand Makefile

2009-06-22 Thread kevin.morf...@fearnside-systems.co.uk
> COBJS-$(CONFIG_NAND_S3C64XX) += s3c64xx.o > COBJS-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o > endif > -- 1.6.0.6 > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > __ Informati

Re: [U-Boot] [PATCH-ARM 1/2] Add support for the Embest SBC2440-II Board

2009-06-22 Thread kevin.morf...@fearnside-systems.co.uk
bviously need to look at it in more detail. >> +int board_nand_init(struct nand_chip *nand) >> +{ >> +u_int32_t cfg; >> +u_int8_t tacls, twrph0, twrph1; >> +S3C24X0_CLOCK_POWER * const clk_power = S3C24X0_GetBase_CLOCK_POWER(); >> +S3C2440_NAND * const

Re: [U-Boot] [PATCH-ARM 1/2] Add support for the Embest SBC2440-II Board

2009-06-22 Thread kevin.morf...@fearnside-systems.co.uk
e I cc you when I re-send it. > I'll look at that patch soon. > > -Scott > __ Information from ESET NOD32 Antivirus, version of virus signature database 4179 (20090622) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com ___

Re: [U-Boot] [PATCH 4/7] mxc_nand: add nand driver for MX2/MX3

2009-06-22 Thread Scott Wood
On Mon, Jun 08, 2009 at 04:12:48AM +0400, Ilya Yanok wrote: > Driver for NFC NAND controller found on Freescale's MX2 and MX3 > processors. Ported from Linux. Tested only with i.MX27 but should > works with other MX2 and MX3 processors too. > > Signed-off-by: Ilya Yanok Please look at drivers/mt

Re: [U-Boot] [PATCH 09/11] fsl_dma: Move dma function prototypes to common header file

2009-06-22 Thread Peter Tyser
Hi Kumar, > > diff --git a/include/asm-ppc/fsl_dma.h b/include/asm-ppc/fsl_dma.h > > index c9ec6b5..06ecdcd 100644 > > --- a/include/asm-ppc/fsl_dma.h > > +++ b/include/asm-ppc/fsl_dma.h > > @@ -94,4 +94,9 @@ typedef struct fsl_dma { > > charres4[56]; > > } fsl_dma_t; > > > > +#ifdef CONFI

[U-Boot] [PATCH 4/4] api_examples/Makefile: General cleanup

2009-06-22 Thread Peter Tyser
* Remove symlinking of files located outside api_examples/ * Auto generate dependencies for files located outside api_examples/ * Update names of variables to be similar to those in tools/Makefile * Fix out of tree build error Dependencies are calculated for all files in the SRCS variable. P

[U-Boot] [PATCH 2/4] api_examples/Makefile: Combine ELF and BIN targets

2009-06-22 Thread Peter Tyser
Combining the two rules cleans up the Makefile a bit Signed-off-by: Peter Tyser --- api_examples/Makefile | 21 - 1 files changed, 8 insertions(+), 13 deletions(-) diff --git a/api_examples/Makefile b/api_examples/Makefile index be0b462..98506a0 100644 --- a/api_examples/M

[U-Boot] [PATCH 3/4] api_examples/Makefile: Get rid of unnecessary intermediate LIB target

2009-06-22 Thread Peter Tyser
Signed-off-by: Peter Tyser --- api_examples/Makefile | 15 +-- 1 files changed, 5 insertions(+), 10 deletions(-) diff --git a/api_examples/Makefile b/api_examples/Makefile index 98506a0..a85fd9c 100644 --- a/api_examples/Makefile +++ b/api_examples/Makefile @@ -44,7 +44,6 @@ OUTPUT

[U-Boot] [PATCH 1/4] api_examples/Makefile: Split up variable declarations

2009-06-22 Thread Peter Tyser
This cleans up the Makefile a bit and simplifies future changes Signed-off-by: Peter Tyser --- These are some similar changes to the ones I made to the tools directory recently. It gets rid of symlinking source files which has the side benefit of resolving the out of tree build error for the API

[U-Boot] U-boot partition size information

2009-06-22 Thread Nathan French
I've got a kilauea-ish board that we've decided needs more room in one of the flash partitions. So I took the existing command line: Kernel command line: ramdisk_size=65536 root=/dev/ram rw mtdparts=fc00.nor_flash:2M(linux),20M(ramdisk),4M(jffs2),38272k(user),256k(env),384k(u

Re: [U-Boot] [PATCH v2 1/3][repost] nand: Add Marvell Kirkwood NAND driver

2009-06-22 Thread Scott Wood
On Sun, Jun 14, 2009 at 10:32:47PM +0530, Prafulla Wadaskar wrote: > diff --git a/drivers/mtd/nand/kirkwood_nand.c > b/drivers/mtd/nand/kirkwood_nand.c > new file mode 100644 > index 000..9cdbe20 > --- /dev/null > +++ b/drivers/mtd/nand/kirkwood_nand.c > @@ -0,0 +1,81 @@ > +/* > + * Copyright

Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:58 Mon 22 Jun , Mark Jackson wrote: > This patch correctly sets up the guard time parameter in > the Atmel LCDC driver. > > This works on the AVR32 platform, but needs to be tested > under the AT91 platform which shares the same code base. for at91 the GUARD_TIME is 1 and IIRC it's lcd s

Re: [U-Boot] [PATCH 2/2] nand_spl: read environment early, when booting from NAND using nand_spl

2009-06-22 Thread Scott Wood
On Mon, May 18, 2009 at 04:07:22PM +0200, Guennadi Liakhovetski wrote: > Currently, when booting from NAND using nand_spl, in the beginning the default > environment is used until later in boot process the dynamic environment is > read > out. This way environment variables that must be interpreted

Re: [U-Boot] Access JFFS2 partition from U-Boot

2009-06-22 Thread Scott Wood
On Thu, May 14, 2009 at 04:13:53PM +0200, Guillaume Spalla wrote: > Dear all, > > I am new with U-Boot, and I am trying to access the content of a JFFS2 > partition from u-boot. > I am working with an at91sam9263 board, with nand flash. > > In u-boot, I added the #define CONFIG_CMD_JFFS2, as well

Re: [U-Boot] [PATCH] nand_init: use loff_t for offset

2009-06-22 Thread Scott Wood
On Sat, May 16, 2009 at 02:27:40PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > nand_init currently use size_t which is arch dependent and not always a > unsigned long. Now use loff_t as the linux mtd layer > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > Cc: Scott Wood Applied to u-b

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Dirk Behme
Scott Wood wrote: > Dirk Behme wrote: >> Scott Wood wrote: >>> Dirk Behme wrote: What I still miss: If this warning indicates that something *is* wrong, why not run MAKEALL and enable it in config for all boards that show this warning? What's the advantage of having all maint

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Scott Wood
Dirk Behme wrote: > Scott Wood wrote: >> Dirk Behme wrote: >>> What I still miss: If this warning indicates that something *is* >>> wrong, why not run MAKEALL and enable it in config for all boards that >>> show this warning? What's the advantage of having all maintainers >>> sending patches for

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Dirk Behme
Scott Wood wrote: > Dirk Behme wrote: >> What I still miss: If this warning indicates that something *is* >> wrong, why not run MAKEALL and enable it in config for all boards that >> show this warning? What's the advantage of having all maintainers >> sending patches for their boards? > > 1. Th

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Scott Wood
Dirk Behme wrote: > What I still miss: If this warning indicates that something *is* > wrong, why not run MAKEALL and enable it in config for all boards that > show this warning? What's the advantage of having all maintainers > sending patches for their boards? 1. That requires having all toolc

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Dirk Behme
Stefan Roese wrote: > On Monday 22 June 2009 20:50:30 Scott Wood wrote: >> Dirk Behme wrote: >>> Because every non-U-Boot expert who just downloads recent git and >>> compiles it will get the warning and will wonder if something is wrong >>> or not. So yes, the check doesn't hurt, but the warning m

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Stefan Roese
On Monday 22 June 2009 20:50:30 Scott Wood wrote: > Dirk Behme wrote: > > Because every non-U-Boot expert who just downloads recent git and > > compiles it will get the warning and will wonder if something is wrong > > or not. So yes, the check doesn't hurt, but the warning might confuse > > the us

Re: [U-Boot] [PATCH-ARM 1/2] Add support for the Embest SBC2440-II Board

2009-06-22 Thread Scott Wood
Keven Morfitt wrote: > diff --git a/drivers/mtd/nand/s3c2410_nand.c b/drivers/mtd/nand/s3c2410_nand.c > index 60bfd10..b93787c 100644 > --- a/drivers/mtd/nand/s3c2410_nand.c > +++ b/drivers/mtd/nand/s3c2410_nand.c > @@ -36,7 +36,7 @@ > static void s3c2410_hwcontrol(struct mtd_info *mtd, int cmd, u

Re: [U-Boot] [PATCH-ARM 1/2] Add support for the Embest SBC2440-II Board

2009-06-22 Thread Scott Wood
Jean-Christophe PLAGNIOL-VILLARD wrote: > no as you add the nand in this patch > the nand need to be add in a seperate patch, > this one need to only add the s3c2440 support > and the nand will be handle by Scott the nand Maintainer If a NAND patch is sandwiched in the middle of other patches that

Re: [U-Boot] [PATCH 1/2 V2] Move libgcc inclusion from common Makefile to platform configs files

2009-06-22 Thread Scott Wood
On Sat, Jun 20, 2009 at 03:57:51PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > I just give you example but you will see arm, mips, sh, powerpc etc... > toolchains problem just because we use the libgcc What problems will powerpc have due to libgcc, and why would we choose to reinvent the whe

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Scott Wood
Dirk Behme wrote: > Because every non-U-Boot expert who just downloads recent git and > compiles it will get the warning and will wonder if something is wrong > or not. So yes, the check doesn't hurt, but the warning might confuse > the users, which are non-experts. And the answer to that user

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Dirk Behme
Stefan Roese wrote: > On Monday 22 June 2009 20:12:11 Dirk Behme wrote: 1. This preprocessor warning is annoying. Why not enable it in all configs where needed and then remove this warning here? >>> I could have done that, but this would not have been so easy. Especially >>> with so many

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Stefan Roese
On Monday 22 June 2009 20:12:11 Dirk Behme wrote: > >> 1. This preprocessor warning is annoying. Why not enable it in all > >> configs where needed and then remove this warning here? > > > > I could have done that, but this would not have been so easy. Especially > > with so many new board ports pe

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Stefan Roese
On Monday 22 June 2009 20:10:23 Dirk Behme wrote: > > This is because it's a copy from the Linux code. Not sure if > > we should change the coding style here. I really prefer to be > > in sync with the Linux version. This makes future updates easier. > > You have to discuss this with Wolfgang, but

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Dirk Behme
Stefan Roese wrote: > Hi Dirk, > > I forgot to address your first issue. Please see below: > > > >>> +#if !defined(CONFIG_SYS_64BIT_VSPRINTF) >>> +#warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output! >>> +#endif >>> + >> 1. This preprocessor warning is annoying. Why not enable i

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Dirk Behme
Hi Stefan, Stefan Roese wrote: > Hi Dirk, > > On Saturday 20 June 2009 19:45:40 Dirk Behme wrote: >> Jean-Christophe PLAGNIOL-VILLARD wrote: 2. C++ style comment. Found by Wolfgang ;) > > This is because it's a copy from the Linux code. Not sure if > we should change the coding style here.

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread Dieter Kiermaier
Original-Nachricht > Datum: Mon, 22 Jun 2009 10:10:20 -0700 > Von: Prafulla Wadaskar > An: "dk-arm-li...@gmx.de" , "André Schwarz" > > CC: "u-boot@lists.denx.de" > Betreff: RE: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot > > > > -Original Message- > > Fr

Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Haavard Skinnemoen
On Mon, 22 Jun 2009 16:31:20 +0100 Mark Jackson wrote: > Haavard Skinnemoen wrote: > > Mark Jackson wrote: > >> User-Agent: Thunderbird 2.0.0.21 (X11/20090409) > > > > (...) > > > >> My patch has been mangled ... there's an extra space at the start > >> of each "unchanged" patch line. > > > >

[U-Boot] Flashing u-boot and X-loader on OMAP Zoom2

2009-06-22 Thread Vivek Kutal
Hi all, I have accidentally erased the flash contents on the OMAP Zoom 2 device, now when I switch ON the board I only see the CLKREQ and the battery emulator leds ON, I have tried restoring x-loader and u-boot using the MMC card (as mentioned here https://omapzoom.org/gf/project/omapzo

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread Dieter Kiermaier
Am Montag 22 Juni 2009 17:34:35 schrieb André Schwarz: André, > Dieter, > > On Mon, 2009-06-22 at 17:01 +0200, Dieter Kiermaier wrote: > > Am Montag 22 Juni 2009 15:08:20 schrieb Dieter Kiermaier: > > > > This seems to be an issue regarding Gigabit / 100MBits uplink with > > current marvell git u-

Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Peter Tyser
On Mon, 2009-06-22 at 16:31 +0100, Mark Jackson wrote: > Haavard Skinnemoen wrote: > > Mark Jackson wrote: > >> User-Agent: Thunderbird 2.0.0.21 (X11/20090409) > > > > (...) > > > >> My patch has been mangled ... there's an extra space at the start of each > >> "unchanged" patch line. > > > > R

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread André Schwarz
Dieter, On Mon, 2009-06-22 at 17:01 +0200, Dieter Kiermaier wrote: > Am Montag 22 Juni 2009 15:08:20 schrieb Dieter Kiermaier: > > This seems to be an issue regarding Gigabit / 100MBits uplink with current > marvell git u-boot. this gives lots of things worth looking at them : - are you runnin

Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Mark Jackson
Haavard Skinnemoen wrote: > Mark Jackson wrote: >> User-Agent: Thunderbird 2.0.0.21 (X11/20090409) > > (...) > >> My patch has been mangled ... there's an extra space at the start of each >> "unchanged" patch line. > > Read about how to make Thunderbird behave here: > > http://git.kernel.org/?

Re: [U-Boot] [PATCH] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Mark Jackson
Anatolij Gustschin wrote: > Mark Jackson wrote: >> Jean-Christophe PLAGNIOL-VILLARD wrote: > ... >>> does not apply >> Sorry ... does that mean the patch fails in some way, or that this patch is >> not relevant ? > > a...@wker:~/git/u-boot$ patch -p1 --dry-run < > ~/devel/u-boot-video/\[U-Boot\]

Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Haavard Skinnemoen
Mark Jackson wrote: > User-Agent: Thunderbird 2.0.0.21 (X11/20090409) (...) > My patch has been mangled ... there's an extra space at the start of each > "unchanged" patch line. Read about how to make Thunderbird behave here: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=b

Re: [U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Mark Jackson
Mark Jackson wrote: > This patch correctly sets up the guard time parameter in > the Atmel LCDC driver. > > This works on the AVR32 platform, but needs to be tested > under the AT91 platform which shares the same code base. > > Signed-off-by: Mark Jackson > --- > drivers/video/atmel_lcdfb.c |

[U-Boot] [PATCH ... resent] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Mark Jackson
This patch correctly sets up the guard time parameter in the Atmel LCDC driver. This works on the AVR32 platform, but needs to be tested under the AT91 platform which shares the same code base. Signed-off-by: Mark Jackson --- drivers/video/atmel_lcdfb.c |5 +++-- 1 files changed, 3 insert

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread Dieter Kiermaier
Am Montag 22 Juni 2009 15:08:20 schrieb Dieter Kiermaier: This seems to be an issue regarding Gigabit / 100MBits uplink with current marvell git u-boot. If I work with 100MBit/s network show the reported errors. With gigabit connection everything seems to be working fine until now. André, thank

[U-Boot] Mips, U-Boot and ramdisk

2009-06-22 Thread Robert Hodaszi
Hello, Can anybody help me? I'm working on this for a few days... I'm working on a custom developed board, with Au1200, and I'd like to use the U-Boot as bootloader. I ported the U-Boot to my board, made a Linux kernel image, and a ramdisk image. To try out the configuration, I burn the U-Boot

[U-Boot] FW: [plagn...@jcrosoft.com: [RFC PATCH 1/6] integratorap: splitpci support]

2009-06-22 Thread Peter Pearse
ACK tghis patch Regards Peter > -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: 22 June 2009 13:36 > To: Peter Pearse > Subject: Re: [plagn...@jcrosoft.com: [RFC PATCH 1/6] > integratorap: splitpci support] > > On 08:16 Mon 22 Jun

[U-Boot] [PATCH 3/3] minor fixes for mvBL-M7 and use of common code

2009-06-22 Thread André Schwarz
MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler Registergericht: Amtsgericht Stuttgart, HRB 271090 Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim Reich rebased with minor fixes of invalid factory defaults. use common code. Signed-off-by: Andre Schwarz -

[U-Boot] [PATCH 2/3] minor fixes for mvBC-P (MPC5200)

2009-06-22 Thread André Schwarz
MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler Registergericht: Amtsgericht Stuttgart, HRB 271090 Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim Reich rebase and make use of common code. add i2c and configurable pci latency. Signed-off-by: Andre Schwarz

[U-Boot] [PATCH 1/3] factor out common code for matrix vision boards

2009-06-22 Thread André Schwarz
MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler Registergericht: Amtsgericht Stuttgart, HRB 271090 Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim Reich factor out common code for Matrix Vision based boards. Signed-off-by: Andre Schwarz --- board/matrix_

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread Dieter Kiermaier
Am Montag 22 Juni 2009 14:53:44 schrieb André Schwarz: > On Mon, 2009-06-22 at 14:41 +0200, Dieter Kiermaier wrote: > > André, > > > > > Dieter, > > > > > > On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote: > > > > Hi all, > > > > > > > > I've tried the first time booting a self compiled u

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Stefan Roese
Hi Dirk, I forgot to address your first issue. Please see below: > > +#if !defined(CONFIG_SYS_64BIT_VSPRINTF) > > +#warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output! > > +#endif > > + > > 1. This preprocessor warning is annoying. Why not enable it in all > configs where needed

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread André Schwarz
On Mon, 2009-06-22 at 14:41 +0200, Dieter Kiermaier wrote: > André, > > > Dieter, > > > > On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote: > > > Hi all, > > > > > > I've tried the first time booting a self compiled u-boot from > > > git.marvell.com U-Boot can be downloaded and started wi

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread Dieter Kiermaier
André, > Dieter, > > On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote: > > Hi all, > > > > I've tried the first time booting a self compiled u-boot from > > git.marvell.com U-Boot can be downloaded and started with openocd quite > > well. > > Boot messages (version is dirty due to a comme

[U-Boot] [PATCH] ppc4xx: Fix FDT EBC mappings on Canyonlands

2009-06-22 Thread Felix Radensky
This patch fixes 2 problems with FDT EBC mappings on Canyonlands. First, NAND EBC mapping was missing, making Linux NAND driver unusable on this board. Second, NOR remapping code assumed that NOR is always on CS0, however when booting from NAND NOR is on CS3. --- board/amcc/canyonlands/canyonlands

Re: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread André Schwarz
Dieter, On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote: > Hi all, > > I've tried the first time booting a self compiled u-boot from git.marvell.com > U-Boot can be downloaded and started with openocd quite well. > Boot messages (version is dirty due to a comment in board file): > > U

Re: [U-Boot] [PATCH] mtd: Update MTD infrastructure to support 64bit device size

2009-06-22 Thread Stefan Roese
Hi Dirk, On Saturday 20 June 2009 19:45:40 Dirk Behme wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: > >> 2. C++ style comment. Found by Wolfgang ;) This is because it's a copy from the Linux code. Not sure if we should change the coding style here. I really prefer to be in sync with the Linux

[U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot

2009-06-22 Thread Dieter Kiermaier
Hi all, I've tried the first time booting a self compiled u-boot from git.marvell.com U-Boot can be downloaded and started with openocd quite well. Boot messages (version is dirty due to a comment in board file): U-Boot 2009.06-rc2-02207-g14c575a-dirty (Jun 22 2009 - 13:40:45) Marvell-Sheevaplug

Re: [U-Boot] [PATCH v4 3/3] Marvell Sheevaplug Board support

2009-06-22 Thread Prafulla Wadaskar
Hi Jean, I observed that your arm/master is newly rebased, most of my patches are available here, where as Basic Kirkwood support is available on arm/next branch. I have applied Basic Kirkwood patches from next to master branch and tried to build it there. At the end I get build error saying EA

[U-Boot] [PATCH v4 6/6] MX31: Add NAND SPL boot support to i.MX31 PDK board.

2009-06-22 Thread Ulrich Gerster
Hello, I'm trying to boot from my board with a i.MX31 and small page (512Byte) NAND Flash. I applied the patches in v4 which introduce the CONFIG_PRELOADER macro. The only example I found where this macro is used is in part 6/6 of the patch. There a separate folder structure in nand_spl for the

Re: [U-Boot] [PATCH] ppc4xx: Fix FDT EBC mappings on Canyonlands

2009-06-22 Thread Stefan Roese
Hi Felix, On Monday 22 June 2009 13:08:17 Felix Radensky wrote: > This patch fixes 2 problems with FDT EBC mappings on Canyonlands. > First, NAND EBC mapping was missing, making Linux NAND driver > unusable on this board. Second, NOR remapping code assumed that > NOR is always on CS0, however when

[U-Boot] [PATCH] ppc4xx: Fix FDT EBC mappings on Canyonlands

2009-06-22 Thread Felix Radensky
This patch fixes 2 problems with FDT EBC mappings on Canyonlands. First, NAND EBC mapping was missing, making Linux NAND driver unusable on this board. Second, NOR remapping code assumed that NOR is always on CS0, however when booting from NAND NOR is on CS3. --- board/amcc/canyonlands/canyonlands

[U-Boot] [PATCH] kirkwood_egiga.c: fix build error

2009-06-22 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- drivers/net/kirkwood_egiga.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/kirkwood_egiga.c b/drivers/net/kirkwood_egiga.c index b43bbf2..3c5db19 100644 --- a/drivers/net/kirkwood_egiga.c +++ b/drivers/net/kirkwood_egiga.

Re: [U-Boot] show_boot_progess @ ppc not working

2009-06-22 Thread André Schwarz
Heiko, this issue looks still unfixed and is somewhat annoying. Im unable to use show_boot_progress with this weak definition in include/common.h. Simply re-defining the prototype in my local repo is not reasonable. How did you solve it ? Regards, André On Wed, 2008-12-10 at 08:27 +0100, H

Re: [U-Boot] NAND FDT mapping on Canyonlands

2009-06-22 Thread Stefan Roese
Hi Felix, On Thursday 11 June 2009 12:32:29 Felix Radensky wrote: > Canyonlands board port has its own version of ft_board_setup(), > overriding the generic one from cpu/ppc4xx/fdt.c. Canyonlands > version is missing the code that sets OPB/PLB mappings in device > tree. As a result, Linux NAND dri

Re: [U-Boot] Question regarding FPGA firmware load in u-boot

2009-06-22 Thread Dieter Kiermaier
Am Montag 22 Juni 2009 11:17:34 schrieb André Schwarz: > On Mon, 2009-06-22 at 11:00 +0200, Dieter Kiermaier wrote: > > André, > > > > > Dieter, > > > > > > On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote: > > > > André, > > > > > > > > > Dieter, > > > > > > > > > > On Fri, 2009-06-19 at

Re: [U-Boot] Question regarding FPGA firmware load in u-boot

2009-06-22 Thread Dieter Kiermaier
Prafulla, > > -Original Message- > > From: u-boot-boun...@lists.denx.de > > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Dieter Kiermaier > > Sent: Monday, June 22, 2009 2:30 PM > > To: André Schwarz > > Cc: u-boot@lists.denx.de > > Subject: Re: [U-Boot] Question regarding FPGA firm

[U-Boot] [PATCH 4/4 v2] arm nomadik: use 1000 as HZ value and rewrite timer code

2009-06-22 Thread Alessandro Rubini
From: Alessandro Rubini This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites timer code, which is now both correct and much smaller. Unused functions like udelay_masked() have been removed as no driver uses them, even the ones that are not currently active for this board. Signed

[U-Boot] [PATCH 3/4 v2] arm nomadik: allow Nand and OneNand to coexists

2009-06-22 Thread Alessandro Rubini
From: Alessandro Rubini The evaluation kit has both Nand and OneNand, both drivers are there and the two configurations only select a different default for the jffs partition. This adds the OneNand driver and cleans up storage. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- Makef

[U-Boot] [PATCH 2/4 v2] arm nomadik: cleanup reset

2009-06-22 Thread Alessandro Rubini
From: Alessandro Rubini There is only one public release of the Nomadik chip, so the ifdef in reset code as well as a define in the config file are not needed Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- cpu/arm926ejs/nomadik/reset.S | 13 + include/configs/nhk881

[U-Boot] [PATCH 1/4 v2] arm nomadik: rename board to nhk8815

2009-06-22 Thread Alessandro Rubini
From: Alessandro Rubini This is an error in my side in the initial submission: nobody calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- Makefile |6 +++--- board/st/{nm

[U-Boot] [PATCH 0/4 v2] Clean up the Nomadik board and add OneNand

2009-06-22 Thread Alessandro Rubini
This patch-set cleans up some glitches in my first submission. I posted it as a single patch and a separate timer patch. The first one is split as JC asked, and the timer patch is there as well since it is conceptually in the same set, although I had no comments on the timer part yet. JC: I didn't

Re: [U-Boot] Question regarding FPGA firmware load in u-boot

2009-06-22 Thread André Schwarz
On Mon, 2009-06-22 at 11:00 +0200, Dieter Kiermaier wrote: > André, > > > Dieter, > > > > On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote: > > > André, > > > > > > > Dieter, > > > > > > > > On Fri, 2009-06-19 at 17:46 +0200, Dieter Kiermaier wrote: > > > > > Hello List, > > > > > > > > >

Re: [U-Boot] Question regarding FPGA firmware load in u-boot

2009-06-22 Thread Dieter Kiermaier
André, > Dieter, > > On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote: > > André, > > > > > Dieter, > > > > > > On Fri, 2009-06-19 at 17:46 +0200, Dieter Kiermaier wrote: > > > > Hello List, > > > > > > > > I want to boot a (Lattice) FPGA from u-boot by using Slave Serial > > > > configur

Re: [U-Boot] ARM mach-types.h sync request

2009-06-22 Thread Daniel Gorsulowski
Daniel Gorsulowski wrote on monday, 2009-06-08, 08:25am: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > please sync include/asm-arm/mach-types.h with mach-types.h > from latest kernel source to enable support for boards > MEESC (number 2165) and OTC570 (number 2166). > > Thanks! > > Best regards,

[U-Boot] Relocating to my code.

2009-06-22 Thread prathika
hi everyone, I am working on a card based on PPC440EP, I am porting u-boot on this card. As I understand, the PPC initially boots from the flash and then relocates itself to RAM address where there is board_init_r() and main_loop() is called. I have an application code that simply does a loop ba

Re: [U-Boot] [PATCH] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Anatolij Gustschin
Mark Jackson wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: ... >> does not apply > > Sorry ... does that mean the patch fails in some way, or that this patch is > not relevant ? a...@wker:~/git/u-boot$ patch -p1 --dry-run < ~/devel/u-boot-video/\[U-Boot\]\ \[PATCH\]\ Atmel\ LCD\ driver\ GUAR

Re: [U-Boot] Question regarding FPGA firmware load in u-boot

2009-06-22 Thread André Schwarz
Dieter, On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote: > André, > > > Dieter, > > > > On Fri, 2009-06-19 at 17:46 +0200, Dieter Kiermaier wrote: > > > Hello List, > > > > > > I want to boot a (Lattice) FPGA from u-boot by using Slave Serial > > > configuration on a Marvell Kirkwood de

Re: [U-Boot] [PATCH] Atmel LCD driver GUARDTIME fix

2009-06-22 Thread Mark Jackson
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 13:46 Tue 16 Jun , Mark Jackson wrote: >> This patch correctly sets up the guard time parameter in >> the Atmel LCDC driver. >> >> This works on the AVR32 platform, but needs to be tested >> under the AT91 platform which shares the same code base. >>