tile: nohz: warn if nohz_full uses hypervisor shared cores
[linux-2.6/btrfs-unstable.git] / drivers / misc / mei / debugfs.c
blobb125380ee8710162923bc246e0712bfca6d92690
1 /*
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2012-2013, Intel Corporation.
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.
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.
16 #include <linux/slab.h>
17 #include <linux/kernel.h>
18 #include <linux/device.h>
19 #include <linux/debugfs.h>
21 #include <linux/mei.h>
23 #include "mei_dev.h"
24 #include "client.h"
25 #include "hw.h"
27 static ssize_t mei_dbgfs_read_meclients(struct file *fp, char __user *ubuf,
28 size_t cnt, loff_t *ppos)
30 struct mei_device *dev = fp->private_data;
31 struct mei_me_client *me_cl, *n;
32 size_t bufsz = 1;
33 char *buf;
34 int i = 0;
35 int pos = 0;
36 int ret;
38 #define HDR \
39 " |id|fix| UUID |con|msg len|sb|refc|\n"
41 mutex_lock(&dev->device_lock);
43 list_for_each_entry(me_cl, &dev->me_clients, list)
44 bufsz++;
46 bufsz *= sizeof(HDR) + 1;
47 buf = kzalloc(bufsz, GFP_KERNEL);
48 if (!buf) {
49 mutex_unlock(&dev->device_lock);
50 return -ENOMEM;
53 pos += scnprintf(buf + pos, bufsz - pos, HDR);
55 /* if the driver is not enabled the list won't be consistent */
56 if (dev->dev_state != MEI_DEV_ENABLED)
57 goto out;
59 list_for_each_entry_safe(me_cl, n, &dev->me_clients, list) {
61 me_cl = mei_me_cl_get(me_cl);
62 if (me_cl) {
63 pos += scnprintf(buf + pos, bufsz - pos,
64 "%2d|%2d|%3d|%pUl|%3d|%7d|%2d|%4d|\n",
65 i++, me_cl->client_id,
66 me_cl->props.fixed_address,
67 &me_cl->props.protocol_name,
68 me_cl->props.max_number_of_connections,
69 me_cl->props.max_msg_length,
70 me_cl->props.single_recv_buf,
71 atomic_read(&me_cl->refcnt.refcount));
74 mei_me_cl_put(me_cl);
76 out:
77 mutex_unlock(&dev->device_lock);
78 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
79 kfree(buf);
80 return ret;
83 static const struct file_operations mei_dbgfs_fops_meclients = {
84 .open = simple_open,
85 .read = mei_dbgfs_read_meclients,
86 .llseek = generic_file_llseek,
89 static ssize_t mei_dbgfs_read_active(struct file *fp, char __user *ubuf,
90 size_t cnt, loff_t *ppos)
92 struct mei_device *dev = fp->private_data;
93 struct mei_cl *cl;
94 const size_t bufsz = 1024;
95 char *buf;
96 int i = 0;
97 int pos = 0;
98 int ret;
100 if (!dev)
101 return -ENODEV;
103 buf = kzalloc(bufsz, GFP_KERNEL);
104 if (!buf)
105 return -ENOMEM;
107 pos += scnprintf(buf + pos, bufsz - pos,
108 " |me|host|state|rd|wr|\n");
110 mutex_lock(&dev->device_lock);
112 /* if the driver is not enabled the list won't be consistent */
113 if (dev->dev_state != MEI_DEV_ENABLED)
114 goto out;
116 list_for_each_entry(cl, &dev->file_list, link) {
118 pos += scnprintf(buf + pos, bufsz - pos,
119 "%2d|%2d|%4d|%5d|%2d|%2d|\n",
120 i, cl->me_client_id, cl->host_client_id, cl->state,
121 cl->reading_state, cl->writing_state);
122 i++;
124 out:
125 mutex_unlock(&dev->device_lock);
126 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
127 kfree(buf);
128 return ret;
131 static const struct file_operations mei_dbgfs_fops_active = {
132 .open = simple_open,
133 .read = mei_dbgfs_read_active,
134 .llseek = generic_file_llseek,
137 static ssize_t mei_dbgfs_read_devstate(struct file *fp, char __user *ubuf,
138 size_t cnt, loff_t *ppos)
140 struct mei_device *dev = fp->private_data;
141 const size_t bufsz = 1024;
142 char *buf = kzalloc(bufsz, GFP_KERNEL);
143 int pos = 0;
144 int ret;
146 if (!buf)
147 return -ENOMEM;
149 pos += scnprintf(buf + pos, bufsz - pos, "dev: %s\n",
150 mei_dev_state_str(dev->dev_state));
151 pos += scnprintf(buf + pos, bufsz - pos, "hbm: %s\n",
152 mei_hbm_state_str(dev->hbm_state));
153 pos += scnprintf(buf + pos, bufsz - pos, "pg: %s, %s\n",
154 mei_pg_is_enabled(dev) ? "ENABLED" : "DISABLED",
155 mei_pg_state_str(mei_pg_state(dev)));
156 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
157 kfree(buf);
158 return ret;
160 static const struct file_operations mei_dbgfs_fops_devstate = {
161 .open = simple_open,
162 .read = mei_dbgfs_read_devstate,
163 .llseek = generic_file_llseek,
167 * mei_dbgfs_deregister - Remove the debugfs files and directories
169 * @dev: the mei device structure
171 void mei_dbgfs_deregister(struct mei_device *dev)
173 if (!dev->dbgfs_dir)
174 return;
175 debugfs_remove_recursive(dev->dbgfs_dir);
176 dev->dbgfs_dir = NULL;
180 * mei_dbgfs_register - Add the debugfs files
182 * @dev: the mei device structure
183 * @name: the mei device name
185 * Return: 0 on success, <0 on failure.
187 int mei_dbgfs_register(struct mei_device *dev, const char *name)
189 struct dentry *dir, *f;
191 dir = debugfs_create_dir(name, NULL);
192 if (!dir)
193 return -ENOMEM;
195 f = debugfs_create_file("meclients", S_IRUSR, dir,
196 dev, &mei_dbgfs_fops_meclients);
197 if (!f) {
198 dev_err(dev->dev, "meclients: registration failed\n");
199 goto err;
201 f = debugfs_create_file("active", S_IRUSR, dir,
202 dev, &mei_dbgfs_fops_active);
203 if (!f) {
204 dev_err(dev->dev, "meclients: registration failed\n");
205 goto err;
207 f = debugfs_create_file("devstate", S_IRUSR, dir,
208 dev, &mei_dbgfs_fops_devstate);
209 if (!f) {
210 dev_err(dev->dev, "devstate: registration failed\n");
211 goto err;
213 dev->dbgfs_dir = dir;
214 return 0;
215 err:
216 mei_dbgfs_deregister(dev);
217 return -ENODEV;