[U-Boot] u-boot-ti next updated

All,
I've updated the u-boot-ti next tree with quite a few patches. There are instances were multiple patches modify the same file. Can the OMAP 3 boards be tested to see if things are ok?
It will be nice to have this info before I send Tom a pull request some time next week. This pull request will have some DaVinci fixes and updates which I can test by myself :-)
Thanks, Sandeep

Paulraj, Sandeep wrote:
All,
I've updated the u-boot-ti next tree with quite a few patches. There are instances were multiple patches modify the same file. Can the OMAP 3 boards be tested to see if things are ok?
Compile test of u-boot-ti/next (head c27339b41e49cd89c2ea802a490b175ac7ad89ff "OMAP3: make gpmc_config as const") ./MAKEALL ARM_CORTEX_A8:
1. All non-SDP3430 boards have
mem.c: In function 'gpmc_init': mem.c:250: warning: assignment discards qualifiers from pointer target type
2. Zoom2 fails to build with
zoom2.c:54: error: conflicting types for 'enable_gpmc_cs_config' /include/asm/arch/sys_proto.h:38: error: previous declaration of 'enable_gpmc_cs_config' was here
3. New SDP3430 has
eth.c:497:2: warning: #warning Ethernet driver is deprecated. Please update to use CONFIG_NET_MULTI
Reverting
c27339b41e49cd89c2ea802a490b175ac7ad89ff "OMAP3: make gpmc_config as const"
http://git.denx.de/?p=u-boot/u-boot-ti.git;a=commit;h=c27339b41e49cd89c2ea80...
fixes 1 + 2. Sounds like this patch needs an update before we should apply it.
Best regards
Dirk

On Sat, Oct 10, 2009 at 12:38 PM, Paulraj, Sandeep s-paulraj@ti.com wrote:
All,
I've updated the u-boot-ti next tree with quite a few patches. There are instances were multiple patches modify the same file. Can the OMAP 3 boards be tested to see if things are ok?
Compile and run test of the Overo build was fine with Tobi card. Later today I will try some of the other daughter cards to make sure it works with all of them.
Steve
It will be nice to have this info before I send Tom a pull request some time next week. This pull request will have some DaVinci fixes and updates which I can test by myself :-)
Thanks, Sandeep

On Sun, Oct 11, 2009 at 7:16 AM, Steve Sakoman sakoman@gmail.com wrote:
Compile and run test of the Overo build was fine with Tobi card. Later today I will try some of the other daughter cards to make sure it works with all of them.
Heh, I spoke too soon!
U-boot appeared to run fine, but it fails in it's main mission in life -- to load & execute the linux kernel.
Overo hangs after the uncompressing kernel message.
Steve

On Sun, Oct 11, 2009 at 7:16 AM, Steve Sakoman sakoman@gmail.com wrote:
Compile and run test of the Overo build was fine with Tobi card. Later today I will try some of the other daughter cards to make sure it works with all of them.
Heh, I spoke too soon!
U-boot appeared to run fine, but it fails in it's main mission in life -- to load & execute the linux kernel.
Overo hangs after the uncompressing kernel message.
Steve
That's not good.
Can you be kind enough to take a look at all the changes to
cpu/arm_cortexa8/omap3/mem.c
I am speaking from my DaVinci experience, small mistakes in the DDR timings resulted in similar hangs.
And I can see that it has changed
http://git.denx.de/?p=u-boot/u-boot-ti.git;a=commitdiff;h=f714f3a12c09260c50...
also this is another commit which affects overro
http://git.denx.de/?p=u-boot/u-boot-ti.git;a=commitdiff;h=5f0ae0c1e2b617c8b4...
Sandeep

Steve Sakoman wrote:
On Sun, Oct 11, 2009 at 7:16 AM, Steve Sakoman sakoman@gmail.com wrote:
Compile and run test of the Overo build was fine with Tobi card. Later today I will try some of the other daughter cards to make sure it works with all of them.
Heh, I spoke too soon!
U-boot appeared to run fine, but it fails in it's main mission in life -- to load & execute the linux kernel.
Overo hangs after the uncompressing kernel message.
Hmm, on beagle it seems to be fine, though.
g78c38ce (see below) is recent head of u-boot-ti/next:
http://git.denx.de/?p=u-boot/u-boot-ti.git;a=commit;h=78c38ce87f7423eedba844...
Best regards
Dirk
...
U-Boot 2009.08-00514-g78c38ce (Oct 12 2009 - 16:30:03)
OMAP3530-GP ES2.0, CPU-OPP2 L3-165MHz
OMAP3 Beagle board + LPDDR/NAND
I2C: ready
DRAM: 128 MB
NAND: 256 MiB
In: serial
Out: serial
Err: serial
Board revision Ax/Bx
Die ID #00000000000000000000000000000000
Hit any key to stop autoboot: 0
mmc1 is available
reading uImage
1824144 bytes read
## Booting kernel from Legacy Image at 80000000 ...
Image Name: Linux-2.6.28-omap1
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 1824080 Bytes = 1.7 MB
Load Address: 80008000
Entry Point: 80008000
Verifying Checksum ... OK
Loading Kernel Image ... OK
OK
Starting kernel ...
Uncompressing Linux.................................................................................................... Linux version 2.6.28-omap1 (kaltsi@kaltsbuntu) (gcc version 4.2.1) #1 Fri Mar 13 12:58:49 EET 2009 CPU: ARMv7 Processor [411fc082] revision 2 (ARMv7), cr=10c5387f
CPU: VIPT nonaliasing data cache, VIPT nonaliasing instruction cache
Machine: OMAP3 Beagle Board ...

On Mon, Oct 12, 2009 at 9:41 AM, Dirk Behme dirk.behme@googlemail.com wrote:
Steve Sakoman wrote:
On Sun, Oct 11, 2009 at 7:16 AM, Steve Sakoman sakoman@gmail.com wrote:
Compile and run test of the Overo build was fine with Tobi card. Later today I will try some of the other daughter cards to make sure it works with all of them.
Heh, I spoke too soon!
U-boot appeared to run fine, but it fails in it's main mission in life -- to load & execute the linux kernel.
Overo hangs after the uncompressing kernel message.
Hmm, on beagle it seems to be fine, though.
SDP3430 also seems to boot fine. Regards, Nishanth Menon

Steve Sakoman wrote:
On Sat, Oct 10, 2009 at 12:38 PM, Paulraj, Sandeep s-paulraj@ti.com wrote:
All,
I've updated the u-boot-ti next tree with quite a few patches. There are instances were multiple patches modify the same file. Can the OMAP 3 boards be tested to see if things are ok?
Compile and run test of the Overo build was fine with Tobi card. Later today I will try some of the other daughter cards to make sure it works with all of them.
Steve
It will be nice to have this info before I send Tom a pull request some time next week. This pull request will have some DaVinci fixes and updates which I can test by myself :-)
Thanks, Sandeep
Normally I could test most of the omap3 boards.
I have been having email troubles so I have enabled this account tom@bumblecow.com to be my backup.
Tom
U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
participants (5)
-
Dirk Behme
-
Nishanth Menon
-
Paulraj, Sandeep
-
Steve Sakoman
-
Tom Rix