#ifndef _HPI_MAC_H
#define _HPI_MAC_H
#ifdef __cplusplus
extern "C" {
#endif
#include <hpi.h>
#include <hxge_vmac_hw.h>
hpi_status_t hpi_tx_vmac_reset(hpi_handle_t handle);
hpi_status_t hpi_rx_vmac_reset(hpi_handle_t handle);
hpi_status_t hpi_vmac_tx_config(hpi_handle_t handle, config_op_t op,
uint64_t config, uint16_t max_frame_length);
hpi_status_t hpi_vmac_rx_config(hpi_handle_t handle, config_op_t op,
uint64_t config, uint16_t max_frame_length);
hpi_status_t hpi_vmac_clear_rx_int_stat(hpi_handle_t handle);
hpi_status_t hpi_vmac_clear_tx_int_stat(hpi_handle_t handle);
hpi_status_t hpi_pfc_set_rx_int_stat_mask(hpi_handle_t handle,
boolean_t overflow_cnt, boolean_t frame_cnt);
hpi_status_t hpi_pfc_set_tx_int_stat_mask(hpi_handle_t handle,
boolean_t overflow_cnt, boolean_t frame_cnt);
hpi_status_t hpi_vmac_rx_set_framesize(hpi_handle_t handle,
uint16_t max_frame_length);
#define CFG_VMAC_TX_EN 0x00000001
#define CFG_VMAC_TX_CRC_INSERT 0x00000002
#define CFG_VMAC_TX_PAD 0x00000004
#define CFG_VMAC_RX_EN 0x00000001
#define CFG_VMAC_RX_CRC_CHECK_DISABLE 0x00000002
#define CFG_VMAC_RX_STRIP_CRC 0x00000004
#define CFG_VMAC_RX_PASS_FLOW_CTRL_FR 0x00000008
#define CFG_VMAC_RX_PROMIXCUOUS_GROUP 0x00000010
#define CFG_VMAC_RX_PROMISCUOUS_MODE 0x00000020
#define CFG_VMAC_RX_LOOP_BACK 0x00000040
#ifdef __cplusplus
}
#endif
#endif