mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	This SoC is too old. It is difficult to maintain any longer. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2017 Socionext Inc.
 | |
|  *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #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[];
 | |
| extern const struct uniphier_boot_device uniphier_pxs3_boot_device_table[];
 | |
| 
 | |
| 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;
 | |
| extern const unsigned int uniphier_pxs3_boot_device_count;
 | |
| 
 | |
| 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);
 | |
| int uniphier_pxs3_boot_device_is_usb(u32 pinmon);
 | |
| 
 | |
| unsigned int uniphier_pxs2_boot_device_fixup(unsigned int mode);
 | |
| unsigned int uniphier_ld11_boot_device_fixup(unsigned int mode);
 | |
| 
 | |
| #endif /* _UNIPHIER_BOOT_DEVICE_H_ */
 |