From patchwork Thu Jan 12 15:49:43 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 121935 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 02479423B8; Thu, 12 Jan 2023 16:55:37 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8D6BC42D91; Thu, 12 Jan 2023 16:55:03 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 8E3D042D7B for ; Thu, 12 Jan 2023 16:55:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673538900; x=1705074900; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=nL1INlUzFzzxtLtYB0sxj/0maT11SBrkrI+lKOqS4cI=; b=hFaHi+poGrn0iRruDuDr6mTVwwSwhGo5XdfjX4ko6IFiQk0fMQ87AW7v mJRj28iURakXBvDPfbKb6U5mD2eLQGVVFASZT1hw437US+2kXnhmZDA8J GpAis8yT05zbx0wxC8fariCfAuwyqwNB4lIaFhgkZgWJcQKjHZlD02qiC 0zy1RM9iIK/fxF+zM5yLlXQconVhNJ7OXJKe42alLHk6klVQOWSkDBmU7 0I2f+T2ap5qJV9AGPF1MN0wNvDwtN2bYtAHiQ5fESESw669knLZcohhWS 5eiBxkhVUrUYzq6f98p7smnpLq/cAQUheFyPI7CabrE14PjRKIsj01J0A A==; X-IronPort-AV: E=McAfee;i="6500,9779,10588"; a="388227783" X-IronPort-AV: E=Sophos;i="5.97,211,1669104000"; d="scan'208";a="388227783" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jan 2023 07:49:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10588"; a="986635419" X-IronPort-AV: E=Sophos;i="5.97,211,1669104000"; d="scan'208";a="986635419" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.222.53]) by fmsmga005.fm.intel.com with ESMTP; 12 Jan 2023 07:49:57 -0800 From: Cristian Dumitrescu To: dev@dpdk.org Cc: Kamalakannan R Subject: [PATCH V3 06/11] examples/pipeline: add CLI command for crypto device Date: Thu, 12 Jan 2023 15:49:43 +0000 Message-Id: <20230112154948.244284-7-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230112154948.244284-1-cristian.dumitrescu@intel.com> References: <20230111205608.87953-1-cristian.dumitrescu@intel.com> <20230112154948.244284-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add CLI command for the configuration of crypto devices. Signed-off-by: Cristian Dumitrescu Signed-off-by: Kamalakannan R --- examples/pipeline/cli.c | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/examples/pipeline/cli.c b/examples/pipeline/cli.c index f4c8300ea7..6b5d5a3370 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 queues qsize \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(¶ms.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(¶ms.queue_size, tokens[5])) { + snprintf(out, out_size, MSG_ARG_INVALID, "queue_size"); + return; + } + + status = cryptodev_config(cryptodev_name, ¶ms); + if (status) + snprintf(out, out_size, "Crypto device configuration failed (%d).\n", status); +} + static const char cmd_pipeline_codegen_help[] = "pipeline codegen \n"; @@ -2991,6 +3043,7 @@ cmd_help(char **tokens, "\tethdev\n" "\tethdev show\n" "\tring\n" + "\tcryptodev\n" "\tpipeline codegen\n" "\tpipeline libbuild\n" "\tpipeline build\n" @@ -3042,6 +3095,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); @@ -3297,6 +3355,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)) {