Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * This file is part of wlcore
  3 *
  4 * Copyright (C) 2013 Texas Instruments Inc.
  5 *
  6 * This program is free software; you can redistribute it and/or
  7 * modify it under the terms of the GNU General Public License
  8 * version 2 as published by the Free Software Foundation.
  9 *
 10 * This program is distributed in the hope that it will be useful, but
 11 * WITHOUT ANY WARRANTY; without even the implied warranty of
 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 13 * General Public License for more details.
 14 *
 15 * You should have received a copy of the GNU General Public License
 16 * along with this program; if not, write to the Free Software
 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 18 * 02110-1301 USA
 19 *
 20 */
 21
 
 
 
 22#include "wlcore.h"
 23#include "debug.h"
 24#include "ps.h"
 25#include "sysfs.h"
 26
 27static ssize_t wl1271_sysfs_show_bt_coex_state(struct device *dev,
 28					       struct device_attribute *attr,
 29					       char *buf)
 30{
 31	struct wl1271 *wl = dev_get_drvdata(dev);
 32	ssize_t len;
 33
 34	len = PAGE_SIZE;
 35
 36	mutex_lock(&wl->mutex);
 37	len = snprintf(buf, len, "%d\n\n0 - off\n1 - on\n",
 38		       wl->sg_enabled);
 39	mutex_unlock(&wl->mutex);
 40
 41	return len;
 42
 43}
 44
 45static ssize_t wl1271_sysfs_store_bt_coex_state(struct device *dev,
 46						struct device_attribute *attr,
 47						const char *buf, size_t count)
 48{
 49	struct wl1271 *wl = dev_get_drvdata(dev);
 50	unsigned long res;
 51	int ret;
 52
 53	ret = kstrtoul(buf, 10, &res);
 54	if (ret < 0) {
 55		wl1271_warning("incorrect value written to bt_coex_mode");
 56		return count;
 57	}
 58
 59	mutex_lock(&wl->mutex);
 60
 61	res = !!res;
 62
 63	if (res == wl->sg_enabled)
 64		goto out;
 65
 66	wl->sg_enabled = res;
 67
 68	if (unlikely(wl->state != WLCORE_STATE_ON))
 69		goto out;
 70
 71	ret = wl1271_ps_elp_wakeup(wl);
 72	if (ret < 0)
 73		goto out;
 74
 75	wl1271_acx_sg_enable(wl, wl->sg_enabled);
 76	wl1271_ps_elp_sleep(wl);
 
 77
 78 out:
 79	mutex_unlock(&wl->mutex);
 80	return count;
 81}
 82
 83static DEVICE_ATTR(bt_coex_state, S_IRUGO | S_IWUSR,
 84		   wl1271_sysfs_show_bt_coex_state,
 85		   wl1271_sysfs_store_bt_coex_state);
 86
 87static ssize_t wl1271_sysfs_show_hw_pg_ver(struct device *dev,
 88					   struct device_attribute *attr,
 89					   char *buf)
 90{
 91	struct wl1271 *wl = dev_get_drvdata(dev);
 92	ssize_t len;
 93
 94	len = PAGE_SIZE;
 95
 96	mutex_lock(&wl->mutex);
 97	if (wl->hw_pg_ver >= 0)
 98		len = snprintf(buf, len, "%d\n", wl->hw_pg_ver);
 99	else
100		len = snprintf(buf, len, "n/a\n");
101	mutex_unlock(&wl->mutex);
102
103	return len;
104}
105
106static DEVICE_ATTR(hw_pg_ver, S_IRUGO,
107		   wl1271_sysfs_show_hw_pg_ver, NULL);
108
109static ssize_t wl1271_sysfs_read_fwlog(struct file *filp, struct kobject *kobj,
110				       struct bin_attribute *bin_attr,
111				       char *buffer, loff_t pos, size_t count)
112{
113	struct device *dev = container_of(kobj, struct device, kobj);
114	struct wl1271 *wl = dev_get_drvdata(dev);
115	ssize_t len;
116	int ret;
117
118	ret = mutex_lock_interruptible(&wl->mutex);
119	if (ret < 0)
120		return -ERESTARTSYS;
121
122	/* Check if the fwlog is still valid */
123	if (wl->fwlog_size < 0) {
124		mutex_unlock(&wl->mutex);
125		return 0;
126	}
127
128	/* Seeking is not supported - old logs are not kept. Disregard pos. */
129	len = min_t(size_t, count, wl->fwlog_size);
130	wl->fwlog_size -= len;
131	memcpy(buffer, wl->fwlog, len);
132
133	/* Make room for new messages */
134	memmove(wl->fwlog, wl->fwlog + len, wl->fwlog_size);
135
136	mutex_unlock(&wl->mutex);
137
138	return len;
139}
140
141static struct bin_attribute fwlog_attr = {
142	.attr = {.name = "fwlog", .mode = S_IRUSR},
143	.read = wl1271_sysfs_read_fwlog,
144};
145
146int wlcore_sysfs_init(struct wl1271 *wl)
147{
148	int ret;
149
150	/* Create sysfs file to control bt coex state */
151	ret = device_create_file(wl->dev, &dev_attr_bt_coex_state);
152	if (ret < 0) {
153		wl1271_error("failed to create sysfs file bt_coex_state");
154		goto out;
155	}
156
157	/* Create sysfs file to get HW PG version */
158	ret = device_create_file(wl->dev, &dev_attr_hw_pg_ver);
159	if (ret < 0) {
160		wl1271_error("failed to create sysfs file hw_pg_ver");
161		goto out_bt_coex_state;
162	}
163
164	/* Create sysfs file for the FW log */
165	ret = device_create_bin_file(wl->dev, &fwlog_attr);
166	if (ret < 0) {
167		wl1271_error("failed to create sysfs file fwlog");
168		goto out_hw_pg_ver;
169	}
170
171	goto out;
172
173out_hw_pg_ver:
174	device_remove_file(wl->dev, &dev_attr_hw_pg_ver);
175
176out_bt_coex_state:
177	device_remove_file(wl->dev, &dev_attr_bt_coex_state);
178
179out:
180	return ret;
181}
182
183void wlcore_sysfs_free(struct wl1271 *wl)
184{
185	device_remove_bin_file(wl->dev, &fwlog_attr);
186
187	device_remove_file(wl->dev, &dev_attr_hw_pg_ver);
188
189	device_remove_file(wl->dev, &dev_attr_bt_coex_state);
190}
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * This file is part of wlcore
  4 *
  5 * Copyright (C) 2013 Texas Instruments Inc.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  6 */
  7
  8#include <linux/pm_runtime.h>
  9
 10#include "acx.h"
 11#include "wlcore.h"
 12#include "debug.h"
 
 13#include "sysfs.h"
 14
 15static ssize_t bt_coex_state_show(struct device *dev,
 16				  struct device_attribute *attr,
 17				  char *buf)
 18{
 19	struct wl1271 *wl = dev_get_drvdata(dev);
 20	ssize_t len;
 21
 
 
 22	mutex_lock(&wl->mutex);
 23	len = sysfs_emit(buf, "%d\n\n0 - off\n1 - on\n", wl->sg_enabled);
 
 24	mutex_unlock(&wl->mutex);
 25
 26	return len;
 27
 28}
 29
 30static ssize_t bt_coex_state_store(struct device *dev,
 31				   struct device_attribute *attr,
 32				   const char *buf, size_t count)
 33{
 34	struct wl1271 *wl = dev_get_drvdata(dev);
 35	unsigned long res;
 36	int ret;
 37
 38	ret = kstrtoul(buf, 10, &res);
 39	if (ret < 0) {
 40		wl1271_warning("incorrect value written to bt_coex_mode");
 41		return count;
 42	}
 43
 44	mutex_lock(&wl->mutex);
 45
 46	res = !!res;
 47
 48	if (res == wl->sg_enabled)
 49		goto out;
 50
 51	wl->sg_enabled = res;
 52
 53	if (unlikely(wl->state != WLCORE_STATE_ON))
 54		goto out;
 55
 56	ret = pm_runtime_resume_and_get(wl->dev);
 57	if (ret < 0)
 58		goto out;
 59
 60	wl1271_acx_sg_enable(wl, wl->sg_enabled);
 61	pm_runtime_mark_last_busy(wl->dev);
 62	pm_runtime_put_autosuspend(wl->dev);
 63
 64 out:
 65	mutex_unlock(&wl->mutex);
 66	return count;
 67}
 68
 69static DEVICE_ATTR_RW(bt_coex_state);
 70
 71static ssize_t hw_pg_ver_show(struct device *dev,
 72			      struct device_attribute *attr,
 73			      char *buf)
 
 
 74{
 75	struct wl1271 *wl = dev_get_drvdata(dev);
 76	ssize_t len;
 77
 
 
 78	mutex_lock(&wl->mutex);
 79	if (wl->hw_pg_ver >= 0)
 80		len = sysfs_emit(buf, "%d\n", wl->hw_pg_ver);
 81	else
 82		len = sysfs_emit(buf, "n/a\n");
 83	mutex_unlock(&wl->mutex);
 84
 85	return len;
 86}
 87
 88static DEVICE_ATTR_RO(hw_pg_ver);
 
 89
 90static ssize_t wl1271_sysfs_read_fwlog(struct file *filp, struct kobject *kobj,
 91				       struct bin_attribute *bin_attr,
 92				       char *buffer, loff_t pos, size_t count)
 93{
 94	struct device *dev = kobj_to_dev(kobj);
 95	struct wl1271 *wl = dev_get_drvdata(dev);
 96	ssize_t len;
 97	int ret;
 98
 99	ret = mutex_lock_interruptible(&wl->mutex);
100	if (ret < 0)
101		return -ERESTARTSYS;
102
103	/* Check if the fwlog is still valid */
104	if (wl->fwlog_size < 0) {
105		mutex_unlock(&wl->mutex);
106		return 0;
107	}
108
109	/* Seeking is not supported - old logs are not kept. Disregard pos. */
110	len = min_t(size_t, count, wl->fwlog_size);
111	wl->fwlog_size -= len;
112	memcpy(buffer, wl->fwlog, len);
113
114	/* Make room for new messages */
115	memmove(wl->fwlog, wl->fwlog + len, wl->fwlog_size);
116
117	mutex_unlock(&wl->mutex);
118
119	return len;
120}
121
122static const struct bin_attribute fwlog_attr = {
123	.attr = { .name = "fwlog", .mode = 0400 },
124	.read = wl1271_sysfs_read_fwlog,
125};
126
127int wlcore_sysfs_init(struct wl1271 *wl)
128{
129	int ret;
130
131	/* Create sysfs file to control bt coex state */
132	ret = device_create_file(wl->dev, &dev_attr_bt_coex_state);
133	if (ret < 0) {
134		wl1271_error("failed to create sysfs file bt_coex_state");
135		goto out;
136	}
137
138	/* Create sysfs file to get HW PG version */
139	ret = device_create_file(wl->dev, &dev_attr_hw_pg_ver);
140	if (ret < 0) {
141		wl1271_error("failed to create sysfs file hw_pg_ver");
142		goto out_bt_coex_state;
143	}
144
145	/* Create sysfs file for the FW log */
146	ret = device_create_bin_file(wl->dev, &fwlog_attr);
147	if (ret < 0) {
148		wl1271_error("failed to create sysfs file fwlog");
149		goto out_hw_pg_ver;
150	}
151
152	goto out;
153
154out_hw_pg_ver:
155	device_remove_file(wl->dev, &dev_attr_hw_pg_ver);
156
157out_bt_coex_state:
158	device_remove_file(wl->dev, &dev_attr_bt_coex_state);
159
160out:
161	return ret;
162}
163
164void wlcore_sysfs_free(struct wl1271 *wl)
165{
166	device_remove_bin_file(wl->dev, &fwlog_attr);
167
168	device_remove_file(wl->dev, &dev_attr_hw_pg_ver);
169
170	device_remove_file(wl->dev, &dev_attr_bt_coex_state);
171}