2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
|
2018-05-15 09:49:22 +00:00
|
|
|
*
|
|
|
|
* Copyright 2013-2016 Freescale Semiconductor Inc.
|
2019-06-25 11:12:58 +00:00
|
|
|
* Copyright 2016-2017 NXP
|
2018-05-15 09:49:22 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef _FSL_DPSECI_CMD_H
|
|
|
|
#define _FSL_DPSECI_CMD_H
|
|
|
|
|
|
|
|
/* DPSECI Version */
|
|
|
|
#define DPSECI_VER_MAJOR 5
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPSECI_VER_MINOR 3
|
2018-05-15 09:49:22 +00:00
|
|
|
|
|
|
|
/* Command versioning */
|
|
|
|
#define DPSECI_CMD_BASE_VERSION 1
|
|
|
|
#define DPSECI_CMD_BASE_VERSION_V2 2
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPSECI_CMD_BASE_VERSION_V3 3
|
2018-05-15 09:49:22 +00:00
|
|
|
#define DPSECI_CMD_ID_OFFSET 4
|
|
|
|
|
|
|
|
#define DPSECI_CMD_V1(id) \
|
|
|
|
((id << DPSECI_CMD_ID_OFFSET) | DPSECI_CMD_BASE_VERSION)
|
|
|
|
#define DPSECI_CMD_V2(id) \
|
|
|
|
((id << DPSECI_CMD_ID_OFFSET) | DPSECI_CMD_BASE_VERSION_V2)
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPSECI_CMD_V3(id) \
|
|
|
|
((id << DPSECI_CMD_ID_OFFSET) | DPSECI_CMD_BASE_VERSION_V3)
|
2018-05-15 09:49:22 +00:00
|
|
|
|
|
|
|
/* Command IDs */
|
|
|
|
#define DPSECI_CMDID_CLOSE DPSECI_CMD_V1(0x800)
|
|
|
|
#define DPSECI_CMDID_OPEN DPSECI_CMD_V1(0x809)
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPSECI_CMDID_CREATE DPSECI_CMD_V3(0x909)
|
2018-05-15 09:49:22 +00:00
|
|
|
#define DPSECI_CMDID_DESTROY DPSECI_CMD_V1(0x989)
|
|
|
|
#define DPSECI_CMDID_GET_API_VERSION DPSECI_CMD_V1(0xa09)
|
|
|
|
|
|
|
|
#define DPSECI_CMDID_ENABLE DPSECI_CMD_V1(0x002)
|
|
|
|
#define DPSECI_CMDID_DISABLE DPSECI_CMD_V1(0x003)
|
|
|
|
#define DPSECI_CMDID_GET_ATTR DPSECI_CMD_V1(0x004)
|
|
|
|
#define DPSECI_CMDID_RESET DPSECI_CMD_V1(0x005)
|
|
|
|
#define DPSECI_CMDID_IS_ENABLED DPSECI_CMD_V1(0x006)
|
|
|
|
|
|
|
|
#define DPSECI_CMDID_SET_RX_QUEUE DPSECI_CMD_V1(0x194)
|
|
|
|
#define DPSECI_CMDID_GET_RX_QUEUE DPSECI_CMD_V1(0x196)
|
|
|
|
#define DPSECI_CMDID_GET_TX_QUEUE DPSECI_CMD_V1(0x197)
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPSECI_CMDID_GET_SEC_ATTR DPSECI_CMD_V2(0x198)
|
2018-05-15 09:49:22 +00:00
|
|
|
#define DPSECI_CMDID_GET_SEC_COUNTERS DPSECI_CMD_V1(0x199)
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPSECI_CMDID_SET_OPR DPSECI_CMD_V1(0x19A)
|
|
|
|
#define DPSECI_CMDID_GET_OPR DPSECI_CMD_V1(0x19B)
|
2018-05-15 09:49:22 +00:00
|
|
|
#define DPSECI_CMDID_SET_CONGESTION_NOTIFICATION DPSECI_CMD_V1(0x170)
|
|
|
|
#define DPSECI_CMDID_GET_CONGESTION_NOTIFICATION DPSECI_CMD_V1(0x171)
|
|
|
|
|
|
|
|
/* Macros for accessing command fields smaller than 1byte */
|
|
|
|
#define DPSECI_MASK(field) \
|
|
|
|
GENMASK(DPSECI_##field##_SHIFT + DPSECI_##field##_SIZE - 1, \
|
|
|
|
DPSECI_##field##_SHIFT)
|
|
|
|
#define dpseci_set_field(var, field, val) \
|
|
|
|
((var) |= (((val) << DPSECI_##field##_SHIFT) & DPSECI_MASK(field)))
|
|
|
|
#define dpseci_get_field(var, field) \
|
|
|
|
(((var) & DPSECI_MASK(field)) >> DPSECI_##field##_SHIFT)
|
|
|
|
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
struct dpseci_cmd_open {
|
|
|
|
uint32_t dpseci_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_cmd_create {
|
|
|
|
uint8_t priorities[8];
|
|
|
|
uint8_t num_tx_queues;
|
|
|
|
uint8_t num_rx_queues;
|
|
|
|
uint8_t pad[6];
|
|
|
|
uint32_t options;
|
2019-06-25 11:12:58 +00:00
|
|
|
uint32_t pad2;
|
|
|
|
uint8_t priorities2[8];
|
2018-05-15 09:49:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_cmd_destroy {
|
|
|
|
uint32_t dpseci_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DPSECI_ENABLE_SHIFT 0
|
|
|
|
#define DPSECI_ENABLE_SIZE 1
|
|
|
|
|
|
|
|
struct dpseci_rsp_is_enabled {
|
|
|
|
/* only the first LSB */
|
|
|
|
uint8_t en;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_attr {
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t pad;
|
|
|
|
uint8_t num_tx_queues;
|
|
|
|
uint8_t num_rx_queues;
|
|
|
|
uint8_t pad1[6];
|
|
|
|
uint32_t options;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DPSECI_DEST_TYPE_SHIFT 0
|
|
|
|
#define DPSECI_DEST_TYPE_SIZE 4
|
|
|
|
|
|
|
|
#define DPSECI_ORDER_PRESERVATION_SHIFT 0
|
|
|
|
#define DPSECI_ORDER_PRESERVATION_SIZE 1
|
|
|
|
|
|
|
|
struct dpseci_cmd_set_rx_queue {
|
|
|
|
uint32_t dest_id;
|
|
|
|
uint8_t dest_priority;
|
|
|
|
uint8_t queue;
|
|
|
|
/* from LSB: dest_type:4 */
|
|
|
|
uint8_t dest_type;
|
|
|
|
uint8_t pad;
|
|
|
|
uint64_t user_ctx;
|
|
|
|
uint32_t options;
|
|
|
|
/* only the LSB */
|
|
|
|
uint8_t order_preservation_en;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_cmd_get_queue {
|
|
|
|
uint8_t pad[5];
|
|
|
|
uint8_t queue;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_rx_queue {
|
|
|
|
uint32_t dest_id;
|
|
|
|
uint8_t dest_priority;
|
|
|
|
uint8_t pad1;
|
|
|
|
/* from LSB: dest_type:4 */
|
|
|
|
uint8_t dest_type;
|
|
|
|
uint8_t pad2;
|
|
|
|
uint64_t user_ctx;
|
|
|
|
uint32_t fqid;
|
|
|
|
/* only the LSB */
|
|
|
|
uint8_t order_preservation_en;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_tx_queue {
|
|
|
|
uint32_t pad;
|
|
|
|
uint32_t fqid;
|
|
|
|
uint8_t priority;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_sec_attr {
|
|
|
|
uint16_t ip_id;
|
|
|
|
uint8_t major_rev;
|
|
|
|
uint8_t minor_rev;
|
|
|
|
uint8_t era;
|
|
|
|
uint8_t pad1[3];
|
|
|
|
uint8_t deco_num;
|
|
|
|
uint8_t zuc_auth_acc_num;
|
|
|
|
uint8_t zuc_enc_acc_num;
|
|
|
|
uint8_t pad2;
|
|
|
|
uint8_t snow_f8_acc_num;
|
|
|
|
uint8_t snow_f9_acc_num;
|
|
|
|
uint8_t crc_acc_num;
|
|
|
|
uint8_t pad3;
|
|
|
|
uint8_t pk_acc_num;
|
|
|
|
uint8_t kasumi_acc_num;
|
|
|
|
uint8_t rng_acc_num;
|
|
|
|
uint8_t pad4;
|
|
|
|
uint8_t md_acc_num;
|
|
|
|
uint8_t arc4_acc_num;
|
|
|
|
uint8_t des_acc_num;
|
|
|
|
uint8_t aes_acc_num;
|
2019-06-25 11:12:58 +00:00
|
|
|
uint8_t ccha_acc_num;
|
|
|
|
uint8_t ptha_acc_num;
|
2018-05-15 09:49:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_sec_counters {
|
|
|
|
uint64_t dequeued_requests;
|
|
|
|
uint64_t ob_enc_requests;
|
|
|
|
uint64_t ib_dec_requests;
|
|
|
|
uint64_t ob_enc_bytes;
|
|
|
|
uint64_t ob_prot_bytes;
|
|
|
|
uint64_t ib_dec_bytes;
|
|
|
|
uint64_t ib_valid_bytes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_api_version {
|
|
|
|
uint16_t major;
|
|
|
|
uint16_t minor;
|
|
|
|
};
|
|
|
|
|
2019-06-25 11:12:58 +00:00
|
|
|
struct dpseci_cmd_set_opr {
|
|
|
|
uint16_t pad0;
|
|
|
|
uint8_t index;
|
|
|
|
uint8_t options;
|
|
|
|
uint8_t pad1[7];
|
|
|
|
uint8_t oloe;
|
|
|
|
uint8_t oeane;
|
|
|
|
uint8_t olws;
|
|
|
|
uint8_t oa;
|
|
|
|
uint8_t oprrws;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dpseci_cmd_get_opr {
|
|
|
|
uint16_t pad;
|
|
|
|
uint8_t index;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DPSECI_RIP_SHIFT 0
|
|
|
|
#define DPSECI_RIP_SIZE 1
|
|
|
|
#define DPSECI_OPR_ENABLE_SHIFT 1
|
|
|
|
#define DPSECI_OPR_ENABLE_SIZE 1
|
|
|
|
#define DPSECI_TSEQ_NLIS_SHIFT 0
|
|
|
|
#define DPSECI_TSEQ_NLIS_SIZE 1
|
|
|
|
#define DPSECI_HSEQ_NLIS_SHIFT 0
|
|
|
|
#define DPSECI_HSEQ_NLIS_SIZE 1
|
|
|
|
|
|
|
|
struct dpseci_rsp_get_opr {
|
|
|
|
uint64_t pad0;
|
|
|
|
/* from LSB: rip:1 enable:1 */
|
|
|
|
uint8_t flags;
|
|
|
|
uint16_t pad1;
|
|
|
|
uint8_t oloe;
|
|
|
|
uint8_t oeane;
|
|
|
|
uint8_t olws;
|
|
|
|
uint8_t oa;
|
|
|
|
uint8_t oprrws;
|
|
|
|
uint16_t nesn;
|
|
|
|
uint16_t pad8;
|
|
|
|
uint16_t ndsn;
|
|
|
|
uint16_t pad2;
|
|
|
|
uint16_t ea_tseq;
|
|
|
|
/* only the LSB */
|
|
|
|
uint8_t tseq_nlis;
|
|
|
|
uint8_t pad3;
|
|
|
|
uint16_t ea_hseq;
|
|
|
|
/* only the LSB */
|
|
|
|
uint8_t hseq_nlis;
|
|
|
|
uint8_t pad4;
|
|
|
|
uint16_t ea_hptr;
|
|
|
|
uint16_t pad5;
|
|
|
|
uint16_t ea_tptr;
|
|
|
|
uint16_t pad6;
|
|
|
|
uint16_t opr_vid;
|
|
|
|
uint16_t pad7;
|
|
|
|
uint16_t opr_id;
|
|
|
|
};
|
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
#define DPSECI_DEST_TYPE_SHIFT 0
|
|
|
|
#define DPSECI_DEST_TYPE_SIZE 4
|
|
|
|
#define DPSECI_CG_UNITS_SHIFT 4
|
|
|
|
#define DPSECI_CG_UNITS_SIZE 2
|
|
|
|
|
|
|
|
struct dpseci_cmd_set_congestion_notification {
|
|
|
|
uint32_t dest_id;
|
|
|
|
uint16_t notification_mode;
|
|
|
|
uint8_t dest_priority;
|
|
|
|
/* from LSB: dest_type: 4 units:2 */
|
|
|
|
uint8_t type_units;
|
|
|
|
uint64_t message_iova;
|
|
|
|
uint64_t message_ctx;
|
|
|
|
uint32_t threshold_entry;
|
|
|
|
uint32_t threshold_exit;
|
|
|
|
};
|
|
|
|
|
|
|
|
#pragma pack(pop)
|
|
|
|
#endif /* _FSL_DPSECI_CMD_H */
|