]> git.droids-corp.org - dpdk.git/commitdiff
cryptodev: expose driver interface as internal
authorAkhil Goyal <gakhil@marvell.com>
Tue, 10 Aug 2021 19:50:20 +0000 (01:20 +0530)
committerAkhil Goyal <gakhil@marvell.com>
Wed, 8 Sep 2021 07:35:12 +0000 (09:35 +0200)
The rte_cryptodev_pmd.* files are for drivers only and should be
private to DPDK, and not installed for app use.

Signed-off-by: Akhil Goyal <gakhil@marvell.com>
Acked-by: Matan Azrad <matan@nvidia.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
66 files changed:
doc/guides/rel_notes/deprecation.rst
doc/guides/rel_notes/release_21_11.rst
drivers/crypto/aesni_gcm/aesni_gcm_pmd.c
drivers/crypto/aesni_gcm/aesni_gcm_pmd_ops.c
drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c
drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c
drivers/crypto/armv8/rte_armv8_pmd.c
drivers/crypto/armv8/rte_armv8_pmd_ops.c
drivers/crypto/bcmfs/bcmfs_sym_pmd.c
drivers/crypto/bcmfs/bcmfs_sym_session.h
drivers/crypto/caam_jr/caam_jr.c
drivers/crypto/ccp/ccp_crypto.c
drivers/crypto/ccp/ccp_pmd_ops.c
drivers/crypto/ccp/rte_ccp_pmd.c
drivers/crypto/cnxk/cn10k_cryptodev.c
drivers/crypto/cnxk/cn10k_cryptodev_ops.c
drivers/crypto/cnxk/cn10k_cryptodev_ops.h
drivers/crypto/cnxk/cn9k_cryptodev.c
drivers/crypto/cnxk/cn9k_cryptodev_ops.c
drivers/crypto/cnxk/cn9k_cryptodev_ops.h
drivers/crypto/cnxk/cnxk_cryptodev_ops.c
drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c
drivers/crypto/dpaa_sec/dpaa_sec.c
drivers/crypto/kasumi/rte_kasumi_pmd.c
drivers/crypto/kasumi/rte_kasumi_pmd_ops.c
drivers/crypto/mlx5/mlx5_crypto.h
drivers/crypto/mvsam/rte_mrvl_pmd.c
drivers/crypto/mvsam/rte_mrvl_pmd_ops.c
drivers/crypto/nitrox/nitrox_sym.c
drivers/crypto/null/null_crypto_pmd.c
drivers/crypto/null/null_crypto_pmd_ops.c
drivers/crypto/octeontx/otx_cryptodev.c
drivers/crypto/octeontx/otx_cryptodev_ops.c
drivers/crypto/octeontx2/otx2_cryptodev.c
drivers/crypto/octeontx2/otx2_cryptodev_ops.c
drivers/crypto/octeontx2/otx2_cryptodev_ops.h
drivers/crypto/openssl/rte_openssl_pmd.c
drivers/crypto/openssl/rte_openssl_pmd_ops.c
drivers/crypto/qat/qat_asym.h
drivers/crypto/qat/qat_asym_pmd.c
drivers/crypto/qat/qat_sym.h
drivers/crypto/qat/qat_sym_hw_dp.c
drivers/crypto/qat/qat_sym_pmd.c
drivers/crypto/qat/qat_sym_session.h
drivers/crypto/scheduler/rte_cryptodev_scheduler.c
drivers/crypto/scheduler/scheduler_pmd.c
drivers/crypto/scheduler/scheduler_pmd_ops.c
drivers/crypto/snow3g/rte_snow3g_pmd.c
drivers/crypto/snow3g/rte_snow3g_pmd_ops.c
drivers/crypto/virtio/virtio_cryptodev.c
drivers/crypto/virtio/virtio_rxtx.c
drivers/crypto/zuc/rte_zuc_pmd.c
drivers/crypto/zuc/rte_zuc_pmd_ops.c
drivers/event/octeontx2/otx2_evdev_crypto_adptr_rx.h
drivers/event/octeontx2/otx2_evdev_crypto_adptr_tx.h
drivers/net/softnic/rte_eth_softnic_cryptodev.c
lib/cryptodev/cryptodev_pmd.c [new file with mode: 0644]
lib/cryptodev/cryptodev_pmd.h [new file with mode: 0644]
lib/cryptodev/meson.build
lib/cryptodev/rte_cryptodev.c
lib/cryptodev/rte_cryptodev_pmd.c [deleted file]
lib/cryptodev/rte_cryptodev_pmd.h [deleted file]
lib/cryptodev/version.map
lib/eventdev/rte_event_crypto_adapter.c
lib/eventdev/rte_eventdev.c
lib/pipeline/rte_table_action.c

index 76a4abfd6b0bf280fb620306d57c83a2954b1cef..59445a6f429544867058b4dabeb346025fb062bb 100644 (file)
@@ -223,9 +223,6 @@ Deprecation Notices
   session and the private data of session. An opaque pointer can be exposed
   directly to application which can be attached to the ``rte_crypto_op``.
 
-* cryptodev: The interface between library and drivers will be marked
-  as internal in DPDK 21.11.
-
 * security: Hide structure ``rte_security_session`` and expose an opaque
   pointer for the private data to the application which can be attached
   to the packet while enqueuing.
index e7ad50ba0946eb72e76219d51cd8f4b69da04358..8785b25ff6f1b9bbe0cb1cca9787efd3f133d7dd 100644 (file)
@@ -106,6 +106,10 @@ API Changes
   rte_cryptodev_is_valid_dev as it can be used by the application as
   well as PMD to check whether the device is valid or not.
 
+* cryptodev: The rte_cryptodev_pmd.* files are renamed as cryptodev_pmd.*
+  as it is for drivers only and should be private to DPDK, and not
+  installed for app use.
+
 
 ABI Changes
 -----------
index 886e2a5aaac2d87fe4265dad5f6f2eb17227d64f..330aad8157ade4c94d42ba9ee21c0634c9c0364a 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index 18dbc4c18c3fc108a5394f344bce5867770a49ce..edb7275e76a51fb601c945f9225b9202b6c47839 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "aesni_gcm_pmd_private.h"
 
index a01c826a3c306a3a1e30677d8226b7eb4979c69b..60963a8208a0c0009fa1118efa9e9ae109a70da7 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index fc7fdfec8ed87295ca8cbe67f2d8cc8a031967f7..48a8f91868bdd6ce2ad40440fb37756b9517cc00 100644 (file)
@@ -8,7 +8,7 @@
 #include <rte_common.h>
 #include <rte_malloc.h>
 #include <rte_ether.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "aesni_mb_pmd_private.h"
 
index c642ac350fbe5dfec74786e2c3771b34469a0369..36a1a9bb4f8bd67ccdd022e9545b9cc84d8c0b57 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index 01ccfb4b2366eeb20eca2fc0df4ca11114503047..1b2749fe62c62503baae89c93557a15442df15ca 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "armv8_pmd_private.h"
 
index aa7fad6d70eef493d7510ee3c36aa13a3a8dc847..d1dd22823ea26eed57fe207c8ebb405d587abfeb 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_dev.h>
 #include <rte_errno.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "bcmfs_device.h"
 #include "bcmfs_logs.h"
index 8240c6fc253a6947f4abef1b9e3d9a3b122ac273..d40595b4bd144ca0c543a3c71fdadc5337d9934a 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <stdbool.h>
 #include <rte_crypto.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "bcmfs_sym_defs.h"
 #include "bcmfs_sym_req.h"
index 3fb3fe0f8a28fe8b52bc5c5b0d7407f27ce2c0e3..258750afe71f6ee401b76fa30d7d7237d35df1aa 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <rte_byteorder.h>
 #include <rte_common.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_crypto.h>
 #include <rte_cryptodev.h>
 #include <rte_bus_vdev.h>
index f37d35f18fa181a7621d6168e5f748c4eacbc60a..70daed791e73da9b5b214d7d3f732339f46e614f 100644 (file)
@@ -20,7 +20,7 @@
 #include <rte_memory.h>
 #include <rte_spinlock.h>
 #include <rte_string_fns.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "ccp_dev.h"
 #include "ccp_crypto.h"
index 98f964f36199e62c6f0c9b873cf7949058b36417..0d615d311c9bc2eebd4b464bb167053880750d9c 100644 (file)
@@ -5,7 +5,7 @@
 #include <string.h>
 
 #include <rte_common.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_malloc.h>
 
 #include "ccp_pmd_private.h"
index ab9416942e0885fe7e8008163b778cccfe68f3f4..a54d81de460d3c446d5f8420761339f0d8f7891e 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_bus_vdev.h>
 #include <rte_common.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_pci.h>
 #include <rte_dev.h>
 #include <rte_malloc.h>
index db7b5aa7c6c966739bc5e40568c017a56859ffc4..012eb0c0511c33762d8dbb4e009d2da99598e85f 100644 (file)
@@ -6,7 +6,7 @@
 #include <rte_common.h>
 #include <rte_crypto.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_dev.h>
 #include <rte_pci.h>
 
index cccca77f60e5d2074c5abda922fdeb3f01f2196a..3a1a4a2e2947b37c9580cff199654d8e6671b858 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_event_crypto_adapter.h>
 #include <rte_ip.h>
 
index b03d2eee1448d83224ec971f07241f03bb117437..d7e9f873961c705ec063faa7a41bcc9dc773cab5 100644 (file)
@@ -6,7 +6,7 @@
 #define _CN10K_CRYPTODEV_OPS_H_
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 extern struct rte_cryptodev_ops cn10k_cpt_ops;
 
index e60b352fac6b5173754733e6e33b680b567cf327..6b8cb01a12cae38572ca3247b7696a80a4052031 100644 (file)
@@ -6,7 +6,7 @@
 #include <rte_common.h>
 #include <rte_crypto.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_dev.h>
 #include <rte_pci.h>
 
index 40109acc3ff59fb66d326141592f09ef97958c4e..75277936b0211382c07214d5c4731cc779680d75 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_event_crypto_adapter.h>
 #include <rte_ip.h>
 #include <rte_vect.h>
index 1255de33aef66e9007c67e35dd20f0becfdaac65..309f50734625bc648f11ad8aafe2d49115e20bb0 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef _CN9K_CRYPTODEV_OPS_H_
 #define _CN9K_CRYPTODEV_OPS_H_
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 extern struct rte_cryptodev_ops cn9k_cpt_ops;
 
index 957c78063fa485296dfdc30f88c1a675ff05c645..41d8fe49e17e9a4112c89d06c9fd22085eec6c89 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_errno.h>
 
 #include "roc_cpt.h"
index 1ccead36414b0b8aab8f13c956781f9a155d8a91..bf69c619160c279ead9384e97ad884cad14d51ef 100644 (file)
@@ -18,7 +18,7 @@
 #include <rte_cycles.h>
 #include <rte_kvargs.h>
 #include <rte_dev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_common.h>
 #include <rte_fslmc.h>
 #include <fslmc_vfio.h>
index 19d4684e249d7eb4a5e8e14c183e834bbdd608ce..3d53746ef1fef8c7534b1ab8f478c26c05b4e60d 100644 (file)
@@ -12,7 +12,7 @@
 
 #include <rte_byteorder.h>
 #include <rte_common.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_crypto.h>
 #include <rte_cryptodev.h>
 #ifdef RTE_LIB_SECURITY
index 48b7db9e9b349c9aad08c65d428fd745ff6c72df..d6f927417a770dc3e7a234aa317c38d836714e5f 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index 43376c1aa05e76d31f49c763bdf1e3ef6f25dd22..f075054807fcf0f68ab3fc9210e17cc73ed89a9d 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "kasumi_pmd_private.h"
 
index 722acb8d19aedddb492efd7d0ea150340f96c691..d589e0ac3d93bf31c6039084884c5fd3c27d0262 100644 (file)
@@ -8,7 +8,7 @@
 #include <stdbool.h>
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include <mlx5_common_utils.h>
 #include <mlx5_common_devx.h>
index ed85bb6547ed9d8b4dd574a8336a234a96f6e704..a72642a77273aed827adfe296fd32e83a0b7c30c 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_security_driver.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
index fa36461276c08d9022662b18370eb33b39e30db8..3064b1f136fe1d35ade85c440a79463fbf60194b 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_security_driver.h>
 
 #include "mrvl_pmd_private.h"
index 2768bdd2e14ce57c0a6ed480c07ed7cb57804f9a..f8b7edcd69e18e28764b0b653b814b6d4b177fb6 100644 (file)
@@ -4,7 +4,7 @@
 
 #include <stdbool.h>
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_crypto.h>
 
 #include "nitrox_sym.h"
index 179e5ff36d6ce7aa055ac0cb14f81d7240c919b3..f9935d52cc740d2ea1574dc63afc2a5bf9d63a88 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 #include <rte_common.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 
index d67892a1bbcb8094411fae4fb781d6f44e367a27..a8b5a06e7f4e39f56c026cf29345642052374207 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "null_crypto_pmd_private.h"
 
index 3822c0d779ddbaf71d4cd11e38629d6078840f7e..c294f86d79cbebcd06d703da74c69fdb1052b1e9 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_bus_pci.h>
 #include <rte_common.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_log.h>
 #include <rte_pci.h>
 
index eac6796cfba5ee16f51a8b88235526f5e6068d72..9b5bde53f8ec84dc2c18f19e03d381f66ec099b2 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_alarm.h>
 #include <rte_bus_pci.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_eventdev.h>
 #include <rte_event_crypto_adapter.h>
 #include <rte_errno.h>
index 75fb4f9a3b23763e8cccee5e372590a14ce1ce89..85b1f0026336da45e248a0105730ba9f15356636 100644 (file)
@@ -6,7 +6,7 @@
 #include <rte_common.h>
 #include <rte_crypto.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_dev.h>
 #include <rte_errno.h>
 #include <rte_mempool.h>
index 42100154cd09200251c7782be389027f3af80cfd..09ddbb5f34d3e56d834d32420b0505ac5af8808c 100644 (file)
@@ -4,7 +4,7 @@
 
 #include <unistd.h>
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_errno.h>
 #include <rte_ethdev.h>
 #include <rte_event_crypto_adapter.h>
index 1970187f88bdc27d556d3d92dc16d3631ee90180..8d135909b3c15ecf6b9f78568468d16d1bb2d153 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef _OTX2_CRYPTODEV_OPS_H_
 #define _OTX2_CRYPTODEV_OPS_H_
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #define OTX2_CPT_MIN_HEADROOM_REQ      24
 #define OTX2_CPT_MIN_TAILROOM_REQ      8
index 37b969b9163253ea56269b288fe8d253ca43b7d9..13c6ea87241793474203637597b62ec6bb5e9552 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index ed7587758146afe0388a99bd4597f225a9d9d813..52715f86f84aad25e5a1983cfe3b42ecfb76e1f0 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "openssl_pmd_private.h"
 #include "compat.h"
index 2838aee76f9df5f41f694b5f751556ed2b0187ec..308b6b2e0bce7973fe2a9fe738b6e4cda2dc02b6 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef _QAT_ASYM_H_
 #define _QAT_ASYM_H_
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_crypto_asym.h>
 #include "icp_qat_fw_pke.h"
 #include "qat_common.h"
index 0c25cce09e2d6d9ac6228196b0ac9f2a6f7ed6f5..e91bb0d317168d9b418574ac81c192da12ce4a3e 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright(c) 2019 Intel Corporation
  */
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "qat_logs.h"
 
index 20b1b53d36d47344a55eeb0251c2767553fdcc9b..e3ec7f0de4cc070ff7793c81309477623e57b21f 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef _QAT_SYM_H_
 #define _QAT_SYM_H_
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #ifdef RTE_LIB_SECURITY
 #include <rte_net_crc.h>
 #endif
index ac9ac053633dbf0b9d77c50de16427f0cc9e2932..36d11e0dc927bc4d1c50098b7a0acd9b9492683d 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright(c) 2020 Intel Corporation
  */
 
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "adf_transport_access_macros.h"
 #include "icp_qat_fw.h"
index 6868e5f001fae2cbedaff308c7a2d520f271c5e5..efda921c05c982407de4dad29034c61e3ed465ad 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_dev.h>
 #include <rte_malloc.h>
 #include <rte_pci.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #ifdef RTE_LIB_SECURITY
 #include <rte_security_driver.h>
 #endif
index 33b236e49bc46ae0b4082ea8c39a3ead24620212..6ebc176729091949b9dee00472c7e247a2eb1995 100644 (file)
@@ -5,7 +5,7 @@
 #define _QAT_SYM_SESSION_H_
 
 #include <rte_crypto.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #ifdef RTE_LIB_SECURITY
 #include <rte_security.h>
 #endif
index 1e0b4df0ca574f7ea607c2a57c21baaf06f7a66a..1e0c4fe4645faec45e34b8be7f2baf9f5d29eb8f 100644 (file)
@@ -4,7 +4,7 @@
 #include <rte_string_fns.h>
 #include <rte_reorder.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_malloc.h>
 
 #include "rte_cryptodev_scheduler.h"
index 632197833c0f1fbc172ab0bc26f57905ed0f0c87..560c26af50fe2211d12cd12488ad9505f80e0dfd 100644 (file)
@@ -4,7 +4,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index cb125e8027a60dd2a98ef21e3b7fdcf82f3cc2fa..465b88ade8227d9e80267f499d32326e60b5d6d3 100644 (file)
@@ -7,7 +7,7 @@
 #include <rte_malloc.h>
 #include <rte_dev.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_reorder.h>
 
 #include "scheduler_pmd_private.h"
index 9aab35784628be5683cbd891010cd0a509ca345a..8284ac0b669a1c403b9c0c8ccc258e0f4853e932 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index 906a0fe60b8d04ed8130e256ba2256f0d6ec66a0..3f46014b7d37fc39937568e455fcc98e690434b0 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "snow3g_pmd_private.h"
 
index 4bae74a48728324c09d660643b3b1cdc1e4b1383..8faa39df4a41eaaad4edfb36a5fc42ecbf881715 100644 (file)
@@ -9,7 +9,7 @@
 #include <rte_pci.h>
 #include <rte_bus_pci.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_eal.h>
 
 #include "virtio_cryptodev.h"
index e1cb4ad104516487223764dfab162937dbdded86..a65524a306ef7845319c9311e8bb7e180f31783f 100644 (file)
@@ -1,7 +1,7 @@
 /* SPDX-License-Identifier: BSD-3-Clause
  * Copyright(c) 2018 HUAWEI TECHNOLOGIES CO., LTD.
  */
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "virtqueue.h"
 #include "virtio_cryptodev.h"
index 42b669f18857b858a9507528a3b6bd913a0e04bb..d4b343a7afecb12fd4ee307b4a7135ee07d4ed90 100644 (file)
@@ -5,7 +5,7 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
index dc9dc25ef88e1ae4d42a68def604075b36f0a8aa..38642d45abf1620da1fd3fc45fa4ccf3f39918b6 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rte_common.h>
 #include <rte_malloc.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "zuc_pmd_private.h"
 
index a5432253764ba5d24beb184cd8a861752675b881..b33cb7e139b0a521af3463503c6d7a7c2a7e44c6 100644 (file)
@@ -6,7 +6,7 @@
 #define _OTX2_EVDEV_CRYPTO_ADPTR_RX_H_
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_eventdev.h>
 
 #include "cpt_pmd_logs.h"
index ecf7eb9f56981095a593264526d655e3b1726598..1fc56f903bcb323c405cedd33cc8d7a196c7c0d5 100644 (file)
@@ -6,7 +6,7 @@
 #define _OTX2_EVDEV_CRYPTO_ADPTR_TX_H_
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_event_crypto_adapter.h>
 #include <rte_eventdev.h>
 
index 8e278801c5df98ad44d421878d45efea4786dcce..9a7d006f1a09ef146d70f97a607ee5a7112379ff 100644 (file)
@@ -6,7 +6,7 @@
 #include <stdio.h>
 
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_string_fns.h>
 
 #include "rte_eth_softnic_internals.h"
diff --git a/lib/cryptodev/cryptodev_pmd.c b/lib/cryptodev/cryptodev_pmd.c
new file mode 100644 (file)
index 0000000..71e3414
--- /dev/null
@@ -0,0 +1,160 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation
+ */
+
+#include <rte_string_fns.h>
+#include <rte_malloc.h>
+
+#include "cryptodev_pmd.h"
+
+/**
+ * Parse name from argument
+ */
+static int
+rte_cryptodev_pmd_parse_name_arg(const char *key __rte_unused,
+               const char *value, void *extra_args)
+{
+       struct rte_cryptodev_pmd_init_params *params = extra_args;
+       int n;
+
+       n = strlcpy(params->name, value, RTE_CRYPTODEV_NAME_MAX_LEN);
+       if (n >= RTE_CRYPTODEV_NAME_MAX_LEN)
+               return -EINVAL;
+
+       return 0;
+}
+
+/**
+ * Parse unsigned integer from argument
+ */
+static int
+rte_cryptodev_pmd_parse_uint_arg(const char *key __rte_unused,
+               const char *value, void *extra_args)
+{
+       int i;
+       char *end;
+       errno = 0;
+
+       i = strtol(value, &end, 10);
+       if (*end != 0 || errno != 0 || i < 0)
+               return -EINVAL;
+
+       *((uint32_t *)extra_args) = i;
+       return 0;
+}
+
+int
+rte_cryptodev_pmd_parse_input_args(
+               struct rte_cryptodev_pmd_init_params *params,
+               const char *args)
+{
+       struct rte_kvargs *kvlist = NULL;
+       int ret = 0;
+
+       if (params == NULL)
+               return -EINVAL;
+
+       if (args) {
+               kvlist = rte_kvargs_parse(args, cryptodev_pmd_valid_params);
+               if (kvlist == NULL)
+                       return -EINVAL;
+
+               ret = rte_kvargs_process(kvlist,
+                               RTE_CRYPTODEV_PMD_MAX_NB_QP_ARG,
+                               &rte_cryptodev_pmd_parse_uint_arg,
+                               &params->max_nb_queue_pairs);
+               if (ret < 0)
+                       goto free_kvlist;
+
+               ret = rte_kvargs_process(kvlist,
+                               RTE_CRYPTODEV_PMD_SOCKET_ID_ARG,
+                               &rte_cryptodev_pmd_parse_uint_arg,
+                               &params->socket_id);
+               if (ret < 0)
+                       goto free_kvlist;
+
+               ret = rte_kvargs_process(kvlist,
+                               RTE_CRYPTODEV_PMD_NAME_ARG,
+                               &rte_cryptodev_pmd_parse_name_arg,
+                               params);
+               if (ret < 0)
+                       goto free_kvlist;
+       }
+
+free_kvlist:
+       rte_kvargs_free(kvlist);
+       return ret;
+}
+
+struct rte_cryptodev *
+rte_cryptodev_pmd_create(const char *name,
+               struct rte_device *device,
+               struct rte_cryptodev_pmd_init_params *params)
+{
+       struct rte_cryptodev *cryptodev;
+
+       if (params->name[0] != '\0') {
+               CDEV_LOG_INFO("User specified device name = %s\n", params->name);
+               name = params->name;
+       }
+
+       CDEV_LOG_INFO("Creating cryptodev %s\n", name);
+
+       CDEV_LOG_INFO("Initialisation parameters - name: %s,"
+                       "socket id: %d, max queue pairs: %u",
+                       name, params->socket_id, params->max_nb_queue_pairs);
+
+       /* allocate device structure */
+       cryptodev = rte_cryptodev_pmd_allocate(name, params->socket_id);
+       if (cryptodev == NULL) {
+               CDEV_LOG_ERR("Failed to allocate crypto device for %s", name);
+               return NULL;
+       }
+
+       /* allocate private device structure */
+       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
+               cryptodev->data->dev_private =
+                               rte_zmalloc_socket("cryptodev device private",
+                                               params->private_data_size,
+                                               RTE_CACHE_LINE_SIZE,
+                                               params->socket_id);
+
+               if (cryptodev->data->dev_private == NULL) {
+                       CDEV_LOG_ERR("Cannot allocate memory for cryptodev %s"
+                                       " private data", name);
+
+                       rte_cryptodev_pmd_release_device(cryptodev);
+                       return NULL;
+               }
+       }
+
+       cryptodev->device = device;
+
+       /* initialise user call-back tail queue */
+       TAILQ_INIT(&(cryptodev->link_intr_cbs));
+
+       return cryptodev;
+}
+
+int
+rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev)
+{
+       int retval;
+       void *dev_priv = cryptodev->data->dev_private;
+
+       CDEV_LOG_INFO("Closing crypto device %s", cryptodev->device->name);
+
+       /* free crypto device */
+       retval = rte_cryptodev_pmd_release_device(cryptodev);
+       if (retval)
+               return retval;
+
+       if (rte_eal_process_type() == RTE_PROC_PRIMARY)
+               rte_free(dev_priv);
+
+
+       cryptodev->device = NULL;
+       cryptodev->data = NULL;
+
+       return 0;
+}
diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h
new file mode 100644 (file)
index 0000000..ec7bb82
--- /dev/null
@@ -0,0 +1,568 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2015-2020 Intel Corporation.
+ */
+
+#ifndef _CRYPTODEV_PMD_H_
+#define _CRYPTODEV_PMD_H_
+
+/** @file
+ * RTE Crypto PMD APIs
+ *
+ * @note
+ * These API are from crypto PMD only and user applications should not call
+ * them directly.
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <string.h>
+
+#include <rte_config.h>
+#include <rte_dev.h>
+#include <rte_malloc.h>
+#include <rte_mbuf.h>
+#include <rte_mempool.h>
+#include <rte_log.h>
+#include <rte_common.h>
+
+#include "rte_crypto.h"
+#include "rte_cryptodev.h"
+
+
+#define RTE_CRYPTODEV_PMD_DEFAULT_MAX_NB_QUEUE_PAIRS   8
+
+#define RTE_CRYPTODEV_PMD_NAME_ARG                     ("name")
+#define RTE_CRYPTODEV_PMD_MAX_NB_QP_ARG                        ("max_nb_queue_pairs")
+#define RTE_CRYPTODEV_PMD_SOCKET_ID_ARG                        ("socket_id")
+
+
+static const char * const cryptodev_pmd_valid_params[] = {
+       RTE_CRYPTODEV_PMD_NAME_ARG,
+       RTE_CRYPTODEV_PMD_MAX_NB_QP_ARG,
+       RTE_CRYPTODEV_PMD_SOCKET_ID_ARG,
+       NULL
+};
+
+/**
+ * @internal
+ * Initialisation parameters for crypto devices
+ */
+struct rte_cryptodev_pmd_init_params {
+       char name[RTE_CRYPTODEV_NAME_MAX_LEN];
+       size_t private_data_size;
+       int socket_id;
+       unsigned int max_nb_queue_pairs;
+};
+
+/** Global structure used for maintaining state of allocated crypto devices */
+struct rte_cryptodev_global {
+       struct rte_cryptodev *devs;     /**< Device information array */
+       struct rte_cryptodev_data *data[RTE_CRYPTO_MAX_DEVS];
+       /**< Device private data */
+       uint8_t nb_devs;                /**< Number of devices found */
+};
+
+/* Cryptodev driver, containing the driver ID */
+struct cryptodev_driver {
+       TAILQ_ENTRY(cryptodev_driver) next; /**< Next in list. */
+       const struct rte_driver *driver;
+       uint8_t id;
+};
+
+/**
+ * Get the rte_cryptodev structure device pointer for the device. Assumes a
+ * valid device index.
+ *
+ * @param      dev_id  Device ID value to select the device structure.
+ *
+ * @return
+ *   - The rte_cryptodev structure pointer for the given device ID.
+ */
+__rte_internal
+struct rte_cryptodev *
+rte_cryptodev_pmd_get_dev(uint8_t dev_id);
+
+/**
+ * Get the rte_cryptodev structure device pointer for the named device.
+ *
+ * @param      name    device name to select the device structure.
+ *
+ * @return
+ *   - The rte_cryptodev structure pointer for the given device ID.
+ */
+__rte_internal
+struct rte_cryptodev *
+rte_cryptodev_pmd_get_named_dev(const char *name);
+
+/**
+ * The pool of rte_cryptodev structures.
+ */
+extern struct rte_cryptodev *rte_cryptodevs;
+
+
+/**
+ * Definitions of all functions exported by a driver through the
+ * the generic structure of type *crypto_dev_ops* supplied in the
+ * *rte_cryptodev* structure associated with a device.
+ */
+
+/**
+ *     Function used to configure device.
+ *
+ * @param      dev     Crypto device pointer
+ * @param      config  Crypto device configurations
+ *
+ * @return     Returns 0 on success
+ */
+typedef int (*cryptodev_configure_t)(struct rte_cryptodev *dev,
+               struct rte_cryptodev_config *config);
+
+/**
+ * Function used to start a configured device.
+ *
+ * @param      dev     Crypto device pointer
+ *
+ * @return     Returns 0 on success
+ */
+typedef int (*cryptodev_start_t)(struct rte_cryptodev *dev);
+
+/**
+ * Function used to stop a configured device.
+ *
+ * @param      dev     Crypto device pointer
+ */
+typedef void (*cryptodev_stop_t)(struct rte_cryptodev *dev);
+
+/**
+ * Function used to close a configured device.
+ *
+ * @param      dev     Crypto device pointer
+ * @return
+ * - 0 on success.
+ * - EAGAIN if can't close as device is busy
+ */
+typedef int (*cryptodev_close_t)(struct rte_cryptodev *dev);
+
+
+/**
+ * Function used to get statistics of a device.
+ *
+ * @param      dev     Crypto device pointer
+ * @param      stats   Pointer to crypto device stats structure to populate
+ */
+typedef void (*cryptodev_stats_get_t)(struct rte_cryptodev *dev,
+                               struct rte_cryptodev_stats *stats);
+
+
+/**
+ * Function used to reset statistics of a device.
+ *
+ * @param      dev     Crypto device pointer
+ */
+typedef void (*cryptodev_stats_reset_t)(struct rte_cryptodev *dev);
+
+
+/**
+ * Function used to get specific information of a device.
+ *
+ * @param      dev             Crypto device pointer
+ * @param      dev_info        Pointer to infos structure to populate
+ */
+typedef void (*cryptodev_info_get_t)(struct rte_cryptodev *dev,
+                               struct rte_cryptodev_info *dev_info);
+
+/**
+ * Setup a queue pair for a device.
+ *
+ * @param      dev             Crypto device pointer
+ * @param      qp_id           Queue Pair Index
+ * @param      qp_conf         Queue configuration structure
+ * @param      socket_id       Socket Index
+ *
+ * @return     Returns 0 on success.
+ */
+typedef int (*cryptodev_queue_pair_setup_t)(struct rte_cryptodev *dev,
+               uint16_t qp_id, const struct rte_cryptodev_qp_conf *qp_conf,
+               int socket_id);
+
+/**
+ * Release memory resources allocated by given queue pair.
+ *
+ * @param      dev     Crypto device pointer
+ * @param      qp_id   Queue Pair Index
+ *
+ * @return
+ * - 0 on success.
+ * - EAGAIN if can't close as device is busy
+ */
+typedef int (*cryptodev_queue_pair_release_t)(struct rte_cryptodev *dev,
+               uint16_t qp_id);
+
+/**
+ * Create a session mempool to allocate sessions from
+ *
+ * @param      dev             Crypto device pointer
+ * @param      nb_objs         number of sessions objects in mempool
+ * @param      obj_cache_size  l-core object cache size, see *rte_ring_create*
+ * @param      socket_id       Socket Id to allocate  mempool on.
+ *
+ * @return
+ * - On success returns a pointer to a rte_mempool
+ * - On failure returns a NULL pointer
+ */
+typedef int (*cryptodev_sym_create_session_pool_t)(
+               struct rte_cryptodev *dev, unsigned nb_objs,
+               unsigned obj_cache_size, int socket_id);
+
+
+/**
+ * Get the size of a cryptodev session
+ *
+ * @param      dev             Crypto device pointer
+ *
+ * @return
+ *  - On success returns the size of the session structure for device
+ *  - On failure returns 0
+ */
+typedef unsigned (*cryptodev_sym_get_session_private_size_t)(
+               struct rte_cryptodev *dev);
+/**
+ * Get the size of a asymmetric cryptodev session
+ *
+ * @param      dev             Crypto device pointer
+ *
+ * @return
+ *  - On success returns the size of the session structure for device
+ *  - On failure returns 0
+ */
+typedef unsigned int (*cryptodev_asym_get_session_private_size_t)(
+               struct rte_cryptodev *dev);
+
+/**
+ * Configure a Crypto session on a device.
+ *
+ * @param      dev             Crypto device pointer
+ * @param      xform           Single or chain of crypto xforms
+ * @param      session         Pointer to cryptodev's private session structure
+ * @param      mp              Mempool where the private session is allocated
+ *
+ * @return
+ *  - Returns 0 if private session structure have been created successfully.
+ *  - Returns -EINVAL if input parameters are invalid.
+ *  - Returns -ENOTSUP if crypto device does not support the crypto transform.
+ *  - Returns -ENOMEM if the private session could not be allocated.
+ */
+typedef int (*cryptodev_sym_configure_session_t)(struct rte_cryptodev *dev,
+               struct rte_crypto_sym_xform *xform,
+               struct rte_cryptodev_sym_session *session,
+               struct rte_mempool *mp);
+/**
+ * Configure a Crypto asymmetric session on a device.
+ *
+ * @param      dev             Crypto device pointer
+ * @param      xform           Single or chain of crypto xforms
+ * @param      session         Pointer to cryptodev's private session structure
+ * @param      mp              Mempool where the private session is allocated
+ *
+ * @return
+ *  - Returns 0 if private session structure have been created successfully.
+ *  - Returns -EINVAL if input parameters are invalid.
+ *  - Returns -ENOTSUP if crypto device does not support the crypto transform.
+ *  - Returns -ENOMEM if the private session could not be allocated.
+ */
+typedef int (*cryptodev_asym_configure_session_t)(struct rte_cryptodev *dev,
+               struct rte_crypto_asym_xform *xform,
+               struct rte_cryptodev_asym_session *session,
+               struct rte_mempool *mp);
+/**
+ * Free driver private session data.
+ *
+ * @param      dev             Crypto device pointer
+ * @param      sess            Cryptodev session structure
+ */
+typedef void (*cryptodev_sym_free_session_t)(struct rte_cryptodev *dev,
+               struct rte_cryptodev_sym_session *sess);
+/**
+ * Free asymmetric session private data.
+ *
+ * @param      dev             Crypto device pointer
+ * @param      sess            Cryptodev session structure
+ */
+typedef void (*cryptodev_asym_free_session_t)(struct rte_cryptodev *dev,
+               struct rte_cryptodev_asym_session *sess);
+/**
+ * Perform actual crypto processing (encrypt/digest or auth/decrypt)
+ * on user provided data.
+ *
+ * @param      dev     Crypto device pointer
+ * @param      sess    Cryptodev session structure
+ * @param      ofs     Start and stop offsets for auth and cipher operations
+ * @param      vec     Vectorized operation descriptor
+ *
+ * @return
+ *  - Returns number of successfully processed packets.
+ *
+ */
+typedef uint32_t (*cryptodev_sym_cpu_crypto_process_t)
+       (struct rte_cryptodev *dev, struct rte_cryptodev_sym_session *sess,
+       union rte_crypto_sym_ofs ofs, struct rte_crypto_sym_vec *vec);
+
+/**
+ * Typedef that the driver provided to get service context private date size.
+ *
+ * @param      dev     Crypto device pointer.
+ *
+ * @return
+ *   - On success return the size of the device's service context private data.
+ *   - On failure return negative integer.
+ */
+typedef int (*cryptodev_sym_get_raw_dp_ctx_size_t)(struct rte_cryptodev *dev);
+
+/**
+ * Typedef that the driver provided to configure raw data-path context.
+ *
+ * @param      dev             Crypto device pointer.
+ * @param      qp_id           Crypto device queue pair index.
+ * @param      ctx             The raw data-path context data.
+ * @param      sess_type       session type.
+ * @param      session_ctx     Session context data. If NULL the driver
+ *                             shall only configure the drv_ctx_data in
+ *                             ctx buffer. Otherwise the driver shall only
+ *                             parse the session_ctx to set appropriate
+ *                             function pointers in ctx.
+ * @param      is_update       Set 0 if it is to initialize the ctx.
+ *                             Set 1 if ctx is initialized and only to update
+ *                             session context data.
+ * @return
+ *   - On success return 0.
+ *   - On failure return negative integer.
+ */
+typedef int (*cryptodev_sym_configure_raw_dp_ctx_t)(
+       struct rte_cryptodev *dev, uint16_t qp_id,
+       struct rte_crypto_raw_dp_ctx *ctx,
+       enum rte_crypto_op_sess_type sess_type,
+       union rte_cryptodev_session_ctx session_ctx, uint8_t is_update);
+
+/** Crypto device operations function pointer table */
+struct rte_cryptodev_ops {
+       cryptodev_configure_t dev_configure;    /**< Configure device. */
+       cryptodev_start_t dev_start;            /**< Start device. */
+       cryptodev_stop_t dev_stop;              /**< Stop device. */
+       cryptodev_close_t dev_close;            /**< Close device. */
+
+       cryptodev_info_get_t dev_infos_get;     /**< Get device info. */
+
+       cryptodev_stats_get_t stats_get;
+       /**< Get device statistics. */
+       cryptodev_stats_reset_t stats_reset;
+       /**< Reset device statistics. */
+
+       cryptodev_queue_pair_setup_t queue_pair_setup;
+       /**< Set up a device queue pair. */
+       cryptodev_queue_pair_release_t queue_pair_release;
+       /**< Release a queue pair. */
+
+       cryptodev_sym_get_session_private_size_t sym_session_get_size;
+       /**< Return private session. */
+       cryptodev_asym_get_session_private_size_t asym_session_get_size;
+       /**< Return asym session private size. */
+       cryptodev_sym_configure_session_t sym_session_configure;
+       /**< Configure a Crypto session. */
+       cryptodev_asym_configure_session_t asym_session_configure;
+       /**< Configure asymmetric Crypto session. */
+       cryptodev_sym_free_session_t sym_session_clear;
+       /**< Clear a Crypto sessions private data. */
+       cryptodev_asym_free_session_t asym_session_clear;
+       /**< Clear a Crypto sessions private data. */
+       union {
+               cryptodev_sym_cpu_crypto_process_t sym_cpu_process;
+               /**< process input data synchronously (cpu-crypto). */
+               __extension__
+               struct {
+                       cryptodev_sym_get_raw_dp_ctx_size_t
+                               sym_get_raw_dp_ctx_size;
+                       /**< Get raw data path service context data size. */
+                       cryptodev_sym_configure_raw_dp_ctx_t
+                               sym_configure_raw_dp_ctx;
+                       /**< Initialize raw data path context data. */
+               };
+       };
+};
+
+
+/**
+ * Function for internal use by dummy drivers primarily, e.g. ring-based
+ * driver.
+ * Allocates a new cryptodev slot for an crypto device and returns the pointer
+ * to that slot for the driver to use.
+ *
+ * @param      name            Unique identifier name for each device
+ * @param      socket_id       Socket to allocate resources on.
+ * @return
+ *   - Slot in the rte_dev_devices array for a new device;
+ */
+__rte_internal
+struct rte_cryptodev *
+rte_cryptodev_pmd_allocate(const char *name, int socket_id);
+
+/**
+ * Function for internal use by dummy drivers primarily, e.g. ring-based
+ * driver.
+ * Release the specified cryptodev device.
+ *
+ * @param cryptodev
+ * The *cryptodev* pointer is the address of the *rte_cryptodev* structure.
+ * @return
+ *   - 0 on success, negative on error
+ */
+__rte_internal
+extern int
+rte_cryptodev_pmd_release_device(struct rte_cryptodev *cryptodev);
+
+
+/**
+ * @internal
+ *
+ * PMD assist function to parse initialisation arguments for crypto driver
+ * when creating a new crypto PMD device instance.
+ *
+ * PMD driver should set default values for that PMD before calling function,
+ * these default values will be over-written with successfully parsed values
+ * from args string.
+ *
+ * @param      params  parsed PMD initialisation parameters
+ * @param      args    input argument string to parse
+ *
+ * @return
+ *  - 0 on success
+ *  - errno on failure
+ */
+__rte_internal
+int
+rte_cryptodev_pmd_parse_input_args(
+               struct rte_cryptodev_pmd_init_params *params,
+               const char *args);
+
+/**
+ * @internal
+ *
+ * PMD assist function to provide boiler plate code for crypto driver to create
+ * and allocate resources for a new crypto PMD device instance.
+ *
+ * @param      name    crypto device name.
+ * @param      device  base device instance
+ * @param      params  PMD initialisation parameters
+ *
+ * @return
+ *  - crypto device instance on success
+ *  - NULL on creation failure
+ */
+__rte_internal
+struct rte_cryptodev *
+rte_cryptodev_pmd_create(const char *name,
+               struct rte_device *device,
+               struct rte_cryptodev_pmd_init_params *params);
+
+/**
+ * @internal
+ *
+ * PMD assist function to provide boiler plate code for crypto driver to
+ * destroy and free resources associated with a crypto PMD device instance.
+ *
+ * @param      cryptodev       crypto device handle.
+ *
+ * @return
+ *  - 0 on success
+ *  - errno on failure
+ */
+__rte_internal
+int
+rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev);
+
+/**
+ * Executes all the user application registered callbacks for the specific
+ * device.
+ *  *
+ * @param      dev     Pointer to cryptodev struct
+ * @param      event   Crypto device interrupt event type.
+ *
+ * @return
+ *  void
+ */
+__rte_internal
+void rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
+                               enum rte_cryptodev_event_type event);
+
+/**
+ * @internal
+ * Create unique device name
+ */
+__rte_internal
+int
+rte_cryptodev_pmd_create_dev_name(char *name, const char *dev_name_prefix);
+
+/**
+ * @internal
+ * Allocate Cryptodev driver.
+ *
+ * @param crypto_drv
+ *   Pointer to cryptodev_driver.
+ * @param drv
+ *   Pointer to rte_driver.
+ *
+ * @return
+ *  The driver type identifier
+ */
+__rte_internal
+uint8_t rte_cryptodev_allocate_driver(struct cryptodev_driver *crypto_drv,
+               const struct rte_driver *drv);
+
+
+#define RTE_PMD_REGISTER_CRYPTO_DRIVER(crypto_drv, drv, driver_id)\
+RTE_INIT(init_ ##driver_id)\
+{\
+       driver_id = rte_cryptodev_allocate_driver(&crypto_drv, &(drv));\
+}
+
+static inline void *
+get_sym_session_private_data(const struct rte_cryptodev_sym_session *sess,
+               uint8_t driver_id) {
+       if (unlikely(sess->nb_drivers <= driver_id))
+               return NULL;
+
+       return sess->sess_data[driver_id].data;
+}
+
+static inline void
+set_sym_session_private_data(struct rte_cryptodev_sym_session *sess,
+               uint8_t driver_id, void *private_data)
+{
+       if (unlikely(sess->nb_drivers <= driver_id)) {
+               CDEV_LOG_ERR("Set private data for driver %u not allowed\n",
+                               driver_id);
+               return;
+       }
+
+       sess->sess_data[driver_id].data = private_data;
+}
+
+static inline void *
+get_asym_session_private_data(const struct rte_cryptodev_asym_session *sess,
+               uint8_t driver_id) {
+       return sess->sess_private_data[driver_id];
+}
+
+static inline void
+set_asym_session_private_data(struct rte_cryptodev_asym_session *sess,
+               uint8_t driver_id, void *private_data)
+{
+       sess->sess_private_data[driver_id] = private_data;
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _CRYPTODEV_PMD_H_ */
index bec80beab32f223c25fe9a44cb342c456e0db2b3..735935df4a051a29fc52a02a1be72e440472c47f 100644 (file)
@@ -1,12 +1,22 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017-2019 Intel Corporation
 
-sources = files('rte_cryptodev.c', 'rte_cryptodev_pmd.c', 'cryptodev_trace_points.c')
-headers = files('rte_cryptodev.h',
-        'rte_cryptodev_pmd.h',
+sources = files(
+        'cryptodev_pmd.c',
+       'cryptodev_trace_points.c',
+        'rte_cryptodev.c',
+)
+headers = files(
+        'rte_cryptodev.h',
         'rte_cryptodev_trace.h',
         'rte_cryptodev_trace_fp.h',
         'rte_crypto.h',
         'rte_crypto_sym.h',
-        'rte_crypto_asym.h')
+        'rte_crypto_asym.h',
+)
+
+driver_sdk_headers += files(
+        'cryptodev_pmd.h',
+)
+
 deps += ['kvargs', 'mbuf', 'rcu']
index 37502b9b3c4e6dcb1b945e805c11a2cc5fd715fb..9fa3aff1d372f05693f879e916aa59c6493b2d04 100644 (file)
@@ -39,7 +39,7 @@
 
 #include "rte_crypto.h"
 #include "rte_cryptodev.h"
-#include "rte_cryptodev_pmd.h"
+#include "cryptodev_pmd.h"
 #include "rte_cryptodev_trace.h"
 
 static uint8_t nb_drivers;
diff --git a/lib/cryptodev/rte_cryptodev_pmd.c b/lib/cryptodev/rte_cryptodev_pmd.c
deleted file mode 100644 (file)
index e342daa..0000000
+++ /dev/null
@@ -1,160 +0,0 @@
-/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2017 Intel Corporation
- */
-
-#include <rte_string_fns.h>
-#include <rte_malloc.h>
-
-#include "rte_cryptodev_pmd.h"
-
-/**
- * Parse name from argument
- */
-static int
-rte_cryptodev_pmd_parse_name_arg(const char *key __rte_unused,
-               const char *value, void *extra_args)
-{
-       struct rte_cryptodev_pmd_init_params *params = extra_args;
-       int n;
-
-       n = strlcpy(params->name, value, RTE_CRYPTODEV_NAME_MAX_LEN);
-       if (n >= RTE_CRYPTODEV_NAME_MAX_LEN)
-               return -EINVAL;
-
-       return 0;
-}
-
-/**
- * Parse unsigned integer from argument
- */
-static int
-rte_cryptodev_pmd_parse_uint_arg(const char *key __rte_unused,
-               const char *value, void *extra_args)
-{
-       int i;
-       char *end;
-       errno = 0;
-
-       i = strtol(value, &end, 10);
-       if (*end != 0 || errno != 0 || i < 0)
-               return -EINVAL;
-
-       *((uint32_t *)extra_args) = i;
-       return 0;
-}
-
-int
-rte_cryptodev_pmd_parse_input_args(
-               struct rte_cryptodev_pmd_init_params *params,
-               const char *args)
-{
-       struct rte_kvargs *kvlist = NULL;
-       int ret = 0;
-
-       if (params == NULL)
-               return -EINVAL;
-
-       if (args) {
-               kvlist = rte_kvargs_parse(args, cryptodev_pmd_valid_params);
-               if (kvlist == NULL)
-                       return -EINVAL;
-
-               ret = rte_kvargs_process(kvlist,
-                               RTE_CRYPTODEV_PMD_MAX_NB_QP_ARG,
-                               &rte_cryptodev_pmd_parse_uint_arg,
-                               &params->max_nb_queue_pairs);
-               if (ret < 0)
-                       goto free_kvlist;
-
-               ret = rte_kvargs_process(kvlist,
-                               RTE_CRYPTODEV_PMD_SOCKET_ID_ARG,
-                               &rte_cryptodev_pmd_parse_uint_arg,
-                               &params->socket_id);
-               if (ret < 0)
-                       goto free_kvlist;
-
-               ret = rte_kvargs_process(kvlist,
-                               RTE_CRYPTODEV_PMD_NAME_ARG,
-                               &rte_cryptodev_pmd_parse_name_arg,
-                               params);
-               if (ret < 0)
-                       goto free_kvlist;
-       }
-
-free_kvlist:
-       rte_kvargs_free(kvlist);
-       return ret;
-}
-
-struct rte_cryptodev *
-rte_cryptodev_pmd_create(const char *name,
-               struct rte_device *device,
-               struct rte_cryptodev_pmd_init_params *params)
-{
-       struct rte_cryptodev *cryptodev;
-
-       if (params->name[0] != '\0') {
-               CDEV_LOG_INFO("User specified device name = %s\n", params->name);
-               name = params->name;
-       }
-
-       CDEV_LOG_INFO("Creating cryptodev %s\n", name);
-
-       CDEV_LOG_INFO("Initialisation parameters - name: %s,"
-                       "socket id: %d, max queue pairs: %u",
-                       name, params->socket_id, params->max_nb_queue_pairs);
-
-       /* allocate device structure */
-       cryptodev = rte_cryptodev_pmd_allocate(name, params->socket_id);
-       if (cryptodev == NULL) {
-               CDEV_LOG_ERR("Failed to allocate crypto device for %s", name);
-               return NULL;
-       }
-
-       /* allocate private device structure */
-       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
-               cryptodev->data->dev_private =
-                               rte_zmalloc_socket("cryptodev device private",
-                                               params->private_data_size,
-                                               RTE_CACHE_LINE_SIZE,
-                                               params->socket_id);
-
-               if (cryptodev->data->dev_private == NULL) {
-                       CDEV_LOG_ERR("Cannot allocate memory for cryptodev %s"
-                                       " private data", name);
-
-                       rte_cryptodev_pmd_release_device(cryptodev);
-                       return NULL;
-               }
-       }
-
-       cryptodev->device = device;
-
-       /* initialise user call-back tail queue */
-       TAILQ_INIT(&(cryptodev->link_intr_cbs));
-
-       return cryptodev;
-}
-
-int
-rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev)
-{
-       int retval;
-       void *dev_priv = cryptodev->data->dev_private;
-
-       CDEV_LOG_INFO("Closing crypto device %s", cryptodev->device->name);
-
-       /* free crypto device */
-       retval = rte_cryptodev_pmd_release_device(cryptodev);
-       if (retval)
-               return retval;
-
-       if (rte_eal_process_type() == RTE_PROC_PRIMARY)
-               rte_free(dev_priv);
-
-
-       cryptodev->device = NULL;
-       cryptodev->data = NULL;
-
-       return 0;
-}
diff --git a/lib/cryptodev/rte_cryptodev_pmd.h b/lib/cryptodev/rte_cryptodev_pmd.h
deleted file mode 100644 (file)
index dd2a494..0000000
+++ /dev/null
@@ -1,558 +0,0 @@
-/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2015-2020 Intel Corporation.
- */
-
-#ifndef _RTE_CRYPTODEV_PMD_H_
-#define _RTE_CRYPTODEV_PMD_H_
-
-/** @file
- * RTE Crypto PMD APIs
- *
- * @note
- * These API are from crypto PMD only and user applications should not call
- * them directly.
- */
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <string.h>
-
-#include <rte_config.h>
-#include <rte_dev.h>
-#include <rte_malloc.h>
-#include <rte_mbuf.h>
-#include <rte_mempool.h>
-#include <rte_log.h>
-#include <rte_common.h>
-
-#include "rte_crypto.h"
-#include "rte_cryptodev.h"
-
-
-#define RTE_CRYPTODEV_PMD_DEFAULT_MAX_NB_QUEUE_PAIRS   8
-
-#define RTE_CRYPTODEV_PMD_NAME_ARG                     ("name")
-#define RTE_CRYPTODEV_PMD_MAX_NB_QP_ARG                        ("max_nb_queue_pairs")
-#define RTE_CRYPTODEV_PMD_SOCKET_ID_ARG                        ("socket_id")
-
-
-static const char * const cryptodev_pmd_valid_params[] = {
-       RTE_CRYPTODEV_PMD_NAME_ARG,
-       RTE_CRYPTODEV_PMD_MAX_NB_QP_ARG,
-       RTE_CRYPTODEV_PMD_SOCKET_ID_ARG,
-       NULL
-};
-
-/**
- * @internal
- * Initialisation parameters for crypto devices
- */
-struct rte_cryptodev_pmd_init_params {
-       char name[RTE_CRYPTODEV_NAME_MAX_LEN];
-       size_t private_data_size;
-       int socket_id;
-       unsigned int max_nb_queue_pairs;
-};
-
-/** Global structure used for maintaining state of allocated crypto devices */
-struct rte_cryptodev_global {
-       struct rte_cryptodev *devs;     /**< Device information array */
-       struct rte_cryptodev_data *data[RTE_CRYPTO_MAX_DEVS];
-       /**< Device private data */
-       uint8_t nb_devs;                /**< Number of devices found */
-};
-
-/* Cryptodev driver, containing the driver ID */
-struct cryptodev_driver {
-       TAILQ_ENTRY(cryptodev_driver) next; /**< Next in list. */
-       const struct rte_driver *driver;
-       uint8_t id;
-};
-
-/**
- * Get the rte_cryptodev structure device pointer for the device. Assumes a
- * valid device index.
- *
- * @param      dev_id  Device ID value to select the device structure.
- *
- * @return
- *   - The rte_cryptodev structure pointer for the given device ID.
- */
-struct rte_cryptodev *
-rte_cryptodev_pmd_get_dev(uint8_t dev_id);
-
-/**
- * Get the rte_cryptodev structure device pointer for the named device.
- *
- * @param      name    device name to select the device structure.
- *
- * @return
- *   - The rte_cryptodev structure pointer for the given device ID.
- */
-struct rte_cryptodev *
-rte_cryptodev_pmd_get_named_dev(const char *name);
-
-/**
- * The pool of rte_cryptodev structures.
- */
-extern struct rte_cryptodev *rte_cryptodevs;
-
-
-/**
- * Definitions of all functions exported by a driver through the
- * the generic structure of type *crypto_dev_ops* supplied in the
- * *rte_cryptodev* structure associated with a device.
- */
-
-/**
- *     Function used to configure device.
- *
- * @param      dev     Crypto device pointer
- * @param      config  Crypto device configurations
- *
- * @return     Returns 0 on success
- */
-typedef int (*cryptodev_configure_t)(struct rte_cryptodev *dev,
-               struct rte_cryptodev_config *config);
-
-/**
- * Function used to start a configured device.
- *
- * @param      dev     Crypto device pointer
- *
- * @return     Returns 0 on success
- */
-typedef int (*cryptodev_start_t)(struct rte_cryptodev *dev);
-
-/**
- * Function used to stop a configured device.
- *
- * @param      dev     Crypto device pointer
- */
-typedef void (*cryptodev_stop_t)(struct rte_cryptodev *dev);
-
-/**
- * Function used to close a configured device.
- *
- * @param      dev     Crypto device pointer
- * @return
- * - 0 on success.
- * - EAGAIN if can't close as device is busy
- */
-typedef int (*cryptodev_close_t)(struct rte_cryptodev *dev);
-
-
-/**
- * Function used to get statistics of a device.
- *
- * @param      dev     Crypto device pointer
- * @param      stats   Pointer to crypto device stats structure to populate
- */
-typedef void (*cryptodev_stats_get_t)(struct rte_cryptodev *dev,
-                               struct rte_cryptodev_stats *stats);
-
-
-/**
- * Function used to reset statistics of a device.
- *
- * @param      dev     Crypto device pointer
- */
-typedef void (*cryptodev_stats_reset_t)(struct rte_cryptodev *dev);
-
-
-/**
- * Function used to get specific information of a device.
- *
- * @param      dev             Crypto device pointer
- * @param      dev_info        Pointer to infos structure to populate
- */
-typedef void (*cryptodev_info_get_t)(struct rte_cryptodev *dev,
-                               struct rte_cryptodev_info *dev_info);
-
-/**
- * Setup a queue pair for a device.
- *
- * @param      dev             Crypto device pointer
- * @param      qp_id           Queue Pair Index
- * @param      qp_conf         Queue configuration structure
- * @param      socket_id       Socket Index
- *
- * @return     Returns 0 on success.
- */
-typedef int (*cryptodev_queue_pair_setup_t)(struct rte_cryptodev *dev,
-               uint16_t qp_id, const struct rte_cryptodev_qp_conf *qp_conf,
-               int socket_id);
-
-/**
- * Release memory resources allocated by given queue pair.
- *
- * @param      dev     Crypto device pointer
- * @param      qp_id   Queue Pair Index
- *
- * @return
- * - 0 on success.
- * - EAGAIN if can't close as device is busy
- */
-typedef int (*cryptodev_queue_pair_release_t)(struct rte_cryptodev *dev,
-               uint16_t qp_id);
-
-/**
- * Create a session mempool to allocate sessions from
- *
- * @param      dev             Crypto device pointer
- * @param      nb_objs         number of sessions objects in mempool
- * @param      obj_cache_size  l-core object cache size, see *rte_ring_create*
- * @param      socket_id       Socket Id to allocate  mempool on.
- *
- * @return
- * - On success returns a pointer to a rte_mempool
- * - On failure returns a NULL pointer
- */
-typedef int (*cryptodev_sym_create_session_pool_t)(
-               struct rte_cryptodev *dev, unsigned nb_objs,
-               unsigned obj_cache_size, int socket_id);
-
-
-/**
- * Get the size of a cryptodev session
- *
- * @param      dev             Crypto device pointer
- *
- * @return
- *  - On success returns the size of the session structure for device
- *  - On failure returns 0
- */
-typedef unsigned (*cryptodev_sym_get_session_private_size_t)(
-               struct rte_cryptodev *dev);
-/**
- * Get the size of a asymmetric cryptodev session
- *
- * @param      dev             Crypto device pointer
- *
- * @return
- *  - On success returns the size of the session structure for device
- *  - On failure returns 0
- */
-typedef unsigned int (*cryptodev_asym_get_session_private_size_t)(
-               struct rte_cryptodev *dev);
-
-/**
- * Configure a Crypto session on a device.
- *
- * @param      dev             Crypto device pointer
- * @param      xform           Single or chain of crypto xforms
- * @param      session         Pointer to cryptodev's private session structure
- * @param      mp              Mempool where the private session is allocated
- *
- * @return
- *  - Returns 0 if private session structure have been created successfully.
- *  - Returns -EINVAL if input parameters are invalid.
- *  - Returns -ENOTSUP if crypto device does not support the crypto transform.
- *  - Returns -ENOMEM if the private session could not be allocated.
- */
-typedef int (*cryptodev_sym_configure_session_t)(struct rte_cryptodev *dev,
-               struct rte_crypto_sym_xform *xform,
-               struct rte_cryptodev_sym_session *session,
-               struct rte_mempool *mp);
-/**
- * Configure a Crypto asymmetric session on a device.
- *
- * @param      dev             Crypto device pointer
- * @param      xform           Single or chain of crypto xforms
- * @param      session         Pointer to cryptodev's private session structure
- * @param      mp              Mempool where the private session is allocated
- *
- * @return
- *  - Returns 0 if private session structure have been created successfully.
- *  - Returns -EINVAL if input parameters are invalid.
- *  - Returns -ENOTSUP if crypto device does not support the crypto transform.
- *  - Returns -ENOMEM if the private session could not be allocated.
- */
-typedef int (*cryptodev_asym_configure_session_t)(struct rte_cryptodev *dev,
-               struct rte_crypto_asym_xform *xform,
-               struct rte_cryptodev_asym_session *session,
-               struct rte_mempool *mp);
-/**
- * Free driver private session data.
- *
- * @param      dev             Crypto device pointer
- * @param      sess            Cryptodev session structure
- */
-typedef void (*cryptodev_sym_free_session_t)(struct rte_cryptodev *dev,
-               struct rte_cryptodev_sym_session *sess);
-/**
- * Free asymmetric session private data.
- *
- * @param      dev             Crypto device pointer
- * @param      sess            Cryptodev session structure
- */
-typedef void (*cryptodev_asym_free_session_t)(struct rte_cryptodev *dev,
-               struct rte_cryptodev_asym_session *sess);
-/**
- * Perform actual crypto processing (encrypt/digest or auth/decrypt)
- * on user provided data.
- *
- * @param      dev     Crypto device pointer
- * @param      sess    Cryptodev session structure
- * @param      ofs     Start and stop offsets for auth and cipher operations
- * @param      vec     Vectorized operation descriptor
- *
- * @return
- *  - Returns number of successfully processed packets.
- *
- */
-typedef uint32_t (*cryptodev_sym_cpu_crypto_process_t)
-       (struct rte_cryptodev *dev, struct rte_cryptodev_sym_session *sess,
-       union rte_crypto_sym_ofs ofs, struct rte_crypto_sym_vec *vec);
-
-/**
- * Typedef that the driver provided to get service context private date size.
- *
- * @param      dev     Crypto device pointer.
- *
- * @return
- *   - On success return the size of the device's service context private data.
- *   - On failure return negative integer.
- */
-typedef int (*cryptodev_sym_get_raw_dp_ctx_size_t)(struct rte_cryptodev *dev);
-
-/**
- * Typedef that the driver provided to configure raw data-path context.
- *
- * @param      dev             Crypto device pointer.
- * @param      qp_id           Crypto device queue pair index.
- * @param      ctx             The raw data-path context data.
- * @param      sess_type       session type.
- * @param      session_ctx     Session context data. If NULL the driver
- *                             shall only configure the drv_ctx_data in
- *                             ctx buffer. Otherwise the driver shall only
- *                             parse the session_ctx to set appropriate
- *                             function pointers in ctx.
- * @param      is_update       Set 0 if it is to initialize the ctx.
- *                             Set 1 if ctx is initialized and only to update
- *                             session context data.
- * @return
- *   - On success return 0.
- *   - On failure return negative integer.
- */
-typedef int (*cryptodev_sym_configure_raw_dp_ctx_t)(
-       struct rte_cryptodev *dev, uint16_t qp_id,
-       struct rte_crypto_raw_dp_ctx *ctx,
-       enum rte_crypto_op_sess_type sess_type,
-       union rte_cryptodev_session_ctx session_ctx, uint8_t is_update);
-
-/** Crypto device operations function pointer table */
-struct rte_cryptodev_ops {
-       cryptodev_configure_t dev_configure;    /**< Configure device. */
-       cryptodev_start_t dev_start;            /**< Start device. */
-       cryptodev_stop_t dev_stop;              /**< Stop device. */
-       cryptodev_close_t dev_close;            /**< Close device. */
-
-       cryptodev_info_get_t dev_infos_get;     /**< Get device info. */
-
-       cryptodev_stats_get_t stats_get;
-       /**< Get device statistics. */
-       cryptodev_stats_reset_t stats_reset;
-       /**< Reset device statistics. */
-
-       cryptodev_queue_pair_setup_t queue_pair_setup;
-       /**< Set up a device queue pair. */
-       cryptodev_queue_pair_release_t queue_pair_release;
-       /**< Release a queue pair. */
-
-       cryptodev_sym_get_session_private_size_t sym_session_get_size;
-       /**< Return private session. */
-       cryptodev_asym_get_session_private_size_t asym_session_get_size;
-       /**< Return asym session private size. */
-       cryptodev_sym_configure_session_t sym_session_configure;
-       /**< Configure a Crypto session. */
-       cryptodev_asym_configure_session_t asym_session_configure;
-       /**< Configure asymmetric Crypto session. */
-       cryptodev_sym_free_session_t sym_session_clear;
-       /**< Clear a Crypto sessions private data. */
-       cryptodev_asym_free_session_t asym_session_clear;
-       /**< Clear a Crypto sessions private data. */
-       union {
-               cryptodev_sym_cpu_crypto_process_t sym_cpu_process;
-               /**< process input data synchronously (cpu-crypto). */
-               __extension__
-               struct {
-                       cryptodev_sym_get_raw_dp_ctx_size_t
-                               sym_get_raw_dp_ctx_size;
-                       /**< Get raw data path service context data size. */
-                       cryptodev_sym_configure_raw_dp_ctx_t
-                               sym_configure_raw_dp_ctx;
-                       /**< Initialize raw data path context data. */
-               };
-       };
-};
-
-
-/**
- * Function for internal use by dummy drivers primarily, e.g. ring-based
- * driver.
- * Allocates a new cryptodev slot for an crypto device and returns the pointer
- * to that slot for the driver to use.
- *
- * @param      name            Unique identifier name for each device
- * @param      socket_id       Socket to allocate resources on.
- * @return
- *   - Slot in the rte_dev_devices array for a new device;
- */
-struct rte_cryptodev *
-rte_cryptodev_pmd_allocate(const char *name, int socket_id);
-
-/**
- * Function for internal use by dummy drivers primarily, e.g. ring-based
- * driver.
- * Release the specified cryptodev device.
- *
- * @param cryptodev
- * The *cryptodev* pointer is the address of the *rte_cryptodev* structure.
- * @return
- *   - 0 on success, negative on error
- */
-extern int
-rte_cryptodev_pmd_release_device(struct rte_cryptodev *cryptodev);
-
-
-/**
- * @internal
- *
- * PMD assist function to parse initialisation arguments for crypto driver
- * when creating a new crypto PMD device instance.
- *
- * PMD driver should set default values for that PMD before calling function,
- * these default values will be over-written with successfully parsed values
- * from args string.
- *
- * @param      params  parsed PMD initialisation parameters
- * @param      args    input argument string to parse
- *
- * @return
- *  - 0 on success
- *  - errno on failure
- */
-int
-rte_cryptodev_pmd_parse_input_args(
-               struct rte_cryptodev_pmd_init_params *params,
-               const char *args);
-
-/**
- * @internal
- *
- * PMD assist function to provide boiler plate code for crypto driver to create
- * and allocate resources for a new crypto PMD device instance.
- *
- * @param      name    crypto device name.
- * @param      device  base device instance
- * @param      params  PMD initialisation parameters
- *
- * @return
- *  - crypto device instance on success
- *  - NULL on creation failure
- */
-struct rte_cryptodev *
-rte_cryptodev_pmd_create(const char *name,
-               struct rte_device *device,
-               struct rte_cryptodev_pmd_init_params *params);
-
-/**
- * @internal
- *
- * PMD assist function to provide boiler plate code for crypto driver to
- * destroy and free resources associated with a crypto PMD device instance.
- *
- * @param      cryptodev       crypto device handle.
- *
- * @return
- *  - 0 on success
- *  - errno on failure
- */
-int
-rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev);
-
-/**
- * Executes all the user application registered callbacks for the specific
- * device.
- *  *
- * @param      dev     Pointer to cryptodev struct
- * @param      event   Crypto device interrupt event type.
- *
- * @return
- *  void
- */
-void rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
-                               enum rte_cryptodev_event_type event);
-
-/**
- * @internal
- * Create unique device name
- */
-int
-rte_cryptodev_pmd_create_dev_name(char *name, const char *dev_name_prefix);
-
-/**
- * @internal
- * Allocate Cryptodev driver.
- *
- * @param crypto_drv
- *   Pointer to cryptodev_driver.
- * @param drv
- *   Pointer to rte_driver.
- *
- * @return
- *  The driver type identifier
- */
-uint8_t rte_cryptodev_allocate_driver(struct cryptodev_driver *crypto_drv,
-               const struct rte_driver *drv);
-
-
-#define RTE_PMD_REGISTER_CRYPTO_DRIVER(crypto_drv, drv, driver_id)\
-RTE_INIT(init_ ##driver_id)\
-{\
-       driver_id = rte_cryptodev_allocate_driver(&crypto_drv, &(drv));\
-}
-
-static inline void *
-get_sym_session_private_data(const struct rte_cryptodev_sym_session *sess,
-               uint8_t driver_id) {
-       if (unlikely(sess->nb_drivers <= driver_id))
-               return NULL;
-
-       return sess->sess_data[driver_id].data;
-}
-
-static inline void
-set_sym_session_private_data(struct rte_cryptodev_sym_session *sess,
-               uint8_t driver_id, void *private_data)
-{
-       if (unlikely(sess->nb_drivers <= driver_id)) {
-               CDEV_LOG_ERR("Set private data for driver %u not allowed\n",
-                               driver_id);
-               return;
-       }
-
-       sess->sess_data[driver_id].data = private_data;
-}
-
-static inline void *
-get_asym_session_private_data(const struct rte_cryptodev_asym_session *sess,
-               uint8_t driver_id) {
-       return sess->sess_private_data[driver_id];
-}
-
-static inline void
-set_asym_session_private_data(struct rte_cryptodev_asym_session *sess,
-               uint8_t driver_id, void *private_data)
-{
-       sess->sess_private_data[driver_id] = private_data;
-}
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _RTE_CRYPTODEV_PMD_H_ */
index 1a7f759c57016d54c1ac8a50b596b96e02a05deb..8294c9f64f9a3c77e0e553b0ee2122277c223167 100644 (file)
@@ -8,7 +8,6 @@ DPDK_22 {
        rte_crypto_cipher_algorithm_strings;
        rte_crypto_cipher_operation_strings;
        rte_crypto_op_pool_create;
-       rte_cryptodev_allocate_driver;
        rte_cryptodev_callback_register;
        rte_cryptodev_callback_unregister;
        rte_cryptodev_close;
@@ -27,15 +26,6 @@ DPDK_22 {
        rte_cryptodev_info_get;
        rte_cryptodev_is_valid_dev;
        rte_cryptodev_name_get;
-       rte_cryptodev_pmd_allocate;
-       rte_cryptodev_pmd_callback_process;
-       rte_cryptodev_pmd_create;
-       rte_cryptodev_pmd_create_dev_name;
-       rte_cryptodev_pmd_destroy;
-       rte_cryptodev_pmd_get_dev;
-       rte_cryptodev_pmd_get_named_dev;
-       rte_cryptodev_pmd_parse_input_args;
-       rte_cryptodev_pmd_release_device;
        rte_cryptodev_queue_pair_count;
        rte_cryptodev_queue_pair_setup;
        rte_cryptodev_socket_id;
@@ -117,3 +107,18 @@ EXPERIMENTAL {
        rte_cryptodev_remove_enq_callback;
 
 };
+
+INTERNAL {
+       global:
+
+       rte_cryptodev_allocate_driver;
+       rte_cryptodev_pmd_allocate;
+       rte_cryptodev_pmd_callback_process;
+       rte_cryptodev_pmd_create;
+       rte_cryptodev_pmd_create_dev_name;
+       rte_cryptodev_pmd_destroy;
+       rte_cryptodev_pmd_get_dev;
+       rte_cryptodev_pmd_get_named_dev;
+       rte_cryptodev_pmd_parse_input_args;
+       rte_cryptodev_pmd_release_device;
+};
index 2d3838985896036c668e057a2d4e5860734288e0..ebfc8326a82c5f0130bd60962b524cde472a7378 100644 (file)
@@ -9,7 +9,7 @@
 #include <rte_dev.h>
 #include <rte_errno.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_log.h>
 #include <rte_malloc.h>
 #include <rte_service_component.h>
index cb0ed7b620be508e6e0be33adbf10b0fad5386a2..e347d6dfd595abb4270125c7d76919f60a79501c 100644 (file)
@@ -31,7 +31,7 @@
 #include <rte_errno.h>
 #include <rte_ethdev.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #include <rte_telemetry.h>
 
 #include "rte_eventdev.h"
index 54721ed96acdbd4eec64fd52947698a9bde485e0..ad7904c0ee459d2cec82d5ce926d9bcb4135dfe6 100644 (file)
@@ -16,7 +16,7 @@
 #include <rte_udp.h>
 #include <rte_vxlan.h>
 #include <rte_cryptodev.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 
 #include "rte_table_action.h"