mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00: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>
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * (C) Copyright 2009
 | |
|  * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
 | |
|  */
 | |
| 
 | |
| #ifndef _SPR_GPT_H
 | |
| #define _SPR_GPT_H
 | |
| 
 | |
| struct gpt_regs {
 | |
| 	u8 reserved[0x80];
 | |
| 	u32 control;
 | |
| 	u32 status;
 | |
| 	u32 compare;
 | |
| 	u32 count;
 | |
| 	u32 capture_re;
 | |
| 	u32 capture_fe;
 | |
| };
 | |
| 
 | |
| /*
 | |
|  * TIMER_CONTROL register settings
 | |
|  */
 | |
| 
 | |
| #define GPT_PRESCALER_MASK		0x000F
 | |
| #define GPT_PRESCALER_1			0x0000
 | |
| #define GPT_PRESCALER_2 		0x0001
 | |
| #define GPT_PRESCALER_4 		0x0002
 | |
| #define GPT_PRESCALER_8 		0x0003
 | |
| #define GPT_PRESCALER_16		0x0004
 | |
| #define GPT_PRESCALER_32		0x0005
 | |
| #define GPT_PRESCALER_64		0x0006
 | |
| #define GPT_PRESCALER_128		0x0007
 | |
| #define GPT_PRESCALER_256		0x0008
 | |
| 
 | |
| #define GPT_MODE_SINGLE_SHOT		0x0010
 | |
| #define GPT_MODE_AUTO_RELOAD		0x0000
 | |
| 
 | |
| #define GPT_ENABLE			0x0020
 | |
| 
 | |
| #define GPT_CAPT_MODE_MASK		0x00C0
 | |
| #define GPT_CAPT_MODE_NONE		0x0000
 | |
| #define GPT_CAPT_MODE_RE		0x0040
 | |
| #define GPT_CAPT_MODE_FE		0x0080
 | |
| #define GPT_CAPT_MODE_BOTH		0x00C0
 | |
| 
 | |
| #define GPT_INT_MATCH			0x0100
 | |
| #define GPT_INT_FE			0x0200
 | |
| #define GPT_INT_RE			0x0400
 | |
| 
 | |
| /*
 | |
|  * TIMER_STATUS register settings
 | |
|  */
 | |
| 
 | |
| #define GPT_STS_MATCH			0x0001
 | |
| #define GPT_STS_FE			0x0002
 | |
| #define GPT_STS_RE			0x0004
 | |
| 
 | |
| /*
 | |
|  * TIMER_COMPARE register settings
 | |
|  */
 | |
| 
 | |
| #define GPT_FREE_RUNNING		0xFFFF
 | |
| 
 | |
| /* Timer, HZ specific defines */
 | |
| #define CONFIG_SPEAR_HZ			1000
 | |
| #define CONFIG_SPEAR_HZ_CLOCK		8300000
 | |
| 
 | |
| #endif
 |