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 22:07:57 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2009-08-17 08:13:29 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2004 Konrad Eisele (eiselekd@web.de,konrad@gaisler.com) Gaisler Research
|
|
|
|
* Copyright (C) 2004 Stefan Holst (mail@s-holst.de) Uni-Stuttgart
|
|
|
|
* Copyright (C) 2009 Daniel Hellstrom (daniel@gaisler.com) Aeroflex Gaisler AB
|
|
|
|
* Copyright (C) 2009 Konrad Eisele (konrad@gaisler.com) Aeroflex Gaisler AB
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LEON_H_INCLUDE
|
|
|
|
#define LEON_H_INCLUDE
|
|
|
|
|
|
|
|
/* mmu register access, ASI_LEON_MMUREGS */
|
|
|
|
#define LEON_CNR_CTRL 0x000
|
|
|
|
#define LEON_CNR_CTXP 0x100
|
|
|
|
#define LEON_CNR_CTX 0x200
|
|
|
|
#define LEON_CNR_F 0x300
|
|
|
|
#define LEON_CNR_FADDR 0x400
|
|
|
|
|
|
|
|
#define LEON_CNR_CTX_NCTX 256 /*number of MMU ctx */
|
|
|
|
|
|
|
|
#define LEON_CNR_CTRL_TLBDIS 0x80000000
|
|
|
|
|
|
|
|
#define LEON_MMUTLB_ENT_MAX 64
|
|
|
|
|
|
|
|
/*
|
|
|
|
* diagnostic access from mmutlb.vhd:
|
|
|
|
* 0: pte address
|
|
|
|
* 4: pte
|
|
|
|
* 8: additional flags
|
|
|
|
*/
|
|
|
|
#define LEON_DIAGF_LVL 0x3
|
|
|
|
#define LEON_DIAGF_WR 0x8
|
|
|
|
#define LEON_DIAGF_WR_SHIFT 3
|
|
|
|
#define LEON_DIAGF_HIT 0x10
|
|
|
|
#define LEON_DIAGF_HIT_SHIFT 4
|
|
|
|
#define LEON_DIAGF_CTX 0x1fe0
|
|
|
|
#define LEON_DIAGF_CTX_SHIFT 5
|
|
|
|
#define LEON_DIAGF_VALID 0x2000
|
|
|
|
#define LEON_DIAGF_VALID_SHIFT 13
|
|
|
|
|
|
|
|
/* irq masks */
|
|
|
|
#define LEON_HARD_INT(x) (1 << (x)) /* irq 0-15 */
|
|
|
|
#define LEON_IRQMASK_R 0x0000fffe /* bit 15- 1 of lregs.irqmask */
|
|
|
|
#define LEON_IRQPRIO_R 0xfffe0000 /* bit 31-17 of lregs.irqmask */
|
|
|
|
|
|
|
|
#define LEON_MCFG2_SRAMDIS 0x00002000
|
|
|
|
#define LEON_MCFG2_SDRAMEN 0x00004000
|
|
|
|
#define LEON_MCFG2_SRAMBANKSZ 0x00001e00 /* [12-9] */
|
|
|
|
#define LEON_MCFG2_SRAMBANKSZ_SHIFT 9
|
|
|
|
#define LEON_MCFG2_SDRAMBANKSZ 0x03800000 /* [25-23] */
|
|
|
|
#define LEON_MCFG2_SDRAMBANKSZ_SHIFT 23
|
|
|
|
|
|
|
|
#define LEON_TCNT0_MASK 0x7fffff
|
|
|
|
|
|
|
|
|
|
|
|
#define ASI_LEON3_SYSCTRL 0x02
|
|
|
|
#define ASI_LEON3_SYSCTRL_ICFG 0x08
|
|
|
|
#define ASI_LEON3_SYSCTRL_DCFG 0x0c
|
|
|
|
#define ASI_LEON3_SYSCTRL_CFG_SNOOPING (1 << 27)
|
|
|
|
#define ASI_LEON3_SYSCTRL_CFG_SSIZE(c) (1 << ((c >> 20) & 0xf))
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
/* do a physical address bypass write, i.e. for 0x80000000 */
|
|
|
|
static inline void leon_store_reg(unsigned long paddr, unsigned long value)
|
|
|
|
{
|
|
|
|
__asm__ __volatile__("sta %0, [%1] %2\n\t" : : "r"(value), "r"(paddr),
|
|
|
|
"i"(ASI_LEON_BYPASS) : "memory");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* do a physical address bypass load, i.e. for 0x80000000 */
|
|
|
|
static inline unsigned long leon_load_reg(unsigned long paddr)
|
|
|
|
{
|
|
|
|
unsigned long retval;
|
|
|
|
__asm__ __volatile__("lda [%1] %2, %0\n\t" :
|
|
|
|
"=r"(retval) : "r"(paddr), "i"(ASI_LEON_BYPASS));
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* macro access for leon_load_reg() and leon_store_reg() */
|
|
|
|
#define LEON3_BYPASS_LOAD_PA(x) (leon_load_reg((unsigned long)(x)))
|
|
|
|
#define LEON3_BYPASS_STORE_PA(x, v) (leon_store_reg((unsigned long)(x), (unsigned long)(v)))
|
|
|
|
#define LEON_BYPASS_LOAD_PA(x) leon_load_reg((unsigned long)(x))
|
|
|
|
#define LEON_BYPASS_STORE_PA(x, v) leon_store_reg((unsigned long)(x), (unsigned long)(v))
|
|
|
|
|
2014-05-17 05:25:50 +08:00
|
|
|
void leon_switch_mm(void);
|
|
|
|
void leon_init_IRQ(void);
|
2009-08-17 08:13:29 +08:00
|
|
|
|
2009-11-16 07:51:06 +08:00
|
|
|
static inline unsigned long sparc_leon3_get_dcachecfg(void)
|
2009-08-17 08:13:29 +08:00
|
|
|
{
|
|
|
|
unsigned int retval;
|
|
|
|
__asm__ __volatile__("lda [%1] %2, %0\n\t" :
|
|
|
|
"=r"(retval) :
|
|
|
|
"r"(ASI_LEON3_SYSCTRL_DCFG),
|
|
|
|
"i"(ASI_LEON3_SYSCTRL));
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enable snooping */
|
2009-11-16 07:51:06 +08:00
|
|
|
static inline void sparc_leon3_enable_snooping(void)
|
2009-08-17 08:13:29 +08:00
|
|
|
{
|
|
|
|
__asm__ __volatile__ ("lda [%%g0] 2, %%l1\n\t"
|
|
|
|
"set 0x800000, %%l2\n\t"
|
|
|
|
"or %%l2, %%l1, %%l2\n\t"
|
|
|
|
"sta %%l2, [%%g0] 2\n\t" : : : "l1", "l2");
|
|
|
|
};
|
|
|
|
|
2009-11-16 07:51:06 +08:00
|
|
|
static inline int sparc_leon3_snooping_enabled(void)
|
|
|
|
{
|
|
|
|
u32 cctrl;
|
|
|
|
__asm__ __volatile__("lda [%%g0] 2, %0\n\t" : "=r"(cctrl));
|
2013-07-01 22:16:07 +08:00
|
|
|
return ((cctrl >> 23) & 1) && ((cctrl >> 17) & 1);
|
2009-11-16 07:51:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline void sparc_leon3_disable_cache(void)
|
2009-08-17 08:13:29 +08:00
|
|
|
{
|
|
|
|
__asm__ __volatile__ ("lda [%%g0] 2, %%l1\n\t"
|
|
|
|
"set 0x00000f, %%l2\n\t"
|
|
|
|
"andn %%l2, %%l1, %%l2\n\t"
|
|
|
|
"sta %%l2, [%%g0] 2\n\t" : : : "l1", "l2");
|
|
|
|
};
|
|
|
|
|
2011-01-04 09:41:30 +08:00
|
|
|
static inline unsigned long sparc_leon3_asr17(void)
|
|
|
|
{
|
|
|
|
u32 asr17;
|
|
|
|
__asm__ __volatile__ ("rd %%asr17, %0\n\t" : "=r"(asr17));
|
|
|
|
return asr17;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline int sparc_leon3_cpuid(void)
|
|
|
|
{
|
|
|
|
return sparc_leon3_asr17() >> 28;
|
|
|
|
}
|
|
|
|
|
2009-08-17 08:13:29 +08:00
|
|
|
#endif /*!__ASSEMBLY__*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2011-05-02 08:08:52 +08:00
|
|
|
# define LEON3_IRQ_IPI_DEFAULT 13
|
2013-06-10 14:53:28 +08:00
|
|
|
# define LEON3_IRQ_TICKER (leon3_gptimer_irq)
|
2009-08-17 08:13:29 +08:00
|
|
|
# define LEON3_IRQ_CROSS_CALL 15
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(PAGE_SIZE_LEON_8K)
|
|
|
|
#define LEON_PAGE_SIZE_LEON 1
|
|
|
|
#elif defined(PAGE_SIZE_LEON_16K)
|
|
|
|
#define LEON_PAGE_SIZE_LEON 2)
|
|
|
|
#else
|
|
|
|
#define LEON_PAGE_SIZE_LEON 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LEON_PAGE_SIZE_LEON == 0
|
|
|
|
/* [ 8, 6, 6 ] + 12 */
|
|
|
|
#define LEON_PGD_SH 24
|
|
|
|
#define LEON_PGD_M 0xff
|
|
|
|
#define LEON_PMD_SH 18
|
|
|
|
#define LEON_PMD_SH_V (LEON_PGD_SH-2)
|
|
|
|
#define LEON_PMD_M 0x3f
|
|
|
|
#define LEON_PTE_SH 12
|
|
|
|
#define LEON_PTE_M 0x3f
|
|
|
|
#elif LEON_PAGE_SIZE_LEON == 1
|
|
|
|
/* [ 7, 6, 6 ] + 13 */
|
|
|
|
#define LEON_PGD_SH 25
|
|
|
|
#define LEON_PGD_M 0x7f
|
|
|
|
#define LEON_PMD_SH 19
|
|
|
|
#define LEON_PMD_SH_V (LEON_PGD_SH-1)
|
|
|
|
#define LEON_PMD_M 0x3f
|
|
|
|
#define LEON_PTE_SH 13
|
|
|
|
#define LEON_PTE_M 0x3f
|
|
|
|
#elif LEON_PAGE_SIZE_LEON == 2
|
|
|
|
/* [ 6, 6, 6 ] + 14 */
|
|
|
|
#define LEON_PGD_SH 26
|
|
|
|
#define LEON_PGD_M 0x3f
|
|
|
|
#define LEON_PMD_SH 20
|
|
|
|
#define LEON_PMD_SH_V (LEON_PGD_SH-0)
|
|
|
|
#define LEON_PMD_M 0x3f
|
|
|
|
#define LEON_PTE_SH 14
|
|
|
|
#define LEON_PTE_M 0x3f
|
|
|
|
#elif LEON_PAGE_SIZE_LEON == 3
|
|
|
|
/* [ 4, 7, 6 ] + 15 */
|
|
|
|
#define LEON_PGD_SH 28
|
|
|
|
#define LEON_PGD_M 0x0f
|
|
|
|
#define LEON_PMD_SH 21
|
|
|
|
#define LEON_PMD_SH_V (LEON_PGD_SH-0)
|
|
|
|
#define LEON_PMD_M 0x7f
|
|
|
|
#define LEON_PTE_SH 15
|
|
|
|
#define LEON_PTE_M 0x3f
|
|
|
|
#else
|
|
|
|
#error cannot determine LEON_PAGE_SIZE_LEON
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LEON3_XCCR_SETS_MASK 0x07000000UL
|
|
|
|
#define LEON3_XCCR_SSIZE_MASK 0x00f00000UL
|
|
|
|
|
|
|
|
#define LEON2_CCR_DSETS_MASK 0x03000000UL
|
|
|
|
#define LEON2_CFG_SSIZE_MASK 0x00007000UL
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct vm_area_struct;
|
2012-05-20 04:02:48 +08:00
|
|
|
|
2014-05-17 05:25:50 +08:00
|
|
|
unsigned long leon_swprobe(unsigned long vaddr, unsigned long *paddr);
|
|
|
|
void leon_flush_icache_all(void);
|
|
|
|
void leon_flush_dcache_all(void);
|
|
|
|
void leon_flush_cache_all(void);
|
|
|
|
void leon_flush_tlb_all(void);
|
2009-08-17 08:13:29 +08:00
|
|
|
extern int leon_flush_during_switch;
|
2014-05-17 05:25:50 +08:00
|
|
|
int leon_flush_needed(void);
|
|
|
|
void leon_flush_pcache_all(struct vm_area_struct *vma, unsigned long page);
|
2009-08-17 08:13:29 +08:00
|
|
|
|
|
|
|
/* struct that hold LEON3 cache configuration registers */
|
|
|
|
struct leon3_cacheregs {
|
|
|
|
unsigned long ccr; /* 0x00 - Cache Control Register */
|
|
|
|
unsigned long iccr; /* 0x08 - Instruction Cache Configuration Register */
|
|
|
|
unsigned long dccr; /* 0x0c - Data Cache Configuration Register */
|
|
|
|
};
|
|
|
|
|
2012-05-29 16:14:14 +08:00
|
|
|
#include <linux/irq.h>
|
2009-08-17 08:13:29 +08:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
|
|
|
|
struct device_node;
|
2012-04-20 21:05:56 +08:00
|
|
|
struct task_struct;
|
2014-05-17 05:25:50 +08:00
|
|
|
unsigned int leon_build_device_irq(unsigned int real_irq,
|
|
|
|
irq_flow_handler_t flow_handler,
|
|
|
|
const char *name, int do_ack);
|
|
|
|
void leon_update_virq_handling(unsigned int virq,
|
|
|
|
irq_flow_handler_t flow_handler,
|
|
|
|
const char *name, int do_ack);
|
|
|
|
void leon_init_timers(void);
|
|
|
|
void leon_node_init(struct device_node *dp, struct device_node ***nextp);
|
|
|
|
void init_leon(void);
|
|
|
|
void poke_leonsparc(void);
|
|
|
|
void leon3_getCacheRegs(struct leon3_cacheregs *regs);
|
2011-04-20 07:41:23 +08:00
|
|
|
extern int leon3_ticker_irq;
|
2009-08-17 08:13:29 +08:00
|
|
|
|
2009-09-01 06:08:13 +08:00
|
|
|
#ifdef CONFIG_SMP
|
2014-05-17 05:25:50 +08:00
|
|
|
int leon_smp_nrcpus(void);
|
|
|
|
void leon_clear_profile_irq(int cpu);
|
|
|
|
void leon_smp_done(void);
|
|
|
|
void leon_boot_cpus(void);
|
|
|
|
int leon_boot_one_cpu(int i, struct task_struct *);
|
2009-09-01 06:08:13 +08:00
|
|
|
void leon_init_smp(void);
|
|
|
|
void leon_enable_irq_cpu(unsigned int irq_nr, unsigned int cpu);
|
2014-05-17 05:25:50 +08:00
|
|
|
irqreturn_t leon_percpu_timer_interrupt(int irq, void *unused);
|
2009-09-01 06:08:13 +08:00
|
|
|
|
2011-05-02 08:08:52 +08:00
|
|
|
extern unsigned int smpleon_ipi[];
|
2012-05-26 05:20:12 +08:00
|
|
|
extern unsigned int linux_trap_ipi15_leon[];
|
2011-05-02 08:08:52 +08:00
|
|
|
extern int leon_ipi_irq;
|
2009-09-01 06:08:13 +08:00
|
|
|
|
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
2009-08-17 08:13:29 +08:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
/* macros used in leon_mm.c */
|
|
|
|
#define PFN(x) ((x) >> PAGE_SHIFT)
|
|
|
|
#define _pfn_valid(pfn) ((pfn < last_valid_pfn) && (pfn >= PFN(phys_base)))
|
|
|
|
#define _SRMMU_PTE_PMASK_LEON 0xffffffff
|
|
|
|
|
2018-12-09 01:39:12 +08:00
|
|
|
/*
|
|
|
|
* On LEON PCI Memory space is mapped 1:1 with physical address space.
|
|
|
|
*
|
|
|
|
* I/O space is located at low 64Kbytes in PCI I/O space. The I/O addresses
|
|
|
|
* are converted into CPU addresses to virtual addresses that are mapped with
|
|
|
|
* MMU to the PCI Host PCI I/O space window which are translated to the low
|
|
|
|
* 64Kbytes by the Host controller.
|
|
|
|
*/
|
|
|
|
|
2009-08-17 08:13:29 +08:00
|
|
|
#endif
|