2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-02-13 16:24:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Socionext Inc.
|
|
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UNIPHIER_BOOT_DEVICE_H_
|
|
|
|
#define _UNIPHIER_BOOT_DEVICE_H_
|
|
|
|
|
|
|
|
struct uniphier_boot_device {
|
|
|
|
unsigned int boot_device;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct uniphier_boot_device uniphier_ld4_boot_device_table[];
|
|
|
|
extern const struct uniphier_boot_device uniphier_pro5_boot_device_table[];
|
|
|
|
extern const struct uniphier_boot_device uniphier_pxs2_boot_device_table[];
|
|
|
|
extern const struct uniphier_boot_device uniphier_ld11_boot_device_table[];
|
2017-05-15 05:26:33 +00:00
|
|
|
extern const struct uniphier_boot_device uniphier_pxs3_boot_device_table[];
|
2017-02-13 16:24:26 +00:00
|
|
|
|
|
|
|
extern const unsigned int uniphier_ld4_boot_device_count;
|
|
|
|
extern const unsigned int uniphier_pro5_boot_device_count;
|
|
|
|
extern const unsigned int uniphier_pxs2_boot_device_count;
|
|
|
|
extern const unsigned int uniphier_ld11_boot_device_count;
|
2017-05-15 05:26:33 +00:00
|
|
|
extern const unsigned int uniphier_pxs3_boot_device_count;
|
2017-02-13 16:24:26 +00:00
|
|
|
|
|
|
|
int uniphier_pxs2_boot_device_is_usb(u32 pinmon);
|
|
|
|
int uniphier_ld11_boot_device_is_usb(u32 pinmon);
|
|
|
|
int uniphier_ld20_boot_device_is_usb(u32 pinmon);
|
2017-05-15 05:26:33 +00:00
|
|
|
int uniphier_pxs3_boot_device_is_usb(u32 pinmon);
|
2017-02-13 16:24:26 +00:00
|
|
|
|
|
|
|
unsigned int uniphier_pxs2_boot_device_fixup(unsigned int mode);
|
|
|
|
|
|
|
|
#endif /* _UNIPHIER_BOOT_DEVICE_H_ */
|