mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
common: acpi: Add items to .bss.slow.
BUG=chrome-os-partner:46056 BUG=chrome-os-partner:46063 BRANCH=None TEST=Enabled CONFIG_REPLACE_LOADER_WITH_BSS_SLOW on GLaDOS; Build and flash; Verify that AP and EC boot. Verify that AC notifications are sent to the AP. Verify that I can set temperature thresholds. TEST='sysjump rw' and repeat above tests. TEST=make -j buildall tests CQ-DEPEND=CL:311209 Change-Id: If2a7b0ce08b37e30362ab77eee1317c8a86b90dd Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/311344 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
committed by
chrome-bot
parent
75f740fa23
commit
7b69a258f6
@@ -20,14 +20,18 @@
|
||||
#define CPRINTF(format, args...) cprintf(CC_LPC, format, ## args)
|
||||
#define CPRINTS(format, args...) cprints(CC_LPC, format, ## args)
|
||||
|
||||
static uint8_t acpi_cmd; /* Last received ACPI command */
|
||||
static uint8_t acpi_addr; /* First byte of data after ACPI command */
|
||||
static int acpi_data_count; /* Number of data writes after command */
|
||||
static uint8_t acpi_mem_test; /* Test byte in ACPI memory space */
|
||||
/* Last received ACPI command */
|
||||
static uint8_t __bss_slow acpi_cmd;
|
||||
/* First byte of data after ACPI command */
|
||||
static uint8_t __bss_slow acpi_addr;
|
||||
/* Number of data writes after command */
|
||||
static int __bss_slow acpi_data_count;
|
||||
/* Test byte in ACPI memory space */
|
||||
static uint8_t __bss_slow acpi_mem_test;
|
||||
|
||||
#ifdef CONFIG_TEMP_SENSOR
|
||||
static int dptf_temp_sensor_id; /* last sensor ID written */
|
||||
static int dptf_temp_threshold; /* last threshold written */
|
||||
static int __bss_slow dptf_temp_sensor_id; /* last sensor ID written */
|
||||
static int __bss_slow dptf_temp_threshold; /* last threshold written */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user