Re: [PATCH] sunxi: H6: Enable Ethernet on Orange Pi One Plus

2023-07-16 Thread Corentin Labbe
Le Sun, Jul 16, 2023 at 01:35:02AM +0100, Andre Przywara a écrit : > On Tue, 11 Jul 2023 19:40:21 + > Anne Macedo wrote: > > Hi Anne, > > thanks for reaching out to the list! But please try to avoid > pushing any patches downstream (Yocto) before they are accepted > or at least discussed

[PATCH] ARC: HSDK: permit to build out-of-tree

2022-07-01 Thread Corentin Labbe
When building with out of tree source, make fail with: uboot bin file not exists: /usr/src/uboot/u-boot.bin This is due to obj files searched in srctree instead of objtree. Fixes: 9ddcfef6d425 ("ARC: HSDK: Add tool and make target to generate bsp") Signed-off-by: Corentin Labbe

[PATCH] board: ti: am335x: eth_cpsw should depend on CONFIG_NET

2022-06-14 Thread Corentin LABBE
boot only if one pass is done. SPL try to do more than one pass due to eth_cpsw failing. Since HS SPL does not need network (and NET is already disabled in config), the easiest fix is to "remove" eth_cpsw from SPL by testing if NET is enabled. Signed-off-by: Corentin LABBE --- board/ti/am33

[PATCH v2] rpi_4_defconfig: add missing CONFIG_ARCH_FIXUP_FDT_MEMORY

2020-05-13 Thread Corentin Labbe
As discussed at https://lore.kernel.org/linux-arm-kernel/b726290c-1038-3771-5187-6ac370bc9...@arm.com/T/ the defconfig for rpi4 miss CONFIG_ARCH_FIXUP_FDT_MEMORY. Without it, booting with an initrd fail. Signed-off-by: Corentin Labbe --- Changes since v1: - added fix for rpi_4_32b_defconfig

[PATCH] rpi_4_defconfig: add missing CONFIG_ARCH_FIXUP_FDT_MEMORY

2020-03-31 Thread Corentin Labbe
As discussed at https://lore.kernel.org/linux-arm-kernel/b726290c-1038-3771-5187-6ac370bc9...@arm.com/T/ the defconfig for rpi4 miss CONFIG_ARCH_FIXUP_FDT_MEMORY. Without it, booting with an initrd fail. Signed-off-by: Corentin Labbe --- configs/rpi_4_defconfig | 2 +- 1 file changed, 1

Re: [U-Boot] [linux-sunxi] [PATCH v2 0/5] sunxi: H6: Enable USB (2.0) support

2019-06-24 Thread Corentin Labbe
OTP broadcast 2 DHCP client bound to address 192.168.66.143 (6010 ms) *** ERROR: `serverip' not set Cannot autoload with TFTPGET But the network is working (download kernel via tftp with success) But I fear the EHCI timed out and co... Could it be related to yours patchs ? Anyway you could add Tested

Re: [U-Boot] [linux-sunxi] [PATCH 0/3] Enable networking for BananaPi M3

2019-06-17 Thread Corentin Labbe
On Mon, Jun 17, 2019 at 11:15:17AM +0800, Chen-Yu Tsai wrote: > On Mon, Jun 17, 2019 at 12:31 AM Corentin Labbe > wrote: > > > > Hello > > > > This serie fix building sun8i-emac for a83t and then enable networking > > for BananaPi M3. > > > > R

[U-Boot] [PATCH 3/3] configs: Sinovoip_BPI_M3_defconfig: enable sun8i-emac

2019-06-17 Thread Corentin Labbe
Since the BPIM3 have a sun8i-emac, this patch enables it on Sinovoip_BPI_M3_defconfig. Signed-off-by: Corentin Labbe --- configs/Sinovoip_BPI_M3_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/Sinovoip_BPI_M3_defconfig b/configs/Sinovoip_BPI_M3_defconfig index

[U-Boot] [PATCH 1/3] configs: Sinovoip_BPI_M3_defconfig: Fix invalid DLDO3 settings

2019-06-17 Thread Corentin Labbe
The current dldo3 voltage while sufficient for 100Mbit/s transfers is insufficient for achieving 1Gbit/s. In fact this problem is the same that I reported on Linux month ago. This patch set DLDO3 to 3.3v which is needed by the PHY. Signed-off-by: Corentin Labbe --- configs

[U-Boot] [PATCH 2/3] net: sun8i-emac: bring back support of A83T

2019-06-17 Thread Corentin Labbe
Building sun8i-emac for the A83T variant fail. This is due to different sunxi_ccm_reg members structures of R40 and H3 not present in A83T ones. This patch fix this problem by adding some ifdef around thses problematic code. Signed-off-by: Corentin Labbe --- drivers/net/sun8i_emac.c | 4

[U-Boot] [PATCH 0/3] Enable networking for BananaPi M3

2019-06-17 Thread Corentin Labbe
Hello This serie fix building sun8i-emac for a83t and then enable networking for BananaPi M3. Regards Corentin Labbe (3): configs: Sinovoip_BPI_M3_defconfig: Fix invalid DLDO3 settings net: sun8i-emac: bring back support of A83T configs: Sinovoip_BPI_M3_defconfig: enable sun8i-emac

Re: [U-Boot] [U-BOOT] [PATCH] net: Add EMAC driver for H3/A83T/A64

2016-05-15 Thread Corentin LABBE
Hello I have some minor comments below Le 15/05/2016 11:41, Amit Singh Tomar a écrit : > This patch add EMAC driver support for H3/A83T/A64 SoCs. > > It has been tested on Oragnepipc(H3) board that has internal PHY. A little typo > > Signed-off-by: Amit Singh Tomar >