|
@@ -1,7 +1,7 @@
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
/*
|
|
|
* Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*/
|
|
|
|
|
|
#include <linux/delay.h>
|
|
@@ -3419,6 +3419,21 @@ static ssize_t hw_trace_override_store(struct device *dev,
|
|
|
return count;
|
|
|
}
|
|
|
|
|
|
+static ssize_t charger_mode_store(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ const char *buf, size_t count)
|
|
|
+{
|
|
|
+ struct cnss_plat_data *plat_priv = dev_get_drvdata(dev);
|
|
|
+ int tmp = 0;
|
|
|
+
|
|
|
+ if (sscanf(buf, "%du", &tmp) != 1)
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ plat_priv->charger_mode = tmp;
|
|
|
+ cnss_pr_dbg("Received Charger Mode: %d\n", tmp);
|
|
|
+ return count;
|
|
|
+}
|
|
|
+
|
|
|
static DEVICE_ATTR_WO(fs_ready);
|
|
|
static DEVICE_ATTR_WO(shutdown);
|
|
|
static DEVICE_ATTR_WO(recovery);
|
|
@@ -3427,6 +3442,7 @@ static DEVICE_ATTR_WO(qdss_trace_start);
|
|
|
static DEVICE_ATTR_WO(qdss_trace_stop);
|
|
|
static DEVICE_ATTR_WO(qdss_conf_download);
|
|
|
static DEVICE_ATTR_WO(hw_trace_override);
|
|
|
+static DEVICE_ATTR_WO(charger_mode);
|
|
|
|
|
|
static struct attribute *cnss_attrs[] = {
|
|
|
&dev_attr_fs_ready.attr,
|
|
@@ -3437,6 +3453,7 @@ static struct attribute *cnss_attrs[] = {
|
|
|
&dev_attr_qdss_trace_stop.attr,
|
|
|
&dev_attr_qdss_conf_download.attr,
|
|
|
&dev_attr_hw_trace_override.attr,
|
|
|
+ &dev_attr_charger_mode.attr,
|
|
|
NULL,
|
|
|
};
|
|
|
|