From: Andy Yan Date: Thu, 3 Mar 2016 12:16:14 +0000 (+0800) Subject: FROMLIST: dt-bindings: soc: add rockchip reboot mode head file X-Git-Tag: firefly_0821_release~3300 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7138bcb02ec313da24598e0414c328877f86c72c;p=firefly-linux-kernel-4.4.55.git FROMLIST: dt-bindings: soc: add rockchip reboot mode head file add macro #define for rockchip reboot mode Change-Id: I84036d43864f80623519d0df959e1de7e1a540db Signed-off-by: Andy Yan --- diff --git a/include/dt-bindings/soc/rockchip_boot-mode.h b/include/dt-bindings/soc/rockchip_boot-mode.h new file mode 100644 index 000000000000..a33591b24f88 --- /dev/null +++ b/include/dt-bindings/soc/rockchip_boot-mode.h @@ -0,0 +1,14 @@ +#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 loader rockusb mode */ +#define BOOT_LOADER (REBOOT_FLAG + 1) +/* enter recovery */ +#define BOOT_RECOVERY (REBOOT_FLAG + 3) +#define BOOT_FASTBOOT (REBOOT_FLAG + 9) + +#endif