diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2020-06-14 14:41:07 +0200 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2020-06-18 19:35:03 +0200 |
commit | 10fa7ec9f64dec9bc90e85e37248eabfb9b44bf2 (patch) | |
tree | bbfa9c07195c0d3655b974190efa3a16b7715992 /include | |
parent | 9cb895203a46654f7ee6dd95be5c8ab05e4dfbd3 (diff) |
ARM: rmobile: Increase PHY auto-negotiation timeout to 20s
The ethernet PHY on all known Gen3 boards takes a while to come out
of reset, increase the auto-negotiation timeout to prevent it from
timing out in case the ethernet is used right after the board was
reset.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/rcar-gen3-common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/rcar-gen3-common.h b/include/configs/rcar-gen3-common.h index 8f400ba05a..cf4d3bad2e 100644 --- a/include/configs/rcar-gen3-common.h +++ b/include/configs/rcar-gen3-common.h @@ -34,6 +34,9 @@ #define CONFIG_SYS_MAXARGS 64 #define CONFIG_SYS_BAUDRATE_TABLE { 115200, 38400 } +/* PHY needs a longer autoneg timeout */ +#define PHY_ANEG_TIMEOUT 20000 + /* MEMORY */ #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE |