fix(esp_eth): fixed default GPIO to match new ver. of P4 devboard

This commit is contained in:
Ondrej Kosta
2024-08-08 18:11:38 +02:00
parent 6568f8c553
commit 9c9ba2e54f
2 changed files with 5 additions and 5 deletions

View File

@ -236,7 +236,7 @@ menu "Example Connection Configuration"
int "SMI MDIO GPIO number" int "SMI MDIO GPIO number"
range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
default 18 if IDF_TARGET_ESP32 default 18 if IDF_TARGET_ESP32
default 27 if IDF_TARGET_ESP32P4 default 52 if IDF_TARGET_ESP32P4
help help
Set the GPIO number used by SMI MDIO. Set the GPIO number used by SMI MDIO.
endif endif
@ -295,7 +295,7 @@ menu "Example Connection Configuration"
config EXAMPLE_ETH_PHY_RST_GPIO config EXAMPLE_ETH_PHY_RST_GPIO
int "PHY Reset GPIO number" int "PHY Reset GPIO number"
range -1 ENV_GPIO_OUT_RANGE_MAX range -1 ENV_GPIO_OUT_RANGE_MAX
default 26 if IDF_TARGET_ESP32P4 default 51 if IDF_TARGET_ESP32P4
default 5 default 5
help help
Set the GPIO number used to reset PHY chip. Set the GPIO number used to reset PHY chip.

View File

@ -52,7 +52,7 @@ menu "Example Ethernet Configuration"
bool "KSZ80xx" bool "KSZ80xx"
help help
With the KSZ80xx series, Microchip offers single-chip 10BASE-T/100BASE-TX With the KSZ80xx series, Microchip offers single-chip 10BASE-T/100BASE-TX
Ethernet Physical Layer Tranceivers (PHY). Ethernet Physical Layer Transceivers (PHY).
The following chips are supported: KSZ8001, KSZ8021, KSZ8031, KSZ8041, The following chips are supported: KSZ8001, KSZ8021, KSZ8031, KSZ8041,
KSZ8051, KSZ8061, KSZ8081, KSZ8091 KSZ8051, KSZ8061, KSZ8081, KSZ8091
Goto https://www.microchip.com for more information about them. Goto https://www.microchip.com for more information about them.
@ -70,7 +70,7 @@ menu "Example Ethernet Configuration"
int "SMI MDIO GPIO number" int "SMI MDIO GPIO number"
range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
default 18 if IDF_TARGET_ESP32 default 18 if IDF_TARGET_ESP32
default 27 if IDF_TARGET_ESP32P4 default 52 if IDF_TARGET_ESP32P4
help help
Set the GPIO number used by SMI MDIO. Set the GPIO number used by SMI MDIO.
@ -78,7 +78,7 @@ menu "Example Ethernet Configuration"
int "PHY Reset GPIO number" int "PHY Reset GPIO number"
range -1 ENV_GPIO_OUT_RANGE_MAX range -1 ENV_GPIO_OUT_RANGE_MAX
default 5 if IDF_TARGET_ESP32 default 5 if IDF_TARGET_ESP32
default 26 if IDF_TARGET_ESP32P4 default 51 if IDF_TARGET_ESP32P4
help help
Set the GPIO number used to reset PHY chip. Set the GPIO number used to reset PHY chip.
Set to -1 to disable PHY chip hardware reset. Set to -1 to disable PHY chip hardware reset.