diff --git a/components/esp_eth/src/esp_eth_phy_ksz8041.c b/components/esp_eth/src/esp_eth_phy_ksz8041.c index 046b7eff76..61031cbf75 100644 --- a/components/esp_eth/src/esp_eth_phy_ksz8041.c +++ b/components/esp_eth/src/esp_eth_phy_ksz8041.c @@ -198,6 +198,8 @@ static esp_err_t ksz8041_negotiate(esp_eth_phy_t *phy) { phy_ksz8041_t *ksz8041 = __containerof(phy, phy_ksz8041_t, parent); esp_eth_mediator_t *eth = ksz8041->eth; + /* in case any link status has changed, let's assume we're in link down status */ + ksz8041->link_status = ETH_LINK_DOWN; /* Restart auto negotiation */ bmcr_reg_t bmcr = { .speed_select = 1, /* 100Mbps */ @@ -224,8 +226,6 @@ static esp_err_t ksz8041_negotiate(esp_eth_phy_t *phy) if ((to >= ksz8041->autonego_timeout_ms / 100) && (ksz8041->link_status == ETH_LINK_UP)) { ESP_LOGW(TAG, "auto negotiation timeout"); } - /* Updata information about link, speed, duplex */ - PHY_CHECK(ksz8041_update_link_duplex_speed(ksz8041) == ESP_OK, "update link duplex speed failed", err); return ESP_OK; err: return ESP_FAIL; diff --git a/tools/ci/config/target-test.yml b/tools/ci/config/target-test.yml index 0d007e22f8..18f44d62ad 100644 --- a/tools/ci/config/target-test.yml +++ b/tools/ci/config/target-test.yml @@ -571,6 +571,12 @@ UT_046: - ESP32_IDF - UT_T1_GPIO +UT_047: + extends: .unit_test_s2_template + parallel: 5 + tags: + - ESP32S2_IDF + - UT_T1_1 UT_C3: extends: .unit_test_c3_template