[U-Boot] [PATCH v2] net: phy: micrel: add an option to disable gigabit for the KSZ9031

2017-08-01 Thread Sebastien Bourdelin
The environment variable "disable_giga" can now be used to disable 1000baseTx on the Micrel's KSZ9031. Signed-off-by: Sebastien Bourdelin --- Changes v1 -> v2: - move variables declaration in concern block and remove useless initialisation (suggested by Joe Hershberger

[U-Boot] [PATCH] net: phy: micrel: add an option to disable gigabit for the KSZ9031

2017-07-28 Thread Sebastien Bourdelin
The environment variable "disable_giga" can now be used to disable 1000baseTx on the Micrel's KSZ9031. Signed-off-by: Sebastien Bourdelin --- drivers/net/phy/micrel.c | 27 +++ 1 file changed, 27 insertions(+) diff --git a/drivers/net/phy/micrel.c b/

Re: [U-Boot] [PATCH] ts4600: Disable CONFIG_DISPLAY_CPUINFO

2016-11-30 Thread Sebastien Bourdelin
:180:6: warning: variable ‘cpurev’ set but > not used [-Wunused-but-set-variable] > > So the easy solution is to disable CONFIG_DISPLAY_CPUINFO > > Cc: Sebastien Bourdelin > Signed-off-by: Tom Rini > --- > configs/ts4600_defconfig | 1 + > 1 file changed, 1 insertion(+) &g

[U-Boot] [PATCH v4 1/1] ARM: ts4600: add basic board support

2016-11-08 Thread Sebastien Bourdelin
This commit adds basic support including: MMC, Serial console Signed-off-by: Sebastien Bourdelin --- Changes v3 -> v4: - add missing Changes in git message Changes v2 -> v3: - adjust DRAM timing settings (based on recommandation by Mark Featherston and Kris B

[U-Boot] [PATCH v3 1/1] ARM: ts4600: add basic board support

2016-11-08 Thread Sebastien Bourdelin
This commit adds basic support including: MMC, Serial console Signed-off-by: Sebastien Bourdelin --- arch/arm/Kconfig | 6 ++ board/technologic/ts4600/Kconfig | 15 board/technologic/ts4600/MAINTAINERS | 6 ++ board/technologic/ts4600/Makefile| 11

Re: [U-Boot] [PATCH v2 1/1] ARM: ts4600: add basic board support

2016-11-07 Thread Sebastien Bourdelin
Hi, I found an problem with this patch on the last rev B of the TS4600 due to a DRAM timing issue. Please do not consider this patch until i post an other one. Sorry for the noise, Regards. On 11/07/2016 02:30 PM, Sebastien Bourdelin wrote: > This commit adds basic support including: &g

[U-Boot] [PATCH v2 1/1] ARM: ts4600: add basic board support

2016-11-07 Thread Sebastien Bourdelin
This commit adds basic support including: MMC, Serial console Signed-off-by: Sebastien Bourdelin --- Changes v1 -> v2: - remove useless define - remove eMMC muxing and init which doesn't exist on the TS4600 board - disable SSP1 and SSP2 clocks settings which are not currently used

Re: [U-Boot] [PATCH 1/1] ARM: ts4600: add basic board support

2016-11-07 Thread Sebastien Bourdelin
Hi Fabio On 11/07/2016 11:49 AM, Fabio Estevam wrote: > Hi Sebastien, > > On Mon, Nov 7, 2016 at 2:24 PM, Sebastien Bourdelin > wrote: > >> Yes currently i'm using the mainstream Linux kernel using the mx28evk >> defconfig and its Device Tree. >> Obv

Re: [U-Boot] [PATCH 1/1] ARM: ts4600: add basic board support

2016-11-07 Thread Sebastien Bourdelin
Hi Fabio. On 11/07/2016 10:43 AM, Fabio Estevam wrote: > Hi Sebastien, > > On Mon, Nov 7, 2016 at 1:36 PM, Sebastien Bourdelin > wrote: >> >> It's in my todo list yes, but nothing really planned currently, do you >> think i should keep the mx28evk dtb inste

Re: [U-Boot] [PATCH 1/1] ARM: ts4600: add basic board support

2016-11-07 Thread Sebastien Bourdelin
Hi Fabio. On 11/06/2016 02:16 PM, Fabio Estevam wrote: > Hi Sebastien, > > On Thu, Nov 3, 2016 at 5:20 PM, Sebastien Bourdelin > wrote: > >> +/* Extra Environment */ >> +#define CONFIG_EXTRA_ENV_SETTINGS \ >> + "fdt_addr=0x4100\0" \ >>

[U-Boot] [PATCH 1/1] ARM: ts4600: add basic board support

2016-11-03 Thread Sebastien Bourdelin
This commit adds basic support including: MMC, Serial console Signed-off-by: Sebastien Bourdelin --- arch/arm/Kconfig | 6 ++ board/technologic/ts4600/Kconfig | 15 board/technologic/ts4600/MAINTAINERS | 6 ++ board/technologic/ts4600/Makefile| 11

Re: [U-Boot] [PATCH] ts4800: add CONFIG_SYS_FSL_ERRATUM_ESDHC_A001

2016-05-25 Thread Sebastien Bourdelin
Hi Fabio, On 05/20/2016 05:40 PM, Fabio Estevam wrote: > Hi Sebastien, > > On Fri, May 20, 2016 at 5:13 PM, Sebastien Bourdelin > wrote: > >> This issue happen with the SD card, i currently didn't found the time to >> try with eMMC. > Ok, we also boot fr

Re: [U-Boot] [PATCH] ts4800: add CONFIG_SYS_FSL_ERRATUM_ESDHC_A001

2016-05-20 Thread Sebastien Bourdelin
Hi Fabio, On 05/10/2016 04:43 PM, Fabio Estevam wrote: > Hi Sebastien, > > On Thu, Apr 21, 2016 at 2:37 PM, Sebastien Bourdelin > wrote: >> This commit fixes the MMC data transactions timeout problem on the >> TS4800. >> >> The changes introduced in the commi

[U-Boot] [PATCH] cosmetic: mx6slevk: Minor coding-style fix

2016-05-20 Thread Sebastien Bourdelin
Fix the brace indentation in board_mmc_init(). Signed-off-by: Sebastien Bourdelin --- board/freescale/mx6slevk/mx6slevk.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c index f1915a8

Re: [U-Boot] [PATCH] ts4800: add CONFIG_SYS_FSL_ERRATUM_ESDHC_A001

2016-05-10 Thread Sebastien Bourdelin
Hi, On 04/21/2016 05:39 PM, Sebastien Bourdelin wrote: > Hi, > I add Fabio Estevam in the loop as suggested by Marek Vasut on IRC. > > On 04/21/2016 01:37 PM, Sebastien Bourdelin wrote: >> This commit fixes the MMC data transactions timeout problem on the >> TS4800. >

Re: [U-Boot] [PATCH] ts4800: add CONFIG_SYS_FSL_ERRATUM_ESDHC_A001

2016-04-21 Thread Sebastien Bourdelin
Hi, I add Fabio Estevam in the loop as suggested by Marek Vasut on IRC. On 04/21/2016 01:37 PM, Sebastien Bourdelin wrote: > This commit fixes the MMC data transactions timeout problem on the > TS4800. > > The changes introduced in the commit e978a31 on the timeout calculation > f

[U-Boot] [PATCH] ts4800: add CONFIG_SYS_FSL_ERRATUM_ESDHC_A001

2016-04-21 Thread Sebastien Bourdelin
seems to be concerned by this erratum and without this change the MMC driver is unable to do any transactions. Signed-off-by: Sebastien Bourdelin --- include/configs/ts4800.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/ts4800.h b/include/configs/ts4800.h index fcc9d80