mirror of https://github.com/F-Stack/f-stack.git
61 lines
1.1 KiB
C
61 lines
1.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Copyright(c) 2019-2020 Xilinx, Inc.
|
|
* Copyright(c) 2009-2019 Solarflare Communications Inc.
|
|
*/
|
|
|
|
#ifndef _SYS_MCDI_MON_H
|
|
#define _SYS_MCDI_MON_H
|
|
|
|
#include "efx.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if EFSYS_OPT_MON_MCDI
|
|
|
|
#if EFSYS_OPT_MON_STATS
|
|
|
|
LIBEFX_INTERNAL
|
|
extern __checkReturn efx_rc_t
|
|
mcdi_mon_cfg_build(
|
|
__in efx_nic_t *enp);
|
|
|
|
LIBEFX_INTERNAL
|
|
extern void
|
|
mcdi_mon_cfg_free(
|
|
__in efx_nic_t *enp);
|
|
|
|
|
|
LIBEFX_INTERNAL
|
|
extern __checkReturn efx_rc_t
|
|
mcdi_mon_ev(
|
|
__in efx_nic_t *enp,
|
|
__in efx_qword_t *eqp,
|
|
__out efx_mon_stat_t *idp,
|
|
__out efx_mon_stat_value_t *valuep);
|
|
|
|
LIBEFX_INTERNAL
|
|
extern __checkReturn efx_rc_t
|
|
mcdi_mon_stats_update(
|
|
__in efx_nic_t *enp,
|
|
__in efsys_mem_t *esmp,
|
|
__inout_ecount(EFX_MON_NSTATS) efx_mon_stat_value_t *values);
|
|
|
|
LIBEFX_INTERNAL
|
|
extern __checkReturn efx_rc_t
|
|
mcdi_mon_limits_update(
|
|
__in efx_nic_t *enp,
|
|
__inout_ecount(EFX_MON_NSTATS) efx_mon_stat_limits_t *values);
|
|
|
|
#endif /* EFSYS_OPT_MON_STATS */
|
|
|
|
#endif /* EFSYS_OPT_MON_MCDI */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SYS_MCDI_MON_H */
|