2016-11-08 09:45:17 +00:00
|
|
|
// Copyright 2015-2016 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.
|
|
|
|
|
|
|
|
#ifndef _EMAC_COMMON_H_
|
|
|
|
#define _EMAC_COMMON_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-01-28 12:29:58 +00:00
|
|
|
#include "esp_eth.h"
|
|
|
|
#include "emac_dev.h"
|
|
|
|
|
2016-11-08 09:45:17 +00:00
|
|
|
typedef uint32_t emac_sig_t;
|
|
|
|
typedef uint32_t emac_par_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
emac_sig_t sig;
|
|
|
|
emac_par_t par;
|
|
|
|
} emac_event_t;
|
|
|
|
|
|
|
|
enum emac_runtime_status {
|
|
|
|
EMAC_RUNTIME_NOT_INIT = 0,
|
|
|
|
EMAC_RUNTIME_INIT,
|
|
|
|
EMAC_RUNTIME_START,
|
|
|
|
EMAC_RUNTIME_STOP,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2016-12-18 13:18:37 +00:00
|
|
|
SIG_EMAC_RX_UNAVAIL,
|
2016-11-08 09:45:17 +00:00
|
|
|
SIG_EMAC_TX_DONE,
|
|
|
|
SIG_EMAC_RX_DONE,
|
|
|
|
SIG_EMAC_START,
|
|
|
|
SIG_EMAC_STOP,
|
2016-12-18 13:18:37 +00:00
|
|
|
SIG_EMAC_CHECK_LINK,
|
2016-11-08 09:45:17 +00:00
|
|
|
SIG_EMAC_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
struct emac_config_data {
|
2016-12-18 13:18:37 +00:00
|
|
|
eth_phy_base_t phy_addr;
|
|
|
|
eth_mode_t mac_mode;
|
2017-10-16 21:05:27 +00:00
|
|
|
eth_clock_mode_t clock_mode;
|
2016-11-08 09:45:17 +00:00
|
|
|
struct dma_extended_desc *dma_etx;
|
2016-12-18 13:18:37 +00:00
|
|
|
uint32_t cur_tx;
|
|
|
|
uint32_t dirty_tx;
|
|
|
|
int32_t cnt_tx;
|
2016-11-08 09:45:17 +00:00
|
|
|
struct dma_extended_desc *dma_erx;
|
2016-12-18 13:18:37 +00:00
|
|
|
uint32_t cur_rx;
|
|
|
|
uint32_t dirty_rx;
|
|
|
|
int32_t cnt_rx;
|
|
|
|
uint32_t rx_need_poll;
|
2016-11-08 09:45:17 +00:00
|
|
|
bool phy_link_up;
|
|
|
|
enum emac_runtime_status emac_status;
|
|
|
|
uint8_t macaddr[6];
|
2016-12-18 13:18:37 +00:00
|
|
|
eth_phy_func phy_init;
|
|
|
|
eth_tcpip_input_func emac_tcpip_input;
|
|
|
|
eth_gpio_config_func emac_gpio_config;
|
|
|
|
eth_phy_check_link_func emac_phy_check_link;
|
|
|
|
eth_phy_check_init_func emac_phy_check_init;
|
|
|
|
eth_phy_get_speed_mode_func emac_phy_get_speed_mode;
|
|
|
|
eth_phy_get_duplex_mode_func emac_phy_get_duplex_mode;
|
2017-01-06 05:49:42 +00:00
|
|
|
bool emac_flow_ctrl_enable;
|
|
|
|
bool emac_flow_ctrl_partner_support;
|
2019-01-28 12:29:58 +00:00
|
|
|
eth_phy_get_partner_pause_enable_func emac_phy_get_partner_pause_enable;
|
|
|
|
eth_phy_power_enable_func emac_phy_power_enable;
|
2018-09-19 02:45:53 +00:00
|
|
|
uint32_t reset_timeout_ms;
|
2019-05-07 10:30:10 +00:00
|
|
|
bool promiscuous_enable;
|
2016-11-08 09:45:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum emac_post_type {
|
|
|
|
EMAC_POST_ASYNC,
|
|
|
|
EMAC_POST_SYNC,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct emac_post_cmd {
|
|
|
|
void *cmd;
|
|
|
|
enum emac_post_type post_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct emac_tx_cmd {
|
|
|
|
uint8_t *buf;
|
|
|
|
uint16_t size;
|
|
|
|
int8_t err;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct emac_open_cmd {
|
|
|
|
int8_t err;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct emac_close_cmd {
|
|
|
|
int8_t err;
|
|
|
|
};
|
2017-08-16 06:33:37 +00:00
|
|
|
|
2016-11-08 09:45:17 +00:00
|
|
|
#define DMA_RX_BUF_NUM CONFIG_DMA_RX_BUF_NUM
|
|
|
|
#define DMA_TX_BUF_NUM CONFIG_DMA_TX_BUF_NUM
|
2016-12-18 13:18:37 +00:00
|
|
|
#define EMAC_TASK_PRIORITY CONFIG_EMAC_TASK_PRIORITY
|
2019-01-28 12:29:58 +00:00
|
|
|
#define EMAC_TASK_STACK_SIZE CONFIG_EMAC_TASK_STACK_SIZE
|
2017-08-16 06:33:37 +00:00
|
|
|
|
2016-11-08 09:45:17 +00:00
|
|
|
#define DMA_RX_BUF_SIZE 1600
|
|
|
|
#define DMA_TX_BUF_SIZE 1600
|
|
|
|
|
2017-01-06 05:49:42 +00:00
|
|
|
#define FLOW_CONTROL_HIGH_WATERMARK 3
|
2019-01-28 12:29:58 +00:00
|
|
|
#define FLOW_CONTROL_LOW_WATERMARK 6
|
2017-01-06 05:49:42 +00:00
|
|
|
|
2019-01-28 12:29:58 +00:00
|
|
|
#define PHY_LINK_CHECK_NUM 5
|
2017-01-06 05:49:42 +00:00
|
|
|
|
2016-11-08 09:45:17 +00:00
|
|
|
#define EMAC_CMD_OK 0
|
|
|
|
#define EMAC_CMD_FAIL -1
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|