xref: /rk3399_rockchip-uboot/include/power/charge_animation.h (revision 6aa65bb1ee0951865e27da81dde1de76c6d4687e)
1 /*
2  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef _CHARGE_ANIMATION_H_
8 #define _CHARGE_ANIMATION_H_
9 
10 struct charge_animation_pdata {
11 	int android_charge;
12 	int uboot_charge;
13 
14 	int exit_charge_voltage;
15 	int exit_charge_level;
16 	int low_power_voltage;
17 	int screen_on_voltage;
18 
19 	int system_suspend;
20 	int auto_wakeup_interval;
21 	int auto_wakeup_screen_invert;
22 	int auto_off_screen_interval;
23 };
24 
25 #endif
26