Re: [U-Boot] [PATCH v2] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Marek Vasut
Dear Stefano Babic, > On 06/09/2012 07:54, Marek Vasut wrote: > shouldn't the endif be a line higher??? > > mx25_3stack.h:#define CONFIG_I2C_MXC1 > >>> > >>> No, I guess your right > >>> > >>> Sorry for the noise. > >> > >> No problem. Maybe we should also later

Re: [U-Boot] [PATCH 0/6] add zip command support for uboot

2012-09-05 Thread Marek Vasut
Dear Lei Wen, > Hi Marek, > > On Thu, Sep 6, 2012 at 12:18 PM, Marek Vasut wrote: > > Dear adrian.w...@gmail.com, > > > >> From: Lei Wen > > > > Lei? Long time no see :) > > Long time no see. :) Yep, you're doing well? > >> This patch set add zip command support for uboot. > >> The first t

[U-Boot] [PATCH v3] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Stefano Babic
Up now only MX5 and MX6 can share code, because they have a common source directory in cpu/armv7. Other not armv7 i.MX can profit of the same shared code. Move these files into a directory accessible for all, similar to plat-mxc in linux. Signed-off-by: Stefano Babic --- Changes in v2: - Use the

[U-Boot] [PATCH v3 3/6] video: cfb_console: logo can be positioned via the splashpos variable

2012-09-05 Thread Bastian Ruppert
Extend the driver for placing the video/bmp logo as specified by "splashpos" environment variable. Signed-off-by: Bastian Ruppert Signed-off-by: Anatolij Gustschin CC: Tom Rini CC: Stefano Babic --- v3: - logo offset calculation is no longer based on BMP_ALIGN_CENTER if "m" specifier is us

[U-Boot] [PATCH v3 1/6] davinci: ea20: reorganisation LCD startup

2012-09-05 Thread Bastian Ruppert
Signed-off-by: Bastian Ruppert CC: Tom Rini Acked-by: Stefano Babic --- board/davinci/ea20/ea20.c | 23 +++ 1 files changed, 15 insertions(+), 8 deletions(-) diff --git a/board/davinci/ea20/ea20.c b/board/davinci/ea20/ea20.c index 7e00040..69307e4 100644 --- a/board/davin

[U-Boot] [PATCH v3 5/6] da850/omap-l138: davinci_emac: Suppress auto negotiation if needed

2012-09-05 Thread Bastian Ruppert
>From this commit id: b78375a806ed04eb22b963255cfdef8df702de47 auto negotiation is enabled in RMII mode. Some boards based on da850 need to suppress this procedure. CC: Rajashekhara, Sudhakar CC: Lad, Prabhakar CC: Hadli, Manjunath CC: sba...@denx.de Acked-by: Stefano Babic CC: Tom Rini Signe

[U-Boot] [PATCH v3 6/6] davinci: ea20: add some configs and default environmet variables

2012-09-05 Thread Bastian Ruppert
Signed-off-by: Bastian Ruppert CC: Tom Rini Acked-by: Stefano Babic --- include/configs/ea20.h | 106 ++-- 1 files changed, 66 insertions(+), 40 deletions(-) diff --git a/include/configs/ea20.h b/include/configs/ea20.h index f9a1462..373db74 100644

[U-Boot] [PATCH v3 4/6] video: cfb_console: add function to plot the logo area black

2012-09-05 Thread Bastian Ruppert
Signed-off-by: Bastian Ruppert CC: Anatolij Gustschin CC: Tom Rini CC: Stefano Babic --- drivers/video/cfb_console.c | 46 +++--- 1 files changed, 42 insertions(+), 4 deletions(-) diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c inde

[U-Boot] [PATCH v3 2/6] davinci: ea20: the console is always set to the serial line

2012-09-05 Thread Bastian Ruppert
Do not allow to overwrite it when video is enabled. Signed-off-by: Bastian Ruppert CC: Tom Rini Acked-by: Stefano Babic --- board/davinci/ea20/ea20.c | 11 +-- include/configs/ea20.h|2 ++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/board/davinci/ea20/ea20

Re: [U-Boot] [PATCH v2] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Stefano Babic
On 06/09/2012 07:54, Marek Vasut wrote: shouldn't the endif be a line higher??? mx25_3stack.h:#define CONFIG_I2C_MXC1 >>> >>> No, I guess your right >>> >>> Sorry for the noise. >> >> No problem. Maybe we should also later rename the files specific for a >> SOC or a

Re: [U-Boot] [PATCH v3] usb: do explicit unaligned accesses

2012-09-05 Thread Marek Vasut
Dear Lucas Stach, > usb_hub_descriptor has to be packed as it's used for > communication with the device. Member wHubCharacteristics > violates the natural alignment rules. Applied and pushed > Use explicit unaligned access functions for this member. > Fixes ARMv7 traping while using USB. > > v

[U-Boot] [PATCH v3] usb: do explicit unaligned accesses

2012-09-05 Thread Lucas Stach
usb_hub_descriptor has to be packed as it's used for communication with the device. Member wHubCharacteristics violates the natural alignment rules. Use explicit unaligned access functions for this member. Fixes ARMv7 traping while using USB. v2: fix typo found by Thomas Langer v3: rebased on to

Re: [U-Boot] [PATCH v2] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Marek Vasut
Dear Stefano Babic, > On 05/09/2012 22:12, Troy Kisky wrote: > > On 9/5/2012 1:10 PM, Troy Kisky wrote: > >> On 9/5/2012 12:00 AM, Stefano Babic wrote: > >>> Up now only MX5 and MX6 can share code, because they have > >>> a common source directory in cpu/armv7. Other not armv7 > >>> i.MX can profi

Re: [U-Boot] [PATCH v2] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Stefano Babic
On 05/09/2012 22:12, Troy Kisky wrote: > On 9/5/2012 1:10 PM, Troy Kisky wrote: >> On 9/5/2012 12:00 AM, Stefano Babic wrote: >>> Up now only MX5 and MX6 can share code, because they have >>> a common source directory in cpu/armv7. Other not armv7 >>> i.MX can profit of the same shared code. Move t

[U-Boot] [PATCH v3] PXE: FDT: Add support for fdt in PXE

2012-09-05 Thread Chander Kashyap
Now DT support is becomming common for all new SoC's. Hence it is better to have option for getting specific FDT from the remote server. This patch adds support for new lable i.e. fdt. If fdt_addr is specified then load fdt blob from the remote server to fdt_address. Signed-off-by: Chander Kashya

Re: [U-Boot] [PATCH 0/6] add zip command support for uboot

2012-09-05 Thread Lei Wen
Hi Marek, On Thu, Sep 6, 2012 at 12:18 PM, Marek Vasut wrote: > Dear adrian.w...@gmail.com, > >> From: Lei Wen > > Lei? Long time no see :) Long time no see. :) > >> This patch set add zip command support for uboot. >> The first two patches import deflate and trees functions from zlib 1.2.5 >>

Re: [U-Boot] [PATCH 0/6] add zip command support for uboot

2012-09-05 Thread Marek Vasut
Dear adrian.w...@gmail.com, > From: Lei Wen Lei? Long time no see :) > This patch set add zip command support for uboot. > The first two patches import deflate and trees functions from zlib 1.2.5 > without any change. While the third patch did the necessary change to > make the import file coul

Re: [U-Boot] [PATCH v4 2/2] i2c:soft:multi: Enable soft I2C multibus at Trats development board

2012-09-05 Thread Heiko Schocher
Hello Lukasz, On 05.09.2012 11:15, Lukasz Majewski wrote: This commit enables multibus handling at Samsung's Trats development board. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- Changes for v2: - CONFIG_SOFT_I2C_MULTI_BUS flag added to Trats configuration C

Re: [U-Boot] [PATCH v4 1/2] i2c:soft:multi: Support for multiple soft I2C buses at Samsung boards

2012-09-05 Thread Heiko Schocher
Hello Lukasz, On 05.09.2012 11:15, Lukasz Majewski wrote: Support for multiple soft I2C buses. Multibus I2C support is achieved by defining get_multi_{sda|scl}_pin functions to switch between multiple "soft" I2C buses. Common definition of I2C_X I2C buses is provided at. TEST HW: Samsun

Re: [U-Boot] [PATCH] [U-BOOT] Zoom2: Ethernet: Enabling LAN9221 chip and CMD_NET.

2012-09-05 Thread Marek Vasut
Dear Tom Rini, > On Sat, Mar 31, 2012 at 12:45 PM, Marek Vasut wrote: > > Dear Aldo Brett Cedillo Martinez, > > > >> Configures GPMC, adds macros to enable net commands, and adds proper > >> initialization to board_eth_init function. > > > > Tom, are you OK with applying this patch ? > > To be

[U-Boot] [PATCH 2/2] IPL: Remove remains of OneNAND IPL

2012-09-05 Thread Marek Vasut
After removing the Apollon board, remove the OneNAND IPL too. There are no users for it any more. Signed-off-by: Marek Vasut Cc: Albert Aribaud Cc: Minkyu Kang Cc: Tom Rini --- .gitignore |5 - Makefile | 10 -- board/samsung/gon

Re: [U-Boot] [PATCH v3 2/9] arm: work around assembler bug

2012-09-05 Thread Marek Vasut
Dear Allen Martin, > Disable sibling call optimization based on binutils version. This is > to work around a bug in the assember in binutils versions < 2.22. > Branches to weak symbols can be incorrectly optimized in thumb mode to > a short branch (b.n instruction) that won't reach when the symbo

Re: [U-Boot] [PATCH 01/13] Blackfin: BF60x: new processor header files

2012-09-05 Thread Bob Liu
Hi Wolfgang, Thank you for your review. On Sun, Sep 2, 2012 at 10:10 PM, Wolfgang Denk wrote: > Dear Bob Liu, > > In message <1345526833-10804-1-git-send-email-lliu...@gmail.com> you wrote: >> Add header files for blackfin new processor bf60x. >> >> Signed-off-by: Bob Liu >> --- >> arch/blackf

Re: [U-Boot] [PATCH 01/10] dm: arm: Remove support for lpc2292

2012-09-05 Thread Marek Vasut
Dear Tom Rini, > On Sun, Sep 02, 2012 at 06:15:02PM +0200, Marek Vasut wrote: > > Dear Wolfgang Denk, > > > > > Dear Albert, > > > > > > In message <1342882947-9174-1-git-send-email-ma...@denx.de> Marek Vasut wrote: > > > > This stuff has been rotting in the tree for a year now. Remove it. > >

Re: [U-Boot] [PATCH V2 4/4] cmd_part: add partition-related command

2012-09-05 Thread Stephen Warren
On 09/05/2012 05:51 PM, Rob Herring wrote: > On 09/05/2012 05:03 PM, Stephen Warren wrote: >> From: Stephen Warren >> >> This implements the following: >> >> part uuid mmc 0:1 >> -> print partition UUID >> part uuid mmc 0:1 uuid >> -> set environment variable to partition UUID > > What's the

Re: [U-Boot] [PATCH v3 0/4] USB multi controller

2012-09-05 Thread Marek Vasut
Dear Stephen Warren, > On 09/05/2012 05:12 PM, Lucas Stach wrote: > > V3: Stephen ran into some problems applying this, as it seems my tree > > wasn't as clean as it should have been. Sorry for the inconvenience. > > This should now be fixed. > > > > Hi all, > > > > this is a follow up on the pa

Re: [U-Boot] [PATCH v3 1/4] usb: lowlevel interface change to support multiple controllers

2012-09-05 Thread Marek Vasut
Dear Lucas Stach, > Carry an index in the lowlevel usb functions to make specify the > respective usb controller. > > Also pass through an controller struct from lowlevel_init to the > creation of the root usb device of this controller. > > Signed-off-by: Lucas Stach > Reviewed-by: Marek Vasut

Re: [U-Boot] [PATCH v2] usb: do explicit unaligned accesses

2012-09-05 Thread Marek Vasut
Dear Lucas Stach, > usb_hub_descriptor has to be packed as it's used for > communication with the device. Member wHubCharacteristics > violates the natural alignment rules. Doesn't apply, can you rebase on u-boot-usb ? I'll apply it then > Use explicit unaligned access functions for this member.

Re: [U-Boot] [PATCH] dm: net: Fixup the armada100 FEC driver

2012-09-05 Thread Joe Hershberger
Hi Prafulla, On Mon, Sep 3, 2012 at 4:09 AM, Prafulla Wadaskar wrote: > > >> -Original Message- >> From: Prafulla Wadaskar >> Sent: 30 July 2012 12:02 >> To: 'Marek Vasut'; u-boot@lists.denx.de >> Cc: Joe Hershberger; u-boot...@lists.denx.de >> Subject: RE: [U-Boot] [PATCH] dm: net: Fixup

Re: [U-Boot] Pull request for u-boot-marvell.git

2012-09-05 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Guinot [mailto:simon.gui...@sequanux.org] > Sent: 05 September 2012 12:57 > To: Prafulla Wadaskar > Cc: Albert ARIBAUD; 'u-boot@lists.denx.de'; 'wolfg...@theia.denx.de; > Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] Pull request for u-boot-

Re: [U-Boot] Linking error while generating the U-boot build for MPC837XEMDS board

2012-09-05 Thread Kim Phillips
On Tue, 4 Sep 2012 16:37:14 +0530 Brayan Pais wrote: > Hi, > > I am Brayan. I was trying to build the u-boot build for the MPC837XERDB > board using Sourcery G++ Lite 2011.03-39 on ubuntu. During the build > > generation, the source code comilation happens fine, but while linking I am > getting

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Marek Vasut
Dear Pavel Herrmann, > On Wednesday 05 of September 2012 14:48:40 Marek Vasut wrote: > > Dear Pavel Herrmann, > > > > [...] > > > > > > besides, I think it'd be much systematic to just scream at user to > > > > call "sata rescan" and bail out instead of doing it for him. > > > > > > i dont actu

[U-Boot] [PATCH] sh: ap_sh4a_4a: Fixed initialization value of DDR memory

2012-09-05 Thread Nobuhiro Iwamatsu
The wrong value was set as value of column of DDR memory for ap_sh4a_4a. 10 is the right value. This fixed this problem. Signed-off-by: Nobuhiro Iwamatsu --- board/alphaproject/ap_sh4a_4a/lowlevel_init.S |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/alphaproject/ap

Re: [U-Boot] [PATCH v2 4/5] usb: ulpi: add indicator configuration function

2012-09-05 Thread Lucas Stach
Hi Tom, Am Mittwoch, den 05.09.2012, 09:25 -0700 schrieb Tom Warren: > Igor/Marek, > > > -Original Message- > > From: Marek Vasut [mailto:ma...@denx.de] > > Sent: Wednesday, September 05, 2012 1:52 AM > > To: Igor Grinberg > > Cc: Lucas Stach; u-boot@lists.denx.de; Stephen Warren; Tom War

Re: [U-Boot] [PATCH V2 4/4] cmd_part: add partition-related command

2012-09-05 Thread Tom Rini
On Wed, Sep 05, 2012 at 06:51:58PM -0500, Rob Herring wrote: > On 09/05/2012 05:03 PM, Stephen Warren wrote: > > From: Stephen Warren > > > > This implements the following: > > > > part uuid mmc 0:1 > > -> print partition UUID > > part uuid mmc 0:1 uuid > > -> set environment variable to par

Re: [U-Boot] [PATCH 3/9] disk/part: introduce get_device_and_partition

2012-09-05 Thread Tom Rini
On Thu, Aug 23, 2012 at 08:51:50PM -0600, Stephen Warren wrote: > On 08/23/2012 07:57 PM, Rob Herring wrote: > > On 08/23/2012 05:36 PM, Stephen Warren wrote: > >> On 08/23/2012 03:31 PM, Rob Herring wrote: > >>> From: Rob Herring > >>> > >>> All block device related commands (scsiboot, fatload, e

Re: [U-Boot] [PATCH V2 4/4] cmd_part: add partition-related command

2012-09-05 Thread Rob Herring
On 09/05/2012 05:03 PM, Stephen Warren wrote: > From: Stephen Warren > > This implements the following: > > part uuid mmc 0:1 > -> print partition UUID > part uuid mmc 0:1 uuid > -> set environment variable to partition UUID What's the reason to not always both print out and set the uuid en

Re: [U-Boot] [PATCH 1/9] combine block device load commands into common function

2012-09-05 Thread Tom Rini
On Wed, Sep 05, 2012 at 06:47:45PM -0500, Rob Herring wrote: > > > On 09/05/2012 06:36 PM, Tom Rini wrote: > > On Thu, Aug 23, 2012 at 04:31:42PM -0500, Rob Herring wrote: > > > >> From: Rob Herring > >> > >> All the raw block load commands duplicate the same code. Starting with > >> the ide ve

Re: [U-Boot] [PATCH v3 0/4] USB multi controller

2012-09-05 Thread Stephen Warren
On 09/05/2012 05:12 PM, Lucas Stach wrote: > V3: Stephen ran into some problems applying this, as it seems my tree > wasn't as clean as it should have been. Sorry for the inconvenience. > This should now be fixed. > > Hi all, > > this is a follow up on the patch "USB: EHCI: Initialize multiple >

Re: [U-Boot] [PATCH 1/9] combine block device load commands into common function

2012-09-05 Thread Rob Herring
On 09/05/2012 06:36 PM, Tom Rini wrote: > On Thu, Aug 23, 2012 at 04:31:42PM -0500, Rob Herring wrote: > >> From: Rob Herring >> >> All the raw block load commands duplicate the same code. Starting with >> the ide version as it has progress updates convert ide, usb, and scsi boot >> commands to

Re: [U-Boot] [PATCH 1/9] combine block device load commands into common function

2012-09-05 Thread Tom Rini
On Thu, Aug 23, 2012 at 04:31:42PM -0500, Rob Herring wrote: > From: Rob Herring > > All the raw block load commands duplicate the same code. Starting with > the ide version as it has progress updates convert ide, usb, and scsi boot > commands to all use a common version. > > Signed-off-by: Rob

Re: [U-Boot] [PATCH V2 2/4] disk: part_efi: parse and store partition UUID

2012-09-05 Thread Tom Rini
On Wed, Sep 05, 2012 at 04:03:42PM -0600, Stephen Warren wrote: > From: Stephen Warren > > Each EFI partition table entry contains a UUID. Extend U-Boot's struct > disk_partition to be able to store this information, and modify > get_partition_info_efi() to fill it in. > > The implementation of

Re: [U-Boot] How to manage RMOBILE patches?

2012-09-05 Thread Nobuhiro Iwamatsu
Hi, Tom. On Wed, Sep 5, 2012 at 11:17 PM, Tom Rini wrote: > On 09/05/2012 04:18 AM, Albert ARIBAUD wrote: >> Hi Nobuhiro, >> >> On Wed, 5 Sep 2012 11:26:37 +0900, Nobuhiro Iwamatsu >> wrote: >> >>> Hi, >>> >>> On Wed, Sep 5, 2012 at 2:36 AM, Tom Rini wrote: On Mon, Sep 03, 2012 at 09:15:56

[U-Boot] [PATCH v3 2/4] usb: ehci: rework to take advantage of new lowlevel interface

2012-09-05 Thread Lucas Stach
Kill off ehci-core.h It was used to specify some static controller data. To support more than one controller being active at any time we have to carry the controller data ourselfes. Change the ehci interface accordingly. NOTE: OMAP implemented the ehci stuff a bit backwards and should be fixed to

[U-Boot] [PATCH v3 3/4] usb: add support for multiple usb controllers

2012-09-05 Thread Lucas Stach
Allows to initialize more than one USB controller at once. v2: print message when controller stop fails Signed-off-by: Lucas Stach Reviewed-by: Marek Vasut --- common/cmd_usb.c| 16 +-- common/usb.c| 106 +++- common/usb_

[U-Boot] [PATCH v3 4/4] tegra20: port to new ehci interface

2012-09-05 Thread Lucas Stach
EHCI interface now supports more than one controller. Wire up our usb functions to use this new interface. Signed-off-by: Lucas Stach --- arch/arm/cpu/armv7/tegra20/usb.c| 15 --- arch/arm/include/asm/arch-tegra20/usb.h | 4 ++-- drivers/usb/host/ehci-tegra.c | 5

[U-Boot] [PATCH v3 0/4] USB multi controller

2012-09-05 Thread Lucas Stach
V3: Stephen ran into some problems applying this, as it seems my tree wasn't as clean as it should have been. Sorry for the inconvenience. This should now be fixed. Hi all, this is a follow up on the patch "USB: EHCI: Initialize multiple USB controllers at once" from Jim Lin. It takes some of the

[U-Boot] [PATCH v3 1/4] usb: lowlevel interface change to support multiple controllers

2012-09-05 Thread Lucas Stach
Carry an index in the lowlevel usb functions to make specify the respective usb controller. Also pass through an controller struct from lowlevel_init to the creation of the root usb device of this controller. Signed-off-by: Lucas Stach Reviewed-by: Marek Vasut --- arch/arm/cpu/arm920t/s3c24x0/

Re: [U-Boot] [PATCH 01/10] dm: arm: Remove support for lpc2292

2012-09-05 Thread Tom Rini
On Sun, Sep 02, 2012 at 06:15:02PM +0200, Marek Vasut wrote: > Dear Wolfgang Denk, > > > Dear Albert, > > > > In message <1342882947-9174-1-git-send-email-ma...@denx.de> Marek Vasut > > wrote: > > > This stuff has been rotting in the tree for a year now. Remove it. > > > > > > Signed-off-by: Ma

Re: [U-Boot] [PATCH 0/4] USB multi controller

2012-09-05 Thread Lucas Stach
Hi Marek, Stephen, Tom, Am Mittwoch, den 05.09.2012, 21:27 +0200 schrieb Marek Vasut: > Dear Stephen Warren, > > > On 09/05/2012 12:30 AM, Marek Vasut wrote: [...] > > > > > > u-boot-usb master is updated to master and pushed for your enjoyment. > > > > The series doesn't appear to apply to u-b

[U-Boot] [PATCH V2 4/4] cmd_part: add partition-related command

2012-09-05 Thread Stephen Warren
From: Stephen Warren This implements the following: part uuid mmc 0:1 -> print partition UUID part uuid mmc 0:1 uuid -> set environment variable to partition UUID This can be useful when writing a bootcmd which searches all known devices for something bootable, and then wants the kernel to

[U-Boot] [PATCH V2 2/4] disk: part_efi: parse and store partition UUID

2012-09-05 Thread Stephen Warren
From: Stephen Warren Each EFI partition table entry contains a UUID. Extend U-Boot's struct disk_partition to be able to store this information, and modify get_partition_info_efi() to fill it in. The implementation of uuid_string() was stolen from the Linux kernel. Signed-off-by: Stephen Warren

[U-Boot] [PATCH V2 1/4] disk: part_efi: range-check partition number

2012-09-05 Thread Stephen Warren
From: Stephen Warren Enhance get_partition_info_efi() to range-check the partition number. This prevents invalid partitions being accessed, and prevents access beyond the end of the gpt_pte[] array. Signed-off-by: Stephen Warren --- v2: New patch --- disk/part_efi.c |7 +++ 1 files cha

[U-Boot] [PATCH V2 3/4] disk: part_msdos: parse and store partition UUID

2012-09-05 Thread Stephen Warren
From: Stephen Warren The MSDOS/MBR partition table includes a 32-bit unique ID, often referred to as the NT disk signature. When combined with a partition number within the table, this can form a unique ID similar in concept to EFI/GPT's partition UUID. This patch generates UUIDs in the format 0

[U-Boot] [PATCH v2 4/4] tegra20: port to new ehci interface

2012-09-05 Thread Lucas Stach
EHCI interface now supports more than one controller. Wire up our usb functions to use this new interface. Signed-off-by: Lucas Stach --- arch/arm/cpu/armv7/tegra20/usb.c| 15 --- arch/arm/include/asm/arch-tegra20/usb.h | 4 ++-- drivers/usb/host/ehci-tegra.c | 5

[U-Boot] [PATCH v2 1/4] usb: lowlevel interface change to support multiple controllers

2012-09-05 Thread Lucas Stach
Carry an index in the lowlevel usb functions to make specify the respective usb controller. Also pass through an controller struct from lowlevel_init to the creation of the root usb device of this controller. Signed-off-by: Lucas Stach Reviewed-by: Marek Vasut --- arch/arm/cpu/arm920t/s3c24x0/

[U-Boot] [PATCH v2 3/4] usb: add support for multiple usb controllers

2012-09-05 Thread Lucas Stach
Allows to initialize more than one USB controller at once. v2: print message when controller stop fails Signed-off-by: Lucas Stach Reviewed-by: Marek Vasut --- common/cmd_usb.c| 16 +-- common/usb.c| 106 +++- common/usb_

[U-Boot] [PATCH v2 2/4] usb: ehci: rework to take advantage of new lowlevel interface

2012-09-05 Thread Lucas Stach
Kill off ehci-core.h It was used to specify some static controller data. To support more than one controller being active at any time we have to carry the controller data ourselfes. Change the ehci interface accordingly. NOTE: OMAP implemented the ehci stuff a bit backwards and should be fixed to

[U-Boot] [PATCH v2 0/4] USB multi controller

2012-09-05 Thread Lucas Stach
Hi all, this is a follow up on the patch "USB: EHCI: Initialize multiple USB controllers at once" from Jim Lin. It takes some of the code but has undergone some heavy reworking. When we remove the ifdef horror from the above mentioned patch it's mostly a big interface change to the usb subsystem.

Re: [U-Boot] Please pull u-boot-ti/master

2012-09-05 Thread Albert ARIBAUD
Hi Tom, On Tue, 4 Sep 2012 17:41:23 -0700, Tom Rini wrote: > Hello, > > The following changes since commit > e62b008fe341030f4a80a09b66952bba65027b70: > > integrator: break out common config (2012-09-04 08:51:13 -0700) > > are available in the git repository at: > > git://git.denx.de/u-b

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Pavel Herrmann
On Wednesday 05 of September 2012 14:48:40 Marek Vasut wrote: > Dear Pavel Herrmann, > > [...] > > > > besides, I think it'd be much systematic to just scream at user to call > > > "sata rescan" and bail out instead of doing it for him. > > > > i dont actually need a sata rescan, i just need to

Re: [U-Boot] gpt: GUID/UUID - GPT restoration - open questions

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:48 AM, Lukasz Majewski wrote: > Hi Stephen, > > I'm writing to you, since I've posted a patch series regarding GPT > support for Samsung Trats board (you were on the CC). > > e.g. http://patchwork.ozlabs.org/patch/179785/ > > I think, that we can cooperate to provide better EFI/

Re: [U-Boot] [PATCH 4/6] gpt: Support for GPT (GUID Partition Table) restoration

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > The restoration of GPT table (both primary and secondary) is now possible. > Simple GUID generation is supported. > +/** > + * guid_gen(): Generate UUID > + * > + * @param dev_desc - block device descriptor > + * > + * @return - generated UUID table

Re: [U-Boot] [PATCH v2] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Troy Kisky
On 9/5/2012 1:10 PM, Troy Kisky wrote: On 9/5/2012 12:00 AM, Stefano Babic wrote: Up now only MX5 and MX6 can share code, because they have a common source directory in cpu/armv7. Other not armv7 i.MX can profit of the same shared code. Move these files into a directory accessible for all, simil

Re: [U-Boot] [PATCH v2] MX: set a common place to share code for Freescale i.MX

2012-09-05 Thread Troy Kisky
On 9/5/2012 12:00 AM, Stefano Babic wrote: Up now only MX5 and MX6 can share code, because they have a common source directory in cpu/armv7. Other not armv7 i.MX can profit of the same shared code. Move these files into a directory accessible for all, similar to plat-mxc in linux. Signed-off-by:

Re: [U-Boot] [PATCH 5/6] gpt: Support for new "gpt" command

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > New command - "gpt" is now supported. It shows and restores the GPT partition > table. > It looks into the "partitions" environment variable for partitions definition. > It can be enabled at target configuration file with CONFIG_CMD_GPT. > diff --gi

Re: [U-Boot] Pull request for u-boot-marvell.git

2012-09-05 Thread Simon Guinot
On Mon, Sep 03, 2012 at 02:20:19AM -0700, Prafulla Wadaskar wrote: > Dear Albert, > > Please pull > The following changes since commit 6e2fbdea1b26d75314d87c380a36b0015bf824cf: > Wolfgang Denk (1): > Merge branch 'ag...@denx.de' of git://git.denx.de/u-boot-staging Hi Prafulla, Do you h

Re: [U-Boot] [PATCH 4/6] gpt: Support for GPT (GUID Partition Table) restoration

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > The restoration of GPT table (both primary and secondary) is now possible. > Simple GUID generation is supported. > diff --git a/include/part.h b/include/part.h > +int set_gpt_table(block_dev_desc_t *dev_desc, > +int parts, unsigned

Re: [U-Boot] [PATCH 2/6] gpt: Replace the leXX_to_int() calls with ones defined at

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > Custom definitions of le_XX_to_int functions have been replaced with > standard ones, defined at > diff --git a/disk/part_efi.c b/disk/part_efi.c > -/* Convert char[8] in little endian format to the host format integer > - */ > -static inline unsi

Re: [U-Boot] [PATCH 3/6] gpt: Replacement of GPT structures members with ones indicating endianness and size

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > Replacement of several GPT related structures members with ones > indicating its endianness and proper size. This patch seems reasonable to me, but I'm surprised it doesn't require /any/ changes to the code that uses these structures in order to avo

Re: [U-Boot] [PATCH 2/6] gpt: Replace the leXX_to_int() calls with ones defined at

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > Custom definitions of le_XX_to_int functions have been replaced with > standard ones, defined at > > Signed-off-by: Chang Hyun Park > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park Did Chang Hyun Park write this? If so, shouldn't

Re: [U-Boot] [PATCH 1/6] gpt:doc: GPT (GUID Partition Table) documentation

2012-09-05 Thread Stephen Warren
On 08/24/2012 02:13 AM, Lukasz Majewski wrote: > Documentation of the GPT table format. > +++ b/doc/README.gpt > +Glossary: > + > +- UUID -(Universally Unique Identifier) > +- GUID - (Globally Unique ID) > +- EFI - (Extensible Firmware Interface) > +- UEFI - (Unified EFI) - EFI evolution

Re: [U-Boot] [PATCH 0/4] USB multi controller

2012-09-05 Thread Marek Vasut
Dear Stephen Warren, > On 09/05/2012 12:30 AM, Marek Vasut wrote: > > Dear Lucas Stach, > > > >> Hi Stephen, > >> > >> Am Dienstag, den 04.09.2012, 17:05 -0600 schrieb Stephen Warren: > >>> On 08/30/2012 10:03 AM, Lucas Stach wrote: > Hi all, > > this is a follow up on the patch

Re: [U-Boot] [v3] arm: Fixed the offset for the no relocation.

2012-09-05 Thread Stefano Babic
On 05/09/2012 16:45, Zhong Hongbo wrote: > On 04/09/12 23:57, Stefano Babic wrote: >> On 04/09/2012 16:03, Zhong Hongbo wrote: >>> On 03/09/12 08:14, Marek Vasut wrote: Dear Zhong Hongbo, > From: Zhong Hongbo > > When the u-boot address of destination equal to __start, >

Re: [U-Boot] [PATCH 0/4] USB multi controller

2012-09-05 Thread Stephen Warren
On 09/05/2012 12:30 AM, Marek Vasut wrote: > Dear Lucas Stach, > >> Hi Stephen, >> >> Am Dienstag, den 04.09.2012, 17:05 -0600 schrieb Stephen Warren: >>> On 08/30/2012 10:03 AM, Lucas Stach wrote: Hi all, this is a follow up on the patch "USB: EHCI: Initialize multiple USB con

[U-Boot] [PATCH] kirkwood: fix mpp.h coding style

2012-09-05 Thread Luka Perkov
Signed-off-by: Luka Perkov --- arch/arm/include/asm/arch-kirkwood/mpp.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/asm/arch-kirkwood/mpp.h b/arch/arm/include/asm/arch-kirkwood/mpp.h index 8e50ee7..8ceea7b 100644 --- a/arch/arm/include/asm/arch-kirkw

[U-Boot] [PATCH v4] kirkwood: add support for Iomega iConnect board

2012-09-05 Thread Luka Perkov
Add support for new board iConnect from Iomega. More information about the device can be found here: http://go.iomega.com/en/products/network-storage-desktop/wireless-data-station/network-hard-drive-iconnect/?partner=4735 Signed-off-by: Luka Perkov Tested-by: Wojciech Dubowik Tested-by: Tim Fl

[U-Boot] ima3-mx53:Rename CONFIG_PRIME => CONFIG_ETHPRME, remove unused macro CONFIG_DISCOVER_PHY

2012-09-05 Thread Ashok
From 2d37e7db8adc529ce00e09158710292c3beffe94 Mon Sep 17 00:00:00 2001 From: Ashok Kumar Reddy Date: Wed, 5 Sep 2012 22:09:37 +0530 Subject: [PATCH] ima3-mx53:Rename CONFIG_PRIME => CONFIG_ETHPRME, remove unused macro CONFIG_DISCOVER_PHY Signed-off-by: Ashok Kumar Reddy --- include/configs/im

Re: [U-Boot] [Patch V5 4/4] MIPS: add board qemu-mips64 support

2012-09-05 Thread Daniel Schwierzeck
2012/9/5 Zhi-zhou Zhang : [...] >> >> why have you omitted this? >> >> #define CONFIG_BOOTCOMMAND "bootp;bootelf" >> >> #define CONFIG_CMD_ELF >> > Because I haven't tested `bootelf' command. I'm not should it work or not. > Another reason is that when I configure CONFIG_CMD_ELF I will get lo

Re: [U-Boot] [PATCH v2 4/5] usb: ulpi: add indicator configuration function

2012-09-05 Thread Tom Warren
Igor/Marek, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Wednesday, September 05, 2012 1:52 AM > To: Igor Grinberg > Cc: Lucas Stach; u-boot@lists.denx.de; Stephen Warren; Tom Warren > Subject: Re: [PATCH v2 4/5] usb: ulpi: add indicator configuration function >

Re: [U-Boot] [PATCH v2] avr32: add atngw100mkii board

2012-09-05 Thread Hans-Christian Egtvedt
Around Tue 04 Sep 2012 23:33:29 +0200 or thereabout, andreas.de...@googlemail.com wrote: > From: Andreas Bießmann > > This patch is derived from an older patch provided by atmel in its > buildroot-avr32-v3.0.0.tar.bz2 Many thanks for forward porting this. > Signed-off-by: Andreas Bießmann > c

[U-Boot] [PATCH v2] ubifs: Fix ubifsload when using ZLIB

2012-09-05 Thread Veli-Pekka Peltola
Using ZLIB compression with UBIFS fails if last data node is not a size of UBIFS_BLOCK_SIZE (4096 bytes). Easiest way to test this is trying to read a file smaller than 4k: => ubifsload 4100 /etc/fstab Loading file '/etc/fstab' to addr 0x4100 with size 704 (0x02c0)... UBIFS error (pid

Re: [U-Boot] [PATCH] ubifs: Fix ubifsload when using ZLIB

2012-09-05 Thread Jamie Lentin
On Wed, 05 Sep 2012 09:58:07 +0100, Veli-Pekka Peltola wrote: Using ZLIB compression with UBIFS fails if last data node is not a size of UBIFS_BLOCK_SIZE (4096 bytes). Easiest way to test this is trying to read a file smaller than 4k: => ubifsload 4100 /etc/fstab Loading file '/etc/fst

Re: [U-Boot] [v3] arm: Fixed the offset for the no relocation.

2012-09-05 Thread Zhong Hongbo
On 04/09/12 23:57, Stefano Babic wrote: > On 04/09/2012 16:03, Zhong Hongbo wrote: >> On 03/09/12 08:14, Marek Vasut wrote: >>> Dear Zhong Hongbo, >>> From: Zhong Hongbo When the u-boot address of destination equal to __start, no relocation. relocation offset(r9) = 0. >>> >>>

Re: [U-Boot] How to manage RMOBILE patches?

2012-09-05 Thread Tom Rini
On 09/05/2012 04:18 AM, Albert ARIBAUD wrote: > Hi Nobuhiro, > > On Wed, 5 Sep 2012 11:26:37 +0900, Nobuhiro Iwamatsu > wrote: > >> Hi, >> >> On Wed, Sep 5, 2012 at 2:36 AM, Tom Rini wrote: >>> On Mon, Sep 03, 2012 at 09:15:56PM +0200, Wolfgang Denk wrote: Dear Nobuhiro Iwamatsu,

Re: [U-Boot] [PATCH v2] PXE: FDT: Add support for fdt in PXE

2012-09-05 Thread Chander Kashyap
Hi Jason, On 5 September 2012 19:33, Jason Hobbs wrote: > Chander, > > You should add a description of the new label to doc/README.pxe. > > Otherwise, it looks good. > > Jason I will do the same. -- with warm regards, Chander Kashyap ___ U-Boot mailing

Re: [U-Boot] [PATCH v2] PXE: FDT: Add support for fdt in PXE

2012-09-05 Thread Jason Hobbs
Chander, You should add a description of the new label to doc/README.pxe. Otherwise, it looks good. Jason On Wed, Sep 05, 2012 at 05:26:17AM -0400, Chander Kashyap wrote: > Now DT support is becomming common for all new SoC's. Hence it is better to > have option for getting specific FDT from th

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Marek Vasut
Dear Pavel Herrmann, [...] > > besides, I think it'd be much systematic to just scream at user to call > > "sata rescan" and bail out instead of doing it for him. > > i dont actually need a sata rescan, i just need to make sure i have > dynamically allocated names Sorry, I can't parse this ...

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Marek Vasut
Dear Pavel Herrmann, [...] > > > > move this out. > > > > besides, I think it'd be much systematic to just scream at user to call > > "sata rescan" and bail out instead of doing it for him. > > i dont actually need a sata rescan, i just need to make sure i have > dynamically allocated names, s

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Pavel Herrmann
second try... On Wednesday 05 September 2012 13:33:13 Marek Vasut wrote: > Dear Pavel Herrmann, > > > This driver uses files as block devices, can be used for testing disk > > operations on sandbox. > > A new command "sata_loop" is introduced to load files in runtime. > > > > Signed-off-by: Pave

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Pavel Herrmann
On Wednesday 05 September 2012 13:33:13 Marek Vasut wrote: > Dear Pavel Herrmann, > > > This driver uses files as block devices, can be used for testing disk > > operations on sandbox. > > A new command "sata_loop" is introduced to load files in runtime. > > > > Signed-off-by: Pavel Herrmann > >

Re: [U-Boot] [Patch V5 4/4] MIPS: add board qemu-mips64 support

2012-09-05 Thread Zhi-zhou Zhang
On Wed, Sep 5, 2012 at 7:12 AM, Daniel Schwierzeck < daniel.schwierz...@gmail.com> wrote: > 2012/9/4 Zhizhou Zhang : > > Both big-endian and little-endian are tested with below commands: > > Rom version: (Default, Now we config it as rom version) > > qemu-system-mips64el -M mips -bios u-boot.bin -

Re: [U-Boot] [Patch V5 2/4] MIPS: change address related header files

2012-09-05 Thread Zhi-zhou Zhang
On Wed, Sep 5, 2012 at 6:25 AM, Daniel Schwierzeck < daniel.schwierz...@gmail.com> wrote: > 2012/9/4 Zhizhou Zhang : > > Prepare for upcoming mips64 support. This patch add mips64 address > > space support. > > > > Signed-off-by: Zhizhou Zhang > > --- > > arch/mips/include/asm/addrspace.h |

Re: [U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Marek Vasut
Dear Pavel Herrmann, > This driver uses files as block devices, can be used for testing disk > operations on sandbox. > A new command "sata_loop" is introduced to load files in runtime. > > Signed-off-by: Pavel Herrmann > CC: Marek Vasut > CC: Mike Frysinger ERROR: "foo * bar" should be "foo

Re: [U-Boot] How to manage RMOBILE patches?

2012-09-05 Thread Albert ARIBAUD
Hi Nobuhiro, On Wed, 5 Sep 2012 11:26:37 +0900, Nobuhiro Iwamatsu wrote: > Hi, > > On Wed, Sep 5, 2012 at 2:36 AM, Tom Rini wrote: > > On Mon, Sep 03, 2012 at 09:15:56PM +0200, Wolfgang Denk wrote: > >> Dear Nobuhiro Iwamatsu, > >> > >> In message > >> > >> you wrote: > >> > > >> > I am worki

[U-Boot] [PATCH v3 2/2] Use loop block device in sandbox board

2012-09-05 Thread Pavel Herrmann
Enable SATA_LOOP and a few disk-related commands for sandbox Signed-off-by: Pavel Herrmann --- Changes for v3: drop static names for loop devices Changes for v2: add a few words of description include/configs/sandbox.h | 8 1 file changed, 8 insertions(+) diff --git a/include/con

[U-Boot] [PATCH v3 1/2] Loop block device for sandbox

2012-09-05 Thread Pavel Herrmann
This driver uses files as block devices, can be used for testing disk operations on sandbox. A new command "sata_loop" is introduced to load files in runtime. Signed-off-by: Pavel Herrmann CC: Marek Vasut CC: Mike Frysinger --- Changes for v3: introduce sata_loop command Changes for v2: sp

Re: [U-Boot] [PATCH v2 3/6] video: cfb_console: logo can be positioned via the splashpos variable

2012-09-05 Thread Anatolij Gustschin
Hello Bastian, On Wed, 5 Sep 2012 12:52:59 +0200 bastian.rupp...@sewerin.de wrote: ... > > + video_logo_height += video_logo_ypos; > > + return video_fb_address + video_logo_height * VIDEO_LINE_LEN; > > + } > > +#endif > > I have some trouble with this version when using splashpos = m

Re: [U-Boot] [PATCH 3/6] video: cfb_console: logo can be positioned via the splashpos variable

2012-09-05 Thread Bastian . Ruppert
> Hi Bastian, Hello Anatolij, > > there is a number of issues with this patch, please see comments > below. > > On Fri, 10 Aug 2012 09:26:43 +0200 > Bastian Ruppert wrote: > > > Signed-off-by: Bastian Ruppert > > CC: Anatolij Gustschin > > CC: Tom Rini > > CC: Stefano Babic > > --- > > dri

Re: [U-Boot] [PATCH v2 3/6] video: cfb_console: logo can be positioned via the splashpos variable

2012-09-05 Thread Bastian . Ruppert
Hello Anatolij, > [U-Boot] [PATCH v2 3/6] video: cfb_console: logo can be positioned > via the splashpos variable > > From: Bastian Ruppert > > Extend the driver for placing the video/bmp logo as specified > by "splashpos" environment variable. > > Signed-off-by: Bastian Ruppert > Signed-off-by:

  1   2   >