network_driver_DM9051.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #include "esp_eth.h"
  2. #include "network_ethernet.h"
  3. static EXT_RAM_ATTR network_ethernet_driver_t DM9051;
  4. static EXT_RAM_ATTR spi_device_interface_config_t devcfg;
  5. static EXT_RAM_ATTR esp_netif_config_t cfg_spi;
  6. static EXT_RAM_ATTR esp_netif_inherent_config_t esp_netif_config;
  7. static EXT_RAM_ATTR gpio_num_t rst = -1;
  8. static esp_err_t reset_hw(esp_eth_phy_t *phy)
  9. {
  10. // set reset_gpio_num to a negative value can skip hardware reset phy chip
  11. if (rst >= 0) {
  12. esp_rom_gpio_pad_select_gpio_x(rst);
  13. gpio_set_direction_x(rst, GPIO_MODE_OUTPUT);
  14. gpio_set_level_x(rst, 0);
  15. /* assert nRST signal on LAN87xx a little longer than the minimum specified in datasheet */
  16. esp_rom_delay_us(150);
  17. gpio_set_level_x(rst, 1);
  18. }
  19. return ESP_OK;
  20. }
  21. static esp_err_t start(spi_device_handle_t spi_handle, sys_dev_eth_config* ethernet_config) {
  22. #ifdef CONFIG_ETH_SPI_ETHERNET_DM9051
  23. eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
  24. eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
  25. eth_dm9051_config_t eth_config = ETH_DM9051_DEFAULT_CONFIG(spi_handle);
  26. // we assume that isr has been installed already
  27. eth_config.int_gpio_num = ethernet_config->ethType.spi.intr;
  28. phy_config.phy_addr = -1;
  29. phy_config.reset_gpio_num = ethernet_config->common.rst;
  30. rst = phy_config.reset_gpio_num;
  31. esp_eth_mac_t* mac = esp_eth_mac_new_dm9051(&eth_config, &mac_config);
  32. esp_eth_phy_t* phy = esp_eth_phy_new_dm9051(&phy_config);
  33. phy->reset_hw = reset_hw;
  34. esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
  35. return esp_eth_driver_install(&config, &DM9051.handle);
  36. #else
  37. return ESP_ERR_NOT_SUPPORTED;
  38. #endif
  39. }
  40. static void init_config(sys_dev_eth_config* ethernet_config) {
  41. esp_netif_inherent_config_t loc_esp_netif_config = ESP_NETIF_INHERENT_DEFAULT_ETH();
  42. devcfg.command_bits = 1;
  43. devcfg.address_bits = 7;
  44. devcfg.mode = 0;
  45. devcfg.clock_speed_hz = ethernet_config->ethType.spi.speed > 0 ? ethernet_config->ethType.spi.speed : SPI_MASTER_FREQ_20M; // default speed
  46. devcfg.queue_size = 20;
  47. devcfg.spics_io_num = ethernet_config->ethType.spi.cs;
  48. memcpy(&esp_netif_config, &loc_esp_netif_config, sizeof(loc_esp_netif_config));
  49. cfg_spi.base = &esp_netif_config,
  50. cfg_spi.stack = ESP_NETIF_NETSTACK_DEFAULT_ETH;
  51. DM9051.cfg_netif = &cfg_spi;
  52. DM9051.devcfg = &devcfg;
  53. DM9051.start = start;
  54. }
  55. network_ethernet_driver_t* DM9051_Detect(sys_dev_eth_config* ethernet_config) {
  56. if (ethernet_config->common.model != sys_dev_eth_models_DM9051 ||
  57. ethernet_config->which_ethType != sys_dev_eth_config_spi_tag )
  58. return NULL;
  59. DM9051.rmii = false;
  60. DM9051.spi = true;
  61. #ifdef CONFIG_ETH_SPI_ETHERNET_DM9051
  62. DM9051.valid = true;
  63. #else
  64. DM9051.valid = false;
  65. #endif
  66. DM9051.init_config = init_config;
  67. DM9051.model = ethernet_config->common.model;
  68. return &DM9051;
  69. }