Loading...
1/*
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>
20#include <linux/pci.h>
21
22#include <linux/mei.h>
23
24#include "mei_dev.h"
25#include "hw.h"
26
27static 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;
31 struct mei_me_client *cl;
32 const size_t bufsz = 1024;
33 char *buf = kzalloc(bufsz, GFP_KERNEL);
34 int i;
35 int pos = 0;
36 int ret;
37
38 if (!buf)
39 return -ENOMEM;
40
41 pos += scnprintf(buf + pos, bufsz - pos,
42 " |id|addr| UUID |con|msg len|\n");
43
44 mutex_lock(&dev->device_lock);
45
46 /* if the driver is not enabled the list won't be consistent */
47 if (dev->dev_state != MEI_DEV_ENABLED)
48 goto out;
49
50 for (i = 0; i < dev->me_clients_num; i++) {
51 cl = &dev->me_clients[i];
52
53 /* skip me clients that cannot be connected */
54 if (cl->props.max_number_of_connections == 0)
55 continue;
56
57 pos += scnprintf(buf + pos, bufsz - pos,
58 "%2d|%2d|%4d|%pUl|%3d|%7d|\n",
59 i, cl->client_id,
60 cl->props.fixed_address,
61 &cl->props.protocol_name,
62 cl->props.max_number_of_connections,
63 cl->props.max_msg_length);
64 }
65out:
66 mutex_unlock(&dev->device_lock);
67 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
68 kfree(buf);
69 return ret;
70}
71
72static const struct file_operations mei_dbgfs_fops_meclients = {
73 .open = simple_open,
74 .read = mei_dbgfs_read_meclients,
75 .llseek = generic_file_llseek,
76};
77
78static ssize_t mei_dbgfs_read_active(struct file *fp, char __user *ubuf,
79 size_t cnt, loff_t *ppos)
80{
81 struct mei_device *dev = fp->private_data;
82 struct mei_cl *cl;
83 const size_t bufsz = 1024;
84 char *buf;
85 int i = 0;
86 int pos = 0;
87 int ret;
88
89 if (!dev)
90 return -ENODEV;
91
92 buf = kzalloc(bufsz, GFP_KERNEL);
93 if (!buf)
94 return -ENOMEM;
95
96 pos += scnprintf(buf + pos, bufsz - pos,
97 " |me|host|state|rd|wr|\n");
98
99 mutex_lock(&dev->device_lock);
100
101 /* if the driver is not enabled the list won't b consitent */
102 if (dev->dev_state != MEI_DEV_ENABLED)
103 goto out;
104
105 list_for_each_entry(cl, &dev->file_list, link) {
106
107 pos += scnprintf(buf + pos, bufsz - pos,
108 "%2d|%2d|%4d|%5d|%2d|%2d|\n",
109 i, cl->me_client_id, cl->host_client_id, cl->state,
110 cl->reading_state, cl->writing_state);
111 i++;
112 }
113out:
114 mutex_unlock(&dev->device_lock);
115 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
116 kfree(buf);
117 return ret;
118}
119
120static const struct file_operations mei_dbgfs_fops_active = {
121 .open = simple_open,
122 .read = mei_dbgfs_read_active,
123 .llseek = generic_file_llseek,
124};
125
126static ssize_t mei_dbgfs_read_devstate(struct file *fp, char __user *ubuf,
127 size_t cnt, loff_t *ppos)
128{
129 struct mei_device *dev = fp->private_data;
130 const size_t bufsz = 1024;
131 char *buf = kzalloc(bufsz, GFP_KERNEL);
132 int pos = 0;
133 int ret;
134
135 if (!buf)
136 return -ENOMEM;
137
138 pos += scnprintf(buf + pos, bufsz - pos, "%s\n",
139 mei_dev_state_str(dev->dev_state));
140 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
141 kfree(buf);
142 return ret;
143}
144static const struct file_operations mei_dbgfs_fops_devstate = {
145 .open = simple_open,
146 .read = mei_dbgfs_read_devstate,
147 .llseek = generic_file_llseek,
148};
149
150/**
151 * mei_dbgfs_deregister - Remove the debugfs files and directories
152 * @mei - pointer to mei device private data
153 */
154void mei_dbgfs_deregister(struct mei_device *dev)
155{
156 if (!dev->dbgfs_dir)
157 return;
158 debugfs_remove_recursive(dev->dbgfs_dir);
159 dev->dbgfs_dir = NULL;
160}
161
162/**
163 * Add the debugfs files
164 *
165 */
166int mei_dbgfs_register(struct mei_device *dev, const char *name)
167{
168 struct dentry *dir, *f;
169 dir = debugfs_create_dir(name, NULL);
170 if (!dir)
171 return -ENOMEM;
172
173 f = debugfs_create_file("meclients", S_IRUSR, dir,
174 dev, &mei_dbgfs_fops_meclients);
175 if (!f) {
176 dev_err(&dev->pdev->dev, "meclients: registration failed\n");
177 goto err;
178 }
179 f = debugfs_create_file("active", S_IRUSR, dir,
180 dev, &mei_dbgfs_fops_active);
181 if (!f) {
182 dev_err(&dev->pdev->dev, "meclients: registration failed\n");
183 goto err;
184 }
185 f = debugfs_create_file("devstate", S_IRUSR, dir,
186 dev, &mei_dbgfs_fops_devstate);
187 if (!f) {
188 dev_err(&dev->pdev->dev, "devstate: registration failed\n");
189 goto err;
190 }
191 dev->dbgfs_dir = dir;
192 return 0;
193err:
194 mei_dbgfs_deregister(dev);
195 return -ENODEV;
196}
197
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2012-2016, Intel Corporation. All rights reserved
4 * Intel Management Engine Interface (Intel MEI) Linux driver
5 */
6
7#include <linux/slab.h>
8#include <linux/kernel.h>
9#include <linux/device.h>
10#include <linux/debugfs.h>
11#include <linux/seq_file.h>
12
13#include <linux/mei.h>
14
15#include "mei_dev.h"
16#include "client.h"
17#include "hw.h"
18
19static int mei_dbgfs_meclients_show(struct seq_file *m, void *unused)
20{
21 struct mei_device *dev = m->private;
22 struct mei_me_client *me_cl;
23 int i = 0;
24
25 if (!dev)
26 return -ENODEV;
27
28 down_read(&dev->me_clients_rwsem);
29
30 seq_puts(m, " |id|fix| UUID |con|msg len|sb|refc|\n");
31
32 /* if the driver is not enabled the list won't be consistent */
33 if (dev->dev_state != MEI_DEV_ENABLED)
34 goto out;
35
36 list_for_each_entry(me_cl, &dev->me_clients, list) {
37 if (!mei_me_cl_get(me_cl))
38 continue;
39
40 seq_printf(m, "%2d|%2d|%3d|%pUl|%3d|%7d|%2d|%4d|\n",
41 i++, me_cl->client_id,
42 me_cl->props.fixed_address,
43 &me_cl->props.protocol_name,
44 me_cl->props.max_number_of_connections,
45 me_cl->props.max_msg_length,
46 me_cl->props.single_recv_buf,
47 kref_read(&me_cl->refcnt));
48 mei_me_cl_put(me_cl);
49 }
50
51out:
52 up_read(&dev->me_clients_rwsem);
53 return 0;
54}
55DEFINE_SHOW_ATTRIBUTE(mei_dbgfs_meclients);
56
57static int mei_dbgfs_active_show(struct seq_file *m, void *unused)
58{
59 struct mei_device *dev = m->private;
60 struct mei_cl *cl;
61 int i = 0;
62
63 if (!dev)
64 return -ENODEV;
65
66 mutex_lock(&dev->device_lock);
67
68 seq_puts(m, " |me|host|state|rd|wr|wrq\n");
69
70 /* if the driver is not enabled the list won't be consistent */
71 if (dev->dev_state != MEI_DEV_ENABLED)
72 goto out;
73
74 list_for_each_entry(cl, &dev->file_list, link) {
75
76 seq_printf(m, "%3d|%2d|%4d|%5d|%2d|%2d|%3u\n",
77 i, mei_cl_me_id(cl), cl->host_client_id, cl->state,
78 !list_empty(&cl->rd_completed), cl->writing_state,
79 cl->tx_cb_queued);
80 i++;
81 }
82out:
83 mutex_unlock(&dev->device_lock);
84 return 0;
85}
86DEFINE_SHOW_ATTRIBUTE(mei_dbgfs_active);
87
88static int mei_dbgfs_devstate_show(struct seq_file *m, void *unused)
89{
90 struct mei_device *dev = m->private;
91
92 seq_printf(m, "dev: %s\n", mei_dev_state_str(dev->dev_state));
93 seq_printf(m, "hbm: %s\n", mei_hbm_state_str(dev->hbm_state));
94
95 if (dev->hbm_state >= MEI_HBM_ENUM_CLIENTS &&
96 dev->hbm_state <= MEI_HBM_STARTED) {
97 seq_puts(m, "hbm features:\n");
98 seq_printf(m, "\tPG: %01d\n", dev->hbm_f_pg_supported);
99 seq_printf(m, "\tDC: %01d\n", dev->hbm_f_dc_supported);
100 seq_printf(m, "\tIE: %01d\n", dev->hbm_f_ie_supported);
101 seq_printf(m, "\tDOT: %01d\n", dev->hbm_f_dot_supported);
102 seq_printf(m, "\tEV: %01d\n", dev->hbm_f_ev_supported);
103 seq_printf(m, "\tFA: %01d\n", dev->hbm_f_fa_supported);
104 seq_printf(m, "\tOS: %01d\n", dev->hbm_f_os_supported);
105 seq_printf(m, "\tDR: %01d\n", dev->hbm_f_dr_supported);
106 }
107
108 seq_printf(m, "pg: %s, %s\n",
109 mei_pg_is_enabled(dev) ? "ENABLED" : "DISABLED",
110 mei_pg_state_str(mei_pg_state(dev)));
111 return 0;
112}
113DEFINE_SHOW_ATTRIBUTE(mei_dbgfs_devstate);
114
115static ssize_t mei_dbgfs_write_allow_fa(struct file *file,
116 const char __user *user_buf,
117 size_t count, loff_t *ppos)
118{
119 struct mei_device *dev;
120 int ret;
121
122 dev = container_of(file->private_data,
123 struct mei_device, allow_fixed_address);
124
125 ret = debugfs_write_file_bool(file, user_buf, count, ppos);
126 if (ret < 0)
127 return ret;
128 dev->override_fixed_address = true;
129 return ret;
130}
131
132static const struct file_operations mei_dbgfs_allow_fa_fops = {
133 .open = simple_open,
134 .read = debugfs_read_file_bool,
135 .write = mei_dbgfs_write_allow_fa,
136 .llseek = generic_file_llseek,
137};
138
139/**
140 * mei_dbgfs_deregister - Remove the debugfs files and directories
141 *
142 * @dev: the mei device structure
143 */
144void mei_dbgfs_deregister(struct mei_device *dev)
145{
146 if (!dev->dbgfs_dir)
147 return;
148 debugfs_remove_recursive(dev->dbgfs_dir);
149 dev->dbgfs_dir = NULL;
150}
151
152/**
153 * mei_dbgfs_register - Add the debugfs files
154 *
155 * @dev: the mei device structure
156 * @name: the mei device name
157 */
158void mei_dbgfs_register(struct mei_device *dev, const char *name)
159{
160 struct dentry *dir;
161
162 dir = debugfs_create_dir(name, NULL);
163 dev->dbgfs_dir = dir;
164
165 debugfs_create_file("meclients", S_IRUSR, dir, dev,
166 &mei_dbgfs_meclients_fops);
167 debugfs_create_file("active", S_IRUSR, dir, dev,
168 &mei_dbgfs_active_fops);
169 debugfs_create_file("devstate", S_IRUSR, dir, dev,
170 &mei_dbgfs_devstate_fops);
171 debugfs_create_file("allow_fixed_address", S_IRUSR | S_IWUSR, dir,
172 &dev->allow_fixed_address,
173 &mei_dbgfs_allow_fa_fops);
174}