xref: /rk3399_rockchip-uboot/include/power/charge_animation.h (revision f9bf27e6a5708e63cf19b5dbb2988d46adb9782a)
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 };
21 
22 #endif
23