[U-Boot] [PATCH] Coldfire: interrupts: Add watchdog auto reset to dtimer_interrupt

2009-03-20 Thread Richard Retanubun
From 8b6ff599fde043c89cf8e5163635e2bc6dce6787 Mon Sep 17 00:00:00 2001 From: Richard Retanubun Date: Fri, 20 Mar 2009 15:30:10 -0400 Subject: [PATCH] Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt. Ported from lib_ppc/interrupts.c, this adds the ability for the coldfire system

Re: [U-Boot] [PATCH] .gitignore for generated files in api_examples directory

2009-03-20 Thread Wolfgang Denk
Dear Jon, In message <20090320030418.3494.18673.st...@localhost> you wrote: > From: Jon Smirl > > .gitignore for generated files in api_examples directory > > crc32.c > ctype.c > demo > demo.bin > ppcstring.S > string.c > vsprintf.c > > Signed-off-by: Jon Smirl > --- > api_examples/.gitignor

Re: [U-Boot] [PATCH to 2008.03] net: sh_eth: Remove sh_eth_reset() from halt function

2009-03-20 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message <20090320173324.3c9d6040.iwama...@nigauri.org> you wrote: > > Sorry, > Please take this patch in 2009.03 not 2008.03. Done, thanks for pointing out. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 16

Re: [U-Boot] [PATCH to 2008.03] net: sh_eth: Remove sh_eth_reset() from halt function

2009-03-20 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message <49c06a08.8040...@renesas.com> you wrote: > sh_eth_reset is function to reset Ether IP. > The MAC address is stored in IP, but it is initialized by this function. > OS (e.g. Linux Kernel) can not use this device when initialized. > This revises this problem. > >

Re: [U-Boot] [PATCH v2] UBIFS: Missing offset relocation for compressor 'none'

2009-03-20 Thread Wolfgang Denk
Dear Michael Lawnick, In message <49c20b21.1080...@gmx.de> you wrote: > On systems where U-Boot is linked to another address than it really lays > (e.g. backup image), calls via function pointers must be fixed with a > '+= gd->reloc_off'. > This was not done for none_compr in ubifs_compressors_ini

Re: [U-Boot] [PATCH 0/3 v3] UBIFS Support for U-Boot

2009-03-20 Thread Wolfgang Denk
Dear Stefan Roese, In message <200903191533.23286...@denx.de> you wrote: > Changes in v3: > - Patchseries split now into 3 logical pieces instead of splitting > it into 8 chunks of > 100k > > Changes in v2: > - Now symbolic links are handled correctly > > > The following changes since commit

Re: [U-Boot] [PATCH v4] Separate mtdparts command from jffs2

2009-03-20 Thread Wolfgang Denk
Dear Stefan Roese, In message <1237465836-26622-1-git-send-email...@denx.de> you wrote: > Currently the mtdparts commands are included in the jffs2 command support. > This doesn't make sense anymore since other commands (e.g. UBI) use this > infrastructure as well now. This patch separates the mtd

Re: [U-Boot] [PATCH v2] powerpc: Only use eth_getenv_enetaddr() if networking is enabled

2009-03-20 Thread Wolfgang Denk
Dear Stefan Roese, In message <1235560275-9434-1-git-send-email...@denx.de> you wrote: > Signed-off-by: Stefan Roese > --- > v2: > - Include all eth_getenv_enetaddr() calls in the CONFIG_CMD_NET section > > lib_ppc/board.c |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) Thanks. A

Re: [U-Boot] [PATCH] digsy_mtc: Fix compile warnings.

2009-03-20 Thread Wolfgang Denk
Dear Grzegorz Bernacki, In message <1237472877301-git-send-email-...@semihalf.com> you wrote: > > Signed-off-by: Grzegorz Bernacki > --- > This patch should be applied to the "next" branch. > > cpu/mpc5xxx/cpu.c |3 ++- > include/configs/digsy_mtc.h |2 +- > 2 files changed,

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

2009-03-20 Thread Wolfgang Denk
Dear Stefan Roese, In message <200903201304.29873...@denx.de> you wrote: > Hi Wolfgang, > > please pull one last-minute fix for ppc4xx: > > The following changes since commit 7a88601a34132548c3c591ea87ab3468b51121b0: > Richard Retanubun (1): > CFI: geometry reversal for STMicro M29W320

[U-Boot] Toradex Colibri PXA-320

2009-03-20 Thread Alon Bar-Lev
Hello, Has anyone got this working? Toradex does not seem to support open source, and forward people to its partners, while these seems to have a solution, but do not publish their work as they should. I succeeded in making the Colibri PXA-270, using trizepsiv board as base and previous work of

[U-Boot] Ease of porting Linux drivers/features to U-Boot?

2009-03-20 Thread Rogan Dawes
Hi, I'm still trying to figure out how to get support for my AR7-based board into U-Boot. There is support for the board in Linux, but some fundamental pieces are missing from U-Boot. E.g. support for the VLYNQ bus that connects the network interface to the CPU, at the very least. How difficult

[U-Boot] I2C1 is not working in U-boot, When I2C2 pins are config as GPIO in MPC8313 board

2009-03-20 Thread rudresh
We have custom board based on MPC8313ERDB processor. This processor is having silicon revision 1.0. We have RTC & ADC connected over i2c1. Also, We are using GPIO pins muxed with i2c2 in GPIO mode. The problem is, when i configure these muxed gpio pins in GPIO mode, my ADC & RTC is not working.

Re: [U-Boot] [PATCH] Coldire: mcf52x2: Improve gcc version detection

2009-03-20 Thread Wolfgang Denk
Dear Richard Retanubun, In message <49c399aa.2030...@ruggedcom.com> you wrote: > > > echo __GNUC__ __GNUC_MINOR__ | $(CC) -E -xc - \ > > | tail -n 1 | sed -e 's/ /0/' > > > > would be any better than parsing the output of "$(CC) --version"? > > > > The fact that it takes 4 processes in

Re: [U-Boot] [PATCH] Coldire: mcf52x2: Improve gcc version detection

2009-03-20 Thread Richard Retanubun
Hi Wolfgang, > What makes you think that > > echo __GNUC__ __GNUC_MINOR__ | $(CC) -E -xc - \ > | tail -n 1 | sed -e 's/ /0/' > > would be any better than parsing the output of "$(CC) --version"? > > The fact that it takes 4 processes instead of one (or say two if we > add the filte

[U-Boot] PXA SPI Mode support for MMC/SD Cards

2009-03-20 Thread A. Geisreiter
Hello, I use a PXA270 CPU and need SPI Mode support for MMC/SD Cards. The U-Boot sources contain the file mmc.c for the PXA MMC/SD controller, but the SPI Mode is there disabled and in addition to that not used. I have searched for a U-Boot patch, but I didn’t find something. Have anybody progr

[U-Boot] Different parameters, and messages on restart!!!!

2009-03-20 Thread canibek sağın
Dear All , I have been programming nand flashes via Jtag for a while. My M.P is TI's DM355, yesterday I builded the U-boot but when I turn on my pcb , I read some warning messages. I have added below the messages and I added the old U-Boot messages, they are different. I couldnt get the difference

Re: [U-Boot] CUSTODIANS: Urgent boarding call for flight 2009.03

2009-03-20 Thread Haavard Skinnemoen
Jean-Christophe PLAGNIOL-VILLARD wrote: > > Latest upstream master builds just fine here...though the last release > > may be broken because I pushed the fix too late. Ah, I see the avr32 master branch is still broken. I've fixed it by pulling from mainline. > I've try the next branch and it's

Re: [U-Boot] Booting PowerPc

2009-03-20 Thread Kumar Gala
On Mar 20, 2009, at 7:11 AM, Günter Leonhardt wrote: > > Hi, > I'am new with PowerPc and try to boot the MPC8315ERDB board with u- > boot (1.3.3). > All standard images build from the linux powerpc arch won't work. > I see in the uImage there is a kernel image and a initrd image. > > At the mome

[U-Boot] Booting PowerPc

2009-03-20 Thread Günter Leonhardt
Hi, I'am new with PowerPc and try to boot the MPC8315ERDB board with u-boot (1.3.3). All standard images build from the linux powerpc arch won't work. I see in the uImage there is a kernel image and a initrd image. At the moment I build the image by hand with mkimage including kernel, initrd a

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

2009-03-20 Thread Stefan Roese
Hi Wolfgang, please pull one last-minute fix for ppc4xx: The following changes since commit 7a88601a34132548c3c591ea87ab3468b51121b0: Richard Retanubun (1): CFI: geometry reversal for STMicro M29W320DT are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git m

Re: [U-Boot] [PATCH] ppc4xx: Fix bug in PCI outbound map configuration for canyonlands

2009-03-20 Thread Stefan Roese
On Friday 20 March 2009, Anatolij Gustschin wrote: > PCI outbound address map configuration doesn't match the > PCI memory address range covered by appropriate TLB entry > configuration for canyonlands causing machine check > exceptions while accessing PCI memory regions. This patch > provides a fi

[U-Boot] [PATCH] ppc4xx: Fix bug in PCI outbound map configuration for canyonlands

2009-03-20 Thread Anatolij Gustschin
PCI outbound address map configuration doesn't match the PCI memory address range covered by appropriate TLB entry configuration for canyonlands causing machine check exceptions while accessing PCI memory regions. This patch provides a fix for this issue. Kazuaki Ichinohe observed and reported thi

Re: [U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-20 Thread Nicolas Ferre
Ben, Ben Warren : > Hi Nicolas, > > Nicolas Ferre wrote: > >> diff --git a/drivers/net/macb.c b/drivers/net/macb.c >> index af0409b..6de0a04 100644 >> --- a/drivers/net/macb.c >> +++ b/drivers/net/macb.c >> @@ -447,14 +447,14 @@ static int macb_init(struct eth_device *netdev, >> bd_t *bd) >>

Re: [U-Boot] [PATCH v2] UBIFS: Missing offset relocation for compressor 'none'

2009-03-20 Thread Stefan Roese
Hi Detlev, On Friday 20 March 2009, Detlev Zundel wrote: > > Please note that I explicitly didn't fold this patch into my latest UBIFS > > patch series. We should apply it after UBIFS is available in mainline so > > that Michael will be listed as author for this fix. > > I was not so sure about th

Re: [U-Boot] About PCI of U-BOOT of CANYONLANDS

2009-03-20 Thread Kazuaki Ichinohe
Hi Anatolij, Stefan, I confirmed the video output. >> However, the video output cannot be confirmed. Sorry, my fault. We wish to express our gratitude. Regards, Kazuaki Ichinohe Anatolij Gustschin さんは書きました: > Kazuaki Ichinohe wrote: >>> Try to set VIDEO_IO_OFFSET to 0xD800, it should work.

Re: [U-Boot] [PATCH v2] UBIFS: Missing offset relocation for compressor 'none'

2009-03-20 Thread Detlev Zundel
Hi Stefan, > On Thursday 19 March 2009, Michael Lawnick wrote: >> On systems where U-Boot is linked to another address than it really lays >> (e.g. backup image), calls via function pointers must be fixed with a >> '+= gd->reloc_off'. >> This was not done for none_compr in ubifs_compressors_init()

Re: [U-Boot] SH Build status (Re: CUSTODIANS: Urgent boarding call for flight 2009.03)

2009-03-20 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message <20090320173842.0a806bd4.iwama...@nigauri.org> you wrote: > > However, there is a problem because the following patches are not taken in. > - [U-Boot] [PATCH to 2008.03] net: sh_eth: Remove sh_eth_reset() from halt > function > > A title makes a mistake in thi

Re: [U-Boot] U-Boot default parameters

2009-03-20 Thread Wolfgang Denk
Dear =?iso-8859-9?Q?canibek_sa=F0=FDn?=, In message you wrote: > > I am very new on embedded world, so I face off many difficulties because of > my lack of experince.Now my problem is that I want to change some default > boot parametes on U-Boot , like bootdelay, bootargs, etc. How can I do th

[U-Boot] SH Build status (Re: CUSTODIANS: Urgent boarding call for flight 2009.03)

2009-03-20 Thread Nobuhiro Iwamatsu
Deari Wolfgang. SH build status(sh2/sh3/sh4) is fine. My manage boards and some other boards work without problem. However, there is a problem because the following patches are not taken in. - [U-Boot] [PATCH to 2008.03] net: sh_eth: Remove sh_eth_reset() from halt function A title makes a mi

Re: [U-Boot] USB EHCI driver

2009-03-20 Thread Michael Trimarchi
Hi, FrancescoVT wrote: > usb_control_msg: request: 0x6, requesttype: 0x80, value 0x100 index 0x0 > length 0x40 > dev=1ffebb08, pipe=8883, buffer=1f9a671a, length=64, req=1ffea214 > req=6 (0x6), type=128 (0x80), value=256 (0x100), index=0 > EHCI fail timeout STD_ASS reset > usb_new_device: usb_

Re: [U-Boot] [PATCH to 2008.03] net: sh_eth: Remove sh_eth_reset() from halt function

2009-03-20 Thread Nobuhiro Iwamatsu
Hi, Sorry, Please take this patch in 2009.03 not 2008.03. Best regards, Nobuhiro On Wed, 18 Mar 2009 12:27:04 +0900 Nobuhiro Iwamatsu wrote: > sh_eth_reset is function to reset Ether IP. > The MAC address is stored in IP, but it is initialized by this function. > OS (e.g. Linux Kernel) can n

[U-Boot] U-Boot default parameters

2009-03-20 Thread canibek sağın
Dear Developers, I am very new on embedded world, so I face off many difficulties because of my lack of experince.Now my problem is that I want to change some default boot parametes on U-Boot , like bootdelay, bootargs, etc. How can I do that changes on UBoot, and How can I cross compile U-Boot .

Re: [U-Boot] [PATCH v2] UBIFS: Missing offset relocation for compressor 'none'

2009-03-20 Thread Stefan Roese
On Thursday 19 March 2009, Michael Lawnick wrote: > On systems where U-Boot is linked to another address than it really lays > (e.g. backup image), calls via function pointers must be fixed with a > '+= gd->reloc_off'. > This was not done for none_compr in ubifs_compressors_init() what leads > to s