mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	* add support for KSZ8001, KSZ8021, KSZ8031, KSZ8051 and KSZ8061 * remove duplicate code * simplify architecture to make the code base extensible (for future work)
		
			
				
	
	
		
			357 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			357 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Console example — Ethernet commands
 | 
						|
 | 
						|
   This example code is in the Public Domain (or CC0 licensed, at your option.)
 | 
						|
 | 
						|
   Unless required by applicable law or agreed to in writing, this
 | 
						|
   software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 | 
						|
   CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
*/
 | 
						|
#include <stdio.h>
 | 
						|
#include <string.h>
 | 
						|
#include "freertos/FreeRTOS.h"
 | 
						|
#include "freertos/event_groups.h"
 | 
						|
#include "esp_netif.h"
 | 
						|
#include "esp_log.h"
 | 
						|
#include "esp_console.h"
 | 
						|
#include "esp_event.h"
 | 
						|
#include "esp_eth.h"
 | 
						|
#include "driver/gpio.h"
 | 
						|
#include "argtable3/argtable3.h"
 | 
						|
#include "iperf.h"
 | 
						|
#include "sdkconfig.h"
 | 
						|
#if CONFIG_ETH_USE_SPI_ETHERNET
 | 
						|
#include "driver/spi_master.h"
 | 
						|
#if CONFIG_EXAMPLE_USE_ENC28J60
 | 
						|
#include "esp_eth_enc28j60.h"
 | 
						|
#endif //CONFIG_EXAMPLE_USE_ENC28J60
 | 
						|
#endif // CONFIG_ETH_USE_SPI_ETHERNET
 | 
						|
 | 
						|
static esp_netif_ip_info_t ip;
 | 
						|
static bool started = false;
 | 
						|
static EventGroupHandle_t eth_event_group;
 | 
						|
static const int GOTIP_BIT = BIT0;
 | 
						|
static esp_eth_handle_t eth_handle = NULL;
 | 
						|
static esp_netif_t *eth_netif = NULL;
 | 
						|
 | 
						|
/* "ethernet" command */
 | 
						|
static struct {
 | 
						|
    struct arg_str *control;
 | 
						|
    struct arg_end *end;
 | 
						|
} eth_control_args;
 | 
						|
 | 
						|
static int eth_cmd_control(int argc, char **argv)
 | 
						|
{
 | 
						|
    int nerrors = arg_parse(argc, argv, (void **)ð_control_args);
 | 
						|
    if (nerrors != 0) {
 | 
						|
        arg_print_errors(stderr, eth_control_args.end, argv[0]);
 | 
						|
        return 1;
 | 
						|
    }
 | 
						|
 | 
						|
    if (!strncmp(eth_control_args.control->sval[0], "info", 4)) {
 | 
						|
        uint8_t mac_addr[6];
 | 
						|
        esp_eth_ioctl(eth_handle, ETH_CMD_G_MAC_ADDR, mac_addr);
 | 
						|
        printf("HW ADDR: " MACSTR "\r\n", MAC2STR(mac_addr));
 | 
						|
        esp_netif_get_ip_info(eth_netif, &ip);
 | 
						|
        printf("ETHIP: " IPSTR "\r\n", IP2STR(&ip.ip));
 | 
						|
        printf("ETHMASK: " IPSTR "\r\n", IP2STR(&ip.netmask));
 | 
						|
        printf("ETHGW: " IPSTR "\r\n", IP2STR(&ip.gw));
 | 
						|
    }
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
/* "iperf" command */
 | 
						|
 | 
						|
static struct {
 | 
						|
    struct arg_str *ip;
 | 
						|
    struct arg_lit *server;
 | 
						|
    struct arg_lit *udp;
 | 
						|
    struct arg_lit *version;
 | 
						|
    struct arg_int *port;
 | 
						|
    struct arg_int *length;
 | 
						|
    struct arg_int *interval;
 | 
						|
    struct arg_int *time;
 | 
						|
    struct arg_lit *abort;
 | 
						|
    struct arg_end *end;
 | 
						|
} iperf_args;
 | 
						|
 | 
						|
static int eth_cmd_iperf(int argc, char **argv)
 | 
						|
{
 | 
						|
    int nerrors = arg_parse(argc, argv, (void **)&iperf_args);
 | 
						|
    iperf_cfg_t cfg;
 | 
						|
 | 
						|
    if (nerrors != 0) {
 | 
						|
        arg_print_errors(stderr, iperf_args.end, argv[0]);
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    memset(&cfg, 0, sizeof(cfg));
 | 
						|
 | 
						|
    // ethernet iperf only support IPV4 address
 | 
						|
    cfg.type = IPERF_IP_TYPE_IPV4;
 | 
						|
 | 
						|
    /* iperf -a */
 | 
						|
    if (iperf_args.abort->count != 0) {
 | 
						|
        iperf_stop();
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    if (((iperf_args.ip->count == 0) && (iperf_args.server->count == 0)) ||
 | 
						|
            ((iperf_args.ip->count != 0) && (iperf_args.server->count != 0))) {
 | 
						|
        ESP_LOGE(__func__, "Wrong mode! ESP32 should run in client or server mode");
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /* iperf -s */
 | 
						|
    if (iperf_args.ip->count == 0) {
 | 
						|
        cfg.flag |= IPERF_FLAG_SERVER;
 | 
						|
    }
 | 
						|
    /* iperf -c SERVER_ADDRESS */
 | 
						|
    else {
 | 
						|
        cfg.destination_ip4 = esp_ip4addr_aton(iperf_args.ip->sval[0]);
 | 
						|
        cfg.flag |= IPERF_FLAG_CLIENT;
 | 
						|
    }
 | 
						|
 | 
						|
    if (iperf_args.length->count == 0) {
 | 
						|
        cfg.len_send_buf = 0;
 | 
						|
    } else {
 | 
						|
        cfg.len_send_buf = iperf_args.length->ival[0];
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
    /* acquiring for ip, could blocked here */
 | 
						|
    xEventGroupWaitBits(eth_event_group, GOTIP_BIT, pdFALSE, pdTRUE, portMAX_DELAY);
 | 
						|
 | 
						|
    cfg.source_ip4 = ip.ip.addr;
 | 
						|
    if (cfg.source_ip4 == 0) {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /* iperf -u */
 | 
						|
    if (iperf_args.udp->count == 0) {
 | 
						|
        cfg.flag |= IPERF_FLAG_TCP;
 | 
						|
    } else {
 | 
						|
        cfg.flag |= IPERF_FLAG_UDP;
 | 
						|
    }
 | 
						|
 | 
						|
    /* iperf -p */
 | 
						|
    if (iperf_args.port->count == 0) {
 | 
						|
        cfg.sport = IPERF_DEFAULT_PORT;
 | 
						|
        cfg.dport = IPERF_DEFAULT_PORT;
 | 
						|
    } else {
 | 
						|
        if (cfg.flag & IPERF_FLAG_SERVER) {
 | 
						|
            cfg.sport = iperf_args.port->ival[0];
 | 
						|
            cfg.dport = IPERF_DEFAULT_PORT;
 | 
						|
        } else {
 | 
						|
            cfg.sport = IPERF_DEFAULT_PORT;
 | 
						|
            cfg.dport = iperf_args.port->ival[0];
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /* iperf -i */
 | 
						|
    if (iperf_args.interval->count == 0) {
 | 
						|
        cfg.interval = IPERF_DEFAULT_INTERVAL;
 | 
						|
    } else {
 | 
						|
        cfg.interval = iperf_args.interval->ival[0];
 | 
						|
        if (cfg.interval <= 0) {
 | 
						|
            cfg.interval = IPERF_DEFAULT_INTERVAL;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /* iperf -t */
 | 
						|
    if (iperf_args.time->count == 0) {
 | 
						|
        cfg.time = IPERF_DEFAULT_TIME;
 | 
						|
    } else {
 | 
						|
        cfg.time = iperf_args.time->ival[0];
 | 
						|
        if (cfg.time <= cfg.interval) {
 | 
						|
            cfg.time = cfg.interval;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    printf("mode=%s-%s sip=%d.%d.%d.%d:%d, dip=%d.%d.%d.%d:%d, interval=%d, time=%d\r\n",
 | 
						|
           cfg.flag & IPERF_FLAG_TCP ? "tcp" : "udp",
 | 
						|
           cfg.flag & IPERF_FLAG_SERVER ? "server" : "client",
 | 
						|
           cfg.source_ip4 & 0xFF, (cfg.source_ip4 >> 8) & 0xFF, (cfg.source_ip4 >> 16) & 0xFF,
 | 
						|
           (cfg.source_ip4 >> 24) & 0xFF, cfg.sport,
 | 
						|
           cfg.destination_ip4 & 0xFF, (cfg.destination_ip4 >> 8) & 0xFF,
 | 
						|
           (cfg.destination_ip4 >> 16) & 0xFF, (cfg.destination_ip4 >> 24) & 0xFF, cfg.dport,
 | 
						|
           cfg.interval, cfg.time);
 | 
						|
 | 
						|
    iperf_start(&cfg);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static void event_handler(void *arg, esp_event_base_t event_base,
 | 
						|
                          int32_t event_id, void *event_data)
 | 
						|
{
 | 
						|
    if (event_base == ETH_EVENT && event_id == ETHERNET_EVENT_START) {
 | 
						|
        started = true;
 | 
						|
    } else if (event_base == ETH_EVENT && event_id == ETHERNET_EVENT_STOP) {
 | 
						|
        xEventGroupClearBits(eth_event_group, GOTIP_BIT);
 | 
						|
        started = false;
 | 
						|
    } else if (event_base == IP_EVENT && event_id == IP_EVENT_ETH_GOT_IP) {
 | 
						|
        ip_event_got_ip_t *event = (ip_event_got_ip_t *) event_data;
 | 
						|
        memcpy(&ip, &event->ip_info, sizeof(ip));
 | 
						|
        xEventGroupSetBits(eth_event_group, GOTIP_BIT);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void register_ethernet(void)
 | 
						|
{
 | 
						|
    eth_event_group = xEventGroupCreate();
 | 
						|
    ESP_ERROR_CHECK(esp_netif_init());
 | 
						|
    ESP_ERROR_CHECK(esp_event_loop_create_default());
 | 
						|
    esp_netif_config_t cfg = ESP_NETIF_DEFAULT_ETH();
 | 
						|
    eth_netif = esp_netif_new(&cfg);
 | 
						|
 | 
						|
    eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
 | 
						|
    eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
 | 
						|
    phy_config.phy_addr = CONFIG_EXAMPLE_ETH_PHY_ADDR;
 | 
						|
    phy_config.reset_gpio_num = CONFIG_EXAMPLE_ETH_PHY_RST_GPIO;
 | 
						|
#if CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET
 | 
						|
    mac_config.smi_mdc_gpio_num = CONFIG_EXAMPLE_ETH_MDC_GPIO;
 | 
						|
    mac_config.smi_mdio_gpio_num = CONFIG_EXAMPLE_ETH_MDIO_GPIO;
 | 
						|
    esp_eth_mac_t *mac = esp_eth_mac_new_esp32(&mac_config);
 | 
						|
#if CONFIG_EXAMPLE_ETH_PHY_IP101
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_ip101(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_ETH_PHY_RTL8201
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_rtl8201(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_ETH_PHY_LAN87XX
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_lan87xx(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_ETH_PHY_DP83848
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_dp83848(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_ETH_PHY_KSZ80XX
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_ksz80xx(&phy_config);
 | 
						|
#endif
 | 
						|
#elif CONFIG_ETH_USE_SPI_ETHERNET
 | 
						|
    gpio_install_isr_service(0);
 | 
						|
    spi_device_handle_t spi_handle = NULL;
 | 
						|
    spi_bus_config_t buscfg = {
 | 
						|
        .miso_io_num = CONFIG_EXAMPLE_ETH_SPI_MISO_GPIO,
 | 
						|
        .mosi_io_num = CONFIG_EXAMPLE_ETH_SPI_MOSI_GPIO,
 | 
						|
        .sclk_io_num = CONFIG_EXAMPLE_ETH_SPI_SCLK_GPIO,
 | 
						|
        .quadwp_io_num = -1,
 | 
						|
        .quadhd_io_num = -1,
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(spi_bus_initialize(CONFIG_EXAMPLE_ETH_SPI_HOST, &buscfg, SPI_DMA_CH_AUTO));
 | 
						|
 | 
						|
#if CONFIG_EXAMPLE_USE_KSZ8851SNL
 | 
						|
    spi_device_interface_config_t devcfg = {
 | 
						|
        .mode = 0,
 | 
						|
        .clock_speed_hz = CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ * 1000 * 1000,
 | 
						|
        .spics_io_num = CONFIG_EXAMPLE_ETH_SPI_CS_GPIO,
 | 
						|
        .queue_size = 20
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(spi_bus_add_device(CONFIG_EXAMPLE_ETH_SPI_HOST, &devcfg, &spi_handle));
 | 
						|
    /* KSZ8851SNL ethernet driver is based on spi driver */
 | 
						|
    eth_ksz8851snl_config_t ksz8851snl_config = ETH_KSZ8851SNL_DEFAULT_CONFIG(spi_handle);
 | 
						|
    ksz8851snl_config.int_gpio_num = CONFIG_EXAMPLE_ETH_SPI_INT_GPIO;
 | 
						|
    esp_eth_mac_t *mac = esp_eth_mac_new_ksz8851snl(&ksz8851snl_config, &mac_config);
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_ksz8851snl(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_USE_DM9051
 | 
						|
    spi_device_interface_config_t devcfg = {
 | 
						|
        .command_bits = 1,
 | 
						|
        .address_bits = 7,
 | 
						|
        .mode = 0,
 | 
						|
        .clock_speed_hz = CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ * 1000 * 1000,
 | 
						|
        .spics_io_num = CONFIG_EXAMPLE_ETH_SPI_CS_GPIO,
 | 
						|
        .queue_size = 20
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(spi_bus_add_device(CONFIG_EXAMPLE_ETH_SPI_HOST, &devcfg, &spi_handle));
 | 
						|
    /* dm9051 ethernet driver is based on spi driver */
 | 
						|
    eth_dm9051_config_t dm9051_config = ETH_DM9051_DEFAULT_CONFIG(spi_handle);
 | 
						|
    dm9051_config.int_gpio_num = CONFIG_EXAMPLE_ETH_SPI_INT_GPIO;
 | 
						|
    esp_eth_mac_t *mac = esp_eth_mac_new_dm9051(&dm9051_config, &mac_config);
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_dm9051(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_USE_W5500
 | 
						|
    spi_device_interface_config_t devcfg = {
 | 
						|
        .command_bits = 16, // Actually it's the address phase in W5500 SPI frame
 | 
						|
        .address_bits = 8,  // Actually it's the control phase in W5500 SPI frame
 | 
						|
        .mode = 0,
 | 
						|
        .clock_speed_hz = CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ * 1000 * 1000,
 | 
						|
        .spics_io_num = CONFIG_EXAMPLE_ETH_SPI_CS_GPIO,
 | 
						|
        .queue_size = 20
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(spi_bus_add_device(CONFIG_EXAMPLE_ETH_SPI_HOST, &devcfg, &spi_handle));
 | 
						|
    /* w5500 ethernet driver is based on spi driver */
 | 
						|
    eth_w5500_config_t w5500_config = ETH_W5500_DEFAULT_CONFIG(spi_handle);
 | 
						|
    w5500_config.int_gpio_num = CONFIG_EXAMPLE_ETH_SPI_INT_GPIO;
 | 
						|
    esp_eth_mac_t *mac = esp_eth_mac_new_w5500(&w5500_config, &mac_config);
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_w5500(&phy_config);
 | 
						|
#elif CONFIG_EXAMPLE_USE_ENC28J60
 | 
						|
    /* ENC28J60 ethernet driver is based on spi driver */
 | 
						|
    spi_device_interface_config_t devcfg = {
 | 
						|
        .command_bits = 3,
 | 
						|
        .address_bits = 5,
 | 
						|
        .mode = 0,
 | 
						|
        .clock_speed_hz = CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ * 1000 * 1000,
 | 
						|
        .spics_io_num = CONFIG_EXAMPLE_ETH_SPI_CS_GPIO,
 | 
						|
        .queue_size = 20,
 | 
						|
        .cs_ena_posttrans = enc28j60_cal_spi_cs_hold_time(CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ)
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(spi_bus_add_device(CONFIG_EXAMPLE_ETH_SPI_HOST, &devcfg, &spi_handle));
 | 
						|
 | 
						|
    eth_enc28j60_config_t enc28j60_config = ETH_ENC28J60_DEFAULT_CONFIG(spi_handle);
 | 
						|
    enc28j60_config.int_gpio_num = CONFIG_EXAMPLE_ETH_SPI_INT_GPIO;
 | 
						|
 | 
						|
    mac_config.smi_mdc_gpio_num = -1;  // ENC28J60 doesn't have SMI interface
 | 
						|
    mac_config.smi_mdio_gpio_num = -1;
 | 
						|
    esp_eth_mac_t *mac = esp_eth_mac_new_enc28j60(&enc28j60_config, &mac_config);
 | 
						|
 | 
						|
    phy_config.autonego_timeout_ms = 0; // ENC28J60 doesn't support auto-negotiation
 | 
						|
    phy_config.reset_gpio_num = -1; // ENC28J60 doesn't have a pin to reset internal PHY
 | 
						|
    esp_eth_phy_t *phy = esp_eth_phy_new_enc28j60(&phy_config);
 | 
						|
#endif
 | 
						|
#endif // CONFIG_ETH_USE_SPI_ETHERNET
 | 
						|
    esp_eth_config_t config = ETH_DEFAULT_CONFIG(mac, phy);
 | 
						|
    ESP_ERROR_CHECK(esp_eth_driver_install(&config, ð_handle));
 | 
						|
#if !CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET
 | 
						|
    /* The SPI Ethernet module might doesn't have a burned factory MAC address, we cat to set it manually.
 | 
						|
       02:00:00 is a Locally Administered OUI range so should not be used except when testing on a LAN under your control.
 | 
						|
    */
 | 
						|
    ESP_ERROR_CHECK(esp_eth_ioctl(eth_handle, ETH_CMD_S_MAC_ADDR, (uint8_t[]) {
 | 
						|
        0x02, 0x00, 0x00, 0x12, 0x34, 0x56
 | 
						|
    }));
 | 
						|
#endif
 | 
						|
    ESP_ERROR_CHECK(esp_netif_attach(eth_netif, esp_eth_new_netif_glue(eth_handle)));
 | 
						|
    ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, &event_handler, NULL));
 | 
						|
    ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &event_handler, NULL));
 | 
						|
    ESP_ERROR_CHECK(esp_eth_start(eth_handle));
 | 
						|
 | 
						|
#if CONFIG_EXAMPLE_USE_ENC28J60 && CONFIG_EXAMPLE_ENC28J60_DUPLEX_FULL
 | 
						|
    enc28j60_set_phy_duplex(phy, ETH_DUPLEX_FULL);
 | 
						|
#endif
 | 
						|
 | 
						|
    eth_control_args.control = arg_str1(NULL, NULL, "<info>", "Get info of Ethernet");
 | 
						|
    eth_control_args.end = arg_end(1);
 | 
						|
    const esp_console_cmd_t cmd = {
 | 
						|
        .command = "ethernet",
 | 
						|
        .help = "Ethernet interface IO control",
 | 
						|
        .hint = NULL,
 | 
						|
        .func = eth_cmd_control,
 | 
						|
        .argtable = ð_control_args
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
 | 
						|
 | 
						|
    iperf_args.ip = arg_str0("c", "client", "<ip>",
 | 
						|
                             "run in client mode, connecting to <host>");
 | 
						|
    iperf_args.server = arg_lit0("s", "server", "run in server mode");
 | 
						|
    iperf_args.udp = arg_lit0("u", "udp", "use UDP rather than TCP");
 | 
						|
    iperf_args.version = arg_lit0("V", "ipv6_domain", "use IPV6 address rather than IPV4");
 | 
						|
    iperf_args.port = arg_int0("p", "port", "<port>",
 | 
						|
                               "server port to listen on/connect to");
 | 
						|
    iperf_args.length = arg_int0("l", "len", "<length>", "set read/write buffer size");
 | 
						|
    iperf_args.interval = arg_int0("i", "interval", "<interval>",
 | 
						|
                                   "seconds between periodic bandwidth reports");
 | 
						|
    iperf_args.time = arg_int0("t", "time", "<time>", "time in seconds to transmit for (default 10 secs)");
 | 
						|
    iperf_args.abort = arg_lit0("a", "abort", "abort running iperf");
 | 
						|
    iperf_args.end = arg_end(1);
 | 
						|
    const esp_console_cmd_t iperf_cmd = {
 | 
						|
        .command = "iperf",
 | 
						|
        .help = "iperf command",
 | 
						|
        .hint = NULL,
 | 
						|
        .func = ð_cmd_iperf,
 | 
						|
        .argtable = &iperf_args
 | 
						|
    };
 | 
						|
    ESP_ERROR_CHECK(esp_console_cmd_register(&iperf_cmd));
 | 
						|
}
 |