Re: [U-Boot] [PATCH 1/3] tools/mkimage: Assume FDT image type for FIT images

2009-11-25 Thread Stefano Babic
Peter Tyser wrote: > When building a Flattened Image Tree (FIT) the image type needs to be > "flat_dt". Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a > regression which caused the user to need to specify the "-T flat_dt" > parameter on the command line when building a FIT image. Th

Re: [U-Boot] Please pull u-boot-ppc4xx/next

2009-11-25 Thread Stefan Roese
Hi Wolfgang, On Tuesday 24 November 2009 23:14:48 Wolfgang Denk wrote: > Please note that I still have this patch marked as open in my list: > > 10/22 Matthias Fuchs [U-Boot] [PATCH] ppc4xx: Remove autoupdate feature > from PLU405 board > > See http://thread.gmane.org/gmane.comp.boot-loader

[U-Boot] Please pull u-boot-ppc4xx/next

2009-11-25 Thread Stefan Roese
Hi Wolfgang, please pull this forgotten patch. Thanks. The following changes since commit 2f6f67da1b98b6d1dad2d80bc4e472c3bff3cd5a: Wolfgang Denk (1): Merge branch 'next' of git://www.denx.de/git/u-boot-ppc4xx into next are available in the git repository at: git://www.denx.de/git/

Re: [U-Boot] [PATCH] ppc4xx: Remove autoupdate feature from PLU405 board

2009-11-25 Thread Stefan Roese
On Thursday 22 October 2009 23:06:59 Matthias Fuchs wrote: > The autoupdate feature is not used on PLU405 boards. > So remove it. Applied to u-boot-ppc4xx/next. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenst

Re: [U-Boot] [PATCH] POST: Remove duplicated post_hotkey_pressed() functions

2009-11-25 Thread Stefan Roese
Hi Wolfgang, On Tuesday 24 November 2009 23:35:02 Wolfgang Denk wrote: > Hm... but the implementations were actually different. Some boards > > used ctrlc() so they would catch a (prebably previously pressed) ^C: > > --- a/board/amcc/katmai/katmai.c > > +++ b/board/amcc/katmai/katmai.c > > .. >

[U-Boot] [PATCH RFC] NAND: Improve read performance from Large Page NAND devices

2009-11-25 Thread Nick Thompson
Improve read performance from Large Page NAND devices. This patch employs the following concepts to produce a ~37% improvement in oob_first read speed (on a 300MHz ARM9). The time for a mid-buffer 2k page read is now 260us, 7.88MB/s (was 357us, 5.74MB/s). oob_first is probably the best case improv

Re: [U-Boot] Please pull u-boot-ti/master

2009-11-25 Thread Tom
s-paul...@ti.com wrote: > The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502: > Wolfgang Denk (1): > Merge branch 'master' of /home/wd/git/u-boot/custodians > > are available in the git repository at: > > git://git.denx.de/u-boot-ti.git master > > Grazvydas I

[U-Boot] Unable to launch menuconfig

2009-11-25 Thread Ioannis Kyriakopoulos
Hi all, I have downloaded the u-boot source and I am able to build it for my target (beagleboard). However, I am not able to launch menuconfig. I know that menuconfig works because I am able to launch it when I am building my Linux kernel. $ make ARCH=arm CROSS_COMPILE=arm-none-linux-gnue

Re: [U-Boot] [PATCH 8/8] nhk8815: added lcd support

2009-11-25 Thread Alessandro Rubini
I'm almost done with the requested changes on this patch set, will post V2 this evening after re-running ./makeall as needed. I've a question, though: >> +extern int nhk8815_backlight_on(void); /* in ./lcd.c */ > > Please move prototype decl;arations to some header file. Unfortunat

Re: [U-Boot] Unable to launch menuconfig

2009-11-25 Thread Ben Warren
On Wed, Nov 25, 2009 at 7:11 AM, Ioannis Kyriakopoulos < johnky...@hotmail.com> wrote: > Hi all, > > > > I have downloaded the u-boot source and I am able to build it for my target > (beagleboard). However, I am not able to launch menuconfig. I know that > menuconfig works because I am able to la

[U-Boot] [PATCH] examples/api/Makefile: add lib_arm/eabi_compat

2009-11-25 Thread Mike Rapoport
Some EABI conformant tool chains cause external references to utility functions like raise(); import such functions from lib_arm/eabi_compat.c Signed-off-by: Mike Rapoport --- examples/api/Makefile | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/examples/api/Ma

Re: [U-Boot] [PATCH] memsize: get correct memory size

2009-11-25 Thread Wolfgang Denk
Dear Minkyu Kang, In message <1f3430fb0911241800m5c9f4837kd90af1ab8fafd...@mail.gmail.com> you wrote: > > > But size of a memory bank cannot be 80 MB. It must always be a power > > of 2. > > As I said, memory bank is not 80MB. And as I said, get_ram_size() is designed to operate on a single ba

Re: [U-Boot] Unable to launch menuconfig

2009-11-25 Thread Ioannis Kyriakopoulos
Thanks for the reply. If menuconfig and Kconfig are not supported yet, is there a way to configure my U-boot version? From: Ben Warren [mailto:biggerbadder...@gmail.com] Sent: 25 November 2009 15:33 To: Ioannis Kyriakopoulos Cc: u-boot@lists.denx.de Subject: Re: [U-Boot] Unable to launch m

Re: [U-Boot] Unable to launch menuconfig

2009-11-25 Thread Ben Warren
Ioannis Kyriakopoulos wrote: > Thanks for the reply. > > > > If menuconfig and Kconfig are not supported yet, is there a way to configure > my U-boot version? > > > Of course. Please RTFM. regards, Ben ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 0/5] Introducing TI's New SoC/board AM3517EVM

2009-11-25 Thread Tom
hvaib...@ti.com wrote: > From: Vaibhav Hiremath > > AM3517 device is high-performance, industrial applications processor designed > and developed keeping Software Compatible with OMAP3 Processors. > On the next revision of your patch set, please run it through the linux kernel's checkpatch.pl s

Re: [U-Boot] [PATCH resend] at91: Enable slow master clock on meesc board

2009-11-25 Thread Tom
Daniel Gorsulowski wrote: > In some cases, we need low speed master clock. So depending on the > "mdiv" variable, the processor clock is divided by 2 (default) or 4. > > Signed-off-by: Daniel Gorsulowski > --- > board/esd/meesc/meesc.c | 24 > include/configs/meesc.h |

[U-Boot] [PATCH V2 0/9] display and keypad support for nhk8815

2009-11-25 Thread Alessandro Rubini
This patch set implements display and keypad support. To turn the display on I need the STMPE2401 port expander, set up as a separate driver in this patch set. It's the same set I sent for RFC on Oct 9 2009, with the requested fixes. I also added commit messages to each of them, and an initial nh

[U-Boot] [PATCH V2 1/9] nhk8815: change the order of initialization

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini Some inizialization was in board_late_init(), but to satisfy drivers added in the next patches must be performed in normal board_init. This patch leaves board_late_init() empty, but later patches fill it. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- boar

[U-Boot] [PATCH V2 2/9] video: add amba-clcd prime-cell

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini This adds support for the CLCD logic cell. It accepts precompiled register values for specific configuration through a board-supplied data structure. It is used by the Nomadik nhk8815, added by a later patch in this series. Signed-off-by: Alessandro Rubini Acked-by: And

[U-Boot] [PATCH V2 3/9] include/nomadik.h: add physical address for cldc

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- include/nomadik.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/nomadik.h b/include/nomadik.h index d9405fd..ea65b2d 100644 --- a/include/nomadik.h +++ b/include/nomadik.h @@

[U-Boot] [PATCH V2 4/9] drivers/misc: add stmpe2401 port extender and keypad controller

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini This driver is an i2c device acting as a port extender. Since the keypad can be configured to act on specific row and column lines, the specific setup is passed by the board file. This is used by the Nomadik nhk8815, through a later patch in this series. Signed-off-by: A

[U-Boot] [PATCH V2 5/9] nhk8815.h: define we need stmpe

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- include/configs/nhk8815.h |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/include/configs/nhk8815.h b/include/configs/nhk8815.h index a00c2fb..e1be45b 100644 --- a/include/config

[U-Boot] [PATCH V2 6/9] lcd: make 16bpp work

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini Support for 16bpp was supposed to be in the code but was not working. This makes it work and has been tested in the nhk8815 board. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- common/lcd.c | 27 +-- 1 files changed, 21 insertion

[U-Boot] [PATCH V2 7/9] nhk8815: added keypad

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini This patch adds keypad support for the nhk8815 board, based on the stmpe2401 driver. The keypad hosts 16 keys, so each of them sends a string instead of a single key. The provided keymap is only an example and must be customized according to the use case. Signed-off-by:

[U-Boot] [PATCH V2 8/9] nhk8815: start lower in RAM, so the 800x480 frame buffer fits

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini This simply moves u-boot to a lower address, as the frame buffer is allocated after u-boot itself in memory. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- board/st/nhk8815/config.mk |8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) diff -

[U-Boot] [PATCH V2 9/9] nhk8815: added lcd support

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini This adds lcd support for the board. It includes defines for 32-bit parameter as well, although support for LCD_COLOR32 is not yet in u-boot. This uses the stmpe2401 to turn on display backlight. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- board/st/nhk8

[U-Boot] [PATCH V4] Nomadik: fix reset_timer()

2009-11-25 Thread Alessandro Rubini
From: Alessandro Rubini Previous code was failing when reading back the timer less than 400us after resetting it. This lead nand operations to incorrectly timeout any now and then. Moreover, writing the load register isn't immediately reflected in the value register. We must wait for a clock edg

Re: [U-Boot] [PATCH v7 2/2] arm: A320: Add support for Faraday A320 evaluation board

2009-11-25 Thread Tom
Po-Yu Chuang wrote: > Dear Wolfgang and Tom, > > 2009/11/23 Wolfgang Denk : >> Dear Tom, >> In message <1253692384-3236-1-git-send-email-ratbert.chu...@gmail.com> Po-Yu >> Chuang wrote: >>> This patch adds support for A320 evaluation board from Faraday. This board >>> uses FA526 processor by defa

[U-Boot] Ttftp problem while retrieving a file

2009-11-25 Thread Abraham Arce
Hi, I am using ks8851snl ethernet driver from beagleboard + micrel. I am able to dhcp whatever file size but tftp only works the first time once board has been turned on. the dhcp comamnd will execute TftpStart() after getting all data from the server but not sure what specific initialization is d

Re: [U-Boot] Ttftp problem while retrieving a file

2009-11-25 Thread Wolfgang Denk
Dear Abraham Arce, In message you wrote: > > I am using ks8851snl ethernet driver from beagleboard + micrel. I am > able to dhcp whatever file size but tftp only works the first time > once board has been turned on. the dhcp comamnd will execute > TftpStart() after getting all data from the ser

Re: [U-Boot] Ttftp problem while retrieving a file

2009-11-25 Thread Abraham Arce
Wolfgang, >> I am using ks8851snl ethernet driver from beagleboard + micrel. I am >> able to dhcp whatever file size but tftp only works the first time >> once board has been turned on. the dhcp comamnd will execute >> TftpStart() after getting all data from the server but not sure what >> specifi

[U-Boot] Need some help with a UBI memory allocation issue

2009-11-25 Thread Hedwin Koning
Hi, I am interested in some thoughts, ideas from the uboot community with an issue I have with u-boot. When I use the following sequence of commands: nand erase /partition1 ubi part nand /partition1 ubi create aVolume1 nand erase /partition2 ubi part nand /partition2 ubi

Re: [U-Boot] Ttftp problem while retrieving a file

2009-11-25 Thread Ben Warren
Abraham, On Wed, Nov 25, 2009 at 3:35 PM, Abraham Arce wrote: > Wolfgang, > > >> I am using ks8851snl ethernet driver from beagleboard + micrel. I am > >> able to dhcp whatever file size but tftp only works the first time > >> once board has been turned on. the dhcp comamnd will execute > >> Tft

Re: [U-Boot] about ## Unknown FLASH on Bank 0

2009-11-25 Thread Peter Pan
I have checked this problem again, and find out the reason why sometimes we get a false value of the ID0 we read from norflash. When we read IDs from norflash, we first write the read id command: AMD_SEND_CMD(baseaddr, ACMD_READMODE); AMD_SEND_CMD((baseaddr | LATCH_OFFSET1), ACMD_UNLOCK1); AMD_SE

Re: [U-Boot] Ttftp problem while retrieving a file

2009-11-25 Thread Abraham Arce
>> I am basically using a version 1.1.4, hosted in omap4 git tree >> >> http://dev.omapzoom.org/?p=bootloader/u-boot.git;a=shortlog;h=refs/heads/omap4_dev >> > That's a few years old, and A LOT has changed since.  Please update to the > latest software and let us know if the problem still exists.

Re: [U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-11-25 Thread Tom
Wolfgang Denk wrote: > Dear Tom, > > In message <902963.84935...@web15002.mail.cnb.yahoo.com> > =?utf-8?B?6Zu3IOmrmA==?= wrote: >> In u-boot-2009.08/cpu/arm920t/start.S, the instruction of line 158 is >> "ldr r1, x3ff", but the effective bits in INTSUBMSK register of >> S3C2410 are [10...0]. So I

Re: [U-Boot] [PATCH 1/5] Introducing AM3517EVM support

2009-11-25 Thread Hiremath, Vaibhav
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Tuesday, November 24, 2009 1:13 AM > To: Hiremath, Vaibhav > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 1/5] Introducing AM3517EVM support > > Dear hvaib...@ti.com, > > In message <1258974382-26568-1-gi

Re: [U-Boot] [PATCH 2/5] am3517_evm_config options added to Makfile

2009-11-25 Thread Hiremath, Vaibhav
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Tuesday, November 24, 2009 1:14 AM > To: Hiremath, Vaibhav > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 2/5] am3517_evm_config options added to > Makfile > > Dear hvaib...@ti.com, > > In message <125897

Re: [U-Boot] [PATCH 3/5] Added configuration file for AM3517EVM

2009-11-25 Thread Hiremath, Vaibhav
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Tuesday, November 24, 2009 1:16 AM > To: Hiremath, Vaibhav > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 3/5] Added configuration file for > AM3517EVM > > Dear hvaib...@ti.com, > > In message <1258974524

Re: [U-Boot] [PATCH 4/5] AM3517EVM: Add mux configuration

2009-11-25 Thread Hiremath, Vaibhav
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Tuesday, November 24, 2009 1:19 AM > To: Hiremath, Vaibhav > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 4/5] AM3517EVM: Add mux configuration > > Dear hvaib...@ti.com, > > In message <1258974539-28130-1-

Re: [U-Boot] [PATCH 5/5] AM3517: Add support for EMIF4

2009-11-25 Thread Hiremath, Vaibhav
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Tuesday, November 24, 2009 1:21 AM > To: Hiremath, Vaibhav > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 5/5] AM3517: Add support for EMIF4 > > Dear hvaib...@ti.com, > > In message <1258974555-28173-1-gi

Re: [U-Boot] [PATCH 0/5] Introducing TI's New SoC/board AM3517EVM

2009-11-25 Thread Hiremath, Vaibhav
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Tuesday, November 24, 2009 1:33 AM > To: Paulraj, Sandeep > Cc: Hiremath, Vaibhav; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 0/5] Introducing TI's New SoC/board > AM3517EVM > > Dear "Paulraj, Sandeep", > >

[U-Boot] Contact List of otolaryngologists and 34 more specialties

2009-11-25 Thread Lacy Crum
Currently Practicing Medical Doctors in America 788,679 in total <> 17,724 emails Many different medical specialties Over a dozen sortable fields Now priced at: $395 ()()() IF YOU ORDER THIS WEEK YOU GET THESE AS A BO NUS ()()() Directory of US Pharma Companies Names and email addresses o

Re: [U-Boot] about ## Unknown FLASH on Bank 0

2009-11-25 Thread Wolfgang Denk
Dear Peter Pan, In message <48abf2c20911251756k1ca3fe19p26db4a65b68bc...@mail.gmail.com> you wrote: > > I have checked this problem again, and find out the reason why sometimes > we get a false value of the ID0 we read from norflash. > > When we read IDs from norflash, we first write the read i

Re: [U-Boot] about ## Unknown FLASH on Bank 0

2009-11-25 Thread Peter Pan
The part of code I given out is in my get_flash_size() function in my flash.c. This part of code is used to read out the Manufacture ID and Device ID of my nor flash. This maybe have no contribution to the source tree, but maybe others that having the same problem can get a clue for such problems.

[U-Boot] U-Boot hangs when board is attached to BDI2000

2009-11-25 Thread Dunda, Matthias
Hi all, I am trying to debug u-boot following the instructions in DULG 10.1. As mentioned in 10.1.1. before relocation I connect to the target an get desired first output: Remote debugging using jtag: 0xfffc in ?? () Even without setting a breakpoint then, I just say gdb to continue: (

Re: [U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-11-25 Thread Alessandro Rubini
> Does someone have the s3c2410 manual? 2410UserManual.pdf: USER'S MANUAL S3C2410A ­ 200MHz & 266MHz 32-Bit RISC Microprocessor Revision 1.0 [...] INTERRUPT SUB MASK (INTSUBMSK) REGISTER This register has 11 bits each of which is related to an interrupt source. [...] Bits 0..10

[U-Boot] Debugging U-boot after relocation

2009-11-25 Thread Dunda, Matthias
Hi again, following up on my other message, I split them up into seperate messages, as I think there are different reasons. When I start the target from the BDI shell with "RESET RUN" and wait until the "Hit any key to stop autoboot" message appears, I can then attach to the target : Remote debu