Re: [U-Boot] [PATCH RFC v2] OMAP: mmc: add support for second and third mmc channels

2010-06-18 Thread Steve Sakoman
On Fri, May 14, 2010 at 11:29 AM, Andy Fleming wrote: > On Thu, Apr 29, 2010 at 3:26 PM, Steve Sakoman wrote: >> This patch adds support for the second and third mmc channels on OMAP3 >> processors >> >> Boards wishing to use this feature should define CONFIG_SYS_MMC_SET_DEV >> >> Tested on Overo

Re: [U-Boot] [PATCH v3 00/10] Add support for TI OMAP4 SDP and Panda

2010-06-18 Thread Steve Sakoman
On Sat, 2010-06-19 at 00:19 +0200, Wolfgang Denk wrote: > Yes, please. Peter is absolutely right. And please keep in mind that > at each step in your patch series the code must be buildable and > runnable, so we can use git bisect to isolate problems. OK, will do. Version 4 will be on the way s

Re: [U-Boot] [PATCH v3 00/10] Add support for TI OMAP4 SDP and Panda

2010-06-18 Thread Wolfgang Denk
Dear Steve Sakoman, In message <1276898035.15574.235.ca...@quadra> you wrote: > On Fri, 2010-06-18 at 16:10 -0500, Peter Tyser wrote: ... > > It'd be preferred if you could reorganize the patch series to first make > > all CPU/SOC changes, then finally do 1 patch for each board. This is > > gener

[U-Boot] anyone out there using u-boot with pex8111 or pex8112 pcie-pci bridge chips?

2010-06-18 Thread Peter Hanson
All, An associate is considering putting one of these into a design hoping to solve an arcane hardware issue. I can't find any special drivers for these in u-boot.  Of course, that may mean they don't need special programming.  But I'm asking the list in the case it actually means trouble. Regar

[U-Boot] P.S. please see the attachment

2010-06-18 Thread Ail Zongo
Dear I need your services in a confidential matter regarding afamily beneficiary deposit In our bank.This requires aprivatearrangement.If you are willing to assist, get back to me.Mr.Ail Zongo FOR YOUR KIND ATTENTION.doc Description: MS-Word document _

Re: [U-Boot] Problems with creating an UBIFS partition with uboot

2010-06-18 Thread Matthew L. Creech
At a glance, one problem is the use of ubinize, which is intended to work when doing "bare NAND" flashing with no awareness of UBI. I.e. if you tried these steps with "rootfs.ubifs" rather than "rootfs.ubi.img", they'd probably work. However, that doesn't explain why the last attempt (doing a str

Re: [U-Boot] [PATCH v3 00/10] Add support for TI OMAP4 SDP and Panda

2010-06-18 Thread Steve Sakoman
On Fri, 2010-06-18 at 16:10 -0500, Peter Tyser wrote: > Hi Steve, > > > Steve Sakoman (10): > > ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7 > > ARMV7: Add basic support for TI OMAP4 > > ARMV7: Add support for TI OMAP4430 SDP > > ARMV7: Add support for TI OMAP4 Panda > > ARMV7: Restruc

Re: [U-Boot] ns16550.c compile problem

2010-06-18 Thread Wolfgang Denk
Dear sergej.stepa...@ids.de, In message <4206182445660643b9aeb8d4e55bbd0a1061c6a...@hermes2> you wrote: > > what do you say If i propose a patch for it: > > diff --git a/include/watchdog.h b/include/watchdog.h > index b959914..29439fa 100644 > --- a/include/watchdog.h > +++ b/include/watchdog.h >

Re: [U-Boot] [PATCH v3 00/10] Add support for TI OMAP4 SDP and Panda

2010-06-18 Thread Peter Tyser
Hi Steve, > Steve Sakoman (10): > ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7 > ARMV7: Add basic support for TI OMAP4 > ARMV7: Add support for TI OMAP4430 SDP > ARMV7: Add support for TI OMAP4 Panda > ARMV7: Restructure OMAP mmc driver to allow code sharing between > OMAP3 and OMA

[U-Boot] [PATCH v3 09/10] ARMV7: Enable i2c support on TI OMAP4 SDP

2010-06-18 Thread Steve Sakoman
This patch enables the i2c driver, i2c commands, and i2c multi-bus support Signed-off-by: Steve Sakoman Acked-by: Heiko Schocher --- include/configs/omap4_sdp4430.h | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/include/configs/omap4_sdp4430.h b/include/configs

[U-Boot] [PATCH v3 10/10] ARMV7: Enable i2c support on TI OMAP4 Panda

2010-06-18 Thread Steve Sakoman
This patch enables the i2c driver, i2c commands, and i2c multi-bus support Signed-off-by: Steve Sakoman Acked-by: Heiko Schocher --- include/configs/omap4_panda.h | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/include/configs/omap4_panda.h b/include/configs/om

[U-Boot] [PATCH v3 08/10] ARMV7: Restructure OMAP i2c driver to allow code sharing between OMAP3 and OMAP4

2010-06-18 Thread Steve Sakoman
This patch modifies the omap24xx driver so that it will also work with OMAP4. Signed-off-by: Steve Sakoman --- arch/arm/include/asm/arch-omap3/i2c.h | 149 +--- arch/arm/include/asm/arch-omap4/i2c.h | 74 ++ drivers/i2c/omap24xx_i2c.c

[U-Boot] [PATCH v3 07/10] ARMV7: Enable mmc support on TI OMAP4 Panda

2010-06-18 Thread Steve Sakoman
This patch enables the mmc driver as well as support for FAT and ext2. It also sets up environment settings to facilitate booting from mmc. Signed-off-by: Steve Sakoman --- include/configs/omap4_panda.h | 36 1 files changed, 36 insertions(+), 0 deletions(

[U-Boot] [PATCH v3 06/10] ARMV7: Enable mmc support on TI OMAP4430 SDP

2010-06-18 Thread Steve Sakoman
This patch enables the mmc driver as well as support for FAT and ext2. It also sets up environment settings to facilitate booting from mmc Signed-off-by: Steve Sakoman --- include/configs/omap4_sdp4430.h | 36 1 files changed, 36 insertions(+), 0 deletions

[U-Boot] [PATCH v3 05/10] ARMV7: Restructure OMAP mmc driver to allow code sharing between OMAP3 and OMAP4

2010-06-18 Thread Steve Sakoman
The architecture independent header is moved to drivers/mmc, and the architecture dependent headers reside in asm/arch-omap3 and asm/arch-omap4 Signed-off-by: Steve Sakoman --- arch/arm/include/asm/arch-omap4/mmc_host_def.h | 171 drivers/mmc/omap3_mmc.c

[U-Boot] [PATCH v3 04/10] ARMV7: Add support for TI OMAP4 Panda

2010-06-18 Thread Steve Sakoman
OMAP4 Panda is a reference board based on OMAP4430, an ARMV7 Cortex A9 CPU This patch adds minimum support for booting the board. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. U-boot currently relies on x-load for clock, mux, and SDRAM i

[U-Boot] [PATCH v3 03/10] ARMV7: Add support for TI OMAP4430 SDP

2010-06-18 Thread Steve Sakoman
OMAP4430 SDP is a reference board based on OMAP4430, an ARMV7 Cortex A9 CPU This patch adds minimum support for booting the board. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. U-boot currently relies on x-load for clock, mux, and SDRAM

[U-Boot] [PATCH v3 02/10] ARMV7: Add basic support for TI OMAP4

2010-06-18 Thread Steve Sakoman
This patch adds minimum support for OMAP4. Code which can be shared between OMAP3 and OMAP4 is placed in arch/arm/cpu/armv7/omap-common Signed-off-by: Aneesh V Signed-off-by: Steve Sakoman --- Makefile |7 + arch/arm/cpu/armv7/{omap3 => omap-common}

[U-Boot] [PATCH v3 01/10] ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7

2010-06-18 Thread Steve Sakoman
The purpose of this patch is to prepare for adding the OMAP4 architecture, which is Cortex A9 Cortex A8 and A9 both belong to the armv7 architecture, hence the name change. The two architectures are similar enough that substantial code can be shared. Signed-off-by: Aneesh V Signed-off-by: Stev

[U-Boot] [PATCH v3 00/10] Add support for TI OMAP4 SDP and Panda

2010-06-18 Thread Steve Sakoman
Note: I am taking over patch submission for OMAP4 from Aneesh. This is version 3, which takes into account all feedback to date, and has been rebased on the next branch. The folowing series adds support for two boards based upon the TI OMAP4430. The OMAP4430 is a Cortex-A9 based SOC from TI. T

Re: [U-Boot] ns16550.c compile problem

2010-06-18 Thread Sergej.Stepanov
Dear Wolfgang, many thanks for your answer. > Seems your subject line is misleading. This has little to do with > ns16550.c, but more with include/watchdog.h - or more precisely with > incorrect or missing definitions in your board config file. Sorry for my subject line. After some research i

[U-Boot] Problems with creating an UBIFS partition with uboot

2010-06-18 Thread Karl Krach
Hello all, I ve googled a lot and read many mailing list entries, but got stuck now with the following problem: => ubifsmount rootfs UBIFS error (pid 0): ubifs_read_node: bad node type (0 but expected 6) UBIFS error (pid 0): ubifs_read_node: bad node at LEB 0:0 Error reading superblock on volum

Re: [U-Boot] [PATCH] ARM: remove unused ATAG

2010-06-18 Thread Wolfgang Denk
Dear Martin, In message <47f3f98010ff784ebee6526eaab078d10635e...@tq-mailsrv.tq-net.de> you wrote: > > If you reference to the trab board, then yes it is still running. But > on this board a very very old version of U-Boot is running, and I don't > see, that this would change during the remaining

Re: [U-Boot] [PATCH] arch/arm/cpu/arm_cortexa8/omap3/cache.S: make build with older tools

2010-06-18 Thread Wolfgang Denk
Dear Albin Tonnerre, In message you wrote: > > > l2_cache_enable: > > - push {r0, r1, r2, lr} > > + stmfdr13!, {r0, r1, r2, lr} > >@ ES2 onwards we can disable/enable L2 ourselv= > es > >bl get_cpu_rev > >cmp r0, #CP

Re: [U-Boot] [PATCH] arch/arm/cpu/arm_cortexa8/omap3/cache.S: make build with older tools

2010-06-18 Thread Albin Tonnerre
Hi Wolfgang, On Fri, Jun 18, 2010 at 4:03 PM, Wolfgang Denk wrote: > diff --git a/arch/arm/cpu/arm_cortexa8/omap3/cache.S > b/arch/arm/cpu/arm_cortexa8/omap3/cache.S > index 0f63815..4b65ac5 100644 > --- a/arch/arm/cpu/arm_cortexa8/omap3/cache.S > +++ b/arch/arm/cpu/arm_cortexa8/omap3/cache.S >

Re: [U-Boot] [PATCH] arch/arm/cpu/arm_cortexa8/omap3/cache.S: make build with older tools

2010-06-18 Thread Wolfgang Denk
Dear Sandeep, In message <0554bef07d437848af01b9c9b5f0bc5d9ea4d...@dlee01.ent.ti.com> you wrote: > > > > I verified that the modified source code generates exactly the same > > binary code. > > Wolfgang, Thanks for taking acre of this. > > I do run MAKEALL but the toolchain I use is the lates

Re: [U-Boot] [PATCH] arch/arm/cpu/arm_cortexa8/omap3/cache.S: make build with older tools

2010-06-18 Thread Paulraj, Sandeep
> Subject: [PATCH] arch/arm/cpu/arm_cortexa8/omap3/cache.S: make build with > older tools > > The push / pop instructions used in this file are available only with > more recent tool chains: > > cache.S: Assembler messages: > cache.S:133: Error: bad instruction `push {r0,r1,r2,lr}' > cache.S:16

[U-Boot] [PATCH] arch/arm/cpu/arm_cortexa8/omap3/cache.S: make build with older tools

2010-06-18 Thread Wolfgang Denk
The push / pop instructions used in this file are available only with more recent tool chains: cache.S: Assembler messages: cache.S:133: Error: bad instruction `push {r0,r1,r2,lr}' cache.S:160: Error: bad instruction `pop {r1,r2,r3,pc}' cache.S:164: Error: bad instruction `push {r0,r1,r2,lr}' cach

Re: [U-Boot] [PATCH v2 01/10] ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7

2010-06-18 Thread Steve Sakoman
On Fri, Jun 18, 2010 at 4:53 AM, Grazvydas Ignotas wrote: > On Fri, Jun 18, 2010 at 1:17 AM, Steve Sakoman wrote: >> The purpose of this patch is to prepare for adding the OMAP4 architecture, >> which is Cortex A9 >> >> Cortex A8 and A9 both belong to the armv7 architecture, hence the name >> c

Re: [U-Boot] Building omap3_sdp3430 fails with older compilers

2010-06-18 Thread Grazvydas Ignotas
On Fri, Jun 18, 2010 at 12:25 PM, Wolfgang Denk wrote: > The changes introduced by this commit: > >        commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1 >        Author: Tom Rix >        Date:   Thu Sep 10 15:27:57 2009 -0400 > >            OMAP3 Move cache routine to cache.S > > added, among o

Re: [U-Boot] [PATCH v2 01/10] ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7

2010-06-18 Thread Grazvydas Ignotas
On Fri, Jun 18, 2010 at 1:17 AM, Steve Sakoman wrote: > The purpose of this patch is to prepare for adding the OMAP4 architecture, > which is Cortex A9 > > Cortex A8 and A9 both belong to the armv7 architecture, hence the name change. > > The two architectures are similar enough that substantial

[U-Boot] [PATCH 1/2] hwconfig: Fix stop characters parsing for subkeys

2010-06-18 Thread Anton Vorontsov
For the following hwconfig string: key1:subkey1=value1,subkey2=value2;key2:value3 The subkey2 cannot be extracted correctly. The parsing code looks for comma as a stopch, but there may be two kind of stop characters: a comma and a semicolon. Currently the code would return "value2;key2:value3"

[U-Boot] [PATCH 2/2] hwconfig: Add some unit tests

2010-06-18 Thread Anton Vorontsov
I use this for testing, and I think this might be useful in the future. Signed-off-by: Anton Vorontsov --- common/hwconfig.c | 55 + 1 files changed, 55 insertions(+), 0 deletions(-) diff --git a/common/hwconfig.c b/common/hwconfig.c index 8

Re: [U-Boot] [PATCH] ARM: remove unused ATAG

2010-06-18 Thread Martin Krause
u-boot-boun...@lists.denx.de wrote on Friday, June 18, 2010 12:50 PM: > Dear Minkyu Kang, > > In message <4c1b4aee.8090...@samsung.com> you wrote: >> ATAG_VIDEOLFB is not used anywhere. > > ... not any more, that is. > >> The belowing warning is occurred due to this ATAG. >> >> [0.00] I

Re: [U-Boot] [PATCH] ARM: remove unused ATAG

2010-06-18 Thread Wolfgang Denk
Dear Minkyu Kang, In message <4c1b4aee.8090...@samsung.com> you wrote: > ATAG_VIDEOLFB is not used anywhere. ... not any more, that is. > The belowing warning is occurred due to this ATAG. > > [0.00] Ignoring unrecognised tag 0x54410008 > > This patch fixed it. I think we should try t

Re: [U-Boot] [U-BOOT][PATCH 5/5] Add initial support for Freescale mx53evk board

2010-06-18 Thread Stefano Babic
Jason Liu wrote: > The patch adds initial support for the Freescale mx53evk board. > SD/MMC boot is supported > > Signed-off-by:Jason Liu Hi Jason, > diff --git a/arch/arm/include/asm/arch-mx53/sys_proto.h > b/arch/arm/include/asm/arch-mx53/sys_proto.h Identical to arch-mx51/sys_proto.h Do n

[U-Boot] [PATCH] ARM: remove unused ATAG

2010-06-18 Thread Minkyu Kang
ATAG_VIDEOLFB is not used anywhere. The belowing warning is occurred due to this ATAG. [0.00] Ignoring unrecognised tag 0x54410008 This patch fixed it. Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park --- arch/arm/lib/bootm.c | 43 +++

Re: [U-Boot] [U-BOOT][PATCH 4/5] serial_mxc: add support for MX53 processor

2010-06-18 Thread Liu Hui-R64343
Hi, Stefano > -Original Message- > From: Stefano Babic [mailto:sba...@denx.de] > Sent: 2010年6月18日 17:52 > To: Liu Hui-R64343 > Cc: w...@denx.de; u-boot@lists.denx.de > Subject: Re: [U-Boot] [U-BOOT][PATCH 4/5] serial_mxc: add support for MX53 > processor > > Jason Liu wrote: > > The patc

Re: [U-Boot] [U-BOOT][PATCH 3/5] MX53: Add pin and multiplexer definitions.

2010-06-18 Thread Liu Hui-R64343
Hi, Stefano, > -Original Message- > From: Stefano Babic [mailto:sba...@denx.de] > Sent: 2010年6月18日 17:48 > To: Liu Hui-R64343 > Cc: w...@denx.de; u-boot@lists.denx.de > Subject: Re: [U-Boot] [U-BOOT][PATCH 3/5] MX53: Add pin and multiplexer > definitions. > > Jason Liu wrote: > > The pat

Re: [U-Boot] [U-BOOT][PATCH 4/5] serial_mxc: add support for MX53 processor

2010-06-18 Thread Stefano Babic
Jason Liu wrote: > The patch adds support for the Freescale mx53 processor. > > Signed-off-by:Jason Liu > --- Hi Jason, > drivers/serial/serial_mxc.c |7 +++ > 1 files changed, 7 insertions(+), 0 deletions(-) > > diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c >

Re: [U-Boot] [U-BOOT][PATCH 1/5] MX53: Add initial support for the Freescale MX53

2010-06-18 Thread Liu Hui-R64343
Hi, Stefano > -Original Message- > From: Stefano Babic [mailto:sba...@denx.de] > Sent: 2010年6月18日 17:23 > To: Liu Hui-R64343 > Cc: w...@denx.de; u-boot@lists.denx.de > Subject: Re: [U-Boot] [U-BOOT][PATCH 1/5] MX53: Add initial support for the > Freescale MX53 > > Jason Liu wrote: > > Th

Re: [U-Boot] [U-BOOT][PATCH 3/5] MX53: Add pin and multiplexer definitions.

2010-06-18 Thread Stefano Babic
Jason Liu wrote: > The patch add header files to support the pin multiplexer > of the the Freescale i.MX53 processor. > > Signed-off-by:Jason Liu Hi Jason, > --- > arch/arm/include/asm/arch-mx53/iomux.h | 193 +++ > arch/arm/include/asm/arch-mx53/mx53_pins.h | 359 >

Re: [U-Boot] [U-BOOT][PATCH 5/5] Add initial support for Freescale mx53evk board

2010-06-18 Thread Wolfgang Denk
Dear Jason Liu, In message <12768745743391-git-send-email-r64...@freescale.com> you wrote: > The patch adds initial support for the Freescale mx53evk board. > SD/MMC boot is supported > > Signed-off-by:Jason Liu In addition to Stefano's comments (he is perfectly right: it makes zero sense to cr

Re: [U-Boot] [U-BOOT][PATCH 2/5] MX53: Add register definitions

2010-06-18 Thread Stefano Babic
Jason Liu wrote: > The patch add header files to support the Freescale i.MX53 > processor, setting definitions for internal registers. > > Signed-off-by:Jason Liu > --- > arch/arm/include/asm/arch-mx53/asm-offsets.h | 52 ++ > arch/arm/include/asm/arch-mx53/crm_regs.h| 708 >

[U-Boot] Building omap3_sdp3430 fails with older compilers

2010-06-18 Thread Wolfgang Denk
The changes introduced by this commit: commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1 Author: Tom Rix Date: Thu Sep 10 15:27:57 2009 -0400 OMAP3 Move cache routine to cache.S added, among other things, a number of "push" and "pop" instructions to arch/arm/

Re: [U-Boot] [U-BOOT][PATCH 1/5] MX53: Add initial support for the Freescale MX53

2010-06-18 Thread Stefano Babic
Jason Liu wrote: > The patch add initial support for the Freescale i.MX53 processor > (family arm cortex_a8). > > Signed-off-by:Jason Liu Hi Jason, > --- > arch/arm/cpu/arm_cortexa8/mx53/Makefile| 48 +++ > arch/arm/cpu/arm_cortexa8/mx53/clock.c | 458 >

Re: [U-Boot] [PATCH] DaVinci: Improve DaVinci SPI speed.

2010-06-18 Thread Wolfgang Wegner
Hi Nick, On Fri, Jun 18, 2010 at 09:26:59AM +0100, Nick Thompson wrote: > > (I'm not sure if U-Boot uses SPI for anything else anyway...) it can be useful for booting an FPGA. On some architectures this is faster than GPIO bit bang. This is of course board dependent, as implementation of the act

Re: [U-Boot] [PATCH] DaVinci: Improve DaVinci SPI speed.

2010-06-18 Thread Nick Thompson
On 17/06/10 18:38, Delio Brignoli wrote: > Hello Nick, > > On 17/06/2010, at 17:02, Nick Thompson wrote: >> On 01/06/10 12:36, Delio Brignoli wrote: >>> I have updated this patch based on the comments [1] by Wolfgang Denk and >>> removed unused variables. >>> [1][http://lists.denx.de/pipermail/u-

[U-Boot] compilation error for omap3sdp3430 with eldk4.1

2010-06-18 Thread Shrikumar Sharma
Hi Apologies if this is not the right forum for this question. Please let me know which is the right one if this is the case. I have installed eldk-4.1 and am trying to build u-boot for omap3_sdp3430_config. Basically the steps I followed were: make omap3_sdp3430_config make However this fails

[U-Boot] [U-BOOT][PATCH 5/5] Add initial support for Freescale mx53evk board

2010-06-18 Thread Jason Liu
The patch adds initial support for the Freescale mx53evk board. SD/MMC boot is supported Signed-off-by:Jason Liu --- MAINTAINERS|4 + MAKEALL|1 + Makefile |3 + arch/arm/include/asm

[U-Boot] [U-BOOT][PATCH 2/5] MX53: Add register definitions

2010-06-18 Thread Jason Liu
The patch add header files to support the Freescale i.MX53 processor, setting definitions for internal registers. Signed-off-by:Jason Liu --- arch/arm/include/asm/arch-mx53/asm-offsets.h | 52 ++ arch/arm/include/asm/arch-mx53/crm_regs.h| 708 ++ arch/arm/include/a

[U-Boot] [U-BOOT][PATCH 1/5] MX53: Add initial support for the Freescale MX53

2010-06-18 Thread Jason Liu
The patch add initial support for the Freescale i.MX53 processor (family arm cortex_a8). Signed-off-by:Jason Liu --- arch/arm/cpu/arm_cortexa8/mx53/Makefile| 48 +++ arch/arm/cpu/arm_cortexa8/mx53/clock.c | 458 arch/arm/cpu/arm_cortexa8/mx53/iomux.c

[U-Boot] [U-BOOT][PATCH 3/5] MX53: Add pin and multiplexer definitions.

2010-06-18 Thread Jason Liu
The patch add header files to support the pin multiplexer of the the Freescale i.MX53 processor. Signed-off-by:Jason Liu --- arch/arm/include/asm/arch-mx53/iomux.h | 193 +++ arch/arm/include/asm/arch-mx53/mx53_pins.h | 359 2 files changed, 552 ins

[U-Boot] [U-BOOT][PATCH 4/5] serial_mxc: add support for MX53 processor

2010-06-18 Thread Jason Liu
The patch adds support for the Freescale mx53 processor. Signed-off-by:Jason Liu --- drivers/serial/serial_mxc.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c index 4b93e7b..e488595 100644 --- a/drivers/se