2014-10-03 10:21:06 +00:00
|
|
|
/*
|
2015-09-21 15:27:39 +00:00
|
|
|
* Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
2014-10-03 10:21:06 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_BOOT_DEVICE_H_
|
|
|
|
#define _ASM_BOOT_DEVICE_H_
|
|
|
|
|
|
|
|
struct boot_device_info {
|
|
|
|
u32 type;
|
|
|
|
char *info;
|
|
|
|
};
|
|
|
|
|
2016-03-30 11:17:02 +00:00
|
|
|
u32 uniphier_sld3_boot_device(void);
|
|
|
|
u32 uniphier_ld4_boot_device(void);
|
|
|
|
u32 uniphier_pro5_boot_device(void);
|
|
|
|
u32 uniphier_pxs2_boot_device(void);
|
2016-04-21 05:43:18 +00:00
|
|
|
u32 uniphier_ld20_boot_device(void);
|
2015-09-21 15:27:39 +00:00
|
|
|
|
2016-03-30 11:17:02 +00:00
|
|
|
void uniphier_sld3_boot_mode_show(void);
|
|
|
|
void uniphier_ld4_boot_mode_show(void);
|
|
|
|
void uniphier_pro5_boot_mode_show(void);
|
|
|
|
void uniphier_pxs2_boot_mode_show(void);
|
2016-04-21 05:43:18 +00:00
|
|
|
void uniphier_ld20_boot_mode_show(void);
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2016-02-02 12:11:31 +00:00
|
|
|
u32 spl_boot_device_raw(void);
|
|
|
|
|
2014-10-03 10:21:06 +00:00
|
|
|
#endif /* _ASM_BOOT_DEVICE_H_ */
|