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>
210 lines
6.9 KiB
C
210 lines
6.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef LINUX_B43_PHY_G_H_
|
|
#define LINUX_B43_PHY_G_H_
|
|
|
|
/* OFDM PHY registers are defined in the A-PHY header. */
|
|
#include "phy_a.h"
|
|
|
|
/* CCK (B) PHY Registers */
|
|
#define B43_PHY_VERSION_CCK B43_PHY_CCK(0x00) /* Versioning register for B-PHY */
|
|
#define B43_PHY_CCKBBANDCFG B43_PHY_CCK(0x01) /* Contains antenna 0/1 control bit */
|
|
#define B43_PHY_PGACTL B43_PHY_CCK(0x15) /* PGA control */
|
|
#define B43_PHY_PGACTL_LPF 0x1000 /* Low pass filter (?) */
|
|
#define B43_PHY_PGACTL_LOWBANDW 0x0040 /* Low bandwidth flag */
|
|
#define B43_PHY_PGACTL_UNKNOWN 0xEFA0
|
|
#define B43_PHY_FBCTL1 B43_PHY_CCK(0x18) /* Frequency bandwidth control 1 */
|
|
#define B43_PHY_ITSSI B43_PHY_CCK(0x29) /* Idle TSSI */
|
|
#define B43_PHY_LO_LEAKAGE B43_PHY_CCK(0x2D) /* Measured LO leakage */
|
|
#define B43_PHY_ENERGY B43_PHY_CCK(0x33) /* Energy */
|
|
#define B43_PHY_SYNCCTL B43_PHY_CCK(0x35)
|
|
#define B43_PHY_FBCTL2 B43_PHY_CCK(0x38) /* Frequency bandwidth control 2 */
|
|
#define B43_PHY_DACCTL B43_PHY_CCK(0x60) /* DAC control */
|
|
#define B43_PHY_RCCALOVER B43_PHY_CCK(0x78) /* RC calibration override */
|
|
|
|
/* Extended G-PHY Registers */
|
|
#define B43_PHY_CLASSCTL B43_PHY_EXTG(0x02) /* Classify control */
|
|
#define B43_PHY_GTABCTL B43_PHY_EXTG(0x03) /* G-PHY table control (see below) */
|
|
#define B43_PHY_GTABOFF 0x03FF /* G-PHY table offset (see below) */
|
|
#define B43_PHY_GTABNR 0xFC00 /* G-PHY table number (see below) */
|
|
#define B43_PHY_GTABNR_SHIFT 10
|
|
#define B43_PHY_GTABDATA B43_PHY_EXTG(0x04) /* G-PHY table data */
|
|
#define B43_PHY_LO_MASK B43_PHY_EXTG(0x0F) /* Local Oscillator control mask */
|
|
#define B43_PHY_LO_CTL B43_PHY_EXTG(0x10) /* Local Oscillator control */
|
|
#define B43_PHY_RFOVER B43_PHY_EXTG(0x11) /* RF override */
|
|
#define B43_PHY_RFOVERVAL B43_PHY_EXTG(0x12) /* RF override value */
|
|
#define B43_PHY_RFOVERVAL_EXTLNA 0x8000
|
|
#define B43_PHY_RFOVERVAL_LNA 0x7000
|
|
#define B43_PHY_RFOVERVAL_LNA_SHIFT 12
|
|
#define B43_PHY_RFOVERVAL_PGA 0x0F00
|
|
#define B43_PHY_RFOVERVAL_PGA_SHIFT 8
|
|
#define B43_PHY_RFOVERVAL_UNK 0x0010 /* Unknown, always set. */
|
|
#define B43_PHY_RFOVERVAL_TRSWRX 0x00E0
|
|
#define B43_PHY_RFOVERVAL_BW 0x0003 /* Bandwidth flags */
|
|
#define B43_PHY_RFOVERVAL_BW_LPF 0x0001 /* Low Pass Filter */
|
|
#define B43_PHY_RFOVERVAL_BW_LBW 0x0002 /* Low Bandwidth (when set), high when unset */
|
|
#define B43_PHY_ANALOGOVER B43_PHY_EXTG(0x14) /* Analog override */
|
|
#define B43_PHY_ANALOGOVERVAL B43_PHY_EXTG(0x15) /* Analog override value */
|
|
|
|
|
|
/*** G-PHY table numbers */
|
|
#define B43_GTAB(number, offset) (((number) << B43_PHY_GTABNR_SHIFT) | (offset))
|
|
#define B43_GTAB_NRSSI B43_GTAB(0x00, 0)
|
|
#define B43_GTAB_TRFEMW B43_GTAB(0x0C, 0x120)
|
|
#define B43_GTAB_ORIGTR B43_GTAB(0x2E, 0x298)
|
|
|
|
u16 b43_gtab_read(struct b43_wldev *dev, u16 table, u16 offset);
|
|
void b43_gtab_write(struct b43_wldev *dev, u16 table, u16 offset, u16 value);
|
|
|
|
|
|
/* Returns the boolean whether "TX Magnification" is enabled. */
|
|
#define has_tx_magnification(phy) \
|
|
(((phy)->rev >= 2) && \
|
|
((phy)->radio_ver == 0x2050) && \
|
|
((phy)->radio_rev == 8))
|
|
/* Card uses the loopback gain stuff */
|
|
#define has_loopback_gain(phy) \
|
|
(((phy)->rev > 1) || ((phy)->gmode))
|
|
|
|
/* Radio Attenuation (RF Attenuation) */
|
|
struct b43_rfatt {
|
|
u8 att; /* Attenuation value */
|
|
bool with_padmix; /* Flag, PAD Mixer enabled. */
|
|
};
|
|
struct b43_rfatt_list {
|
|
/* Attenuation values list */
|
|
const struct b43_rfatt *list;
|
|
u8 len;
|
|
/* Minimum/Maximum attenuation values */
|
|
u8 min_val;
|
|
u8 max_val;
|
|
};
|
|
|
|
/* Returns true, if the values are the same. */
|
|
static inline bool b43_compare_rfatt(const struct b43_rfatt *a,
|
|
const struct b43_rfatt *b)
|
|
{
|
|
return ((a->att == b->att) &&
|
|
(a->with_padmix == b->with_padmix));
|
|
}
|
|
|
|
/* Baseband Attenuation */
|
|
struct b43_bbatt {
|
|
u8 att; /* Attenuation value */
|
|
};
|
|
struct b43_bbatt_list {
|
|
/* Attenuation values list */
|
|
const struct b43_bbatt *list;
|
|
u8 len;
|
|
/* Minimum/Maximum attenuation values */
|
|
u8 min_val;
|
|
u8 max_val;
|
|
};
|
|
|
|
/* Returns true, if the values are the same. */
|
|
static inline bool b43_compare_bbatt(const struct b43_bbatt *a,
|
|
const struct b43_bbatt *b)
|
|
{
|
|
return (a->att == b->att);
|
|
}
|
|
|
|
/* tx_control bits. */
|
|
#define B43_TXCTL_PA3DB 0x40 /* PA Gain 3dB */
|
|
#define B43_TXCTL_PA2DB 0x20 /* PA Gain 2dB */
|
|
#define B43_TXCTL_TXMIX 0x10 /* TX Mixer Gain */
|
|
|
|
struct b43_txpower_lo_control;
|
|
|
|
struct b43_phy_g {
|
|
/* ACI (adjacent channel interference) flags. */
|
|
bool aci_enable;
|
|
bool aci_wlan_automatic;
|
|
bool aci_hw_rssi;
|
|
|
|
/* Radio switched on/off */
|
|
bool radio_on;
|
|
struct {
|
|
/* Values saved when turning the radio off.
|
|
* They are needed when turning it on again. */
|
|
bool valid;
|
|
u16 rfover;
|
|
u16 rfoverval;
|
|
} radio_off_context;
|
|
|
|
u16 minlowsig[2];
|
|
u16 minlowsigpos[2];
|
|
|
|
/* Pointer to the table used to convert a
|
|
* TSSI value to dBm-Q5.2 */
|
|
const s8 *tssi2dbm;
|
|
/* tssi2dbm is kmalloc()ed. Only used for free()ing. */
|
|
bool dyn_tssi_tbl;
|
|
/* Target idle TSSI */
|
|
int tgt_idle_tssi;
|
|
/* Current idle TSSI */
|
|
int cur_idle_tssi;
|
|
/* The current average TSSI. */
|
|
u8 average_tssi;
|
|
/* Current TX power level attenuation control values */
|
|
struct b43_bbatt bbatt;
|
|
struct b43_rfatt rfatt;
|
|
u8 tx_control; /* B43_TXCTL_XXX */
|
|
/* The calculated attenuation deltas that are used later
|
|
* when adjusting the actual power output. */
|
|
int bbatt_delta;
|
|
int rfatt_delta;
|
|
|
|
/* LocalOscillator control values. */
|
|
struct b43_txpower_lo_control *lo_control;
|
|
/* Values from b43_calc_loopback_gain() */
|
|
s16 max_lb_gain; /* Maximum Loopback gain in hdB */
|
|
s16 trsw_rx_gain; /* TRSW RX gain in hdB */
|
|
s16 lna_lod_gain; /* LNA lod */
|
|
s16 lna_gain; /* LNA */
|
|
s16 pga_gain; /* PGA */
|
|
|
|
/* Current Interference Mitigation mode */
|
|
int interfmode;
|
|
/* Stack of saved values from the Interference Mitigation code.
|
|
* Each value in the stack is laid out as follows:
|
|
* bit 0-11: offset
|
|
* bit 12-15: register ID
|
|
* bit 16-32: value
|
|
* register ID is: 0x1 PHY, 0x2 Radio, 0x3 ILT
|
|
*/
|
|
#define B43_INTERFSTACK_SIZE 26
|
|
u32 interfstack[B43_INTERFSTACK_SIZE]; //FIXME: use a data structure
|
|
|
|
/* Saved values from the NRSSI Slope calculation */
|
|
s16 nrssi[2];
|
|
s32 nrssislope;
|
|
/* In memory nrssi lookup table. */
|
|
s8 nrssi_lt[64];
|
|
|
|
u16 lofcal;
|
|
|
|
u16 initval; //FIXME rename?
|
|
|
|
/* The device does address auto increment for the OFDM tables.
|
|
* We cache the previously used address here and omit the address
|
|
* write on the next table access, if possible. */
|
|
u16 ofdmtab_addr; /* The address currently set in hardware. */
|
|
enum { /* The last data flow direction. */
|
|
B43_OFDMTAB_DIRECTION_UNKNOWN = 0,
|
|
B43_OFDMTAB_DIRECTION_READ,
|
|
B43_OFDMTAB_DIRECTION_WRITE,
|
|
} ofdmtab_addr_direction;
|
|
};
|
|
|
|
void b43_gphy_set_baseband_attenuation(struct b43_wldev *dev,
|
|
u16 baseband_attenuation);
|
|
void b43_gphy_channel_switch(struct b43_wldev *dev,
|
|
unsigned int channel,
|
|
bool synthetic_pu_workaround);
|
|
u8 * b43_generate_dyn_tssi2dbm_tab(struct b43_wldev *dev,
|
|
s16 pab0, s16 pab1, s16 pab2);
|
|
|
|
struct b43_phy_operations;
|
|
extern const struct b43_phy_operations b43_phyops_g;
|
|
|
|
#endif /* LINUX_B43_PHY_G_H_ */
|