From: Tao Xu <tao3.xu@intel.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: "lvivier@redhat.com" <lvivier@redhat.com>,
"thuth@redhat.com" <thuth@redhat.com>,
"ehabkost@redhat.com" <ehabkost@redhat.com>,
"mst@redhat.com" <mst@redhat.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"sw@weilnetz.de" <sw@weilnetz.de>, "Du, Fan" <fan.du@intel.com>,
"armbru@redhat.com" <armbru@redhat.com>,
Daniel Black <daniel@linux.ibm.com>,
"mdroth@linux.vnet.ibm.com" <mdroth@linux.vnet.ibm.com>,
"Liu, Jingqi" <jingqi.liu@intel.com>,
Jonathan Cameron <Jonathan.Cameron@huawei.com>
Subject: Re: [PATCH v17 12/14] hmat acpi: Build Memory Side Cache Information Structure(s)
Date: Mon, 25 Nov 2019 09:10:27 +0800 [thread overview]
Message-ID: <a43bdc6f-c20a-564a-49f9-87d36f73e2f0@intel.com> (raw)
In-Reply-To: <20191122133219.1d46d30c@redhat.com>
On 11/22/2019 8:32 PM, Igor Mammedov wrote:
> On Fri, 22 Nov 2019 15:48:24 +0800
> Tao Xu <tao3.xu@intel.com> wrote:
>
>> From: Liu Jingqi <jingqi.liu@intel.com>
>>
>> This structure describes memory side cache information for memory
>> proximity domains if the memory side cache is present and the
>> physical device forms the memory side cache.
>> The software could use this information to effectively place
>> the data in memory to maximize the performance of the system
>> memory that use the memory side cache.
>>
>> Reviewed-by: Daniel Black <daniel@linux.ibm.com>
>> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
>
> for the future reference,
> You are not supposed to carry over Reviewed-by tags
> if you do non trivial change to the patch.
>
OK, thanks for your suggestion
>> Signed-off-by: Liu Jingqi <jingqi.liu@intel.com>
>> Signed-off-by: Tao Xu <tao3.xu@intel.com>
>
> Reviewed-by: Igor Mammedov <imammedo@redhat.com>
>
>> ---
>>
>> No changes in v17.
>>
>> Changes in v16:
>> - Use checks and assert to replace masks (Igor)
>> - Fields in Cache Attributes are promoted to uint32_t before
>> shifting (Igor)
>> - Drop cpu_to_le32() (Igor)
>>
>> Changes in v13:
>> - rename level as cache_level
>> ---
>> hw/acpi/hmat.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++++-
>> 1 file changed, 68 insertions(+), 1 deletion(-)
>>
>> diff --git a/hw/acpi/hmat.c b/hw/acpi/hmat.c
>> index e5ee8b4317..bb6adb0ccf 100644
>> --- a/hw/acpi/hmat.c
>> +++ b/hw/acpi/hmat.c
>> @@ -143,14 +143,62 @@ static void build_hmat_lb(GArray *table_data, HMAT_LB_Info *hmat_lb,
>> g_free(entry_list);
>> }
>>
>> +/* ACPI 6.3: 5.2.27.5 Memory Side Cache Information Structure: Table 5-147 */
>> +static void build_hmat_cache(GArray *table_data, uint8_t total_levels,
>> + NumaHmatCacheOptions *hmat_cache)
>> +{
>> + /*
>> + * Cache Attributes: Bits [3:0] – Total Cache Levels
>> + * for this Memory Proximity Domain
>> + */
>> + uint32_t cache_attr = total_levels;
>> +
>> + /* Bits [7:4] : Cache Level described in this structure */
>> + cache_attr |= (uint32_t) hmat_cache->level << 4;
>> +
>> + /* Bits [11:8] - Cache Associativity */
>> + cache_attr |= (uint32_t) hmat_cache->assoc << 8;
>> +
>> + /* Bits [15:12] - Write Policy */
>> + cache_attr |= (uint32_t) hmat_cache->policy << 12;
>> +
>> + /* Bits [31:16] - Cache Line size in bytes */
>> + cache_attr |= (uint32_t) hmat_cache->line << 16;
>> +
>> + /* Type */
>> + build_append_int_noprefix(table_data, 2, 2);
>> + /* Reserved */
>> + build_append_int_noprefix(table_data, 0, 2);
>> + /* Length */
>> + build_append_int_noprefix(table_data, 32, 4);
>> + /* Proximity Domain for the Memory */
>> + build_append_int_noprefix(table_data, hmat_cache->node_id, 4);
>> + /* Reserved */
>> + build_append_int_noprefix(table_data, 0, 4);
>> + /* Memory Side Cache Size */
>> + build_append_int_noprefix(table_data, hmat_cache->size, 8);
>> + /* Cache Attributes */
>> + build_append_int_noprefix(table_data, cache_attr, 4);
>> + /* Reserved */
>> + build_append_int_noprefix(table_data, 0, 2);
>> + /*
>> + * Number of SMBIOS handles (n)
>> + * Linux kernel uses Memory Side Cache Information Structure
>> + * without SMBIOS entries for now, so set Number of SMBIOS handles
>> + * as 0.
>> + */
>> + build_append_int_noprefix(table_data, 0, 2);
>> +}
>> +
>> /* Build HMAT sub table structures */
>> static void hmat_build_table_structs(GArray *table_data, NumaState *numa_state)
>> {
>> uint16_t flags;
>> uint32_t num_initiator = 0;
>> uint32_t initiator_list[MAX_NODES];
>> - int i, hierarchy, type;
>> + int i, hierarchy, type, cache_level, total_levels;
>> HMAT_LB_Info *hmat_lb;
>> + NumaHmatCacheOptions *hmat_cache;
>>
>> for (i = 0; i < numa_state->num_nodes; i++) {
>> flags = 0;
>> @@ -184,6 +232,25 @@ static void hmat_build_table_structs(GArray *table_data, NumaState *numa_state)
>> }
>> }
>> }
>> +
>> + /*
>> + * ACPI 6.3: 5.2.27.5 Memory Side Cache Information Structure:
>> + * Table 5-147
>> + */
>> + for (i = 0; i < numa_state->num_nodes; i++) {
>> + total_levels = 0;
>> + for (cache_level = 1; cache_level < HMAT_LB_LEVELS; cache_level++) {
>> + if (numa_state->hmat_cache[i][cache_level]) {
>> + total_levels++;
>> + }
>> + }
>> + for (cache_level = 0; cache_level <= total_levels; cache_level++) {
>> + hmat_cache = numa_state->hmat_cache[i][cache_level];
>> + if (hmat_cache) {
>> + build_hmat_cache(table_data, total_levels, hmat_cache);
>> + }
>> + }
>> + }
>> }
>>
>> void build_hmat(GArray *table_data, BIOSLinker *linker, NumaState *numa_state)
>
next prev parent reply other threads:[~2019-11-25 1:11 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-22 7:48 [PATCH v17 00/14] Build ACPI Heterogeneous Memory Attribute Table (HMAT) Tao Xu
2019-11-22 7:48 ` [PATCH v17 01/14] util/cutils: Add Add qemu_strtold and qemu_strtold_finite Tao Xu
2019-11-25 1:05 ` Tao Xu
2019-11-26 13:54 ` Markus Armbruster
2019-11-27 4:37 ` Tao Xu
2019-11-27 6:44 ` Markus Armbruster
2019-11-27 7:22 ` Tao Xu
2019-11-25 6:45 ` Markus Armbruster
2019-11-22 7:48 ` [PATCH v17 02/14] util/cutils: Use qemu_strtold_finite to parse size Tao Xu
2019-11-25 6:56 ` Markus Armbruster
2019-11-26 8:31 ` Tao Xu
2019-11-26 9:33 ` Markus Armbruster
2019-11-22 7:48 ` [PATCH v17 03/14] util/cutils: refactor do_strtosz() to support suffixes list Tao Xu
2019-11-25 7:20 ` Markus Armbruster
2019-11-25 12:15 ` Eduardo Habkost
2019-11-26 10:04 ` Markus Armbruster
2019-11-26 10:33 ` Daniel P. Berrangé
2019-11-26 12:37 ` Markus Armbruster
2019-11-26 15:46 ` Eduardo Habkost
2019-11-26 10:27 ` Markus Armbruster
2019-11-22 7:48 ` [PATCH v17 04/14] util/cutils: Add qemu_strtotime_ns() Tao Xu
2019-11-22 7:48 ` [PATCH v17 05/14] qapi: Add builtin type time Tao Xu
2019-11-25 8:04 ` Markus Armbruster
2019-11-22 7:48 ` [PATCH v17 06/14] tests: Add test for QAPI " Tao Xu
2019-11-25 9:08 ` Markus Armbruster
2019-11-22 7:48 ` [PATCH v17 07/14] numa: Extend CLI to provide initiator information for numa nodes Tao Xu
2019-11-22 7:48 ` [PATCH v17 08/14] numa: Extend CLI to provide memory latency and bandwidth information Tao Xu
2019-11-22 7:48 ` [PATCH v17 09/14] numa: Extend CLI to provide memory side cache information Tao Xu
2019-11-22 12:21 ` Igor Mammedov
2019-11-22 7:48 ` [PATCH v17 10/14] hmat acpi: Build Memory Proximity Domain Attributes Structure(s) Tao Xu
2019-11-22 7:48 ` [PATCH v17 11/14] hmat acpi: Build System Locality Latency and Bandwidth Information Structure(s) Tao Xu
2019-11-22 7:48 ` [PATCH v17 12/14] hmat acpi: Build Memory Side Cache " Tao Xu
2019-11-22 12:32 ` Igor Mammedov
2019-11-25 1:10 ` Tao Xu [this message]
2019-11-22 7:48 ` [PATCH v17 13/14] tests/numa: Add case for QMP build HMAT Tao Xu
2019-11-22 12:45 ` Igor Mammedov
2019-11-22 7:48 ` [PATCH v17 14/14] tests/bios-tables-test: add test cases for ACPI HMAT Tao Xu
2019-11-22 8:41 ` [PATCH v17 00/14] Build ACPI Heterogeneous Memory Attribute Table (HMAT) no-reply
2019-11-22 9:17 ` no-reply
2019-11-22 12:38 ` Igor Mammedov
2019-11-25 1:08 ` Tao Xu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a43bdc6f-c20a-564a-49f9-87d36f73e2f0@intel.com \
--to=tao3.xu@intel.com \
--cc=Jonathan.Cameron@huawei.com \
--cc=armbru@redhat.com \
--cc=daniel@linux.ibm.com \
--cc=ehabkost@redhat.com \
--cc=fan.du@intel.com \
--cc=imammedo@redhat.com \
--cc=jingqi.liu@intel.com \
--cc=lvivier@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sw@weilnetz.de \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).