DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Harman Kalra <hkalra@marvell.com>
Cc: dpdk-dev <dev@dpdk.org>,
	Nithin Dabilpuram <ndabilpuram@marvell.com>,
	 Kiran Kumar K <kirankumark@marvell.com>,
	Sunil Kumar Kori <skori@marvell.com>,
	 Satha Rao <skoteshwar@marvell.com>
Subject: Re: [PATCH] common/cnxk: enable NIX Tx interrupts errata
Date: Thu, 20 Jan 2022 14:15:49 +0530	[thread overview]
Message-ID: <CALBAE1NnJcKowaRkiePvjJ6f3z_m-01hu-if_2_rT4ktVkS6UA@mail.gmail.com> (raw)
In-Reply-To: <20220113121807.187105-1-hkalra@marvell.com>

On Thu, Jan 13, 2022 at 5:48 PM Harman Kalra <hkalra@marvell.com> wrote:
>
> An errata exists whereby NIX may incorrectly overwrite the value in
> NIX_SQ_CTX_S[SQ_INT]. This may cause set interrupts to get cleared or
> causing an QINT when no error is outstanding.
> As a workaround, software should always read all SQ debug registers
> and not just rely on NIX_SQINT_E bits set in NIX_SQ_CTX_S[SQ_INT].
> Also for detecting SQB faults software must read SQ context and
> check id next_sqb is NULL.
>
> Signed-off-by: Harman Kalra <hkalra@marvell.com>


Please rebase to next-net-mrvl. Following conflict found in merging.

[for-next-net]dell[dpdk-next-net-mrvl] $ git diff
diff --cc drivers/common/cnxk/roc_nix_irq.c
index 7dcd533ea9,71971ef261..0000000000
--- a/drivers/common/cnxk/roc_nix_irq.c
+++ b/drivers/common/cnxk/roc_nix_irq.c
@@@ -203,11 -226,12 +226,20 @@@ nix_lf_sq_debug_reg(struct nix *nix, ui

        reg = plt_read64(nix->base + off);
        if (reg & BIT_ULL(44)) {
++<<<<<<< HEAD
 +              plt_err("SQ=%d err_code=0x%x", (int)((reg >> 8) & 0xfffff),
 +                      (uint8_t)(reg & 0xff));
 +              /* Clear valid bit */
 +              plt_write64(BIT_ULL(44), nix->base + off);
 +      }
++=======
+               err = reg & 0xff;
+               /* Clear valid bit */
+               plt_write64(BIT_ULL(44), nix->base + off);
+       }
+
+       return err;
++>>>>>>> common/cnxk: enable NIX Tx interrupts errata
  }

> ---
>  drivers/common/cnxk/roc_nix_irq.c | 69 ++++++++++++++++++++++---------
>  1 file changed, 50 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/common/cnxk/roc_nix_irq.c b/drivers/common/cnxk/roc_nix_irq.c
> index a5cd9d4b02..71971ef261 100644
> --- a/drivers/common/cnxk/roc_nix_irq.c
> +++ b/drivers/common/cnxk/roc_nix_irq.c
> @@ -196,15 +196,42 @@ nix_lf_sq_irq_get_and_clear(struct nix *nix, uint16_t sq)
>         return nix_lf_q_irq_get_and_clear(nix, sq, NIX_LF_SQ_OP_INT, ~0x1ff00);
>  }
>
> -static inline void
> +static inline bool
> +nix_lf_is_sqb_null(struct dev *dev, int q)
> +{
> +       bool is_sqb_null = false;
> +       volatile void *ctx;
> +       int rc;
> +
> +       rc = nix_q_ctx_get(dev, NIX_AQ_CTYPE_SQ, q, &ctx);
> +       if (rc) {
> +               plt_err("Failed to get sq context");
> +       } else {
> +               is_sqb_null =
> +                       roc_model_is_cn9k() ?
> +                               (((__io struct nix_sq_ctx_s *)ctx)->next_sqb ==
> +                                0) :
> +                               (((__io struct nix_cn10k_sq_ctx_s *)ctx)
> +                                        ->next_sqb == 0);
> +       }
> +
> +       return is_sqb_null;
> +}
> +
> +static inline uint8_t
>  nix_lf_sq_debug_reg(struct nix *nix, uint32_t off)
>  {
> +       uint8_t err = 0;
>         uint64_t reg;
>
>         reg = plt_read64(nix->base + off);
> -       if (reg & BIT_ULL(44))
> -               plt_err("SQ=%d err_code=0x%x", (int)((reg >> 8) & 0xfffff),
> -                       (uint8_t)(reg & 0xff));
> +       if (reg & BIT_ULL(44)) {
> +               err = reg & 0xff;
> +               /* Clear valid bit */
> +               plt_write64(BIT_ULL(44), nix->base + off);
> +       }
> +
> +       return err;
>  }
>
>  static void
> @@ -226,6 +253,7 @@ nix_lf_q_irq(void *param)
>         struct dev *dev = &nix->dev;
>         int q, cq, rq, sq;
>         uint64_t intr;
> +       uint8_t rc;
>
>         intr = plt_read64(nix->base + NIX_LF_QINTX_INT(qintx));
>         if (intr == 0)
> @@ -266,22 +294,25 @@ nix_lf_q_irq(void *param)
>                 sq = q % nix->qints;
>                 irq = nix_lf_sq_irq_get_and_clear(nix, sq);
>
> -               if (irq & BIT_ULL(NIX_SQINT_LMT_ERR)) {
> -                       plt_err("SQ=%d NIX_SQINT_LMT_ERR", sq);
> -                       nix_lf_sq_debug_reg(nix, NIX_LF_SQ_OP_ERR_DBG);
> -               }
> -               if (irq & BIT_ULL(NIX_SQINT_MNQ_ERR)) {
> -                       plt_err("SQ=%d NIX_SQINT_MNQ_ERR", sq);
> -                       nix_lf_sq_debug_reg(nix, NIX_LF_MNQ_ERR_DBG);
> -               }
> -               if (irq & BIT_ULL(NIX_SQINT_SEND_ERR)) {
> -                       plt_err("SQ=%d NIX_SQINT_SEND_ERR", sq);
> -                       nix_lf_sq_debug_reg(nix, NIX_LF_SEND_ERR_DBG);
> -               }
> -               if (irq & BIT_ULL(NIX_SQINT_SQB_ALLOC_FAIL)) {
> +               /* Detect LMT store error */
> +               rc = nix_lf_sq_debug_reg(nix, NIX_LF_SQ_OP_ERR_DBG);
> +               if (rc)
> +                       plt_err("SQ=%d NIX_SQINT_LMT_ERR, errcode %x", sq, rc);
> +
> +               /* Detect Meta-descriptor enqueue error */
> +               rc = nix_lf_sq_debug_reg(nix, NIX_LF_MNQ_ERR_DBG);
> +               if (rc)
> +                       plt_err("SQ=%d NIX_SQINT_MNQ_ERR, errcode %x", sq, rc);
> +
> +               /* Detect Send error */
> +               rc = nix_lf_sq_debug_reg(nix, NIX_LF_SEND_ERR_DBG);
> +               if (rc)
> +                       plt_err("SQ=%d NIX_SQINT_SEND_ERR, errcode %x", sq, rc);
> +
> +               /* Detect SQB fault, read SQ context to check SQB NULL case */
> +               if (irq & BIT_ULL(NIX_SQINT_SQB_ALLOC_FAIL) ||
> +                   nix_lf_is_sqb_null(dev, q))
>                         plt_err("SQ=%d NIX_SQINT_SQB_ALLOC_FAIL", sq);
> -                       nix_lf_sq_debug_reg(nix, NIX_LF_SEND_ERR_DBG);
> -               }
>         }
>
>         /* Clear interrupt */
> --
> 2.18.0
>

  reply	other threads:[~2022-01-20  8:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-13 12:18 Harman Kalra
2022-01-20  8:45 ` Jerin Jacob [this message]
2022-01-31 10:52 ` [PATCH v2] " Harman Kalra
2022-02-17  9:27   ` Jerin Jacob

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=CALBAE1NnJcKowaRkiePvjJ6f3z_m-01hu-if_2_rT4ktVkS6UA@mail.gmail.com \
    --to=jerinjacobk@gmail.com \
    --cc=dev@dpdk.org \
    --cc=hkalra@marvell.com \
    --cc=kirankumark@marvell.com \
    --cc=ndabilpuram@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).