mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 20:32:22 +00:00
b24413180f
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>
117 lines
3.8 KiB
C
117 lines
3.8 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* linux/include/arm/hardware/it8152.h
|
|
*
|
|
* Copyright Compulab Ltd., 2006,2007
|
|
* Mike Rapoport <mike@compulab.co.il>
|
|
*
|
|
* ITE 8152 companion chip register definitions
|
|
*/
|
|
|
|
#ifndef __ASM_HARDWARE_IT8152_H
|
|
#define __ASM_HARDWARE_IT8152_H
|
|
|
|
#include <mach/irqs.h>
|
|
|
|
extern void __iomem *it8152_base_address;
|
|
|
|
#define IT8152_IO_BASE (it8152_base_address + 0x03e00000)
|
|
#define IT8152_CFGREG_BASE (it8152_base_address + 0x03f00000)
|
|
|
|
#define __REG_IT8152(x) (it8152_base_address + (x))
|
|
|
|
#define IT8152_PCI_CFG_ADDR __REG_IT8152(0x3f00800)
|
|
#define IT8152_PCI_CFG_DATA __REG_IT8152(0x3f00804)
|
|
|
|
#define IT8152_INTC_LDCNIRR __REG_IT8152(0x3f00300)
|
|
#define IT8152_INTC_LDPNIRR __REG_IT8152(0x3f00304)
|
|
#define IT8152_INTC_LDCNIMR __REG_IT8152(0x3f00308)
|
|
#define IT8152_INTC_LDPNIMR __REG_IT8152(0x3f0030C)
|
|
#define IT8152_INTC_LDNITR __REG_IT8152(0x3f00310)
|
|
#define IT8152_INTC_LDNIAR __REG_IT8152(0x3f00314)
|
|
#define IT8152_INTC_LPCNIRR __REG_IT8152(0x3f00320)
|
|
#define IT8152_INTC_LPPNIRR __REG_IT8152(0x3f00324)
|
|
#define IT8152_INTC_LPCNIMR __REG_IT8152(0x3f00328)
|
|
#define IT8152_INTC_LPPNIMR __REG_IT8152(0x3f0032C)
|
|
#define IT8152_INTC_LPNITR __REG_IT8152(0x3f00330)
|
|
#define IT8152_INTC_LPNIAR __REG_IT8152(0x3f00334)
|
|
#define IT8152_INTC_PDCNIRR __REG_IT8152(0x3f00340)
|
|
#define IT8152_INTC_PDPNIRR __REG_IT8152(0x3f00344)
|
|
#define IT8152_INTC_PDCNIMR __REG_IT8152(0x3f00348)
|
|
#define IT8152_INTC_PDPNIMR __REG_IT8152(0x3f0034C)
|
|
#define IT8152_INTC_PDNITR __REG_IT8152(0x3f00350)
|
|
#define IT8152_INTC_PDNIAR __REG_IT8152(0x3f00354)
|
|
#define IT8152_INTC_INTC_TYPER __REG_IT8152(0x3f003FC)
|
|
|
|
#define IT8152_GPIO_GPDR __REG_IT8152(0x3f00500)
|
|
|
|
/*
|
|
Interrupt controller per register summary:
|
|
---------------------------------------
|
|
LCDNIRR:
|
|
IT8152_LD_IRQ(8) PCICLK stop
|
|
IT8152_LD_IRQ(7) MCLK ready
|
|
IT8152_LD_IRQ(6) s/w
|
|
IT8152_LD_IRQ(5) UART
|
|
IT8152_LD_IRQ(4) GPIO
|
|
IT8152_LD_IRQ(3) TIMER 4
|
|
IT8152_LD_IRQ(2) TIMER 3
|
|
IT8152_LD_IRQ(1) TIMER 2
|
|
IT8152_LD_IRQ(0) TIMER 1
|
|
|
|
LPCNIRR:
|
|
IT8152_LP_IRQ(x) serial IRQ x
|
|
|
|
PCIDNIRR:
|
|
IT8152_PD_IRQ(14) PCISERR
|
|
IT8152_PD_IRQ(13) CPU/PCI bridge target abort (h2pTADR)
|
|
IT8152_PD_IRQ(12) CPU/PCI bridge master abort (h2pMADR)
|
|
IT8152_PD_IRQ(11) PCI INTD
|
|
IT8152_PD_IRQ(10) PCI INTC
|
|
IT8152_PD_IRQ(9) PCI INTB
|
|
IT8152_PD_IRQ(8) PCI INTA
|
|
IT8152_PD_IRQ(7) serial INTD
|
|
IT8152_PD_IRQ(6) serial INTC
|
|
IT8152_PD_IRQ(5) serial INTB
|
|
IT8152_PD_IRQ(4) serial INTA
|
|
IT8152_PD_IRQ(3) serial IRQ IOCHK (IOCHKR)
|
|
IT8152_PD_IRQ(2) chaining DMA (CDMAR)
|
|
IT8152_PD_IRQ(1) USB (USBR)
|
|
IT8152_PD_IRQ(0) Audio controller (ACR)
|
|
*/
|
|
#define IT8152_IRQ(x) (IRQ_BOARD_START + (x))
|
|
#define IT8152_LAST_IRQ (IRQ_BOARD_START + 40)
|
|
|
|
/* IRQ-sources in 3 groups - local devices, LPC (serial), and external PCI */
|
|
#define IT8152_LD_IRQ_COUNT 9
|
|
#define IT8152_LP_IRQ_COUNT 16
|
|
#define IT8152_PD_IRQ_COUNT 15
|
|
|
|
/* Priorities: */
|
|
#define IT8152_PD_IRQ(i) IT8152_IRQ(i)
|
|
#define IT8152_LP_IRQ(i) (IT8152_IRQ(i) + IT8152_PD_IRQ_COUNT)
|
|
#define IT8152_LD_IRQ(i) (IT8152_IRQ(i) + IT8152_PD_IRQ_COUNT + IT8152_LP_IRQ_COUNT)
|
|
|
|
/* frequently used interrupts */
|
|
#define IT8152_PCISERR IT8152_PD_IRQ(14)
|
|
#define IT8152_H2PTADR IT8152_PD_IRQ(13)
|
|
#define IT8152_H2PMAR IT8152_PD_IRQ(12)
|
|
#define IT8152_PCI_INTD IT8152_PD_IRQ(11)
|
|
#define IT8152_PCI_INTC IT8152_PD_IRQ(10)
|
|
#define IT8152_PCI_INTB IT8152_PD_IRQ(9)
|
|
#define IT8152_PCI_INTA IT8152_PD_IRQ(8)
|
|
#define IT8152_CDMA_INT IT8152_PD_IRQ(2)
|
|
#define IT8152_USB_INT IT8152_PD_IRQ(1)
|
|
#define IT8152_AUDIO_INT IT8152_PD_IRQ(0)
|
|
|
|
struct pci_dev;
|
|
struct pci_sys_data;
|
|
|
|
extern void it8152_irq_demux(struct irq_desc *desc);
|
|
extern void it8152_init_irq(void);
|
|
extern int it8152_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin);
|
|
extern int it8152_pci_setup(int nr, struct pci_sys_data *sys);
|
|
extern struct pci_ops it8152_ops;
|
|
|
|
#endif /* __ASM_HARDWARE_IT8152_H */
|