Re: [U-Boot] [PATCH] embestmx6boards: Increase boot delay to 3s

2014-12-14 Thread Eric Bénard
Le Sun, 14 Dec 2014 22:56:21 +0200, Nikolay Dimitrov picmas...@mail.bg a écrit : On 12/14/2014 04:52 PM, Iain Paton wrote: This also leads to a slightly less unreasonable increase in bootdelay to 2s from config_distro_defaults.h Well, this is again subjective - we can always argue that 2s

Re: [U-Boot] [PATCH] embestmx6boards: Increase boot delay to 3s

2014-12-13 Thread Eric Bénard
Hi Nikolay, Le Fri, 12 Dec 2014 20:16:19 +0200, picmas...@mail.bg a écrit : From: Nikolay Dimitrov picmas...@mail.bg Signed-off-by: Nikolay Dimitrov picmas...@mail.bg --- include/configs/embestmx6boards.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [U-Boot] [PATCH] embestmx6boards: Increase boot delay to 3s

2014-12-13 Thread Eric Bénard
Hi Nikolay, Le Sat, 13 Dec 2014 18:05:15 +0200, Nikolay Dimitrov picmas...@mail.bg a écrit : On 12/13/2014 04:16 PM, Eric Bénard wrote: Le Fri, 12 Dec 2014 20:16:19 +0200, picmas...@mail.bg a écrit : From: Nikolay Dimitrov picmas...@mail.bg Signed-off-by: Nikolay Dimitrov picmas

Re: [U-Boot] USB Host not enumerating properly on AM335x-based board

2014-11-21 Thread Eric Bénard
Hi Maxime, Le Thu, 20 Nov 2014 17:49:17 +0100, Maxime Ripard maxime.rip...@free-electrons.com a écrit : Hi, I'm currently working on 2014.07, on a custom TI AM335x based board. Everything works great so far, except when we're trying to have USB host working. The board has the MUSB1

Re: [U-Boot] [PATCH] NAND: Add Micron MT29F16G identifier

2014-05-01 Thread Eric Bénard
Hi, Le Wed, 30 Apr 2014 21:30:58 -0700 (PDT), smithknown jimzhan...@yahoo.com a écrit : I added same ids, the device was able to be detected, but the nand info, nand erase.chip did not work. Same command works for a Micron 512MBytes nand. I am using mxc_nand driver. What else do we need

Re: [U-Boot] usbtty using i.MX6

2014-04-27 Thread Eric Bénard
Hi Otavio, Le Sat, 26 Apr 2014 19:47:27 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : I'd like to know if someone has succeed in using usbtty with i.MX6. I am interested in using it for one board but been not succed, it seems:

Re: [U-Boot] usbtty using i.MX6

2014-04-27 Thread Eric Bénard
Hi Eric, Le Sun, 27 Apr 2014 10:56:48 -0700, Eric Nelson eric.nel...@boundarydevices.com a écrit : We're using UDC on all of our i.MX6 board. Marek and Troy have had this working for a while now. I think the two key patches are these:

Re: [U-Boot] usbtty using i.MX6

2014-04-27 Thread Eric Bénard
Hi again, Le Sun, 27 Apr 2014 20:56:56 +0200, Eric Bénard e...@eukrea.com a écrit : Le Sun, 27 Apr 2014 10:56:48 -0700, Eric Nelson eric.nel...@boundarydevices.com a écrit : We're using UDC on all of our i.MX6 board. Marek and Troy have had this working for a while now. I think the two

[U-Boot] [PATCH v2 1/8] imx-common: add board_video_skip

2014-04-04 Thread Eric Bénard
this function is shared by several boards and thus can be factorized Signed-off-by: Eric Bénard e...@eukrea.com Acked-by: Eric Nelson eric.nel...@boundarydevices.com Acked-by: Stefano Babic sba...@denx.de --- v2 : rename display_num to display_count as requested by Eric Nelson keep video.h

[U-Boot] [PATCH v2 2/8] nitrogen6x: use common board_video_skip

2014-04-04 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com Acked-by: Eric Nelson eric.nel...@boundarydevices.com --- v2 : rename display_num to display_count as requested by Eric Nelson board/boundary/nitrogen6x/nitrogen6x.c | 61 ++ include/configs/nitrogen6x.h | 1

[U-Boot] [PATCH v2 3/8] mx6sabresd: use common board_video_skip

2014-04-04 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com --- v2 : rename display_num to display_count as requested by Eric Nelson board/freescale/mx6sabresd/mx6sabresd.c | 59 ++--- include/configs/mx6sabresd.h| 1 + 2 files changed, 4 insertions(+), 56 deletions

[U-Boot] [PATCH v2 4/8] RiOTboard and MarSBoard: add new boards support

2014-04-04 Thread Eric Bénard
of schematics. Signed-off-by: Eric Bénard e...@eukrea.com Acked-by: Stefano Babic sba...@denx.de --- v2 : rename display_num to display_count as requested by Eric Nelson remove last BOARD_IS_RIOT in embestmx6boards.h which was preventing CONFIG_SUPPORT_EMMC_BOOT to be defined. board/embest

[U-Boot] [PATCH v2 6/8] nitrogen6x: use common detect_hdmi

2014-04-04 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com --- v2: no change board/boundary/nitrogen6x/nitrogen6x.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c index cb5f787..8475653 100644 --- a/board/boundary

[U-Boot] [PATCH v2 5/8] imx-common/video: add detect_hdmi

2014-04-04 Thread Eric Bénard
this function is used by several board together with board_video_skip to detect if hdmi is plugged is order to select the display to use. So move it in imx-common to share it. Signed-off-by: Eric Bénard e...@eukrea.com --- v2: no change arch/arm/imx-common/video.c | 10

[U-Boot] [PATCH v2 7/8] mx6sabresd: use common detect_hdmi

2014-04-04 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com --- v2: no change board/freescale/mx6sabresd/mx6sabresd.c | 8 1 file changed, 8 deletions(-) diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index 297d20d..2a1a2e8 100644 --- a/board/freescale

Re: [U-Boot] [PATCH 4/8] RiOTboard and MarSBoard: add new boards support

2014-04-04 Thread Eric Bénard
Hi, Le Fri, 04 Apr 2014 15:51:10 +0100, selsin...@gmail.com a écrit : Is these any chance the RIoT and MarS patches will make it into v2014.04 ? I don't think so as we are late in the development cycle of v2014.04. I'd like to write up a step by step howto at element14.com for people wanting

[U-Boot] [PATCH 1/8] imx-common: add board_video_skip

2014-04-02 Thread Eric Bénard
this function is shared by several board and thus can be factorized Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/imx-common/Makefile| 1 + arch/arm/imx-common/video.c | 55 + arch/arm/include/asm/imx-common/video.h | 20

[U-Boot] [PATCH 1/8] imx-common: add board_video_skip

2014-04-02 Thread Eric Bénard
this function is shared by several board and thus can be factorized Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/imx-common/Makefile| 1 + arch/arm/imx-common/video.c | 55 + arch/arm/include/asm/imx-common/video.h | 20

[U-Boot] [PATCH 3/8] mx6sabresd: use common board_video_skip

2014-04-02 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com Cc: Fabio Estevam fabio.este...@freescale.com --- board/freescale/mx6sabresd/mx6sabresd.c | 59 ++--- include/configs/mx6sabresd.h| 1 + 2 files changed, 4 insertions(+), 56 deletions(-) diff --git a/board

[U-Boot] [PATCH 2/8] nitrogen6x: use common board_video_skip

2014-04-02 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com Cc: Eric Nelson eric.nel...@boundarydevices.com --- board/boundary/nitrogen6x/nitrogen6x.c | 61 ++ include/configs/nitrogen6x.h | 1 + 2 files changed, 4 insertions(+), 58 deletions(-) diff --git a/board

[U-Boot] [PATCH 5/8] imx-common/video: add detect_hdmi

2014-04-02 Thread Eric Bénard
this function is used by several board together with board_video_skip to detect if hdmi is plugged is order to select the display to use. So move it in imx-common to share it. Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/imx-common/video.c | 10 ++ arch/arm/include

[U-Boot] [PATCH 4/8] RiOTboard and MarSBoard: add new boards support

2014-04-02 Thread Eric Bénard
of schematics. Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/mx6boards/Makefile| 9 + board/embest/mx6boards/mx6boards.c | 607 + boards.cfg | 2 + include/configs/embestmx6boards.h | 339 + 4 files

[U-Boot] [PATCH 6/8] nitrogen6x: use common detect_hdmi

2014-04-02 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com Cc: Eric Nelson eric.nel...@boundarydevices.com --- board/boundary/nitrogen6x/nitrogen6x.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c index 1d96db1..4e78ce4

[U-Boot] [PATCH 7/8] mx6sabresd: use common detect_hdmi

2014-04-02 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com Cc: Fabio Estevam fabio.este...@freescale.com --- board/freescale/mx6sabresd/mx6sabresd.c | 8 1 file changed, 8 deletions(-) diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index d54d5db..8935fa8

[U-Boot] [PATCH 8/8] embest/mx6boards: use common detect_hdmi

2014-04-02 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/mx6boards/mx6boards.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/board/embest/mx6boards/mx6boards.c b/board/embest/mx6boards/mx6boards.c index f65c4fa..808a855 100644 --- a/board/embest/mx6boards/mx6boards.c +++ b/board

Re: [U-Boot] [PATCH v4 1/2] RiOTboard: add new board

2014-04-01 Thread Eric Bénard
Hi Stefano, Le Tue, 01 Apr 2014 10:41:50 +0200, Stefano Babic sba...@denx.de a écrit : On 31/03/2014 22:02, Eric Bénard wrote: Le Sun, 30 Mar 2014 18:20:49 +0200, Stefano Babic sba...@denx.de a écrit : A general remark. I agree by reading the whole thread about checking at runtime which

Re: [U-Boot] [PATCH v4 1/2] RiOTboard: add new board

2014-03-31 Thread Eric Bénard
Hi Stefano, Le Sun, 30 Mar 2014 18:20:49 +0200, Stefano Babic sba...@denx.de a écrit : A general remark. I agree by reading the whole thread about checking at runtime which is the running board (you do it getting the cpu type). However, you use also a compiler switch mechanism, adding

Re: [U-Boot] [PATCH v4 1/2] RiOTboard: add new board

2014-03-30 Thread Eric Bénard
Hi Stefano, Le Sun, 30 Mar 2014 18:20:49 +0200, Stefano Babic sba...@denx.de a écrit : I jump directly to V4 ;-) Sorry for late review, I was not in office last days. Added Ben in CC. He sent a first version for the Marsboard. On 29/03/2014 22:29, Eric Bénard wrote: this board

[U-Boot] [PATCH v4 1/2] RiOTboard: add new board

2014-03-29 Thread Eric Bénard
USB loader are tested. For more informations on this board : http://www.riotboard.org/ Signed-off-by: Eric Bénard e...@eukrea.com --- v4: add LVDS TFT support and use clrbits / setbits / clrsetbits as suggested by Wolfgang board/embest/riotboard/Makefile| 9 + board/embest/riotboard

[U-Boot] [PATCH v4 2/2] MarSBoard: add new board

2014-03-29 Thread Eric Bénard
and through USB loader are tested. For more informations on this board : http://www.embest-tech.com/shop/star/marsboard.html As this board shares a lot with RiOTboard, both boards are supported by the same code base which is renamed embest/mx6boards. Signed-off-by: Eric Bénard e...@eukrea.com --- v4

Re: [U-Boot] [PATCH v2 2/2] MarSBoard: add new board

2014-03-27 Thread Eric Bénard
Hi Stefan, Le Thu, 27 Mar 2014 08:05:10 +0100, Stefan Roese s...@denx.de a écrit : Yes, I agree. #ifdef's are ugly. But code duplication is also a problem as Wolfgang has mentioned. Isn't there a way to detect the board type at runtime somehow (via CPU type or GPIO input, ...)? And then

Re: [U-Boot] [PATCH v2 2/2] MarSBoard: add new board

2014-03-27 Thread Eric Bénard
Hi Fabio, Le Thu, 27 Mar 2014 09:44:02 -0300, Fabio Estevam feste...@gmail.com a écrit : So in theory yes, we could have a single board file for all the mx6 boards out there and make it full of ifdefs all over it to handle all the hardware variations. here we talk of 2 boards from the same

Re: [U-Boot] [PATCH v2 2/2] MarSBoard: add new board

2014-03-27 Thread Eric Bénard
Hi Otavio, Le Thu, 27 Mar 2014 09:50:10 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : And this does work, as can be seen in Barebox which has it working for quite some time. You can see equivalent patch in http://lists.infradead.org/pipermail/barebox/2014-March/018408.html

[U-Boot] [PATCH v3 1/2] RiOTboard: add new board

2014-03-27 Thread Eric Bénard
on this board : http://www.riotboard.org/ Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/riotboard/Makefile| 9 + board/embest/riotboard/riotboard.c | 493 + boards.cfg | 1 + include/configs/riotboard.h| 299

[U-Boot] [PATCH v3 2/2] MarSBoard: add new board

2014-03-27 Thread Eric Bénard
informations on this board : http://www.embest-tech.com/shop/star/marsboard.html As this board shares a lot with RiOTboard, both boards are supported by the same code base which is renamed embest/mx6boards. Signed-off-by: Eric Bénard e...@eukrea.com --- v3: switch to automatic board detection in c code

[U-Boot] [PATCH 2/2] MarSBoard: add new board

2014-03-26 Thread Eric Bénard
informations on this board : http://www.embest-tech.com/shop/star/marsboard.html Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/marsboard/Makefile| 9 + board/embest/marsboard/marsboard.c | 489 + boards.cfg | 1 + include

[U-Boot] [PATCH 1/2] RiOTboard: add new board

2014-03-26 Thread Eric Bénard
on this board : http://www.riotboard.org/ Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/riotboard/Makefile| 9 + board/embest/riotboard/riotboard.c | 493 + boards.cfg | 1 + include/configs/riotboard.h| 299

Re: [U-Boot] [PATCH 2/2] MarSBoard: add new board

2014-03-26 Thread Eric Bénard
Hi Wolfgang, Le Wed, 26 Mar 2014 20:02:57 +0100, Wolfgang Denk w...@denx.de a écrit : In message 1395858363-21054-2-git-send-email-e...@eukrea.com you wrote: this board is produced by Embest/Element 14 and is based on i.MX6 Dual Comparing this patch agains the earlier one for the

[U-Boot] [PATCH v2 2/2] MarSBoard: add new board

2014-03-26 Thread Eric Bénard
informations on this board : http://www.embest-tech.com/shop/star/marsboard.html As this board shares a lot with RiOTboard, both boards are supported by the same code base which is renamed embest/mx6boards Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/{riotboard = mx6boards}/Makefile | 2

[U-Boot] [PATCH v2 1/2] RiOTboard: add new board

2014-03-26 Thread Eric Bénard
on this board : http://www.riotboard.org/ Signed-off-by: Eric Bénard e...@eukrea.com --- board/embest/riotboard/Makefile| 9 + board/embest/riotboard/riotboard.c | 493 + boards.cfg | 1 + include/configs/riotboard.h| 299

Re: [U-Boot] iMX6 IPU display interface definition

2014-03-20 Thread Eric Bénard
Hi Andreas, Le Thu, 20 Mar 2014 16:13:53 +, Andreas Geisreiter ageisrei...@dh-electronics.de a écrit : Thanks for your help. In the header files which you mentioned I found the following: V-Sync: Active high or low = FB_SYNC_VERT_HIGH_ACT H-Sync: Active high or low =

Re: [U-Boot] i.MX6 freeze when running Linux FSL 3.10.9-1.0.0-alpha AND U-Boot 2013.10

2013-11-26 Thread Eric Bénard
Hi Otavio, Le Tue, 26 Nov 2013 12:32:45 -0200, Otavio Salvador ota...@ossystems.com.br a écrit : Hello, last days I've been trying to isolate the hung cause of a customer board, and also SabreSD board, when using the Freescale's Linux fork of 3.10.9 with 2013.10 U-Boot. The below patch

Re: [U-Boot] i.MX6 freeze when running Linux FSL 3.10.9-1.0.0-alpha AND U-Boot 2013.10

2013-11-26 Thread Eric Bénard
Le Tue, 26 Nov 2013 13:59:36 -0200, Otavio Salvador ota...@ossystems.com.br a écrit : Do you also get the kernel freeze without changing anything in u-boot when you disable cpufreq in the kernel ? The FSL kernel does not build without cpufreq so I didn't try. check if your regulator

Re: [U-Boot] [PATCH] gpio: mxc_gpio: Fix gpio_get_value() when the GPIO is an output

2013-09-29 Thread Eric Bénard
Hi Benoît, Le Sun, 29 Sep 2013 15:21:52 +0200 (CEST), Benoît Thébaudeau benoit.thebaud...@advansee.com a écrit : Why is this required? Is it because there is a different behavior of the PSR register on one of the i.MXs? See my commit message here:

Re: [U-Boot] [PATCH] gpio: mxc_gpio: Fix gpio_get_value() when the GPIO is an output

2013-09-29 Thread Eric Bénard
Le Sun, 29 Sep 2013 14:48:32 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : On Sun, Sep 29, 2013 at 2:09 PM, Eric Bénard e...@eukrea.com wrote: Hi Benoît, Le Sun, 29 Sep 2013 15:21:52 +0200 (CEST), Benoît Thébaudeau benoit.thebaud...@advansee.com a écrit : Why

Re: [U-Boot] [PATCH] gpio: mxc_gpio: Fix gpio_get_value() when the GPIO is an output

2013-09-29 Thread Eric Bénard
Hi Fabio, Le Sun, 29 Sep 2013 15:22:36 -0300, Fabio Estevam feste...@gmail.com a écrit : On Sun, Sep 29, 2013 at 3:19 PM, Eric Bénard e...@eukrea.com wrote: on which CPU is that ? Otavio tested it on mx6. It's strange reading PSR works in the kernel and not in u-boot. The patch I

Re: [U-Boot] [PATCH 1/7] mtd: Fix function description in part_validate comment

2013-09-28 Thread Eric Bénard
Hi Otavio, Le Sat, 28 Sep 2013 00:24:12 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : The part_validate comment had a wrong description of the actions it does and referenced to non-existent functions while in fact it calls 'part_validate_eraseblock()'. Signed-off-by: Otavio

Re: [U-Boot] [PATCH 5/7] gpio-led: Fix __led_toggle support to first set GPIO as input

2013-09-28 Thread Eric Bénard
Hi Otavio, Le Sat, 28 Sep 2013 00:24:16 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : The GPIO need to be set as input before reading its current value and set back to output for setting it; this fixes the non-working 'led id toggle' for GPIO based LEDs. Signed-off-by: Otavio

Re: [U-Boot] [PATCH] mx6sabresd: Avoid hang when HDMI cable is not connected

2013-09-11 Thread Eric Bénard
Hi Fabio, Le Wed, 11 Sep 2013 16:54:10 -0300, Fabio Estevam fabio.este...@freescale.com a écrit : Since commit d9b894603 (mx6sabresd: Add LVDS splash screen support) the following hang happens if the HDMI cable is not connected or the 'panel' variable is not set: U-Boot

Re: [U-Boot] [PATCH] Add support for TechNexion edm1-cf-imx6 SoM

2013-08-28 Thread Eric Bénard
Hi Tapani, Le Wed, 28 Aug 2013 19:23:33 +0800, Tapani tap...@technexion.com a écrit : Add support for TechNexion edm-cf-imx6 SoM The edm1-cf-imx6 SoM comes in three variants, one with imx6 solo cpu, one with an imx6 dual lite cpu and one with an imx6 quad cpu. aren't these

Re: [U-Boot] TFTP timeouts, i.mx fec problem?

2013-06-07 Thread Eric Bénard
Hi Ruud, Le Fri, 7 Jun 2013 11:28:54 +0200, Ruud Commandeur rcommand...@clb.nl a écrit : I have not come any further yet in finding the real cause. For now, I just tested with workarounds like lowering the ARP timeout and skipping the phy reset (or only reset for the 1st transfer). Note that

Re: [U-Boot] [PATCH] Add minimal support for Congatec Conga-QEVAl Evaluation Carrier Board with a conga-Qmx6 module.

2013-05-13 Thread Eric Bénard
Hi Leo, Le Mon, 13 May 2013 14:02:57 +0200, SARTRE Leo lsar...@adeneo-embedded.com a écrit : diff --git a/board/freescale/cgtqmx6/cgtqmx6.c b/board/freescale/cgtqmx6/cgtqmx6.c new file mode 100644 index 000..ed5476a --- /dev/null +++ b/board/freescale/cgtqmx6/cgtqmx6.c @@ -0,0 +1,630

Re: [U-Boot] [PATCH] mx23: Put back RAM voltage level to its original value

2013-04-26 Thread Eric Bénard
Hi Fabio, Le Fri, 26 Apr 2013 13:01:26 -0300, Fabio Estevam feste...@gmail.com a écrit : From: Fabio Estevam fabio.este...@freescale.com commit 5c2f444c9 (mxs: Reset the EMI block on mx23) changed the DDR voltage level, which causes mx23evk to fail to load a kernel. Put back the

Re: [U-Boot] Beginner question: need help about LVDS channels for i.MX6Q SabreSD Board

2013-04-26 Thread Eric Bénard
Hi Igor, Le Fri, 26 Apr 2013 17:17:54 +0200, Igor Ferrara igor.ferr...@dotsystem.it a écrit : Please confirm the reception of the present message by sending back an answer message Thank You for the cooperation. this list has 2535 subscribers, do you really need to get 2535 answers each time

Re: [U-Boot] [PATCH] mx23: Put back RAM voltage level to its original value

2013-04-26 Thread Eric Bénard
Hi Marek, Le Fri, 26 Apr 2013 20:16:30 +0200, Marek Vasut ma...@denx.de a écrit : On Fri, Apr 26, 2013 at 1:24 PM, Eric Bénard e...@eukrea.com wrote: what are the values of these levels (previous one and new one) in mV ? 0x10 == 2.5V 0x12 == 2.6V 46v32m16 Eh? What's this code

[U-Boot] [PATCH 1/2] da850: provide davinci_enable_uart0

2013-04-22 Thread Eric Bénard
this is needed to bring UART0 out of reset but this function currently only exists for dm644x/355/365/646x when da850 (at least am1808 also need it). Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c | 8 arch/arm/include/asm/arch-davinci

[U-Boot] [PATCH 2/2] davinci: handle CONFIG_SYS_CLE_MASK and CONFIG_SYS_ALE_MASK

2013-04-22 Thread Eric Bénard
configuration defines already exist for this purpose so use them. Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/include/asm/arch-davinci/nand_defs.h | 9 + include/configs/da830evm.h| 4 ++-- include/configs/da850evm.h| 4 ++-- include/configs

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

2013-04-19 Thread Eric Bénard
Hi Stefano, Le Fri, 19 Apr 2013 10:15:49 +0200, Stefano Babic sba...@denx.de a écrit : On 18/04/2013 19:37, Wolfgang Denk wrote: 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.

Re: [U-Boot] [PATCH] mx28evk: add trimffs to nand command

2013-04-09 Thread Eric Bénard
Hi Fabio, Le Tue, 9 Apr 2013 15:02:44 -0300, Fabio Estevam fabio.este...@freescale.com a écrit : Eric Bénard wrote: this is usefull when writing an UBI image which contains and UBIFS volume (check README.nand and UBI FAQ for more details) Signed-off-by: Eric Bénard e...@eukrea.com

[U-Boot] [PATCH] mx28evk: add NAND commands

2013-04-08 Thread Eric Bénard
and without NAND : NAND: No NAND device found!!! 0 MiB MX28EVK U-Boot nand info MX28EVK U-Boot Signed-off-by: Eric Bénard e...@eukrea.com --- include/configs/mx28evk.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h index 0d918a1

Re: [U-Boot] [PATCH] mx28evk: add NAND commands

2013-04-08 Thread Eric Bénard
Hi Fabio, Le Mon, 8 Apr 2013 10:24:45 -0300, Fabio Estevam feste...@gmail.com a écrit : On Mon, Apr 8, 2013 at 10:20 AM, Eric Bénard e...@eukrea.com wrote: diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h index 0d918a1..789d980 100644 --- a/include/configs/mx28evk.h

Re: [U-Boot] [PATCH] mx28evk: add NAND commands

2013-04-08 Thread Eric Bénard
Hi Tom, Le Mon, 8 Apr 2013 09:27:29 -0400, Tom Rini tr...@ti.com a écrit : On Mon, Apr 08, 2013 at 10:24:45AM -0300, Fabio Estevam wrote: Hi Eric, On Mon, Apr 8, 2013 at 10:20 AM, Eric B??nard e...@eukrea.com wrote: diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h

[U-Boot] [PATCH] mx28evk: add trimffs to nand command

2013-04-08 Thread Eric Bénard
this is usefull when writing an UBI image which contains and UBIFS volume (check README.nand and UBI FAQ for more details) Signed-off-by: Eric Bénard e...@eukrea.com --- include/configs/mx28evk.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/mx28evk.h b/include/configs

Re: [U-Boot] [PATCH v2 2/2] mtd: nand: mxc_nand: Fix is_16bit_nand()

2013-02-27 Thread Eric Bénard
Hi Fabio, Le Tue, 26 Feb 2013 15:35:20 -0300, Fabio Estevam fabio.este...@freescale.com a écrit : Currently is_16bit_nand() is a per SoC function and it decides the bus nand width by reading some boot related registers. This method works when NAND is the boot medium, but does not work if

Re: [U-Boot] [PATCH v2 2/2] mtd: nand: mxc_nand: Fix is_16bit_nand()

2013-02-27 Thread Eric Bénard
Hi Benoît, Le Wed, 27 Feb 2013 13:53:10 +0100 (CET), Benoît Thébaudeau benoit.thebaud...@advansee.com a écrit : This code is not used for NAND boot, for which the SPL version of this driver and CONFIG_SYS_NAND_BUSWIDTH_16 are used. I didn't follow SPL migration (I have to come back to it so

Re: [U-Boot] [PATCH v2 2/2] mtd: nand: mxc_nand: Fix is_16bit_nand()

2013-02-27 Thread Eric Bénard
Hi Benoît and Fabio, Le Wed, 27 Feb 2013 14:40:51 +0100 (CET), Benoît Thébaudeau benoit.thebaud...@advansee.com a écrit : On Wednesday, February 27, 2013 2:15:21 PM, Eric Bénard wrote: Hi Benoît, Le Wed, 27 Feb 2013 13:53:10 +0100 (CET), Benoît Thébaudeau benoit.thebaud...@advansee.com

Re: [U-Boot] how to configure u-boot to tell me more about NAND flash?

2013-02-05 Thread Eric Bénard
Hi Robert, Le Tue, 05 Feb 2013 08:37:20 -0500, Robert P. J. Day rpj...@crashcourse.ca a écrit : main question -- should flinfo not tell me about my flash? what might this configuration be missing? i should have access to the board in an hour or two. thanks. you can read :

Re: [U-Boot] how to create patches for mailing

2013-01-24 Thread Eric Bénard
Hi Maxim, Le Thu, 24 Jan 2013 12:21:30 +0400, Maxim Podbereznyy lisar...@gmail.com a écrit : Your instructions are exceptional! However I have a few questions: 1) why should I generate patches for 1st 3 patch, because I have only one? 2) if there are 3 patches (only 1 is mine) + a cover which

Re: [U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Eric Bénard
Hi Scott, Le Mon, 10 Dec 2012 16:59:23 -0600, Scott Wood scottw...@freescale.com a écrit : On 12/10/2012 10:41:59 AM, Eric Bénard wrote: - commit 418396e212b59bf907dbccad997ff50f7eb61b16 chenged the behaviour of nand write.raw which now takes a pagecount as a parameter and no more

[U-Boot] [PATCH v2] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Eric Bénard
environment of these boards to provide a pagecount instead of a size to nand write.raw. - tested on a mx28evk with a 4k page NAND and on a custom board with a 2k page NAND. Signed-off-by: Eric Bénard e...@eukrea.com Cc: Marek Vasut ma...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com --- include

[U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-10 Thread Eric Bénard
board with a 2k page NAND. Signed-off-by: Eric Bénard e...@eukrea.com Cc: Marek Vasut ma...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com --- include/configs/m28evk.h |2 +- include/configs/mx28evk.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include

[U-Boot] [PATCH 1/2] mx25: add CPU revision 1.2

2012-09-23 Thread Eric Bénard
tested on a MCIMX257CJM4A which now reports : CPU: Freescale i.MX25 rev1.2 at 399 MHz Signed-off-by: Eric Bénard e...@eukrea.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- v2 : rebased against 2012.10-rc1, added Otavio's ack arch/arm/cpu/arm926ejs/mx25/generic.c |3

[U-Boot] [PATCH v2 1/2] mx25: add CPU revision 1.2

2012-09-23 Thread Eric Bénard
tested on a MCIMX257CJM4A which now reports : CPU: Freescale i.MX25 rev1.2 at 399 MHz Signed-off-by: Eric Bénard e...@eukrea.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- v2 : rebased against 2012.10-rc1, added Otavio's ack arch/arm/cpu/arm926ejs/mx25/generic.c |3

[U-Boot] [PATCH v2 2/2] add Eukrea's CPUIMX25

2012-09-23 Thread Eric Bénard
key to stop autoboot: 0 Signed-off-by: Eric Bénard e...@eukrea.com --- v2: rebased against 2012.10-rc1, disabled eSDHC until proper fix from Benoît gets applied, updated bootlog. MAINTAINERS |2 + board/eukrea/cpuimx25/Makefile| 44 +++ board

Re: [U-Boot] [PATCH 1/2] mx25: add CPU revision 1.2

2012-09-23 Thread Eric Bénard
Hi, Le Sun, 23 Sep 2012 14:02:17 +0200, Eric Bénard e...@eukrea.com a écrit : tested on a MCIMX257CJM4A which now reports : CPU: Freescale i.MX25 rev1.2 at 399 MHz Signed-off-by: Eric Bénard e...@eukrea.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- v2 : rebased against

Re: [U-Boot] [PATCH v2 2/2] add Eukrea's CPUIMX25

2012-09-23 Thread Eric Bénard
Hi Vikram, Le Sun, 23 Sep 2012 23:02:18 +0530, Vikram Narayanan vikram...@gmail.com a écrit : Why the clock init is in two places? imximage.cfg and this file. Am I missing something? imximage.cfg for internal boot, lowlevel_init.S for external boot. Eric

Re: [U-Boot] [NEXT PATCH v1 4/7] MX35: Add soc_boot_mode and soc_boot_device to MX35

2012-09-23 Thread Eric Bénard
Hi Stefano, Le Thu, 6 Sep 2012 10:04:57 +0200, Stefano Babic sba...@denx.de a écrit : +#define RCSR_MEM_CTL_WEIM0 +#define RCSR_MEM_CTL_NAND1 +#define RCSR_MEM_CTL_SD 2 +#define RCSR_MEM_TYPE_NOR0 +#define RCSR_MEM_TYPE_ONENAND2 +#define RCSR_MEM_TYPE_SD

Re: [U-Boot] [PATCH v2 2/2] add Eukrea's CPUIMX25

2012-09-23 Thread Eric Bénard
Hi Stefano, Le Sun, 23 Sep 2012 19:46:50 +0200, Stefano Babic sba...@denx.de a écrit : nand_spl/board/eukrea/cpuimx25/Makefile | 79 nand_spl/board/eukrea/cpuimx25/config.mk |1 + nand_spl/board/eukrea/cpuimx25/u-boot.lds | 83 There is a main issue

Re: [U-Boot] [NEXT PATCH v1 2/7] NAND: added NAND type to nand_ids

2012-09-23 Thread Eric Bénard
Hi Stefano, Le Mon, 10 Sep 2012 14:09:21 +0200, Stefano Babic sba...@denx.de a écrit : The chip supports ONFI, but it seems the i.MX driver does not. Quite as described in http://patchwork.ozlabs.org/patch/60042/. READ-ID is always sent with address 0, I do not know if we can convince the

[U-Boot] [PATCH 1/3] mx25: add CPU revision 1.2

2012-09-22 Thread Eric Bénard
tested on a MCIMX257CJM4A which now reports : CPU: Freescale i.MX25 rev1.2 at 399 MHz Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/cpu/arm926ejs/mx25/generic.c |3 +++ arch/arm/include/asm/arch-mx25/imx-regs.h |1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff

[U-Boot] [PATCH 2/3] mx25: fix compilation when CONFIG_FSL_ESDHC is enabled

2012-09-22 Thread Eric Bénard
-by: Eric Bénard e...@eukrea.com --- arch/arm/cpu/arm926ejs/mx25/generic.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/mx25/generic.c b/arch/arm/cpu/arm926ejs/mx25/generic.c index cb74b82..6a3a8b3 100644 --- a/arch/arm/cpu/arm926ejs/mx25/generic.c

[U-Boot] [PATCH 3/3] add Eukrea's CPUIMX25

2012-09-22 Thread Eric Bénard
-off-by: Eric Bénard e...@eukrea.com --- MAINTAINERS |2 + board/eukrea/cpuimx25/Makefile| 44 +++ board/eukrea/cpuimx25/config.mk |5 + board/eukrea/cpuimx25/cpuimx25.c | 123 ++ board/eukrea/cpuimx25

Re: [U-Boot] [PATCH 3/3] add Eukrea's CPUIMX25

2012-09-22 Thread Eric Bénard
Le Sat, 22 Sep 2012 18:18:58 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : On Sat, Sep 22, 2012 at 5:50 PM, Eric Bénard e...@eukrea.com wrote: this board is based on an i.MX25 from Freescale. It consists of a SOM containing : - NAND flash (internal or external boot supported

Re: [U-Boot] [PATCH 3/3] add Eukrea's CPUIMX25

2012-09-22 Thread Eric Bénard
Hi Otavio, Le Sat, 22 Sep 2012 18:18:58 -0300, Otavio Salvador ota...@ossystems.com.br a écrit : On Sat, Sep 22, 2012 at 5:50 PM, Eric Bénard e...@eukrea.com wrote: this board is based on an i.MX25 from Freescale. It consists of a SOM containing : - NAND flash (internal or external boot

Re: [U-Boot] [PATCH] da850/omap-l138: Enable auto negotiation in RMII mode

2012-06-06 Thread Eric Bénard
this patch, EMAC initialization takes more time and sometimes tftp fails in RMII mode. Signed-off-by: Rajashekhara, Sudhakar sudhakar@ti.com Signed-off-by: Lad, Prabhakar prabhakar@ti.com Signed-off-by: Hadli, Manjunath manjunath.ha...@ti.com Tested-by: Eric Bénard e...@eukrea.com

Re: [U-Boot] I2C support on an AT91RM9200

2011-10-06 Thread Eric Bénard
Hi, Le 06/10/2011 17:00, Jamie Risk a écrit : I'm creating a configuration for a board that uses an AT91RM9200 and I'm getting unresolved linker errors concerning the i2c functions (i2c_write/read/probe/init). I know that the I2C peripheral for this SoC is buggy and am looking for a GPIO

Re: [U-Boot] [PATCH] beagleboard: enable HUB power on all variants of the BeagleBoard

2011-08-27 Thread Eric Bénard
Hi Joel, Le 27/08/2011 06:46, Joel A Fernandes a écrit : The logic is wrong here. I don't remember the polarity, but I do remember that it is xM-A and xM-B that are the oddballs. I believe this is the correct change: Hi Jason, LEDAON should be high for HUB power up on xMA and xMB, so in

Re: [U-Boot] [PATCH 2/2] beagleboard: enable HUB power on XM boards

2011-08-13 Thread Eric Bénard
Hi Jason, On 12/08/2011 23:09, Jason Kridner wrote: On Tue, Jun 14, 2011 at 10:33 AM, Eric Bénarde...@eukrea.com wrote: Hi Christian, On 14/06/2011 16:27, Christian Spielberger wrote: we have both, a beagle xM-B and a beagle xM-C. The following works on both boards and is different from

Re: [U-Boot] [PATCH 2/2] beagleboard: enable HUB power on XM boards

2011-06-14 Thread Eric Bénard
Hi Christian, On 14/06/2011 16:27, Christian Spielberger wrote: we have both, a beagle xM-B and a beagle xM-C. The following works on both boards and is different from your patch. It is not possible to differentiate between Rev xM-A and xM-B. Anyway, the only difference is in the processors

Re: [U-Boot] [PATCH v2] at91rm9200.h: fix ATMEL_PMX_AA_TXD2

2011-06-14 Thread Eric Bénard
On 12/06/2011 13:25, Andreas Bießmann wrote: This patch sets the ATMEL_PMX_AA_TXD2 to the correct value. Signed-off-by: Andreas Bießmannandreas.de...@googlemail.com CC: Jens Scharsigjs_at...@scharsoft.de CC: e...@eukrea.com Acked-by: Eric Bénard e...@eukrea.com Thanks ! --- changes since

Re: [U-Boot] [PATCH v7 RESEND 1/5] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-06-10 Thread Eric Bénard
Hi Simon, On 10/06/2011 17:04, Simon Glass wrote: +int smsc95xx_eth_get_info(struct usb_device *dev, struct ueth_data *ss, + struct eth_device *eth) +{ + debug(** %s()\n, __func__); + if (!eth) { + debug(%s: missing parameter.\n, __func__); +

[U-Boot] [PATCH 1/2] dm3730: enable dpll5

2011-06-10 Thread Eric Bénard
which is used to provide 120MHz to USB EHCI This allows EHCI to work on BeagleBoard XM Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/cpu/armv7/omap3/clock.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/omap3/clock.c b/arch/arm/cpu/armv7

[U-Boot] [PATCH 2/2] beagleboard: enable HUB power on XM boards

2011-06-10 Thread Eric Bénard
LEDA needs to be at level 0 to enable HUB_3V3 Signed-off-by: Eric Bénard e...@eukrea.com --- board/ti/beagle/beagle.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index ab50514..7509916 100644 --- a/board/ti

Re: [U-Boot] [PATCH v7 RESEND 4/5] Put common autoload code into auto_load() function

2011-06-10 Thread Eric Bénard
Hi Simon, On 10/06/2011 17:04, Simon Glass wrote: This is a small clean-up patch. Signed-off-by: Simon Glasss...@chromium.org --- net/bootp.c | 75 +- 1 files changed, 32 insertions(+), 43 deletions(-) diff --git a/net/bootp.c

Re: [U-Boot] [PATCH v7 RESEND 0/5] Add SMSC95XX support including MAC address control

2011-06-10 Thread Eric Bénard
for the 4 first patches, with the 2 comments I sent concerning patches 1 and 4 : Tested-by: Eric Bénard e...@eukrea.com Thanks, Eric ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v7 RESEND 1/5] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-06-10 Thread Eric Bénard
On 11/06/2011 00:26, Simon Glass wrote: OK thanks have added Gilles' patch and will resend the series on Monday with any comments received. If this can get applied then perhaps we can more easily handle other patches that come up. This driver is by no means perfect but it is a start. a very

Re: [U-Boot] Atmel pull request?

2011-06-09 Thread Eric Bénard
Hi, On 09/06/2011 09:06, Wolfgang Denk wrote: what are the chances to see a pull request for the Atmel boards any time soon? As is, theyu still form the majority of broken ARM boards, and I would like to get the release out as soon as possible. So I'd appreciate if we could have your pull

Re: [U-Boot] [PATCH v2 1/4] include/asm/arch-at91: update several .h files to ATMEL_xxx name scheme

2011-06-09 Thread Eric Bénard
Hi Reinhard, On 09/06/2011 10:17, Reinhard Meyer wrote: Several lines are longer than 80 chars. Can you fix this asap? I think the comments could be left away completely or at least shortened by removing the obvios SDAM Controller part. These lines are already over 80 char before this patch

[U-Boot] [PATCH 5/5] cpuat91: fix board support

2011-06-07 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com --- MAKEALL|1 - board/eukrea/cpuat91/cpuat91.c |6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/MAKEALL b/MAKEALL index 13dde6f..50c0080 100755 --- a/MAKEALL +++ b/MAKEALL @@ -454,7 +454,6

[U-Boot] [PATCH 2/5] include/asm/arch-at91: update several .h files to ATMEL_xxx name scheme

2011-06-07 Thread Eric Bénard
Signed-off-by: Eric Bénard e...@eukrea.com --- arch/arm/include/asm/arch-at91/at91_matrix.h | 10 +++--- arch/arm/include/asm/arch-at91/at91_rstc.h |2 +- arch/arm/include/asm/arch-at91/at91_wdt.h|2 +- arch/arm/include/asm/arch-at91/at91sam9_sdramc.h | 30

  1   2   >