blob: b05d1c50d52450120b77bd30d6307a3dfbe8c8a5 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018 Cavium, Inc
*/
#ifndef _OTX_CRYPTODEV_MBOX_H_
#define _OTX_CRYPTODEV_MBOX_H_
#include <rte_byteorder.h>
#include <rte_common.h>
#include "cpt_common.h"
#include "cpt_pmd_logs.h"
#include "otx_cryptodev_hw_access.h"
#define OTX_CPT_MBOX_MSG_TIMEOUT 2000 /* In Milli Seconds */
#define OTX_CPT_MBOX_MSG_TYPE_REQ 0
#define OTX_CPT_MBOX_MSG_TYPE_ACK 1
#define OTX_CPT_MBOX_MSG_TYPE_NACK 2
#define OTX_CPT_MBOX_MSG_TYPE_NOP 3
/* CPT mailbox structure */
struct cpt_mbox {
/** Message type MBOX[0] */
uint64_t msg;
/** Data MBOX[1] */
uint64_t data;
};
typedef enum {
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_mbox_opcode_t;
typedef union {
uint64_t u64;
struct {
#if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
uint32_t chip_id;
uint8_t vfid;
uint8_t reserved[3];
#else
uint8_t reserved[3];
uint8_t vfid;
uint32_t chip_id;
#endif
} s;
} otx_cpt_chipid_vfid_t;
/* Poll handler to handle mailbox messages from VFs */
void
otx_cpt_handle_mbox_intr(struct cpt_vf *cptvf);
/*
* Checks if VF is able to comminicate with PF
* and also gets the CPT number this VF is associated to.
*/
int
otx_cpt_check_pf_ready(struct cpt_vf *cptvf);
/*
* Communicate VQs size to PF to program CPT(0)_PF_Q(0-15)_CTL of the VF.
* Must be ACKed.
*/
int
otx_cpt_send_vq_size_msg(struct cpt_vf *cptvf);
/*
* Communicate VF group required to PF and get the VQ binded to that group
*/
int
otx_cpt_send_vf_grp_msg(struct cpt_vf *cptvf, uint32_t group);
/*
* Communicate to PF that VF is UP and running
*/
int
otx_cpt_send_vf_up(struct cpt_vf *cptvf);
/*
* Communicate to PF that VF is DOWN and running
*/
int
otx_cpt_send_vf_down(struct cpt_vf *cptvf);
#endif /* _OTX_CRYPTODEV_MBOX_H_ */
|