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 385D7A046B for ; Wed, 26 Jun 2019 13:17:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DD00FF64; Wed, 26 Jun 2019 13:17:34 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id A3C392AB for ; Wed, 26 Jun 2019 13:17:32 +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 x5QBFGwN013832 for ; Wed, 26 Jun 2019 04:17:31 -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=CjDDByQZRtnrh/LdUo1pP2OaLy92w2IgnYwXPuOgtgD+NH+DdOrxBN41VrMi1OQ5ryrv KleEol81gERHnBB2sdH+IB78RasguxUy8LTgi6CYNrTN5iF2Y8tA9swquUm/CCB+wXjL /NY82bkEGsZmU+UCqUFCtGeLclwuwQ6OtO+g8G9L8VPJjga1dSg4fO7M9utZFipDysy/ Rq/fSnOQbh7l0uBzehK4WSt7Gmm7TNvjKtzHr273IxcXKpI/HVHMD8PFGkswtlqi2bnS kZIoOq8JDKxTRGQKKYhv35rs8cA+CcvVwKadU4XoF58/ac8iEvWUs+QbMCZI4OQVuBCM Aw== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2tc3s6rw50-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 26 Jun 2019 04:17:31 -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; Wed, 26 Jun 2019 04:17:29 -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; Wed, 26 Jun 2019 04:17:29 -0700 Received: from dut1171.mv.qlogic.com (unknown [10.112.88.18]) by maili.marvell.com (Postfix) with ESMTP id 96E263F703F; Wed, 26 Jun 2019 04:17:29 -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 x5QBHT2X010410; Wed, 26 Jun 2019 04:17:29 -0700 Received: (from root@localhost) by dut1171.mv.qlogic.com (8.14.7/8.14.7/Submit) id x5QBHThg010409; Wed, 26 Jun 2019 04:17:29 -0700 From: Yash Sharma To: CC: yash Date: Wed, 26 Jun 2019 04:17:22 -0700 Message-ID: <20190626111722.10372-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-26_06:, , 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