Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
fuel_gauge.h
Go to the documentation of this file.
1/*
2 * Copyright 2022 Google LLC
3 * Copyright 2023 Microsoft Corporation
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef ZEPHYR_INCLUDE_DRIVERS_BATTERY_H_
9#define ZEPHYR_INCLUDE_DRIVERS_BATTERY_H_
10
18#ifdef __cplusplus
19extern "C" {
20#endif /* __cplusplus */
21
22#include <errno.h>
23#include <stdbool.h>
24#include <stddef.h>
25#include <stdint.h>
26
27#include <zephyr/device.h>
28
38
101
109
112};
113
115
118 /* Fields have the format: */
119 /* FUEL_GAUGE_PROPERTY_FIELD */
120 /* type property_field; */
121
122 /* Dynamic Battery Info */
126 bool cutoff;
175};
176
180#define SBS_GAUGE_MANUFACTURER_NAME_MAX_SIZE 20
181#define SBS_GAUGE_DEVICE_NAME_MAX_SIZE 20
182#define SBS_GAUGE_DEVICE_CHEMISTRY_MAX_SIZE 4
183
187} __packed;
188
192} __packed;
193
197} __packed;
198
205typedef int (*fuel_gauge_get_property_t)(const struct device *dev, fuel_gauge_prop_t prop,
206 union fuel_gauge_prop_val *val);
207
214typedef int (*fuel_gauge_set_property_t)(const struct device *dev, fuel_gauge_prop_t prop,
215 union fuel_gauge_prop_val val);
216
223typedef int (*fuel_gauge_get_buffer_property_t)(const struct device *dev,
224 fuel_gauge_prop_t prop_type,
225 void *dst, size_t dst_len);
226
233typedef int (*fuel_gauge_battery_cutoff_t)(const struct device *dev);
234
235/* Caching is entirely on the onus of the client */
236
237__subsystem struct fuel_gauge_driver_api {
248};
249
259__syscall int fuel_gauge_get_prop(const struct device *dev, fuel_gauge_prop_t prop,
260 union fuel_gauge_prop_val *val);
261
262static inline int z_impl_fuel_gauge_get_prop(const struct device *dev, fuel_gauge_prop_t prop,
263 union fuel_gauge_prop_val *val)
264{
265 const struct fuel_gauge_driver_api *api = (const struct fuel_gauge_driver_api *)dev->api;
266
267 if (api->get_property == NULL) {
268 return -ENOSYS;
269 }
270
271 return api->get_property(dev, prop, val);
272}
273
289__syscall int fuel_gauge_get_props(const struct device *dev, fuel_gauge_prop_t *props,
290 union fuel_gauge_prop_val *vals, size_t len);
291static inline int z_impl_fuel_gauge_get_props(const struct device *dev,
292 fuel_gauge_prop_t *props,
293 union fuel_gauge_prop_val *vals, size_t len)
294{
295 const struct fuel_gauge_driver_api *api = dev->api;
296
297 for (int i = 0; i < len; i++) {
298 int ret = api->get_property(dev, props[i], vals + i);
299
300 if (ret) {
301 return ret;
302 }
303 }
304
305 return 0;
306}
307
317__syscall int fuel_gauge_set_prop(const struct device *dev, fuel_gauge_prop_t prop,
318 union fuel_gauge_prop_val val);
319
320static inline int z_impl_fuel_gauge_set_prop(const struct device *dev, fuel_gauge_prop_t prop,
321 union fuel_gauge_prop_val val)
322{
323 const struct fuel_gauge_driver_api *api = dev->api;
324
325 if (api->set_property == NULL) {
326 return -ENOSYS;
327 }
328
329 return api->set_property(dev, prop, val);
330}
343__syscall int fuel_gauge_set_props(const struct device *dev, fuel_gauge_prop_t *props,
344 union fuel_gauge_prop_val *vals, size_t len);
345
346static inline int z_impl_fuel_gauge_set_props(const struct device *dev,
347 fuel_gauge_prop_t *props,
348 union fuel_gauge_prop_val *vals, size_t len)
349{
350 for (int i = 0; i < len; i++) {
351 int ret = fuel_gauge_set_prop(dev, props[i], vals[i]);
352
353 if (ret) {
354 return ret;
355 }
356 }
357
358 return 0;
359}
360
372__syscall int fuel_gauge_get_buffer_prop(const struct device *dev, fuel_gauge_prop_t prop_type,
373 void *dst, size_t dst_len);
374
375static inline int z_impl_fuel_gauge_get_buffer_prop(const struct device *dev,
376 fuel_gauge_prop_t prop_type,
377 void *dst, size_t dst_len)
378{
379 const struct fuel_gauge_driver_api *api = (const struct fuel_gauge_driver_api *)dev->api;
380
381 if (api->get_buffer_property == NULL) {
382 return -ENOSYS;
383 }
384
385 return api->get_buffer_property(dev, prop_type, dst, dst_len);
386}
387
396__syscall int fuel_gauge_battery_cutoff(const struct device *dev);
397
398static inline int z_impl_fuel_gauge_battery_cutoff(const struct device *dev)
399{
400 const struct fuel_gauge_driver_api *api = (const struct fuel_gauge_driver_api *)dev->api;
401
402 if (api->battery_cutoff == NULL) {
403 return -ENOSYS;
404 }
405
406 return api->battery_cutoff(dev);
407}
408
413#ifdef __cplusplus
414}
415#endif /* __cplusplus */
416
417#include <syscalls/fuel_gauge.h>
418
419#endif /* ZEPHYR_INCLUDE_DRIVERS_BATTERY_H_ */
System error numbers.
int(* fuel_gauge_set_property_t)(const struct device *dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val)
Callback API for setting a fuel_gauge property.
Definition: fuel_gauge.h:214
int(* fuel_gauge_battery_cutoff_t)(const struct device *dev)
Callback API for doing a battery cutoff.
Definition: fuel_gauge.h:233
#define SBS_GAUGE_DEVICE_NAME_MAX_SIZE
Definition: fuel_gauge.h:181
int(* fuel_gauge_get_buffer_property_t)(const struct device *dev, fuel_gauge_prop_t prop_type, void *dst, size_t dst_len)
Callback API for getting a fuel_gauge buffer property.
Definition: fuel_gauge.h:223
int fuel_gauge_set_props(const struct device *dev, fuel_gauge_prop_t *props, union fuel_gauge_prop_val *vals, size_t len)
Set a battery fuel-gauge property.
int(* fuel_gauge_get_property_t)(const struct device *dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val *val)
Callback API for getting a fuel_gauge property.
Definition: fuel_gauge.h:205
uint16_t fuel_gauge_prop_t
Definition: fuel_gauge.h:114
int fuel_gauge_battery_cutoff(const struct device *dev)
Have fuel gauge cutoff its associated battery.
int fuel_gauge_get_buffer_prop(const struct device *dev, fuel_gauge_prop_t prop_type, void *dst, size_t dst_len)
Fetch a battery fuel-gauge buffer property.
#define SBS_GAUGE_MANUFACTURER_NAME_MAX_SIZE
Data structures for reading SBS buffer properties.
Definition: fuel_gauge.h:180
int fuel_gauge_set_prop(const struct device *dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val)
Set a battery fuel-gauge property.
int fuel_gauge_get_prop(const struct device *dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val *val)
Fetch a battery fuel-gauge property.
int fuel_gauge_get_props(const struct device *dev, fuel_gauge_prop_t *props, union fuel_gauge_prop_val *vals, size_t len)
Fetch multiple battery fuel-gauge properies.
fuel_gauge_prop_type
Definition: fuel_gauge.h:29
#define SBS_GAUGE_DEVICE_CHEMISTRY_MAX_SIZE
Definition: fuel_gauge.h:182
@ FUEL_GAUGE_CURRENT
Battery current (uA); negative=discharging.
Definition: fuel_gauge.h:42
@ FUEL_GAUGE_STATUS
Alarm, Status and Error codes (flags)
Definition: fuel_gauge.h:78
@ FUEL_GAUGE_SBS_MFR_ACCESS
Retrieve word from SBS1.1 ManufactuerAccess.
Definition: fuel_gauge.h:62
@ FUEL_GAUGE_CONNECT_STATE
Connect state of battery.
Definition: fuel_gauge.h:48
@ FUEL_GAUGE_FLAGS
General Error/Runtime Flags.
Definition: fuel_gauge.h:50
@ FUEL_GAUGE_CYCLE_COUNT
Cycle count in 1/100ths (number of charge/discharge cycles)
Definition: fuel_gauge.h:46
@ FUEL_GAUGE_COMMON_COUNT
Reserved to demark end of common fuel gauge properties.
Definition: fuel_gauge.h:103
@ FUEL_GAUGE_MANUFACTURER_NAME
Manufacturer of pack (1 byte length + 20 bytes data)
Definition: fuel_gauge.h:96
@ FUEL_GAUGE_SBS_MODE
Battery Mode (flags)
Definition: fuel_gauge.h:72
@ FUEL_GAUGE_SBS_ATRATE
AtRate (mA or 10 mW)
Definition: fuel_gauge.h:84
@ FUEL_GAUGE_DESIGN_VOLTAGE
Design Voltage (mV)
Definition: fuel_gauge.h:82
@ FUEL_GAUGE_AVG_CURRENT
Runtime Dynamic Battery Parameters.
Definition: fuel_gauge.h:37
@ FUEL_GAUGE_RUNTIME_TO_FULL
Remaining time in minutes until battery reaches full charge.
Definition: fuel_gauge.h:60
@ FUEL_GAUGE_CHARGE_CURRENT
Battery desired Max Charging Current (uA)
Definition: fuel_gauge.h:74
@ FUEL_GAUGE_CUSTOM_BEGIN
Reserved to demark downstream custom properties - use this value as the actual value may change over ...
Definition: fuel_gauge.h:108
@ FUEL_GAUGE_DEVICE_CHEMISTRY
Chemistry (1 byte length + 4 bytes data)
Definition: fuel_gauge.h:100
@ FUEL_GAUGE_PROP_MAX
Reserved to demark end of valid enum properties.
Definition: fuel_gauge.h:111
@ FUEL_GAUGE_SBS_ATRATE_TIME_TO_EMPTY
AtRateTimeToEmpty (minutes)
Definition: fuel_gauge.h:88
@ FUEL_GAUGE_DESIGN_CAPACITY
Design Capacity (mAh or 10mWh)
Definition: fuel_gauge.h:80
@ FUEL_GAUGE_VOLTAGE
Battery voltage (uV)
Definition: fuel_gauge.h:70
@ FUEL_GAUGE_SBS_REMAINING_TIME_ALARM
Remaining Time Alarm (minutes)
Definition: fuel_gauge.h:94
@ FUEL_GAUGE_CHARGE_CUTOFF
Whether the battery underlying the fuel-gauge is cut off from charge.
Definition: fuel_gauge.h:44
@ FUEL_GAUGE_CHARGE_VOLTAGE
Battery desired Max Charging Voltage (uV)
Definition: fuel_gauge.h:76
@ FUEL_GAUGE_ABSOLUTE_STATE_OF_CHARGE
Absolute state of charge (percent, 0-100) - expressed as % of design capacity.
Definition: fuel_gauge.h:64
@ FUEL_GAUGE_DEVICE_NAME
Name of pack (1 byte length + 20 bytes data)
Definition: fuel_gauge.h:98
@ FUEL_GAUGE_SBS_ATRATE_TIME_TO_FULL
AtRateTimeToFull (minutes)
Definition: fuel_gauge.h:86
@ FUEL_GAUGE_TEMPERATURE
Temperature in 0.1 K.
Definition: fuel_gauge.h:68
@ FUEL_GAUGE_FULL_CHARGE_CAPACITY
Full Charge Capacity in uAh (might change in some implementations to determine wear)
Definition: fuel_gauge.h:52
@ FUEL_GAUGE_RUNTIME_TO_EMPTY
Remaining battery life time in minutes.
Definition: fuel_gauge.h:58
@ FUEL_GAUGE_PRESENT_STATE
Is the battery physically present.
Definition: fuel_gauge.h:54
@ FUEL_GAUGE_REMAINING_CAPACITY
Remaining capacity in uAh.
Definition: fuel_gauge.h:56
@ FUEL_GAUGE_SBS_REMAINING_CAPACITY_ALARM
Remaining Capacity Alarm (mAh or 10mWh)
Definition: fuel_gauge.h:92
@ FUEL_GAUGE_BATTERY_CUTOFF
Used to cutoff the battery from the system - useful for storage/shipping of devices.
Definition: fuel_gauge.h:40
@ FUEL_GAUGE_RELATIVE_STATE_OF_CHARGE
Relative state of charge (percent, 0-100) - expressed as % of full charge capacity.
Definition: fuel_gauge.h:66
@ FUEL_GAUGE_SBS_ATRATE_OK
AtRateOK (boolean)
Definition: fuel_gauge.h:90
#define ENOSYS
Function not implemented.
Definition: errno.h:83
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
#define UINT16_MAX
Definition: stdint.h:28
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
__INT16_TYPE__ int16_t
Definition: stdint.h:73
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:387
Definition: fuel_gauge.h:237
fuel_gauge_battery_cutoff_t battery_cutoff
Definition: fuel_gauge.h:247
fuel_gauge_set_property_t set_property
Definition: fuel_gauge.h:245
fuel_gauge_get_property_t get_property
Note: Historically this API allowed drivers to implement a custom multi-get/set property function,...
Definition: fuel_gauge.h:244
fuel_gauge_get_buffer_property_t get_buffer_property
Definition: fuel_gauge.h:246
Definition: fuel_gauge.h:194
char device_chemistry[4]
Definition: fuel_gauge.h:196
uint8_t device_chemistry_length
Definition: fuel_gauge.h:195
Definition: fuel_gauge.h:189
uint8_t device_name_length
Definition: fuel_gauge.h:190
char device_name[20]
Definition: fuel_gauge.h:191
Definition: fuel_gauge.h:184
uint8_t manufacturer_name_length
Definition: fuel_gauge.h:185
char manufacturer_name[20]
Definition: fuel_gauge.h:186
Property field to value/type union.
Definition: fuel_gauge.h:117
uint16_t design_volt
FUEL_GAUGE_DESIGN_VOLTAGE.
Definition: fuel_gauge.h:162
uint16_t design_cap
FUEL_GAUGE_DESIGN_CAPACITY.
Definition: fuel_gauge.h:160
uint32_t runtime_to_full
FUEL_GAUGE_RUNTIME_TO_FULL.
Definition: fuel_gauge.h:140
uint8_t absolute_state_of_charge
FUEL_GAUGE_ABSOLUTE_STATE_OF_CHARGE.
Definition: fuel_gauge.h:144
uint16_t temperature
FUEL_GAUGE_TEMPERATURE.
Definition: fuel_gauge.h:148
uint8_t relative_state_of_charge
FUEL_GAUGE_RELATIVE_STATE_OF_CHARGE.
Definition: fuel_gauge.h:146
uint16_t fg_status
FUEL_GAUGE_STATUS.
Definition: fuel_gauge.h:158
uint32_t chg_current
FUEL_GAUGE_CHARGE_CURRENT.
Definition: fuel_gauge.h:154
uint16_t sbs_at_rate_time_to_empty
FUEL_GAUGE_SBS_ATRATE_TIME_TO_EMPTY
Definition: fuel_gauge.h:168
uint16_t sbs_mode
FUEL_GAUGE_SBS_MODE.
Definition: fuel_gauge.h:152
uint16_t sbs_remaining_capacity_alarm
FUEL_GAUGE_SBS_REMAINING_CAPACITY_ALARM.
Definition: fuel_gauge.h:172
uint32_t chg_voltage
FUEL_GAUGE_CHARGE_VOLTAGE.
Definition: fuel_gauge.h:156
uint16_t sbs_mfr_access_word
FUEL_GAUGE_SBS_MFR_ACCESS.
Definition: fuel_gauge.h:142
bool sbs_at_rate_ok
FUEL_GAUGE_SBS_ATRATE_OK.
Definition: fuel_gauge.h:170
int current
FUEL_GAUGE_CURRENT.
Definition: fuel_gauge.h:128
uint16_t sbs_remaining_time_alarm
FUEL_GAUGE_SBS_REMAINING_TIME_ALARM.
Definition: fuel_gauge.h:174
uint32_t full_charge_capacity
FUEL_GAUGE_FULL_CHARGE_CAPACITY.
Definition: fuel_gauge.h:134
int16_t sbs_at_rate
FUEL_GAUGE_SBS_ATRATE.
Definition: fuel_gauge.h:164
int voltage
FUEL_GAUGE_VOLTAGE.
Definition: fuel_gauge.h:150
uint32_t cycle_count
FUEL_GAUGE_CYCLE_COUNT.
Definition: fuel_gauge.h:130
bool cutoff
FUEL_GAUGE_CHARGE_CUTOFF.
Definition: fuel_gauge.h:126
int avg_current
FUEL_GAUGE_AVG_CURRENT.
Definition: fuel_gauge.h:124
uint32_t flags
FUEL_GAUGE_FLAGS.
Definition: fuel_gauge.h:132
uint32_t remaining_capacity
FUEL_GAUGE_REMAINING_CAPACITY.
Definition: fuel_gauge.h:136
uint32_t runtime_to_empty
FUEL_GAUGE_RUNTIME_TO_EMPTY.
Definition: fuel_gauge.h:138
uint16_t sbs_at_rate_time_to_full
FUEL_GAUGE_SBS_ATRATE_TIME_TO_FULL.
Definition: fuel_gauge.h:166