From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57681) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuEBE-0002KV-OE for qemu-devel@nongnu.org; Mon, 18 May 2015 02:05:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YuEBB-000554-Hy for qemu-devel@nongnu.org; Mon, 18 May 2015 02:05:36 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:17069) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuEB9-00050U-WF for qemu-devel@nongnu.org; Mon, 18 May 2015 02:05:33 -0400 Message-ID: <5559810D.1000807@huawei.com> Date: Mon, 18 May 2015 14:05:01 +0800 From: Shannon Zhao MIME-Version: 1.0 References: <1430990964-10528-1-git-send-email-zhaoshenglong@huawei.com> <1430990964-10528-21-git-send-email-zhaoshenglong@huawei.com> <20150515161326.6f909420@nial.brq.redhat.com> In-Reply-To: <20150515161326.6f909420@nial.brq.redhat.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v6 20/22] hw/acpi/aml-build: Add Unicode macro List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Mammedov Cc: peter.maydell@linaro.org, hangaohuai@huawei.com, mst@redhat.com, a.spyridakis@virtualopensystems.com, claudio.fontana@huawei.com, qemu-devel@nongnu.org, peter.huangpeng@huawei.com, alex.bennee@linaro.org, hanjun.guo@linaro.org, pbonzini@redhat.com, lersek@redhat.com, christoffer.dall@linaro.org, shannon.zhao@linaro.org On 2015/5/15 22:13, Igor Mammedov wrote: > On Thu, 7 May 2015 17:29:22 +0800 > Shannon Zhao wrote: > >> From: Shannon Zhao >> >> Signed-off-by: Shannon Zhao >> Signed-off-by: Shannon Zhao >> --- >> hw/acpi/aml-build.c | 18 ++++++++++++++++++ >> include/hw/acpi/aml-build.h | 1 + >> 2 files changed, 19 insertions(+) >> >> diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-build.c >> index 67b7719..06f9d37 100644 >> --- a/hw/acpi/aml-build.c >> +++ b/hw/acpi/aml-build.c >> @@ -1061,6 +1061,24 @@ Aml *aml_touuid(const char *uuid) >> return var; >> } >> >> +/* >> + * ACPI 2.0b: 16.2.3.6.4.3 Unicode Macro (Convert Ascii String To Unicode) >> + */ >> +Aml *aml_unicode(const char *str) >> +{ >> + Aml *var = aml_bundle(0x11 /* BufferOp */, AML_BUFFER); >> + >> + while (*str != '\0') { > { >> + build_append_byte(var->buf, 0); >> + build_append_byte(var->buf, *str); > order seems to be wrong, shouldn't you swap bytes? > oops, thanks. >> + str++; >> + } > } while(*str != '\0'); > > and drop vvv sorry, you mean drop what here? >> + build_append_byte(var->buf, 0); >> + build_append_byte(var->buf, *str); >> + >> + return var; >> +} >> + >> void >> build_header(GArray *linker, GArray *table_data, >> AcpiTableHeader *h, const char *sig, int len, uint8_t rev) >> diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h >> index 5ff9c14..39b44e4 100644 >> --- a/include/hw/acpi/aml-build.h >> +++ b/include/hw/acpi/aml-build.h >> @@ -269,6 +269,7 @@ Aml *aml_field(const char *name, AmlFieldFlags flags); >> Aml *aml_create_dword_field(Aml *srcbuf, Aml *index, const char *name); >> Aml *aml_varpackage(uint32_t num_elements); >> Aml *aml_touuid(const char *uuid); >> +Aml *aml_unicode(const char *str); >> >> void >> build_header(GArray *linker, GArray *table_data, > > > . > -- Shannon