From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 87F6356B7 for ; Wed, 3 Feb 2016 07:50:28 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 02 Feb 2016 22:50:28 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,388,1449561600"; d="scan'208";a="904470113" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga002.jf.intel.com with ESMTP; 02 Feb 2016 22:50:27 -0800 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id u136oPrZ010741; Wed, 3 Feb 2016 14:50:25 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u136oNc7025197; Wed, 3 Feb 2016 14:50:25 +0800 Received: (from yliu84x@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id u136oNNB025193; Wed, 3 Feb 2016 14:50:23 +0800 From: Yong Liu To: dts@dpdk.org Date: Wed, 3 Feb 2016 14:50:13 +0800 Message-Id: <1454482217-25147-3-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1454482217-25147-1-git-send-email-yong.liu@intel.com> References: <1454482217-25147-1-git-send-email-yong.liu@intel.com> Subject: [dts] [PATCH 2/6] framework settings: support boulderrapid nic 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: , X-List-Received-Date: Wed, 03 Feb 2016 06:50:28 -0000 Boulder Rapid is one of FM10k family nics. It has two EPLs and two PEPs. Lport number of 0(PEP0), 1(EPL0), 5(EPL1), 11(PEP1). Signed-off-by: Marvin Liu diff --git a/framework/settings.py b/framework/settings.py index dc4910a..068afce 100644 --- a/framework/settings.py +++ b/framework/settings.py @@ -78,7 +78,8 @@ NICS = { 'fortpark':'8086:374c', 'fvl10g_vf':'8086:154c', 'atwood': '8086:15d5', - 'ConnectX4':'15b3:1013' + 'ConnectX4':'15b3:1013', + 'boulderrapid': '8086:15d0', } DRIVERS = { @@ -113,7 +114,8 @@ DRIVERS = { 'fortpark':'i40e', 'fvl10g_vf':'i40evf', 'atwood': 'fm10k', - 'ConnectX4':'mlx5_core' + 'ConnectX4':'mlx5_core', + 'boulderrapid': 'fm10k', } """ -- 1.9.3