Re: [U-Boot] [PATCH] armv8: ls1043aqds: make sure fixed-link property is big endian

2016-04-06 Thread York Sun
On 03/24/2016 08:46 PM, shh@gmail.com wrote:
> From: Shaohui Xie 
> 
> When setting fixed-link property to DTS, the values should be converted
> with using cpu_to_fdt32 so that to have correct value on little endian
> Soc.
> 
> Signed-off-by: Shaohui Xie 
> ---
>  board/freescale/ls1043aqds/eth.c | 12 ++--
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 

Applied to u-boot-fsl-qoriq master. Awaiting upstream.
Thanks.

York

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


[U-Boot] [PATCH] armv8: ls1043aqds: make sure fixed-link property is big endian

2016-03-25 Thread shh.xie
From: Shaohui Xie 

When setting fixed-link property to DTS, the values should be converted
with using cpu_to_fdt32 so that to have correct value on little endian
Soc.

Signed-off-by: Shaohui Xie 
---
 board/freescale/ls1043aqds/eth.c | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/board/freescale/ls1043aqds/eth.c b/board/freescale/ls1043aqds/eth.c
index 67b4afe..bf26376 100644
--- a/board/freescale/ls1043aqds/eth.c
+++ b/board/freescale/ls1043aqds/eth.c
@@ -176,9 +176,9 @@ void board_ft_fman_fixup_port(void *fdt, char *compat, 
phys_addr_t addr,
} else if (fm_info_get_enet_if(port) ==
   PHY_INTERFACE_MODE_SGMII_2500) {
/* 2.5G SGMII interface */
-   f_link.phy_id = port;
-   f_link.duplex = 1;
-   f_link.link_speed = 1000;
+   f_link.phy_id = cpu_to_fdt32(port);
+   f_link.duplex = cpu_to_fdt32(1);
+   f_link.link_speed = cpu_to_fdt32(1000);
f_link.pause = 0;
f_link.asym_pause = 0;
/* no PHY for 2.5G SGMII */
@@ -241,9 +241,9 @@ void board_ft_fman_fixup_port(void *fdt, char *compat, 
phys_addr_t addr,
} else if (fm_info_get_enet_if(port) == PHY_INTERFACE_MODE_XGMII &&
   port == FM1_10GEC1) {
/* XFI interface */
-   f_link.phy_id = port;
-   f_link.duplex = 1;
-   f_link.link_speed = 1;
+   f_link.phy_id = cpu_to_fdt32(port);
+   f_link.duplex = cpu_to_fdt32(1);
+   f_link.link_speed = cpu_to_fdt32(1);
f_link.pause = 0;
f_link.asym_pause = 0;
/* no PHY for XFI */
-- 
2.1.0.27.g96db324

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