diff options
| author | Samuel Holland <[email protected]> | 2023-01-21 17:13:04 -0600 |
|---|---|---|
| committer | Andre Przywara <[email protected]> | 2023-01-23 01:18:31 +0000 |
| commit | dc1b1d14588e1c4bfc600d299e426eefc9bd21c8 (patch) | |
| tree | 4c7485985b25a93943176b6a48036521ed8efce2 /include | |
| parent | 382b8371340e06fa12ad03dc2f8e466c8c715eff (diff) | |
power: pmic: axp: Provide a variant ID in the driver data
Subordinate regulator drivers can use this enumerated ID instead of
matching the compatible string again.
Reviewed-by: Andre Przywara <[email protected]>
Signed-off-by: Samuel Holland <[email protected]>
Signed-off-by: Andre Przywara <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/axp_pmic.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/axp_pmic.h b/include/axp_pmic.h index 01ebba63479..4ac64865831 100644 --- a/include/axp_pmic.h +++ b/include/axp_pmic.h @@ -26,6 +26,18 @@ #define AXP_PMIC_SEC_DEVICE_ADDR 0x745 #define AXP_PMIC_SEC_RUNTIME_ADDR 0x3a +enum { + AXP152_ID, + AXP202_ID, + AXP209_ID, + AXP221_ID, + AXP223_ID, + AXP803_ID, + AXP806_ID, + AXP809_ID, + AXP813_ID, +}; + int axp_set_dcdc1(unsigned int mvolt); int axp_set_dcdc2(unsigned int mvolt); int axp_set_dcdc3(unsigned int mvolt); |
