acpigen: Add function to generate unicode names
The ACPI spec 6.3 chapter 6.1.10 states that _STR has to return a buffer containing UTF-16 characters. Add function to generate Unicode names and use it for _STR. It will replace non-ASCII characters with '?'. Use the introduced function in IPMI driver. Fixes ACPI warning shown in fwts. Change-Id: I16992bd449e3a51f6a8875731cd45a9f43de5c8c Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37789 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Rudolph
parent
2dd3b5c0f8
commit
389c827943
@@ -253,7 +253,7 @@ static void ipmi_ssdt(struct device *dev)
|
||||
acpigen_write_scope(scope);
|
||||
acpigen_write_device("SPMI");
|
||||
acpigen_write_name_string("_HID", "IPI0001");
|
||||
acpigen_write_name_string("_STR", "IPMI_KCS");
|
||||
acpigen_write_name_unicode("_STR", "IPMI_KCS");
|
||||
acpigen_write_name_byte("_UID", dev->command);
|
||||
acpigen_write_STA(0xf);
|
||||
acpigen_write_name("_CRS");
|
||||
|
Reference in New Issue
Block a user