18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef __ROCKCHIP_BOOT_MODE_H
38c2ecf20Sopenharmony_ci#define __ROCKCHIP_BOOT_MODE_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_ci/*high 24 bits is tag, low 8 bits is type*/
68c2ecf20Sopenharmony_ci#define REBOOT_FLAG		0x5242C300
78c2ecf20Sopenharmony_ci/* normal boot */
88c2ecf20Sopenharmony_ci#define BOOT_NORMAL		(REBOOT_FLAG + 0)
98c2ecf20Sopenharmony_ci/* enter bootloader rockusb mode */
108c2ecf20Sopenharmony_ci#define BOOT_BL_DOWNLOAD	(REBOOT_FLAG + 1)
118c2ecf20Sopenharmony_ci/* enter recovery */
128c2ecf20Sopenharmony_ci#define BOOT_RECOVERY		(REBOOT_FLAG + 3)
138c2ecf20Sopenharmony_ci /* enter fastboot mode */
148c2ecf20Sopenharmony_ci#define BOOT_FASTBOOT		(REBOOT_FLAG + 9)
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ci#endif
17