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 716BCA046B for ; Fri, 28 Jun 2019 09:13:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 14AAC1B99D; Fri, 28 Jun 2019 09:13:39 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 967E01B99C for ; Fri, 28 Jun 2019 09:13:37 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x5S7AXHC001214; Fri, 28 Jun 2019 00:13: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=zWSk20PaR1ajOnmrLuSO8jaI4WFO/Uxbci9ZsC0x6SI=; b=RngvGvcwZb0Y0zc+SYoHqMU59HgjyA4m8XUtE1Kufv56v1wlLjaIb5OAlBzZWdG9aTp5 29UlcIcZJkCJms/0i8rBMta9B6ARLdlsc0wBphFWgDYJPdOrZHZJ46GG2aGcZ/tX3UE8 Yx8Wsd4P5jmRIgyWaUYay8v78RL+siBmDSPCyFHBPjh+eWwBi2Zj7rcl/dlBUcl5GHNN Haq4Uwe59fxJNLF9m1Y8UqZsz1UMGyefATsdvXJU654w8EqlEel27oyXRIspgzFFhuUD hNfAVIjy4+DV2doPVRlviq6RqqcFexWMqt3y52T8yFblQ9ehHTlFh0D2CrGv+yyI6FwM DQ== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 2tdd7786qg-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 28 Jun 2019 00:13: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; Fri, 28 Jun 2019 00:13: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; Fri, 28 Jun 2019 00:13:35 -0700 Received: from dut1171.mv.qlogic.com (unknown [10.112.88.18]) by maili.marvell.com (Postfix) with ESMTP id 9ABBC3F7040; Fri, 28 Jun 2019 00:13:35 -0700 (PDT) Received: from dut1171.mv.qlogic.com (localhost [127.0.0.1]) by dut1171.mv.qlogic.com (8.14.7/8.14.7) with ESMTP id x5S7DZvI025283; Fri, 28 Jun 2019 00:13:35 -0700 Received: (from root@localhost) by dut1171.mv.qlogic.com (8.14.7/8.14.7/Submit) id x5S7DYml025282; Fri, 28 Jun 2019 00:13:34 -0700 From: Yash Sharma To: CC: , yash Date: Fri, 28 Jun 2019 00:13:31 -0700 Message-ID: <20190628071332.25246-1-ysharma@marvell.com> X-Mailer: git-send-email 2.12.0 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-28_02:, , signatures=0 Subject: [dts] [PATCH 1/1] Patch adds preliminary settings to support Qlogic NICs. 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: yash Signed-off-by: yash --- framework/settings.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/framework/settings.py b/framework/settings.py index 34d49f7..6ece55e 100644 --- a/framework/settings.py +++ b/framework/settings.py @@ -100,6 +100,10 @@ NICS = { 'hi1822': '19e5:1822', 'fortvile_bdw_de': '8086:15ac', 'cavium_a063': '177d:a063', + 'fastlinq_ql45000': '1077:1656', + 'fastlinq_ql45000_vf': '1077:1664', + 'fastlinq_ql41000': '1077:8070', + 'fastlinq_ql41000_vf': '1077:8090', } DRIVERS = { @@ -154,6 +158,10 @@ DRIVERS = { 'hi1822': 'hinic', 'fortvile_bdw_de': 'ixgbe', 'cavium_a063': 'octeontx2-nicpf', + 'fastlinq_ql45000': 'qede', + 'fastlinq_ql41000': 'qede', + 'fastlinq_ql45000_vf': 'qede', + 'fastlinq_ql41000_vf': 'qede', } """ -- 1.8.3.1