Sugnan Prabhu S has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/42245 )
Change subject: acpi: add STA function to return external variable ......................................................................
acpi: add STA function to return external variable
This change adds support function to add STA function which returns an external variable.
Change-Id: I31755a76ee985ee6059289ae194537d531270761 Signed-off-by: Sugnan Prabhu S sugnan.prabhu.s@intel.com --- M src/acpi/acpigen.c M src/include/acpi/acpigen.h 2 files changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/42245/1
diff --git a/src/acpi/acpigen.c b/src/acpi/acpigen.c index 7a507d6..1fd4662 100644 --- a/src/acpi/acpigen.c +++ b/src/acpi/acpigen.c @@ -742,6 +742,17 @@ acpigen_pop_len(); }
+void acpigen_write_STA_ext(const char *ext_val) +{ + /* + * Method (_STA, 0, NotSerialized) { Return (ext_val) } + */ + acpigen_write_method("_STA", 0); + acpigen_emit_byte(RETURN_OP); + acpigen_emit_namestring(ext_val); + acpigen_pop_len(); +} + /* * Generates a func with max supported P-states. */ diff --git a/src/include/acpi/acpigen.h b/src/include/acpi/acpigen.h index 565abcf..4c26464 100644 --- a/src/include/acpi/acpigen.h +++ b/src/include/acpi/acpigen.h @@ -319,6 +319,7 @@ void acpigen_write_empty_PTC(void); void acpigen_write_PRW(u32 wake, u32 level); void acpigen_write_STA(uint8_t status); +void acpigen_write_STA_ext(const char *ext_val); void acpigen_write_TPC(const char *gnvs_tpc_limit); void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat, u32 busmLat, u32 control, u32 status);