From patchwork Sun Sep 1 14:21:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tao Xu X-Patchwork-Id: 1156311 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=intel.com Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46LwS92b2tz9sDQ for ; Mon, 2 Sep 2019 00:23:37 +1000 (AEST) Received: from localhost ([::1]:57728 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4QlT-0004ad-7t for incoming@patchwork.ozlabs.org; Sun, 01 Sep 2019 10:23:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39475) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4QjV-0004UO-Dq for qemu-devel@nongnu.org; Sun, 01 Sep 2019 10:21:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i4QjU-0004ew-6K for qemu-devel@nongnu.org; Sun, 01 Sep 2019 10:21:33 -0400 Received: from mga12.intel.com ([192.55.52.136]:16707) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i4QjT-0004Tv-Uq for qemu-devel@nongnu.org; Sun, 01 Sep 2019 10:21:32 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Sep 2019 07:21:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,455,1559545200"; d="scan'208";a="211453058" Received: from tao-optiplex-7060.sh.intel.com ([10.239.159.36]) by fmsmga002.fm.intel.com with ESMTP; 01 Sep 2019 07:21:22 -0700 From: Tao Xu To: imammedo@redhat.com, eblake@redhat.com, ehabkost@redhat.com Date: Sun, 1 Sep 2019 22:21:08 +0800 Message-Id: <20190901142119.20482-1-tao3.xu@intel.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 192.55.52.136 Subject: [Qemu-devel] [PATCH v10 00/11] Build ACPI Heterogeneous Memory Attribute Table (HMAT) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: jingqi.liu@intel.com, tao3.xu@intel.com, fan.du@intel.com, qemu-devel@nongnu.org, daniel@linux.ibm.com, jonathan.cameron@huawei.com, dan.j.williams@intel.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" This series of patches will build Heterogeneous Memory Attribute Table (HMAT) according to the command line. The ACPI HMAT describes the memory attributes, such as memory side cache attributes and bandwidth and latency details, related to the Memory Proximity Domain. The software is expected to use HMAT information as hint for optimization. In the linux kernel, the codes in drivers/acpi/hmat/hmat.c parse and report the platform's HMAT tables. These patches depend on: https://patchwork.kernel.org/project/qemu-devel/list/?series=166701 The V9 patches link: https://patchwork.kernel.org/cover/11085475/ Changelog: v10: - Add qemu_strtotime_ps() to convert strings with time suffixes to numbers, and add some tests for it. - Add qapi buildin type time, and add some tests for it. - Add machine oprion properties "-machine hmat=on|off" for enabling or disabling HMAT in QEMU. v9: - change the CLI input way, make it more user firendly (Daniel Black) use latency=NUM[p|n|u]s and bandwidth=NUM[M|G|P](B/s) as input and drop the base-lat and base-bw input. v8: - rebase to upstream - Add check if numa->numa_state is NULL in pxb_dev_realize_common - Use nb_nodes in spapr_populate_memory() (RESEND to fix) (Igor) Liu Jingqi (5): hmat acpi: Build Memory Proximity Domain Attributes Structure(s) hmat acpi: Build System Locality Latency and Bandwidth Information Structure(s) hmat acpi: Build Memory Side Cache Information Structure(s) numa: Extend CLI to provide memory latency and bandwidth information numa: Extend CLI to provide memory side cache information Tao Xu (6): util/cutils: Add qemu_strtotime_ps() tests/cutils: Add test for qemu_strtotime_ps() qapi: Add builtin type time tests: Add test for QAPI builtin type time numa: Extend CLI to provide initiator information for numa nodes tests/bios-tables-test: add test cases for ACPI HMAT hw/acpi/Kconfig | 5 + hw/acpi/Makefile.objs | 1 + hw/acpi/hmat.c | 256 +++++++++++++++++++++++++++++ hw/acpi/hmat.h | 103 ++++++++++++ hw/core/machine.c | 72 ++++++++ hw/core/numa.c | 242 +++++++++++++++++++++++++++ hw/i386/acpi-build.c | 3 + include/qapi/visitor-impl.h | 4 + include/qapi/visitor.h | 9 + include/qemu/cutils.h | 1 + include/qemu/typedefs.h | 2 + include/sysemu/numa.h | 39 +++++ qapi/machine.json | 182 +++++++++++++++++++- qapi/opts-visitor.c | 22 +++ qapi/qapi-visit-core.c | 12 ++ qapi/qobject-input-visitor.c | 18 ++ qapi/trace-events | 1 + qemu-options.hx | 96 ++++++++++- scripts/qapi/common.py | 2 + tests/bios-tables-test.c | 44 +++++ tests/test-cutils.c | 199 ++++++++++++++++++++++ tests/test-keyval.c | 125 ++++++++++++++ tests/test-qobject-input-visitor.c | 29 ++++ util/cutils.c | 82 +++++++++ 24 files changed, 1540 insertions(+), 9 deletions(-) create mode 100644 hw/acpi/hmat.c create mode 100644 hw/acpi/hmat.h