From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 1293A4237C;
	Thu, 12 Jan 2023 00:44:44 +0100 (CET)
Received: from mails.dpdk.org (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 4E25942D44;
	Thu, 12 Jan 2023 00:44:11 +0100 (CET)
Received: from mga18.intel.com (mga18.intel.com [134.134.136.126])
 by mails.dpdk.org (Postfix) with ESMTP id B80BE40A7D
 for <dev@dpdk.org>; Thu, 12 Jan 2023 00:44:08 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1673480648; x=1705016648;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=+H3MltcnZ8fzvy/BpEhkr8JhVDasw344mTX0ievIsL8=;
 b=Ltky/9zU0Jw6xS4D00EF5G/jTzgD3P/L399FVfYM0yJxJdNTAzpC6bmG
 XYx9bPeuC3gO+sxS0+3Rfl0qHGLqFobC0lcNuC/BUk91R+TBe6U/Jdbch
 FggP8gvjoXsTHiKeqe0w3ZVDaxJbljMHmRoUJksf2WWkflYOxs85ZApEG
 lIXfvV4/AAPJTxbuJtLQLtF5zv16uiJXRjp6x3CkMMjTZRl2xTHtLymef
 8RXP7KZo4JMI19bG7AS87g8txO9LpdmcA8rYq6GAEUqComHGSdNOD/Lnk
 CdhxSNnKjeRqwJQCDLmY9xgKuxKVFlexC6fmI4mMXgb3ezda+QSDFg6Bw w==;
X-IronPort-AV: E=McAfee;i="6500,9779,10586"; a="307088390"
X-IronPort-AV: E=Sophos;i="5.96,318,1665471600"; d="scan'208";a="307088390"
Received: from orsmga008.jf.intel.com ([10.7.209.65])
 by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 11 Jan 2023 15:44:08 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=McAfee;i="6500,9779,10586"; a="688129119"
X-IronPort-AV: E=Sophos;i="5.96,318,1665471600"; d="scan'208";a="688129119"
Received: from silpixa00400573.ir.intel.com (HELO
 silpixa00400573.ger.corp.intel.com) ([10.237.222.53])
 by orsmga008.jf.intel.com with ESMTP; 11 Jan 2023 15:44:07 -0800
From: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
To: dev@dpdk.org
Cc: Kamalakannan R <kamalakannan.r@intel.com>
Subject: [PATCH V2 06/11] examples/pipeline: add CLI command for crypto device
Date: Wed, 11 Jan 2023 23:43:53 +0000
Message-Id: <20230111234358.133395-7-cristian.dumitrescu@intel.com>
X-Mailer: git-send-email 2.34.1
In-Reply-To: <20230111234358.133395-1-cristian.dumitrescu@intel.com>
References: <20230111205608.87953-1-cristian.dumitrescu@intel.com>
 <20230111234358.133395-1-cristian.dumitrescu@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org

Add CLI command for the configuration of crypto devices.

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Signed-off-by: Kamalakannan R <kamalakannan.r@intel.com>
---
 examples/pipeline/cli.c | 63 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)

diff --git a/examples/pipeline/cli.c b/examples/pipeline/cli.c
index 37fc6f9551..47c1adf772 100644
--- a/examples/pipeline/cli.c
+++ b/examples/pipeline/cli.c
@@ -521,6 +521,58 @@ cmd_ring(char **tokens,
 	}
 }
 
+static const char cmd_cryptodev_help[] =
+"cryptodev <cryptodev_name> queues <n_queue_pairs> qsize <queue_size>\n";
+
+static void
+cmd_cryptodev(char **tokens,
+	      uint32_t n_tokens,
+	      char *out,
+	      size_t out_size,
+	      void *obj __rte_unused)
+{
+	struct cryptodev_params params;
+	char *cryptodev_name;
+	int status;
+
+	if (n_tokens != 6) {
+		snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]);
+		return;
+	}
+
+	if (strcmp(tokens[0], "cryptodev")) {
+		snprintf(out, out_size, MSG_ARG_NOT_FOUND, "cryptodev");
+		return;
+	}
+
+	cryptodev_name = tokens[1];
+
+	if (strcmp(tokens[2], "queues")) {
+		snprintf(out, out_size, MSG_ARG_NOT_FOUND, "queues");
+		return;
+	}
+
+	if (parser_read_uint32(&params.n_queue_pairs, tokens[3])) {
+		snprintf(out, out_size, MSG_ARG_INVALID, "n_queue_pairs");
+		return;
+	}
+
+	if (strcmp(tokens[4], "qsize")) {
+		snprintf(out, out_size, MSG_ARG_NOT_FOUND, "qsize");
+		return;
+	}
+
+
+	if (parser_read_uint32(&params.queue_size, tokens[5])) {
+		snprintf(out, out_size, MSG_ARG_INVALID, "queue_size");
+		return;
+	}
+
+	status = cryptodev_config(cryptodev_name, &params);
+	if (status)
+		snprintf(out, out_size, "Crypto device configuration failed (%d).\n", status);
+}
+
 static const char cmd_pipeline_codegen_help[] =
 "pipeline codegen <spec_file> <code_file>\n";
 
@@ -2990,6 +3042,7 @@ cmd_help(char **tokens,
 			"\tethdev\n"
 			"\tethdev show\n"
 			"\tring\n"
+			"\tcryptodev\n"
 			"\tpipeline codegen\n"
 			"\tpipeline libbuild\n"
 			"\tpipeline build\n"
@@ -3041,6 +3094,11 @@ cmd_help(char **tokens,
 		return;
 	}
 
+	if (!strcmp(tokens[0], "cryptodev")) {
+		snprintf(out, out_size, "\n%s\n", cmd_cryptodev_help);
+		return;
+	}
+
 	if ((strcmp(tokens[0], "pipeline") == 0) &&
 		(n_tokens == 2) && (strcmp(tokens[1], "codegen") == 0)) {
 		snprintf(out, out_size, "\n%s\n", cmd_pipeline_codegen_help);
@@ -3296,6 +3354,11 @@ cli_process(char *in, char *out, size_t out_size, void *obj)
 		return;
 	}
 
+	if (!strcmp(tokens[0], "cryptodev")) {
+		cmd_cryptodev(tokens, n_tokens, out, out_size, obj);
+		return;
+	}
+
 	if (strcmp(tokens[0], "pipeline") == 0) {
 		if ((n_tokens >= 3) &&
 			(strcmp(tokens[1], "codegen") == 0)) {
-- 
2.34.1