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 15:07:57 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2024-05-07 17:55:05 +02:00
|
|
|
snd-soc-core-y := soc-core.o soc-dapm.o soc-jack.o soc-utils.o soc-dai.o soc-component.o
|
|
|
|
snd-soc-core-y += soc-pcm.o soc-devres.o soc-ops.o soc-link.o soc-card.o
|
2015-10-13 23:41:00 +08:00
|
|
|
snd-soc-core-$(CONFIG_SND_SOC_COMPRESS) += soc-compress.o
|
2015-08-15 08:24:20 -07:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_SND_SOC_TOPOLOGY),)
|
2024-05-07 17:55:05 +02:00
|
|
|
snd-soc-core-y += soc-topology.o
|
2015-08-15 08:24:20 -07:00
|
|
|
endif
|
2006-10-06 18:33:55 +02:00
|
|
|
|
2021-04-14 04:58:04 -04:00
|
|
|
ifneq ($(CONFIG_SND_SOC_TOPOLOGY_KUNIT_TEST),)
|
2024-05-07 17:55:05 +02:00
|
|
|
# snd-soc-test-y := soc-topology-test.o
|
2022-07-20 14:51:15 +02:00
|
|
|
obj-$(CONFIG_SND_SOC_TOPOLOGY_KUNIT_TEST) += soc-topology-test.o
|
2021-01-20 16:28:44 +01:00
|
|
|
endif
|
|
|
|
|
2024-04-01 10:02:10 +00:00
|
|
|
ifneq ($(CONFIG_SND_SOC_CARD_KUNIT_TEST),)
|
|
|
|
obj-$(CONFIG_SND_SOC_CARD_KUNIT_TEST) += soc-card-test.o
|
|
|
|
endif
|
|
|
|
|
2022-04-05 14:54:17 +01:00
|
|
|
ifneq ($(CONFIG_SND_SOC_UTILS_KUNIT_TEST),)
|
2024-05-07 17:55:05 +02:00
|
|
|
# snd-soc-test-y := soc-utils-test.o
|
2022-07-20 14:51:15 +02:00
|
|
|
obj-$(CONFIG_SND_SOC_UTILS_KUNIT_TEST) += soc-utils-test.o
|
2022-04-05 14:54:17 +01:00
|
|
|
endif
|
|
|
|
|
2013-04-15 19:19:50 +02:00
|
|
|
ifneq ($(CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM),)
|
2024-05-07 17:55:05 +02:00
|
|
|
snd-soc-core-y += soc-generic-dmaengine-pcm.o
|
2013-04-15 19:19:50 +02:00
|
|
|
endif
|
|
|
|
|
2014-11-10 22:41:46 +01:00
|
|
|
ifneq ($(CONFIG_SND_SOC_AC97_BUS),)
|
2024-05-07 17:55:05 +02:00
|
|
|
snd-soc-core-y += soc-ac97.o
|
2014-11-10 22:41:46 +01:00
|
|
|
endif
|
|
|
|
|
2017-10-12 18:49:38 -05:00
|
|
|
ifneq ($(CONFIG_SND_SOC_ACPI),)
|
2024-05-07 17:55:05 +02:00
|
|
|
snd-soc-acpi-y := soc-acpi.o
|
2017-10-12 18:49:38 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
obj-$(CONFIG_SND_SOC_ACPI) += snd-soc-acpi.o
|
|
|
|
|
2006-10-06 18:33:55 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += snd-soc-core.o
|
2008-12-16 14:44:48 +00:00
|
|
|
obj-$(CONFIG_SND_SOC) += codecs/
|
2012-04-08 21:17:50 -07:00
|
|
|
obj-$(CONFIG_SND_SOC) += generic/
|
2022-08-24 18:07:14 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += apple/
|
2013-12-06 11:02:50 +01:00
|
|
|
obj-$(CONFIG_SND_SOC) += adi/
|
2016-01-08 18:22:09 -05:00
|
|
|
obj-$(CONFIG_SND_SOC) += amd/
|
2008-12-16 14:44:48 +00:00
|
|
|
obj-$(CONFIG_SND_SOC) += atmel/
|
|
|
|
obj-$(CONFIG_SND_SOC) += au1x/
|
2013-11-22 16:24:08 +01:00
|
|
|
obj-$(CONFIG_SND_SOC) += bcm/
|
2012-08-21 19:21:51 +04:00
|
|
|
obj-$(CONFIG_SND_SOC) += cirrus/
|
2012-06-21 15:54:51 +05:30
|
|
|
obj-$(CONFIG_SND_SOC) += dwc/
|
2008-12-16 14:44:48 +00:00
|
|
|
obj-$(CONFIG_SND_SOC) += fsl/
|
2023-05-08 13:30:31 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += google/
|
2017-03-31 15:06:00 -07:00
|
|
|
obj-$(CONFIG_SND_SOC) += hisilicon/
|
2010-07-05 12:09:22 +09:00
|
|
|
obj-$(CONFIG_SND_SOC) += jz4740/
|
2023-06-15 20:27:18 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += loongson/
|
2015-11-04 14:40:48 +00:00
|
|
|
obj-$(CONFIG_SND_SOC) += img/
|
2013-11-21 13:32:24 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += intel/
|
2015-06-15 22:38:02 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += mediatek/
|
2018-07-17 17:42:51 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += meson/
|
2011-07-21 12:36:58 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += mxs/
|
2010-05-31 13:49:14 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += kirkwood/
|
2008-12-16 14:44:48 +00:00
|
|
|
obj-$(CONFIG_SND_SOC) += pxa/
|
2015-03-13 01:01:07 -07:00
|
|
|
obj-$(CONFIG_SND_SOC) += qcom/
|
2014-07-05 19:13:03 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += rockchip/
|
2010-11-22 15:37:25 +09:00
|
|
|
obj-$(CONFIG_SND_SOC) += samsung/
|
ASoC: SDCA: add initial module
Add new module for SDCA (SoundWire Device Class for Audio) support.
For now just add a parser to identify the SDCA revision and the
function mask.
Note that the SDCA definitions and related MIPI DisCo properties are
defined only for ACPI platforms and extracted with _DSD helpers. There
is currently no support for Device Tree in the specification, the
'depends on ACPI' reflects this design limitation. This might change
in a future revision of the specification but for SDCA 1.0 ACPI is the
only supported type of platform firmware.
The SDCA library is defined with static inline fallbacks, which will
allow for unconditional addition of SDCA support in common parts of
the code.
The design follows a four-step process:
1) Basic information related to Functions is extracted from MIPI DisCo
tables and stored in the 'struct sdw_slave'. Devm_ based memory
allocation is not allowed at this point prior to a driver probe, so we only
store the function node, address and type.
2) When a codec driver probes, it will register subdevices for each
Function identified in phase 1)
3) a driver will probe for each subdevice and addition parsing/memory
allocation takes place at this level. devm_ based allocation is highly
encouraged to make error handling manageable.
4) Before the peripheral device becomes physically attached, register
access is not permitted and the regmaps are cache-only. When
peripheral device is enumerated, the bus level uses the
'update_status' notification; after optional device-level
initialization, the codec driver will notify each of the subdevices so
that they can start interacting with the hardware.
Note that the context extracted in 1) should be arguably be handled
completely in the codec driver probe. That would however make it
difficult to use the ACPI information for machine quirks, and
e.g. select different machine driver and topologies as done for the
RT712_VB handling later in the series. To make the implementation of
quirks simpler, this patchset extracts a minimal amount of context
(interface revision and number/type of Functions) before the codec
driver probe, and stores this context in the scope of the 'struct
sdw_slave'.
The SDCA library can also be used in a vendor-specific driver without
creating subdevices, e.g. to retrieve the 'initialization-table'
values to write platform-specific values as needed.
For more technical details, the SDCA specification is available for
public downloads at https://www.mipi.org/mipi-sdca-v1-0-download
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Link: https://patch.msgid.link/20241016102333.294448-4-yung-chuan.liao@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
2024-10-16 18:23:25 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += sdca/
|
2008-12-16 14:44:48 +00:00
|
|
|
obj-$(CONFIG_SND_SOC) += sh/
|
2019-04-12 11:09:02 -05:00
|
|
|
obj-$(CONFIG_SND_SOC) += sof/
|
2013-06-10 16:19:40 +05:30
|
|
|
obj-$(CONFIG_SND_SOC) += spear/
|
2019-01-29 16:04:45 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += sprd/
|
2023-05-26 22:54:01 +08:00
|
|
|
obj-$(CONFIG_SND_SOC) += starfive/
|
2015-07-16 11:36:05 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += sti/
|
2017-04-10 17:19:56 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += stm/
|
2015-09-12 15:26:24 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += sunxi/
|
2011-01-07 22:36:17 -07:00
|
|
|
obj-$(CONFIG_SND_SOC) += tegra/
|
2018-12-17 14:21:34 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += ti/
|
2017-11-22 20:43:17 +09:00
|
|
|
obj-$(CONFIG_SND_SOC) += uniphier/
|
2012-05-08 15:57:18 +02:00
|
|
|
obj-$(CONFIG_SND_SOC) += ux500/
|
2018-12-08 00:02:38 +05:30
|
|
|
obj-$(CONFIG_SND_SOC) += xilinx/
|
2014-12-26 20:19:38 +03:00
|
|
|
obj-$(CONFIG_SND_SOC) += xtensa/
|
2024-08-01 14:44:22 +05:30
|
|
|
obj-$(CONFIG_SND_SOC) += sdw_utils/
|