2018-03-12 07:47:19 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2017 Marvell International Ltd.
|
|
|
|
* Copyright(c) 2017 Semihalf.
|
|
|
|
* All rights reserved.
|
2017-10-10 12:17:19 +00:00
|
|
|
*/
|
|
|
|
|
2019-10-22 00:19:45 +00:00
|
|
|
#ifndef _MRVL_PMD_PRIVATE_H_
|
|
|
|
#define _MRVL_PMD_PRIVATE_H_
|
2017-10-10 12:17:19 +00:00
|
|
|
|
|
|
|
#include "rte_mrvl_compat.h"
|
|
|
|
|
2018-05-08 08:14:04 +00:00
|
|
|
#define CRYPTODEV_NAME_MRVL_PMD crypto_mvsam
|
2017-10-10 12:17:19 +00:00
|
|
|
/**< Marvell PMD device name */
|
|
|
|
|
2018-08-27 12:22:54 +00:00
|
|
|
/** MRVL PMD LOGTYPE DRIVER */
|
2020-04-15 06:22:16 +00:00
|
|
|
extern int mrvl_logtype_driver;
|
2017-10-10 12:17:19 +00:00
|
|
|
|
2018-08-27 12:22:54 +00:00
|
|
|
#define MRVL_LOG(level, fmt, ...) \
|
|
|
|
rte_log(RTE_LOG_ ## level, mrvl_logtype_driver, \
|
|
|
|
"%s() line %u: " fmt "\n", __func__, __LINE__, \
|
|
|
|
## __VA_ARGS__)
|
2017-10-10 12:17:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handy bits->bytes conversion macro.
|
|
|
|
*/
|
|
|
|
#define BITS2BYTES(x) ((x) >> 3)
|
|
|
|
|
2018-08-27 12:22:52 +00:00
|
|
|
#define MRVL_MAX_SEGMENTS 16
|
|
|
|
|
2017-10-10 12:17:19 +00:00
|
|
|
/** The operation order mode enumerator. */
|
|
|
|
enum mrvl_crypto_chain_order {
|
|
|
|
MRVL_CRYPTO_CHAIN_CIPHER_ONLY,
|
|
|
|
MRVL_CRYPTO_CHAIN_AUTH_ONLY,
|
|
|
|
MRVL_CRYPTO_CHAIN_CIPHER_AUTH,
|
|
|
|
MRVL_CRYPTO_CHAIN_AUTH_CIPHER,
|
|
|
|
MRVL_CRYPTO_CHAIN_COMBINED,
|
|
|
|
MRVL_CRYPTO_CHAIN_NOT_SUPPORTED,
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Private data structure for each crypto device. */
|
|
|
|
struct mrvl_crypto_private {
|
|
|
|
unsigned int max_nb_qpairs; /**< Max number of queue pairs */
|
|
|
|
unsigned int max_nb_sessions; /**< Max number of sessions */
|
|
|
|
};
|
|
|
|
|
|
|
|
/** MRVL crypto queue pair structure. */
|
|
|
|
struct mrvl_crypto_qp {
|
|
|
|
/** SAM CIO (MUSDK Queue Pair equivalent).*/
|
|
|
|
struct sam_cio *cio;
|
|
|
|
|
|
|
|
/** Session Mempool. */
|
|
|
|
struct rte_mempool *sess_mp;
|
|
|
|
|
2019-01-10 14:50:11 +00:00
|
|
|
/** Session Private Data Mempool. */
|
|
|
|
struct rte_mempool *sess_mp_priv;
|
|
|
|
|
2017-10-10 12:17:19 +00:00
|
|
|
/** Queue pair statistics. */
|
|
|
|
struct rte_cryptodev_stats stats;
|
|
|
|
|
|
|
|
/** CIO initialization parameters.*/
|
|
|
|
struct sam_cio_params cio_params;
|
|
|
|
} __rte_cache_aligned;
|
|
|
|
|
|
|
|
/** MRVL crypto private session structure. */
|
|
|
|
struct mrvl_crypto_session {
|
|
|
|
/** Crypto operations chain order. */
|
|
|
|
enum mrvl_crypto_chain_order chain_order;
|
|
|
|
|
|
|
|
/** Session initialization parameters. */
|
|
|
|
struct sam_session_params sam_sess_params;
|
|
|
|
|
|
|
|
/** SAM session pointer. */
|
|
|
|
struct sam_sa *sam_sess;
|
|
|
|
|
|
|
|
/** Cipher IV offset. */
|
|
|
|
uint16_t cipher_iv_offset;
|
|
|
|
} __rte_cache_aligned;
|
|
|
|
|
2018-08-27 12:22:52 +00:00
|
|
|
struct mrvl_crypto_src_table {
|
|
|
|
uint16_t iter_ops;
|
|
|
|
struct sam_buf_info src_bd[MRVL_MAX_SEGMENTS];
|
|
|
|
} __rte_cache_aligned;
|
|
|
|
|
2017-10-10 12:17:19 +00:00
|
|
|
/** Set and validate MRVL crypto session parameters */
|
2021-07-11 06:55:28 +00:00
|
|
|
int
|
2017-10-10 12:17:19 +00:00
|
|
|
mrvl_crypto_set_session_parameters(struct mrvl_crypto_session *sess,
|
|
|
|
const struct rte_crypto_sym_xform *xform);
|
|
|
|
|
2021-07-11 06:55:28 +00:00
|
|
|
int
|
|
|
|
mrvl_ipsec_set_session_parameters(struct mrvl_crypto_session *sess,
|
|
|
|
struct rte_security_ipsec_xform *ipsec_xform,
|
|
|
|
struct rte_crypto_sym_xform *crypto_xform);
|
|
|
|
|
2017-10-10 12:17:19 +00:00
|
|
|
/** device specific operations function pointer structure */
|
|
|
|
extern struct rte_cryptodev_ops *rte_mrvl_crypto_pmd_ops;
|
2021-07-11 06:55:28 +00:00
|
|
|
extern struct rte_security_ops *rte_mrvl_security_pmd_ops;
|
2017-10-10 12:17:19 +00:00
|
|
|
|
2019-10-22 00:19:45 +00:00
|
|
|
#endif /* _MRVL_PMD_PRIVATE_H_ */
|