mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
7cbad9fa5f
Add interrupt specifiers for USB and AC charger input. Interrupt numbers are from the datasheet. Fix wrong property for compatible string. Signed-off-by: Milo Kim <woogyom.kim@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Sebastian Reichel <sre@kernel.org>
18 lines
450 B
Plaintext
18 lines
450 B
Plaintext
TPS65217 Charger
|
|
|
|
Required Properties:
|
|
-compatible: "ti,tps65217-charger"
|
|
-interrupts: TPS65217 interrupt numbers for the AC and USB charger input change.
|
|
Should be <0> for the USB charger and <1> for the AC adapter.
|
|
-interrupt-names: Should be "USB" and "AC"
|
|
|
|
This node is a subnode of the tps65217 PMIC.
|
|
|
|
Example:
|
|
|
|
tps65217-charger {
|
|
compatible = "ti,tps65217-charger";
|
|
interrupts = <0>, <1>;
|
|
interrupt-names = "USB", "AC";
|
|
};
|