Re: [PATCH] arm: Remove ethernut5 board

2024-09-09 Thread Nicolas Ferre
that as well. Signed-off-by: Tom Rini --- Cc: Harald Kipp Cc: Eugen Hristev CC: Alexandre Belloni, Nicolas Ferre Fine with me, thanks for letting me know: Acked-by: Nicolas Ferre Best regards, Nicolas --- arch/arm/dts/Makefile | 2 - arch/arm/dts

Re: [PATCH v4 1/4] bootstd: Enable BOOTSTD_DEFAULTS by default

2023-03-29 Thread Nicolas Ferre
o and even if sama5d27 som1 ek might be impacted, I would like to double check for the other sama5d2 boards. [..] Best regards, Nicolas -- Nicolas Ferre

Re: [U-Boot] [PATCH] net: macb: Clean 64b dma addresses if they are not detected

2018-09-21 Thread Nicolas Ferre
), with same encoding. 3/ and well, this is the type of register with multiple bits that are marked as "reserved" and that experience tells that they might be connected to something... So, I'm all for correcting the code like what Edgar suggests. Best regards, -- Nicolas Ferr

Re: [U-Boot] U-Boot

2018-03-02 Thread Nicolas Ferre
nel itself or maybe is a UBoot configuration? -- Nicolas Ferre ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] U-Boot

2018-02-13 Thread Nicolas Ferre
ng trouble with the drivers as you can see above. On the u-boot-2017.03-at91 branch of our vendor tree, you have an example of moving the console from one USART to the other with this commit: 74f976f8d1fe714b5b28d450e7213657ca8dd71e (board: atmel: sama5d2_ptc_ek: use uart0 as

Re: [U-Boot] U-Boot

2018-02-12 Thread Nicolas Ferre
am/u-boot-at91.git> Can you tell us what is the compiling error that you are experiencing? Best regards, -- Nicolas Ferre ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v2] ARM: Add Support for the VInCo platform

2015-12-16 Thread Nicolas Ferre
eMMC > > Signed-off-by: Gregory CLEMENT It seems okay to me: Acked-by: Nicolas Ferre Thanks, > --- > arch/arm/mach-at91/Kconfig | 6 ++ > board/l+g/vinco/Kconfig| 12 +++ > board/l+g/vinco/Makefile | 1 + > board/l+g/vinco/vinco.c| 212 >

Re: [U-Boot] [PATCH v3] net: macb: Not all the GEM are gigabit capable

2015-12-16 Thread Nicolas Ferre
nresponsive MAC > controller. This patch fixes this behavior allowing using the gmac with > these SoCs. > > Suggested-by: Nicolas Ferre > Signed-off-by: Gregory CLEMENT Acked-by: Nicolas Ferre Thanks, > --- > Hi, > > in this v3, I fixed the sama5d2 typo and the m

Re: [U-Boot] [PATCH v2] net: macb: Not all the GEM are gigabit capable

2015-12-16 Thread Nicolas Ferre
nresponsive MAC > controller. This patch fix this behavior allowing to use the gmac with > these SoCs. > > Suggested-by: Nicolas Ferre > Signed-off-by: Gregory CLEMENT > > fix gem > --- > drivers/net/macb.c | 13 +++-- > 1 file changed, 11 insertions(+),

Re: [U-Boot] [PATCH] net: macb: sama5d4 is not gigabit capable

2015-12-16 Thread Nicolas Ferre
Le 16/12/2015 10:41, Gregory CLEMENT a écrit : > Hi Andreas, > > On mer., déc. 16 2015, "Andreas Bießmann" > wrote: > >> Hi all, >> >> On 16.12.2015 10:19, Nicolas Ferre wrote: >>> Le 15/12/2015 20:59, Joe Hershberger a écrit : >>

Re: [U-Boot] [PATCH] net: macb: sama5d4 is not gigabit capable

2015-12-16 Thread Nicolas Ferre
t >> capable. Improperly setting the GBE capability leads to an unresponsive >> MAC controller. This patch fix this behavior allowing to use the gmac >> with the sama5d4. >> >> Suggested-by: Nicolas Ferre >> Signed-off-by: Gregory CLEMENT >> --- >> drivers

Re: [U-Boot] [PATCH 0/3] ARM: atmel: add sama5d4ek board support

2014-09-19 Thread Nicolas Ferre
Wu (1): > atmel_nand: if don't have gf table in rom code we will build it > runtime For the whole series: Acked-by: Nicolas Ferre Thanks, best regards, > > arch/arm/Kconfig | 4 + > arch/arm/cpu/armv7/at91/timer.c | 3 +- >

Re: [U-Boot] [PATCH v2] arm : Atmel : add at91sam9x5ek board support

2012-07-02 Thread Nicolas Ferre
On 07/02/2012 12:02 PM, Andreas Bießmann : > Dear all, > > On 02.07.2012 11:53, Nicolas Ferre wrote: >> On 07/02/2012 11:47 AM, Andreas Bießmann : >>> On 02.07.2012 10:36, Bo Shen wrote: >> >> [..] >> >>>>>> +/* boot

Re: [U-Boot] [PATCH v2] arm : Atmel : add at91sam9x5ek board support

2012-07-02 Thread Nicolas Ferre
ess these boards are just forgotten while > removing the 'nand read.jffs2' command. Please check, if that command > works, if yes let it as is, if not rewrite. I am in favor of using read.jffs2 because it is able to skip bad blocks. As the programming tool is also skipping b

Re: [U-Boot] [PATCH] Makefile: prevent libgcc to be linked twice

2011-10-20 Thread Nicolas Ferre
On 10/18/2011 06:06 PM, Mike Frysinger : > On Tuesday 18 October 2011 04:30:27 Nicolas Ferre wrote: >> On 10/17/2011 07:25 PM, Mike Frysinger : >>> On Monday 17 October 2011 09:41:15 Nicolas Ferre wrote: >>>> If we define USE_PRIVATE_LIBGCC, PLATFORM_LIBS is used duri

Re: [U-Boot] [PATCH] Makefile: prevent libgcc to be linked twice

2011-10-18 Thread Nicolas Ferre
On 10/17/2011 07:25 PM, Mike Frysinger : > On Monday 17 October 2011 09:41:15 Nicolas Ferre wrote: >> If we define USE_PRIVATE_LIBGCC, PLATFORM_LIBS is used during >> link. During this last link editing, libgcc may be listed twice >> and fail. >> Prevent this using &

[U-Boot] [PATCH] Makefile: prevent libgcc to be linked twice

2011-10-17 Thread Nicolas Ferre
If we define USE_PRIVATE_LIBGCC, PLATFORM_LIBS is used during link. During this last link editing, libgcc may be listed twice and fail. Prevent this using "filter-out" in top Makefile. Signed-off-by: Nicolas Ferre --- Makefile |3 ++- 1 files changed, 2 insertions(+), 1 deletion

[U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc()

2010-06-10 Thread Nicolas Ferre
Watchdog resets were experienced during autoboot delay. Petting the watchdog during putc() and tstc() functions solve the issue. Signed-off-by: Nicolas Ferre --- drivers/serial/atmel_usart.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/serial/atmel_usart.c

Re: [U-Boot] [PATCH] arm: add initilisation of watchdog in init_sequence

2010-06-10 Thread Nicolas Ferre
Le 30/05/2010 13:17, Tom Rix : > Nicolas Ferre wrote: >> For platforms that implement a hardware watchdog, call its initialization >> routine in init_sequence. >> This location has been chosen to be the closest to initialization of >> console as >> some watchdog dr

Re: [U-Boot] [PATCH] watchdog petting during autoboot delay

2010-06-03 Thread Nicolas Ferre
Le 26/05/2010 20:13, Mike Frysinger : > On Wednesday 26 May 2010 06:34:49 Nicolas Ferre wrote: >> --- a/common/main.c >> +++ b/common/main.c >> @@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay) >> * when catch up. >> */ >>

Re: [U-Boot] [PATCH] watchdog petting during autoboot delay

2010-06-03 Thread Nicolas Ferre
Le 26/05/2010 20:13, Mike Frysinger : > On Wednesday 26 May 2010 06:34:49 Nicolas Ferre wrote: >> --- a/common/main.c >> +++ b/common/main.c >> @@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay) >> * when catch up. >> */ >>

[U-Boot] [PATCH] watchdog petting during autoboot delay

2010-05-26 Thread Nicolas Ferre
Watchdog resets were experienced during autoboot delay. Petting the watchdog during abortboot() function solve the issue. Signed-off-by: Nicolas Ferre --- common/main.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/common/main.c b/common/main.c index f7e7c1c..ea040aa

[U-Boot] [PATCH] arm: add initilisation of watchdog in init_sequence

2010-05-26 Thread Nicolas Ferre
to be able to begin the triggering quickly. Signed-off-by: Nicolas Ferre --- arch/arm/lib/board.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index f5660a9..569009e 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib

[U-Boot] [PATCH] Network AT91 AVR32: generic way of addressing USRIO register layout

2009-03-23 Thread Nicolas Ferre
The MACB IP used by AVR32 & AT91 have two different layout for USRIO register. We have to differentiate this in the driver code. No more cpu specific #ifdefs in driver: we manage a configuration variable. Signed-off-by: Nicolas Ferre --- drivers/net/macb.c |6 ++ drivers/net/ma

Re: [U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-20 Thread Nicolas Ferre
Ben, Ben Warren : > Hi Nicolas, > > Nicolas Ferre wrote: > >> diff --git a/drivers/net/macb.c b/drivers/net/macb.c >> index af0409b..6de0a04 100644 >> --- a/drivers/net/macb.c >> +++ b/drivers/net/macb.c >> @@ -447,14 +447,14 @@ static int macb_in

Re: [U-Boot] AT91: NAND OOB and ECC in U-Boot vs Linux

2009-03-18 Thread Nicolas Ferre
Jesus Alvarez micromint.com> writes: > > The AT91 Linux kernel patches for versions 2.6.27 or later use a separate > atmel_nand.c driver that implements some OOB and ECC options that are not > exactly the same as those in the standard kernel NAND driver (nand_base.c , > etc.). AT91 based boards

Re: [U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-11 Thread Nicolas Ferre
Ben Warren : > Hi Nicolas, > > Nicolas Ferre wrote: > >> diff --git a/drivers/net/macb.c b/drivers/net/macb.c >> index af0409b..6de0a04 100644 >> --- a/drivers/net/macb.c >> +++ b/drivers/net/macb.c >> @@ -447,14 +447,14 @@ static int macb_in

[U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-10 Thread Nicolas Ferre
/product_card.asp?part_id=4337 Signed-off-by: Justin Waters Signed-off-by: Nicolas Ferre --- MAKEALL |1 + Makefile | 14 -- board/atmel/at91sam9260ek/at91sam9260ek.c |5 + cpu/arm926ejs/at91/usb.c

Re: [U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-10 Thread Nicolas Ferre
Wolfgang Denk : > Dear Nicolas Ferre, > > In message <49b51f04.8000...@atmel.com> you wrote: >> AT91sam9g20 is an evolution of the at91sam9260 >> with a faster clock speed. >> >> Here is the chip page on Atmel website: >> http://www.atmel.c

Re: [U-Boot] Help on getting the AT91 u-boot patch

2009-03-09 Thread Nicolas Ferre
As we try to integrate constantly patches in mainline, you can find most of those bits in latest u-boot revisions. Hope that it helps. Best regards, -- Nicolas Ferre ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-09 Thread Nicolas Ferre
AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed. Here is the chip page on Atmel website: http://www.atmel.com/dyn/products/product_card.asp?part_id=4337 Signed-off-by: Nicolas Ferre --- Makefile | 17 ++ board/atmel/at91sam9g20ek

[U-Boot] [PATCH v2] at91: add at91sam9xeek board support

2009-01-05 Thread Nicolas Ferre
At91sam9xe is basically an at91sam9260 with embedded flash. We can manage it as another entry for at91sam9260 in the Makefile. Check documentation at : http://www.atmel.com/dyn/products/product_card.asp?part_id=4263 Signed-off-by: Nicolas Ferre --- Patch against u-boot-at91.git V2 integrates

[U-Boot] [PATCH] at91: add at91sam9xeek board support (typo)

2008-12-15 Thread Nicolas Ferre
Typo: CFG_ convert to CONFIG_SYS_ Signed-off-by: Nicolas Ferre --- Makefile |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7be1de2..74dfcca 100644 --- a/Makefile +++ b/Makefile @@ -2605,13 +2605,13 @@ at91sam9xeek_dataflash_cs1_config

[U-Boot] [PATCH] at91: add at91sam9xeek board support

2008-12-15 Thread Nicolas Ferre
At91sam9xe is basically an at91sam9260 with embedded flash. We can manage it as another entry for at91sam9260 in the Makefile. Check documentation at : http://www.atmel.com/dyn/products/product_card.asp?part_id=4263 Signed-off-by: Nicolas Ferre --- Makefile| 17 + doc