Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __ROCKCHIP_BOOT_MODE_H
0003 #define __ROCKCHIP_BOOT_MODE_H
0004 
0005 /*high 24 bits is tag, low 8 bits is type*/
0006 #define REBOOT_FLAG     0x5242C300
0007 /* normal boot */
0008 #define BOOT_NORMAL     (REBOOT_FLAG + 0)
0009 /* enter bootloader rockusb mode */
0010 #define BOOT_BL_DOWNLOAD    (REBOOT_FLAG + 1)
0011 /* enter recovery */
0012 #define BOOT_RECOVERY       (REBOOT_FLAG + 3)
0013  /* enter fastboot mode */
0014 #define BOOT_FASTBOOT       (REBOOT_FLAG + 9)
0015 
0016 #endif