From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 62C8DA0032; Fri, 1 Oct 2021 22:39:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DA47641183; Fri, 1 Oct 2021 22:39:23 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 9F8554115D for ; Fri, 1 Oct 2021 22:39:22 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 191DsZNu032157; Fri, 1 Oct 2021 13:39:18 -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=rT59jV27LA47IyywnrsjUllrF0xF43t1QmPI4fAB+xs=; b=QwEEqFMGtBV511845A+f6rkvS6NKjB5VpYz5Kt9HIhwxCQxnyoirKuhO4b2MU0l4uCrF diKWGaKHtkZgr1QlO/GgpQIdZO2Jfe9o/uswOcYRj5Jgkh+HD8pqm3CBTuHkfF4UuffI o8pgYWK069aQw8CfTRZ49dHkQwtJD7+v/13bEr9IJ3CXUXKuBv+pMzJ8gw8uum/MI2/M Hk2wlUbW4IvVwCzp5oWabcGSP3SAaN7N1bEhXQDDvLa65qqIqB8PeDUtGymSmHJ4U+2S DygAEl6W0ZaBy0IR3+SN6+SqsJuNcR413E6oQxsg1RpXVtyaA/EN5gnZydNY6W4o7ydY LQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com with ESMTP id 3be3mmsd5s-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 01 Oct 2021 13:39:18 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Fri, 1 Oct 2021 13:39:17 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Fri, 1 Oct 2021 13:39:17 -0700 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id 899FD3F707D; Fri, 1 Oct 2021 13:39:15 -0700 (PDT) From: Tomasz Duszynski To: CC: , Tomasz Duszynski , "Jan Viktorin" , Ruifeng Wang , Bruce Richardson Date: Fri, 1 Oct 2021 22:38:33 +0200 Message-ID: <20211001203833.2115176-1-tduszynski@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: EHisQDhMbmXagsjxa_Nb-QfMxdHC4HbH X-Proofpoint-ORIG-GUID: EHisQDhMbmXagsjxa_Nb-QfMxdHC4HbH X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.391,FMLib:17.0.607.475 definitions=2021-10-01_05,2021-10-01_02,2020-04-07_01 Subject: [dpdk-dev] [PATCH] config/arm: disable building octeontx2 on cn10k 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 Sender: "dev" Common octeontx2 code shares some of the PCI identifiers with cn10k platform and if built wrong drivers may be probed. octeontx2 configuration disables common cn10k code so disable common octeontx2 on cn10k. Signed-off-by: Tomasz Duszynski Reviewed-by: Jerin Jacob Kollanukkaran --- config/arm/arm64_cn10k_linux_gcc | 1 + 1 file changed, 1 insertion(+) diff --git a/config/arm/arm64_cn10k_linux_gcc b/config/arm/arm64_cn10k_linux_gcc index a3578c03a1..88e5f10945 100644 --- a/config/arm/arm64_cn10k_linux_gcc +++ b/config/arm/arm64_cn10k_linux_gcc @@ -14,3 +14,4 @@ endian = 'little' [properties] platform = 'cn10k' +disable_drivers = 'common/octeontx2' -- 2.25.1