boot-device.h 689 B

1234567891011121314151617181920212223242526272829
  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 uniphier_sld3_boot_device(void);
  13. u32 uniphier_ld4_boot_device(void);
  14. u32 uniphier_pro5_boot_device(void);
  15. u32 uniphier_pxs2_boot_device(void);
  16. u32 uniphier_ld20_boot_device(void);
  17. void uniphier_sld3_boot_mode_show(void);
  18. void uniphier_ld4_boot_mode_show(void);
  19. void uniphier_pro5_boot_mode_show(void);
  20. void uniphier_pxs2_boot_mode_show(void);
  21. void uniphier_ld20_boot_mode_show(void);
  22. u32 spl_boot_device_raw(void);
  23. #endif /* _ASM_BOOT_DEVICE_H_ */