2019-04-10 08:24:50 +00:00
|
|
|
// Copyright 2019 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "esp_eth_com.h"
|
|
|
|
#include "esp_eth_mac.h"
|
|
|
|
#include "esp_eth_phy.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handle of Ethernet driver
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef void *esp_eth_handle_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Configuration of Ethernet driver
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/**
|
|
|
|
* @brief Ethernet MAC object
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
esp_eth_mac_t *mac;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Ethernet PHY object
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
esp_eth_phy_t *phy;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Period time of checking Ethernet link status
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
uint32_t check_link_period_ms;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Input frame buffer to user's stack
|
|
|
|
*
|
|
|
|
* @param[in] eth_handle: handle of Ethernet driver
|
|
|
|
* @param[in] buffer: frame buffer that will get input to upper stack
|
|
|
|
* @param[in] length: length of the frame buffer
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: input frame buffer to upper stack successfully
|
|
|
|
* - ESP_FAIL: error occurred when inputting buffer to upper stack
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
esp_err_t (*stack_input)(esp_eth_handle_t eth_handle, uint8_t *buffer, uint32_t length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Callback function invoked when lowlevel initialization is finished
|
|
|
|
*
|
|
|
|
* @param[in] eth_handle: handle of Ethernet driver
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: process extra lowlevel initialization successfully
|
|
|
|
* - ESP_FAIL: error occurred when processing extra lowlevel initialization
|
|
|
|
*/
|
|
|
|
esp_err_t (*on_lowlevel_init_done)(esp_eth_handle_t eth_handle);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Callback function invoked when lowlevel deinitialization is finished
|
|
|
|
*
|
|
|
|
* @param[in] eth_handle: handle of Ethernet driver
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: process extra lowlevel deinitialization successfully
|
|
|
|
* - ESP_FAIL: error occurred when processing extra lowlevel deinitialization
|
|
|
|
*/
|
|
|
|
esp_err_t (*on_lowlevel_deinit_done)(esp_eth_handle_t eth_handle);
|
2019-06-28 14:47:34 +00:00
|
|
|
|
2019-04-10 08:24:50 +00:00
|
|
|
} esp_eth_config_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Default configuration for Ethernet driver
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define ETH_DEFAULT_CONFIG(emac, ephy) \
|
|
|
|
{ \
|
|
|
|
.mac = emac, \
|
|
|
|
.phy = ephy, \
|
|
|
|
.check_link_period_ms = 2000, \
|
|
|
|
.stack_input = NULL, \
|
|
|
|
.on_lowlevel_init_done = NULL, \
|
|
|
|
.on_lowlevel_deinit_done = NULL, \
|
|
|
|
}
|
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
/**
|
|
|
|
* @brief Default esp-netif driver related configuration
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define ESP_NETIF_DRIVER_DEFAULT_ETH _g_eth_driver_ifconfig
|
|
|
|
|
|
|
|
struct esp_netif_driver_ifconfig;
|
|
|
|
extern const struct esp_netif_driver_ifconfig *_g_eth_driver_ifconfig;
|
|
|
|
|
2019-04-10 08:24:50 +00:00
|
|
|
/**
|
|
|
|
* @brief Install Ethernet driver
|
|
|
|
*
|
|
|
|
* @param[in] config: configuration of the Ethernet driver
|
|
|
|
* @param[out] out_hdl: handle of Ethernet driver
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: install esp_eth driver successfully
|
|
|
|
* - ESP_ERR_INVALID_ARG: install esp_eth driver failed because of some invalid argument
|
|
|
|
* - ESP_ERR_NO_MEM: install esp_eth driver failed because there's no memory for driver
|
|
|
|
* - ESP_FAIL: install esp_eth driver failed because some other error occurred
|
|
|
|
*/
|
|
|
|
esp_err_t esp_eth_driver_install(const esp_eth_config_t *config, esp_eth_handle_t *out_hdl);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Uninstall Ethernet driver
|
|
|
|
*
|
|
|
|
* @param[in] hdl: handle of Ethernet driver
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: uninstall esp_eth driver successfully
|
|
|
|
* - ESP_ERR_INVALID_ARG: uninstall esp_eth driver failed because of some invalid argument
|
|
|
|
* - ESP_FAIL: uninstall esp_eth driver failed because some other error occurred
|
|
|
|
*/
|
|
|
|
esp_err_t esp_eth_driver_uninstall(esp_eth_handle_t hdl);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief General Transmit
|
|
|
|
*
|
|
|
|
* @param[in] hdl: handle of Ethernet driver
|
|
|
|
* @param[in] buf: buffer of the packet to transfer
|
|
|
|
* @param[in] length: length of the buffer to transfer
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: transmit frame buffer successfully
|
|
|
|
* - ESP_ERR_INVALID_ARG: transmit frame buffer failed because of some invalid argument
|
|
|
|
* - ESP_FAIL: transmit frame buffer failed because some other error occurred
|
|
|
|
*/
|
2019-06-28 14:47:34 +00:00
|
|
|
esp_err_t esp_eth_transmit(void* hdl, void *buf, uint32_t length);
|
2019-04-10 08:24:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief General Receive
|
|
|
|
*
|
|
|
|
* @param[in] hdl: handle of Ethernet driver
|
|
|
|
* @param[out] buf: buffer to preserve the received packet
|
|
|
|
* @param[out] length: length of the received packet
|
|
|
|
*
|
2019-09-19 03:27:42 +00:00
|
|
|
* @note Before this function got invoked, the value of "length" should set by user, equals the size of buffer.
|
|
|
|
* After the function returned, the value of "length" means the real length of received data.
|
|
|
|
*
|
2019-04-10 08:24:50 +00:00
|
|
|
* @return
|
|
|
|
* - ESP_OK: receive frame buffer successfully
|
|
|
|
* - ESP_ERR_INVALID_ARG: receive frame buffer failed because of some invalid argument
|
2019-09-19 03:27:42 +00:00
|
|
|
* - ESP_ERR_INVALID_SIZE: input buffer size is not enough to hold the incoming data.
|
|
|
|
* in this case, value of returned "length" indicates the real size of incoming data.
|
2019-04-10 08:24:50 +00:00
|
|
|
* - ESP_FAIL: receive frame buffer failed because some other error occurred
|
|
|
|
*/
|
|
|
|
esp_err_t esp_eth_receive(esp_eth_handle_t hdl, uint8_t *buf, uint32_t *length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Misc IO function of Etherent driver
|
|
|
|
*
|
|
|
|
* @param[in] hdl: handle of Ethernet driver
|
|
|
|
* @param[in] cmd: IO control command
|
|
|
|
* @param[in] data: specificed data for command
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: process io command successfully
|
|
|
|
* - ESP_ERR_INVALID_ARG: process io command failed because of some invalid argument
|
|
|
|
* - ESP_FAIL: process io command failed because some other error occurred
|
|
|
|
*/
|
|
|
|
esp_err_t esp_eth_ioctl(esp_eth_handle_t hdl, esp_eth_io_cmd_t cmd, void *data);
|
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
/**
|
|
|
|
* @brief Register default ethernet handlers
|
|
|
|
*
|
|
|
|
* @param[in] esp_netif esp network interface handle created for this driver
|
|
|
|
* (note: appropriate ethernet handle not yet properly initialized when setting up
|
|
|
|
* default handlers)
|
|
|
|
*/
|
|
|
|
esp_err_t esp_eth_set_default_handlers(void* esp_netif);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Unregister default ethernet handlers
|
|
|
|
*
|
|
|
|
* @param[in] esp_netif esp network interface handle created for this driver
|
|
|
|
*/
|
|
|
|
esp_err_t esp_eth_clear_default_handlers(void* esp_netif);
|
|
|
|
|
2019-04-10 08:24:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|