[U-Boot] [PATCH] imx SPL: enable boot from eMMC boot partitions.

2014-12-12 Thread Pierre Aubert
Signed-off-by: Pierre Aubert --- arch/arm/imx-common/spl.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/imx-common/spl.c b/arch/arm/imx-common/spl.c index 477c38c..ac6e40e 100644 --- a/arch/arm/imx-common/spl.c +++ b/arch/arm/imx-common/spl.c @@ -68,8

[U-Boot] [PATCH] imx: complete the definition of the I2C_PADS macros

2014-12-05 Thread Pierre Aubert
Complete the definition of the macros I2C_PADS and I2C_PADS_INFO for use without multiple SoC type. Usefull when the same board have configurations with or without SPL. Cc: Stefano Babic Cc: Nikita Kiryanov Signed-off-by: Pierre Aubert --- arch/arm/include/asm/imx-common/mxc_i2c.h | 16

[U-Boot] [PATCH] imx: fix IOMUX_PADS and SETUP_IOMUX_PAD macros definitions.

2014-12-05 Thread Pierre Aubert
When CONFIG_MX6QDL is undefined, these definitions must be coherent with those in mx6-pins.h. The prefix is MX6 regardless of the type of SoC. Cc: Tim Harvey Cc: Stefano Babic Signed-off-by: Pierre Aubert --- arch/arm/include/asm/imx-common/iomux-v3.h | 10 ++ 1 files changed, 2

Re: [U-Boot] [PATCH v3] fs/ext4/ext4fs.c, fs/fs.c fs/fat/fat_write.c: Adjust 64bit math methods

2014-12-01 Thread Pierre Aubert
Hi, Tested on an iMX6 SabreSD board. Issue is fixed. There's just a warning about trailing whitespaces at line 75 of the patch. Tested-by: Pierre Aubert Thanks Pierre Tom Rini wrote > The changes to introduce loff_t into filesize means that we need to do > 64bit math on 32bi

Re: [U-Boot] [ANN] U-Boot v2015.01-rc2 released

2014-12-01 Thread Pierre Aubert
@@ endif > LDFLAGS_FINAL += --gc-sections > PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \ >-fno-common -ffixed-r9 > -PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \ > +PLATFORM_RELFLAGS += \ > $(call cc-option,-mshort-load-bytes,$(call >

[U-Boot] [PATCH V5 3/3] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-24 Thread Pierre Aubert
with the key provided. * mmc rpmb counter Returns the 'Write counter' of the RPMB partition. The sub-command is conditional on compilation flag CONFIG_SUPPORT_EMMC_RPMB Signed-off-by: Pierre Aubert CC: Pantelis Antoniou CC: Wolfgang Denk --- Changes in V5: - move changelog to the

[U-Boot] [PATCH V5 2/3] Add the function 'confirm_yesno' for interactive

2014-04-24 Thread Pierre Aubert
User's confirmation is asked in different commands. This commit adds a function for such confirmation. Signed-off-by: Pierre Aubert --- V3, V4, V5: no changes Patch added in V2 common/cmd_fuse.c | 11 ++- common/cmd_nand.c | 16 +--- common/cmd_otp.c |

[U-Boot] [PATCH V5 0/3] eMMC: support for Read Protected Memory Block (RPMB)

2014-04-24 Thread Pierre Aubert
ated to eMMC. - new patch for adding the 'confirm_yesno' function as suggested by W.Denk - improved test for existence of RPMB partition. - fix of coding issues. Changes in V2: - use ALLOC_CACHE_ALIGN_BUFFER in rpmb.c instead of a static buffer for the RPMB frames. Pierre Aube

[U-Boot] [PATCH V5 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- Changes in V5: - move changelog to the right place - change lib/Makefile for adding sha256 when

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre AUBERT
g Denk Best regards Pierre Aubert ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre AUBERT
Hello Wolfgang, Le 24/04/2014 09:33, Wolfgang Denk a écrit : Dear Pierre, In message <5358ba6a.3030...@staubli.com> you wrote: The changelog goes into the comment section (i. e. below the "---" I will fix it in V5. I made the same mistake for the patch 3/3. Thanks. Actually I cannot see a V

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre AUBERT
Hello Wolfgang, Le 24/04/2014 08:55, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1398321641-7113-2-git-send-email-p.aub...@staubli.com> you wrote: This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition

[U-Boot] [PATCH V4 3/3] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-23 Thread Pierre Aubert
c info' subcommand, which is the same as mmcinfo. mmcinfo is kept for compatibility. - add changelog in commit comments. Changes in V3: - add entries in README for configuration options related to eMMC. - improved test for existence of RPMB partition. - fix of coding issues. Signed

[U-Boot] [PATCH V4 2/3] Add the function 'confirm_yesno' for interactive

2014-04-23 Thread Pierre Aubert
User's confirmation is asked in different commands. This commit adds a function for such confirmation. Signed-off-by: Pierre Aubert --- common/cmd_fuse.c | 11 ++- common/cmd_nand.c | 16 +--- common/cmd_otp.c | 18 +++--- common/console.c |

[U-Boot] [PATCH V4 0/3] eMMC: support for Read Protected Memory Block (RPMB)

2014-04-23 Thread Pierre Aubert
C_CACHE_ALIGN_BUFFER in rpmb.c instead of a static buffer for the RPMB frames. Pierre Aubert (3): eMMC: add support for operations in RPMB partition Add the function 'confirm_yesno' for interactive eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

[U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-23 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Changes in V2: - use ALLOC_CACHE_ALIGN_BUFFER in rpmb.c instead of a static buffer for the RPMB frames. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou

[U-Boot] [PATCH V3 2/3] Add the function 'confirm_yesno' for interactive confirmation.

2014-04-22 Thread Pierre Aubert
User's confirmation is asked in different commands. This commit adds a function for such confirmation. Signed-off-by: Pierre Aubert --- common/cmd_fuse.c | 11 ++- common/cmd_nand.c | 16 +--- common/cmd_otp.c | 18 +++--- common/console.c |

[U-Boot] [PATCH V3 1/3] eMMC: add support for operations in RPMB partition

2014-04-22 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- drivers/mmc/Makefile |1 + drivers/mmc/rpmb.c | 323

[U-Boot] [PATCH V3 3/3] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-22 Thread Pierre Aubert
with the key provided. * mmc rpmb counter Returns the 'Write counter' of the RPMB partition. The sub-command is conditional on compilation flag CONFIG_SUPPORT_EMMC_RPMB Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- README |

[U-Boot] [PATCH V3 0/3] eMMC: support for Read Protected Memory Block (RPMB)

2014-04-22 Thread Pierre Aubert
fix of coding issues. Changes in V2: - use ALLOC_CACHE_ALIGN_BUFFER in rpmb.c instead of a static buffer for the RPMB frames. Pierre Aubert (3): eMMC: add support for operations in RPMB partition Add the function 'confirm_yesno' for interactive confirmation. eMMC: cmd_mmc.c a

Re: [U-Boot] [PATCH V2 2/2] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-17 Thread Pierre AUBERT
Hello Wolfgang, Le 17/04/2014 21:56, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1397747435-24042-3-git-send-email-p.aub...@staubli.com> you wrote: This sub-command adds support for the RPMB partition of an eMMC: * mmc rpmb key Programs the authentication key in the eMM

[U-Boot] [PATCH V2 1/2] eMMC: add support for operations in RPMB partition

2014-04-17 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- drivers/mmc/Makefile |1 + drivers/mmc/rpmb.c | 323

[U-Boot] [PATCH V2 2/2] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-17 Thread Pierre Aubert
with the key provided. * mmc rpmb counter Returns the 'Write counter' of the RPMB partition. The sub-command is conditional on compilation flag CONFIG_SUPPORT_EMMC_RPMB Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- common/cmd_mmc.c | 128 +

[U-Boot] [PATCH V2 0/2] eMMC: support for Read Protected Memory Block (RPMB)

2014-04-17 Thread Pierre Aubert
ned in the board configuration file. It has been tested on a SabreSDP iMX6 board. Changes in V2: - use ALLOC_CACHE_ALIGN_BUFFER in rpmb.c instead of a static buffer for the RPMB frames. Pierre Aubert (2): eMMC: add support for operations in RPMB partition eMMC: cmd_mmc.c adds the 'rp

[U-Boot] [PATCH 2/2] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-11 Thread Pierre Aubert
with the key provided. * mmc rpmb counter Returns the 'Write counter' of the RPMB partition. The sub-command is conditional on compilation flag CONFIG_SUPPORT_EMMC_RPMB Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- common/cmd_mmc.c | 128 +

[U-Boot] [PATCH 1/2] eMMC: add support for operations in RPMB partition

2014-04-11 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- drivers/mmc/Makefile |1 + drivers/mmc/rpmb.c | 317

[U-Boot] [PATCH 0/2] eMMC: support for Read Protected Memory Block (RPMB)

2014-04-11 Thread Pierre Aubert
ned in the board configuration file. It has been tested on a SabreSDP iMX6 board. Pierre Aubert (2): eMMC: add support for operations in RPMB partition eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command common/cmd_mmc.c | 128

Re: [U-Boot] [PATCH REPOST] usb: create common header virtual root hub descriptors

2014-03-04 Thread Pierre AUBERT
Hello Stephen, Sorry for the delay, I wasn't connected during 2 weeks. I can't comment your patch because I no longer have an MPC5200-based board. Best regards Le 21/02/2014 05:19, Stephen Warren a écrit : On 02/13/2014 09:15 PM, Stephen Warren wrote: Many USB host controller drivers contain

Re: [U-Boot] [PATCH 2/2] env export fix: compute the CRC on the real lenght of the exported variables.

2014-03-03 Thread Pierre AUBERT
Dear Tom Rini Le 26/02/2014 21:02, Tom Rini a écrit : [ Catching up on some old emails ] On Fri, Nov 15, 2013 at 08:20:09AM +0100, Pierre AUBERT wrote: Dear Wolfgang Denk, Le 14/11/2013 18:24, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1384434720-11214-3-git-send-email-p.

Re: [U-Boot] imx6 Solo and LAN8720

2014-01-16 Thread Pierre Aubert
Hello Andy, We use a similar configuration on our custom board. The differences between your code and ours are : #define ENET_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ PAD_CTL_DSE_40ohm | PAD_CTL_SRE_SLOW | PAD_CTL_HYS) iomux_v3_cfg_t const enet_pad

Re: [U-Boot] [PATCH] mx6: Revert "mx6: soc: Disable VDDPU regulator"

2014-01-16 Thread Pierre AUBERT
Le 16/01/2014 17:01, Fabio Estevam a écrit : On Thu, Jan 16, 2014 at 1:50 PM, Otavio Salvador wrote: It worked for you probably because you used the ldo bypass mode. Yes; I did the bypass mode. We currently don't do LDO bypass mode in mainline U-boot. We do it in FSL U-boot. With LDO bypas

Re: [U-Boot] [PATCH v2 6/6] mx6: soc: Disable VDDPU regulator

2014-01-16 Thread Pierre AUBERT
Hi Fabio, Le 16/01/2014 12:19, Fabio Estevam a écrit : Hi Pierre, On Thu, Jan 16, 2014 at 6:40 AM, Pierre Aubert wrote: =Hello, Otavio Salvador wrote It seems this patch makes 3.10.17-1.0.0-beta freeze in a customer board; reverting this makes this to work again. It freezes when loading

Re: [U-Boot] [PATCH v2 6/6] mx6: soc: Disable VDDPU regulator

2014-01-16 Thread Pierre Aubert
=Hello, Otavio Salvador wrote > > It seems this patch makes 3.10.17-1.0.0-beta freeze in a customer board; > reverting this makes this to work again. It freezes when loading Vivante > module. > > Can someone reproduce this freeze? The kernel 3.0.35 freezes also on the SabreSD platform with thi

Re: [U-Boot] toolchain problems when building iMX6 mx6qsabreauto (and another bootloader tool)

2013-12-06 Thread Pierre Aubert
Dear Måns Rullgård , On Wed, Dec 4, 2013 at 9:35 AM, Måns Rullgård <[hidden email]> wrote: >> mx6: compute PLL PFD frequencies rather than using defines > > That commit introduces a 64-bit division without using the lldiv() > function, which pulls in previously unused libgcc stuff. Thank yo

Re: [U-Boot] [PATCH 2/2] env export fix: compute the CRC on the real lenght of the exported variables.

2013-11-14 Thread Pierre AUBERT
Dear Wolfgang Denk, Le 14/11/2013 18:24, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1384434720-11214-3-git-send-email-p.aub...@staubli.com> you wrote: Signed-off-by: Pierre Aubert --- common/cmd_nvedit.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)

Re: [U-Boot] [PATCH 1/2] hashtable: fix the export lenght computation.

2013-11-14 Thread Pierre AUBERT
Dear Wolfgang Denk, Le 14/11/2013 18:25, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1384434720-11214-2-git-send-email-p.aub...@staubli.com> you wrote: The room for the '=' and the sep char was reserved twice. Are you sure? Keep in mind that the termination

[U-Boot] [PATCH 1/2] hashtable: fix the export lenght computation.

2013-11-14 Thread Pierre Aubert
The room for the '=' and the sep char was reserved twice. Signed-off-by: Pierre Aubert --- lib/hashtable.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/hashtable.c b/lib/hashtable.c index 4356b23..480d207 100644 --- a/lib/hashtable.c +++ b/lib/h

[U-Boot] [PATCH 0/2] env export fixes

2013-11-14 Thread Pierre Aubert
These patches fix two issues in the export of environment variables with CRC calculation. Pierre Aubert (2): hashtable: fix the export lenght computation. env export fix: compute the CRC on the real lenght of the exported variables. common/cmd_nvedit.c |5 +++-- lib/hashtable.c

[U-Boot] [PATCH 2/2] env export fix: compute the CRC on the real lenght of the exported variables.

2013-11-14 Thread Pierre Aubert
Signed-off-by: Pierre Aubert --- common/cmd_nvedit.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index 5bcc324..c32a932 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -922,14 +922,15 @@ NXTARG

[U-Boot] [PATCH] env: fix the env export varname

2013-10-08 Thread Pierre Aubert
The env export command doesn't export the first variable of the list since commit 5a31ea04c9ee5544fbb70ad7597ea4b294840eab "env grep" - reimplement command using hexport_r() Signed-off-by: Pierre Aubert --- common/cmd_nvedit.c |6 ++ lib/hashtable.c |2 +- 2 f

Re: [U-Boot] [PATCH] ARM: arch-mx6: fix PLL2_PFD2_FREQ

2013-09-25 Thread Pierre AUBERT
Hello Markus, Le 25/09/2013 09:24, Markus Niebel a écrit : Hello Pierre, --- arch/arm/include/asm/arch-mx6/crm_regs.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/asm/arch-mx6/crm_regs.h b/arch/arm/include/asm/arch-mx6/crm_regs.h index 74aefe6..2813

[U-Boot] [PATCH] mx6: Fix use of improper value in enable_ipu_clock

2013-09-23 Thread Pierre Aubert
The value MXC_CCM_CCGR3_IPU1_IPU_DI0_OFFSET that was used to initialize the CCGR3 register caused an undefined value for CG0. Signed-off-by: Pierre Aubert CC: Stefano Babic --- arch/arm/cpu/armv7/mx6/clock.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu

Re: [U-Boot] [PATCH] ARM: arch-mx6: fix PLL2_PFD2_FREQ

2013-09-20 Thread Pierre Aubert
Stefano Babic wrote > On 11/09/2013 15:30, Markus Niebel wrote: >> From: Markus Niebel < > Markus.Niebel@ > > >> >> according to the manual frequency of PLL2 PFD2 is 396.000.000 >> instead of 400.000.000 >> >> Signed-off-by: Markus Niebel < > Markus.Niebel@ > > >> --- >> arch/arm/include/asm

[U-Boot] [PATCH V2] mx6: compute PLL PFD frequencies rather than using defines

2013-09-19 Thread Pierre Aubert
Signed-off-by: Pierre Aubert CC: Stefano Babic --- Change for V2: Use the right macros for computing PFD dividers. arch/arm/cpu/armv7/mx6/clock.c | 56 ++--- arch/arm/include/asm/arch-mx6/crm_regs.h | 11 -- 2 files changed, 42 insertions(+), 25

[U-Boot] [PATCH] mx6: compute PLL PFD frequencies rather than using defines

2013-09-19 Thread Pierre Aubert
Signed-off-by: Pierre Aubert CC: Stefano Babic --- arch/arm/cpu/armv7/mx6/clock.c | 75 -- arch/arm/include/asm/arch-mx6/crm_regs.h | 11 2 files changed, 61 insertions(+), 25 deletions(-) diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu

Re: [U-Boot] i.MX6DL/S regression in mx6dl_pins.h

2013-09-12 Thread Pierre AUBERT
Hello Eric, Le 12/09/2013 23:56, Eric Nelson a écrit : Hi all, It seems to be all about displays and mux/pad registers for me these days. I just tracked down an issue related to commit 87d720e0c that causes improper display on our RGB displays. In particular, the pad settings for these two r

[U-Boot] [PATCH] usb: add support for the USB Ethernet adapter D-Link DUB-E100 H/W Ver C1

2013-06-27 Thread Pierre Aubert
This trivial patch adds the definition of the vid/pid for the Ver C1 of the USB Ethernet adapter D-Link DUB-E100. Signed-off-by: Pierre Aubert CC: Marek Vasut --- drivers/usb/eth/asix.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/usb/eth/asix.c b/drivers

[U-Boot] [[PATCH]] imx6: fix GPR2 wrong definition

2013-06-19 Thread Pierre Aubert
Signed-off-by: Pierre Aubert CC: Stefano Babic --- arch/arm/include/asm/arch-mx6/imx-regs.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h b/arch/arm/include/asm/arch-mx6/imx-regs.h index 03abb2a..45824f9 100644 --- a/arch/arm

[U-Boot] [PATCH v3 2/2] imx: Add support for the SabreSD shipped with i.MX6DL

2013-06-04 Thread Pierre Aubert
The SabreSD platform is available with i.MX6Q or i.MX6DL. This patch adds the support of the i.MX6DL. The config file and the board directory are renamed to remove the reference to the MX6Q. Signed-off-by: Pierre Aubert CC: Stefano Babic --- Changes in v2: - update MAINTAINERS

Re: [U-Boot] [PATCH] imx: Complete the pin definitions for the i.MX6DL / i.MX6Solo

2013-06-03 Thread Pierre AUBERT
Hi Stephano, Le 03/06/2013 15:03, Stefano Babic a écrit : ... Patch needs a rebased to be merge. Could you repost them (also 2/2) after rebasing on current u-boot-imx ? Thanks ! Best regards, Stefano Babic I will submit a V3 today. Best regards ___

[U-Boot] [PATCH v2 2/2] imx: Add support for the SabreSD shipped with i.MX6DL

2013-04-21 Thread Pierre Aubert
The SabreSD platform is available with i.MX6Q or i.MX6DL. This patch adds the support of the i.MX6DL. The config file and the board directory are renamed to remove the reference to the MX6Q. Signed-off-by: Pierre Aubert CC: Stefano Babic --- Changes in v2: - update MAINTAINERS

Re: [U-Boot] [PATCH] imx: Add support for the SabreSD shipped with i.MX6DL

2013-04-19 Thread Pierre AUBERT
.cfg,MX6Q Best regards, Stefano Babic Best regards Pierre Aubert ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] imx: Add support for the SabreSD shipped with i.MX6DL

2013-04-18 Thread Pierre AUBERT
Hello Wolfgang, Le 18/04/2013 19:37, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1366296086-22394-1-git-send-email-p.aub...@staubli.com> you wrote: The SabreSD platform is available with i.MX6Q or i.MX6DL. This patch adds the support of the i.MX6DL. The config file and the

Re: [U-Boot] [PATCH] imx: Add support for the SabreSD shipped with i.MX6DL

2013-04-18 Thread Pierre AUBERT
Hi Fabio, I can split the patch if you wish, but in this case the compilation would be broken for the sabreauto if only one of the two patches is applied. Best regards Pierre Aubert Le 18/04/2013 19:51, Fabio Estevam a écrit : Hi Pierre, On Thu, Apr 18, 2013 at 11:41 AM, Pierre Aubert

Re: [U-Boot] [PATCH] imx: Complete the pin definitions for the i.MX6DL / i.MX6Solo

2013-04-18 Thread Pierre AUBERT
Hello Wolfgang Le 18/04/2013 19:38, Wolfgang Denk a écrit : Dear Pierre AUBERT, In message <51700b80.2090...@staubli.com> you wrote: What is the purpose of this patch? Who needs the added definitions? These new definitions are useful for all boards based on i.MX6DL or i.MX6Solo.

Re: [U-Boot] [PATCH] imx: Complete the pin definitions for the i.MX6DL / i.MX6Solo

2013-04-18 Thread Pierre AUBERT
Hello Wolfgang, Le 18/04/2013 16:41, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1366286251-17552-1-git-send-email-p.aub...@staubli.com> you wrote: Signed-off-by: Pierre Aubert CC: Stefano Babic What is the purpose of this patch? Who needs the added definitions? The

[U-Boot] [PATCH] imx: Add support for the SabreSD shipped with i.MX6DL

2013-04-18 Thread Pierre Aubert
The SabreSD platform is available with i.MX6Q or i.MX6DL. This patch adds the support of the i.MX6DL. The config file and the board directory are renamed to remove the reference to the MX6Q. Signed-off-by: Pierre Aubert CC: Stefano Babic --- .../freescale/{mx6qsabresd => mx6sabresd}/Makef