You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
441 B
23 lines
441 B
Power Supply Core Support
|
|
|
|
Optional Properties:
|
|
- power-supplies : This property is added to a supply in order to list the
|
|
devices which supply it power, referenced by their phandles.
|
|
|
|
Example:
|
|
|
|
usb-charger: power@e {
|
|
compatible = "some,usb-charger";
|
|
...
|
|
};
|
|
|
|
ac-charger: power@c {
|
|
compatible = "some,ac-charger";
|
|
...
|
|
};
|
|
|
|
battery@b {
|
|
compatible = "some,battery";
|
|
...
|
|
power-supplies = <&usb-charger>, <&ac-charger>;
|
|
};
|
|
|