sys_proto.h 406 B

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