Re: [U-Boot] [PATCH] arm: baltos: use device tree alias to access Ethernet slave

2019-08-21 Thread Tom Rini
On Fri, Aug 09, 2019 at 07:21:57AM +0200, yegorsli...@googlemail.com wrote:

> From: Yegor Yefremov 
> 
> The full path has changed in the recent kernels so that it is
> not possible to load them. Aliases "ethernet0" and "ethernet1"
> are still present in both legacy and new kernels.
> 
> Also, fix error messages to correspond to the taken actions.
> 
> Signed-off-by: Yegor Yefremov 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH] arm: baltos: use device tree alias to access Ethernet slave

2019-08-08 Thread yegorslists
From: Yegor Yefremov 

The full path has changed in the recent kernels so that it is
not possible to load them. Aliases "ethernet0" and "ethernet1"
are still present in both legacy and new kernels.

Also, fix error messages to correspond to the taken actions.

Signed-off-by: Yegor Yefremov 
---
 board/vscom/baltos/board.c | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/board/vscom/baltos/board.c b/board/vscom/baltos/board.c
index c5949ad267..036a356578 100644
--- a/board/vscom/baltos/board.c
+++ b/board/vscom/baltos/board.c
@@ -288,15 +288,15 @@ int ft_board_setup(void *blob, bd_t *bd)
mac_addr[5] = header.MAC1[5];
 
 
-   node = fdt_path_offset(blob, "/ocp/ethernet/slave@4a100200");
+   node = fdt_path_offset(blob, "ethernet0");
if (node < 0) {
-   printf("no /soc/fman/ethernet path offset\n");
+   printf("no ethernet0 path offset\n");
return -ENODEV;
}
 
ret = fdt_setprop(blob, node, "mac-address", &mac_addr, 6);
if (ret) {
-   printf("error setting local-mac-address property\n");
+   printf("error setting mac-address property\n");
return -ENODEV;
}
 
@@ -308,15 +308,15 @@ int ft_board_setup(void *blob, bd_t *bd)
mac_addr[4] = header.MAC2[4];
mac_addr[5] = header.MAC2[5];
 
-   node = fdt_path_offset(blob, "/ocp/ethernet/slave@4a100300");
+   node = fdt_path_offset(blob, "ethernet1");
if (node < 0) {
-   printf("no /soc/fman/ethernet path offset\n");
+   printf("no ethernet1 path offset\n");
return -ENODEV;
}
 
ret = fdt_setprop(blob, node, "mac-address", &mac_addr, 6);
if (ret) {
-   printf("error setting local-mac-address property\n");
+   printf("error setting mac-address property\n");
return -ENODEV;
}
 
-- 
2.17.0

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot