2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2019-01-18 09:27:45 +00:00
|
|
|
*
|
2019-06-25 11:12:58 +00:00
|
|
|
* Copyright (c) 2015-2018 Solarflare Communications Inc.
|
|
|
|
* All rights reserved.
|
2018-05-15 09:49:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYS_MEDFORD_IMPL_H
|
|
|
|
#define _SYS_MEDFORD_IMPL_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef ER_EZ_TX_PIOBUF_SIZE
|
|
|
|
#define ER_EZ_TX_PIOBUF_SIZE 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define MEDFORD_PIOBUF_NBUFS (16)
|
|
|
|
#define MEDFORD_PIOBUF_SIZE (ER_EZ_TX_PIOBUF_SIZE)
|
|
|
|
|
|
|
|
#define MEDFORD_MIN_PIO_ALLOC_SIZE (MEDFORD_PIOBUF_SIZE / 32)
|
|
|
|
|
|
|
|
|
|
|
|
extern __checkReturn efx_rc_t
|
|
|
|
medford_board_cfg(
|
|
|
|
__in efx_nic_t *enp);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SYS_MEDFORD_IMPL_H */
|