diff options
author | Ćukasz Majewski <l.majewski@samsung.com> | 2012-11-13 03:22:00 +0000 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2012-11-14 11:21:09 +0100 |
commit | bd8479e8deca8d57c9b27096ced4153d9aacd962 (patch) | |
tree | 310b98eb76c83da068ca7363dde49184e1d6cc57 /include/power/battery.h | |
parent | e0a0cbf2472feb840a8b820838272c1204d51584 (diff) | |
download | u-boot-imx-bd8479e8deca8d57c9b27096ced4153d9aacd962.zip u-boot-imx-bd8479e8deca8d57c9b27096ced4153d9aacd962.tar.gz u-boot-imx-bd8479e8deca8d57c9b27096ced4153d9aacd962.tar.bz2 |
pmic: Extend struct pmic to support battery and charger related operations
Now it is possible to provide specific function per PMIC/power
device instance.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'include/power/battery.h')
-rw-r--r-- | include/power/battery.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/power/battery.h b/include/power/battery.h new file mode 100644 index 0000000..e2fec68 --- /dev/null +++ b/include/power/battery.h @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2012 Samsung Electronics + * Lukasz Majewski <l.majewski@samsung.com> + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +#ifndef __POWER_BATTERY_H_ +#define __POWER_BATTERY_H_ + +struct battery { + unsigned int version; + unsigned int state_of_chrg; + unsigned int time_to_empty; + unsigned int capacity; + unsigned int voltage_uV; + + unsigned int state; +}; + +int power_bat_init(unsigned char bus); +#endif /* __POWER_BATTERY_H_ */ |