mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	Add support for loading U-Boot on the Broadcom 7445 SoC. This port assumes Broadcom's BOLT bootloader is acting as the second stage bootloader, and U-Boot is acting as the third stage bootloader, loaded as an ELF program by BOLT. Signed-off-by: Thomas Fitzsimmons <fitzsim@fitzsim.org> Cc: Stefan Roese <sr@denx.de> Cc: Tom Rini <trini@konsulko.com> Cc: Florian Fainelli <f.fainelli@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * (C) Copyright 2018  Cisco Systems, Inc.
 | |
|  *
 | |
|  * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
 | |
|  */
 | |
| 
 | |
| #ifndef _BCMSTB_SDHCI_H
 | |
| #define _BCMSTB_SDHCI_H
 | |
| 
 | |
| #include <linux/types.h>
 | |
| 
 | |
| int bcmstb_sdhci_init(phys_addr_t regbase);
 | |
| 
 | |
| #endif /* _BCMSTB_SDHCI_H */
 |