From patchwork Tue Aug 9 13:31:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rakesh Kudurumalla X-Patchwork-Id: 114765 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 C1A02A00C2; Tue, 9 Aug 2022 15:32:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 722B740143; Tue, 9 Aug 2022 15:32:03 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 527CB400EF for ; Tue, 9 Aug 2022 15:32:01 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 279D67d1016173 for ; Tue, 9 Aug 2022 06:32:00 -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=T/GA0+lkcNe+9ox6R8m5kGVFxAx+v3gR2o4G+rMbFh8=; b=bk+xKFSFAc/AzNgtXiQQr9epoWFj36PAgb1rfvpvBZvg+O6Jqn25DzO/MvPhNt4cW7t+ gCrn2GGmRENGgHs9EAFATXHvg3swRR5TSvw/NRNlrsdKLy9B0t7jpKzcAygbKHh/eQjO NjBVWIfLVyUHjRLAvvR5/ldjeYlh1TcI3ZDBlXL7mQhV485HMG10rwdFNaba+BPwMorf svvXwZAKJprI3c3p0aXm75y++7nnOV6+RTWEFtDF8SlHbuwkYughLSvI92ZxKpNQkyPV CCvoNS31KGE0wJBs5+xXu6SrA1tnphL0G3c8OknCD4ub3kogwOZNle6ziREVJue+riHT Ig== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3huds2t8qu-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 09 Aug 2022 06:32:00 -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.2; Tue, 9 Aug 2022 06:31:59 -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.18 via Frontend Transport; Tue, 9 Aug 2022 06:31:58 -0700 Received: from localhost.localdomain (unknown [10.28.36.154]) by maili.marvell.com (Postfix) with ESMTP id CFA5B3F7086; Tue, 9 Aug 2022 06:31:56 -0700 (PDT) From: Rakesh Kudurumalla To: Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao CC: , Rakesh Kudurumalla Subject: [PATCH 1/1] common/cnxk: update partnumber for 103xx Date: Tue, 9 Aug 2022 19:01:46 +0530 Message-ID: <20220809133146.713485-1-rkudurumalla@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: qAHhVSKTA5meaFjjVDcwl6Ns_-w-JYDU X-Proofpoint-GUID: qAHhVSKTA5meaFjjVDcwl6Ns_-w-JYDU X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-08-09_03,2022-08-09_02,2022-06-22_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 During model population part number is different for 103xx and hence dpdk initialization fails. This fix resolves the same. Signed-off-by: Rakesh Kudurumalla --- drivers/common/cnxk/roc_model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_model.c b/drivers/common/cnxk/roc_model.c index a68baa65ea..c934a10509 100644 --- a/drivers/common/cnxk/roc_model.c +++ b/drivers/common/cnxk/roc_model.c @@ -19,7 +19,7 @@ struct roc_model *roc_model; #define PART_106xx 0xB9 #define PART_105xx 0xBA #define PART_105xxN 0xBC -#define PART_103xx 0xBE +#define PART_103xx 0xBD #define PART_98xx 0xB1 #define PART_96xx 0xB2 #define PART_95xx 0xB3