mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +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>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * (C) Copyright 2015
 | |
|  * Kamil Lulko, <kamil.lulko@gmail.com>
 | |
|  */
 | |
| 
 | |
| #include <config.h>
 | |
| #include <asm/armv7m.h>
 | |
| #include <linux/linkage.h>
 | |
| 
 | |
| .type __hard_fault_entry, %function
 | |
| __hard_fault_entry:
 | |
| 	mov	r0, sp	@ pass auto-saved registers as argument
 | |
| 	b	do_hard_fault
 | |
| 
 | |
| .type __mm_fault_entry, %function
 | |
| __mm_fault_entry:
 | |
| 	mov	r0, sp	@ pass auto-saved registers as argument
 | |
| 	b	do_mm_fault
 | |
| 
 | |
| .type __bus_fault_entry, %function
 | |
| __bus_fault_entry:
 | |
| 	mov	r0, sp	@ pass auto-saved registers as argument
 | |
| 	b	do_bus_fault
 | |
| 
 | |
| .type __usage_fault_entry, %function
 | |
| __usage_fault_entry:
 | |
| 	mov	r0, sp	@ pass auto-saved registers as argument
 | |
| 	b	do_usage_fault
 | |
| 
 | |
| .type __invalid_entry, %function
 | |
| __invalid_entry:
 | |
| 	mov	r0, sp	@ pass auto-saved registers as argument
 | |
| 	b	do_invalid_entry
 | |
| 
 | |
|    .section  .vectors
 | |
| ENTRY(_start)
 | |
| 	.long	CONFIG_SYS_INIT_SP_ADDR		@ 0 - Reset stack pointer
 | |
| 	.long	reset				@ 1 - Reset
 | |
| 	.long	__invalid_entry			@ 2 - NMI
 | |
| 	.long	__hard_fault_entry		@ 3 - HardFault
 | |
| 	.long	__mm_fault_entry		@ 4 - MemManage
 | |
| 	.long	__bus_fault_entry		@ 5 - BusFault
 | |
| 	.long	__usage_fault_entry		@ 6 - UsageFault
 | |
| 	.long	__invalid_entry			@ 7 - Reserved
 | |
| 	.long	__invalid_entry			@ 8 - Reserved
 | |
| 	.long	__invalid_entry			@ 9 - Reserved
 | |
| 	.long	__invalid_entry			@ 10 - Reserved
 | |
| 	.long	__invalid_entry			@ 11 - SVCall
 | |
| 	.long	__invalid_entry			@ 12 - Debug Monitor
 | |
| 	.long	__invalid_entry			@ 13 - Reserved
 | |
| 	.long	__invalid_entry			@ 14 - PendSV
 | |
| 	.long	__invalid_entry			@ 15 - SysTick
 | |
| 	.rept	255 - 16
 | |
| 	.long	__invalid_entry			@ 16..255 - External Interrupts
 | |
| 	.endr
 |