DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Rakesh Kudurumalla <rkudurumalla@marvell.com>
Cc: Nithin Dabilpuram <ndabilpuram@marvell.com>,
	Kiran Kumar K <kirankumark@marvell.com>,
	 Sunil Kumar Kori <skori@marvell.com>,
	Satha Rao <skoteshwar@marvell.com>, dpdk-dev <dev@dpdk.org>,
	Jerin Jacob <jerinj@marvell.com>
Subject: Re: [PATCH] common/cnxk: update extra stats for inline device
Date: Thu, 16 Jun 2022 17:24:01 +0530	[thread overview]
Message-ID: <CALBAE1NjkYbkjL_NpULeagKcy43+q_cGtk8-Bc-0kUA5RawwZw@mail.gmail.com> (raw)
In-Reply-To: <20220613095004.558286-1-rkudurumalla@marvell.com>

On Mon, Jun 13, 2022 at 3:20 PM Rakesh Kudurumalla
<rkudurumalla@marvell.com> wrote:
>
> inline device NIX RX and RQ stats are updated
> on PKTIO extra stats
>
> Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>

Updated the git commit as follows and applied to
dpdk-next-net-mrvl/for-next-net. Thanks

    common/cnxk: update extra stats for inline device

    Inline device's NIX RX and RQ stats are updated
    on ethdev extra stats

    Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>

> ---
>  drivers/common/cnxk/roc_nix_stats.c  | 179 +++++++++++++++++----------
>  drivers/common/cnxk/roc_nix_xstats.h |  29 ++++-
>  2 files changed, 144 insertions(+), 64 deletions(-)
>
> diff --git a/drivers/common/cnxk/roc_nix_stats.c b/drivers/common/cnxk/roc_nix_stats.c
> index 946cda114d..8fd5c711c3 100644
> --- a/drivers/common/cnxk/roc_nix_stats.c
> +++ b/drivers/common/cnxk/roc_nix_stats.c
> @@ -10,6 +10,16 @@
>
>  #define NIX_RX_STATS(val) plt_read64(nix->base + NIX_LF_RX_STATX(val))
>  #define NIX_TX_STATS(val) plt_read64(nix->base + NIX_LF_TX_STATX(val))
> +#define INL_NIX_RX_STATS(val)                                                  \
> +       plt_read64(inl_dev->nix_base + NIX_LF_RX_STATX(val))
> +
> +#define NIX_XSTATS_NAME_PRINT(xstats_names, count, xstats, index)              \
> +       do {                                                                   \
> +               if (xstats_names)                                              \
> +                       snprintf(xstats_names[count].name,                     \
> +                                sizeof(xstats_names[count].name), "%s",       \
> +                                xstats[index].name);                          \
> +       } while (0)
>
>  int
>  roc_nix_num_xstats_get(struct roc_nix *roc_nix)
> @@ -79,6 +89,20 @@ queue_is_valid(struct nix *nix, uint16_t qid, bool is_rx)
>         return 0;
>  }
>
> +static uint64_t
> +inl_qstat_read(struct nix_inl_dev *inl_dev, uint16_t qid, uint32_t off)
> +{
> +       uint64_t reg, val;
> +       int64_t *addr;
> +
> +       addr = (int64_t *)(inl_dev->nix_base + off);
> +       reg = (((uint64_t)qid) << 32);
> +       val = roc_atomic64_add_nosync(reg, addr);
> +       if (val & BIT_ULL(NIX_CQ_OP_STAT_OP_ERR))
> +               val = 0;
> +       return val;
> +}
> +
>  static uint64_t
>  qstat_read(struct nix *nix, uint16_t qid, uint32_t off)
>  {
> @@ -267,15 +291,18 @@ roc_nix_xstats_get(struct roc_nix *roc_nix, struct roc_nix_xstat *xstats,
>                    unsigned int n)
>  {
>         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
> +       struct idev_cfg *idev = idev_get_cfg();
>         struct mbox *mbox = (&nix->dev)->mbox;
> +       struct nix_inl_dev *inl_dev = NULL;
>         struct cgx_stats_rsp *cgx_resp;
>         struct rpm_stats_rsp *rpm_resp;
>         uint64_t i, count = 0;
>         struct msg_req *req;
> +       uint16_t inl_rq_id;
>         uint32_t xstat_cnt;
>         int rc;
>
> -       xstat_cnt = roc_nix_num_xstats_get(roc_nix);
> +       xstat_cnt = roc_nix_xstats_names_get(roc_nix, NULL, 0);
>         if (n < xstat_cnt)
>                 return xstat_cnt;
>
> @@ -294,6 +321,25 @@ roc_nix_xstats_get(struct roc_nix *roc_nix, struct roc_nix_xstat *xstats,
>                 xstats[count].id = count;
>                 count++;
>         }
> +       if (nix->inb_inl_dev && idev) {
> +               if (idev->nix_inl_dev) {
> +                       inl_dev = idev->nix_inl_dev;
> +                       for (i = 0; i < CNXK_INL_NIX_NUM_RX_XSTATS; i++) {
> +                               xstats[count].value =
> +                                       INL_NIX_RX_STATS(inl_nix_rx_xstats[i].offset);
> +                               xstats[count].id = count;
> +                               count++;
> +                       }
> +                       inl_rq_id = inl_dev->nb_rqs > 1 ? roc_nix->port_id : 0;
> +                       for (i = 0; i < CNXK_INL_NIX_RQ_XSTATS; i++) {
> +                               xstats[count].value =
> +                                       inl_qstat_read(inl_dev, inl_rq_id,
> +                                                       inl_nix_rq_xstats[i].offset);
> +                               xstats[count].id = count;
> +                               count++;
> +                       }
> +               }
> +       }
>
>         for (i = 0; i < nix->nb_rx_queues; i++)
>                 xstats[count].value +=
> @@ -302,6 +348,15 @@ roc_nix_xstats_get(struct roc_nix *roc_nix, struct roc_nix_xstat *xstats,
>         xstats[count].id = count;
>         count++;
>
> +       if (roc_model_is_cn10k()) {
> +               for (i = 0; i < CNXK_NIX_NUM_CN10K_RX_XSTATS; i++) {
> +                       xstats[count].value =
> +                               NIX_RX_STATS(nix_cn10k_rx_xstats[i].offset);
> +                       xstats[count].id = count;
> +                       count++;
> +               }
> +       }
> +
>         if (roc_nix_is_vf_or_sdp(roc_nix))
>                 return count;
>
> @@ -353,13 +408,6 @@ roc_nix_xstats_get(struct roc_nix *roc_nix, struct roc_nix_xstat *xstats,
>                         xstats[count].id = count;
>                         count++;
>                 }
> -
> -               for (i = 0; i < CNXK_NIX_NUM_CN10K_RX_XSTATS; i++) {
> -                       xstats[count].value =
> -                               NIX_RX_STATS(nix_cn10k_rx_xstats[i].offset);
> -                       xstats[count].id = count;
> -                       count++;
> -               }
>         }
>
>         return count;
> @@ -370,74 +418,79 @@ roc_nix_xstats_names_get(struct roc_nix *roc_nix,
>                          struct roc_nix_xstat_name *xstats_names,
>                          unsigned int limit)
>  {
> +       struct nix *nix = roc_nix_to_nix_priv(roc_nix);
> +       struct idev_cfg *idev = idev_get_cfg();
>         uint64_t i, count = 0;
> -       uint32_t xstat_cnt;
>
> -       xstat_cnt = roc_nix_num_xstats_get(roc_nix);
> -       if (limit < xstat_cnt && xstats_names != NULL)
> -               return -ENOMEM;
> +       PLT_SET_USED(limit);
>
> -       if (xstats_names) {
> -               for (i = 0; i < CNXK_NIX_NUM_TX_XSTATS; i++) {
> -                       snprintf(xstats_names[count].name,
> -                                sizeof(xstats_names[count].name), "%s",
> -                                nix_tx_xstats[i].name);
> -                       count++;
> -               }
> +       for (i = 0; i < CNXK_NIX_NUM_TX_XSTATS; i++) {
> +               NIX_XSTATS_NAME_PRINT(xstats_names, count, nix_tx_xstats, i);
> +               count++;
> +       }
>
> -               for (i = 0; i < CNXK_NIX_NUM_RX_XSTATS; i++) {
> -                       snprintf(xstats_names[count].name,
> -                                sizeof(xstats_names[count].name), "%s",
> -                                nix_rx_xstats[i].name);
> -                       count++;
> +       for (i = 0; i < CNXK_NIX_NUM_RX_XSTATS; i++) {
> +               NIX_XSTATS_NAME_PRINT(xstats_names, count, nix_rx_xstats, i);
> +               count++;
> +       }
> +
> +       if (nix->inb_inl_dev && idev) {
> +               if (idev->nix_inl_dev) {
> +                       for (i = 0; i < CNXK_INL_NIX_NUM_RX_XSTATS; i++) {
> +                               NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                                     inl_nix_rx_xstats, i);
> +                               count++;
> +                       }
> +                       for (i = 0; i < CNXK_INL_NIX_RQ_XSTATS; i++) {
> +                               NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                                     inl_nix_rq_xstats, i);
> +                               count++;
> +                       }
>                 }
> -               for (i = 0; i < CNXK_NIX_NUM_QUEUE_XSTATS; i++) {
> -                       snprintf(xstats_names[count].name,
> -                                sizeof(xstats_names[count].name), "%s",
> -                                nix_q_xstats[i].name);
> +       }
> +
> +       for (i = 0; i < CNXK_NIX_NUM_QUEUE_XSTATS; i++) {
> +               NIX_XSTATS_NAME_PRINT(xstats_names, count, nix_q_xstats, i);
> +               count++;
> +       }
> +
> +       if (roc_model_is_cn10k()) {
> +               for (i = 0; i < CNXK_NIX_NUM_CN10K_RX_XSTATS; i++) {
> +                       NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                             nix_cn10k_rx_xstats, i);
>                         count++;
>                 }
> +       }
>
> -               if (roc_nix_is_vf_or_sdp(roc_nix))
> -                       return count;
> +       if (roc_nix_is_vf_or_sdp(roc_nix))
> +               return count;
>
> -               if (roc_model_is_cn9k()) {
> -                       for (i = 0; i < roc_nix_num_rx_xstats(); i++) {
> -                               snprintf(xstats_names[count].name,
> -                                        sizeof(xstats_names[count].name), "%s",
> -                                        nix_rx_xstats_cgx[i].name);
> -                               count++;
> -                       }
> +       if (roc_model_is_cn9k()) {
> +               for (i = 0; i < roc_nix_num_rx_xstats(); i++) {
> +                       NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                             nix_rx_xstats_cgx, i);
> +                       count++;
> +               }
>
> -                       for (i = 0; i < roc_nix_num_tx_xstats(); i++) {
> -                               snprintf(xstats_names[count].name,
> -                                        sizeof(xstats_names[count].name), "%s",
> -                                        nix_tx_xstats_cgx[i].name);
> -                               count++;
> -                       }
> -               } else {
> -                       for (i = 0; i < roc_nix_num_rx_xstats(); i++) {
> -                               snprintf(xstats_names[count].name,
> -                                        sizeof(xstats_names[count].name), "%s",
> -                                        nix_rx_xstats_rpm[i].name);
> -                               count++;
> -                       }
> +               for (i = 0; i < roc_nix_num_tx_xstats(); i++) {
> +                       NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                             nix_tx_xstats_cgx, i);
> +                       count++;
> +               }
>
> -                       for (i = 0; i < roc_nix_num_tx_xstats(); i++) {
> -                               snprintf(xstats_names[count].name,
> -                                        sizeof(xstats_names[count].name), "%s",
> -                                        nix_tx_xstats_rpm[i].name);
> -                               count++;
> -                       }
> +       } else {
> +               for (i = 0; i < roc_nix_num_rx_xstats(); i++) {
> +                       NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                             nix_rx_xstats_rpm, i);
> +                       count++;
> +               }
>
> -                       for (i = 0; i < CNXK_NIX_NUM_CN10K_RX_XSTATS; i++) {
> -                               snprintf(xstats_names[count].name,
> -                                        sizeof(xstats_names[count].name), "%s",
> -                                        nix_cn10k_rx_xstats[i].name);
> -                               count++;
> -                       }
> +               for (i = 0; i < roc_nix_num_tx_xstats(); i++) {
> +                       NIX_XSTATS_NAME_PRINT(xstats_names, count,
> +                                             nix_tx_xstats_rpm, i);
> +                       count++;
>                 }
>         }
>
> -       return xstat_cnt;
> +       return count;
>  }
> diff --git a/drivers/common/cnxk/roc_nix_xstats.h b/drivers/common/cnxk/roc_nix_xstats.h
> index c0a6f693f2..813fb7f578 100644
> --- a/drivers/common/cnxk/roc_nix_xstats.h
> +++ b/drivers/common/cnxk/roc_nix_xstats.h
> @@ -34,6 +34,29 @@ static const struct cnxk_nix_xstats_name nix_rx_xstats[] = {
>         {"rx_drp_l3mcast", NIX_STAT_LF_RX_RX_DRP_L3MCAST},
>  };
>
> +static const struct cnxk_nix_xstats_name inl_nix_rx_xstats[] = {
> +       {"inl_rx_octs", NIX_STAT_LF_RX_RX_OCTS},
> +       {"inl_rx_ucast", NIX_STAT_LF_RX_RX_UCAST},
> +       {"inl_rx_bcast", NIX_STAT_LF_RX_RX_BCAST},
> +       {"inl_rx_mcast", NIX_STAT_LF_RX_RX_MCAST},
> +       {"inl_rx_drop", NIX_STAT_LF_RX_RX_DROP},
> +       {"inl_rx_drop_octs", NIX_STAT_LF_RX_RX_DROP_OCTS},
> +       {"inl_rx_fcs", NIX_STAT_LF_RX_RX_FCS},
> +       {"inl_rx_err", NIX_STAT_LF_RX_RX_ERR},
> +       {"inl_rx_drp_bcast", NIX_STAT_LF_RX_RX_DRP_BCAST},
> +       {"inl_rx_drp_mcast", NIX_STAT_LF_RX_RX_DRP_MCAST},
> +       {"inl_rx_drp_l3bcast", NIX_STAT_LF_RX_RX_DRP_L3BCAST},
> +       {"inl_rx_drp_l3mcast", NIX_STAT_LF_RX_RX_DRP_L3MCAST},
> +};
> +
> +static const struct cnxk_nix_xstats_name inl_nix_rq_xstats[] = {
> +       {"inl_rq_op_pkts", NIX_LF_RQ_OP_PKTS},
> +       {"inl_rq_op_octs", NIX_LF_RQ_OP_OCTS},
> +       {"inl_rq_op_drop_pkts", NIX_LF_RQ_OP_DROP_PKTS},
> +       {"inl_rq_op_drop_octs", NIX_LF_RQ_OP_DROP_OCTS},
> +       {"inl_rq_op_re_pkts", NIX_LF_RQ_OP_RE_PKTS},
> +};
> +
>  static const struct cnxk_nix_xstats_name nix_cn10k_rx_xstats[] = {
>         {"rx_gc_octs_pass", NIX_STAT_LF_RX_RX_GC_OCTS_PASSED},
>         {"rx_gc_pkts_pass", NIX_STAT_LF_RX_RX_GC_PKTS_PASSED},
> @@ -191,16 +214,20 @@ static const struct cnxk_nix_xstats_name nix_tx_xstats_cgx[] = {
>  #define CNXK_NIX_NUM_RX_XSTATS_RPM PLT_DIM(nix_rx_xstats_rpm)
>  #define CNXK_NIX_NUM_TX_XSTATS_RPM PLT_DIM(nix_tx_xstats_rpm)
>  #define CNXK_NIX_NUM_CN10K_RX_XSTATS PLT_DIM(nix_cn10k_rx_xstats)
> +#define CNXK_INL_NIX_NUM_RX_XSTATS PLT_DIM(inl_nix_rx_xstats)
> +#define CNXK_INL_NIX_RQ_XSTATS     PLT_DIM(inl_nix_rq_xstats)
>
>  #define CNXK_NIX_NUM_XSTATS_REG                                                \
>         (CNXK_NIX_NUM_RX_XSTATS + CNXK_NIX_NUM_TX_XSTATS +                     \
> +        CNXK_INL_NIX_NUM_RX_XSTATS + CNXK_INL_NIX_RQ_XSTATS +                 \
>          CNXK_NIX_NUM_QUEUE_XSTATS)
>  #define CNXK_NIX_NUM_XSTATS_CGX                                                \
>         (CNXK_NIX_NUM_XSTATS_REG + CNXK_NIX_NUM_RX_XSTATS_CGX +                \
>          CNXK_NIX_NUM_TX_XSTATS_CGX)
>  #define CNXK_NIX_NUM_XSTATS_RPM                                                \
>         (CNXK_NIX_NUM_XSTATS_REG + CNXK_NIX_NUM_RX_XSTATS_RPM +                \
> -        CNXK_NIX_NUM_TX_XSTATS_RPM + CNXK_NIX_NUM_CN10K_RX_XSTATS)
> +        CNXK_NIX_NUM_TX_XSTATS_RPM + CNXK_NIX_NUM_CN10K_RX_XSTATS +           \
> +        CNXK_INL_NIX_NUM_RX_XSTATS + CNXK_INL_NIX_RQ_XSTATS)
>
>  static inline uint64_t
>  roc_nix_num_rx_xstats(void)
> --
> 2.25.1
>

      reply	other threads:[~2022-06-16 11:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-13  9:50 Rakesh Kudurumalla
2022-06-16 11:54 ` Jerin Jacob [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CALBAE1NjkYbkjL_NpULeagKcy43+q_cGtk8-Bc-0kUA5RawwZw@mail.gmail.com \
    --to=jerinjacobk@gmail.com \
    --cc=dev@dpdk.org \
    --cc=jerinj@marvell.com \
    --cc=kirankumark@marvell.com \
    --cc=ndabilpuram@marvell.com \
    --cc=rkudurumalla@marvell.com \
    --cc=skori@marvell.com \
    --cc=skoteshwar@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).