From patchwork Tue Apr 11 07:18:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ashwin Sekhar T K X-Patchwork-Id: 125896 X-Patchwork-Delegate: jerinj@marvell.com 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 2368542919; Tue, 11 Apr 2023 09:18:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9AAA440DFD; Tue, 11 Apr 2023 09:18:58 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 8D0FB40A8B for ; Tue, 11 Apr 2023 09:18:57 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 33ALFBmn021460 for ; Tue, 11 Apr 2023 00:18:56 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=3vx276K7yg1z/q3or5XWXIldu+i9Kz7O/gtLSM1kVhE=; b=OBh/JDTnhrs6HjAqSyQfRjAXOVCxuEWQz1XS8xXX6Z7VlPMB8hX5hAEXD/3ObTE60+Fp GpCf/6qOdhufvXVsw+hSAgIU0FSTKHWWG3WVYEfeJyNN3DnOGusyL/Dbs/KRVkNyg95h /hm9pRlNB8IpNMUiBGy+3XD38JxoY3qy/+Ia2JtU58Kvm2Xw7WROE0N683Bh/sitsBqX zcD4HvU9LE5SySlhlnAu2d9yw5fSsn2Z3QAbiU7QbtAkOoBqaOHBOgMr/T96Z18jpBgA 3WG0NwE/Zhi88btWBalmnQ0mWsIfaroeWCVYaQ5GwEZmI7Y2NmF/ER1Kx7v8sFY7M3vj 5g== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3pvt73ae11-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 11 Apr 2023 00:18:56 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Tue, 11 Apr 2023 00:18:54 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Tue, 11 Apr 2023 00:18:54 -0700 Received: from localhost.localdomain (unknown [10.28.36.142]) by maili.marvell.com (Postfix) with ESMTP id 30EDE3F7055; Tue, 11 Apr 2023 00:18:50 -0700 (PDT) From: Ashwin Sekhar T K To: , Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao CC: , , , , , , Subject: [PATCH] common/cnxk: update ROC erratas Date: Tue, 11 Apr 2023 12:48:31 +0530 Message-ID: <20230411071831.1124587-1-asekhar@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: xUxU9XE1sDc70YnVbwSvA4JxQwYdvzOm X-Proofpoint-ORIG-GUID: xUxU9XE1sDc70YnVbwSvA4JxQwYdvzOm X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.942,Hydra:6.0.573,FMLib:17.11.170.22 definitions=2023-04-11_04,2023-04-06_03,2023-02-09_01 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 Update the models where errata IPBUNPA-37480 is applicable. Signed-off-by: Ashwin Sekhar T K --- drivers/common/cnxk/roc_errata.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_errata.h b/drivers/common/cnxk/roc_errata.h index 2d15e639b7..1333bde629 100644 --- a/drivers/common/cnxk/roc_errata.h +++ b/drivers/common/cnxk/roc_errata.h @@ -25,7 +25,8 @@ roc_errata_nix_has_cq_min_size_4k(void) static inline bool roc_errata_npa_has_no_fc_stype_ststp(void) { - return roc_model_is_cn10ka_a0() ? true : false; + return roc_model_is_cn10ka_a0() || roc_model_is_cn10ka_a1() || roc_model_is_cnf10ka_a0() || + roc_model_is_cnf10kb_a0(); } /* Errata IPBUNIXTX-39337 */