spl.h 309 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2013 Atmel Corporation
  3. * Bo Shen <voice.shen@atmel.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _ASM_ARCH_SPL_H_
  8. #define _ASM_ARCH_SPL_H_
  9. enum {
  10. BOOT_DEVICE_NONE,
  11. #ifdef CONFIG_SYS_USE_MMC
  12. BOOT_DEVICE_MMC1,
  13. BOOT_DEVICE_MMC2,
  14. BOOT_DEVICE_MMC2_2,
  15. #endif
  16. };
  17. #endif