Server IP : 184.154.167.98 / Your IP : 3.12.150.240 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/4.18.0-553.27.1.lve.1.el8.x86_64/include/dt-bindings/soc/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ROCKCHIP_BOOT_MODE_H #define __ROCKCHIP_BOOT_MODE_H /*high 24 bits is tag, low 8 bits is type*/ #define REBOOT_FLAG 0x5242C300 /* normal boot */ #define BOOT_NORMAL (REBOOT_FLAG + 0) /* enter bootloader rockusb mode */ #define BOOT_BL_DOWNLOAD (REBOOT_FLAG + 1) /* enter recovery */ #define BOOT_RECOVERY (REBOOT_FLAG + 3) /* enter fastboot mode */ #define BOOT_FASTBOOT (REBOOT_FLAG + 9) #endif