sys_proto.h 408 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2016 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _SYS_PROTO_MX7ULP_H_
  7. #define _SYS_PROTO_MX7ULP_H_
  8. #include <asm/imx-common/sys_proto.h>
  9. #define BT0CFG_LPBOOT_MASK 0x1
  10. #define BT0CFG_DUALBOOT_MASK 0x2
  11. enum bt_mode {
  12. LOW_POWER_BOOT, /* LP_BT = 1 */
  13. DUAL_BOOT, /* LP_BT = 0, DUAL_BT = 1 */
  14. SINGLE_BOOT /* LP_BT = 0, DUAL_BT = 0 */
  15. };
  16. #endif