1charge-animation 2~~~~~~~~~~~~~~~~ 3 4Required properties : 5 - compatible: "rockchip,uboot-charge" 6 - rockchip,uboot-charge-on: enable uboot charge animation 7 - rockchip,android-charge-on: enable android charge animation, 8 either uboot charge animation or android charge animation 9 can be executed, but not both 10 11Optional properties : 12 - rockchip,uboot-low-power-voltage: voltage threshold of power off 13 - rockchip,screen-on-voltage: voltage threshold of screen on 14 15Example: 16 17 charge-animation { 18 compatible = "rockchip,uboot-charge"; 19 rockchip,uboot-charge-on = <1>; 20 rockchip,android-charge-on = <0>; 21 rockchip,uboot-low-power-voltage = <3500>; 22 rockchip,screen-on-voltage = <3600>; 23 status = "okay"; 24 }; 25