Merge pull request #2692 from SummerGGift/phy_check

[bsp][stm32][driver] fix phy detection driver
This commit is contained in:
Bernard Xiong 2019-05-16 09:29:22 +08:00 committed by GitHub
commit 361754e037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 21 deletions

View File

@ -431,13 +431,15 @@ static void phy_monitor_thread_entry(void *parameter)
uint8_t phy_addr = 0xFF;
uint8_t phy_speed_new = 0;
rt_uint32_t status = 0;
uint8_t detected_count = 0;
while(phy_addr == 0xFF)
{
/* phy search */
rt_uint32_t i, temp;
for (i = 0; i <= 0x1F; i++)
{
EthHandle.Init.PhyAddress = i;
HAL_ETH_ReadPHYRegister(&EthHandle, PHY_ID1_REG, (uint32_t *)&temp);
if (temp != 0xFFFF && temp != 0x00)
@ -447,16 +449,17 @@ static void phy_monitor_thread_entry(void *parameter)
}
}
if (phy_addr == 0xFF)
detected_count++;
rt_thread_mdelay(1000);
if (detected_count > 10)
{
LOG_E("phy not probe!");
return;
LOG_E("No PHY device was detected, please check hardware!");
}
else
{
LOG_D("found a phy, address:0x%02X", phy_addr);
}
LOG_D("Found a phy, address:0x%02X", phy_addr);
/* RESET PHY */
LOG_D("RESET PHY!");
HAL_ETH_WritePHYRegister(&EthHandle, PHY_BASIC_CONTROL_REG, PHY_RESET_MASK);