New upstream version 18.02
[deb_dpdk.git] / drivers / net / sfc / base / hunt_impl.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2012-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  */
6
7 #ifndef _SYS_HUNT_IMPL_H
8 #define _SYS_HUNT_IMPL_H
9
10 #include "efx.h"
11 #include "efx_regs.h"
12 #include "efx_regs_ef10.h"
13 #include "efx_mcdi.h"
14
15 #ifdef  __cplusplus
16 extern "C" {
17 #endif
18
19 /* Missing register definitions */
20 #ifndef ER_DZ_TX_PIOBUF_OFST
21 #define ER_DZ_TX_PIOBUF_OFST 0x00001000
22 #endif
23 #ifndef ER_DZ_TX_PIOBUF_STEP
24 #define ER_DZ_TX_PIOBUF_STEP 8192
25 #endif
26 #ifndef ER_DZ_TX_PIOBUF_ROWS
27 #define ER_DZ_TX_PIOBUF_ROWS 2048
28 #endif
29
30 #ifndef ER_DZ_TX_PIOBUF_SIZE
31 #define ER_DZ_TX_PIOBUF_SIZE 2048
32 #endif
33
34 #define HUNT_PIOBUF_NBUFS       (16)
35 #define HUNT_PIOBUF_SIZE        (ER_DZ_TX_PIOBUF_SIZE)
36
37 #define HUNT_MIN_PIO_ALLOC_SIZE (HUNT_PIOBUF_SIZE / 32)
38
39
40 /* NIC */
41
42 extern  __checkReturn   efx_rc_t
43 hunt_board_cfg(
44         __in            efx_nic_t *enp);
45
46 #ifdef  __cplusplus
47 }
48 #endif
49
50 #endif  /* _SYS_HUNT_IMPL_H */