summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ec/google/chromeec/ec.c16
-rw-r--r--src/ec/google/chromeec/ec.h8
2 files changed, 24 insertions, 0 deletions
diff --git a/src/ec/google/chromeec/ec.c b/src/ec/google/chromeec/ec.c
index 088f2fe553..2ef2ea90d5 100644
--- a/src/ec/google/chromeec/ec.c
+++ b/src/ec/google/chromeec/ec.c
@@ -1566,3 +1566,19 @@ bool google_chromeec_is_battery_present_and_above_critical_threshold(void)
return false;
}
+
+bool google_chromeec_is_battery_present(void)
+{
+ struct ec_params_battery_dynamic_info params = {
+ .index = 0,
+ };
+ struct ec_response_battery_dynamic_info resp;
+
+ if (ec_cmd_battery_get_dynamic(PLAT_EC, &params, &resp) == 0) {
+ /* Check if battery is present */
+ if (resp.flags & EC_BATT_FLAG_BATT_PRESENT)
+ return true;
+ }
+
+ return false;
+}
diff --git a/src/ec/google/chromeec/ec.h b/src/ec/google/chromeec/ec.h
index 0062df60db..20b508c66a 100644
--- a/src/ec/google/chromeec/ec.h
+++ b/src/ec/google/chromeec/ec.h
@@ -425,6 +425,14 @@ void google_chromeec_clear_ec_ap_idle(void);
bool google_chromeec_is_battery_present_and_above_critical_threshold(void);
/**
+ * Check if battery is present.
+ *
+ * @return true: if the battery is present
+ * false: if the battery is not present
+ */
+bool google_chromeec_is_battery_present(void);
+
+/**
* Determine if the UCSI stack is currently active.
*
* @return true if EC implements the UCSI stack