From patchwork Thu Aug 4 16:58:35 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 114640 X-Patchwork-Delegate: andrew.rybchenko@oktetlabs.ru 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 BB810A00C4; Thu, 4 Aug 2022 19:01:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 480F542C99; Thu, 4 Aug 2022 18:59:15 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id D543042C34 for ; Thu, 4 Aug 2022 18:59:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1659632353; x=1691168353; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3TU25B4eVxK9WyKSd/wgLIU+eovIUx7DemFrAVZYDpw=; b=DqFi/HyNHFlnUDlNoBLJmZAJtoQD5xG+doAOxBjpyCo0YHXiqSXOwr3Q Fs98ctHf7mFaFIJmscn0vKYU+InYtAyZ/ClHIpL8fmlYS0XObhnObfGT3 pf4P7LikYTYtM+nYZYcH1Qca3DhywhBXB4mYN6FwOdsJ8BMYyl/60ykMs lPUoF4Ia4epao70rTzMkF47YdYvgREXj6sA9J+q6MO9Q4YPZC5nOMdaN1 dVS0+c/h4FicheeyH6A+zR1GhwMkktGHtOttNCW6gVbtfTPiaGjJJ68bW YVe6ajrqn07xvH/gqtqGN19sA37caKED9f4t8nQCdqvqHWeQKs0D7UbXh g==; X-IronPort-AV: E=McAfee;i="6400,9594,10429"; a="290000195" X-IronPort-AV: E=Sophos;i="5.93,216,1654585200"; d="scan'208";a="290000195" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2022 09:59:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,216,1654585200"; d="scan'208";a="636163261" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.223.157]) by orsmga001.jf.intel.com with ESMTP; 04 Aug 2022 09:59:10 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Cc: jasvinder.singh@intel.com, yogesh.jangra@intel.com Subject: [PATCH 17/21] net/softnic: add the pipeline register read/write CLI commands Date: Thu, 4 Aug 2022 16:58:35 +0000 Message-Id: <20220804165839.1074817-18-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220804165839.1074817-1-cristian.dumitrescu@intel.com> References: <20220804165839.1074817-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 commands for pipeline registers read and write operations. Signed-off-by: Cristian Dumitrescu Signed-off-by: Yogesh Jangra --- drivers/net/softnic/rte_eth_softnic_cli.c | 127 ++++++++++++++++++++++ 1 file changed, 127 insertions(+) diff --git a/drivers/net/softnic/rte_eth_softnic_cli.c b/drivers/net/softnic/rte_eth_softnic_cli.c index 064a1906d9..b419c67cb8 100644 --- a/drivers/net/softnic/rte_eth_softnic_cli.c +++ b/drivers/net/softnic/rte_eth_softnic_cli.c @@ -34,6 +34,22 @@ #define MSG_FILE_NOT_ENOUGH "Not enough rules in file \"%s\".\n" #define MSG_CMD_FAIL "Command \"%s\" failed.\n" +static int +parser_read_uint64(uint64_t *value, char *p) +{ + uint64_t val = 0; + + if (!value || !p || !p[0]) + return -EINVAL; + + val = strtoull(p, &p, 0); + if (p[0]) + return -EINVAL; + + *value = val; + return 0; +} + static int parser_read_uint32(uint32_t *value, char *p) { @@ -1405,6 +1421,107 @@ cmd_softnic_pipeline_abort(struct pmd_internals *softnic, rte_swx_ctl_pipeline_abort(p->ctl); } +/** + * pipeline regrd + */ +static void +cmd_softnic_pipeline_regrd(struct pmd_internals *softnic, + char **tokens, + uint32_t n_tokens, + char *out, + size_t out_size) +{ + struct pipeline *p; + const char *pipeline_name, *name; + uint64_t value; + uint32_t idx; + int status; + + if (n_tokens != 5) { + snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]); + return; + } + + pipeline_name = tokens[1]; + p = softnic_pipeline_find(softnic, pipeline_name); + if (!p) { + snprintf(out, out_size, MSG_ARG_INVALID, "pipeline_name"); + return; + } + + if (strcmp(tokens[2], "regrd")) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "regrd"); + return; + } + + name = tokens[3]; + + if (parser_read_uint32(&idx, tokens[4])) { + snprintf(out, out_size, MSG_ARG_INVALID, "index"); + return; + } + + status = rte_swx_ctl_pipeline_regarray_read(p->p, name, idx, &value); + if (status) { + snprintf(out, out_size, "Command failed.\n"); + return; + } + + snprintf(out, out_size, "0x%" PRIx64 "\n", value); +} + +/** + * pipeline regwr + */ +static void +cmd_softnic_pipeline_regwr(struct pmd_internals *softnic, + char **tokens, + uint32_t n_tokens, + char *out, + size_t out_size) +{ + struct pipeline *p; + const char *pipeline_name, *name; + uint64_t value; + uint32_t idx; + int status; + + if (n_tokens != 6) { + snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]); + return; + } + + pipeline_name = tokens[1]; + p = softnic_pipeline_find(softnic, pipeline_name); + if (!p) { + snprintf(out, out_size, MSG_ARG_INVALID, "pipeline_name"); + return; + } + + if (strcmp(tokens[2], "regwr")) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "regwr"); + return; + } + + name = tokens[3]; + + if (parser_read_uint32(&idx, tokens[4])) { + snprintf(out, out_size, MSG_ARG_INVALID, "index"); + return; + } + + if (parser_read_uint64(&value, tokens[5])) { + snprintf(out, out_size, MSG_ARG_INVALID, "value"); + return; + } + + status = rte_swx_ctl_pipeline_regarray_write(p->p, name, idx, value); + if (status) { + snprintf(out, out_size, "Command failed.\n"); + return; + } +} + /** * thread pipeline enable [ period ] */ @@ -1641,6 +1758,16 @@ softnic_cli_process(char *in, char *out, size_t out_size, void *arg) cmd_softnic_pipeline_abort(softnic, tokens, n_tokens, out, out_size); return; } + + if ((n_tokens >= 3) && !strcmp(tokens[2], "regrd")) { + cmd_softnic_pipeline_regrd(softnic, tokens, n_tokens, out, out_size); + return; + } + + if ((n_tokens >= 3) && !strcmp(tokens[2], "regwr")) { + cmd_softnic_pipeline_regwr(softnic, tokens, n_tokens, out, out_size); + return; + } } if (strcmp(tokens[0], "thread") == 0) {