ethernet_example_main.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /* Ethernet Basic Example
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #include <stdio.h>
  8. #include <string.h>
  9. #include "freertos/FreeRTOS.h"
  10. #include "freertos/task.h"
  11. #include "esp_netif.h"
  12. #include "esp_eth.h"
  13. #include "esp_event.h"
  14. #include "esp_log.h"
  15. #include "driver/gpio.h"
  16. #include "sdkconfig.h"
  17. #if CONFIG_ETH_USE_SPI_ETHERNET
  18. #include "driver/spi_master.h"
  19. #endif // CONFIG_ETH_USE_SPI_ETHERNET
  20. static const char *TAG = "eth_example";
  21. #if CONFIG_EXAMPLE_USE_SPI_ETHERNET
  22. #define INIT_SPI_ETH_MODULE_CONFIG(eth_module_config, num) \
  23. do { \
  24. eth_module_config[num].spi_cs_gpio = CONFIG_EXAMPLE_ETH_SPI_CS ##num## _GPIO; \
  25. eth_module_config[num].int_gpio = CONFIG_EXAMPLE_ETH_SPI_INT ##num## _GPIO; \
  26. eth_module_config[num].phy_reset_gpio = CONFIG_EXAMPLE_ETH_SPI_PHY_RST ##num## _GPIO; \
  27. eth_module_config[num].phy_addr = CONFIG_EXAMPLE_ETH_SPI_PHY_ADDR ##num; \
  28. } while(0)
  29. typedef struct {
  30. uint8_t spi_cs_gpio;
  31. uint8_t int_gpio;
  32. int8_t phy_reset_gpio;
  33. uint8_t phy_addr;
  34. }spi_eth_module_config_t;
  35. #endif
  36. /** Event handler for Ethernet events */
  37. static void eth_event_handler(void *arg, esp_event_base_t event_base,
  38. int32_t event_id, void *event_data)
  39. {
  40. uint8_t mac_addr[6] = {0};
  41. /* we can get the ethernet driver handle from event data */
  42. esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data;
  43. switch (event_id) {
  44. case ETHERNET_EVENT_CONNECTED:
  45. esp_eth_ioctl(eth_handle, ETH_CMD_G_MAC_ADDR, mac_addr);
  46. ESP_LOGI(TAG, "Ethernet Link Up");
  47. ESP_LOGI(TAG, "Ethernet HW Addr %02x:%02x:%02x:%02x:%02x:%02x",
  48. mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4], mac_addr[5]);
  49. break;
  50. case ETHERNET_EVENT_DISCONNECTED:
  51. ESP_LOGI(TAG, "Ethernet Link Down");
  52. break;
  53. case ETHERNET_EVENT_START:
  54. ESP_LOGI(TAG, "Ethernet Started");
  55. break;
  56. case ETHERNET_EVENT_STOP:
  57. ESP_LOGI(TAG, "Ethernet Stopped");
  58. break;
  59. default:
  60. break;
  61. }
  62. }
  63. /** Event handler for IP_EVENT_ETH_GOT_IP */
  64. static void got_ip_event_handler(void *arg, esp_event_base_t event_base,
  65. int32_t event_id, void *event_data)
  66. {
  67. ip_event_got_ip_t *event = (ip_event_got_ip_t *) event_data;
  68. const esp_netif_ip_info_t *ip_info = &event->ip_info;
  69. ESP_LOGI(TAG, "Ethernet Got IP Address");
  70. ESP_LOGI(TAG, "~~~~~~~~~~~");
  71. ESP_LOGI(TAG, "ETHIP:" IPSTR, IP2STR(&ip_info->ip));
  72. ESP_LOGI(TAG, "ETHMASK:" IPSTR, IP2STR(&ip_info->netmask));
  73. ESP_LOGI(TAG, "ETHGW:" IPSTR, IP2STR(&ip_info->gw));
  74. ESP_LOGI(TAG, "~~~~~~~~~~~");
  75. }
  76. void app_main(void)
  77. {
  78. // Initialize TCP/IP network interface (should be called only once in application)
  79. ESP_ERROR_CHECK(esp_netif_init());
  80. // Create default event loop that running in background
  81. ESP_ERROR_CHECK(esp_event_loop_create_default());
  82. #if CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET
  83. // Create new default instance of esp-netif for Ethernet
  84. esp_netif_config_t cfg = ESP_NETIF_DEFAULT_ETH();
  85. esp_netif_t *eth_netif = esp_netif_new(&cfg);
  86. // Init MAC and PHY configs to default
  87. eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
  88. eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
  89. phy_config.phy_addr = CONFIG_EXAMPLE_ETH_PHY_ADDR;
  90. phy_config.reset_gpio_num = CONFIG_EXAMPLE_ETH_PHY_RST_GPIO;
  91. eth_esp32_emac_config_t esp32_emac_config = ETH_ESP32_EMAC_DEFAULT_CONFIG();
  92. esp32_emac_config.smi_mdc_gpio_num = CONFIG_EXAMPLE_ETH_MDC_GPIO;
  93. esp32_emac_config.smi_mdio_gpio_num = CONFIG_EXAMPLE_ETH_MDIO_GPIO;
  94. esp_eth_mac_t *mac = esp_eth_mac_new_esp32(&esp32_emac_config, &mac_config);
  95. #if CONFIG_EXAMPLE_ETH_PHY_IP101
  96. esp_eth_phy_t *phy = esp_eth_phy_new_ip101(&phy_config);
  97. #elif CONFIG_EXAMPLE_ETH_PHY_RTL8201
  98. esp_eth_phy_t *phy = esp_eth_phy_new_rtl8201(&phy_config);
  99. #elif CONFIG_EXAMPLE_ETH_PHY_LAN87XX
  100. esp_eth_phy_t *phy = esp_eth_phy_new_lan87xx(&phy_config);
  101. #elif CONFIG_EXAMPLE_ETH_PHY_DP83848
  102. esp_eth_phy_t *phy = esp_eth_phy_new_dp83848(&phy_config);
  103. #elif CONFIG_EXAMPLE_ETH_PHY_KSZ80XX
  104. esp_eth_phy_t *phy = esp_eth_phy_new_ksz80xx(&phy_config);
  105. #endif
  106. esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
  107. esp_eth_handle_t eth_handle = NULL;
  108. ESP_ERROR_CHECK(esp_eth_driver_install(&config, &eth_handle));
  109. /* attach Ethernet driver to TCP/IP stack */
  110. ESP_ERROR_CHECK(esp_netif_attach(eth_netif, esp_eth_new_netif_glue(eth_handle)));
  111. #endif //CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET
  112. #if CONFIG_EXAMPLE_USE_SPI_ETHERNET
  113. // Create instance(s) of esp-netif for SPI Ethernet(s)
  114. esp_netif_inherent_config_t esp_netif_config = ESP_NETIF_INHERENT_DEFAULT_ETH();
  115. esp_netif_config_t cfg_spi = {
  116. .base = &esp_netif_config,
  117. .stack = ESP_NETIF_NETSTACK_DEFAULT_ETH
  118. };
  119. esp_netif_t *eth_netif_spi[CONFIG_EXAMPLE_SPI_ETHERNETS_NUM] = { NULL };
  120. char if_key_str[10];
  121. char if_desc_str[10];
  122. char num_str[3];
  123. for (int i = 0; i < CONFIG_EXAMPLE_SPI_ETHERNETS_NUM; i++) {
  124. itoa(i, num_str, 10);
  125. strcat(strcpy(if_key_str, "ETH_SPI_"), num_str);
  126. strcat(strcpy(if_desc_str, "eth"), num_str);
  127. esp_netif_config.if_key = if_key_str;
  128. esp_netif_config.if_desc = if_desc_str;
  129. esp_netif_config.route_prio = 30 - i;
  130. eth_netif_spi[i] = esp_netif_new(&cfg_spi);
  131. }
  132. // Init MAC and PHY configs to default
  133. eth_mac_config_t mac_config_spi = ETH_MAC_DEFAULT_CONFIG();
  134. eth_phy_config_t phy_config_spi = ETH_PHY_DEFAULT_CONFIG();
  135. // Install GPIO ISR handler to be able to service SPI Eth modlues interrupts
  136. gpio_install_isr_service(0);
  137. // Init SPI bus
  138. spi_bus_config_t buscfg = {
  139. .miso_io_num = CONFIG_EXAMPLE_ETH_SPI_MISO_GPIO,
  140. .mosi_io_num = CONFIG_EXAMPLE_ETH_SPI_MOSI_GPIO,
  141. .sclk_io_num = CONFIG_EXAMPLE_ETH_SPI_SCLK_GPIO,
  142. .quadwp_io_num = -1,
  143. .quadhd_io_num = -1,
  144. };
  145. ESP_ERROR_CHECK(spi_bus_initialize(CONFIG_EXAMPLE_ETH_SPI_HOST, &buscfg, SPI_DMA_CH_AUTO));
  146. // Init specific SPI Ethernet module configuration from Kconfig (CS GPIO, Interrupt GPIO, etc.)
  147. spi_eth_module_config_t spi_eth_module_config[CONFIG_EXAMPLE_SPI_ETHERNETS_NUM];
  148. INIT_SPI_ETH_MODULE_CONFIG(spi_eth_module_config, 0);
  149. #if CONFIG_EXAMPLE_SPI_ETHERNETS_NUM > 1
  150. INIT_SPI_ETH_MODULE_CONFIG(spi_eth_module_config, 1);
  151. #endif
  152. // Configure SPI interface and Ethernet driver for specific SPI module
  153. esp_eth_mac_t *mac_spi[CONFIG_EXAMPLE_SPI_ETHERNETS_NUM];
  154. esp_eth_phy_t *phy_spi[CONFIG_EXAMPLE_SPI_ETHERNETS_NUM];
  155. esp_eth_handle_t eth_handle_spi[CONFIG_EXAMPLE_SPI_ETHERNETS_NUM] = { NULL };
  156. spi_device_interface_config_t spi_devcfg = {
  157. .mode = 0,
  158. .clock_speed_hz = CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ * 1000 * 1000,
  159. .queue_size = 20
  160. };
  161. for (int i = 0; i < CONFIG_EXAMPLE_SPI_ETHERNETS_NUM; i++) {
  162. // Set SPI module Chip Select GPIO
  163. spi_devcfg.spics_io_num = spi_eth_module_config[i].spi_cs_gpio;
  164. // Set remaining GPIO numbers and configuration used by the SPI module
  165. phy_config_spi.phy_addr = spi_eth_module_config[i].phy_addr;
  166. phy_config_spi.reset_gpio_num = spi_eth_module_config[i].phy_reset_gpio;
  167. #if CONFIG_EXAMPLE_USE_KSZ8851SNL
  168. eth_ksz8851snl_config_t ksz8851snl_config = ETH_KSZ8851SNL_DEFAULT_CONFIG(CONFIG_EXAMPLE_ETH_SPI_HOST, &spi_devcfg);
  169. ksz8851snl_config.int_gpio_num = spi_eth_module_config[i].int_gpio;
  170. mac_spi[i] = esp_eth_mac_new_ksz8851snl(&ksz8851snl_config, &mac_config_spi);
  171. phy_spi[i] = esp_eth_phy_new_ksz8851snl(&phy_config_spi);
  172. #elif CONFIG_EXAMPLE_USE_DM9051
  173. eth_dm9051_config_t dm9051_config = ETH_DM9051_DEFAULT_CONFIG(CONFIG_EXAMPLE_ETH_SPI_HOST, &spi_devcfg);
  174. dm9051_config.int_gpio_num = spi_eth_module_config[i].int_gpio;
  175. mac_spi[i] = esp_eth_mac_new_dm9051(&dm9051_config, &mac_config_spi);
  176. phy_spi[i] = esp_eth_phy_new_dm9051(&phy_config_spi);
  177. #elif CONFIG_EXAMPLE_USE_W5500
  178. eth_w5500_config_t w5500_config = ETH_W5500_DEFAULT_CONFIG(CONFIG_EXAMPLE_ETH_SPI_HOST, &spi_devcfg);
  179. w5500_config.int_gpio_num = spi_eth_module_config[i].int_gpio;
  180. mac_spi[i] = esp_eth_mac_new_w5500(&w5500_config, &mac_config_spi);
  181. phy_spi[i] = esp_eth_phy_new_w5500(&phy_config_spi);
  182. #endif
  183. esp_eth_config_t eth_config_spi = ETH_DEFAULT_CONFIG(mac_spi[i], phy_spi[i]);
  184. ESP_ERROR_CHECK(esp_eth_driver_install(&eth_config_spi, &eth_handle_spi[i]));
  185. /* The SPI Ethernet module might not have a burned factory MAC address, we cat to set it manually.
  186. 02:00:00 is a Locally Administered OUI range so should not be used except when testing on a LAN under your control.
  187. */
  188. ESP_ERROR_CHECK(esp_eth_ioctl(eth_handle_spi[i], ETH_CMD_S_MAC_ADDR, (uint8_t[]) {
  189. 0x02, 0x00, 0x00, 0x12, 0x34, 0x56 + i
  190. }));
  191. // attach Ethernet driver to TCP/IP stack
  192. ESP_ERROR_CHECK(esp_netif_attach(eth_netif_spi[i], esp_eth_new_netif_glue(eth_handle_spi[i])));
  193. }
  194. #endif // CONFIG_ETH_USE_SPI_ETHERNET
  195. // Register user defined event handers
  196. ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, &eth_event_handler, NULL));
  197. ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &got_ip_event_handler, NULL));
  198. /* start Ethernet driver state machine */
  199. #if CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET
  200. ESP_ERROR_CHECK(esp_eth_start(eth_handle));
  201. #endif // CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET
  202. #if CONFIG_EXAMPLE_USE_SPI_ETHERNET
  203. for (int i = 0; i < CONFIG_EXAMPLE_SPI_ETHERNETS_NUM; i++) {
  204. ESP_ERROR_CHECK(esp_eth_start(eth_handle_spi[i]));
  205. }
  206. #endif // CONFIG_EXAMPLE_USE_SPI_ETHERNET
  207. }