kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Xiao Guangrong <guangrong.xiao@linux.intel.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: pbonzini@redhat.com, gleb@kernel.org, mtosatti@redhat.com,
	stefanha@redhat.com, mst@redhat.com, rth@twiddle.net,
	ehabkost@redhat.com, dan.j.williams@intel.com,
	kvm@vger.kernel.org, qemu-devel@nongnu.org
Subject: Re: [PATCH 3/6] nvdimm acpi: introduce patched dsm memory
Date: Wed, 6 Jan 2016 23:39:04 +0800	[thread overview]
Message-ID: <568D3518.2000402@linux.intel.com> (raw)
In-Reply-To: <20160106162301.735e6517@nial.brq.redhat.com>



On 01/06/2016 11:23 PM, Igor Mammedov wrote:
> On Tue,  5 Jan 2016 02:52:05 +0800
> Xiao Guangrong <guangrong.xiao@linux.intel.com> wrote:
>
>> The dsm memory is used to save the input parameters and store
>> the dsm result which is filled by QEMU.
>>
>> The address of dsm memory is decided by bios and patched into
>> int64 object returned by "MEMA" method
>>
>> Signed-off-by: Xiao Guangrong <guangrong.xiao@linux.intel.com>
>> ---
>>   hw/acpi/aml-build.c         | 12 ++++++++++++
>>   hw/acpi/nvdimm.c            | 24 ++++++++++++++++++++++--
>>   include/hw/acpi/aml-build.h |  1 +
>>   3 files changed, 35 insertions(+), 2 deletions(-)
>>
>> diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-build.c
>> index 78e1290..83eadb3 100644
>> --- a/hw/acpi/aml-build.c
>> +++ b/hw/acpi/aml-build.c
>> @@ -394,6 +394,18 @@ Aml *aml_int(const uint64_t val)
>>   }
>>
>>   /*
>> + * ACPI 1.0b: 16.2.3 Data Objects Encoding:
>> + * encode: QWordConst
>> + */
>> +Aml *aml_int64(const uint64_t val)
>> +{
>> +    Aml *var = aml_alloc();
>> +    build_append_byte(var->buf, 0x0E); /* QWordPrefix */
>> +    build_append_int_noprefix(var->buf, val, 8);
>> +    return var;
>> +}
>> +
>> +/*
>>    * helper to construct NameString, which returns Aml object
>>    * for using with aml_append or other aml_* terms
>>    */
>> diff --git a/hw/acpi/nvdimm.c b/hw/acpi/nvdimm.c
>> index bc7cd8f..a72104c 100644
>> --- a/hw/acpi/nvdimm.c
>> +++ b/hw/acpi/nvdimm.c
>> @@ -28,6 +28,7 @@
>>
>>   #include "hw/acpi/acpi.h"
>>   #include "hw/acpi/aml-build.h"
>> +#include "hw/acpi/bios-linker-loader.h"
>>   #include "hw/nvram/fw_cfg.h"
>>   #include "hw/mem/nvdimm.h"
>>
>> @@ -402,7 +403,8 @@ void nvdimm_init_acpi_state(AcpiNVDIMMState *state, MemoryRegion *io,
>>                       state->dsm_mem->len);
>>   }
>>
>> -#define NVDIMM_COMMON_DSM      "NCAL"
>> +#define NVDIMM_GET_DSM_MEM      "MEMA"
>> +#define NVDIMM_COMMON_DSM       "NCAL"
>>
>>   static void nvdimm_build_common_dsm(Aml *dev)
>>   {
>> @@ -468,7 +470,8 @@ static void nvdimm_build_ssdt(GSList *device_list, GArray *table_offsets,
>>                                 GArray *table_data, GArray *linker,
>>                                 uint8_t revision)
>>   {
>> -    Aml *ssdt, *sb_scope, *dev;
>> +    Aml *ssdt, *sb_scope, *dev, *method;
>> +    int offset;
>>
>>       acpi_add_table(table_offsets, table_data);
>>
>> @@ -499,9 +502,26 @@ static void nvdimm_build_ssdt(GSList *device_list, GArray *table_offsets,
>>
>>       aml_append(sb_scope, dev);
>>
>> +    /*
>> +     * leave it at the end of ssdt so that we can conveniently get the
>> +     * offset of int64 object returned by the function which will be
>> +     * patched with the real address of the dsm memory by BIOS.
>> +     */
>> +    method = aml_method(NVDIMM_GET_DSM_MEM, 0, AML_NOTSERIALIZED);
>> +    aml_append(method, aml_return(aml_int64(0x0)));
> there is no need in dedicated aml_int64(), you can use aml_int(0x6400000000) trick

We can not do this due to the trick in  bios_linker_loader_add_pointer() which will
issue a COMMAND_ADD_POINTER to BIOS, however, this request does:
         /*
          * COMMAND_ADD_POINTER - patch the table (originating from
          * @dest_file) at @pointer.offset, by adding a pointer to the table
          * originating from @src_file. 1,2,4 or 8 byte unsigned
          * addition is used depending on @pointer.size.
          */

that means the new-offset = old-offset + the address of the new table allocated by BIOS.

So we expect 0 offset here.

>
>> +    aml_append(sb_scope, method);
>>       aml_append(ssdt, sb_scope);
>>       /* copy AML table into ACPI tables blob and patch header there */
>>       g_array_append_vals(table_data, ssdt->buf->data, ssdt->buf->len);
>> +
>> +    offset = table_data->len - 8;
>> +
>> +    bios_linker_loader_alloc(linker, NVDIMM_DSM_MEM_FILE, TARGET_PAGE_SIZE,
>> +                             false /* high memory */);
>> +    bios_linker_loader_add_pointer(linker, ACPI_BUILD_TABLE_FILE,
>> +                                   NVDIMM_DSM_MEM_FILE, table_data,
>> +                                   table_data->data + offset,
>> +                                   sizeof(uint64_t));
> this offset magic will break badly as soon as someone add something
> to the end of SSDT.
>

Yes, it is, so don't do that, :) and this is why we made the comment here:
  +    /*
  +     * leave it at the end of ssdt so that we can conveniently get the
  +     * offset of int64 object returned by the function which will be
  +     * patched with the real address of the dsm memory by BIOS.
  +     */



  reply	other threads:[~2016-01-06 15:46 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-04 18:52 [PATCH 0/6] NVDIMM ACPI: introduce the framework of QEMU emulated DSM Xiao Guangrong
2016-01-04 18:52 ` [PATCH 1/6] pc: acpi: bump DSDT/SSDT compliance revision to v2 Xiao Guangrong
2016-01-04 18:52 ` [PATCH 2/6] nvdimm acpi: initialize the resource used by NVDIMM ACPI Xiao Guangrong
2016-01-04 18:52 ` [PATCH 3/6] nvdimm acpi: introduce patched dsm memory Xiao Guangrong
2016-01-06 15:23   ` Igor Mammedov
2016-01-06 15:39     ` Xiao Guangrong [this message]
2016-01-07 11:04       ` Igor Mammedov
2016-01-08  3:40         ` Xiao Guangrong
2016-01-08 17:06           ` Igor Mammedov
2016-01-04 18:52 ` [PATCH 4/6] acpi: allow using acpi named offset for OperationRegion Xiao Guangrong
2016-01-04 18:52 ` [PATCH 5/6] nvdimm acpi: let qemu handle _DSM method Xiao Guangrong
2016-01-07 14:22   ` Igor Mammedov
2016-01-08  4:01     ` Xiao Guangrong
2016-01-08 16:08       ` Igor Mammedov
2016-01-04 18:52 ` [PATCH 6/6] nvdimm acpi: emulate dsm method Xiao Guangrong
2016-01-07 14:13 ` [Qemu-devel] [PATCH 0/6] NVDIMM ACPI: introduce the framework of QEMU emulated DSM Igor Mammedov
2016-01-12 19:02   ` Xiao Guangrong

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=568D3518.2000402@linux.intel.com \
    --to=guangrong.xiao@linux.intel.com \
    --cc=dan.j.williams@intel.com \
    --cc=ehabkost@redhat.com \
    --cc=gleb@kernel.org \
    --cc=imammedo@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=mtosatti@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=stefanha@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).