DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Nithin Dabilpuram <ndabilpuram@marvell.com>,
	Ferruh Yigit <ferruh.yigit@intel.com>
Cc: Jerin Jacob <jerinj@marvell.com>,
	Vamsi Attunuru <vattunuru@marvell.com>, dpdk-dev <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] common/octeontx2: upgrade mbox definition to version 5
Date: Sun, 5 Apr 2020 16:29:11 +0530	[thread overview]
Message-ID: <CALBAE1OViLFJ2tYF0cqwMrUw7dSeT6iwBuS6UmPrUZ_z5HP6VQ@mail.gmail.com> (raw)
In-Reply-To: <20200306134405.32603-1-ndabilpuram@marvell.com>

On Fri, Mar 6, 2020 at 7:14 PM Nithin Dabilpuram
<ndabilpuram@marvell.com> wrote:
>
> Sync mail box data structures to version 0x0005 to
> that of kernel AF driver.
>
> Signed-off-by: Nithin Dabilpuram <ndabilpuram@marvell.com>


Acked-by: Jerin Jacob <jerinj@marvell.com>
Applied to dpdk-next-net-mrvl/master. Thanks

This patch is dependent on another net/octeontx2: patch series, hence
taking mbox change through dpdk-next-net-mrvl/master.
http://patches.dpdk.org/user/todo/dpdk/?series=9188

> ---
>  drivers/common/octeontx2/otx2_mbox.h | 13 ++++++++++---
>  1 file changed, 10 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/common/octeontx2/otx2_mbox.h b/drivers/common/octeontx2/otx2_mbox.h
> index d192d89..e33b73a 100644
> --- a/drivers/common/octeontx2/otx2_mbox.h
> +++ b/drivers/common/octeontx2/otx2_mbox.h
> @@ -90,7 +90,7 @@ struct mbox_msghdr {
>  #define OTX2_MBOX_RSP_SIG (0xbeef)
>         /* Signature, for validating corrupted msgs */
>         uint16_t __otx2_io sig;
> -#define OTX2_MBOX_VERSION (0x0004)
> +#define OTX2_MBOX_VERSION (0x0005)
>         /* Version of msg's structure for this ID */
>         uint16_t __otx2_io ver;
>         /* Offset of next msg within mailbox region */
> @@ -255,7 +255,7 @@ M(NIX_TXSCH_ALLOC,  0x8004, nix_txsch_alloc, nix_txsch_alloc_req,   \
>  M(NIX_TXSCH_FREE,      0x8005, nix_txsch_free, nix_txsch_free_req,     \
>                                 msg_rsp)                                \
>  M(NIX_TXSCHQ_CFG,      0x8006, nix_txschq_cfg, nix_txschq_config,      \
> -                               msg_rsp)                                \
> +                               nix_txschq_config)                      \
>  M(NIX_STATS_RST,       0x8007, nix_stats_rst, msg_req, msg_rsp)        \
>  M(NIX_VTAG_CFG,                0x8008, nix_vtag_cfg, nix_vtag_config, msg_rsp) \
>  M(NIX_RSS_FLOWKEY_CFG, 0x8009, nix_rss_flowkey_cfg,                    \
> @@ -693,6 +693,8 @@ enum nix_af_status {
>         NIX_AF_INVAL_NPA_PF_FUNC    = -419,
>         NIX_AF_INVAL_SSO_PF_FUNC    = -420,
>         NIX_AF_ERR_TX_VTAG_NOSPC    = -421,
> +       NIX_AF_ERR_RX_VTAG_INUSE    = -422,
> +       NIX_AF_ERR_PTP_CONFIG_FAIL  = -423,
>  };
>
>  /* For NIX LF context alloc and init */
> @@ -733,7 +735,8 @@ struct nix_lf_alloc_rsp {
>
>  struct nix_lf_free_req {
>         struct mbox_msghdr hdr;
> -#define NIX_LF_DISABLE_FLOWS   0x1
> +#define NIX_LF_DISABLE_FLOWS           BIT_ULL(0)
> +#define NIX_LF_DONT_FREE_TX_VTAG       BIT_ULL(1)
>         uint64_t __otx2_io flags;
>  };
>
> @@ -822,6 +825,7 @@ struct nix_txsch_free_req {
>  struct nix_txschq_config {
>         struct mbox_msghdr hdr;
>         uint8_t __otx2_io lvl; /* SMQ/MDQ/TL4/TL3/TL2/TL1 */
> +       uint8_t __otx2_io read;
>  #define TXSCHQ_IDX_SHIFT 16
>  #define TXSCHQ_IDX_MASK (BIT_ULL(10) - 1)
>  #define TXSCHQ_IDX(reg, shift) (((reg) >> (shift)) & TXSCHQ_IDX_MASK)
> @@ -829,6 +833,8 @@ struct nix_txschq_config {
>  #define MAX_REGS_PER_MBOX_MSG 20
>         uint64_t __otx2_io reg[MAX_REGS_PER_MBOX_MSG];
>         uint64_t __otx2_io regval[MAX_REGS_PER_MBOX_MSG];
> +       /* All 0's => overwrite with new value */
> +       uint64_t __otx2_io regval_mask[MAX_REGS_PER_MBOX_MSG];
>  };
>
>  struct nix_vtag_config {
> @@ -1229,6 +1235,7 @@ enum npc_af_status {
>         NPC_MCAM_ALLOC_DENIED   = -702,
>         NPC_MCAM_ALLOC_FAILED   = -703,
>         NPC_MCAM_PERM_DENIED    = -704,
> +       NPC_AF_ERR_HIGIG_CONFIG_FAIL    = -705,
>  };
>
>  struct npc_mcam_alloc_entry_req {
> --
> 2.8.4
>

      reply	other threads:[~2020-04-05 10:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-06 13:44 Nithin Dabilpuram
2020-04-05 10:59 ` 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=CALBAE1OViLFJ2tYF0cqwMrUw7dSeT6iwBuS6UmPrUZ_z5HP6VQ@mail.gmail.com \
    --to=jerinjacobk@gmail.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=jerinj@marvell.com \
    --cc=ndabilpuram@marvell.com \
    --cc=vattunuru@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).