network_driver_LAN8720.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #include "esp_eth.h"
  2. #include "network_ethernet.h"
  3. static EXT_RAM_ATTR network_ethernet_driver_t LAN8720;
  4. static EXT_RAM_ATTR esp_netif_config_t cfg_rmii;
  5. static EXT_RAM_ATTR esp_netif_inherent_config_t esp_netif_config;
  6. static EXT_RAM_ATTR gpio_num_t rst = -1;
  7. static esp_err_t reset_hw(esp_eth_phy_t *phy)
  8. {
  9. // set reset_gpio_num to a negative value can skip hardware reset phy chip
  10. if (rst >= 0) {
  11. esp_rom_gpio_pad_select_gpio_x(rst);
  12. gpio_set_direction_x(rst, GPIO_MODE_OUTPUT);
  13. gpio_set_level_x(rst, 0);
  14. /* assert nRST signal on LAN87xx a little longer than the minimum specified in datasheet */
  15. esp_rom_delay_us(150);
  16. gpio_set_level_x(rst, 1);
  17. }
  18. return ESP_OK;
  19. }
  20. static esp_err_t start(spi_device_handle_t spi_handle, sys_dev_eth_config * ethernet_config) {
  21. #ifdef CONFIG_ETH_PHY_INTERFACE_RMII
  22. eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
  23. eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
  24. mac_config.smi_mdc_gpio_num = ethernet_config->ethType.rmii.mdc;
  25. mac_config.smi_mdio_gpio_num = ethernet_config->ethType.rmii.mdio;
  26. phy_config.phy_addr = 1;
  27. phy_config.reset_gpio_num = ethernet_config->common.rst;
  28. rst = phy_config.reset_gpio_num;
  29. esp_eth_mac_t* mac = esp_eth_mac_new_esp32(&mac_config);
  30. esp_eth_phy_t* phy = esp_eth_phy_new_lan8720(&phy_config);
  31. phy->reset_hw = reset_hw;
  32. esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
  33. return esp_eth_driver_install(&config, &LAN8720.handle);
  34. #else
  35. return ESP_ERR_NOT_SUPPORTED;
  36. #endif
  37. }
  38. static void init_config(sys_dev_eth_config * ethernet_config) {
  39. esp_netif_inherent_config_t loc_esp_netif_config = ESP_NETIF_INHERENT_DEFAULT_ETH();
  40. memcpy(&esp_netif_config, &loc_esp_netif_config, sizeof(loc_esp_netif_config));
  41. cfg_rmii.base = &esp_netif_config,
  42. cfg_rmii.stack = ESP_NETIF_NETSTACK_DEFAULT_ETH;
  43. LAN8720.cfg_netif = &cfg_rmii;
  44. LAN8720.start = start;
  45. }
  46. network_ethernet_driver_t* LAN8720_Detect(sys_dev_eth_config * ethernet_config) {
  47. if (ethernet_config->common.model != sys_dev_eth_models_LAN8720 ||
  48. ethernet_config->which_ethType != sys_dev_eth_config_rmii_tag)
  49. return NULL;
  50. #ifdef CONFIG_ETH_PHY_INTERFACE_RMII
  51. LAN8720.valid = true;
  52. #else
  53. LAN8720.valid = false;
  54. #endif
  55. LAN8720.rmii = true;
  56. LAN8720.spi = false;
  57. LAN8720.model = ethernet_config->common.model;
  58. LAN8720.init_config = init_config;
  59. return &LAN8720;
  60. }