From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Branden Subject: Re: [PATCH 1/4] introduce Broadcom Stingray Date: Fri, 30 Mar 2018 11:54:44 -0700 Message-ID: <749e4b65-6476-8f11-9c02-78e8582790f9@broadcom.com> References: <20180321180629.58318-1-ajit.khaparde@broadcom.com> <20180321180629.58318-2-ajit.khaparde@broadcom.com> <0dc8fdc4-2302-1e78-3faa-d62349e27ed4@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit To: Ferruh Yigit , Ajit Khaparde , dev@dpdk.org Return-path: Received: from mail-qt0-f194.google.com (mail-qt0-f194.google.com [209.85.216.194]) by dpdk.org (Postfix) with ESMTP id 2DF355B1C for ; Fri, 30 Mar 2018 20:54:47 +0200 (CEST) Received: by mail-qt0-f194.google.com with SMTP id h4so10161062qtn.13 for ; Fri, 30 Mar 2018 11:54:47 -0700 (PDT) In-Reply-To: <0dc8fdc4-2302-1e78-3faa-d62349e27ed4@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 18-03-30 03:34 AM, Ferruh Yigit wrote: > On 3/21/2018 6:06 PM, Ajit Khaparde wrote: >> From: Scott Branden >> >> Add Broadcom Stingray machine support based on armv8. >> >> For product brief see: >> https://www.broadcom.com/products/ethernet-connectivity/controllers/bcm58800 >> >> Signed-off-by: Scott Branden >> Signed-off-by: Ajit Khaparde >> --- >> config/defconfig_arm64-stingray-linuxapp-gcc | 16 ++++++++++++++ >> mk/machine/stingray/rte.vars.mk | 31 ++++++++++++++++++++++++++++ >> 2 files changed, 47 insertions(+) >> create mode 100644 config/defconfig_arm64-stingray-linuxapp-gcc >> create mode 100644 mk/machine/stingray/rte.vars.mk >> >> diff --git a/config/defconfig_arm64-stingray-linuxapp-gcc b/config/defconfig_arm64-stingray-linuxapp-gcc >> new file mode 100644 >> index 000000000..247e53eaa >> --- /dev/null >> +++ b/config/defconfig_arm64-stingray-linuxapp-gcc >> @@ -0,0 +1,16 @@ >> +# SPDX-License-Identifier: BSD-3-Clause >> +# Copyright (C) Broadcom 2017-2018. All rights reserved. >> +# >> + >> +#include "defconfig_arm64-armv8a-linuxapp-gcc" >> + >> +# Broadcom - Stingray >> +CONFIG_RTE_MACHINE="stingray" > This is same as armv8a machine type, is it required to add new "stingray" > machine type? Good question.  We could have tuning or other differences in the future but it looks like we can use the armv8a machine. I think we can get rid of rte.vars.mk for now. > > <...>