[PATCHv2 0/2] Add ARCH for AM33xx and phyCORE-AM335x support

2012-09-25 Thread Teresa Gámez
This series is based on next-stable tag and tested with Jan Lübbes patch: Makefile: add target to produce a SPL compatible uImage v2: - added generated defconfig - removed global.boot.default and added boot.d/01 symlink - created dmtimer0 header - removed unnecessary cleanup - use gpiolib Teresa

[PATCHv2 1/2] ARM OMAP AM33XX: create new ARCH for AM33xx

2012-09-25 Thread Teresa Gámez
Created ARCH for AM33xx boards as second stage bootloader. This includes: - Added dmtimer0 - Created basic header files - Added MMC support for ARCH_AM33XX - Added reset function Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/mach-omap/Kconfig | 11

[PATCHv2 2/2] pcm051: Add inital support

2012-09-25 Thread Teresa Gámez
Added initial support for Phytec phyCORE-AM335x. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/Makefile |1 + arch/arm/boards/pcm051/Makefile |1 + arch/arm/boards/pcm051/board.c| 72 +

Re: [PATCH] Makefile: add target to produce a SPL compatible uImage

2012-09-25 Thread Jan Lübbe
On Tue, 2012-09-25 at 14:29 +0200, Teresa Gamez wrote: Am 24.09.2012 14:49, schrieb Jan Lübbe: On Mon, 2012-09-24 at 14:37 +0200, Teresa Gamez wrote: I have tested it with my am335x patches. And it worked so far. But I have not done anything with the pbl image, yet. Could you explain me

Re: [PATCHv2 2/2] pcm051: Add inital support

2012-09-25 Thread Jean-Christophe PLAGNIOL-VILLARD
On 14:18 Tue 25 Sep , Teresa Gámez wrote: Added initial support for Phytec phyCORE-AM335x. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/Makefile |1 + arch/arm/boards/pcm051/Makefile |1 + arch/arm/boards/pcm051/board.c

Re: [PATCHv2 1/2] ARM OMAP AM33XX: create new ARCH for AM33xx

2012-09-25 Thread Jean-Christophe PLAGNIOL-VILLARD
On 14:18 Tue 25 Sep , Teresa Gámez wrote: Created ARCH for AM33xx boards as second stage bootloader. This includes: - Added dmtimer0 - Created basic header files - Added MMC support for ARCH_AM33XX - Added reset function Signed-off-by: Teresa Gámez t.ga...@phytec.de this on e looks

[PATCH 0/3] final bus cleanup

2012-09-25 Thread Jean-Christophe PLAGNIOL-VILLARD
HI, The following changes since commit 05b9f24e3ea4071f76ffc4157526946a1c2b1b96: Merge branch 'for-next/sandbox' into next (2012-09-25 10:20:03 +0200) are available in the git repository at: git://git.jcrosoft.org/barebox.git tags/bus for you to fetch changes up to

[PATCH 1/3] fb: move add param to bus probe

2012-09-25 Thread Jean-Christophe PLAGNIOL-VILLARD
so the param add added only of the device successed to register. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/video/fb.c | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/drivers/video/fb.c b/drivers/video/fb.c

[PATCH 3/3] devinfo: display device bus name

2012-09-25 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/base/driver.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/base/driver.c b/drivers/base/driver.c index a81a9ba..6c8fd05 100644 --- a/drivers/base/driver.c +++

[PATCH 2/3] switch all platform_bus device/driver registering to platform_driver/device_register

2012-09-25 Thread Jean-Christophe PLAGNIOL-VILLARD
now register_driver and register_device are for bus only usage. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- Documentation/porting.txt |2 +- arch/arm/boards/nhk8815/setup.c|2 +- arch/arm/boards/pcm038/pcm970.c

[PATCH 0/7] [RFC][PATCH] archosg9: add support for tablet

2012-09-25 Thread vj
Hello, A this is my first contribution, so I'm basically requesting for comments. The attached patch adds support for Archos G9 tablet wich uses an OMAP4460 cpu. The tablet by default only boots from internal flash, so to test barebox on it a hardware tweak is required: change the sys_boot

[PATCH 1/7] Improved an error message and solved a minor bug

2012-09-25 Thread vj
--- arch/arm/lib/armlinux.c | 2 +- drivers/mci/omap_hsmmc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/lib/armlinux.c b/arch/arm/lib/armlinux.c index 191274e..74d59a9 100644 --- a/arch/arm/lib/armlinux.c +++ b/arch/arm/lib/armlinux.c @@ -80,7 +80,7 @@ void

[PATCH 2/7] added debug info for twl6030

2012-09-25 Thread vj
--- drivers/mfd/twl6030.c | 13 + include/mfd/twl6030.h | 8 2 files changed, 21 insertions(+) diff --git a/drivers/mfd/twl6030.c b/drivers/mfd/twl6030.c index 7ecfed8..a2d16a1 100644 --- a/drivers/mfd/twl6030.c +++ b/drivers/mfd/twl6030.c @@ -39,6 +39,19 @@ static int

[PATCH 3/7] OMAP specific changes

2012-09-25 Thread vj
mux: added definitions with the same names as in the datasheet added two new definitions changed PAD definitions to have the same names in the datasheet changed value for jtag_tck to match the one on the datasheet added base addresses and usb bootsrc ---

[PATCH 5/7] add console support over the same USB used for booting

2012-09-25 Thread vj
--- drivers/serial/Kconfig | 7 + drivers/serial/Makefile | 1 + drivers/serial/serial_usb.c | 64 + 3 files changed, 72 insertions(+) create mode 100644 drivers/serial/serial_usb.c diff --git a/drivers/serial/Kconfig

[PATCH 6/7] add filesystem support over the same USB used for booting

2012-09-25 Thread vj
--- fs/Kconfig | 5 ++ fs/Makefile| 1 + fs/usbbootfs.c | 195 + 3 files changed, 201 insertions(+) create mode 100644 fs/usbbootfs.c diff --git a/fs/Kconfig b/fs/Kconfig index 4c66543..1b89aec 100644 --- a/fs/Kconfig +++

[PATCH 7/7] Add support for Archos G9 tablet

2012-09-25 Thread vj
--- arch/arm/Makefile | 1 + arch/arm/boards/archosg9/Makefile | 1 + arch/arm/boards/archosg9/board.c | 58 arch/arm/boards/archosg9/env/bin/init | 18 +++ arch/arm/boards/archosg9/env/config | 2 +

[PATCH 4/7] Add USB booting capabilities to OMAP

2012-09-25 Thread vj
--- arch/arm/cpu/cpu.c | 1 + arch/arm/lib/barebox.lds.S | 10 + arch/arm/mach-omap/Kconfig | 21 + arch/arm/mach-omap/Makefile | 1 + arch/arm/mach-omap/include/mach/omap4_rom_usb.h | 146 +

Re: [PATCH 0/7] [RFC][PATCH] archosg9: add support for tablet

2012-09-25 Thread Antony Pavlov
Hi! You have did a good job! But please check your patch series with the scripts/checkpatch.pl script before submiting it to the maillist. On 26 September 2012 02:59, vj vice...@gmail.com wrote: Hello, A this is my first contribution, so I'm basically requesting for comments. The attached