Re: [U-Boot] [PATCH v5 1/3] ARM: Tegra: FDT: Add USB EHCI function for T30/T114

2013-11-13 Thread Andreas Müller
On Fri, Jun 21, 2013 at 6:20 PM, Stephen Warren wrote: > On 06/21/2013 05:05 AM, Jim Lin wrote: >> Add DT node for USB EHCI function. >> Add support for T30-Cardhu, T30-Beaver, T114-Dalmore boards. > >> Changes in v5: >> - Move changes on fdtdec.h and fdtdec.c to patch 2/3 >> - Modify PHY type t

[U-Boot] OMAP Reset fails when kernel governor 'ondemand' is active

2012-08-30 Thread Andreas Müller
Hi, hope somebody here might help: I have tried with many combinations of u-boot: 2011.09 / 2011.07 kernel 3.2.19 / 3.5 / 3.6rc3 gumstix OveroWater (TI OMAP 3530) / OveroFireStorm (TI DM3730)) All tested combinations share the same bug: As soon as I activate governor 'ondemand' and try to resta

Re: [U-Boot] [PATCH] omap_hsmmc: Wait for CMDI to be clear

2012-01-31 Thread Andreas Müller
Fix originally spotted by Peter Bigot. > > Tested-by: Peter A. Bigot > Tested-by: Robert Nelson > Signed-off-by: Tom Rini Tested-by: Andreas Müller ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] omap: mmc: Raise timeout value to 20ms

2012-01-25 Thread Andreas Müller
On Wednesday, January 11, 2012 04:34:05 PM Tom Rini wrote: > I ordered the same card Peter sees failure on and it arrived > yesterday. I'm formatting it now and will see if I can duplicate the > problem here today. ping? Andreas ___ U-Boot mailing list

Re: [U-Boot] OMAP3 performance regression in 2011.12

2012-01-16 Thread Andreas Müller
On Monday, January 16, 2012 05:34:12 PM Philip Balister wrote: > > I built u-boot with this change reverted and compared the amount of time > it took to build sip from source. > > Reverting the change improved compile time by about a factor of four, so > it looks like the kernel does not properly

Re: [U-Boot] [PATCH v2 0/6] overo: add SPL support

2012-01-13 Thread Andreas Müller
On Tuesday, January 03, 2012 05:23:34 PM Tom Rini wrote: > On Thu, Dec 22, 2011 at 4:04 AM, Andreas Müller wrote: > > I manually sent this series to Steve as suggested in review by Tom > > Parts 1 to 5 are fine and I've sent my comments on 6, thanks! Tom, 1-5: Can you

Re: [U-Boot] [PATCH] omap: mmc: Raise timeout value to 20ms

2012-01-11 Thread Andreas Müller
On Wednesday, January 04, 2012 01:22:29 AM Peter Bigot wrote: > I got this to work with two changes: > > * s/MMC_TIMEOUT_USEC/MMC_TIMEOUT_MSEC/g and define MMC_TIMEOUT_MSEC > 20, since get_timer does operate on msec in the current meta-ti > BeagleBoard-xM > > * The patch below, which is what I

[U-Boot] [PATCH v3 7/7] overo: add SPL support

2012-01-04 Thread Andreas Müller
* implementation based on ti beagleboard/omap3evm * timing data and i2c workaround for revision 0 boards taken from x-loader * run-tested with overo revision 0 and 1 / boot from NAND and SDcard * run-tested with x-loader Signed-off-by: Andreas Müller --- arch/arm/include/asm/arch-omap3/mem.h

[U-Boot] [PATCH v3 6/7] omap_rev_string: output to stdout

2012-01-04 Thread Andreas Müller
* avoid potential buffer overflows * allow SPL-build not to output "Texas Instruments Revision detection unimplemented" Signed-off-by: Andreas Müller --- arch/arm/cpu/armv7/omap-common/hwinit-common.c | 10 -- arch/arm/cpu/armv7/omap-common/spl.c | 10 --

[U-Boot] [PATCH v3 5/7] OMAP SPL: call timer_init in s_init to make udelay work earlier

2012-01-04 Thread Andreas Müller
Signed-off-by: Andreas Müller --- arch/arm/cpu/armv7/omap-common/spl.c |2 -- arch/arm/cpu/armv7/omap3/board.c |2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/omap-common/spl.c b/arch/arm/cpu/armv7/omap-common/spl.c index 9c35a09..74fea4f

[U-Boot] [PATCH v3 4/7] drivers/i2c/omap24xx_i2c.c: move all local variables to SRAM

2012-01-04 Thread Andreas Müller
this patch it is ensured that all variables used by omap24xx_i2c.c are located in SRAM. Signed-off-by: Andreas Müller --- drivers/i2c/omap24xx_i2c.c | 13 + 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c index

[U-Boot] [PATCH v3 2/7] board/overo/overo.c: replace printf with one argument by puts

2012-01-04 Thread Andreas Müller
Signed-off-by: Andreas Müller --- board/overo/overo.c | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/board/overo/overo.c b/board/overo/overo.c index 3c60b06..4a20c7f 100644 --- a/board/overo/overo.c +++ b/board/overo/overo.c @@ -119,7 +119,7 @@ int

[U-Boot] [PATCH v3 3/7] include/configs/omap3_overo.h: several cleanups

2012-01-04 Thread Andreas Müller
* remove unused macros * remove unused macro values * align tabs * remove Free Software Foundation address Signed-off-by: Andreas Müller --- include/configs/omap3_overo.h | 69 ++-- 1 files changed, 31 insertions(+), 38 deletions(-) diff --git a/include

[U-Boot] [PATCH v3 1/7] drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts

2012-01-04 Thread Andreas Müller
Signed-off-by: Andreas Müller --- drivers/i2c/omap24xx_i2c.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c index 4ae237a..271ed60 100644 --- a/drivers/i2c/omap24xx_i2c.c +++ b/drivers/i2c/omap24xx_i2c.c

[U-Boot] [PATCH v3 0/7] overo: add SPL support

2012-01-04 Thread Andreas Müller
#x27;t separate SPL specific configurations [6] V2 -> V3 * modify omap_rev_string [6] * CONFIG_SYS_TEXT_BASE back to 0x80008000 [7] * modify CONFIG_SYS_SPL_MALLOC_START / CONFIG_SYS_SPL_MALLOC_SIZE / CONFIG_SPL_BSS_START_ADDR to avoid conflicts with CONFIG_SYS_TEXT_BASE [7] Andreas Müller (7): driv

Re: [U-Boot] [PATCH] omap: mmc: Raise timeout value to 20ms

2012-01-04 Thread Andreas Müller
On Wednesday, January 04, 2012 01:22:29 AM you wrote: > On Tue, Jan 3, 2012 at 2:50 PM, Peter Bigot wrote: > > On Tue, Jan 3, 2012 at 2:24 PM, Tom Rini wrote: > >> With certain SD cards the code detects a timeout when the hardware > >> has not timed out. We change the timeout used to match the k

Re: [U-Boot] [PATCH v2 0/6] overo: add SPL support

2011-12-22 Thread Andreas Müller
I manually sent this series to Steve as suggested in review by Tom Andreas ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2 6/6] overo: add SPL support / CONFIG_SYS_TEXT_BASE changed to 0x80100000

2011-12-22 Thread Andreas Müller
* implementation based on ti beagleboard/omap3evm * timing data and i2c workaround for revision 0 boards taken from x-loader * run-tested with overo revision 0 and 1 / boot from NAND and SDcard Signed-off-by: Andreas Müller --- arch/arm/cpu/armv7/omap-common/spl.c |4 ++ arch/arm/include

[U-Boot] [PATCH v2 4/6] drivers/i2c/omap24xx_i2c.c: move all local variables to SRAM

2011-12-22 Thread Andreas Müller
this patch it is ensured that all variables used by omap24xx_i2c.c are located in SRAM. Signed-off-by: Andreas Müller --- drivers/i2c/omap24xx_i2c.c | 13 + 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c index

[U-Boot] [PATCH v2 5/6] OMAP SPL: call timer_init in s_init to make udelay work earlier

2011-12-22 Thread Andreas Müller
Signed-off-by: Andreas Müller --- arch/arm/cpu/armv7/omap-common/spl.c |2 -- arch/arm/cpu/armv7/omap3/board.c |2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/omap-common/spl.c b/arch/arm/cpu/armv7/omap-common/spl.c index 9c35a09..74fea4f

[U-Boot] [PATCH v2 2/6] board/overo/overo.c: replace printf with one argument by puts

2011-12-22 Thread Andreas Müller
Signed-off-by: Andreas Müller --- board/overo/overo.c | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/board/overo/overo.c b/board/overo/overo.c index 3c60b06..4a20c7f 100644 --- a/board/overo/overo.c +++ b/board/overo/overo.c @@ -119,7 +119,7 @@ int

[U-Boot] [PATCH v2 3/6] include/configs/omap3_overo.h: several cleanups

2011-12-22 Thread Andreas Müller
* remove unused macros * remove unused macro values * align tabs * remove Free Software Foundation address Signed-off-by: Andreas Müller --- include/configs/omap3_overo.h | 69 ++-- 1 files changed, 31 insertions(+), 38 deletions(-) diff --git a/include

[U-Boot] [PATCH v2 0/6] overo: add SPL support

2011-12-22 Thread Andreas Müller
#x27;t separate SPL specific configurations [6] Andreas Müller (6): drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts board/overo/overo.c: replace printf with one argument by puts include/configs/omap3_overo.h: several cleanups drivers/i2c/omap24xx_i2c.c: move all local variab

[U-Boot] [PATCH v2 1/6] drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts

2011-12-22 Thread Andreas Müller
Signed-off-by: Andreas Müller --- drivers/i2c/omap24xx_i2c.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c index 4ae237a..271ed60 100644 --- a/drivers/i2c/omap24xx_i2c.c +++ b/drivers/i2c/omap24xx_i2c.c

[U-Boot] [PATCH] OMAP MMC: Add delay before waiting for status

2011-12-22 Thread Andreas Müller
* OMAP3530-GP ES3.1, CPU-OPP2, L3-165MHz, Max CPU Clock 600 mHz Die ID #112404035c140101b011 Signed-off-by: Andreas Müller --- drivers/mmc/omap_hsmmc.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-20 Thread Andreas Müller
On Tuesday, December 20, 2011 02:55:50 PM you wrote: > On Tue, Dec 20, 2011 at 4:20 AM, Igor Grinberg wrote: > > What about forging some very not optimized default DRAM settings, > > that suit any assembled DRAM and then when you have I2C access, > > reconfigure it - is it possible? > > The board

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-20 Thread Andreas Müller
On Tuesday, December 20, 2011 01:06:07 PM you wrote: > Dear Andreas, > > In message <201112201253.46991.schnitzelt...@gmx.de> you wrote: > > I agree to your concerns but - as I understood Steve Sakoman - here the > > > situation is slightly different: > I think you misunderstand. Yes I think too

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-20 Thread Andreas Müller
On Tuesday, December 20, 2011 12:41:08 PM you wrote: > Dear Tom Rini, > > In message you wrote: > > > I guess you really, really must use i2c before relocation? =A0If > > > possible, this should be avoided in the first place. > > > > Yes, board rev detection to know how to configure SDRAM. > >

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-19 Thread Andreas Müller
On Tuesday, December 20, 2011 02:08:18 AM Tom Rini wrote: > > 'objdump -dSt' shows (the memory mappings I attached were not really > > helpful - sorry next time I know): > > > >4020ae14 l O .data 0004 i2c_base > >8068 l O .bss 0004 current_bus > >806c

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-19 Thread Andreas Müller
On Thursday, December 15, 2011 10:12:59 PM Andreas Müller wrote: > On Thu, Dec 15, 2011 at 7:34 AM, Andreas Müller wrote: > > I tried the following (as you can see I already commented out the > > i2c-read- > > write > > > for test): > > > > int

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-15 Thread Andreas Müller
On Wednesday, December 14, 2011 06:24:13 PM Steve Sakoman wrote: > > I think you will also need to update the get_board_revision function > to ensure that SPL works with very early Overo revisions. > > Note this excerpt from the X-loader get_board_revision funtion: > > /* board revisions <

Re: [U-Boot] [PATCH] overo: add SPL support

2011-12-14 Thread Andreas Müller
On Wednesday, December 14, 2011 06:24:13 PM you wrote: > > I think you will also need to update the get_board_revision function > to ensure that SPL works with very early Overo revisions. > > Note this excerpt from the X-loader get_board_revision funtion: > > /* board revisions <= R2410 co

[U-Boot] [PATCH] overo: add SPL support

2011-12-14 Thread Andreas Müller
* implemenatation based on ti beagleboard/omap3evm * timing data taken from x-loader * run-tested with overo release 0 and 1 / boot from NAND and SDcard Signed-off-by: Andreas Müller --- arch/arm/include/asm/arch-omap3/mem.h | 27 board/overo/config.mk | 28

[U-Boot] Is there a branch with support for Karo TX51?

2011-10-24 Thread Andreas Müller
Hi, grepping current master for tx51 gives: arch/arm/include/asm/mach-types.h:#define MACH_TYPE_TX51 2529 arch/arm/include/asm/mach-types.h:#ifdef CONFIG_MACH_TX51 arch/arm/include/asm/mach-types.h:# define machine_arch_type MACH_TYPE_TX51 arch/arm/include/asm/mach-types.h:# de