1 /* SPDX-License-Identifier: MIT */
3 * Copyright(c) 2020, Intel Corporation. All rights reserved.
6 #ifndef __INTEL_PXP_FW_INTERFACE_42_H__
7 #define __INTEL_PXP_FW_INTERFACE_42_H__
9 #include <linux/types.h>
10 #include "intel_pxp_cmd_interface_cmn.h"
12 /* PXP-Opcode for Init Session */
13 #define PXP42_CMDID_INIT_SESSION 0x1e
15 /* PXP-Opcode for Invalidate Stream Key */
16 #define PXP42_CMDID_INVALIDATE_STREAM_KEY 0x00000007
18 /* PXP-Input-Packet: Init Session (Arb-Session) */
19 struct pxp42_create_arb_in {
20 struct pxp_cmd_header header;
22 #define PXP42_ARB_SESSION_MODE_HEAVY 0x2
26 /* PXP-Output-Packet: Init Session */
27 struct pxp42_create_arb_out {
28 struct pxp_cmd_header header;
31 /* PXP-Input-Packet: Invalidate Stream Key */
32 struct pxp42_inv_stream_key_in {
33 struct pxp_cmd_header header;
37 /* PXP-Output-Packet: Invalidate Stream Key */
38 struct pxp42_inv_stream_key_out {
39 struct pxp_cmd_header header;
43 #endif /* __INTEL_PXP_FW_INTERFACE_42_H__ */