28 lines
498 B
C
28 lines
498 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
|
|
/* Copyright (C) 2019 Netronome Systems, Inc. */
|
|
|
|
#ifndef NFP_CRYPTO_H
|
|
#define NFP_CRYPTO_H 1
|
|
|
|
struct nfp_net_tls_offload_ctx {
|
|
__be32 fw_handle[2];
|
|
|
|
u8 rx_end[0];
|
|
/* Tx only fields follow - Rx side does not have enough driver state
|
|
* to fit these
|
|
*/
|
|
|
|
u32 next_seq;
|
|
};
|
|
|
|
#ifdef CONFIG_TLS_DEVICE
|
|
int nfp_net_tls_init(struct nfp_net *nn);
|
|
#else
|
|
static inline int nfp_net_tls_init(struct nfp_net *nn)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#endif
|