1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| /* SPDX-License-Identifier: GPL-2.0
| * Marvell OcteonTX CPT driver
| *
| * Copyright (C) 2019 Marvell International Ltd.
| *
| * This program is free software; you can redistribute it and/or modify
| * it under the terms of the GNU General Public License version 2 as
| * published by the Free Software Foundation.
| */
|
| #ifndef __OTX_CPT_COMMON_H
| #define __OTX_CPT_COMMON_H
|
| #include <linux/types.h>
| #include <linux/delay.h>
| #include <linux/device.h>
|
| #define OTX_CPT_MAX_MBOX_DATA_STR_SIZE 64
|
| enum otx_cptpf_type {
| OTX_CPT_AE = 2,
| OTX_CPT_SE = 3,
| BAD_OTX_CPTPF_TYPE,
| };
|
| enum otx_cptvf_type {
| OTX_CPT_AE_TYPES = 1,
| OTX_CPT_SE_TYPES = 2,
| BAD_OTX_CPTVF_TYPE,
| };
|
| /* VF-PF message opcodes */
| enum otx_cpt_mbox_opcode {
| OTX_CPT_MSG_VF_UP = 1,
| OTX_CPT_MSG_VF_DOWN,
| OTX_CPT_MSG_READY,
| OTX_CPT_MSG_QLEN,
| OTX_CPT_MSG_QBIND_GRP,
| OTX_CPT_MSG_VQ_PRIORITY,
| OTX_CPT_MSG_PF_TYPE,
| OTX_CPT_MSG_ACK,
| OTX_CPT_MSG_NACK
| };
|
| /* OcteonTX CPT mailbox structure */
| struct otx_cpt_mbox {
| u64 msg; /* Message type MBOX[0] */
| u64 data;/* Data MBOX[1] */
| };
|
| #endif /* __OTX_CPT_COMMON_H */
|
|