/* Take mbox id from end of CPT mbox range in AF (range 0xA00 - 0xBFF) */ #define MBOX_MSG_RX_INLINE_IPSEC_LF_CFG 0xBFE #define MBOX_MSG_GET_ENG_GRP_NUM 0xBFF #define MBOX_MSG_GET_CAPS 0xBFD #define MBOX_MSG_GET_KVF_LIMITS 0xBFC
/* * Message request to config cpt lf for inline inbound ipsec. * This message is only used between CPT PF <-> CPT VF
*/ struct otx2_cpt_rx_inline_lf_cfg { struct mbox_msghdr hdr;
u16 sso_pf_func;
u16 param1;
u16 param2;
u16 opcode;
u32 credit;
u32 credit_th;
u16 bpid;
u32 reserved;
u8 ctx_ilen_valid : 1;
u8 ctx_ilen : 7;
};
/* * Message request and response to get engine group number * which has attached a given type of engines (SE, AE, IE) * This messages are only used between CPT PF <=> CPT VF
*/ struct otx2_cpt_egrp_num_msg { struct mbox_msghdr hdr;
u8 eng_type;
};
/* * Message request and response to get kernel crypto limits * This messages are only used between CPT PF <-> CPT VF
*/ struct otx2_cpt_kvf_limits_msg { struct mbox_msghdr hdr;
};
/* * Message request and response to get HW capabilities for each * engine type (SE, IE, AE). * This messages are only used between CPT PF <=> CPT VF
*/ struct otx2_cpt_caps_msg { struct mbox_msghdr hdr;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.