/* * Copyright (c) 2016,2018 The Linux Foundation. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include "wil6210.h" #include "wmi.h" #include "txrx.h" static ssize_t wil_ftm_txrx_offset_sysfs_show(struct device *dev, struct device_attribute *attr, char *buf) { struct wil6210_priv *wil = dev_get_drvdata(dev); struct wil6210_vif *vif = ndev_to_vif(wil->main_ndev); struct { struct wmi_cmd_hdr wmi; struct wmi_tof_get_tx_rx_offset_event evt; } __packed reply; int rc; ssize_t len; if (!test_bit(WMI_FW_CAPABILITY_FTM, wil->fw_capabilities)) return -EOPNOTSUPP; memset(&reply, 0, sizeof(reply)); rc = wmi_call(wil, WMI_TOF_GET_TX_RX_OFFSET_CMDID, vif->mid, NULL, 0, WMI_TOF_GET_TX_RX_OFFSET_EVENTID, &reply, sizeof(reply), 100); if (rc < 0) return rc; if (reply.evt.status) { wil_err(wil, "get_tof_tx_rx_offset failed, error %d\n", reply.evt.status); return -EIO; } len = snprintf(buf, PAGE_SIZE, "%u %u\n", le32_to_cpu(reply.evt.tx_offset), le32_to_cpu(reply.evt.rx_offset)); return len; } static ssize_t wil_ftm_txrx_offset_sysfs_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct wil6210_priv *wil = dev_get_drvdata(dev); struct wil6210_vif *vif = ndev_to_vif(wil->main_ndev); struct wmi_tof_set_tx_rx_offset_cmd cmd; struct { struct wmi_cmd_hdr wmi; struct wmi_tof_set_tx_rx_offset_event evt; } __packed reply; unsigned int tx_offset, rx_offset; int rc; if (sscanf(buf, "%u %u", &tx_offset, &rx_offset) != 2) return -EINVAL; if (!test_bit(WMI_FW_CAPABILITY_FTM, wil->fw_capabilities)) return -EOPNOTSUPP; memset(&cmd, 0, sizeof(cmd)); cmd.tx_offset = cpu_to_le32(tx_offset); cmd.rx_offset = cpu_to_le32(rx_offset); memset(&reply, 0, sizeof(reply)); rc = wmi_call(wil, WMI_TOF_SET_TX_RX_OFFSET_CMDID, vif->mid, &cmd, sizeof(cmd), WMI_TOF_SET_TX_RX_OFFSET_EVENTID, &reply, sizeof(reply), 100); if (rc < 0) return rc; if (reply.evt.status) { wil_err(wil, "set_tof_tx_rx_offset failed, error %d\n", reply.evt.status); return -EIO; } return count; } static DEVICE_ATTR(ftm_txrx_offset, 0644, wil_ftm_txrx_offset_sysfs_show, wil_ftm_txrx_offset_sysfs_store); static ssize_t wil_board_file_sysfs_show(struct device *dev, struct device_attribute *attr, char *buf) { struct wil6210_priv *wil = dev_get_drvdata(dev); wil_get_board_file(wil, buf, PAGE_SIZE); strlcat(buf, "\n", PAGE_SIZE); return strlen(buf); } static ssize_t wil_board_file_sysfs_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct wil6210_priv *wil = dev_get_drvdata(dev); size_t len; mutex_lock(&wil->mutex); kfree(wil->board_file); wil->board_file = NULL; len = count; if (buf[count - 1] == '\n') len--; len = strnlen(buf, len); if (len > 0) { wil->board_file = kmalloc(len + 1, GFP_KERNEL); if (!wil->board_file) { mutex_unlock(&wil->mutex); return -ENOMEM; } strlcpy(wil->board_file, buf, len + 1); } mutex_unlock(&wil->mutex); return count; } static DEVICE_ATTR(board_file, 0644, wil_board_file_sysfs_show, wil_board_file_sysfs_store); static ssize_t wil_fst_link_loss_sysfs_show(struct device *dev, struct device_attribute *attr, char *buf) { struct wil6210_priv *wil = dev_get_drvdata(dev); ssize_t len = 0; int i; for (i = 0; i < ARRAY_SIZE(wil->sta); i++) if (wil->sta[i].status == wil_sta_connected) len += snprintf(buf + len, PAGE_SIZE - len, "[%d] %pM %s\n", i, wil->sta[i].addr, wil->sta[i].fst_link_loss ? "On" : "Off"); return len; } static ssize_t wil_fst_link_loss_sysfs_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct wil6210_priv *wil = dev_get_drvdata(dev); u8 addr[ETH_ALEN]; char *token, *dupbuf, *tmp; int rc = -EINVAL; bool fst_link_loss; tmp = kmemdup(buf, count + 1, GFP_KERNEL); if (!tmp) return -ENOMEM; tmp[count] = '\0'; dupbuf = tmp; token = strsep(&dupbuf, " "); if (!token) goto out; /* mac address */ if (sscanf(token, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &addr[0], &addr[1], &addr[2], &addr[3], &addr[4], &addr[5]) != 6) goto out; /* On/Off */ if (strtobool(dupbuf, &fst_link_loss)) goto out; wil_dbg_misc(wil, "set [%pM] with %d\n", addr, fst_link_loss); rc = wmi_link_maintain_cfg_write(wil, addr, fst_link_loss); if (!rc) rc = count; out: kfree(tmp); return rc; } static DEVICE_ATTR(fst_link_loss, 0644, wil_fst_link_loss_sysfs_show, wil_fst_link_loss_sysfs_store); static ssize_t wil_qos_weights_sysfs_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct wil6210_priv *wil = dev_get_drvdata(dev); struct wil6210_vif *vif = ndev_to_vif(wil->main_ndev); int rc = -EINVAL, i; u8 weights[WMI_QOS_NUM_OF_PRIORITY - 1]; char *token, *dupbuf, *tmp; tmp = kmemdup(buf, count + 1, GFP_KERNEL); if (!tmp) return -ENOMEM; tmp[count] = '\0'; dupbuf = tmp; for (i = 0; i < ARRAY_SIZE(weights); i++) { token = strsep(&dupbuf, " "); if (!token) { wil_err(wil, "missing prio_weight[%d]\n", i); goto out; } if (kstrtou8(token, 0, &weights[i])) { wil_err(wil, "unrecognized prio_weight[%d]\n", i); goto out; } if (weights[i] < WMI_QOS_MIN_DEFAULT_WEIGHT || weights[i] > WMI_QOS_MAX_WEIGHT) { wil_err(wil, "invalid prio_weight[%d] %d\n", i, weights[i]); goto out; } if (i > 0 && weights[i] < weights[i - 1]) { wil_err(wil, "invalid (descending) prio_weight[%d] %d\n", i, weights[i]); goto out; } } wil_dbg_misc(wil, "set qos weights:\n"); for (i = 0; i < ARRAY_SIZE(weights); i++) wil_dbg_misc(wil, "[%d] %d\n", i + 1, weights[i]); rc = wil_wmi_ring_priority_weight(vif, ARRAY_SIZE(weights), weights); if (!rc) rc = count; out: kfree(tmp); return rc; } static DEVICE_ATTR(qos_weights, 0220, NULL, wil_qos_weights_sysfs_store); static ssize_t wil_qos_link_prio_sysfs_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct wil6210_priv *wil = dev_get_drvdata(dev); struct wil6210_vif *vif; int rc = -EINVAL; u8 mid, priority; u8 mac[ETH_ALEN]; bool mac_found; char *token, *dupbuf, *tmp; /* specify either peer MAC or VIF index (MID) followed by * priority (0-3). */ tmp = kmemdup(buf, count + 1, GFP_KERNEL); if (!tmp) return -ENOMEM; tmp[count] = '\0'; dupbuf = tmp; token = strsep(&dupbuf, " "); if (!token) { wil_err(wil, "invalid qos priority input\n"); goto out; } mac_found = mac_pton(token, mac); if (!mac_found) { /* look for VIF index */ rc = kstrtou8(token, 0, &mid); if (rc) { wil_err(wil, "unrecognized qos priority VIF index\n"); goto out; } } rc = kstrtou8(dupbuf, 0, &priority); if (rc) { wil_err(wil, "unrecognized qos priority\n"); goto out; } rc = -EINVAL; if (priority < 0 || priority >= WMI_QOS_NUM_OF_PRIORITY) { wil_err(wil, "invalid qos priority %d\n", priority); goto out; } if (mac_found) { /* set priority for peer's tx rings */ int ring_idx, cid; vif = ndev_to_vif(wil->main_ndev); for (cid = 0; cid < ARRAY_SIZE(wil->sta); cid++) { if (wil->sta[cid].status != wil_sta_unused && ether_addr_equal(wil->sta[cid].addr, mac)) break; } if (cid == ARRAY_SIZE(wil->sta)) { wil_err(wil, "invalid qos priority peer %pM\n", mac); goto out; } for (ring_idx = wil_get_min_tx_ring_id(wil); ring_idx < WIL6210_MAX_TX_RINGS; ring_idx++) { if (wil->ring2cid_tid[ring_idx][0] != cid || !wil->ring_tx[ring_idx].va) continue; wil_dbg_misc(wil, "set ring %d qos priority %d\n", ring_idx, priority); rc = wil_wmi_ring_priority(vif, ring_idx, priority); if (rc) break; } } else { /* set VIF's default priority */ mutex_lock(&wil->vif_mutex); if (mid >= wil->max_vifs) { wil_err(wil, "invalid qos priority VIF %d\n", mid); mutex_unlock(&wil->vif_mutex); goto out; } vif = wil->vifs[mid]; if (!vif) { wil_err(wil, "qos priority VIF %d unused\n", mid); mutex_unlock(&wil->vif_mutex); goto out; } wil_dbg_misc(wil, "set qos priority %d for mid %d\n", priority, vif->mid); rc = wil_wmi_ring_priority(vif, WIL6210_MAX_TX_RINGS, priority); mutex_unlock(&wil->vif_mutex); } if (!rc) rc = count; out: kfree(tmp); return rc; } static DEVICE_ATTR(qos_link_prio, 0220, NULL, wil_qos_link_prio_sysfs_store); static ssize_t thermal_throttling_show(struct device *dev, struct device_attribute *attr, char *buf) { struct wil6210_priv *wil = dev_get_drvdata(dev); ssize_t len; struct wmi_tt_data tt_data; int i, rc; rc = wmi_get_tt_cfg(wil, &tt_data); if (rc) return rc; len = snprintf(buf, PAGE_SIZE, " high max critical\n"); len += snprintf(buf + len, PAGE_SIZE - len, "bb: "); if (tt_data.bb_enabled) for (i = 0; i < WMI_NUM_OF_TT_ZONES; ++i) len += snprintf(buf + len, PAGE_SIZE - len, "%03d-%03d ", tt_data.bb_zones[i].temperature_high, tt_data.bb_zones[i].temperature_low); else len += snprintf(buf + len, PAGE_SIZE - len, "* disabled *"); len += snprintf(buf + len, PAGE_SIZE - len, "\nrf: "); if (tt_data.rf_enabled) for (i = 0; i < WMI_NUM_OF_TT_ZONES; ++i) len += snprintf(buf + len, PAGE_SIZE - len, "%03d-%03d ", tt_data.rf_zones[i].temperature_high, tt_data.rf_zones[i].temperature_low); else len += snprintf(buf + len, PAGE_SIZE - len, "* disabled *"); len += snprintf(buf + len, PAGE_SIZE - len, "\n"); return len; } static ssize_t thermal_throttling_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct wil6210_priv *wil = dev_get_drvdata(dev); int i, rc = -EINVAL; char *token, *dupbuf, *tmp; struct wmi_tt_data tt_data = { .bb_enabled = 0, .rf_enabled = 0, }; tmp = kmemdup(buf, count + 1, GFP_KERNEL); if (!tmp) return -ENOMEM; tmp[count] = '\0'; dupbuf = tmp; /* Format for writing is 12 unsigned bytes separated by spaces: * \ * * To disable thermal throttling for bb or for rf, use 0 for all * its six set points. */ /* bb */ for (i = 0; i < WMI_NUM_OF_TT_ZONES; ++i) { token = strsep(&dupbuf, " "); if (!token) goto out; if (kstrtou8(token, 0, &tt_data.bb_zones[i].temperature_high)) goto out; token = strsep(&dupbuf, " "); if (!token) goto out; if (kstrtou8(token, 0, &tt_data.bb_zones[i].temperature_low)) goto out; if (tt_data.bb_zones[i].temperature_high > 0 || tt_data.bb_zones[i].temperature_low > 0) tt_data.bb_enabled = 1; } /* rf */ for (i = 0; i < WMI_NUM_OF_TT_ZONES; ++i) { token = strsep(&dupbuf, " "); if (!token) goto out; if (kstrtou8(token, 0, &tt_data.rf_zones[i].temperature_high)) goto out; token = strsep(&dupbuf, " "); if (!token) goto out; if (kstrtou8(token, 0, &tt_data.rf_zones[i].temperature_low)) goto out; if (tt_data.rf_zones[i].temperature_high > 0 || tt_data.rf_zones[i].temperature_low > 0) tt_data.rf_enabled = 1; } rc = wmi_set_tt_cfg(wil, &tt_data); if (rc) goto out; rc = count; out: kfree(tmp); return rc; } static DEVICE_ATTR_RW(thermal_throttling); static struct attribute *wil6210_sysfs_entries[] = { &dev_attr_ftm_txrx_offset.attr, &dev_attr_thermal_throttling.attr, &dev_attr_board_file.attr, &dev_attr_fst_link_loss.attr, &dev_attr_qos_weights.attr, &dev_attr_qos_link_prio.attr, NULL }; static struct attribute_group wil6210_attribute_group = { .name = "wil6210", .attrs = wil6210_sysfs_entries, }; int wil6210_sysfs_init(struct wil6210_priv *wil) { struct device *dev = wil_to_dev(wil); int err; err = sysfs_create_group(&dev->kobj, &wil6210_attribute_group); if (err) { wil_err(wil, "failed to create sysfs group: %d\n", err); return err; } return 0; } void wil6210_sysfs_remove(struct wil6210_priv *wil) { struct device *dev = wil_to_dev(wil); sysfs_remove_group(&dev->kobj, &wil6210_attribute_group); }