From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 80F72A00E6 for ; Thu, 11 Jul 2019 11:20:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 419C21B4B6; Thu, 11 Jul 2019 11:20:38 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 91C357CBC for ; Thu, 11 Jul 2019 11:20:37 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x6B9KZmK011960 for ; Thu, 11 Jul 2019 02:20:36 -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-type; s=pfpt0818; bh=Z4OPpDgC0hg9sNRCkza3WrK1UEOeismW6Oyfnrz7GzM=; b=d4Kgs3GDBJpWEjnsJDqQk1q+SY16b5vS3SoTKhi2TRn/+tR+5u94eur7AA/ljbo0/tWO 3ejTWDSceWi7KJ1WN4Vcg9lz86akZhu2ipqh+DN+Afp/xkKmdqGz+6zjuBhZKULloZNC q27WfdIK3qLJlkpaTzVIL1irOjNFv2CigkhU2/OdVisivs4gsAuHQK3rnz6knvrKiL7F jNPn9+CFycN1upg0owJYpWohcc1AbWYcIyqLKXw1hnmP5RFCF9TNbUXPb+XPKEHR1zcQ HBYhWLs0ncuLcTtm/XgIFGnPS+pZNQZslE+rN8vScuv+9SToADtAba7ebZjMWp9eOGul sg== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2tnq21addq-5 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 11 Jul 2019 02:20:36 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 11 Jul 2019 02:20:35 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 11 Jul 2019 02:20:35 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 3C1753F7044; Thu, 11 Jul 2019 02:20:34 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Thu, 11 Jul 2019 14:50:29 +0530 Message-ID: <1562836829-10240-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-07-11_01:, , signatures=0 Subject: [dts] [PATCH] settings: Add VF PCI id details of Cavium device X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: Phanendra Vukkisala Signed-off-by: Phanendra Vukkisala --- framework/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/framework/settings.py b/framework/settings.py index caec361..ea95b28 100644 --- a/framework/settings.py +++ b/framework/settings.py @@ -100,6 +100,7 @@ NICS = { 'hi1822': '19e5:1822', 'fortvile_bdw_de': '8086:15ac', 'cavium_a063': '177d:a063', + 'cavium_a064': '177d:a064', 'columbiaville_100g': '8086:1592', 'columbiaville_25g': '8086:1593', 'fastlinq_ql45000': 'qede', @@ -160,6 +161,7 @@ DRIVERS = { 'hi1822': 'hinic', 'fortvile_bdw_de': 'ixgbe', 'cavium_a063': 'octeontx2-nicpf', + 'cavium_a064': 'octeontx2-nicvf', 'columbiaville_100g': 'ice', 'columbiaville_25g': 'ice', 'fastlinq_ql45000': '1077:1656', -- 1.7.9.5