mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
107 lines
2.7 KiB
C
107 lines
2.7 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "esp_eth_phy.h"
|
|
#include "esp_eth_mac.h"
|
|
#include "driver/spi_master.h"
|
|
|
|
#define CS_HOLD_TIME_MIN_NS 210
|
|
|
|
/**
|
|
* @brief ENC28J60 specific configuration
|
|
*
|
|
*/
|
|
typedef struct {
|
|
spi_host_device_t spi_host_id; /*!< SPI peripheral */
|
|
spi_device_interface_config_t *spi_devcfg; /*!< SPI device configuration */
|
|
int int_gpio_num; /*!< Interrupt GPIO number */
|
|
} eth_enc28j60_config_t;
|
|
|
|
/**
|
|
* @brief ENC28J60 Supported Revisions
|
|
*
|
|
*/
|
|
typedef enum {
|
|
ENC28J60_REV_B1 = 0b00000010,
|
|
ENC28J60_REV_B4 = 0b00000100,
|
|
ENC28J60_REV_B5 = 0b00000101,
|
|
ENC28J60_REV_B7 = 0b00000110
|
|
} eth_enc28j60_rev_t;
|
|
|
|
/**
|
|
* @brief Default ENC28J60 specific configuration
|
|
*
|
|
*/
|
|
#define ETH_ENC28J60_DEFAULT_CONFIG(spi_host, spi_devcfg_p) \
|
|
{ \
|
|
.spi_host_id = spi_host, \
|
|
.spi_devcfg = spi_devcfg_p, \
|
|
.int_gpio_num = 4, \
|
|
}
|
|
|
|
/**
|
|
* @brief Compute amount of SPI bit-cycles the CS should stay active after the transmission
|
|
* to meet ENC28J60 CS Hold Time specification.
|
|
*
|
|
* @param clock_speed_mhz SPI Clock frequency in MHz (valid range is <1, 20>)
|
|
* @return uint8_t
|
|
*/
|
|
static inline uint8_t enc28j60_cal_spi_cs_hold_time(int clock_speed_mhz)
|
|
{
|
|
if (clock_speed_mhz <= 0 || clock_speed_mhz > 20) {
|
|
return 0;
|
|
}
|
|
int temp = clock_speed_mhz * CS_HOLD_TIME_MIN_NS;
|
|
uint8_t cs_posttrans = temp / 1000;
|
|
if (temp % 1000) {
|
|
cs_posttrans += 1;
|
|
}
|
|
|
|
return cs_posttrans;
|
|
}
|
|
|
|
/**
|
|
* @brief Create ENC28J60 Ethernet MAC instance
|
|
*
|
|
* @param[in] enc28j60_config: ENC28J60 specific configuration
|
|
* @param[in] mac_config: Ethernet MAC configuration
|
|
*
|
|
* @return
|
|
* - instance: create MAC instance successfully
|
|
* - NULL: create MAC instance failed because some error occurred
|
|
*/
|
|
esp_eth_mac_t *esp_eth_mac_new_enc28j60(const eth_enc28j60_config_t *enc28j60_config, const eth_mac_config_t *mac_config);
|
|
|
|
/**
|
|
* @brief Create a PHY instance of ENC28J60
|
|
*
|
|
* @param[in] config: configuration of PHY
|
|
*
|
|
* @return
|
|
* - instance: create PHY instance successfully
|
|
* - NULL: create PHY instance failed because some error occurred
|
|
*/
|
|
esp_eth_phy_t *esp_eth_phy_new_enc28j60(const eth_phy_config_t *config);
|
|
|
|
/**
|
|
* @brief Get ENC28J60 silicon revision ID
|
|
*
|
|
* @param mac ENC28J60 MAC Handle
|
|
* @return eth_enc28j60_rev_t
|
|
* - returns silicon revision ID read during initialization
|
|
*/
|
|
eth_enc28j60_rev_t emac_enc28j60_get_chip_info(esp_eth_mac_t *mac);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|