Masahiro Yamada | fb09203 | 2017-02-14 01:24:26 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 Socionext Inc. |
| 3 | * Author: Masahiro Yamada <yamada.masahiro@socionext.com> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #ifndef _UNIPHIER_BOOT_DEVICE_H_ |
| 9 | #define _UNIPHIER_BOOT_DEVICE_H_ |
| 10 | |
| 11 | struct uniphier_boot_device { |
| 12 | unsigned int boot_device; |
| 13 | const char *desc; |
| 14 | }; |
| 15 | |
Masahiro Yamada | fb09203 | 2017-02-14 01:24:26 +0900 | [diff] [blame] | 16 | extern const struct uniphier_boot_device uniphier_ld4_boot_device_table[]; |
| 17 | extern const struct uniphier_boot_device uniphier_pro5_boot_device_table[]; |
| 18 | extern const struct uniphier_boot_device uniphier_pxs2_boot_device_table[]; |
| 19 | extern const struct uniphier_boot_device uniphier_ld11_boot_device_table[]; |
Masahiro Yamada | 8e0a450 | 2017-05-15 14:26:33 +0900 | [diff] [blame] | 20 | extern const struct uniphier_boot_device uniphier_pxs3_boot_device_table[]; |
Masahiro Yamada | fb09203 | 2017-02-14 01:24:26 +0900 | [diff] [blame] | 21 | |
Masahiro Yamada | fb09203 | 2017-02-14 01:24:26 +0900 | [diff] [blame] | 22 | extern const unsigned int uniphier_ld4_boot_device_count; |
| 23 | extern const unsigned int uniphier_pro5_boot_device_count; |
| 24 | extern const unsigned int uniphier_pxs2_boot_device_count; |
| 25 | extern const unsigned int uniphier_ld11_boot_device_count; |
Masahiro Yamada | 8e0a450 | 2017-05-15 14:26:33 +0900 | [diff] [blame] | 26 | extern const unsigned int uniphier_pxs3_boot_device_count; |
Masahiro Yamada | fb09203 | 2017-02-14 01:24:26 +0900 | [diff] [blame] | 27 | |
| 28 | int uniphier_pxs2_boot_device_is_usb(u32 pinmon); |
| 29 | int uniphier_ld11_boot_device_is_usb(u32 pinmon); |
| 30 | int uniphier_ld20_boot_device_is_usb(u32 pinmon); |
Masahiro Yamada | 8e0a450 | 2017-05-15 14:26:33 +0900 | [diff] [blame] | 31 | int uniphier_pxs3_boot_device_is_usb(u32 pinmon); |
Masahiro Yamada | fb09203 | 2017-02-14 01:24:26 +0900 | [diff] [blame] | 32 | |
| 33 | unsigned int uniphier_pxs2_boot_device_fixup(unsigned int mode); |
| 34 | unsigned int uniphier_ld11_boot_device_fixup(unsigned int mode); |
| 35 | |
| 36 | #endif /* _UNIPHIER_BOOT_DEVICE_H_ */ |