License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2011-02-06 15:48:39 +00:00
|
|
|
#include <linux/linkage.h>
|
2011-02-11 11:32:19 +00:00
|
|
|
#include <linux/threads.h>
|
2011-02-06 15:48:39 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
|
|
|
#include <asm/assembler.h>
|
|
|
|
#include <asm/glue-cache.h>
|
|
|
|
#include <asm/glue-proc.h>
|
|
|
|
.text
|
|
|
|
|
2013-05-16 09:34:30 +00:00
|
|
|
/*
|
|
|
|
* Implementation of MPIDR hash algorithm through shifting
|
|
|
|
* and OR'ing.
|
|
|
|
*
|
|
|
|
* @dst: register containing hash result
|
|
|
|
* @rs0: register containing affinity level 0 bit shift
|
|
|
|
* @rs1: register containing affinity level 1 bit shift
|
|
|
|
* @rs2: register containing affinity level 2 bit shift
|
|
|
|
* @mpidr: register containing MPIDR value
|
|
|
|
* @mask: register containing MPIDR mask
|
|
|
|
*
|
|
|
|
* Pseudo C-code:
|
|
|
|
*
|
|
|
|
*u32 dst;
|
|
|
|
*
|
|
|
|
*compute_mpidr_hash(u32 rs0, u32 rs1, u32 rs2, u32 mpidr, u32 mask) {
|
|
|
|
* u32 aff0, aff1, aff2;
|
|
|
|
* u32 mpidr_masked = mpidr & mask;
|
|
|
|
* aff0 = mpidr_masked & 0xff;
|
|
|
|
* aff1 = mpidr_masked & 0xff00;
|
|
|
|
* aff2 = mpidr_masked & 0xff0000;
|
|
|
|
* dst = (aff0 >> rs0 | aff1 >> rs1 | aff2 >> rs2);
|
|
|
|
*}
|
|
|
|
* Input registers: rs0, rs1, rs2, mpidr, mask
|
|
|
|
* Output register: dst
|
|
|
|
* Note: input and output registers must be disjoint register sets
|
|
|
|
(eg: a macro instance with mpidr = r1 and dst = r1 is invalid)
|
|
|
|
*/
|
|
|
|
.macro compute_mpidr_hash dst, rs0, rs1, rs2, mpidr, mask
|
|
|
|
and \mpidr, \mpidr, \mask @ mask out MPIDR bits
|
|
|
|
and \dst, \mpidr, #0xff @ mask=aff0
|
|
|
|
ARM( mov \dst, \dst, lsr \rs0 ) @ dst=aff0>>rs0
|
|
|
|
THUMB( lsr \dst, \dst, \rs0 )
|
|
|
|
and \mask, \mpidr, #0xff00 @ mask = aff1
|
|
|
|
ARM( orr \dst, \dst, \mask, lsr \rs1 ) @ dst|=(aff1>>rs1)
|
|
|
|
THUMB( lsr \mask, \mask, \rs1 )
|
|
|
|
THUMB( orr \dst, \dst, \mask )
|
|
|
|
and \mask, \mpidr, #0xff0000 @ mask = aff2
|
|
|
|
ARM( orr \dst, \dst, \mask, lsr \rs2 ) @ dst|=(aff2>>rs2)
|
|
|
|
THUMB( lsr \mask, \mask, \rs2 )
|
|
|
|
THUMB( orr \dst, \dst, \mask )
|
|
|
|
.endm
|
|
|
|
|
2011-02-06 15:48:39 +00:00
|
|
|
/*
|
2011-09-01 10:52:33 +00:00
|
|
|
* Save CPU state for a suspend. This saves the CPU general purpose
|
|
|
|
* registers, and allocates space on the kernel stack to save the CPU
|
|
|
|
* specific registers and some other data for resume.
|
|
|
|
* r0 = suspend function arg0
|
|
|
|
* r1 = suspend function
|
2013-07-18 20:50:59 +00:00
|
|
|
* r2 = MPIDR value the resuming CPU will use
|
2011-02-06 15:48:39 +00:00
|
|
|
*/
|
2011-06-22 16:41:48 +00:00
|
|
|
ENTRY(__cpu_suspend)
|
2011-06-13 14:58:34 +00:00
|
|
|
stmfd sp!, {r4 - r11, lr}
|
2011-02-06 15:48:39 +00:00
|
|
|
#ifdef MULTI_CPU
|
|
|
|
ldr r10, =processor
|
2011-09-01 10:52:33 +00:00
|
|
|
ldr r4, [r10, #CPU_SLEEP_SIZE] @ size of CPU sleep state
|
2011-02-11 11:32:19 +00:00
|
|
|
#else
|
2011-09-01 10:52:33 +00:00
|
|
|
ldr r4, =cpu_suspend_size
|
2011-06-13 12:53:06 +00:00
|
|
|
#endif
|
2011-09-01 10:52:33 +00:00
|
|
|
mov r5, sp @ current virtual SP
|
|
|
|
add r4, r4, #12 @ Space for pgd, virt sp, phys resume fn
|
|
|
|
sub sp, sp, r4 @ allocate CPU state on stack
|
|
|
|
ldr r3, =sleep_save_sp
|
2013-07-18 20:50:59 +00:00
|
|
|
stmfd sp!, {r0, r1} @ save suspend func arg and pointer
|
2013-05-16 09:34:30 +00:00
|
|
|
ldr r3, [r3, #SLEEP_SAVE_SP_VIRT]
|
2013-07-18 20:50:59 +00:00
|
|
|
ALT_SMP(ldr r0, =mpidr_hash)
|
|
|
|
ALT_UP_B(1f)
|
|
|
|
/* This ldmia relies on the memory layout of the mpidr_hash struct */
|
|
|
|
ldmia r0, {r1, r6-r8} @ r1 = mpidr mask (r6,r7,r8) = l[0,1,2] shifts
|
|
|
|
compute_mpidr_hash r0, r6, r7, r8, r2, r1
|
|
|
|
add r3, r3, r0, lsl #2
|
|
|
|
1: mov r2, r5 @ virtual SP
|
|
|
|
mov r1, r4 @ size of save block
|
|
|
|
add r0, sp, #8 @ pointer to save block
|
2011-09-01 10:52:33 +00:00
|
|
|
bl __cpu_suspend_save
|
2015-04-21 13:17:25 +00:00
|
|
|
badr lr, cpu_suspend_abort
|
2011-06-13 14:28:40 +00:00
|
|
|
ldmfd sp!, {r0, pc} @ call suspend fn
|
2011-06-22 16:41:48 +00:00
|
|
|
ENDPROC(__cpu_suspend)
|
2011-02-06 15:48:39 +00:00
|
|
|
.ltorg
|
|
|
|
|
2011-07-02 08:54:01 +00:00
|
|
|
cpu_suspend_abort:
|
2011-08-27 21:39:09 +00:00
|
|
|
ldmia sp!, {r1 - r3} @ pop phys pgd, virt SP, phys resume fn
|
2011-08-27 10:17:36 +00:00
|
|
|
teq r0, #0
|
|
|
|
moveq r0, #1 @ force non-zero value
|
2011-07-02 08:54:01 +00:00
|
|
|
mov sp, r2
|
|
|
|
ldmfd sp!, {r4 - r11, pc}
|
|
|
|
ENDPROC(cpu_suspend_abort)
|
|
|
|
|
2011-02-06 15:48:39 +00:00
|
|
|
/*
|
|
|
|
* r0 = control register value
|
|
|
|
*/
|
2011-08-31 22:26:18 +00:00
|
|
|
.align 5
|
2011-11-15 11:11:19 +00:00
|
|
|
.pushsection .idmap.text,"ax"
|
2011-02-06 15:48:39 +00:00
|
|
|
ENTRY(cpu_resume_mmu)
|
|
|
|
ldr r3, =cpu_resume_after_mmu
|
2011-11-22 17:30:28 +00:00
|
|
|
instr_sync
|
2011-08-26 19:28:52 +00:00
|
|
|
mcr p15, 0, r0, c1, c0, 0 @ turn on MMU, I-cache, etc
|
|
|
|
mrc p15, 0, r0, c0, c0, 0 @ read id reg
|
2011-11-22 17:30:28 +00:00
|
|
|
instr_sync
|
2011-08-26 19:28:52 +00:00
|
|
|
mov r0, r0
|
|
|
|
mov r0, r0
|
2014-06-30 15:29:12 +00:00
|
|
|
ret r3 @ jump to virtual address
|
2011-08-31 22:26:18 +00:00
|
|
|
ENDPROC(cpu_resume_mmu)
|
2011-11-15 11:11:19 +00:00
|
|
|
.popsection
|
2011-02-06 15:48:39 +00:00
|
|
|
cpu_resume_after_mmu:
|
2011-06-21 15:32:58 +00:00
|
|
|
bl cpu_init @ restore the und/abt/irq banked regs
|
2011-07-02 08:54:01 +00:00
|
|
|
mov r0, #0 @ return zero on success
|
2011-06-13 14:04:14 +00:00
|
|
|
ldmfd sp!, {r4 - r11, pc}
|
2011-02-06 15:48:39 +00:00
|
|
|
ENDPROC(cpu_resume_after_mmu)
|
|
|
|
|
2015-03-25 06:39:21 +00:00
|
|
|
.text
|
2011-02-06 15:48:39 +00:00
|
|
|
.align
|
2015-06-12 08:24:17 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_MMU
|
2015-06-09 18:24:23 +00:00
|
|
|
.arm
|
|
|
|
ENTRY(cpu_resume_arm)
|
2015-06-12 20:19:35 +00:00
|
|
|
THUMB( badr r9, 1f ) @ Kernel is entered in ARM.
|
2015-06-09 18:24:23 +00:00
|
|
|
THUMB( bx r9 ) @ If this is a Thumb-2 kernel,
|
|
|
|
THUMB( .thumb ) @ switch to Thumb now.
|
|
|
|
THUMB(1: )
|
2015-06-12 08:24:17 +00:00
|
|
|
#endif
|
|
|
|
|
2011-02-06 15:48:39 +00:00
|
|
|
ENTRY(cpu_resume)
|
2013-02-01 09:40:42 +00:00
|
|
|
ARM_BE8(setend be) @ ensure we are in BE mode
|
2014-05-08 16:31:40 +00:00
|
|
|
#ifdef CONFIG_ARM_VIRT_EXT
|
|
|
|
bl __hyp_stub_install_secondary
|
|
|
|
#endif
|
|
|
|
safe_svcmode_maskall r1
|
2013-05-16 09:34:30 +00:00
|
|
|
mov r1, #0
|
|
|
|
ALT_SMP(mrc p15, 0, r0, c0, c0, 5)
|
|
|
|
ALT_UP_B(1f)
|
|
|
|
adr r2, mpidr_hash_ptr
|
|
|
|
ldr r3, [r2]
|
|
|
|
add r2, r2, r3 @ r2 = struct mpidr_hash phys address
|
|
|
|
/*
|
|
|
|
* This ldmia relies on the memory layout of the mpidr_hash
|
|
|
|
* struct mpidr_hash.
|
|
|
|
*/
|
|
|
|
ldmia r2, { r3-r6 } @ r3 = mpidr mask (r4,r5,r6) = l[0,1,2] shifts
|
|
|
|
compute_mpidr_hash r1, r4, r5, r6, r0, r3
|
|
|
|
1:
|
|
|
|
adr r0, _sleep_save_sp
|
2015-03-25 06:39:21 +00:00
|
|
|
ldr r2, [r0]
|
|
|
|
add r0, r0, r2
|
2013-05-16 09:34:30 +00:00
|
|
|
ldr r0, [r0, #SLEEP_SAVE_SP_PHYS]
|
|
|
|
ldr r0, [r0, r1, lsl #2]
|
|
|
|
|
2011-08-27 21:39:09 +00:00
|
|
|
@ load phys pgd, stack, resume fn
|
|
|
|
ARM( ldmia r0!, {r1, sp, pc} )
|
|
|
|
THUMB( ldmia r0!, {r1, r2, r3} )
|
|
|
|
THUMB( mov sp, r2 )
|
|
|
|
THUMB( bx r3 )
|
2011-02-06 15:48:39 +00:00
|
|
|
ENDPROC(cpu_resume)
|
|
|
|
|
2015-06-12 08:24:17 +00:00
|
|
|
#ifdef CONFIG_MMU
|
2015-06-09 18:24:23 +00:00
|
|
|
ENDPROC(cpu_resume_arm)
|
2015-06-12 08:24:17 +00:00
|
|
|
#endif
|
2011-02-06 15:48:39 +00:00
|
|
|
|
2013-05-16 09:34:30 +00:00
|
|
|
.align 2
|
2015-03-25 06:39:21 +00:00
|
|
|
_sleep_save_sp:
|
|
|
|
.long sleep_save_sp - .
|
2013-05-16 09:34:30 +00:00
|
|
|
mpidr_hash_ptr:
|
|
|
|
.long mpidr_hash - . @ mpidr_hash struct offset
|
|
|
|
|
2015-03-25 06:39:21 +00:00
|
|
|
.data
|
2017-07-26 11:49:31 +00:00
|
|
|
.align 2
|
2013-05-16 09:34:30 +00:00
|
|
|
.type sleep_save_sp, #object
|
|
|
|
ENTRY(sleep_save_sp)
|
|
|
|
.space SLEEP_SAVE_SP_SZ @ struct sleep_save_sp
|