mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /**
 | |
|  * (C) Copyright 2014, Cavium Inc.
 | |
| **/
 | |
| 
 | |
| #ifndef __THUNDERX_SVC_H__
 | |
| #define __THUNDERX_SVC_H__
 | |
| 
 | |
| /* SMC function IDs for general purpose queries */
 | |
| 
 | |
| #define THUNDERX_SVC_CALL_COUNT		0x4300ff00
 | |
| #define THUNDERX_SVC_UID		0x4300ff01
 | |
| 
 | |
| #define THUNDERX_SVC_VERSION		0x4300ff03
 | |
| 
 | |
| #define ARM_STD_SVC_VERSION		0x8400ff03
 | |
| 
 | |
| /* ThunderX Service Calls version numbers */
 | |
| #define THUNDERX_VERSION_MAJOR	0x0
 | |
| #define THUNDERX_VERSION_MINOR	0x1
 | |
| 
 | |
| #define THUNDERX_MMC_READ		0x43000101
 | |
| /* x1 - block address
 | |
|  * x2 - size
 | |
|  * x3 - buffer address
 | |
|  */
 | |
| #define THUNDERX_MMC_WRITE		0x43000102
 | |
| /* x1 - block address
 | |
|  * x2 - size
 | |
|  * x3 - buffer address
 | |
|  */
 | |
| 
 | |
| #define THUNDERX_NOR_READ		0x43000111
 | |
| /* x1 - block address
 | |
|  * x2 - size
 | |
|  * x3 - buffer address
 | |
|  */
 | |
| #define THUNDERX_NOR_WRITE		0x43000112
 | |
| /* x1 - block address
 | |
|  * x2 - size
 | |
|  * x3 - buffer address
 | |
|  */
 | |
| #define THUNDERX_NOR_ERASE		0x43000113
 | |
| /* x1 - block address
 | |
|  */
 | |
| 
 | |
| #define THUNDERX_PART_COUNT		0x43000201
 | |
| #define THUNDERX_GET_PART		0x43000202
 | |
| /* x1 - pointer to the buffer
 | |
|  * x2 - index
 | |
|  */
 | |
| 
 | |
| #define THUNDERX_DRAM_SIZE		0x43000301
 | |
| /* x1 - node number
 | |
|  */
 | |
| 
 | |
| #define THUNDERX_GTI_SYNC		0x43000401
 | |
| 
 | |
| #define THUNDERX_ENV_COUNT		0x43000501
 | |
| #define THUNDERX_ENV_STRING		0x43000502
 | |
| /* x1 - index
 | |
|  */
 | |
| 
 | |
| #define THUNDERX_NODE_COUNT		0x43000601
 | |
| 
 | |
| #endif /* __THUNDERX_SVC_H__ */
 |