|
@@ -73,6 +73,44 @@
|
|
#include "debugfs.h"
|
|
#include "debugfs.h"
|
|
#include "iwl-fw-error-dump.h"
|
|
#include "iwl-fw-error-dump.h"
|
|
|
|
|
|
|
|
+static ssize_t iwl_dbgfs_ctdp_budget_read(struct file *file,
|
|
|
|
+ char __user *user_buf,
|
|
|
|
+ size_t count, loff_t *ppos)
|
|
|
|
+{
|
|
|
|
+ struct iwl_mvm *mvm = file->private_data;
|
|
|
|
+ char buf[16];
|
|
|
|
+ int pos, budget;
|
|
|
|
+
|
|
|
|
+ if (!mvm->ucode_loaded || mvm->cur_ucode != IWL_UCODE_REGULAR)
|
|
|
|
+ return -EIO;
|
|
|
|
+
|
|
|
|
+ mutex_lock(&mvm->mutex);
|
|
|
|
+ budget = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_REPORT, 0);
|
|
|
|
+ mutex_unlock(&mvm->mutex);
|
|
|
|
+
|
|
|
|
+ if (budget < 0)
|
|
|
|
+ return budget;
|
|
|
|
+
|
|
|
|
+ pos = scnprintf(buf, sizeof(buf), "%d\n", budget);
|
|
|
|
+
|
|
|
|
+ return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static ssize_t iwl_dbgfs_stop_ctdp_write(struct iwl_mvm *mvm, char *buf,
|
|
|
|
+ size_t count, loff_t *ppos)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ if (!mvm->ucode_loaded || mvm->cur_ucode != IWL_UCODE_REGULAR)
|
|
|
|
+ return -EIO;
|
|
|
|
+
|
|
|
|
+ mutex_lock(&mvm->mutex);
|
|
|
|
+ ret = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_STOP, 0);
|
|
|
|
+ mutex_unlock(&mvm->mutex);
|
|
|
|
+
|
|
|
|
+ return ret ?: count;
|
|
|
|
+}
|
|
|
|
+
|
|
static ssize_t iwl_dbgfs_tx_flush_write(struct iwl_mvm *mvm, char *buf,
|
|
static ssize_t iwl_dbgfs_tx_flush_write(struct iwl_mvm *mvm, char *buf,
|
|
size_t count, loff_t *ppos)
|
|
size_t count, loff_t *ppos)
|
|
{
|
|
{
|
|
@@ -1493,6 +1531,8 @@ iwl_dbgfs_send_echo_cmd_write(struct iwl_mvm *mvm, char *buf,
|
|
MVM_DEBUGFS_READ_WRITE_FILE_OPS(prph_reg, 64);
|
|
MVM_DEBUGFS_READ_WRITE_FILE_OPS(prph_reg, 64);
|
|
|
|
|
|
/* Device wide debugfs entries */
|
|
/* Device wide debugfs entries */
|
|
|
|
+MVM_DEBUGFS_READ_FILE_OPS(ctdp_budget);
|
|
|
|
+MVM_DEBUGFS_WRITE_FILE_OPS(stop_ctdp, 8);
|
|
MVM_DEBUGFS_WRITE_FILE_OPS(tx_flush, 16);
|
|
MVM_DEBUGFS_WRITE_FILE_OPS(tx_flush, 16);
|
|
MVM_DEBUGFS_WRITE_FILE_OPS(sta_drain, 8);
|
|
MVM_DEBUGFS_WRITE_FILE_OPS(sta_drain, 8);
|
|
MVM_DEBUGFS_WRITE_FILE_OPS(send_echo_cmd, 8);
|
|
MVM_DEBUGFS_WRITE_FILE_OPS(send_echo_cmd, 8);
|
|
@@ -1542,6 +1582,8 @@ int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir)
|
|
MVM_DEBUGFS_ADD_FILE(set_nic_temperature, mvm->debugfs_dir,
|
|
MVM_DEBUGFS_ADD_FILE(set_nic_temperature, mvm->debugfs_dir,
|
|
S_IWUSR | S_IRUSR);
|
|
S_IWUSR | S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(nic_temp, dbgfs_dir, S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(nic_temp, dbgfs_dir, S_IRUSR);
|
|
|
|
+ MVM_DEBUGFS_ADD_FILE(ctdp_budget, dbgfs_dir, S_IRUSR);
|
|
|
|
+ MVM_DEBUGFS_ADD_FILE(stop_ctdp, dbgfs_dir, S_IWUSR);
|
|
MVM_DEBUGFS_ADD_FILE(stations, dbgfs_dir, S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(stations, dbgfs_dir, S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(bt_notif, dbgfs_dir, S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(bt_notif, dbgfs_dir, S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(bt_cmd, dbgfs_dir, S_IRUSR);
|
|
MVM_DEBUGFS_ADD_FILE(bt_cmd, dbgfs_dir, S_IRUSR);
|