[U-Boot] [PATCH] arm: atmel: eb_cpux9k2: config clean up

2013-11-29 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" * remove mature defines from board config Signed-off-by: Jens Scharsig (BuS Elektronik) --- include/configs/eb_cpux9k2.h | 4 1 file changed, 4 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h ind

Re: [U-Boot] [PATCH 1/6] video: remove AT91 legacy API from bus_vcxk

2013-11-04 Thread Jens Scharsig
PIO_CODR = PIN; > - > - #define VCXK_ACKNOWLEDGE\ > - (!(((AT91PS_PIO) CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT)->\ > - PIO_PDSR & CONFIG_SYS_VCXK_ACKNOWLEDGE_PIN)) > -#endif > #elif defined(CONFIG_MCF52x2) > #include > #ifndef VCBITMASK >

Re: [U-Boot] [RFC PATCH 1/3] at91: add new gpio pin macros

2013-10-30 Thread Jens Scharsig
Am 30.10.2013 11:39, schrieb Andreas Bießmann: > Hi Bo, > > +Jens, he did the rewrite of the at91 gpio driver. > > > I think this is a job for gpio_is_valid() then. How is this case handled > in kernel? > > Here are a few things to discuss. First of all I'd like to get some > insights why the

[U-Boot] [PATCH] ARM: ATMEL: eb_cpux9k2: fix TEXT_BASE for ramboot target

2013-10-28 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" Since more functions are enabled, the eb_cpux9k2_ram target does not boot. This patch changed the TEXT_BASE, that the code fits between TEXT_BASE and ram end. Signed-off-by: Jens Scharsig (BuS Elektronik) --- include/configs/eb_cpux9k2.h

[U-Boot] [PATCH] Fix: nommu I2C adapter relocation error

2013-10-14 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" NoMMU systems have a access violation problem with i2c_reloc_fixup. Blame for it is a double relocation of the adapter itself. The i2c_adap_p is already relocated, if i2c_reloc_fixup is called. This patch removes the relocation of i2c_a

Re: [U-Boot] [RFC] i2c_reloc_fixup fails on m68k

2013-10-14 Thread Jens Scharsig
Hello Heiko, Am 2013-10-14 07:51, schrieb Heiko Schocher: > Hello Jens, > > Am 24.09.2013 09:41, schrieb Jens Scharsig: >> Hello Heiko, >>> Hello Jens, >>>> I have a access violation problem with i2c_reloc_fixup on coldfire >>>> m68k systems. >

Re: [U-Boot] Got u-boot-2012.10 running on at91rm9200 - but why does it work?

2013-10-10 Thread Jens Scharsig
Hello Arvid, >>> >> >> you don't need change start.s to boot from NOR. >> If shold set the #define CONFIG_SYS_TEXT_BASE 0x > > But that's just the thing, I *do* need this change for the board to boot. > CONFIG_SYS_TEXT_BASE is 0x1000 (this is the base address for the flash > memory

Re: [U-Boot] Got u-boot-2012.10 running on at91sam9200 - but why does it work?

2013-10-10 Thread Jens Scharsig
Hello Arvid, Am 2013-10-09 21:23, schrieb Arvid Brodin: > Hi, > > I managed to get u-boot-2012.10 to boot from NOR flash on a custom > at91rm9200 board by doing this: > > > Signed-off-by: Arvid Brodin > --- > arch/arm/cpu/arm920t/start.S | 8 +++- > 2 files changed, 4 insertions(+), 6 d

Re: [U-Boot] [RFC] i2c_reloc_fixup fails on m68k

2013-09-24 Thread Jens Scharsig
Hello Heiko, > Hello Jens, >> I have a access violation problem with i2c_reloc_fixup on coldfire >> m68k systems. >> >> I found out, the i2c_reloc_fixup tries to relocate the adapter itself, >> but at this time i2c_adap_p is already relocated. > > Which toolchain? m68k-elf-gcc (Sourcery CodeBench

[U-Boot] [RFC] i2c_reloc_fixup fails on m68k

2013-09-23 Thread Jens Scharsig
Hello, I have a access violation problem with i2c_reloc_fixup on coldfire m68k systems. I found out, the i2c_reloc_fixup tries to relocate the adapter itself, but at this time i2c_adap_p is already relocated. Can anybody confirm this? I think also m68k, backfin and nds32 systems are affected

[U-Boot] [PATCH] coldfire: cpu5282: increase malloc space to fix crash on start u-boot

2013-09-22 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" The malloc space is to small to boot, the current uboot 2013.10-rcX, This will fix the startup problems by increasing the mallog space to 4MiB. Signed-off-by: Jens Scharsig (BuS Elektronik) --- include/configs/eb_cpu5282.h | 2 +- 1 file

[U-Boot] [PATCH V2] arm: atmel: cpux9k2: increase malloc space to fix crash on start u-boot

2013-09-18 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" Since UBIFS is enabled for cpux9k2, more malloc space is needed. For the current uboot 2013.10-rcX the size is to small, this will fix the startup problems by increasing the mallog space to 4MiB. Signed-off-by: Jens Scharsig (BuS Elektronik) --

Re: [U-Boot] [PATCH] arm: atmel: cpux9k2: increase malloc space to fix crash on start u-boot

2013-09-18 Thread Jens Scharsig
Dear Andreas Bießmann: > > are you sure 1MiB is enough? We had from time to time problems > initializing an unsafe closed UBI (about 512MiB). With 4MiB malloc arena > however we never had these problems. Thank you for informations. To prevent future problems, I will send a 4MiB version (V2) tomor

[U-Boot] [PATCH] arm: atmel: cpux9k2: increase malloc space to fix crash on start u-boot

2013-09-18 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" Since UBIFS is enabled for cpux9k2, more malloc space is needed. For the current uboot 2013.10-rcX the size is to small, this will fix the startup problems by increasing the mallog space. Signed-off-by: Jens Scharsig (BuS Elektronik) --- inclu

Re: [U-Boot] U-Boot 2009.11.1 USB Issue and Building U-Boot 2013.07

2013-09-04 Thread Jens Scharsig
Dear Chuck Wical > usb start > > fatload usb 0 $(loadaddr) rootfs.ext2.gz.uboot where loadaddr is the same > address used by tftp. > Your load address 0 is wrong. On AT91 systems addresses greater than 0x2010 should be used (RAM location). Regards jens ___

[U-Boot] [PATCH V3] arm: atmel: cpux9k2: board update and enhancement

2013-08-21 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" - fix adresses in env settings in config header - add missing CONFIG_STANDALONE_LOAD_ADDR to eb_cpux9k2 config header - remove jffs2 support, board doesn't use this anymore - add ubifs support - change sizes and start for partitions Sign

Re: [U-Boot] [PATCH 4/4] gpio: atmel: add copyright and remove error header info

2013-08-21 Thread Jens Scharsig
ou please ACK this and maybe clarify why it was here at all? > This line has the origin in a wrong copy & paste >> + * Copyright (C) 2013 Bo Shen >> * >> * Copyright (C) 2009 Jens Scharsig (js_at...@scharsoft.de) >> * >> > > Best rega

Re: [U-Boot] [PATCH 4/4] gpio: atmel: add copyright and remove error header info

2013-08-21 Thread Jens Scharsig
a/drivers/gpio/at91_gpio.c > +++ b/drivers/gpio/at91_gpio.c > @@ -1,5 +1,5 @@ > /* > - * Memory Setup stuff - taken from blob memsetup.S > + * Copyright (C) 2013 Bo Shen > * > * Copyright (C) 2009 Jens Scharsig (js_at...@scharsoft.de) > * > Acked-by: Jens Scharsig

[U-Boot] [PATCH V2] arm: atmel: cpux9k2: board update and enhancement

2013-08-19 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" - remove jffs2 support, board doesn't use this anymore - add ubifs support - change sizes and start for partitions Signed-off-by: Jens Scharsig (BuS Elektronik) --- sorry about this fast V2. localversion-eb_cpux9k2 are now removed from

[U-Boot] [PATCH] arm: atmel: cpux9k2: board update and enhancement

2013-08-19 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" - remove jffs2 support, board doesn't use this anymore - add ubifs support - change sizes and start for partitions Signed-off-by: Jens Scharsig (BuS Elektronik) --- include/configs/eb

Re: [U-Boot] Splash Screen Enable in (u-boot-2013.01.01.tar.bz2) U-boot source code.

2013-03-26 Thread Jens Scharsig
Dear Nandakumar. > So, please share the SPLASH SCREEN image enable procedure for latest U-boot > (u-boot-2013.01.01.tar.bz2) source code for i.mx53loco. I'm not familiar with imx53loco board. But I see Splash and BMP are enabled in config. So you need only burn you splash to flash and set the en

Re: [U-Boot] Splash Screen Enable in (u-boot-2009.08.tar.gz) U-boot source code.

2013-03-25 Thread Jens Scharsig
Hello, Am 2013-03-25 10:55, schrieb nandakumar.ramasw...@pricoltech.com: > > Hello, > > I would like to enable & view the splash screen in U-Boot source > (u-boot-2009.08.tar.gz) code. > > Please help me to come-out from this task. Please read the U-Boot documentation

[U-Boot] [PATCH] m68k: fix debug call befor serial init

2013-01-15 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" There is a debug call in board.c befor serial interface was initialized. This moves the debug code behind serial_initialize call. Signed-off-by: Jens Scharsig (BuS Elektronik) --- arch/m68k/lib/board.c |4 ++-- 1 file changed, 2 insert

Re: [U-Boot] [STATUS] v2013.01-rc3 out

2013-01-11 Thread Jens Scharsig
something else that needs reviewing and > going in, thanks! > the relocation of serial functions on m68k arch does not work correct. we need the patch http://patchwork.ozlabs.org/patch/201421/ in finale release regards Jens Scharsig ___ U-Bo

Re: [U-Boot] [PATCH 1/1] m68k/lib: fix serial driver relocation

2013-01-11 Thread Jens Scharsig
gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE; > > + serial_initialize(); > + > monitor_flash_len = (ulong)&__init_end - dest_addr; > > #if defined(CONFIG_NEEDS_MANUAL_RELOC) > Acked-by: Jens Scharsig (BuS Elektronik) Tested-by: Jens Scharsig (BuS Elektronik) ___

Re: [U-Boot] [STATUS] v2013.01-rc2 released

2012-12-17 Thread Jens Scharsig
Am 2012-12-14 22:52, schrieb Tom Rini: > In my TODO list in patchwork, nothing strikes me as new feature posted > before the merge window closed. I see a few bug fixes I might pull in, > or might sit on to make sure they don't cause surprises. It's of course > possible I missed something, or som

[U-Boot] [PATCH] coldfire: eb_cpu5282: fix: boot from internal flash

2012-11-20 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" * By a sequence of unfavorable conditions in the config header file, the eb_cpu5282 booting from internal stopped after relocation. Blame it is a faulty value of CONFIG_SYS_MONITOR_BASE. This patch fix this by replace the wrong condition i

[U-Boot] [PATCH] Video: fix compiler warnings in bus_vcxk

2012-11-14 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" if a board uses the vcxk driver option CONFIG_SYS_VCXK_DOUBLEBUFFERD, compilier shows warnings. This patch will fix it. Signed-off-by: Jens Scharsig (BuS Elektronik) --- drivers/video/bus_vcxk.c |2 +- 1 file changed, 1 insertion(+),

[U-Boot] [PATCH V2] M68K: eb_cpu5282: general update and enhanced board support

2012-10-30 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" - update clock settings for higher perfomance - change standard baud rate to 115200 - fix flash base address - remove unused defines - add I2C support - switch form board dependent flash to cfi - remove board dependent flash code - use sdram bank

[U-Boot] [PATCH] M68K: eb_cpu5282: general update and enhanced board support

2012-10-29 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" - update clock settings for higher perfomance - change standard baud rate to 115200 - fix flash base address - remove unused defines - add I2C support - switch form board dependent flash to cfi - remove board dependent flash code - use sdram bank

[U-Boot] [PATCH] arm: atmel: cpux9k2: add missing cache configs

2012-10-19 Thread Jens Scharsig (BuS Elektronik)
From: "Jens Scharsig (BuS Elektronik)" * add CONFIG_SYS_CACHELINE_SIZE to eb_cpux9k2 board config header * dissable dcache (CONFIG_SYS_DCACHE_OFF) for eb_cpux9k2 Signed-off-by: Jens Scharsig (BuS Elektronik) --- This patch is send in reqest of <http://lists.denx.de/pipermai

Re: [U-Boot] [PATCH] eb_cpux9k2: add ram target configuration

2012-09-04 Thread Jens Scharsig
Dear Andreas Bießmann, >> >> Please could you also apply this open patch. > > sorry, this one slipped through. Please add some at91/atmel to the > subject line next time to get my attention. Blame it on myself. I forgot the arch comment in subject Best r

[U-Boot] [PATCH V2] atmel: eb_cpux9k2: add ram target configuration

2012-09-04 Thread Jens Scharsig (BuS Elektronik)
From: Jens Scharsig * add ram target for EB+CPUx9k2 board (eb_cpux9k2_ram_config) Signed-off-by: Jens Scharsig Signed-off-by: Jens Scharsig (BuS Elektronik) --- fix code styling boards.cfg |3 ++- include/configs/eb_cpux9k2.h |7 ++- 2 files changed, 8

Re: [U-Boot] [PATCH] eb_cpux9k2: add ram target configuration

2012-09-03 Thread Jens Scharsig
Dear Andreas Bießmann, Please could you also apply this open patch. I've just tested this against the current atmel and master tree. Thanks best regards Jens Scharsig Am 2012-04-29 20:01, schrieb Jens Scharsig: > * add ram target for EB+CPUx9k2 board (eb_cpux9k2_ram_config) > >

Re: [U-Boot] [PATCH] eb_cpux9k2: fix chip select

2012-09-03 Thread Jens Scharsig
Dear Andreas Bießmann, Please could you apply this open patch. I've just tested this against the current atmel and master tree. It works. best regards Jens Scharsig > * fix chip select initialization for frame buffer, this will be > increase frame buffer access speed > > Si

Re: [U-Boot] [STATUS] v2012.07-rc1 is out - release date July 23

2012-07-11 Thread Jens Scharsig
Am 2012-07-10 09:31, schrieb Wolfgang Denk: > Hi everybody, > > this is to let you know that the v2012.07-rc1 prerelease is out. > Tested-by: Jens Scharsig for boards maintained by myself (EB_MCF-EV123, eb_cpux9k2 and vl_ma2sc) Best regards, J

[U-Boot] [PATCH] rename EB+MCF-EV123 to its current marketing name EB+CPU5282

2012-05-02 Thread Jens Scharsig (BuS Elektronik)
From: Jens Scharsig * rename board directory to eb_cpu5282 * rename EB+MCF-EV123_.*config to eb_cpu5282_.*config * add Maintainer for EB+CPU5282 board * rename prompt Signed-off-by: Jens Scharsig (BuS Elektronik) --- MAINTAINERS|4 board/BuS

Re: [U-Boot] [PATCH] eb_cpux9k2: fix chip select

2012-04-29 Thread Jens Scharsig
Please ignore this patch, it was send with misconfigured mail server The resend http://patchwork.ozlabs.org/patch/155739/ is the valid one. Best regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

[U-Boot] [PATCH] eb_cpux9k2: add ram target configuration

2012-04-29 Thread Jens Scharsig
* add ram target for EB+CPUx9k2 board (eb_cpux9k2_ram_config) Signed-off-by: Jens Scharsig --- boards.cfg |3 ++- include/configs/eb_cpux9k2.h |5 + 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/boards.cfg b/boards.cfg index 3cf75c3..efca4fc 100644

[U-Boot] [PATCH] eb_cpux9k2: fix chip select

2012-04-29 Thread Jens Scharsig
* fix chip select initialization for frame buffer, this will be increase frame buffer access speed Signed-off-by: Jens Scharsig --- board/BuS/eb_cpux9k2/cpux9k2.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/BuS/eb_cpux9k2/cpux9k2.c b/board/BuS

Re: [U-Boot] [STATUS] v2012.04-rc2 and -rc3 are out

2012-04-20 Thread Jens Scharsig
push out April 21, 2012. Tested-by: Jens Scharsig for both boards (eb_cpux9k2 and EB_MCF-EV123) maintained by myself Best regards, Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH][resubmit] eb_cpux9k2: add USB host support to board

2012-04-07 Thread Jens Scharsig
Dear Marek Vasut, Dear e...@bus-elektronik.de, Am 2012-04-01 18:14, schrieb Marek Vasut: Dear Jens Scharsig, * add USB host support to eb_cpux9k2 board Did you test this too? Of course, I've test this with/against current RC1. Ok, I can pick this up and push through my st

Re: [U-Boot] [PATCH][resubmit] eb_cpux9k2: add USB host support to board

2012-04-06 Thread Jens Scharsig
Dear Marek Vasut, Dear e...@bus-elektronik.de, Am 2012-04-01 18:14, schrieb Marek Vasut: Dear Jens Scharsig, * add USB host support to eb_cpux9k2 board Did you test this too? Of course, I've test this with/against current RC1. Ok, I can pick this up and push through my staging .

[U-Boot] [PATCH][resubmit] eb_cpux9k2: add USB host support to board

2012-04-01 Thread Jens Scharsig
* add USB host support to eb_cpux9k2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index 9046cf0..eb05e2a 100644 --- a/include

Re: [U-Boot] [STATUS] v2012.04-rc1 is out

2012-03-31 Thread Jens Scharsig
lease. Btw. it's marked accepted in > patchwork, how come? I don't know, but I have following theory: Reinhard Meyer has accept the patch for long time for atmel tree. But since Reinhard is busy, there are no pull requests or rebases from/to atmel repository. Best regards, Jens Sch

Re: [U-Boot] [STATUS] v2012.04-rc1 is out

2012-03-31 Thread Jens Scharsig
2012.04-rc1. But for full functionality, please apply patch: http://patchwork.ozlabs.org/patch/104279/ Thanks and Best regards, Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage

2012-03-19 Thread Jens Scharsig (BuS Elektronik)
Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Signed-off-by: Jens Scharsig (BuS Elektronik) --- include/configs/at91sam9263ek.h |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) di

[U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary)

2012-03-19 Thread Jens Scharsig (BuS Elektronik)
Signed-off-by: Jens Scharsig (BuS Elektronik) --- include/configs/at91sam9263ek.h |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h index 8399246..f02f245 100644 --- a/include/configs/at91sam9263ek.h

[U-Boot] [PATCH] Fix: brocken boot message at serial line on AT91SAM9263-EK board

2012-03-19 Thread Jens Scharsig (BuS Elektronik)
Signed-off-by: Jens Scharsig (BuS Elektronik) --- board/atmel/at91sam9263ek/at91sam9263ek.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 41ec752..60ff1c0 100644 --- a/board

[U-Boot] [PATCH] * Fix: watchdog timed out, if flash blank (0xFF) blocks

2012-01-27 Thread Jens Scharsig (BuS Elektronik)
-> watchdog timed out mw.w $(copy_addr) 1;cp.b $(copy_addr) 1088 2 -> watchdog not timed out This patch adds an extra watchdog reset in front of flash ready check. Signed-off-by: Jens Scharsig (BuS Elektronik) --- drivers/mtd/cfi_flash.c |3 +++ 1 files chan

[U-Boot] [PATCH V2] add new board vl_ma2sc

2012-01-16 Thread Jens Scharsig
* add support for board VL+MA2SC * adds vl_ma2sc_config for standard NOR boot configuration * adds vl_ma2sc_ram_config for RAM load configuration Signed-off-by: Jens Scharsig --- Changes since V1: * remove dead targets from Makefile * remove fantasy mac address from config * fix: codesyle 0

Re: [U-Boot] [PATCH] add new board vl_ma2sc

2012-01-16 Thread Jens Scharsig
ATMEL_BASE_LCDC, }; This block i have "stolen" from at91sam9263 board. and #define CONFIG_ETHADDR 00:4D:41:02:52:43 /* MA2SC */ Can your teach me the right format for things like this? Thanks Jens Scharsig ___ U-Boo

[U-Boot] [PATCH] add new board vl_ma2sc

2012-01-15 Thread Jens Scharsig
* add support for board VL+MA2SC * adds vl_ma2sc_config for standard NOR boot configuration * adds vl_ma2sc_ram_config for RAM load configuration Signed-off-by: Jens Scharsig --- MAINTAINERS |1 + board/BuS/vl_ma2sc/Makefile | 54 board/BuS/vl_ma2sc/vl_ma2sc.c

Re: [U-Boot] Is FT232R chip supported in U-Boot?

2011-11-10 Thread Jens Scharsig
Am 2011-11-10 14:15, schrieb Mahavir Prasad: > Hello All, > > We have our new board and I am porting U-Boot on it. I am first trying to > get U-Boot's console. FT232R is populated on the board and I need to use it > for the showing the console. > > I looked into u-boot/drivers/serial folder but

[U-Boot] [PATCH V3] Arm: re-introduce the MACH_TYPE_XXXXXX for EB_CPUX9K2 board

2011-10-31 Thread Jens Scharsig
* re-introduce the MACH_TYPE_XX for EB_CPUX9K2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index 4324172..b08de4a 100644 --- a

Re: [U-Boot] [PATCH V2] ARM: re-introduce the MACH_TYPE_XXXXXX for EB_CPUX9K2 board

2011-10-31 Thread Jens Scharsig
Am 2011-10-31 08:46, schrieb Igor Grinberg: > Hi Jens, >> @@ -41,6 +41,8 @@ >> #define CONFIG_MISC_INIT_R >> #define CONFIG_BOARD_EARLY_INIT_F >> >> +#define MACH_TYPE_EB_CPUX9K2 1977 >> + > > While you are at it, probably, it will be a good time > to switch to the new standard and u

Re: [U-Boot] [PATCH] ARM: re-introduce the MACH_TYPE_XXXXXX for EB_CPUX9K2 board

2011-10-31 Thread Jens Scharsig
Am 30.10.2011 11:32, schrieb Albert ARIBAUD: > Hi Jens, Marek, > > Le 30/10/2011 00:47, Marek Vasut a écrit : >>> * re-introduce the MACH_TYPE_XX for EB_CPUX9K2 board >>> >>> Signed-off-by: Jens Scharsig >>> --- >>>include/conf

[U-Boot] [PATCH V2] ARM: re-introduce the MACH_TYPE_XXXXXX for EB_CPUX9K2 board

2011-10-31 Thread Jens Scharsig
* re-introduce the MACH_TYPE_XX for EB_CPUX9K2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index 4324172..ad51906 100644 --- a

[U-Boot] [PATCH] ARM: re-introduce the MACH_TYPE_XXXXXX for EB_CPUX9K2 board

2011-10-29 Thread Jens Scharsig
* re-introduce the MACH_TYPE_XX for EB_CPUX9K2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index 4324172..e437f25 100644 --- a

Re: [U-Boot] Uboot 1.3.4 - splash screen problem

2011-08-29 Thread Jens Scharsig
Am 2011-08-29 16:04, schrieb Ramonf: > > Hi, I'm running uboot 1.3.4 on AT91SAM9M10EKES board. I'm trying to load BMP > into it, but I get > "There is no valid bmp file at the given address" when I'm running bmp info. > > what I do is this: > > $ tftp 1 tftpboot/ramon.bmp > $ bmp i 1 >

Re: [U-Boot] Fwd: uboot compilation problem

2011-08-17 Thread Jens Scharsig
Dear Rajeev Rao Battu: > Hi, > I am working As R&D engineer. Presently i am compiling u-boot.2011.03 > and i am facing bit problem.following is the problem while compiling u-boot. > i am using cross compile tool chain. I am trying to compile for > AT91SAM9260/61 controller. > The AT91SAM9260

Re: [U-Boot] "armv7: integrate cache maintenance support" breaks km_kirkwood ethernet

2011-08-07 Thread Jens Scharsig
; And indeed after reverting this commit on current HEAD my board is usable > again. > > Any ideas how to fix this problem? At91 boards are also affected. Best regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] "armv7: integrate cache maintenance support" breaks km_kirkwood ethernet

2011-08-07 Thread Jens Scharsig
; And indeed after reverting this commit on current HEAD my board is usable > again. > > Any ideas how to fix this problem? At91 boards are also affected. Best regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH][ATMEL] add ATMEL_PMC_UHP define to at91sam9261/63 header

2011-07-31 Thread Jens Scharsig
Am 2011-08-01 03:51, schrieb Reinhard Meyer: > Dear Jens Scharsig, >> * add ATMEL_PMC_UHP define to at91sam9261/63 header >> >> Signed-off-by: Jens Scharsig >> --- >> arch/arm/include/asm/arch-at91/at91sam9261.h |1 + >> arch/arm/include/asm/arch-a

Re: [U-Boot] [PATCH] Fix: watchdog timed out, if using md5 command

2011-07-26 Thread Jens Scharsig
Dear Wolfgang Denk: > Dear Jens Scharsig, > > Arghhh. Line wrapped, too. > > This is the last time I'm gonna fix your patches. PLEASE fix your > mailer! > Sorry about the trouble. I have many times the word wrap will be deactivated. Our admin will reset this option

[U-Boot] [PATCH] Fix: watchdog timed out, if using md5 command

2011-07-18 Thread Jens Scharsig
* Fix: if using md5 command watchdog timed out * change function call md5(..) to the watchdog-safe variant md5_wd(..) to support watchdog reset Signed-off-by: Jens Scharsig --- common/cmd_md5sum.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_md5sum.c b

[U-Boot] [PATCH] Fix: watchdog timed out, if using sha1 command

2011-07-18 Thread Jens Scharsig
* Fix: if using sha1 command watchdog timed out * change function call sha1_csum(..) to the watchdog-safe variant sha1_csum_wd(..) to support watchdog reset Signed-off-by: Jens Scharsig --- common/cmd_sha1sum.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common

Re: [U-Boot] [PATCH V3] Fix: if using crc32 command watchdog timed out

2011-07-17 Thread Jens Scharsig
* Fix: if using crc32 command watchdog timed out * change function call crc32(..) to the watchdog-safe variant crc_32_wd(..) to support watchdog reset Signed-off-by: Jens Scharsig --- common/cmd_mem.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common

Re: [U-Boot] [PATCH V2] Fix: if using crc32 command watchdog timed out

2011-07-17 Thread Jens Scharsig
* Fix: if using crc32 command watchdog timed out * change function call crc32(..) to the watchdog save variant crc_32_wd(..) to support watchdog reset Signed-off-by: Jens Scharsig --- common/cmd_mem.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common

Re: [U-Boot] [PATCH] Fix: if using crc32 command watchdog timed out

2011-07-16 Thread Jens Scharsig
Hello, Am 2011-07-16 11:53, schrieb Albert ARIBAUD: > Hi Jens, > > Le 05/07/2011 09:26, Jens Scharsig a écrit : > >> * Fix: if using crc32 command watchdog timed out >> >> >> Signed-off-by: Jens Scharsig >> --- > > Nitpick: in addition to

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-12 Thread Jens Scharsig
Am 2011-07-12 18:00, schrieb Reinhard Meyer: > Dear Jens Scharsig, >> This is a resend without modifications by mail client Should it be better to say: The referenced email is ... ;-) > > Really? It seems the patch was completely omitted.. :) >

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-12 Thread Jens Scharsig
This is a resend without modifications by mail client Regards Jens ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-11 Thread Jens Scharsig
Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index c4b1e65..b1fcec7 100644 --- a/include/configs/eb_cpux9k2.h +++ b/include/configs

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-11 Thread Jens Scharsig
Am 2011-07-11 13:10, schrieb u-b...@emk-elektronik.de: > Dear Jens Scharsig, >> The patch is correct but anything between me an you/list modifies the mails. >> There are additional spaces in my file. >> >> Until I found why the mta's adds. I have attache the

Re: [U-Boot] [PATCH] Add CONFIG_AT91FAMILY to AT91RM9200 arch

2011-07-10 Thread Jens Scharsig
This patch is obsolete since 2011.06 regards Jens Scharsig > * Add CONFIG_AT91FAMILY to AT91RM9200 arch > > > Signed-off-by: Jens Scharsig > --- > > This will also fix brocken EB+CPUx9k2 board in Version 2011.03 > > arch/arm/include/asm/arch-at91/at91rm9200.h |

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-10 Thread Jens Scharsig
Am 10.07.2011 14:37, schrieb Albert ARIBAUD: Hi Jens, Le 10/07/2011 11:14, Jens Scharsig a écrit : * add USB host support to eb_cpux9k2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) This fails to

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-10 Thread Jens Scharsig
Am 2011-07-10 14:37, schrieb Albert ARIBAUD: > Hi Jens, > > Le 10/07/2011 11:14, Jens Scharsig a écrit : >> * add USB host support to eb_cpux9k2 board >> >> Signed-off-by: Jens Scharsig >> --- >> include/configs/eb_cpux9k2.h | 14 ++ >> 1

[U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-10 Thread Jens Scharsig
* add USB host support to eb_cpux9k2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index c4b1e65..b1fcec7 100644 --- a

[U-Boot] [PATCH] Fix: if using crc32 command watchdog timed out

2011-07-05 Thread Jens Scharsig
* Fix: if using crc32 command watchdog timed out Signed-off-by: Jens Scharsig --- common/cmd_mem.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/cmd_mem.c b/common/cmd_mem.c index a5576aa..4daa1b3 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c

Re: [U-Boot] [PATCH][ATMEL] Fix compiler error for cpu at91sam9, if lowlevel init is enabled

2011-07-03 Thread Jens Scharsig
Am 2011-07-03 23:06, schrieb Albert ARIBAUD: > Hi Jens, > > Le 30/06/2011 11:51, Jens Scharsig a écrit : >> Am 2011-06-30 10:54, schrieb Reinhard Meyer: >>> >>> PS: for better readability of Submitter it would be nice >>> to have real names with the e

[U-Boot] [PATCH][ATMEL] add ATMEL_PMC_UHP define to at91sam9261/63 header

2011-06-30 Thread Jens Scharsig
* add ATMEL_PMC_UHP define to at91sam9261/63 header Signed-off-by: Jens Scharsig --- arch/arm/include/asm/arch-at91/at91sam9261.h |1 + arch/arm/include/asm/arch-at91/at91sam9263.h |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-at91

Re: [U-Boot] [PATCH][ATMEL] Fix compiler error for cpu at91sam9, if lowlevel init is enabled

2011-06-30 Thread Jens Scharsig
Am 2011-06-30 10:54, schrieb Reinhard Meyer: > > PS: for better readability of Submitter it would be nice > to have real names with the e-Mail address ;) Dear Reinhard Meyer, sorry about this. I used a different computer than usual to create this patch. Best regards Jens

Re: [U-Boot] [PATCH atmel/next 5/7] eb_cpux9k2: use atmel_usart

2011-06-26 Thread Jens Scharsig
Am 12.06.2011 13:49, schrieb Andreas Bießmann: > Signed-off-by: Andreas Bießmann > CC: Jens Scharsig > --- > board/BuS/eb_cpux9k2/cpux9k2.c |7 +++ > include/configs/eb_cpux9k2.h |6 -- > 2 files changed, 11 insertions(+), 2 deletions(-) > Acked-by: Je

Re: [U-Boot] [PATCH v2] arm920t/at91: use new clock features from libat91-common

2011-06-26 Thread Jens Scharsig
Am 08.06.2011 22:10, schrieb Andreas Bießmann: > This patch enables the new clock features from new libat91-common. This > is a required step to get at91rm9200_usart replaced by atmel_usart > driver. > > Signed-off-by: Andreas Bießmann > > Cc: Jens Scharsig > Cc: Eric Béna

Re: [U-Boot] [PATCH 2/2] arm920t/at91: use new clock features from libat91-common

2011-06-08 Thread Jens Scharsig
u/arm920t/at91' make[1]: *** No rule to make target `cpu.c', needed by `.depend'. Stop. make[1]: Leaving directory `/home/scharsig/projects/CPUx9K2/u-boot/arch/arm/cpu/arm920t/at91' make: *** [arch/arm/cpu/arm920t/at91/libat91.o] Error 2 Is it possible that the patch is i

Re: [U-Boot] arm: at91: ether: cleanup MAC setting

2011-06-07 Thread Jens Scharsig
reduce duplicate code. So, do not change anything in arm920t/at91rm9200. Please convert your board to use arm920t/at91 soc. See at91rm9200ek or eb_cpux9k2 for an example. Best regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH ATMEL REWORK][V3] update arm/at91rm9200 work with rework rework110202

2011-06-06 Thread Jens Scharsig
Am 06.06.2011 08:35, schrieb Reinhard Meyer: > Dear Jens Scharsig, >> can you apply this patch to current atmel_rework 110411. >> >> The eb_cpux9k2 board runs with this patch. >> >> The at91rm9200_ek has compiled without error's. > Applied to u-boot-a

Re: [U-Boot] [PATCH] [Timer]Remove calls to [get, reset]_timer outside arch/

2011-05-23 Thread Jens Scharsig
> Signed-off-by: Graeme Russ for EB+MCF-EV123 board Acked-by: Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] [Timer]Remove calls to [get, reset]_timer outside arch/

2011-05-23 Thread Jens Scharsig
> Signed-off-by: Graeme Russ > --- > checkpatch complains about long lines and brace usage in the board specific > flash.c files - They are deprecated and not worth fixing for style > > board/BuS/EB+MCF-EV123/flash.c | 10 ++ Ack, for EB+MCF-EV123 b

Re: [U-Boot] AT91: CFI support broken

2011-05-20 Thread Jens Scharsig
Hello Stefan Roese, >> Hello, >> >> since "AT91: fix timer.c - remove reset_timer()" >> >> >> >> was commited the arm926ejs/at91 boards can't compile with cfi_flash support: >> >> u-boot/drivers/mtd

Re: [U-Boot] [STATUS] v2011.06-rc1 released

2011-05-19 Thread Jens Scharsig
Hello, please apply the following patch http://patchwork.ozlabs.org/patch/83703/ this will make at91rm9200ek and eb_cpux9k2 board work with current release. This patch also fix the broken arm/920t/at91 arch since last merge with arm custodian tree. Best regards Jens Scharsig

[U-Boot] [PATCH] eb_cpux9k2: add USB host support to board

2011-04-22 Thread Jens Scharsig
* add USB host support to eb_cpux9k2 board Signed-off-by: Jens Scharsig --- include/configs/eb_cpux9k2.h | 16 +++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/include/configs/eb_cpux9k2.h b/include/configs/eb_cpux9k2.h index 754fc8b..9d99f65 100644 --- a

Re: [U-Boot] RFC: How use same interface between arm926ejs/at91 and arm920t/at91

2011-04-13 Thread Jens Scharsig
d) make a link to arm926ejs file But I prefer the variant c Best regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH ATMEL REWORK][V3] update arm/at91rm9200 work with rework rework110202

2011-04-12 Thread Jens Scharsig
Dear Reinhard Meyer, can you apply this patch to current atmel_rework 110411. The eb_cpux9k2 board runs with this patch. The at91rm9200_ek has compiled without error's. Best regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH] Add CONFIG_AT91FAMILY to AT91RM9200 arch

2011-04-03 Thread Jens Scharsig
* Add CONFIG_AT91FAMILY to AT91RM9200 arch Signed-off-by: Jens Scharsig --- This will also fix brocken EB+CPUx9k2 board in Version 2011.03 arch/arm/include/asm/arch-at91/at91rm9200.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-at91

Re: [U-Boot] arm writel in v2010.03-rc1 generate wrong code

2011-02-22 Thread Jens Scharsig
, [r3] > 20120f24: e1a0f00emov pc, lr > 20120f28: 3284.word 0x00003284 > > It's ok. And the board say OK too. > > My toolchain is eldk4.2 > > anybody help me!! I think you need this patch http://lists.denx.de/pipermail/u-boot/2010-December/084133.html regards Jens Scharsig ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH ATMEL REWORK][V2] update arm/at91rm9200 work with rework rework110202

2011-02-19 Thread Jens Scharsig
Am 11.02.2011 21:13, schrieb Wolfgang Denk: > Dear Reinhard Meyer, > > In message <4d5597a8.9050...@emk-elektronik.de> you wrote: >> Dear Wolfgang Denk, >>> Dear Jens Scharsig, >>> >>> In message<4d5573ca.9000...@scharsoft.de> you wrote:

[U-Boot] [PATCH ATMEL REWORK][V3] update arm/at91rm9200 work with rework rework110202

2011-02-19 Thread Jens Scharsig
* convert at91rm9200ek and eb_cpux9k2 board to ATMEL_xxx name scheme * Fix: timer.c compile error io.h not found with arm/at91rm9200 * update arm920t/at91 to ATMEL_xxx name scheme * update arm920t/at91 soc lib * update at91_emac driver Signed-off-by: Jens Scharsig --- Changes since V2

[U-Boot] [PATCH ATMEL REWORK][V2] update arm/at91rm9200 work with rework rework110202

2011-02-11 Thread Jens Scharsig
* convert at91rm9200ek and eb_cpux9k2 board to ATMEL_xxx name scheme * Fix: timer.c compile error io.h not found with arm/at91rm9200 * update arm920t/at91 to ATMEL_xxx name scheme * update arm920t/at91 soc lib * update at91_emac driver Signed-off-by: Jens Scharsig --- arch/arm/cpu/arm920t

Re: [U-Boot] [PATCH ATMEL REWORK] update arm/at91rm9200 work with rework rework110202

2011-02-11 Thread Jens Scharsig
Dear Andreas Bießmann, I'm offline for the net 10 days. So I fast include your comments to a V2 patch version Am 11.02.2011 09:11, schrieb Andreas Bießmann: > Dear Jens Scharsig, > > Am 10.02.2011 um 20:31 schrieb Jens Scharsig: > >> * update arm920t/at91 to ATMEL_xxx n

  1   2   3   >