2021-11-04 04:10:19 -04:00
|
|
|
/*
|
2022-05-13 06:03:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-04 04:10:19 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-06-25 07:36:56 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "esp_log.h"
|
2021-04-01 08:00:54 -04:00
|
|
|
#include "esp_check.h"
|
2022-05-13 06:03:56 -04:00
|
|
|
#include "esp_eth_phy_802_3.h"
|
2019-06-25 07:36:56 -04:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
|
2021-04-01 08:00:54 -04:00
|
|
|
static const char *TAG = "dm9051.phy";
|
2019-06-25 07:36:56 -04:00
|
|
|
|
|
|
|
/***************Vendor Specific Register***************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DSCR(DAVICOM Specified Configuration Register)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef union {
|
|
|
|
struct {
|
|
|
|
uint32_t reserved1 : 1; /* Reserved */
|
|
|
|
uint32_t sleep : 1; /* Set 1 to enable PHY into sleep mode */
|
|
|
|
uint32_t mfpsc : 1; /* MII frame preamble suppression control bit */
|
|
|
|
uint32_t smrst : 1; /* Set 1 to reset all state machines of PHY */
|
|
|
|
uint32_t rpdctr_en : 1; /* Set 1 to enable automatic reduced power down */
|
|
|
|
uint32_t reserved2 : 2; /* Reserved */
|
|
|
|
uint32_t flink100 : 1; /* Force Good Link in 100Mbps */
|
|
|
|
uint32_t reserved3 : 2; /* Reserved */
|
|
|
|
uint32_t tx_fx : 1; /* 100BASE-TX or FX Mode Control */
|
|
|
|
uint32_t reserved4 : 1; /* Reserved */
|
|
|
|
uint32_t bp_adpok : 1; /* BYPASS ADPOK */
|
|
|
|
uint32_t bp_align : 1; /* Bypass Symbol Alignment Function */
|
|
|
|
uint32_t bp_scr : 1; /* Bypass Scrambler/Descrambler Function */
|
|
|
|
uint32_t bp_4b5b : 1; /* Bypass 4B5B Encoding and 5B4B Decoding */
|
|
|
|
};
|
|
|
|
uint32_t val;
|
|
|
|
} dscr_reg_t;
|
|
|
|
#define ETH_PHY_DSCR_REG_ADDR (0x10)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DSCSR(DAVICOM Specified Configuration and Status Register)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef union {
|
|
|
|
struct {
|
|
|
|
uint32_t anmb : 4; /* Auto-Negotiation Monitor Bits */
|
|
|
|
uint32_t phy_addr : 5; /* PHY Address */
|
|
|
|
uint32_t reserved : 3; /* Reserved */
|
|
|
|
uint32_t hdx10 : 1; /* 10M Half-Duplex Operation Mode */
|
|
|
|
uint32_t fdx10 : 1; /* 10M Full-Duplex Operation Mode */
|
|
|
|
uint32_t hdx100 : 1; /* 100M Half-Duplex Operation Mode */
|
|
|
|
uint32_t fdx100 : 1; /* 100M Full-Duplex Operation Mode */
|
|
|
|
};
|
|
|
|
uint32_t val;
|
|
|
|
} dscsr_reg_t;
|
|
|
|
#define ETH_PHY_DSCSR_REG_ADDR (0x11)
|
|
|
|
|
|
|
|
typedef struct {
|
2022-05-13 06:03:56 -04:00
|
|
|
phy_802_3_t phy_802_3;
|
2019-06-25 07:36:56 -04:00
|
|
|
} phy_dm9051_t;
|
|
|
|
|
2019-09-18 23:27:42 -04:00
|
|
|
static esp_err_t dm9051_update_link_duplex_speed(phy_dm9051_t *dm9051)
|
|
|
|
{
|
2021-04-01 08:00:54 -04:00
|
|
|
esp_err_t ret = ESP_OK;
|
2022-05-13 06:03:56 -04:00
|
|
|
esp_eth_mediator_t *eth = dm9051->phy_802_3.eth;
|
|
|
|
uint32_t addr = dm9051->phy_802_3.addr;
|
2019-09-18 23:27:42 -04:00
|
|
|
eth_speed_t speed = ETH_SPEED_10M;
|
|
|
|
eth_duplex_t duplex = ETH_DUPLEX_HALF;
|
2020-07-20 08:42:52 -04:00
|
|
|
uint32_t peer_pause_ability = false;
|
2019-09-18 23:27:42 -04:00
|
|
|
bmsr_reg_t bmsr;
|
|
|
|
dscsr_reg_t dscsr;
|
2020-07-20 08:42:52 -04:00
|
|
|
anlpar_reg_t anlpar;
|
2020-05-08 09:44:30 -04:00
|
|
|
// BMSR is a latch low register
|
|
|
|
// after power up, the first latched value must be 0, which means down
|
|
|
|
// to speed up power up link speed, double read this register as a workaround
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_BMSR_REG_ADDR, &(bmsr.val)), err, TAG, "read BMSR failed");
|
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_BMSR_REG_ADDR, &(bmsr.val)), err, TAG, "read BMSR failed");
|
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_ANLPAR_REG_ADDR, &(anlpar.val)), err, TAG, "read ANLPAR failed");
|
2019-09-18 23:27:42 -04:00
|
|
|
eth_link_t link = bmsr.link_status ? ETH_LINK_UP : ETH_LINK_DOWN;
|
|
|
|
/* check if link status changed */
|
2022-05-13 06:03:56 -04:00
|
|
|
if (dm9051->phy_802_3.link_status != link) {
|
2019-09-18 23:27:42 -04:00
|
|
|
/* when link up, read negotiation result */
|
|
|
|
if (link == ETH_LINK_UP) {
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_DSCSR_REG_ADDR, &(dscsr.val)), err, TAG, "read DSCSR failed");
|
2019-09-18 23:27:42 -04:00
|
|
|
if (dscsr.fdx100 || dscsr.hdx100) {
|
|
|
|
speed = ETH_SPEED_100M;
|
|
|
|
} else {
|
|
|
|
speed = ETH_SPEED_10M;
|
|
|
|
}
|
|
|
|
if (dscsr.fdx100 || dscsr.fdx10) {
|
|
|
|
duplex = ETH_DUPLEX_FULL;
|
|
|
|
} else {
|
|
|
|
duplex = ETH_DUPLEX_HALF;
|
|
|
|
}
|
2021-04-01 08:00:54 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_SPEED, (void *)speed), err, TAG, "change speed failed");
|
|
|
|
ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_DUPLEX, (void *)duplex), err, TAG, "change duplex failed");
|
2020-07-20 08:42:52 -04:00
|
|
|
/* if we're in duplex mode, and peer has the flow control ability */
|
|
|
|
if (duplex == ETH_DUPLEX_FULL && anlpar.symmetric_pause) {
|
|
|
|
peer_pause_ability = 1;
|
|
|
|
} else {
|
|
|
|
peer_pause_ability = 0;
|
|
|
|
}
|
2021-04-01 08:00:54 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_PAUSE, (void *)peer_pause_ability), err, TAG, "change pause ability failed");
|
2019-09-18 23:27:42 -04:00
|
|
|
}
|
2021-04-01 08:00:54 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_LINK, (void *)link), err, TAG, "change link failed");
|
2022-05-13 06:03:56 -04:00
|
|
|
dm9051->phy_802_3.link_status = link;
|
2019-09-18 23:27:42 -04:00
|
|
|
}
|
|
|
|
return ESP_OK;
|
|
|
|
err:
|
2021-04-01 08:00:54 -04:00
|
|
|
return ret;
|
2019-09-18 23:27:42 -04:00
|
|
|
}
|
|
|
|
|
2019-06-25 07:36:56 -04:00
|
|
|
static esp_err_t dm9051_get_link(esp_eth_phy_t *phy)
|
|
|
|
{
|
2021-04-01 08:00:54 -04:00
|
|
|
esp_err_t ret = ESP_OK;
|
2022-05-13 06:03:56 -04:00
|
|
|
phy_dm9051_t *dm9051 = __containerof(esp_eth_phy_into_phy_802_3(phy), phy_dm9051_t, phy_802_3);
|
2021-11-04 04:10:19 -04:00
|
|
|
/* Update information about link, speed, duplex */
|
2021-04-01 08:00:54 -04:00
|
|
|
ESP_GOTO_ON_ERROR(dm9051_update_link_duplex_speed(dm9051), err, TAG, "update link duplex speed failed");
|
2019-06-25 07:36:56 -04:00
|
|
|
return ESP_OK;
|
|
|
|
err:
|
2021-04-01 08:00:54 -04:00
|
|
|
return ret;
|
2019-06-25 07:36:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static esp_err_t dm9051_reset(esp_eth_phy_t *phy)
|
|
|
|
{
|
2021-04-01 08:00:54 -04:00
|
|
|
esp_err_t ret = ESP_OK;
|
2022-05-13 06:03:56 -04:00
|
|
|
phy_dm9051_t *dm9051 = __containerof(esp_eth_phy_into_phy_802_3(phy), phy_dm9051_t, phy_802_3);
|
|
|
|
uint32_t addr = dm9051->phy_802_3.addr;
|
|
|
|
dm9051->phy_802_3.link_status = ETH_LINK_DOWN;
|
|
|
|
esp_eth_mediator_t *eth = dm9051->phy_802_3.eth;
|
2019-06-25 07:36:56 -04:00
|
|
|
dscr_reg_t dscr;
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_DSCR_REG_ADDR, &(dscr.val)), err, TAG, "read DSCR failed");
|
2019-06-25 07:36:56 -04:00
|
|
|
dscr.smrst = 1;
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, addr, ETH_PHY_DSCR_REG_ADDR, dscr.val), err, TAG, "write DSCR failed");
|
2019-06-25 07:36:56 -04:00
|
|
|
bmcr_reg_t bmcr = {.reset = 1};
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed");
|
2019-06-25 07:36:56 -04:00
|
|
|
/* Wait for reset complete */
|
|
|
|
uint32_t to = 0;
|
2022-05-13 06:03:56 -04:00
|
|
|
for (to = 0; to < dm9051->phy_802_3.reset_timeout_ms / 10; to++) {
|
2019-06-25 07:36:56 -04:00
|
|
|
vTaskDelay(pdMS_TO_TICKS(10));
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed");
|
|
|
|
ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_DSCR_REG_ADDR, &(dscr.val)), err, TAG, "read DSCR failed");
|
2019-06-25 07:36:56 -04:00
|
|
|
if (!bmcr.reset && !dscr.smrst) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_FALSE(to < dm9051->phy_802_3.reset_timeout_ms / 10, ESP_FAIL, err, TAG, "PHY reset timeout");
|
2019-06-25 07:36:56 -04:00
|
|
|
return ESP_OK;
|
|
|
|
err:
|
2021-04-01 08:00:54 -04:00
|
|
|
return ret;
|
2019-06-25 07:36:56 -04:00
|
|
|
}
|
|
|
|
|
2022-05-13 06:03:56 -04:00
|
|
|
static esp_err_t dm9051_init(esp_eth_phy_t *phy)
|
2021-11-04 04:10:19 -04:00
|
|
|
{
|
|
|
|
esp_err_t ret = ESP_OK;
|
2022-05-13 06:03:56 -04:00
|
|
|
phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy);
|
2021-11-04 04:10:19 -04:00
|
|
|
|
2022-05-13 06:03:56 -04:00
|
|
|
/* Basic PHY init */
|
|
|
|
ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_basic_phy_init(phy_802_3), err, TAG, "failed to init PHY");
|
2021-11-04 04:10:19 -04:00
|
|
|
|
2019-06-25 07:36:56 -04:00
|
|
|
/* Check PHY ID */
|
2022-05-13 06:03:56 -04:00
|
|
|
uint32_t oui;
|
|
|
|
uint8_t model;
|
|
|
|
ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_read_oui(phy_802_3, &oui), err, TAG, "read OUI failed");
|
|
|
|
ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_read_manufac_info(phy_802_3, &model, NULL), err, TAG, "read manufacturer's info failed");
|
|
|
|
ESP_GOTO_ON_FALSE(oui == 0x606E && model == 0x0A, ESP_FAIL, err, TAG, "wrong chip ID");
|
2019-06-25 07:36:56 -04:00
|
|
|
|
|
|
|
return ESP_OK;
|
|
|
|
err:
|
2021-04-01 08:00:54 -04:00
|
|
|
return ret;
|
2019-06-25 07:36:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
esp_eth_phy_t *esp_eth_phy_new_dm9051(const eth_phy_config_t *config)
|
|
|
|
{
|
2021-04-01 08:00:54 -04:00
|
|
|
esp_eth_phy_t *ret = NULL;
|
2019-06-25 07:36:56 -04:00
|
|
|
phy_dm9051_t *dm9051 = calloc(1, sizeof(phy_dm9051_t));
|
2021-04-01 08:00:54 -04:00
|
|
|
ESP_GOTO_ON_FALSE(dm9051, NULL, err, TAG, "calloc dm9051 failed");
|
2022-05-13 06:03:56 -04:00
|
|
|
ESP_GOTO_ON_FALSE(esp_eth_phy_802_3_obj_config_init(&dm9051->phy_802_3, config) == ESP_OK,
|
|
|
|
NULL, err, TAG, "configuration initialization of PHY 802.3 failed");
|
|
|
|
|
|
|
|
// redefine functions which need to be customized for sake of dm9051
|
|
|
|
dm9051->phy_802_3.parent.init = dm9051_init;
|
|
|
|
dm9051->phy_802_3.parent.reset = dm9051_reset;
|
|
|
|
dm9051->phy_802_3.parent.get_link = dm9051_get_link;
|
|
|
|
|
|
|
|
return &dm9051->phy_802_3.parent;
|
2019-06-25 07:36:56 -04:00
|
|
|
err:
|
2022-05-13 06:03:56 -04:00
|
|
|
if (dm9051 != NULL) {
|
|
|
|
free(dm9051);
|
|
|
|
}
|
2021-04-01 08:00:54 -04:00
|
|
|
return ret;
|
2019-06-25 07:36:56 -04:00
|
|
|
}
|