[U-Boot] [PATCH] net: fman: add support RGMII_TXID to memac
York Sun
york.sun at nxp.com
Fri Aug 4 16:03:24 UTC 2017
On 08/03/2017 11:15 PM, Madalin Bucur wrote:
> Signed-off-by: Madalin Bucur <madalin.bucur at nxp.com>
> ---
> drivers/net/fm/memac.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/fm/memac.c b/drivers/net/fm/memac.c
> index 1b5779c..ea50ed3 100644
> --- a/drivers/net/fm/memac.c
> +++ b/drivers/net/fm/memac.c
> @@ -84,6 +84,7 @@ static void memac_set_interface_mode(struct fsl_enet_mac *mac,
> if_mode |= IF_MODE_GMII;
> break;
> case PHY_INTERFACE_MODE_RGMII:
> + case PHY_INTERFACE_MODE_RGMII_TXID:
> if_mode |= (IF_MODE_GMII | IF_MODE_RG);
> break;
> case PHY_INTERFACE_MODE_RMII:
> @@ -106,7 +107,8 @@ static void memac_set_interface_mode(struct fsl_enet_mac *mac,
> if (type != PHY_INTERFACE_MODE_XGMII)
> if_mode |= IF_MODE_EN_AUTO;
>
> - if (type == PHY_INTERFACE_MODE_RGMII) {
> + if (type == PHY_INTERFACE_MODE_RGMII ||
> + type == PHY_INTERFACE_MODE_RGMII_TXID) {
> if_mode &= ~IF_MODE_EN_AUTO;
> if_mode &= ~IF_MODE_SETSP_MASK;
> switch (speed) {
>
Madalin,
This patch doesn't fix the RGMII port (FM1 at DTSEC3) issue I found on
LS1043ARDB.
Reverting 5a78a472f6660a72b9343a93791353ac879eeed0 makes this port working.
York
More information about the U-Boot
mailing list