mirror of
https://github.com/torvalds/linux.git
synced 2026-04-26 02:22:28 -04:00
Currently the power supply device tree documentation is spread in .../bindings/power_supply and .../bindings/power. This unifies the files for chargers and battery fuel gauges in .../bindings/power/supply and the ones for system reset/shutdown in .../bindings/power/reset (same structure as used for the drivers itself). Signed-off-by: Sebastian Reichel <sre@kernel.org>
24 lines
621 B
Plaintext
24 lines
621 B
Plaintext
SBS sbs-battery
|
|
~~~~~~~~~~
|
|
|
|
Required properties :
|
|
- compatible : "sbs,sbs-battery"
|
|
|
|
Optional properties :
|
|
- sbs,i2c-retry-count : The number of times to retry i2c transactions on i2c
|
|
IO failure.
|
|
- sbs,poll-retry-count : The number of times to try looking for new status
|
|
after an external change notification.
|
|
- sbs,battery-detect-gpios : The gpio which signals battery detection and
|
|
a flag specifying its polarity.
|
|
|
|
Example:
|
|
|
|
bq20z75@b {
|
|
compatible = "sbs,sbs-battery";
|
|
reg = < 0xb >;
|
|
sbs,i2c-retry-count = <2>;
|
|
sbs,poll-retry-count = <10>;
|
|
sbs,battery-detect-gpios = <&gpio-controller 122 1>;
|
|
}
|