Re: [PATCH] MIPS: pbl: fix none compression support

2013-02-05 Thread Sascha Hauer
On Tue, Feb 05, 2013 at 12:00:30AM +0400, Antony Pavlov wrote: Here's the error message: AS arch/mips/pbl/piggy.shipped.o arch/mips/pbl/piggy.shipped.S: Assembler messages: arch/mips/pbl/piggy.shipped.S:1: Error: unrecognized opcode `globl input_data' make[1]: ***

Re: i.MX53, add access to third I2C peripheral

2013-02-05 Thread Sascha Hauer
Hi George, On Mon, Feb 04, 2013 at 04:31:20PM -0800, George Pontis wrote: -Original Message- From: Alexander Shiyan [mailto:shc_w...@mail.ru] Sent: Monday, February 04, 2013 11:09 AM To: George Pontis Cc: barebox@lists.infradead.org Subject: Re: i.MX53, add access to third I2C

Re: [PATCH 2/2] pbl: factorise linux/decompress/mm.h inclusion

2013-02-05 Thread Sascha Hauer
On Tue, Feb 05, 2013 at 02:36:36AM +0400, Antony Pavlov wrote: Signed-off-by: Antony Pavlov antonynpav...@gmail.com --- lib/decompress_inflate.c |1 - lib/decompress_unlzo.c |1 - pbl/decomp.c |2 ++ 3 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [PATCH 2/2] pbl: factorise linux/decompress/mm.h inclusion

2013-02-05 Thread Antony Pavlov
On 5 February 2013 12:57, Sascha Hauer s.ha...@pengutronix.de wrote: On Tue, Feb 05, 2013 at 02:36:36AM +0400, Antony Pavlov wrote: Signed-off-by: Antony Pavlov antonynpav...@gmail.com --- lib/decompress_inflate.c |1 - lib/decompress_unlzo.c |1 - pbl/decomp.c |2

Re: [PATCH 1/3] mxs: ssp move to common register layout

2013-02-05 Thread Sascha Hauer
The commit log looks a bit sparse. Subject should include ARM mxs: Also, why are you doing this? (The next patch makes this clear, but this one should contain an explanation) On Mon, Feb 04, 2013 at 06:26:19PM +0100, Michael Grzeschik wrote: Signed-off-by: Michael Grzeschik

Re: [PATCH 2/3] mxs_spi: initial commit

2013-02-05 Thread Sascha Hauer
s/$subject/SPI: Add i.MX 23/28 SPI driver support/ On Mon, Feb 04, 2013 at 06:26:20PM +0100, Michael Grzeschik wrote: + +/* + * Set SSP/MMC bus frequency, in kHz + */ +static void imx_set_ssp_busclock(struct spi_master *master, uint32_t freq) +{ + struct mxs_spi *mxs = to_mxs(master);

Re: [PATCH 3/3] mx28evk: add m25p80 flash via ssp2

2013-02-05 Thread Sascha Hauer
On Mon, Feb 04, 2013 at 06:26:21PM +0100, Michael Grzeschik wrote: Signed-off-by: Michael Grzeschik m.grzesc...@pengutronix.de --- arch/arm/boards/freescale-mx28-evk/mx28-evk.c | 28 + 1 file changed, 28 insertions(+) diff --git

Re: [RFC] gpiolib: import gpio_request_array() from linux 3.7

2013-02-05 Thread Sascha Hauer
On Tue, Feb 05, 2013 at 10:10:18AM +0400, Antony Pavlov wrote: On 4 February 2013 12:37, Sascha Hauer s.ha...@pengutronix.de wrote: On Mon, Feb 04, 2013 at 01:22:39AM +0400, Antony Pavlov wrote: On 4 February 2013 01:13, Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com wrote: On

[PATCH 0/4] macb: more fixes

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
HI, The following changes since commit e43e1498f65fe03cfc6b2744247eeccf27b26876: MIPS: pbl: fix none compression support (2013-02-05 09:43:17 +0100) are available in the git repository at: git://git.jcrosoft.org/barebox.git delivery/macb for you to fetch changes up to

[PATCH 4/4] macb: drop non used define

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/net/macb.c |4 1 file changed, 4 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 641b365..9d2dfd2 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@ -68,10 +68,6 @@ struct

[PATCH 2/4] macb: register the phy after the macb is init

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/net/macb.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 15b1e93..8eac4a8 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@ -476,8

[PATCH 1/4] macb: use dev_xx message

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/net/macb.c | 34 +++--- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 18ac3f8..15b1e93 100644 --- a/drivers/net/macb.c

[PATCH 3/4] macb: report timeout on send

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/net/macb.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 8eac4a8..641b365 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@

Re: [RFC] gpiolib: import gpio_request_array() from linux 3.7

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:29 Tue 05 Feb , Sascha Hauer wrote: On Tue, Feb 05, 2013 at 10:10:18AM +0400, Antony Pavlov wrote: On 4 February 2013 12:37, Sascha Hauer s.ha...@pengutronix.de wrote: On Mon, Feb 04, 2013 at 01:22:39AM +0400, Antony Pavlov wrote: On 4 February 2013 01:13, Jean-Christophe

Re: [RFC] gpiolib: import gpio_request_array() from linux 3.7

2013-02-05 Thread Antony Pavlov
On 5 February 2013 14:19, Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com wrote: On 10:29 Tue 05 Feb , Sascha Hauer wrote: On Tue, Feb 05, 2013 at 10:10:18AM +0400, Antony Pavlov wrote: On 4 February 2013 12:37, Sascha Hauer s.ha...@pengutronix.de wrote: On Mon, Feb 04, 2013 at

[PATCH v2 2/3] SPI: Add i.MX 23/28 SPI driver support

2013-02-05 Thread Michael Grzeschik
Signed-off-by: Michael Grzeschik m.grzesc...@pengutronix.de --- changes since v1: - renamed patch to more clear subject - whitespace fixes - catched more error returns, as EIO - explicit affected archs as kconfig dependency - used dev_{dbg,info,err} instead of printf - removed unneded

[PATCH v2 0/3] Add mxs spi driver and mx28evk as its first user

2013-02-05 Thread Michael Grzeschik
this series adds support for the mxs spi driver and adds the mx28evk as the first user to use it with an m25p80 flash memory. The driver was tested to work with the pio mode, as its implementation has currently no dma support. The SSP clock needed to be lower than the max possible frequency for

[PATCH v2 1/3] ARM mxs: ssp move to common register layout

2013-02-05 Thread Michael Grzeschik
This patch moves the register defines and bit definitions into one include file. As the defines are common for ssp and mci devices they can be shared. Signed-off-by: Michael Grzeschik m.grzesc...@pengutronix.de --- changes since v1: - added more information in commit header - moved register

Re: [PATCH v2 2/3] SPI: Add i.MX 23/28 SPI driver support

2013-02-05 Thread Alexander Aring
Hi, On Tue, Feb 05, 2013 at 12:46:56PM +0100, Michael Grzeschik wrote: Signed-off-by: Michael Grzeschik m.grzesc...@pengutronix.de --- changes since v1: - renamed patch to more clear subject - whitespace fixes - catched more error returns, as EIO - explicit affected archs as kconfig

Re: [PATCH v2 2/3] SPI: Add i.MX 23/28 SPI driver support

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:46 Tue 05 Feb , Michael Grzeschik wrote: Signed-off-by: Michael Grzeschik m.grzesc...@pengutronix.de --- changes since v1: - renamed patch to more clear subject - whitespace fixes - catched more error returns, as EIO - explicit affected archs as kconfig dependency - used

[PATCH 1/1] arm: rename reset and common_reset to barebox_arm_reset_vector and arm_cpu_lowlevel_init

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
reset is confusing with the cpu reset and impossible to grep Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/a9m2410/lowlevel_init.S|8 arch/arm/boards/a9m2440/lowlevel_init.S|8

[RFC PATCH] ARM i.MX6: Add support for SabreSD board

2013-02-05 Thread Hubert Feurstein
Signed-off-by: Hubert Feurstein h.feurst...@gmail.com --- Ethernet is not working yet. I took over the initialisation from u-boot. Phy access seems to work, but I don't get any data out. So some help is very appreciated ... Best regards Hubert arch/arm/Makefile

RE: i.MX53, add access to third I2C peripheral ( resubmit with Signed-off tag )

2013-02-05 Thread George Pontis
Subject: i.MX53 i2c, add support for third i2c interface Signed-off-by: George Pontis gpon...@spamcop.net --- diff -Naur bb.a/arch/arm/mach-imx/include/mach/devices-imx53.h bb.b/arch/arm/mach-imx/include/mach/devic es-imx53.h --- bb.a/arch/arm/mach-imx/include/mach/devices-imx53.h 2013-02-04

[PATCH 0/3] at91: add boot mode detection support

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, The following changes since commit e43e1498f65fe03cfc6b2744247eeccf27b26876: MIPS: pbl: fix none compression support (2013-02-05 09:43:17 +0100) are available in the git repository at: git://git.jcrosoft.org/barebox.git delivery/sama5d3_bootmode for you to fetch changes up to

[PATCH 1/3] at91: add boot mode detection support

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/mach-at91/Kconfig |8 arch/arm/mach-at91/Makefile|2 + arch/arm/mach-at91/bootmode.c | 57 ++

[PATCH 3/3] sama5d3: detect boot mode

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
and dynamised where we are stored Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/boards/sama5d3xek/init.c | 24 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/arch/arm/boards/sama5d3xek/init.c

[PATCH 2/3] sama5d3: add boot mode supprot

2013-02-05 Thread Jean-Christophe PLAGNIOL-VILLARD
on sama5d3 the bootmode is pass by the rom code via the register r4 so in the at91bootstrap we save the content of r4 in the 2nd gpbr and repass it via r4 to barebox you need to last at91bootstrap Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com ---

Re: [PATCH 1/3] at91: add boot mode detection support

2013-02-05 Thread Marc Kleine-Budde
On 02/05/2013 07:02 PM, Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- arch/arm/mach-at91/Kconfig |8 arch/arm/mach-at91/Makefile|2 + arch/arm/mach-at91/bootmode.c |

Re: [RFC PATCH] ARM i.MX6: Add support for SabreSD board

2013-02-05 Thread Steffen Trumtrar
Hi Hubert! On Tue, Feb 05, 2013 at 05:53:54PM +0100, Hubert Feurstein wrote: Signed-off-by: Hubert Feurstein h.feurst...@gmail.com --- Ethernet is not working yet. I took over the initialisation from u-boot. Phy access seems to work, but I don't get any data out. So some help is very