DPDK patches and discussions
 help / color / mirror / Atom feed
From: Maxime Coquelin <maxime.coquelin@redhat.com>
To: Hernan Vargas <hernan.vargas@intel.com>,
	dev@dpdk.org, gakhil@marvell.com, trix@redhat.com
Cc: nicolas.chautru@intel.com, qi.z.zhang@intel.com
Subject: Re: [PATCH v2 06/10] baseband/acc: remove soft output bypass
Date: Tue, 8 Oct 2024 10:00:09 +0200	[thread overview]
Message-ID: <e8119792-99ef-4cf3-9e57-b083de0d95ed@redhat.com> (raw)
In-Reply-To: <20241003204912.131319-7-hernan.vargas@intel.com>



On 10/3/24 22:49, Hernan Vargas wrote:
> Removing soft output bypass capability due to device limitations.

It should be specified this is for VRB2 device variant.

And this should be backported, so pass Fixes tag and cc stable as it was
introduced in v23.11 LTS.

Fixes: b49fe052f9cd ("baseband/acc: add FEC capabilities for VRB2 variant")
Cc: stable@dpdk.org

Thanks,
Maxime

> 
> Signed-off-by: Hernan Vargas <hernan.vargas@intel.com>
> ---
>   drivers/baseband/acc/rte_vrb_pmd.c | 7 +++----
>   1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/baseband/acc/rte_vrb_pmd.c b/drivers/baseband/acc/rte_vrb_pmd.c
> index 26335d55ba3b..88201d11de88 100644
> --- a/drivers/baseband/acc/rte_vrb_pmd.c
> +++ b/drivers/baseband/acc/rte_vrb_pmd.c
> @@ -1359,7 +1359,6 @@ vrb_dev_info_get(struct rte_bbdev *dev, struct rte_bbdev_driver_info *dev_info)
>   				RTE_BBDEV_LDPC_HARQ_4BIT_COMPRESSION |
>   				RTE_BBDEV_LDPC_LLR_COMPRESSION |
>   				RTE_BBDEV_LDPC_SOFT_OUT_ENABLE |
> -				RTE_BBDEV_LDPC_SOFT_OUT_RM_BYPASS |
>   				RTE_BBDEV_LDPC_SOFT_OUT_DEINTERLEAVER_BYPASS |
>   				RTE_BBDEV_LDPC_DEC_INTERRUPTS,
>   			.llr_size = 8,
> @@ -1736,18 +1735,18 @@ vrb_fcw_ld_fill(struct rte_bbdev_dec_op *op, struct acc_fcw_ld *fcw,
>   		fcw->so_en = check_bit(op->ldpc_dec.op_flags, RTE_BBDEV_LDPC_SOFT_OUT_ENABLE);
>   		fcw->so_bypass_intlv = check_bit(op->ldpc_dec.op_flags,
>   				RTE_BBDEV_LDPC_SOFT_OUT_DEINTERLEAVER_BYPASS);
> -		fcw->so_bypass_rm = check_bit(op->ldpc_dec.op_flags,
> -				RTE_BBDEV_LDPC_SOFT_OUT_RM_BYPASS);
> +		fcw->so_bypass_rm = 0;
>   		fcw->minsum_offset = 1;
>   		fcw->dec_llrclip   = 2;
>   	}
>   
>   	/*
> -	 * These are all implicitly set
> +	 * These are all implicitly set:
>   	 * fcw->synd_post = 0;
>   	 * fcw->dec_convllr = 0;
>   	 * fcw->hcout_convllr = 0;
>   	 * fcw->hcout_size1 = 0;
> +	 * fcw->so_it = 0;
>   	 * fcw->hcout_offset = 0;
>   	 * fcw->negstop_th = 0;
>   	 * fcw->negstop_it = 0;


  reply	other threads:[~2024-10-08  8:00 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-03 20:49 [PATCH v2 00/10] acc baseband PMD fix and updates for 24.11 Hernan Vargas
2024-10-03 20:49 ` [PATCH v2 01/10] baseband/acc: fix access to deallocated mem Hernan Vargas
2024-10-03 20:49 ` [PATCH v2 02/10] baseband/acc: queue allocation refactor Hernan Vargas
2024-10-04 12:08   ` Maxime Coquelin
2024-10-04 18:19     ` Chautru, Nicolas
2024-10-07  9:31       ` Maxime Coquelin
2024-10-07 16:45         ` Chautru, Nicolas
2024-10-08  7:38           ` Maxime Coquelin
2024-10-03 20:49 ` [PATCH v2 03/10] baseband/acc: configure max queues per device Hernan Vargas
2024-10-08  7:43   ` Maxime Coquelin
2024-10-03 20:49 ` [PATCH v2 04/10] baseband/acc: future proof structure comparison Hernan Vargas
2024-10-08  7:49   ` Maxime Coquelin
2024-10-03 20:49 ` [PATCH v2 05/10] baseband/acc: enhance SW ring alignment Hernan Vargas
2024-10-08  7:51   ` Maxime Coquelin
2024-10-08 20:19     ` Chautru, Nicolas
2024-10-03 20:49 ` [PATCH v2 06/10] baseband/acc: remove soft output bypass Hernan Vargas
2024-10-08  8:00   ` Maxime Coquelin [this message]
2024-10-09 16:38     ` Chautru, Nicolas
2024-10-03 20:49 ` [PATCH v2 07/10] baseband/acc: algorithm tuning for LDPC decoder Hernan Vargas
2024-10-08  8:06   ` Maxime Coquelin
2024-10-03 20:49 ` [PATCH v2 08/10] baseband/acc: remove check on HARQ memory Hernan Vargas
2024-10-08  8:08   ` Maxime Coquelin
2024-10-08 15:38     ` Chautru, Nicolas
2024-10-03 20:49 ` [PATCH v2 09/10] baseband/acc: reset ring data valid bit Hernan Vargas
2024-10-08  8:08   ` Maxime Coquelin
2024-10-03 20:49 ` [PATCH v2 10/10] baseband/acc: cosmetic changes Hernan Vargas
2024-10-08  8:11   ` Maxime Coquelin

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=e8119792-99ef-4cf3-9e57-b083de0d95ed@redhat.com \
    --to=maxime.coquelin@redhat.com \
    --cc=dev@dpdk.org \
    --cc=gakhil@marvell.com \
    --cc=hernan.vargas@intel.com \
    --cc=nicolas.chautru@intel.com \
    --cc=qi.z.zhang@intel.com \
    --cc=trix@redhat.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).