2018-02-03 10:02:09 +00:00
|
|
|
/*
|
|
|
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _CHARGE_ANIMATION_H_
|
|
|
|
|
#define _CHARGE_ANIMATION_H_
|
|
|
|
|
|
|
|
|
|
struct charge_animation_pdata {
|
|
|
|
|
int android_charge;
|
|
|
|
|
int uboot_charge;
|
|
|
|
|
|
|
|
|
|
int exit_charge_voltage;
|
|
|
|
|
int exit_charge_level;
|
|
|
|
|
int low_power_voltage;
|
|
|
|
|
int screen_on_voltage;
|
|
|
|
|
|
|
|
|
|
int system_suspend;
|
2018-03-13 11:57:46 +00:00
|
|
|
int auto_wakeup_interval;
|
|
|
|
|
int auto_wakeup_screen_invert;
|
|
|
|
|
int auto_off_screen_interval;
|
2018-02-03 10:02:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|