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 93DC0A04AA; Tue, 8 Sep 2020 09:40:46 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4F1892BAB; Tue, 8 Sep 2020 09:40:46 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 99035A3 for ; Tue, 8 Sep 2020 09:40:43 +0200 (CEST) IronPort-SDR: QA9hvyTq7X6sdHUZoxYnYatCErertHO1wZUBoXnrs51hJdeMuBylcNwbjhnBZaMXw8SDVLiSHL Ah16R4K7KUgQ== X-IronPort-AV: E=McAfee;i="6000,8403,9737"; a="155489890" X-IronPort-AV: E=Sophos;i="5.76,405,1592895600"; d="scan'208";a="155489890" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Sep 2020 00:40:42 -0700 IronPort-SDR: cUKYN9hbvBM0DDAeNGly+712mhFefLQYvag+mFzP/LAqB5puUdKv9FIjr0APwNk1MVFT1Hf9j2 plvPsufJ8O+g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,405,1592895600"; d="scan'208";a="479912274" Received: from dpdk-lihong-ub1604.sh.intel.com ([10.67.118.174]) by orsmga005.jf.intel.com with ESMTP; 08 Sep 2020 00:40:40 -0700 From: LihongX Ma To: dts@dpdk.org Cc: LihongX Ma Date: Tue, 8 Sep 2020 08:06:58 +0800 Message-Id: <1599523618-17330-1-git-send-email-lihongx.ma@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH V1] framework: add api to configure build options for meson 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" 1. add api set_build_options to set build options of meson 2. optimization the function of meson build dpdk Signed-off-by: LihongX Ma --- framework/project_dpdk.py | 82 +++++++++++++++++++++++++++++++++++++++-------- framework/virt_dut.py | 1 + 2 files changed, 69 insertions(+), 14 deletions(-) diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index 03ace46..b5727ef 100644 --- a/framework/project_dpdk.py +++ b/framework/project_dpdk.py @@ -61,7 +61,13 @@ class DPDKdut(Dut): Set hugepage on DUT and install modules required by DPDK. Configure default ixgbe PMD function. """ + # get apps name of current build type + self.build_type = load_global_setting(HOST_BUILD_TYPE_SETTING) + if self.build_type not in self.apps_name_conf: + raise Exception('please config the apps name in app_name.cfg of build type:%s' % self.build_type) + self.config_build_options = {} self.target = target + self.set_toolchain(target) # set env variable @@ -73,11 +79,7 @@ class DPDKdut(Dut): self.set_driver_specific_configurations(drivername) - # get apps name of current build type - build_type = load_global_setting(HOST_BUILD_TYPE_SETTING) - if build_type not in self.apps_name_conf: - raise Exception('please config the apps name in app_name.cfg of build type:%s' % build_type) - self.apps_name = self.apps_name_conf[build_type] + self.apps_name = self.apps_name_conf[self.build_type] # use the dut target directory instead of 'target' string in app name for app in self.apps_name: cur_app_path = self.apps_name[app].replace('target', self.target) @@ -196,11 +198,15 @@ class DPDKdut(Dut): + "CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=n/' config/common_base", "# ", 30) self.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=.*$/" + "CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y/' config/common_base", "# ", 30) + self.set_build_options({'RTE_LIBRTE_I40E_INC_VECTOR': 'n', + 'RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC': 'y'}) if mode == 'full': self.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=.*$/" + "CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=n/' config/common_base", "# ", 30) self.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=.*$/" + "CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=n/' config/common_base", "# ", 30) + self.set_build_options({'RTE_LIBRTE_I40E_INC_VECTOR': 'n', + 'RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC': 'n'}) if mode == 'novector': self.send_expect("sed -i -e 's/CONFIG_RTE_IXGBE_INC_VECTOR=.*$/" + "CONFIG_RTE_IXGBE_INC_VECTOR=n/' config/common_base", "# ", 30) @@ -208,11 +214,49 @@ class DPDKdut(Dut): + "CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=n/' config/common_base", "# ", 30) self.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=.*$/" + "CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=n/' config/common_base", "# ", 30) + self.set_build_options({'RTE_IXGBE_INC_VECTOR': 'n', + 'RTE_LIBRTE_I40E_INC_VECTOR': 'n', + 'RTE_LIBRTE_FM10K_INC_VECTOR': 'n'}) def set_package(self, pkg_name="", patch_list=[]): self.package = pkg_name self.patches = patch_list + def set_build_options(self, config_parms, config_file=''): + """ + Set dpdk build options of meson + """ + if len(config_parms) == 0: + return options + for key in config_parms.keys(): + value = config_parms[key] + if value == '' or value == 'y': + value = 1 + else: + # does not need to set the configuration if the value is, mean do not define it + if type(value) == str and value != 'n': + value = '\\"%s\\"' % config_parms[key] + + self.config_build_options[key] = value + + def generator_build_option_string(self): + """ + Generator the build option string according to self.config_build_options dictionary + """ + params = [] + for key in self.config_build_options.keys(): + value = self.config_build_options[key] + if value == 'n': + continue + else: + params.append('-D%s=%s' % (key, value)) + + if len(params) == 0: + return '' + else: + args = '-Dc_args=' + '\'%s\'' % ' '.join(params) + return args + def build_install_dpdk(self, target, extra_options=''): """ Build DPDK source code with specified target. @@ -222,6 +266,7 @@ class DPDKdut(Dut): if use_shared_lib == 'true' and 'Virt' not in str(self): self.send_expect("sed -i 's/CONFIG_RTE_BUILD_SHARED_LIB=n/CONFIG_RTE_BUILD_SHARED_LIB=y/g' " "config/common_base", '#') + self.set_build_options({'RTE_BUILD_SHARED_LIB': 'y'}) self.send_expect("sed -i 's/CONFIG_RTE_EAL_IGB_UIO=n/CONFIG_RTE_EAL_IGB_UIO=y/g' " "config/common_base", '#') build_type = load_global_setting(HOST_BUILD_TYPE_SETTING) @@ -259,13 +304,15 @@ class DPDKdut(Dut): self.send_expect("export CFLAGS=-m32", "# ") self.send_expect("export PKG_CONFIG_LIBDIR=%s" % pkg_path, "# ") + options_config = self.generator_build_option_string() + self.send_expect("rm -rf " + target, "#") - out = self.send_expect("CC=%s meson --werror -Denable_kmods=True -Dlibdir=lib --default-library=%s %s" % ( - toolchain, default_library, target), "# ", build_time) - assert ("Error" not in out), "meson setup failed ..." + out = self.send_expect("CC=%s meson --werror -Denable_kmods=True -Dlibdir=lib %s --default-library=%s %s" % ( + toolchain, options_config, default_library, target), "# ", build_time) + assert ("FAILED" not in out), "meson setup failed ..." out = self.send_expect("ninja -C %s -j %d" % (target, self.number_of_cores), "# ", build_time) - assert ("Error" not in out), "ninja complie failed ..." + assert ("FAILED" not in out), "ninja complie failed ...\r\n %s" % out # copy kmod file to the folder same as make out = self.send_expect("find ./%s/kernel/ -name *.ko" % target, "# ", verify=True) @@ -303,6 +350,12 @@ class DPDKdut(Dut): # meson build same as linux self.build_install_dpdk_linux_meson(target, extra_options) + # the uio name different with linux, find the nic_uio + out = self.send_expect("find ./%s/kernel/ -name nic_uio" % target, "# ", verify=True) + self.send_expect("mkdir -p %s/kmod" % target, "# ") + if not isinstance(out, int) and len(out) > 0: + self.send_expect("cp %s %s/kmod/" % (out, target), "# ") + def build_install_dpdk_freebsd_makefile(self, target, extra_options): """ Build DPDK source code on Freebsd with specified target. @@ -494,11 +547,10 @@ class DPDKdut(Dut): raise Exception('Please config %s file path on conf/app_name.cfg' % name) example = '/'.join(folder_info[folder_info.index('examples')+1:]) - self.send_expect("cd %s/%s" % (self.base_dir, self.target), "# ", alt_session=True) - out = self.send_expect("meson configure -Dexamples=%s" % example, "# ", alt_session=True) - assert ("Error" not in out), "Compilation error..." - out = self.send_expect("ninja", "# ", timeout, alt_session=True) - assert ("Error" not in out), "Compilation error..." + out = self.send_expect("meson configure -Dexamples=%s %s" % (example, self.target), "# ") + assert ("FAILED" not in out), "Compilation error... \r\n %s" % out + out = self.send_expect("ninja -C %s" % self.target, "# ", timeout) + assert ("FAILED" not in out), "Compilation error... \r\n %s" % out # verify the app build in the config path out = self.send_expect('ls %s' % self.apps_name[name], "# ", verify=True) @@ -589,6 +641,8 @@ class DPDKdut(Dut): + "CONFIG_RTE_LIBRTE_MLX5_PMD=y/' config/common_base", "# ", 30) self.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_MLX4_PMD=n/" + "CONFIG_RTE_LIBRTE_MLX5_PMD=y/' config/common_base", "# ", 30) + sel.set_build_options({'RTE_LIBRTE_MLX5_PMD': 'y', + 'RTE_LIBRTE_MLX5_PMD': 'y'}) class DPDKtester(Tester): diff --git a/framework/virt_dut.py b/framework/virt_dut.py index 03569ba..b6078e1 100644 --- a/framework/virt_dut.py +++ b/framework/virt_dut.py @@ -231,6 +231,7 @@ class VirtDut(DPDKdut): for app in self.apps_name: cur_app_path = self.apps_name[app].replace('target', self.target) self.apps_name[app] = cur_app_path + ' ' + self.config_build_options = {} def init_core_list(self): self.cores = [] -- 2.7.4