Re: [PATCH 1/3] arm: mxs: use timeouts in block reset routines

2012-10-31 Thread Sascha Hauer
On Tue, Oct 30, 2012 at 03:21:13PM +0100, Wolfram Sang wrote: These routines can fail, add support for that. Also, put in missing copyright headers. Signed-off-by: Wolfram Sang w.s...@pengutronix.de Applied, thanks Sascha --- arch/arm/mach-mxs/common.c | 39

Re: [PATCH 1/2] mxs: mx28evk: add nand device

2012-10-31 Thread Sascha Hauer
On Tue, Oct 30, 2012 at 03:22:10PM +0100, Wolfram Sang wrote: While flash layout may be custom, at least the nand0-device is good to have. Signed-off-by: Wolfram Sang w.s...@pengutronix.de Applied, thanks Sascha --- arch/arm/boards/freescale-mx28-evk/mx28-evk.c | 20

Re: [PATCH 2/2] net fec: call fec_init at probe time

2012-10-31 Thread Wolfram Sang
On Tue, Oct 30, 2012 at 05:30:06PM +0100, Sascha Hauer wrote: fec_init() initializes some bits important for phy access, so do this before the mdiobus is registered. This fixes mdiobus support on i.MX28 boards in RMII mode. Signed-off-by: Sascha Hauer s.ha...@pengutronix.de Extremly minor:

Re: [PATCH 2/3] dma: apbh: check for errors when resetting ip core

2012-10-31 Thread Juergen Beisert
Wolfram Sang wrote: Signed-off-by: Wolfram Sang w.s...@pengutronix.de --- drivers/dma/apbh_dma.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/dma/apbh_dma.c b/drivers/dma/apbh_dma.c index 363878f..d30b8fb 100644 --- a/drivers/dma/apbh_dma.c +++

Re: [PATCH 2/3] dma: apbh: check for errors when resetting ip core

2012-10-31 Thread Wolfram Sang
On Wed, Oct 31, 2012 at 09:29:56AM +0100, Juergen Beisert wrote: Wolfram Sang wrote: Signed-off-by: Wolfram Sang w.s...@pengutronix.de --- drivers/dma/apbh_dma.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/dma/apbh_dma.c b/drivers/dma/apbh_dma.c

Re: [PATCH 2/3] dma: apbh: check for errors when resetting ip core

2012-10-31 Thread Juergen Beisert
Wolfram Sang wrote: On Wed, Oct 31, 2012 at 09:29:56AM +0100, Juergen Beisert wrote: Wolfram Sang wrote: Signed-off-by: Wolfram Sang w.s...@pengutronix.de --- drivers/dma/apbh_dma.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

Re: [PATCH 2/3] dma: apbh: check for errors when resetting ip core

2012-10-31 Thread Wolfram Sang
On Wed, Oct 31, 2012 at 09:48:31AM +0100, Juergen Beisert wrote: Wolfram Sang wrote: On Wed, Oct 31, 2012 at 09:29:56AM +0100, Juergen Beisert wrote: Wolfram Sang wrote: Signed-off-by: Wolfram Sang w.s...@pengutronix.de --- drivers/dma/apbh_dma.c |4 +++- 1 file changed,

Re: [PATCH 2/3] dma: apbh: check for errors when resetting ip core

2012-10-31 Thread Juergen Beisert
Wolfram Sang wrote: On Wed, Oct 31, 2012 at 09:48:31AM +0100, Juergen Beisert wrote: Wolfram Sang wrote: On Wed, Oct 31, 2012 at 09:29:56AM +0100, Juergen Beisert wrote: Wolfram Sang wrote: Signed-off-by: Wolfram Sang w.s...@pengutronix.de --- drivers/dma/apbh_dma.c |

Re: [PATCH 2/3] dma: apbh: check for errors when resetting ip core

2012-10-31 Thread Wolfram Sang
There is nothing a user could do in this case except asking a developer what could have happened? And that's the best option here. MXS: Timeout resetting block via register friesel. Please ask the developer for a solution You can do this by writing an email. Further information can be

Re: current barebox support for beagle xM and panda ES?

2012-10-31 Thread Sascha Hauer
Hi Robert, On Sun, Oct 28, 2012 at 04:45:46PM -0400, Robert P. J. Day wrote: it's been a few months since i've played with barebox so a simple question -- what is the status of barebox support specifically for the beagleboard xM and panda ES (as opposed to the original beagle and panda)?

[PATCH] iomux-imx35: add missing comma in pad definition

2012-10-31 Thread Uwe Kleine-König
The same issue was fixed in the Linux kernel in commit 66ddfc6 (mx35: add a missing comma in a pad definition) for 2.6.33-rc7. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- arch/arm/mach-imx/include/mach/iomux-mx35.h |2 +- 1 file changed, 1 insertion(+), 1

[PATCH 0/2] m25p80: re-import it againt mtd_add_host

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, so we now create the cdev via mtd This will also simplify sync with linux to avoid the m25p8000 or m25p00 the cdev is still named name m25p and the drivers m25p80 sync with linux too this patch series is agianst mtd_dataflash support The

[PATCH 2/2] m25p80: sync flash support with the kernel

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/mtd/devices/m25p80.c | 42 +- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index

[PATCH 1/2] m25p80: re-import it againt mtd_add_host

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
so we now create the cdev via mtd This will also simplify sync with linux to avoid the m25p8000 or m25p00 the cdev is still named name m25p and the drivers m25p80 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/freescale-mx6-sabrelite/board.c |2 +-

[PATCH 1/1] at91sam9xek: fix mtd partition

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
barebox size is 384KiB and for the official atmel release we need to rootfs at 8M Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/at91sam9x5ek/env/config |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH 0/4] at91sam9x5ek: add 1-wire support and hardware detection support

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
HI, This patch serie add the 1-wire support to the at91sam9x5ek on sam9x5ek we have on each module and motherboard a 1-wire eeprom that describe the hardware revision and type And on the Cogent Cpu Module we have some difference with teh others modules

[PATCH 4/4] at91sam9x5ek: use w1 serial number to generate local mac address

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
The OUI will be 'tml' = 76:6D:6C Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/at91sam9x5ek/init.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/arch/arm/boards/at91sam9x5ek/init.c

[PATCH 1/4] at91sam9x5ek: add 1-wire support

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/at91sam9x5ek/init.c | 14 ++ arch/arm/configs/at91sam9x5ek_defconfig |4 2 files changed, 18 insertions(+) diff --git a/arch/arm/boards/at91sam9x5ek/init.c

[PATCH 3/4] at91sam9x5ek: add fixup for cogent cpu module

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
The modules from cogent use a 1.8V nand And have the mci card detect broken as they use the flash vdd as vdd for the cd which need 2V Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/at91sam9x5ek/hw_version.c | 32 +

[PATCH 2/4] at91sam9x5ek: add hw detection support

2012-10-31 Thread Jean-Christophe PLAGNIOL-VILLARD
for bootp specify the module version via client_id as %{BOARD}-%{VERISON} Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/at91sam9x5ek/Makefile |1 + arch/arm/boards/at91sam9x5ek/env/config |1 + arch/arm/boards/at91sam9x5ek/hw_version.c |

Re: [PATCH 2/2] net fec: call fec_init at probe time

2012-10-31 Thread Sascha Hauer
On Wed, Oct 31, 2012 at 09:25:52AM +0100, Wolfram Sang wrote: On Tue, Oct 30, 2012 at 05:30:06PM +0100, Sascha Hauer wrote: fec_init() initializes some bits important for phy access, so do this before the mdiobus is registered. This fixes mdiobus support on i.MX28 boards in RMII mode.

Re: [PATCH 0/2] m25p80: re-import it againt mtd_add_host

2012-10-31 Thread Sascha Hauer
On Wed, Oct 31, 2012 at 01:01:22PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: Hi, so we now create the cdev via mtd This will also simplify sync with linux to avoid the m25p8000 or m25p00 the cdev is still named name m25p and the drivers m25p80

Re: [PATCH v3 1/3] ARM: Add CLPS711X architecture

2012-10-31 Thread Sascha Hauer
On Tue, Oct 30, 2012 at 08:08:30PM +0400, Alexander Shiyan wrote: This patch adds new architecture (CLPS711X) into barebox. The core-logic functionality of the device is built around an ARM720T processor running at clock speeds up to 90 MHz. [...] +++ b/arch/arm/mach-clps711x/reset.c @@

Re: [PATCH v3 1/3] ARM: Add CLPS711X architecture

2012-10-31 Thread Alexander Shiyan
On Wed, 31 Oct 2012 22:36:08 +0100 Sascha Hauer s.ha...@pengutronix.de wrote: ... + + asm(mov pc, #0); Or is it because you do not have a real reset function and have to jump through zero instead? Still common_reset() shouldn't be necessary. What Yes. you may have to do here is to make