diff options
author | Tom Rini <trini@konsulko.com> | 2015-08-14 11:37:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-08-14 16:27:11 -0400 |
commit | 61dfa65e405f2713dfc8090ed8147ec33b003717 (patch) | |
tree | 778383bfeed4427b9500445ed627b015ba550ba4 /include | |
parent | dfcd23e3e7ce8f7dd3b6bd392a8501958ba15b48 (diff) | |
parent | 1c1f6076b9668cd04f4b13c011e72ee4e3c872f6 (diff) | |
download | u-boot-61dfa65e405f2713dfc8090ed8147ec33b003717.tar.gz |
Merge branch 'master' of git://git.denx.de/u-boot-pmic
Diffstat (limited to 'include')
-rw-r--r-- | include/power/pfuze100_pmic.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/power/pfuze100_pmic.h b/include/power/pfuze100_pmic.h index 138132a696..41cb710d78 100644 --- a/include/power/pfuze100_pmic.h +++ b/include/power/pfuze100_pmic.h @@ -8,6 +8,11 @@ #ifndef __PFUZE100_PMIC_H_ #define __PFUZE100_PMIC_H_ +/* Device ID */ +enum {PFUZE100 = 0x10, PFUZE200 = 0x11, PFUZE3000 = 0x30}; + +#define PFUZE100_REGULATOR_DRIVER "pfuze100_regulator" + /* PFUZE100 registers */ enum { PFUZE100_DEVICEID = 0x00, @@ -54,7 +59,7 @@ enum { PFUZE100_VGEN5VOL = 0x70, PFUZE100_VGEN6VOL = 0x71, - PMIC_NUM_OF_REGS = 0x7f, + PFUZE100_NUM_OF_REGS = 0x7f, }; /* Registor offset based on VOLT register */ |