mirror of
https://github.com/torvalds/linux.git
synced 2024-12-21 10:31:54 +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>
365 lines
8.5 KiB
C
365 lines
8.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
|
|
* flexcop-sram.c - functions for controlling the SRAM
|
|
* see flexcop.c for copyright information
|
|
*/
|
|
#include "flexcop.h"
|
|
|
|
static void flexcop_sram_set_chip(struct flexcop_device *fc,
|
|
flexcop_sram_type_t type)
|
|
{
|
|
flexcop_set_ibi_value(wan_ctrl_reg_71c, sram_chip, type);
|
|
}
|
|
|
|
int flexcop_sram_init(struct flexcop_device *fc)
|
|
{
|
|
switch (fc->rev) {
|
|
case FLEXCOP_II:
|
|
case FLEXCOP_IIB:
|
|
flexcop_sram_set_chip(fc, FC_SRAM_1_32KB);
|
|
break;
|
|
case FLEXCOP_III:
|
|
flexcop_sram_set_chip(fc, FC_SRAM_1_48KB);
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int flexcop_sram_set_dest(struct flexcop_device *fc, flexcop_sram_dest_t dest,
|
|
flexcop_sram_dest_target_t target)
|
|
{
|
|
flexcop_ibi_value v;
|
|
v = fc->read_ibi_reg(fc, sram_dest_reg_714);
|
|
|
|
if (fc->rev != FLEXCOP_III && target == FC_SRAM_DEST_TARGET_FC3_CA) {
|
|
err("SRAM destination target to available on FlexCopII(b)\n");
|
|
return -EINVAL;
|
|
}
|
|
deb_sram("sram dest: %x target: %x\n", dest, target);
|
|
|
|
if (dest & FC_SRAM_DEST_NET)
|
|
v.sram_dest_reg_714.NET_Dest = target;
|
|
if (dest & FC_SRAM_DEST_CAI)
|
|
v.sram_dest_reg_714.CAI_Dest = target;
|
|
if (dest & FC_SRAM_DEST_CAO)
|
|
v.sram_dest_reg_714.CAO_Dest = target;
|
|
if (dest & FC_SRAM_DEST_MEDIA)
|
|
v.sram_dest_reg_714.MEDIA_Dest = target;
|
|
|
|
fc->write_ibi_reg(fc,sram_dest_reg_714,v);
|
|
udelay(1000); /* TODO delay really necessary */
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL(flexcop_sram_set_dest);
|
|
|
|
void flexcop_wan_set_speed(struct flexcop_device *fc, flexcop_wan_speed_t s)
|
|
{
|
|
flexcop_set_ibi_value(wan_ctrl_reg_71c,wan_speed_sig,s);
|
|
}
|
|
EXPORT_SYMBOL(flexcop_wan_set_speed);
|
|
|
|
void flexcop_sram_ctrl(struct flexcop_device *fc, int usb_wan, int sramdma, int maximumfill)
|
|
{
|
|
flexcop_ibi_value v = fc->read_ibi_reg(fc,sram_dest_reg_714);
|
|
v.sram_dest_reg_714.ctrl_usb_wan = usb_wan;
|
|
v.sram_dest_reg_714.ctrl_sramdma = sramdma;
|
|
v.sram_dest_reg_714.ctrl_maximumfill = maximumfill;
|
|
fc->write_ibi_reg(fc,sram_dest_reg_714,v);
|
|
}
|
|
EXPORT_SYMBOL(flexcop_sram_ctrl);
|
|
|
|
#if 0
|
|
static void flexcop_sram_write(struct adapter *adapter, u32 bank, u32 addr, u8 *buf, u32 len)
|
|
{
|
|
int i, retries;
|
|
u32 command;
|
|
|
|
for (i = 0; i < len; i++) {
|
|
command = bank | addr | 0x04000000 | (*buf << 0x10);
|
|
|
|
retries = 2;
|
|
|
|
while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) {
|
|
mdelay(1);
|
|
retries--;
|
|
}
|
|
|
|
if (retries == 0)
|
|
printk("%s: SRAM timeout\n", __func__);
|
|
|
|
write_reg_dw(adapter, 0x700, command);
|
|
|
|
buf++;
|
|
addr++;
|
|
}
|
|
}
|
|
|
|
static void flex_sram_read(struct adapter *adapter, u32 bank, u32 addr, u8 *buf, u32 len)
|
|
{
|
|
int i, retries;
|
|
u32 command, value;
|
|
|
|
for (i = 0; i < len; i++) {
|
|
command = bank | addr | 0x04008000;
|
|
|
|
retries = 10000;
|
|
|
|
while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) {
|
|
mdelay(1);
|
|
retries--;
|
|
}
|
|
|
|
if (retries == 0)
|
|
printk("%s: SRAM timeout\n", __func__);
|
|
|
|
write_reg_dw(adapter, 0x700, command);
|
|
|
|
retries = 10000;
|
|
|
|
while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) {
|
|
mdelay(1);
|
|
retries--;
|
|
}
|
|
|
|
if (retries == 0)
|
|
printk("%s: SRAM timeout\n", __func__);
|
|
|
|
value = read_reg_dw(adapter, 0x700) >> 0x10;
|
|
|
|
*buf = (value & 0xff);
|
|
|
|
addr++;
|
|
buf++;
|
|
}
|
|
}
|
|
|
|
static void sram_write_chunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len)
|
|
{
|
|
u32 bank;
|
|
|
|
bank = 0;
|
|
|
|
if (adapter->dw_sram_type == 0x20000) {
|
|
bank = (addr & 0x18000) << 0x0d;
|
|
}
|
|
|
|
if (adapter->dw_sram_type == 0x00000) {
|
|
if ((addr >> 0x0f) == 0)
|
|
bank = 0x20000000;
|
|
else
|
|
bank = 0x10000000;
|
|
}
|
|
flex_sram_write(adapter, bank, addr & 0x7fff, buf, len);
|
|
}
|
|
|
|
static void sram_read_chunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len)
|
|
{
|
|
u32 bank;
|
|
bank = 0;
|
|
|
|
if (adapter->dw_sram_type == 0x20000) {
|
|
bank = (addr & 0x18000) << 0x0d;
|
|
}
|
|
|
|
if (adapter->dw_sram_type == 0x00000) {
|
|
if ((addr >> 0x0f) == 0)
|
|
bank = 0x20000000;
|
|
else
|
|
bank = 0x10000000;
|
|
}
|
|
flex_sram_read(adapter, bank, addr & 0x7fff, buf, len);
|
|
}
|
|
|
|
static void sram_read(struct adapter *adapter, u32 addr, u8 *buf, u32 len)
|
|
{
|
|
u32 length;
|
|
while (len != 0) {
|
|
length = len;
|
|
/* check if the address range belongs to the same
|
|
* 32K memory chip. If not, the data is read
|
|
* from one chip at a time */
|
|
if ((addr >> 0x0f) != ((addr + len - 1) >> 0x0f)) {
|
|
length = (((addr >> 0x0f) + 1) << 0x0f) - addr;
|
|
}
|
|
|
|
sram_read_chunk(adapter, addr, buf, length);
|
|
addr = addr + length;
|
|
buf = buf + length;
|
|
len = len - length;
|
|
}
|
|
}
|
|
|
|
static void sram_write(struct adapter *adapter, u32 addr, u8 *buf, u32 len)
|
|
{
|
|
u32 length;
|
|
while (len != 0) {
|
|
length = len;
|
|
|
|
/* check if the address range belongs to the same
|
|
* 32K memory chip. If not, the data is
|
|
* written to one chip at a time */
|
|
if ((addr >> 0x0f) != ((addr + len - 1) >> 0x0f)) {
|
|
length = (((addr >> 0x0f) + 1) << 0x0f) - addr;
|
|
}
|
|
|
|
sram_write_chunk(adapter, addr, buf, length);
|
|
addr = addr + length;
|
|
buf = buf + length;
|
|
len = len - length;
|
|
}
|
|
}
|
|
|
|
static void sram_set_size(struct adapter *adapter, u32 mask)
|
|
{
|
|
write_reg_dw(adapter, 0x71c,
|
|
(mask | (~0x30000 & read_reg_dw(adapter, 0x71c))));
|
|
}
|
|
|
|
static void sram_init(struct adapter *adapter)
|
|
{
|
|
u32 tmp;
|
|
tmp = read_reg_dw(adapter, 0x71c);
|
|
write_reg_dw(adapter, 0x71c, 1);
|
|
|
|
if (read_reg_dw(adapter, 0x71c) != 0) {
|
|
write_reg_dw(adapter, 0x71c, tmp);
|
|
adapter->dw_sram_type = tmp & 0x30000;
|
|
ddprintk("%s: dw_sram_type = %x\n", __func__, adapter->dw_sram_type);
|
|
} else {
|
|
adapter->dw_sram_type = 0x10000;
|
|
ddprintk("%s: dw_sram_type = %x\n", __func__, adapter->dw_sram_type);
|
|
}
|
|
}
|
|
|
|
static int sram_test_location(struct adapter *adapter, u32 mask, u32 addr)
|
|
{
|
|
u8 tmp1, tmp2;
|
|
dprintk("%s: mask = %x, addr = %x\n", __func__, mask, addr);
|
|
|
|
sram_set_size(adapter, mask);
|
|
sram_init(adapter);
|
|
|
|
tmp2 = 0xa5;
|
|
tmp1 = 0x4f;
|
|
|
|
sram_write(adapter, addr, &tmp2, 1);
|
|
sram_write(adapter, addr + 4, &tmp1, 1);
|
|
|
|
tmp2 = 0;
|
|
mdelay(20);
|
|
|
|
sram_read(adapter, addr, &tmp2, 1);
|
|
sram_read(adapter, addr, &tmp2, 1);
|
|
|
|
dprintk("%s: wrote 0xa5, read 0x%2x\n", __func__, tmp2);
|
|
|
|
if (tmp2 != 0xa5)
|
|
return 0;
|
|
|
|
tmp2 = 0x5a;
|
|
tmp1 = 0xf4;
|
|
|
|
sram_write(adapter, addr, &tmp2, 1);
|
|
sram_write(adapter, addr + 4, &tmp1, 1);
|
|
|
|
tmp2 = 0;
|
|
mdelay(20);
|
|
|
|
sram_read(adapter, addr, &tmp2, 1);
|
|
sram_read(adapter, addr, &tmp2, 1);
|
|
|
|
dprintk("%s: wrote 0x5a, read 0x%2x\n", __func__, tmp2);
|
|
|
|
if (tmp2 != 0x5a)
|
|
return 0;
|
|
return 1;
|
|
}
|
|
|
|
static u32 sram_length(struct adapter *adapter)
|
|
{
|
|
if (adapter->dw_sram_type == 0x10000)
|
|
return 32768; /* 32K */
|
|
if (adapter->dw_sram_type == 0x00000)
|
|
return 65536; /* 64K */
|
|
if (adapter->dw_sram_type == 0x20000)
|
|
return 131072; /* 128K */
|
|
return 32768; /* 32K */
|
|
}
|
|
|
|
/* FlexcopII can work with 32K, 64K or 128K of external SRAM memory.
|
|
- for 128K there are 4x32K chips at bank 0,1,2,3.
|
|
- for 64K there are 2x32K chips at bank 1,2.
|
|
- for 32K there is one 32K chip at bank 0.
|
|
|
|
FlexCop works only with one bank at a time. The bank is selected
|
|
by bits 28-29 of the 0x700 register.
|
|
|
|
bank 0 covers addresses 0x00000-0x07fff
|
|
bank 1 covers addresses 0x08000-0x0ffff
|
|
bank 2 covers addresses 0x10000-0x17fff
|
|
bank 3 covers addresses 0x18000-0x1ffff */
|
|
|
|
static int flexcop_sram_detect(struct flexcop_device *fc)
|
|
{
|
|
flexcop_ibi_value r208, r71c_0, vr71c_1;
|
|
r208 = fc->read_ibi_reg(fc, ctrl_208);
|
|
fc->write_ibi_reg(fc, ctrl_208, ibi_zero);
|
|
|
|
r71c_0 = fc->read_ibi_reg(fc, wan_ctrl_reg_71c);
|
|
write_reg_dw(adapter, 0x71c, 1);
|
|
tmp3 = read_reg_dw(adapter, 0x71c);
|
|
dprintk("%s: tmp3 = %x\n", __func__, tmp3);
|
|
write_reg_dw(adapter, 0x71c, tmp2);
|
|
|
|
// check for internal SRAM ???
|
|
tmp3--;
|
|
if (tmp3 != 0) {
|
|
sram_set_size(adapter, 0x10000);
|
|
sram_init(adapter);
|
|
write_reg_dw(adapter, 0x208, tmp);
|
|
dprintk("%s: sram size = 32K\n", __func__);
|
|
return 32;
|
|
}
|
|
|
|
if (sram_test_location(adapter, 0x20000, 0x18000) != 0) {
|
|
sram_set_size(adapter, 0x20000);
|
|
sram_init(adapter);
|
|
write_reg_dw(adapter, 0x208, tmp);
|
|
dprintk("%s: sram size = 128K\n", __func__);
|
|
return 128;
|
|
}
|
|
|
|
if (sram_test_location(adapter, 0x00000, 0x10000) != 0) {
|
|
sram_set_size(adapter, 0x00000);
|
|
sram_init(adapter);
|
|
write_reg_dw(adapter, 0x208, tmp);
|
|
dprintk("%s: sram size = 64K\n", __func__);
|
|
return 64;
|
|
}
|
|
|
|
if (sram_test_location(adapter, 0x10000, 0x00000) != 0) {
|
|
sram_set_size(adapter, 0x10000);
|
|
sram_init(adapter);
|
|
write_reg_dw(adapter, 0x208, tmp);
|
|
dprintk("%s: sram size = 32K\n", __func__);
|
|
return 32;
|
|
}
|
|
|
|
sram_set_size(adapter, 0x10000);
|
|
sram_init(adapter);
|
|
write_reg_dw(adapter, 0x208, tmp);
|
|
dprintk("%s: SRAM detection failed. Set to 32K \n", __func__);
|
|
return 0;
|
|
}
|
|
|
|
static void sll_detect_sram_size(struct adapter *adapter)
|
|
{
|
|
sram_detect_for_flex2(adapter);
|
|
}
|
|
|
|
#endif
|