mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-29 19:18:22 +00:00 
			
		
		
		
	As Ocelot, Servalt, Luton and Jaguar2, this family of SoCs are found in Microsemi Switches solution. Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			544 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			544 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
 | |
| /*
 | |
|  * Microsemi Serval Switch driver
 | |
|  *
 | |
|  * Copyright (c) 2018 Microsemi Corporation
 | |
|  */
 | |
| 
 | |
| #ifndef _MSCC_SERVAL_H_
 | |
| #define _MSCC_SERVAL_H_
 | |
| 
 | |
| #include <linux/bitops.h>
 | |
| #include <dm.h>
 | |
| 
 | |
| /*
 | |
|  * Target offset base(s)
 | |
|  */
 | |
| #define MSCC_IO_ORIGIN1_OFFSET 0x70000000
 | |
| #define MSCC_IO_ORIGIN1_SIZE   0x00200000
 | |
| #define MSCC_IO_ORIGIN2_OFFSET 0x71000000
 | |
| #define MSCC_IO_ORIGIN2_SIZE   0x01000000
 | |
| #define BASE_CFG        ((void __iomem *)0x70000000)
 | |
| #define BASE_DEVCPU_GCB ((void __iomem *)0x71070000)
 | |
| 
 | |
| #endif
 |