blob: c6c051b52f55faf1b5896164a4e5e3e251f86899 [file] [log] [blame]
Tomas Winkler30e53bb2013-04-05 22:10:34 +03001/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2012-2013, Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions 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 it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 */
16#include <linux/slab.h>
17#include <linux/kernel.h>
18#include <linux/device.h>
19#include <linux/debugfs.h>
Tomas Winkler30e53bb2013-04-05 22:10:34 +030020
21#include <linux/mei.h>
22
23#include "mei_dev.h"
Tomas Winkler79563db2015-01-11 00:07:16 +020024#include "client.h"
Tomas Winkler30e53bb2013-04-05 22:10:34 +030025#include "hw.h"
26
Tomas Winkler30e53bb2013-04-05 22:10:34 +030027static ssize_t mei_dbgfs_read_meclients(struct file *fp, char __user *ubuf,
28 size_t cnt, loff_t *ppos)
29{
30 struct mei_device *dev = fp->private_data;
Tomas Winklerb7d88512015-02-10 10:39:31 +020031 struct mei_me_client *me_cl;
Alexander Usyskinc4495202014-09-29 16:31:34 +030032 size_t bufsz = 1;
33 char *buf;
Tomas Winkler5ca2d382014-08-21 14:29:13 +030034 int i = 0;
Tomas Winkler30e53bb2013-04-05 22:10:34 +030035 int pos = 0;
36 int ret;
37
Tomas Winkler79563db2015-01-11 00:07:16 +020038#define HDR \
39" |id|fix| UUID |con|msg len|sb|refc|\n"
Tomas Winkler30e53bb2013-04-05 22:10:34 +030040
Tomas Winklerb7d88512015-02-10 10:39:31 +020041 down_read(&dev->me_clients_rwsem);
Alexander Usyskinc4495202014-09-29 16:31:34 +030042 list_for_each_entry(me_cl, &dev->me_clients, list)
43 bufsz++;
44
45 bufsz *= sizeof(HDR) + 1;
46 buf = kzalloc(bufsz, GFP_KERNEL);
47 if (!buf) {
Tomas Winklerb7d88512015-02-10 10:39:31 +020048 up_read(&dev->me_clients_rwsem);
Alexander Usyskinc4495202014-09-29 16:31:34 +030049 return -ENOMEM;
50 }
51
52 pos += scnprintf(buf + pos, bufsz - pos, HDR);
Alexander Usyskin269002542016-02-07 23:35:17 +020053#undef HDR
Alexander Usyskinc4495202014-09-29 16:31:34 +030054
Alexander Usyskin83ce0742014-01-08 22:31:46 +020055 /* if the driver is not enabled the list won't be consistent */
Tomas Winkler30e53bb2013-04-05 22:10:34 +030056 if (dev->dev_state != MEI_DEV_ENABLED)
57 goto out;
58
Tomas Winklerb7d88512015-02-10 10:39:31 +020059 list_for_each_entry(me_cl, &dev->me_clients, list) {
Tomas Winkler30e53bb2013-04-05 22:10:34 +030060
Tomas Winklerb7d88512015-02-10 10:39:31 +020061 if (mei_me_cl_get(me_cl)) {
Tomas Winkler79563db2015-01-11 00:07:16 +020062 pos += scnprintf(buf + pos, bufsz - pos,
63 "%2d|%2d|%3d|%pUl|%3d|%7d|%2d|%4d|\n",
64 i++, me_cl->client_id,
65 me_cl->props.fixed_address,
66 &me_cl->props.protocol_name,
67 me_cl->props.max_number_of_connections,
68 me_cl->props.max_msg_length,
69 me_cl->props.single_recv_buf,
70 atomic_read(&me_cl->refcnt.refcount));
Tomas Winkler79563db2015-01-11 00:07:16 +020071
Tomas Winklerb7d88512015-02-10 10:39:31 +020072 mei_me_cl_put(me_cl);
73 }
Tomas Winkler30e53bb2013-04-05 22:10:34 +030074 }
Tomas Winklerb7d88512015-02-10 10:39:31 +020075
Tomas Winkler30e53bb2013-04-05 22:10:34 +030076out:
Tomas Winklerb7d88512015-02-10 10:39:31 +020077 up_read(&dev->me_clients_rwsem);
Tomas Winkler30e53bb2013-04-05 22:10:34 +030078 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
79 kfree(buf);
80 return ret;
81}
82
83static const struct file_operations mei_dbgfs_fops_meclients = {
Wei Yongjuna42f82f2013-04-09 14:30:19 +080084 .open = simple_open,
Tomas Winkler30e53bb2013-04-05 22:10:34 +030085 .read = mei_dbgfs_read_meclients,
86 .llseek = generic_file_llseek,
87};
88
Tomas Winkler5baaf712014-01-14 23:21:41 +020089static ssize_t mei_dbgfs_read_active(struct file *fp, char __user *ubuf,
90 size_t cnt, loff_t *ppos)
91{
92 struct mei_device *dev = fp->private_data;
93 struct mei_cl *cl;
Alexander Usyskin269002542016-02-07 23:35:17 +020094 size_t bufsz = 1;
Tomas Winkler5baaf712014-01-14 23:21:41 +020095 char *buf;
96 int i = 0;
97 int pos = 0;
98 int ret;
99
Alexander Usyskin269002542016-02-07 23:35:17 +0200100#define HDR " |me|host|state|rd|wr|\n"
101
Tomas Winkler5baaf712014-01-14 23:21:41 +0200102 if (!dev)
103 return -ENODEV;
104
Tomas Winkler5baaf712014-01-14 23:21:41 +0200105 mutex_lock(&dev->device_lock);
106
Alexander Usyskin269002542016-02-07 23:35:17 +0200107 /*
108 * if the driver is not enabled the list won't be consistent,
109 * we output empty table
110 */
111 if (dev->dev_state == MEI_DEV_ENABLED)
112 list_for_each_entry(cl, &dev->file_list, link)
113 bufsz++;
114
115 bufsz *= sizeof(HDR) + 1;
116
117 buf = kzalloc(bufsz, GFP_KERNEL);
118 if (!buf) {
119 mutex_unlock(&dev->device_lock);
120 return -ENOMEM;
121 }
122
123 pos += scnprintf(buf + pos, bufsz - pos, HDR);
124#undef HDR
125
Alexander Usyskin0a01e972014-09-29 16:31:47 +0300126 /* if the driver is not enabled the list won't be consistent */
Tomas Winkler5baaf712014-01-14 23:21:41 +0200127 if (dev->dev_state != MEI_DEV_ENABLED)
128 goto out;
129
130 list_for_each_entry(cl, &dev->file_list, link) {
131
132 pos += scnprintf(buf + pos, bufsz - pos,
Alexander Usyskin269002542016-02-07 23:35:17 +0200133 "%3d|%2d|%4d|%5d|%2d|%2d|\n",
Alexander Usyskind49ed642015-05-04 09:43:54 +0300134 i, mei_cl_me_id(cl), cl->host_client_id, cl->state,
Tomas Winklera9bed612015-02-10 10:39:46 +0200135 !list_empty(&cl->rd_completed), cl->writing_state);
Tomas Winkler5baaf712014-01-14 23:21:41 +0200136 i++;
137 }
138out:
139 mutex_unlock(&dev->device_lock);
140 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
141 kfree(buf);
142 return ret;
143}
144
145static const struct file_operations mei_dbgfs_fops_active = {
146 .open = simple_open,
147 .read = mei_dbgfs_read_active,
148 .llseek = generic_file_llseek,
149};
150
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300151static ssize_t mei_dbgfs_read_devstate(struct file *fp, char __user *ubuf,
152 size_t cnt, loff_t *ppos)
153{
154 struct mei_device *dev = fp->private_data;
155 const size_t bufsz = 1024;
156 char *buf = kzalloc(bufsz, GFP_KERNEL);
157 int pos = 0;
158 int ret;
159
160 if (!buf)
161 return -ENOMEM;
162
Alexander Usyskin1beeb4b2014-09-29 16:31:33 +0300163 pos += scnprintf(buf + pos, bufsz - pos, "dev: %s\n",
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300164 mei_dev_state_str(dev->dev_state));
Alexander Usyskin1beeb4b2014-09-29 16:31:33 +0300165 pos += scnprintf(buf + pos, bufsz - pos, "hbm: %s\n",
166 mei_hbm_state_str(dev->hbm_state));
Tomas Winkler5b20a022015-05-21 13:35:48 +0300167
Alexander Usyskin439a74b2016-02-07 23:35:18 +0200168 if (dev->hbm_state >= MEI_HBM_ENUM_CLIENTS &&
169 dev->hbm_state <= MEI_HBM_STARTED) {
Tomas Winkler5b20a022015-05-21 13:35:48 +0300170 pos += scnprintf(buf + pos, bufsz - pos, "hbm features:\n");
171 pos += scnprintf(buf + pos, bufsz - pos, "\tPG: %01d\n",
172 dev->hbm_f_pg_supported);
Tomas Winkler70ef8352015-07-23 21:37:12 +0300173 pos += scnprintf(buf + pos, bufsz - pos, "\tDC: %01d\n",
174 dev->hbm_f_dc_supported);
Alexander Usyskin27f476e2016-02-07 23:35:42 +0200175 pos += scnprintf(buf + pos, bufsz - pos, "\tIE: %01d\n",
176 dev->hbm_f_ie_supported);
Alexander Usyskin189013572015-07-23 21:37:13 +0300177 pos += scnprintf(buf + pos, bufsz - pos, "\tDOT: %01d\n",
178 dev->hbm_f_dot_supported);
Tomas Winkler4d998772015-07-26 09:54:17 +0300179 pos += scnprintf(buf + pos, bufsz - pos, "\tEV: %01d\n",
180 dev->hbm_f_ev_supported);
Alexander Usyskinf4e06242016-02-07 23:35:38 +0200181 pos += scnprintf(buf + pos, bufsz - pos, "\tFA: %01d\n",
182 dev->hbm_f_fa_supported);
Tomas Winkler5b20a022015-05-21 13:35:48 +0300183 }
184
Alexander Usyskin1beeb4b2014-09-29 16:31:33 +0300185 pos += scnprintf(buf + pos, bufsz - pos, "pg: %s, %s\n",
186 mei_pg_is_enabled(dev) ? "ENABLED" : "DISABLED",
187 mei_pg_state_str(mei_pg_state(dev)));
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300188 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
189 kfree(buf);
190 return ret;
191}
192static const struct file_operations mei_dbgfs_fops_devstate = {
Wei Yongjuna42f82f2013-04-09 14:30:19 +0800193 .open = simple_open,
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300194 .read = mei_dbgfs_read_devstate,
195 .llseek = generic_file_llseek,
196};
197
Alexander Usyskinf4e06242016-02-07 23:35:38 +0200198static ssize_t mei_dbgfs_write_allow_fa(struct file *file,
199 const char __user *user_buf,
200 size_t count, loff_t *ppos)
201{
202 struct mei_device *dev;
203 int ret;
204
205 dev = container_of(file->private_data,
206 struct mei_device, allow_fixed_address);
207
208 ret = debugfs_write_file_bool(file, user_buf, count, ppos);
209 if (ret < 0)
210 return ret;
211 dev->override_fixed_address = true;
212 return ret;
213}
214
215static const struct file_operations mei_dbgfs_fops_allow_fa = {
216 .open = simple_open,
217 .read = debugfs_read_file_bool,
218 .write = mei_dbgfs_write_allow_fa,
219 .llseek = generic_file_llseek,
220};
221
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300222/**
223 * mei_dbgfs_deregister - Remove the debugfs files and directories
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300224 *
225 * @dev: the mei device structure
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300226 */
227void mei_dbgfs_deregister(struct mei_device *dev)
228{
229 if (!dev->dbgfs_dir)
230 return;
231 debugfs_remove_recursive(dev->dbgfs_dir);
232 dev->dbgfs_dir = NULL;
233}
234
235/**
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300236 * mei_dbgfs_register - Add the debugfs files
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300237 *
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300238 * @dev: the mei device structure
239 * @name: the mei device name
Alexander Usyskince231392014-09-29 16:31:50 +0300240 *
241 * Return: 0 on success, <0 on failure.
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300242 */
243int mei_dbgfs_register(struct mei_device *dev, const char *name)
244{
245 struct dentry *dir, *f;
Tomas Winkler92db1552014-09-29 16:31:37 +0300246
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300247 dir = debugfs_create_dir(name, NULL);
248 if (!dir)
249 return -ENOMEM;
250
Tomas Winkler5964db02015-08-24 15:27:37 +0300251 dev->dbgfs_dir = dir;
252
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300253 f = debugfs_create_file("meclients", S_IRUSR, dir,
254 dev, &mei_dbgfs_fops_meclients);
255 if (!f) {
Tomas Winkler2bf94cab2014-09-29 16:31:42 +0300256 dev_err(dev->dev, "meclients: registration failed\n");
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300257 goto err;
258 }
Tomas Winkler5baaf712014-01-14 23:21:41 +0200259 f = debugfs_create_file("active", S_IRUSR, dir,
260 dev, &mei_dbgfs_fops_active);
261 if (!f) {
Alexander Kuleshov2be70102015-10-26 01:13:49 +0200262 dev_err(dev->dev, "active: registration failed\n");
Tomas Winkler5baaf712014-01-14 23:21:41 +0200263 goto err;
264 }
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300265 f = debugfs_create_file("devstate", S_IRUSR, dir,
266 dev, &mei_dbgfs_fops_devstate);
267 if (!f) {
Tomas Winkler2bf94cab2014-09-29 16:31:42 +0300268 dev_err(dev->dev, "devstate: registration failed\n");
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300269 goto err;
270 }
Alexander Usyskinf4e06242016-02-07 23:35:38 +0200271 f = debugfs_create_file("allow_fixed_address", S_IRUSR | S_IWUSR, dir,
272 &dev->allow_fixed_address,
273 &mei_dbgfs_fops_allow_fa);
Alexander Usyskineeabfcf2015-05-04 09:43:57 +0300274 if (!f) {
275 dev_err(dev->dev, "allow_fixed_address: registration failed\n");
276 goto err;
277 }
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300278 return 0;
279err:
280 mei_dbgfs_deregister(dev);
281 return -ENODEV;
282}
283