| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #include <stdio.h>
- #include <string.h>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "tcpip_adapter.h"
- #include "esp_event.h"
- #include "unity.h"
- #include "test_utils.h"
- #include "esp_eth.h"
- #include "esp_log.h"
- #include "sdkconfig.h"
- static const char *TAG = "esp_eth_test";
- /** Event handler for Ethernet events */
- static void eth_event_handler(void *arg, esp_event_base_t event_base,
- int32_t event_id, void *event_data)
- {
- switch (event_id) {
- case ETHERNET_EVENT_CONNECTED:
- ESP_LOGI(TAG, "Ethernet Link Up");
- break;
- case ETHERNET_EVENT_DISCONNECTED:
- ESP_LOGI(TAG, "Ethernet Link Down");
- break;
- case ETHERNET_EVENT_START:
- ESP_LOGI(TAG, "Ethernet Started");
- break;
- case ETHERNET_EVENT_STOP:
- ESP_LOGI(TAG, "Ethernet Stopped");
- break;
- default:
- break;
- }
- }
- /** Event handler for IP_EVENT_ETH_GOT_IP */
- static void got_ip_event_handler(void *arg, esp_event_base_t event_base,
- int32_t event_id, void *event_data)
- {
- ip_event_got_ip_t *event = (ip_event_got_ip_t *)event_data;
- const tcpip_adapter_ip_info_t *ip_info = &event->ip_info;
- ESP_LOGI(TAG, "Ethernet Got IP Address");
- ESP_LOGI(TAG, "~~~~~~~~~~~");
- ESP_LOGI(TAG, "ETHIP:" IPSTR, IP2STR(&ip_info->ip));
- ESP_LOGI(TAG, "ETHMASK:" IPSTR, IP2STR(&ip_info->netmask));
- ESP_LOGI(TAG, "ETHGW:" IPSTR, IP2STR(&ip_info->gw));
- ESP_LOGI(TAG, "~~~~~~~~~~~");
- }
- TEST_CASE("esp32 emac io test", "[ethernet][ignore]")
- {
- TEST_ESP_OK(esp_event_loop_create_default());
- eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
- esp_eth_mac_t *mac = esp_eth_mac_new_esp32(&mac_config);
- eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
- esp_eth_phy_t *phy = esp_eth_phy_new_ip101(&phy_config);
- esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
- esp_eth_handle_t eth_handle = NULL;
- TEST_ESP_OK(esp_eth_driver_install(&config, ð_handle));
- vTaskDelay(pdMS_TO_TICKS(1000));
- /* get MAC address */
- uint8_t mac_addr[6];
- memset(mac_addr, 0, sizeof(mac_addr));
- TEST_ESP_OK(esp_eth_ioctl(eth_handle, ETH_CMD_G_MAC_ADDR, mac_addr));
- TEST_ASSERT(mac_addr[0] != 0);
- /* get PHY address */
- int phy_addr = -1;
- TEST_ESP_OK(esp_eth_ioctl(eth_handle, ETH_CMD_G_PHY_ADDR, &phy_addr));
- TEST_ASSERT(phy_addr >= 0 && phy_addr <= 31);
- TEST_ESP_OK(esp_eth_driver_uninstall(eth_handle));
- TEST_ESP_OK(phy->del(phy));
- TEST_ESP_OK(mac->del(mac));
- TEST_ESP_OK(esp_event_loop_delete_default());
- }
- TEST_CASE("ethernet tcpip_adapter", "[ethernet][ignore]")
- {
- test_case_uses_tcpip();
- TEST_ESP_OK(esp_event_loop_create_default());
- TEST_ESP_OK(tcpip_adapter_set_default_eth_handlers());
- TEST_ESP_OK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
- TEST_ESP_OK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &got_ip_event_handler, NULL));
- eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
- esp_eth_mac_t *mac = esp_eth_mac_new_esp32(&mac_config);
- eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
- esp_eth_phy_t *phy = esp_eth_phy_new_ip101(&phy_config);
- esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
- esp_eth_handle_t eth_handle = NULL;
- TEST_ESP_OK(esp_eth_driver_install(&config, ð_handle));
- vTaskDelay(portMAX_DELAY);
- }
- #if CONFIG_ETH_USE_SPI_ETHERNET
- TEST_CASE("dm9051 io test", "[ethernet][ignore]")
- {
- spi_device_handle_t spi_handle = NULL;
- spi_bus_config_t buscfg = {
- .miso_io_num = 25,
- .mosi_io_num = 23,
- .sclk_io_num = 19,
- .quadwp_io_num = -1,
- .quadhd_io_num = -1,
- };
- TEST_ESP_OK(spi_bus_initialize(HSPI_HOST, &buscfg, 1));
- spi_device_interface_config_t devcfg = {
- .command_bits = 1,
- .address_bits = 7,
- .mode = 0,
- .clock_speed_hz = 20 * 1000 * 1000,
- .spics_io_num = 22,
- .queue_size = 20
- };
- TEST_ESP_OK(spi_bus_add_device(HSPI_HOST, &devcfg, &spi_handle));
- gpio_install_isr_service(0);
- tcpip_adapter_init();
- TEST_ESP_OK(esp_event_loop_create_default());
- TEST_ESP_OK(tcpip_adapter_set_default_eth_handlers());
- TEST_ESP_OK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
- TEST_ESP_OK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &got_ip_event_handler, NULL));
- eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
- mac_config.spi_hdl = spi_handle;
- esp_eth_mac_t *mac = esp_eth_mac_new_dm9051(&mac_config);
- eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
- esp_eth_phy_t *phy = esp_eth_phy_new_dm9051(&phy_config);
- esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
- esp_eth_handle_t eth_handle = NULL;
- TEST_ESP_OK(esp_eth_driver_install(&config, ð_handle));
- vTaskDelay(pdMS_TO_TICKS(portMAX_DELAY));
- TEST_ESP_OK(esp_eth_driver_uninstall(eth_handle));
- TEST_ESP_OK(phy->del(phy));
- TEST_ESP_OK(mac->del(mac));
- TEST_ESP_OK(esp_event_loop_delete_default());
- TEST_ESP_OK(spi_bus_remove_device(spi_handle));
- TEST_ESP_OK(spi_bus_free(HSPI_HOST));
- }
- #endif
|