[PATCH 2/2] pm9g45: fix config and defconfig

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
- add dhcp vendor_id - enable glob support (needed by nand) - enable pbl - enable MMU - enable bootm oftree support - enable loadb - enable nfs - use zImage by default Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/arm/boards/pm9g45/env/config | 13 - arch/arm/con

[PATCH 1/2] pm9g45: fix nand partition in c code

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
enable bbt too Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/arm/boards/pm9g45/init.c |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/arch/arm/boards/pm9g45/init.c b/arch/arm/boards/pm9g45/init.c index 17b38d4..a12896b 100644 --- a/arch/arm/boards/pm9g45/

[PATCH 0/2] pm9g45 fix

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
HI, the folowing patch series fix pm9g45 so we can have the correct nand support and be able to boot as the current binary is bigger than the partition for barebox and boot a mainline kernel + dt The following changes since commit f99ea5c9d8cfddf3a1d6b181d0dbb26e06a86d2b:

[PATCH 6/6] OMAP4: clean voltage switch

2012-10-18 Thread Vicente Bergas
OMAP4 requires that parent domains scale ahead of dependent domains. This is due to the restrictions in timing closure. To ensure a consistent behavior across all OMAP4 SoC, ensure that vdd_core scale first, then vdd_mpu and finally vdd_iva. TPS SET0/SET1 register is selected by a GPIO pin on OMAP

Re: [PATCH 0/6] archosg9: improve support for tablet

2012-10-18 Thread vj
On Mon, Oct 15, 2012 at 9:27 AM, Sascha Hauer wrote: > Hi vj, > > On Mon, Oct 15, 2012 at 02:22:34AM +0200, Vicente Bergas wrote: >> This patch series solves/improves/implements: >> ttyOxxx are 0 based, so change ttyO1 to ttyO0 >> change speed to 115200, there are some issues at Mbaud speed in l

[PATCH 4/5] BCM2835: add support (arch)

2012-10-18 Thread Carlo Caione
Signed-off-by: Carlo Caione --- arch/arm/Kconfig | 10 +++ arch/arm/Makefile | 1 + arch/arm/mach-bcm2835/Kconfig | 3 + arch/arm/mach-bcm2835/Makefile| 1 + arch/arm/mach-bcm2835/core.c

[PATCH 5/5] Raspberry-Pi: add support (board)

2012-10-18 Thread Carlo Caione
Tested-By: Jan Luebbe Signed-off-by: Carlo Caione --- arch/arm/Makefile | 1 + arch/arm/boards/raspberry-pi/Makefile | 1 + arch/arm/boards/raspberry-pi/config.h | 4 ++ .../arm/boards/raspberry-pi/env/init/bootargs-base | 8 ar

[PATCH 3/5] ARM1176: add support

2012-10-18 Thread Carlo Caione
Signed-off-by: Carlo Caione --- arch/arm/cpu/Kconfig | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/cpu/Kconfig b/arch/arm/cpu/Kconfig index 2ed6789..d8a5fb1 100644 --- a/arch/arm/cpu/Kconfig +++ b/arch/arm/cpu/Kconfig @@ -8,6 +8,11 @@ config CPU_32 # which CPUs we support in

[PATCH 2/5] BCM2835: add gpio driver

2012-10-18 Thread Carlo Caione
Signed-off-by: Carlo Caione --- drivers/gpio/Kconfig| 4 ++ drivers/gpio/Makefile | 1 + drivers/gpio/gpio-bcm2835.c | 158 3 files changed, 163 insertions(+) create mode 100644 drivers/gpio/gpio-bcm2835.c diff --git a/drivers/gpio/

[PATCH 0/5] BCM2835/Raspberry-Pi support

2012-10-18 Thread Carlo Caione
Hi, set of patches based on next. It's required: [PATCH] clkdev: add helper function to register one clock lookup for a struct clk Best regards, Carlo Caione (5): BCM2835: add clocksource driver BCM2835: add gpio driver ARM1176: add support BCM2835: add support (arch) Raspberry-Pi: add

[PATCH 1/5] BCM2835: add clocksource driver

2012-10-18 Thread Carlo Caione
Signed-off-by: Carlo Caione --- drivers/clocksource/Kconfig | 4 ++ drivers/clocksource/Makefile | 1 + drivers/clocksource/bcm2835.c | 90 +++ 3 files changed, 95 insertions(+) create mode 100644 drivers/clocksource/bcm2835.c diff --git a/drivers/cl

[PATCH] clkdev: add helper function to register one clock lookup for a struct clk

2012-10-18 Thread Carlo Caione
Signed-off-by: Carlo Caione --- drivers/clk/clkdev.c | 21 + include/linux/clkdev.h | 1 + 2 files changed, 22 insertions(+) diff --git a/drivers/clk/clkdev.c b/drivers/clk/clkdev.c index 1ae822f..5441eeb 100644 --- a/drivers/clk/clkdev.c +++ b/drivers/clk/clkdev.c @@ -178

Re: [PATCH 6/6] OMAP4: clean voltage switch

2012-10-18 Thread Teresa Gamez
Am 15.10.2012 23:42, schrieb Vicente Bergas: diff --git a/arch/arm/mach-omap/include/mach/omap4-silicon.h b/arch/arm/mach-omap/include/mach/omap4-silicon.h index 71ffe39..137cc88 100644 --- a/arch/arm/mach-omap/include/mach/omap4-silicon.h +++ b/arch/arm/mach-omap/include/mach/omap4-silicon.h

Re: barebox@ELCE

2012-10-18 Thread Teresa Gamez
Am 13.10.2012 14:11, schrieb Sascha Hauer: On Fri, Oct 12, 2012 at 11:39:42AM +0200, Teresa Gamez wrote: Am 10.10.2012 18:55, schrieb Sascha Hauer: On Wed, Oct 10, 2012 at 12:04:50PM +0200, Gregory CLEMENT wrote: On 10/10/2012 08:46 AM, Sascha Hauer wrote: Hi All, As you might have noticed a

[PATCH] ARM OMAP: Enable gpio output

2012-10-18 Thread Teresa Gámez
Enable output instead of disabling it. Signed-off-by: Teresa Gámez --- arch/arm/mach-omap/omap4_generic.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap/omap4_generic.c b/arch/arm/mach-omap/omap4_generic.c index 76134f2..d7771bf 100644 --- a/arch/ar

[PATCH] commands/Kconfig: move 'ln' to the 'file commands' section

2012-10-18 Thread Antony Pavlov
Signed-off-by: Antony Pavlov --- commands/Kconfig |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/Kconfig b/commands/Kconfig index d89cda9..546e58e 100644 --- a/commands/Kconfig +++ b/commands/Kconfig @@ -57,10 +57,6 @@ config CMD_READLINE tristate

[PATCH] add 'miitool' command to view media-independent interface status

2012-10-18 Thread Antony Pavlov
This command is based on the 'mii-diag' and 'mii-tool' Unix utilities, but it lacks routines to manipulate MII state (e.g. reset MII, restart autonegotiation or force MII mode). This version of the 'miitool' command has no GbE support, but we can upgrade it in the future. The GbE support patch for

Re: [PATCH 20/28] ARM pbl: Call uncompressed binary with arguments

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:03 Wed 17 Oct , Sascha Hauer wrote: > This puts the code from barebox_uncompress inline into > the caller. Also we now call the uncompressed binary > with the memory and boarddata arguments, so everything > is ready for the uncompressed image to pick up the > values. can we use atags / dt

Re: [PATCH 03/28] ARM at91rm9200: provide reset function for boards with lowlevel init

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:03 Wed 17 Oct , Sascha Hauer wrote: > Some Atmel boards use a reset() function provided by the architecture. > Add a reset function for the board instead and call the architecture > specific init function from there. While at it, test if we are running > from SDRAM and skip the init funct

Re: [PATCH 02/28] ARM at91sam926x: provide reset function for boards with lowlevel init

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:03 Wed 17 Oct , Sascha Hauer wrote: > Some Atmel boards use a reset() function provided by the architecture. > Add a reset function for the board instead and call the architecture > specific init function from there. While at it, test if we are running > from SDRAM and skip the init funct

Re: [PATCH 25/28] ARM pbl: always copy piggydata

2012-10-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:03 Wed 17 Oct , Sascha Hauer wrote: > For now this is meant to make the code simpler. Copying the binary > is not very expensive and later either the MMU can be enabled before > relocating the binary, or relocatable code makes copying unnecessary > anyway. no I add this for nand boot on

Re: [PATCH 4/5] BCM2835: add support (arch)

2012-10-18 Thread Sascha Hauer
On Thu, Oct 18, 2012 at 12:27:14AM +0200, Carlo Caione wrote: > > On Oct 16, 2012, at 11:24 PM, Sascha Hauer wrote: > > > On Tue, Oct 16, 2012 at 08:04:44PM +0200, Carlo Caione wrote: > >> + > >> +static struct clk ref_3_clk = { > >> + .rate = 3 * 1000 * 1000, > >> +}; > >> + > >> +static struc