boot-device.h 403 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _ASM_BOOT_DEVICE_H_
  7. #define _ASM_BOOT_DEVICE_H_
  8. struct boot_device_info {
  9. u32 type;
  10. char *info;
  11. };
  12. u32 ph1_sld3_boot_device(void);
  13. u32 ph1_ld4_boot_device(void);
  14. void ph1_sld3_boot_mode_show(void);
  15. void ph1_ld4_boot_mode_show(void);
  16. #endif /* _ASM_BOOT_DEVICE_H_ */