Merge tag 'wireless-drivers-next-for-davem-2017-04-21' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next
Kalle Valo says: ==================== wireless-drivers-next patches for 4.12 Quite a lot of patches for rtlwifi and iwlwifi this time, but changes also for other active wireless drivers. Major changes: ath9k * add support for Dell Wireless 1601 PCI device * add debugfs file to manually override noise floor ath10k * bump up FW API to 6 for a new QCA6174 firmware branch wil6210 * support 8 kB RX buffers iwlwifi * work to support A000 devices continues * add support for FW API 30 * add Geographical and Dynamic Specific Absorption Rate (SAR) support * support a few new PCI device IDs rtlwifi * work on adding Bluetooth coexistance support, not finished yet ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -254,7 +254,9 @@ int ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan)
|
||||
if ((i >= AR5416_MAX_CHAINS) && !IS_CHAN_HT40(chan))
|
||||
continue;
|
||||
|
||||
if (h)
|
||||
if (ah->nf_override)
|
||||
nfval = ah->nf_override;
|
||||
else if (h)
|
||||
nfval = h[i].privNF;
|
||||
else
|
||||
nfval = default_nf;
|
||||
@@ -348,6 +350,7 @@ int ath9k_hw_loadnf(struct ath_hw *ah, struct ath9k_channel *chan)
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(ath9k_hw_loadnf);
|
||||
|
||||
|
||||
static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf)
|
||||
|
@@ -1191,6 +1191,65 @@ static const struct file_operations fops_tpc = {
|
||||
.llseek = default_llseek,
|
||||
};
|
||||
|
||||
static ssize_t read_file_nf_override(struct file *file,
|
||||
char __user *user_buf,
|
||||
size_t count, loff_t *ppos)
|
||||
{
|
||||
struct ath_softc *sc = file->private_data;
|
||||
struct ath_hw *ah = sc->sc_ah;
|
||||
char buf[32];
|
||||
unsigned int len;
|
||||
|
||||
if (ah->nf_override == 0)
|
||||
len = sprintf(buf, "off\n");
|
||||
else
|
||||
len = sprintf(buf, "%d\n", ah->nf_override);
|
||||
|
||||
return simple_read_from_buffer(user_buf, count, ppos, buf, len);
|
||||
}
|
||||
|
||||
static ssize_t write_file_nf_override(struct file *file,
|
||||
const char __user *user_buf,
|
||||
size_t count, loff_t *ppos)
|
||||
{
|
||||
struct ath_softc *sc = file->private_data;
|
||||
struct ath_hw *ah = sc->sc_ah;
|
||||
long val;
|
||||
char buf[32];
|
||||
ssize_t len;
|
||||
|
||||
len = min(count, sizeof(buf) - 1);
|
||||
if (copy_from_user(buf, user_buf, len))
|
||||
return -EFAULT;
|
||||
|
||||
buf[len] = '\0';
|
||||
if (strncmp("off", buf, 3) == 0)
|
||||
val = 0;
|
||||
else if (kstrtol(buf, 0, &val))
|
||||
return -EINVAL;
|
||||
|
||||
if (val > 0)
|
||||
return -EINVAL;
|
||||
|
||||
if (val < -120)
|
||||
return -EINVAL;
|
||||
|
||||
ah->nf_override = val;
|
||||
|
||||
if (ah->curchan)
|
||||
ath9k_hw_loadnf(ah, ah->curchan);
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
static const struct file_operations fops_nf_override = {
|
||||
.read = read_file_nf_override,
|
||||
.write = write_file_nf_override,
|
||||
.open = simple_open,
|
||||
.owner = THIS_MODULE,
|
||||
.llseek = default_llseek,
|
||||
};
|
||||
|
||||
/* Ethtool support for get-stats */
|
||||
|
||||
#define AMKSTR(nm) #nm "_BE", #nm "_BK", #nm "_VI", #nm "_VO"
|
||||
@@ -1402,5 +1461,8 @@ int ath9k_init_debug(struct ath_hw *ah)
|
||||
debugfs_create_u16("airtime_flags", S_IRUSR | S_IWUSR,
|
||||
sc->debug.debugfs_phy, &sc->airtime_flags);
|
||||
|
||||
debugfs_create_file("nf_override", S_IRUSR | S_IWUSR,
|
||||
sc->debug.debugfs_phy, sc, &fops_nf_override);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@@ -112,7 +112,7 @@ void ath9k_hw_usb_gen_fill_eeprom(struct ath_hw *ah, u16 *eep_data,
|
||||
static bool ath9k_hw_nvram_read_array(u16 *blob, size_t blob_size,
|
||||
off_t offset, u16 *data)
|
||||
{
|
||||
if (offset > blob_size)
|
||||
if (offset >= blob_size)
|
||||
return false;
|
||||
|
||||
*data = blob[offset];
|
||||
|
@@ -106,7 +106,7 @@
|
||||
#define AR9285_RDEXT_DEFAULT 0x1F
|
||||
|
||||
#define ATH9K_POW_SM(_r, _s) (((_r) & 0x3f) << (_s))
|
||||
#define FREQ2FBIN(x, y) ((y) ? ((x) - 2300) : (((x) - 4800) / 5))
|
||||
#define FREQ2FBIN(x, y) (u8)((y) ? ((x) - 2300) : (((x) - 4800) / 5))
|
||||
#define FBIN2FREQ(x, y) ((y) ? (2300 + x) : (4800 + 5 * x))
|
||||
#define ath9k_hw_use_flash(_ah) (!(_ah->ah_flags & AH_USE_EEPROM))
|
||||
|
||||
|
@@ -1220,6 +1220,9 @@ static int send_eject_command(struct usb_interface *interface)
|
||||
u8 bulk_out_ep;
|
||||
int r;
|
||||
|
||||
if (iface_desc->desc.bNumEndpoints < 2)
|
||||
return -ENODEV;
|
||||
|
||||
/* Find bulk out endpoint */
|
||||
for (r = 1; r >= 0; r--) {
|
||||
endpoint = &iface_desc->endpoint[r].desc;
|
||||
|
@@ -803,6 +803,7 @@ struct ath_hw {
|
||||
u32 rfkill_gpio;
|
||||
u32 rfkill_polarity;
|
||||
u32 ah_flags;
|
||||
s16 nf_override;
|
||||
|
||||
bool reset_power_on;
|
||||
bool htc_reset_init;
|
||||
|
@@ -383,6 +383,11 @@ static const struct pci_device_id ath_pci_id_table[] = {
|
||||
0x10CF, /* Fujitsu */
|
||||
0x1783),
|
||||
.driver_data = ATH9K_PCI_WOW },
|
||||
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_ATHEROS,
|
||||
0x0034,
|
||||
PCI_VENDOR_ID_DELL,
|
||||
0x020B),
|
||||
.driver_data = ATH9K_PCI_WOW },
|
||||
|
||||
/* Killer Wireless (2x2) */
|
||||
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_ATHEROS,
|
||||
|
Reference in New Issue
Block a user