xref: /openbmc/linux/drivers/platform/chrome/cros_ec_debugfs.c (revision 7e24a55b2122746c2eef192296fc84624354f895)
1cc2db075SEnric Balletbo i Serra // SPDX-License-Identifier: GPL-2.0+
2cc2db075SEnric Balletbo i Serra // Debug logs for the ChromeOS EC
3cc2db075SEnric Balletbo i Serra //
4cc2db075SEnric Balletbo i Serra // Copyright (C) 2015 Google, Inc.
5e8626459SEric Caruso 
6e8626459SEric Caruso #include <linux/circ_buf.h>
7e8626459SEric Caruso #include <linux/debugfs.h>
8e8626459SEric Caruso #include <linux/delay.h>
9e8626459SEric Caruso #include <linux/fs.h>
106fce0a2cSEnric Balletbo i Serra #include <linux/module.h>
11e8626459SEric Caruso #include <linux/mutex.h>
12840d9f13SEnric Balletbo i Serra #include <linux/platform_data/cros_ec_commands.h>
13840d9f13SEnric Balletbo i Serra #include <linux/platform_data/cros_ec_proto.h>
146fce0a2cSEnric Balletbo i Serra #include <linux/platform_device.h>
15e8626459SEric Caruso #include <linux/poll.h>
16e8626459SEric Caruso #include <linux/sched.h>
17e8626459SEric Caruso #include <linux/slab.h>
18e8626459SEric Caruso #include <linux/wait.h>
19e8626459SEric Caruso 
206fce0a2cSEnric Balletbo i Serra #define DRV_NAME "cros-ec-debugfs"
216fce0a2cSEnric Balletbo i Serra 
22e8626459SEric Caruso #define LOG_SHIFT		14
23e8626459SEric Caruso #define LOG_SIZE		(1 << LOG_SHIFT)
24e8626459SEric Caruso #define LOG_POLL_SEC		10
25e8626459SEric Caruso 
26e8626459SEric Caruso #define CIRC_ADD(idx, size, value)	(((idx) + (value)) & ((size) - 1))
27e8626459SEric Caruso 
280e8eb5e8STzung-Bi Shih /* waitqueue for log readers */
290e8eb5e8STzung-Bi Shih static DECLARE_WAIT_QUEUE_HEAD(cros_ec_debugfs_log_wq);
300e8eb5e8STzung-Bi Shih 
31cb78a163SEnric Balletbo i Serra /**
32cb78a163SEnric Balletbo i Serra  * struct cros_ec_debugfs - EC debugging information.
33e8626459SEric Caruso  *
34e8626459SEric Caruso  * @ec: EC device this debugfs information belongs to
35e8626459SEric Caruso  * @dir: dentry for debugfs files
36e8626459SEric Caruso  * @log_buffer: circular buffer for console log information
37e8626459SEric Caruso  * @read_msg: preallocated EC command and buffer to read console log
38e8626459SEric Caruso  * @log_mutex: mutex to protect circular buffer
39e8626459SEric Caruso  * @log_poll_work: recurring task to poll EC for new console log data
406e494106SNicolas Boichat  * @panicinfo_blob: panicinfo debugfs blob
4116d73129STzung-Bi Shih  * @notifier_panic: notifier_block to let kernel to flush buffered log
4216d73129STzung-Bi Shih  *                  when EC panic
43e8626459SEric Caruso  */
44e8626459SEric Caruso struct cros_ec_debugfs {
45e8626459SEric Caruso 	struct cros_ec_dev *ec;
46e8626459SEric Caruso 	struct dentry *dir;
476e494106SNicolas Boichat 	/* EC log */
48e8626459SEric Caruso 	struct circ_buf log_buffer;
49e8626459SEric Caruso 	struct cros_ec_command *read_msg;
50e8626459SEric Caruso 	struct mutex log_mutex;
51e8626459SEric Caruso 	struct delayed_work log_poll_work;
526e494106SNicolas Boichat 	/* EC panicinfo */
536e494106SNicolas Boichat 	struct debugfs_blob_wrapper panicinfo_blob;
54d90fa2c6SRob Barnes 	struct notifier_block notifier_panic;
55e8626459SEric Caruso };
56e8626459SEric Caruso 
57e8626459SEric Caruso /*
58e8626459SEric Caruso  * We need to make sure that the EC log buffer on the UART is large enough,
59e8626459SEric Caruso  * so that it is unlikely enough to overlow within LOG_POLL_SEC.
60e8626459SEric Caruso  */
cros_ec_console_log_work(struct work_struct * __work)61e8626459SEric Caruso static void cros_ec_console_log_work(struct work_struct *__work)
62e8626459SEric Caruso {
63e8626459SEric Caruso 	struct cros_ec_debugfs *debug_info =
64e8626459SEric Caruso 		container_of(to_delayed_work(__work),
65e8626459SEric Caruso 			     struct cros_ec_debugfs,
66e8626459SEric Caruso 			     log_poll_work);
67e8626459SEric Caruso 	struct cros_ec_dev *ec = debug_info->ec;
68e8626459SEric Caruso 	struct circ_buf *cb = &debug_info->log_buffer;
69e8626459SEric Caruso 	struct cros_ec_command snapshot_msg = {
70e8626459SEric Caruso 		.command = EC_CMD_CONSOLE_SNAPSHOT + ec->cmd_offset,
71e8626459SEric Caruso 	};
72e8626459SEric Caruso 
73e8626459SEric Caruso 	struct ec_params_console_read_v1 *read_params =
74e8626459SEric Caruso 		(struct ec_params_console_read_v1 *)debug_info->read_msg->data;
75e8626459SEric Caruso 	uint8_t *ec_buffer = (uint8_t *)debug_info->read_msg->data;
76e8626459SEric Caruso 	int idx;
77e8626459SEric Caruso 	int buf_space;
78e8626459SEric Caruso 	int ret;
79e8626459SEric Caruso 
8081f6ec23SEnric Balletbo i Serra 	ret = cros_ec_cmd_xfer_status(ec->ec_dev, &snapshot_msg);
8181f6ec23SEnric Balletbo i Serra 	if (ret < 0)
82e8626459SEric Caruso 		goto resched;
83e8626459SEric Caruso 
84e8626459SEric Caruso 	/* Loop until we have read everything, or there's an error. */
85e8626459SEric Caruso 	mutex_lock(&debug_info->log_mutex);
86e8626459SEric Caruso 	buf_space = CIRC_SPACE(cb->head, cb->tail, LOG_SIZE);
87e8626459SEric Caruso 
88e8626459SEric Caruso 	while (1) {
89e8626459SEric Caruso 		if (!buf_space) {
90e8626459SEric Caruso 			dev_info_once(ec->dev,
91e8626459SEric Caruso 				      "Some logs may have been dropped...\n");
92e8626459SEric Caruso 			break;
93e8626459SEric Caruso 		}
94e8626459SEric Caruso 
95e8626459SEric Caruso 		memset(read_params, '\0', sizeof(*read_params));
96e8626459SEric Caruso 		read_params->subcmd = CONSOLE_READ_RECENT;
9781f6ec23SEnric Balletbo i Serra 		ret = cros_ec_cmd_xfer_status(ec->ec_dev,
9881f6ec23SEnric Balletbo i Serra 					      debug_info->read_msg);
9981f6ec23SEnric Balletbo i Serra 		if (ret < 0)
100e8626459SEric Caruso 			break;
101e8626459SEric Caruso 
102e8626459SEric Caruso 		/* If the buffer is empty, we're done here. */
103e8626459SEric Caruso 		if (ret == 0 || ec_buffer[0] == '\0')
104e8626459SEric Caruso 			break;
105e8626459SEric Caruso 
106e8626459SEric Caruso 		idx = 0;
107e8626459SEric Caruso 		while (idx < ret && ec_buffer[idx] != '\0' && buf_space > 0) {
108e8626459SEric Caruso 			cb->buf[cb->head] = ec_buffer[idx];
109e8626459SEric Caruso 			cb->head = CIRC_ADD(cb->head, LOG_SIZE, 1);
110e8626459SEric Caruso 			idx++;
111e8626459SEric Caruso 			buf_space--;
112e8626459SEric Caruso 		}
113e8626459SEric Caruso 
1140e8eb5e8STzung-Bi Shih 		wake_up(&cros_ec_debugfs_log_wq);
115e8626459SEric Caruso 	}
116e8626459SEric Caruso 
117e8626459SEric Caruso 	mutex_unlock(&debug_info->log_mutex);
118e8626459SEric Caruso 
119e8626459SEric Caruso resched:
120e8626459SEric Caruso 	schedule_delayed_work(&debug_info->log_poll_work,
121e8626459SEric Caruso 			      msecs_to_jiffies(LOG_POLL_SEC * 1000));
122e8626459SEric Caruso }
123e8626459SEric Caruso 
cros_ec_console_log_open(struct inode * inode,struct file * file)124e8626459SEric Caruso static int cros_ec_console_log_open(struct inode *inode, struct file *file)
125e8626459SEric Caruso {
126e8626459SEric Caruso 	file->private_data = inode->i_private;
127e8626459SEric Caruso 
128c5bf68feSKirill Smelkov 	return stream_open(inode, file);
129e8626459SEric Caruso }
130e8626459SEric Caruso 
cros_ec_console_log_read(struct file * file,char __user * buf,size_t count,loff_t * ppos)131e8626459SEric Caruso static ssize_t cros_ec_console_log_read(struct file *file, char __user *buf,
132e8626459SEric Caruso 					size_t count, loff_t *ppos)
133e8626459SEric Caruso {
134e8626459SEric Caruso 	struct cros_ec_debugfs *debug_info = file->private_data;
135e8626459SEric Caruso 	struct circ_buf *cb = &debug_info->log_buffer;
136e8626459SEric Caruso 	ssize_t ret;
137e8626459SEric Caruso 
138e8626459SEric Caruso 	mutex_lock(&debug_info->log_mutex);
139e8626459SEric Caruso 
140e8626459SEric Caruso 	while (!CIRC_CNT(cb->head, cb->tail, LOG_SIZE)) {
141e8626459SEric Caruso 		if (file->f_flags & O_NONBLOCK) {
142e8626459SEric Caruso 			ret = -EAGAIN;
143e8626459SEric Caruso 			goto error;
144e8626459SEric Caruso 		}
145e8626459SEric Caruso 
146e8626459SEric Caruso 		mutex_unlock(&debug_info->log_mutex);
147e8626459SEric Caruso 
1480e8eb5e8STzung-Bi Shih 		ret = wait_event_interruptible(cros_ec_debugfs_log_wq,
149e8626459SEric Caruso 					CIRC_CNT(cb->head, cb->tail, LOG_SIZE));
150e8626459SEric Caruso 		if (ret < 0)
151e8626459SEric Caruso 			return ret;
152e8626459SEric Caruso 
153e8626459SEric Caruso 		mutex_lock(&debug_info->log_mutex);
154e8626459SEric Caruso 	}
155e8626459SEric Caruso 
156e8626459SEric Caruso 	/* Only copy until the end of the circular buffer, and let userspace
157e8626459SEric Caruso 	 * retry to get the rest of the data.
158e8626459SEric Caruso 	 */
159e8626459SEric Caruso 	ret = min_t(size_t, CIRC_CNT_TO_END(cb->head, cb->tail, LOG_SIZE),
160e8626459SEric Caruso 		    count);
161e8626459SEric Caruso 
162e8626459SEric Caruso 	if (copy_to_user(buf, cb->buf + cb->tail, ret)) {
163e8626459SEric Caruso 		ret = -EFAULT;
164e8626459SEric Caruso 		goto error;
165e8626459SEric Caruso 	}
166e8626459SEric Caruso 
167e8626459SEric Caruso 	cb->tail = CIRC_ADD(cb->tail, LOG_SIZE, ret);
168e8626459SEric Caruso 
169e8626459SEric Caruso error:
170e8626459SEric Caruso 	mutex_unlock(&debug_info->log_mutex);
171e8626459SEric Caruso 	return ret;
172e8626459SEric Caruso }
173e8626459SEric Caruso 
cros_ec_console_log_poll(struct file * file,poll_table * wait)174afc9a42bSAl Viro static __poll_t cros_ec_console_log_poll(struct file *file,
175e8626459SEric Caruso 					     poll_table *wait)
176e8626459SEric Caruso {
177e8626459SEric Caruso 	struct cros_ec_debugfs *debug_info = file->private_data;
178afc9a42bSAl Viro 	__poll_t mask = 0;
179e8626459SEric Caruso 
1800e8eb5e8STzung-Bi Shih 	poll_wait(file, &cros_ec_debugfs_log_wq, wait);
181e8626459SEric Caruso 
182e8626459SEric Caruso 	mutex_lock(&debug_info->log_mutex);
183e8626459SEric Caruso 	if (CIRC_CNT(debug_info->log_buffer.head,
184e8626459SEric Caruso 		     debug_info->log_buffer.tail,
185e8626459SEric Caruso 		     LOG_SIZE))
186a9a08845SLinus Torvalds 		mask |= EPOLLIN | EPOLLRDNORM;
187e8626459SEric Caruso 	mutex_unlock(&debug_info->log_mutex);
188e8626459SEric Caruso 
189e8626459SEric Caruso 	return mask;
190e8626459SEric Caruso }
191e8626459SEric Caruso 
cros_ec_console_log_release(struct inode * inode,struct file * file)192e8626459SEric Caruso static int cros_ec_console_log_release(struct inode *inode, struct file *file)
193e8626459SEric Caruso {
194e8626459SEric Caruso 	return 0;
195e8626459SEric Caruso }
196e8626459SEric Caruso 
cros_ec_pdinfo_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)197b082b2e1SShawn Nematbakhsh static ssize_t cros_ec_pdinfo_read(struct file *file,
198b082b2e1SShawn Nematbakhsh 				   char __user *user_buf,
199b082b2e1SShawn Nematbakhsh 				   size_t count,
200b082b2e1SShawn Nematbakhsh 				   loff_t *ppos)
201b082b2e1SShawn Nematbakhsh {
202b082b2e1SShawn Nematbakhsh 	char read_buf[EC_USB_PD_MAX_PORTS * 40], *p = read_buf;
203b082b2e1SShawn Nematbakhsh 	struct cros_ec_debugfs *debug_info = file->private_data;
204b082b2e1SShawn Nematbakhsh 	struct cros_ec_device *ec_dev = debug_info->ec->ec_dev;
205b082b2e1SShawn Nematbakhsh 	struct {
206b082b2e1SShawn Nematbakhsh 		struct cros_ec_command msg;
207b082b2e1SShawn Nematbakhsh 		union {
208b082b2e1SShawn Nematbakhsh 			struct ec_response_usb_pd_control_v1 resp;
209b082b2e1SShawn Nematbakhsh 			struct ec_params_usb_pd_control params;
210b082b2e1SShawn Nematbakhsh 		};
211b082b2e1SShawn Nematbakhsh 	} __packed ec_buf;
212b082b2e1SShawn Nematbakhsh 	struct cros_ec_command *msg;
213b082b2e1SShawn Nematbakhsh 	struct ec_response_usb_pd_control_v1 *resp;
214b082b2e1SShawn Nematbakhsh 	struct ec_params_usb_pd_control *params;
215b082b2e1SShawn Nematbakhsh 	int i;
216b082b2e1SShawn Nematbakhsh 
217b082b2e1SShawn Nematbakhsh 	msg = &ec_buf.msg;
218b082b2e1SShawn Nematbakhsh 	params = (struct ec_params_usb_pd_control *)msg->data;
219b082b2e1SShawn Nematbakhsh 	resp = (struct ec_response_usb_pd_control_v1 *)msg->data;
220b082b2e1SShawn Nematbakhsh 
221b082b2e1SShawn Nematbakhsh 	msg->command = EC_CMD_USB_PD_CONTROL;
222b082b2e1SShawn Nematbakhsh 	msg->version = 1;
223b082b2e1SShawn Nematbakhsh 	msg->insize = sizeof(*resp);
224b082b2e1SShawn Nematbakhsh 	msg->outsize = sizeof(*params);
225b082b2e1SShawn Nematbakhsh 
226b082b2e1SShawn Nematbakhsh 	/*
227b082b2e1SShawn Nematbakhsh 	 * Read status from all PD ports until failure, typically caused
228b082b2e1SShawn Nematbakhsh 	 * by attempting to read status on a port that doesn't exist.
229b082b2e1SShawn Nematbakhsh 	 */
230b082b2e1SShawn Nematbakhsh 	for (i = 0; i < EC_USB_PD_MAX_PORTS; ++i) {
231b082b2e1SShawn Nematbakhsh 		params->port = i;
232b082b2e1SShawn Nematbakhsh 		params->role = 0;
233b082b2e1SShawn Nematbakhsh 		params->mux = 0;
234b082b2e1SShawn Nematbakhsh 		params->swap = 0;
235b082b2e1SShawn Nematbakhsh 
236b082b2e1SShawn Nematbakhsh 		if (cros_ec_cmd_xfer_status(ec_dev, msg) < 0)
237b082b2e1SShawn Nematbakhsh 			break;
238b082b2e1SShawn Nematbakhsh 
239b082b2e1SShawn Nematbakhsh 		p += scnprintf(p, sizeof(read_buf) + read_buf - p,
240b082b2e1SShawn Nematbakhsh 			       "p%d: %s en:%.2x role:%.2x pol:%.2x\n", i,
241b082b2e1SShawn Nematbakhsh 			       resp->state, resp->enabled, resp->role,
242b082b2e1SShawn Nematbakhsh 			       resp->polarity);
243b082b2e1SShawn Nematbakhsh 	}
244b082b2e1SShawn Nematbakhsh 
245b082b2e1SShawn Nematbakhsh 	return simple_read_from_buffer(user_buf, count, ppos,
246b082b2e1SShawn Nematbakhsh 				       read_buf, p - read_buf);
247b082b2e1SShawn Nematbakhsh }
248b082b2e1SShawn Nematbakhsh 
cros_ec_uptime_is_supported(struct cros_ec_device * ec_dev)249d378cdd0SGwendal Grignou static bool cros_ec_uptime_is_supported(struct cros_ec_device *ec_dev)
250d378cdd0SGwendal Grignou {
251d378cdd0SGwendal Grignou 	struct {
252d378cdd0SGwendal Grignou 		struct cros_ec_command cmd;
253d378cdd0SGwendal Grignou 		struct ec_response_uptime_info resp;
254d378cdd0SGwendal Grignou 	} __packed msg = {};
255d378cdd0SGwendal Grignou 	int ret;
256d378cdd0SGwendal Grignou 
257d378cdd0SGwendal Grignou 	msg.cmd.command = EC_CMD_GET_UPTIME_INFO;
258d378cdd0SGwendal Grignou 	msg.cmd.insize = sizeof(msg.resp);
259d378cdd0SGwendal Grignou 
260d378cdd0SGwendal Grignou 	ret = cros_ec_cmd_xfer_status(ec_dev, &msg.cmd);
261d378cdd0SGwendal Grignou 	if (ret == -EPROTO && msg.cmd.result == EC_RES_INVALID_COMMAND)
262d378cdd0SGwendal Grignou 		return false;
263d378cdd0SGwendal Grignou 
264d378cdd0SGwendal Grignou 	/* Other errors maybe a transient error, do not rule about support. */
265d378cdd0SGwendal Grignou 	return true;
266d378cdd0SGwendal Grignou }
267d378cdd0SGwendal Grignou 
cros_ec_uptime_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)268e90716a6STim Wawrzynczak static ssize_t cros_ec_uptime_read(struct file *file, char __user *user_buf,
269e90716a6STim Wawrzynczak 				   size_t count, loff_t *ppos)
270e90716a6STim Wawrzynczak {
271e90716a6STim Wawrzynczak 	struct cros_ec_debugfs *debug_info = file->private_data;
272e90716a6STim Wawrzynczak 	struct cros_ec_device *ec_dev = debug_info->ec->ec_dev;
273e90716a6STim Wawrzynczak 	struct {
274e90716a6STim Wawrzynczak 		struct cros_ec_command cmd;
275e90716a6STim Wawrzynczak 		struct ec_response_uptime_info resp;
276e90716a6STim Wawrzynczak 	} __packed msg = {};
277e90716a6STim Wawrzynczak 	struct ec_response_uptime_info *resp;
278e90716a6STim Wawrzynczak 	char read_buf[32];
279e90716a6STim Wawrzynczak 	int ret;
280e90716a6STim Wawrzynczak 
281e90716a6STim Wawrzynczak 	resp = (struct ec_response_uptime_info *)&msg.resp;
282e90716a6STim Wawrzynczak 
283e90716a6STim Wawrzynczak 	msg.cmd.command = EC_CMD_GET_UPTIME_INFO;
284e90716a6STim Wawrzynczak 	msg.cmd.insize = sizeof(*resp);
285e90716a6STim Wawrzynczak 
286e90716a6STim Wawrzynczak 	ret = cros_ec_cmd_xfer_status(ec_dev, &msg.cmd);
287e90716a6STim Wawrzynczak 	if (ret < 0)
288e90716a6STim Wawrzynczak 		return ret;
289e90716a6STim Wawrzynczak 
290e90716a6STim Wawrzynczak 	ret = scnprintf(read_buf, sizeof(read_buf), "%u\n",
291e90716a6STim Wawrzynczak 			resp->time_since_ec_boot_ms);
292e90716a6STim Wawrzynczak 
293e90716a6STim Wawrzynczak 	return simple_read_from_buffer(user_buf, count, ppos, read_buf, ret);
294e90716a6STim Wawrzynczak }
295e90716a6STim Wawrzynczak 
29681bc8c03SYueHaibing static const struct file_operations cros_ec_console_log_fops = {
297e8626459SEric Caruso 	.owner = THIS_MODULE,
298e8626459SEric Caruso 	.open = cros_ec_console_log_open,
299e8626459SEric Caruso 	.read = cros_ec_console_log_read,
300e8626459SEric Caruso 	.llseek = no_llseek,
301e8626459SEric Caruso 	.poll = cros_ec_console_log_poll,
302e8626459SEric Caruso 	.release = cros_ec_console_log_release,
303e8626459SEric Caruso };
304e8626459SEric Caruso 
30581bc8c03SYueHaibing static const struct file_operations cros_ec_pdinfo_fops = {
306b082b2e1SShawn Nematbakhsh 	.owner = THIS_MODULE,
307b082b2e1SShawn Nematbakhsh 	.open = simple_open,
308b082b2e1SShawn Nematbakhsh 	.read = cros_ec_pdinfo_read,
309b082b2e1SShawn Nematbakhsh 	.llseek = default_llseek,
310b082b2e1SShawn Nematbakhsh };
311b082b2e1SShawn Nematbakhsh 
31235b52b33Skbuild test robot static const struct file_operations cros_ec_uptime_fops = {
313e90716a6STim Wawrzynczak 	.owner = THIS_MODULE,
314e90716a6STim Wawrzynczak 	.open = simple_open,
315e90716a6STim Wawrzynczak 	.read = cros_ec_uptime_read,
316e90716a6STim Wawrzynczak 	.llseek = default_llseek,
317e90716a6STim Wawrzynczak };
318e90716a6STim Wawrzynczak 
ec_read_version_supported(struct cros_ec_dev * ec)319e8626459SEric Caruso static int ec_read_version_supported(struct cros_ec_dev *ec)
320e8626459SEric Caruso {
321e8626459SEric Caruso 	struct ec_params_get_cmd_versions_v1 *params;
322e8626459SEric Caruso 	struct ec_response_get_cmd_versions *response;
323e8626459SEric Caruso 	int ret;
324e8626459SEric Caruso 
325e8626459SEric Caruso 	struct cros_ec_command *msg;
326e8626459SEric Caruso 
32773b44f40SShawn Nematbakhsh 	msg = kzalloc(sizeof(*msg) + max(sizeof(*params), sizeof(*response)),
328e8626459SEric Caruso 		GFP_KERNEL);
329e8626459SEric Caruso 	if (!msg)
330e8626459SEric Caruso 		return 0;
331e8626459SEric Caruso 
332*b37d68abSTzung-Bi Shih 	msg->version = 1;
333e8626459SEric Caruso 	msg->command = EC_CMD_GET_CMD_VERSIONS + ec->cmd_offset;
33473b44f40SShawn Nematbakhsh 	msg->outsize = sizeof(*params);
33573b44f40SShawn Nematbakhsh 	msg->insize = sizeof(*response);
336e8626459SEric Caruso 
337e8626459SEric Caruso 	params = (struct ec_params_get_cmd_versions_v1 *)msg->data;
338e8626459SEric Caruso 	params->cmd = EC_CMD_CONSOLE_READ;
339e8626459SEric Caruso 	response = (struct ec_response_get_cmd_versions *)msg->data;
340e8626459SEric Caruso 
34181f6ec23SEnric Balletbo i Serra 	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg) >= 0 &&
34281f6ec23SEnric Balletbo i Serra 	      response->version_mask & EC_VER_MASK(1);
343e8626459SEric Caruso 
344e8626459SEric Caruso 	kfree(msg);
345e8626459SEric Caruso 
346e8626459SEric Caruso 	return ret;
347e8626459SEric Caruso }
348e8626459SEric Caruso 
cros_ec_create_console_log(struct cros_ec_debugfs * debug_info)349e8626459SEric Caruso static int cros_ec_create_console_log(struct cros_ec_debugfs *debug_info)
350e8626459SEric Caruso {
351e8626459SEric Caruso 	struct cros_ec_dev *ec = debug_info->ec;
352e8626459SEric Caruso 	char *buf;
353e8626459SEric Caruso 	int read_params_size;
354e8626459SEric Caruso 	int read_response_size;
355e8626459SEric Caruso 
356e43c426aSEnric Balletbo i Serra 	/*
357e43c426aSEnric Balletbo i Serra 	 * If the console log feature is not supported return silently and
358e43c426aSEnric Balletbo i Serra 	 * don't create the console_log entry.
359e43c426aSEnric Balletbo i Serra 	 */
360e43c426aSEnric Balletbo i Serra 	if (!ec_read_version_supported(ec))
361e8626459SEric Caruso 		return 0;
362e8626459SEric Caruso 
363e8626459SEric Caruso 	buf = devm_kzalloc(ec->dev, LOG_SIZE, GFP_KERNEL);
364e8626459SEric Caruso 	if (!buf)
365e8626459SEric Caruso 		return -ENOMEM;
366e8626459SEric Caruso 
367e8626459SEric Caruso 	read_params_size = sizeof(struct ec_params_console_read_v1);
368e8626459SEric Caruso 	read_response_size = ec->ec_dev->max_response;
369e8626459SEric Caruso 	debug_info->read_msg = devm_kzalloc(ec->dev,
370e8626459SEric Caruso 		sizeof(*debug_info->read_msg) +
371e8626459SEric Caruso 			max(read_params_size, read_response_size), GFP_KERNEL);
372e8626459SEric Caruso 	if (!debug_info->read_msg)
373e8626459SEric Caruso 		return -ENOMEM;
374e8626459SEric Caruso 
375e8626459SEric Caruso 	debug_info->read_msg->version = 1;
376e8626459SEric Caruso 	debug_info->read_msg->command = EC_CMD_CONSOLE_READ + ec->cmd_offset;
377e8626459SEric Caruso 	debug_info->read_msg->outsize = read_params_size;
378e8626459SEric Caruso 	debug_info->read_msg->insize = read_response_size;
379e8626459SEric Caruso 
380e8626459SEric Caruso 	debug_info->log_buffer.buf = buf;
381e8626459SEric Caruso 	debug_info->log_buffer.head = 0;
382e8626459SEric Caruso 	debug_info->log_buffer.tail = 0;
383e8626459SEric Caruso 
384e8626459SEric Caruso 	mutex_init(&debug_info->log_mutex);
385e8626459SEric Caruso 
386b18e606fSEnric Balletbo i Serra 	debugfs_create_file("console_log", S_IFREG | 0444, debug_info->dir,
387b18e606fSEnric Balletbo i Serra 			    debug_info, &cros_ec_console_log_fops);
388e8626459SEric Caruso 
389e8626459SEric Caruso 	INIT_DELAYED_WORK(&debug_info->log_poll_work,
390e8626459SEric Caruso 			  cros_ec_console_log_work);
391e8626459SEric Caruso 	schedule_delayed_work(&debug_info->log_poll_work, 0);
392e8626459SEric Caruso 
393e8626459SEric Caruso 	return 0;
394e8626459SEric Caruso }
395e8626459SEric Caruso 
cros_ec_cleanup_console_log(struct cros_ec_debugfs * debug_info)396e8626459SEric Caruso static void cros_ec_cleanup_console_log(struct cros_ec_debugfs *debug_info)
397e8626459SEric Caruso {
398e8626459SEric Caruso 	if (debug_info->log_buffer.buf) {
399e8626459SEric Caruso 		cancel_delayed_work_sync(&debug_info->log_poll_work);
400e8626459SEric Caruso 		mutex_destroy(&debug_info->log_mutex);
401e8626459SEric Caruso 	}
402e8626459SEric Caruso }
403e8626459SEric Caruso 
4041f3744b8STzung-Bi Shih /*
40526e1dc1bSRob Barnes  * Returns the size of the panicinfo data fetched from the EC
40626e1dc1bSRob Barnes  */
cros_ec_get_panicinfo(struct cros_ec_device * ec_dev,uint8_t * data,int data_size)40726e1dc1bSRob Barnes static int cros_ec_get_panicinfo(struct cros_ec_device *ec_dev, uint8_t *data,
40826e1dc1bSRob Barnes 				 int data_size)
4096e494106SNicolas Boichat {
4106e494106SNicolas Boichat 	int ret;
4116e494106SNicolas Boichat 	struct cros_ec_command *msg;
4126e494106SNicolas Boichat 
41326e1dc1bSRob Barnes 	if (!data || data_size <= 0 || data_size > ec_dev->max_response)
41426e1dc1bSRob Barnes 		return -EINVAL;
4156e494106SNicolas Boichat 
41626e1dc1bSRob Barnes 	msg = kzalloc(sizeof(*msg) + data_size, GFP_KERNEL);
4176e494106SNicolas Boichat 	if (!msg)
4186e494106SNicolas Boichat 		return -ENOMEM;
4196e494106SNicolas Boichat 
4206e494106SNicolas Boichat 	msg->command = EC_CMD_GET_PANIC_INFO;
42126e1dc1bSRob Barnes 	msg->insize = data_size;
4226e494106SNicolas Boichat 
42381f6ec23SEnric Balletbo i Serra 	ret = cros_ec_cmd_xfer_status(ec_dev, msg);
42426e1dc1bSRob Barnes 	if (ret < 0)
42526e1dc1bSRob Barnes 		goto free;
42626e1dc1bSRob Barnes 
42726e1dc1bSRob Barnes 	memcpy(data, msg->data, data_size);
42826e1dc1bSRob Barnes 
42926e1dc1bSRob Barnes free:
43026e1dc1bSRob Barnes 	kfree(msg);
43126e1dc1bSRob Barnes 	return ret;
43226e1dc1bSRob Barnes }
43326e1dc1bSRob Barnes 
cros_ec_create_panicinfo(struct cros_ec_debugfs * debug_info)43426e1dc1bSRob Barnes static int cros_ec_create_panicinfo(struct cros_ec_debugfs *debug_info)
43526e1dc1bSRob Barnes {
43626e1dc1bSRob Barnes 	struct cros_ec_device *ec_dev = debug_info->ec->ec_dev;
43726e1dc1bSRob Barnes 	int ret;
43826e1dc1bSRob Barnes 	void *data;
43926e1dc1bSRob Barnes 
44026e1dc1bSRob Barnes 	data = devm_kzalloc(debug_info->ec->dev, ec_dev->max_response,
44126e1dc1bSRob Barnes 			    GFP_KERNEL);
44226e1dc1bSRob Barnes 	if (!data)
44326e1dc1bSRob Barnes 		return -ENOMEM;
44426e1dc1bSRob Barnes 
44526e1dc1bSRob Barnes 	ret = cros_ec_get_panicinfo(ec_dev, data, ec_dev->max_response);
4466e494106SNicolas Boichat 	if (ret < 0) {
4476e494106SNicolas Boichat 		ret = 0;
4486e494106SNicolas Boichat 		goto free;
4496e494106SNicolas Boichat 	}
4506e494106SNicolas Boichat 
4516e494106SNicolas Boichat 	/* No panic data */
4526e494106SNicolas Boichat 	if (ret == 0)
4536e494106SNicolas Boichat 		goto free;
4546e494106SNicolas Boichat 
45526e1dc1bSRob Barnes 	debug_info->panicinfo_blob.data = data;
4566e494106SNicolas Boichat 	debug_info->panicinfo_blob.size = ret;
4576e494106SNicolas Boichat 
458b18e606fSEnric Balletbo i Serra 	debugfs_create_blob("panicinfo", S_IFREG | 0444, debug_info->dir,
459b18e606fSEnric Balletbo i Serra 			    &debug_info->panicinfo_blob);
4606e494106SNicolas Boichat 
4616e494106SNicolas Boichat 	return 0;
4626e494106SNicolas Boichat 
4636e494106SNicolas Boichat free:
46426e1dc1bSRob Barnes 	devm_kfree(debug_info->ec->dev, data);
4656e494106SNicolas Boichat 	return ret;
4666e494106SNicolas Boichat }
4676e494106SNicolas Boichat 
cros_ec_debugfs_panic_event(struct notifier_block * nb,unsigned long queued_during_suspend,void * _notify)468d90fa2c6SRob Barnes static int cros_ec_debugfs_panic_event(struct notifier_block *nb,
469d90fa2c6SRob Barnes 				       unsigned long queued_during_suspend, void *_notify)
470d90fa2c6SRob Barnes {
471d90fa2c6SRob Barnes 	struct cros_ec_debugfs *debug_info =
472d90fa2c6SRob Barnes 		container_of(nb, struct cros_ec_debugfs, notifier_panic);
473d90fa2c6SRob Barnes 
474d90fa2c6SRob Barnes 	if (debug_info->log_buffer.buf) {
475d90fa2c6SRob Barnes 		/* Force log poll work to run immediately */
476d90fa2c6SRob Barnes 		mod_delayed_work(debug_info->log_poll_work.wq, &debug_info->log_poll_work, 0);
477d90fa2c6SRob Barnes 		/* Block until log poll work finishes */
478d90fa2c6SRob Barnes 		flush_delayed_work(&debug_info->log_poll_work);
479d90fa2c6SRob Barnes 	}
480d90fa2c6SRob Barnes 
481d90fa2c6SRob Barnes 	return NOTIFY_DONE;
482d90fa2c6SRob Barnes }
483d90fa2c6SRob Barnes 
cros_ec_debugfs_probe(struct platform_device * pd)4846fce0a2cSEnric Balletbo i Serra static int cros_ec_debugfs_probe(struct platform_device *pd)
485e8626459SEric Caruso {
4866fce0a2cSEnric Balletbo i Serra 	struct cros_ec_dev *ec = dev_get_drvdata(pd->dev.parent);
487e8626459SEric Caruso 	struct cros_ec_platform *ec_platform = dev_get_platdata(ec->dev);
488e8626459SEric Caruso 	const char *name = ec_platform->ec_name;
489e8626459SEric Caruso 	struct cros_ec_debugfs *debug_info;
490e8626459SEric Caruso 	int ret;
491e8626459SEric Caruso 
492e8626459SEric Caruso 	debug_info = devm_kzalloc(ec->dev, sizeof(*debug_info), GFP_KERNEL);
493e8626459SEric Caruso 	if (!debug_info)
494e8626459SEric Caruso 		return -ENOMEM;
495e8626459SEric Caruso 
496e8626459SEric Caruso 	debug_info->ec = ec;
497e8626459SEric Caruso 	debug_info->dir = debugfs_create_dir(name, NULL);
498e8626459SEric Caruso 
4996e494106SNicolas Boichat 	ret = cros_ec_create_panicinfo(debug_info);
5006e494106SNicolas Boichat 	if (ret)
5016e494106SNicolas Boichat 		goto remove_debugfs;
5026e494106SNicolas Boichat 
503e8626459SEric Caruso 	ret = cros_ec_create_console_log(debug_info);
504e8626459SEric Caruso 	if (ret)
505e8626459SEric Caruso 		goto remove_debugfs;
506e8626459SEric Caruso 
507b18e606fSEnric Balletbo i Serra 	debugfs_create_file("pdinfo", 0444, debug_info->dir, debug_info,
508b18e606fSEnric Balletbo i Serra 			    &cros_ec_pdinfo_fops);
509b082b2e1SShawn Nematbakhsh 
510d378cdd0SGwendal Grignou 	if (cros_ec_uptime_is_supported(ec->ec_dev))
511e90716a6STim Wawrzynczak 		debugfs_create_file("uptime", 0444, debug_info->dir, debug_info,
512e90716a6STim Wawrzynczak 				    &cros_ec_uptime_fops);
513e90716a6STim Wawrzynczak 
5148c3166e1SEvan Green 	debugfs_create_x32("last_resume_result", 0444, debug_info->dir,
5158c3166e1SEvan Green 			   &ec->ec_dev->last_resume_result);
5168c3166e1SEvan Green 
517e8bf17d5SEvan Green 	debugfs_create_u16("suspend_timeout_ms", 0664, debug_info->dir,
518e8bf17d5SEvan Green 			   &ec->ec_dev->suspend_timeout_ms);
519e8bf17d5SEvan Green 
520d90fa2c6SRob Barnes 	debug_info->notifier_panic.notifier_call = cros_ec_debugfs_panic_event;
521d90fa2c6SRob Barnes 	ret = blocking_notifier_chain_register(&ec->ec_dev->panic_notifier,
522d90fa2c6SRob Barnes 					       &debug_info->notifier_panic);
523d90fa2c6SRob Barnes 	if (ret)
524d90fa2c6SRob Barnes 		goto remove_debugfs;
525d90fa2c6SRob Barnes 
526e8626459SEric Caruso 	ec->debug_info = debug_info;
527e8626459SEric Caruso 
5286fce0a2cSEnric Balletbo i Serra 	dev_set_drvdata(&pd->dev, ec);
5296fce0a2cSEnric Balletbo i Serra 
530e8626459SEric Caruso 	return 0;
531e8626459SEric Caruso 
532e8626459SEric Caruso remove_debugfs:
533e8626459SEric Caruso 	debugfs_remove_recursive(debug_info->dir);
534e8626459SEric Caruso 	return ret;
535e8626459SEric Caruso }
536e8626459SEric Caruso 
cros_ec_debugfs_remove(struct platform_device * pd)5376fce0a2cSEnric Balletbo i Serra static int cros_ec_debugfs_remove(struct platform_device *pd)
538e8626459SEric Caruso {
5396fce0a2cSEnric Balletbo i Serra 	struct cros_ec_dev *ec = dev_get_drvdata(pd->dev.parent);
540e8626459SEric Caruso 
541e8626459SEric Caruso 	debugfs_remove_recursive(ec->debug_info->dir);
542e8626459SEric Caruso 	cros_ec_cleanup_console_log(ec->debug_info);
54344d99d73SDouglas Anderson 
5446fce0a2cSEnric Balletbo i Serra 	return 0;
5456fce0a2cSEnric Balletbo i Serra }
5466fce0a2cSEnric Balletbo i Serra 
cros_ec_debugfs_suspend(struct device * dev)5476fce0a2cSEnric Balletbo i Serra static int __maybe_unused cros_ec_debugfs_suspend(struct device *dev)
54844d99d73SDouglas Anderson {
5496fce0a2cSEnric Balletbo i Serra 	struct cros_ec_dev *ec = dev_get_drvdata(dev);
5506fce0a2cSEnric Balletbo i Serra 
55157aeef7fSGuenter Roeck 	if (ec->debug_info->log_buffer.buf)
55244d99d73SDouglas Anderson 		cancel_delayed_work_sync(&ec->debug_info->log_poll_work);
55344d99d73SDouglas Anderson 
5546fce0a2cSEnric Balletbo i Serra 	return 0;
55544d99d73SDouglas Anderson }
5566fce0a2cSEnric Balletbo i Serra 
cros_ec_debugfs_resume(struct device * dev)5576fce0a2cSEnric Balletbo i Serra static int __maybe_unused cros_ec_debugfs_resume(struct device *dev)
5586fce0a2cSEnric Balletbo i Serra {
5596fce0a2cSEnric Balletbo i Serra 	struct cros_ec_dev *ec = dev_get_drvdata(dev);
5606fce0a2cSEnric Balletbo i Serra 
56157aeef7fSGuenter Roeck 	if (ec->debug_info->log_buffer.buf)
5626fce0a2cSEnric Balletbo i Serra 		schedule_delayed_work(&ec->debug_info->log_poll_work, 0);
5636fce0a2cSEnric Balletbo i Serra 
5646fce0a2cSEnric Balletbo i Serra 	return 0;
5656fce0a2cSEnric Balletbo i Serra }
5666fce0a2cSEnric Balletbo i Serra 
5676fce0a2cSEnric Balletbo i Serra static SIMPLE_DEV_PM_OPS(cros_ec_debugfs_pm_ops,
5686fce0a2cSEnric Balletbo i Serra 			 cros_ec_debugfs_suspend, cros_ec_debugfs_resume);
5696fce0a2cSEnric Balletbo i Serra 
5706fce0a2cSEnric Balletbo i Serra static struct platform_driver cros_ec_debugfs_driver = {
5716fce0a2cSEnric Balletbo i Serra 	.driver = {
5726fce0a2cSEnric Balletbo i Serra 		.name = DRV_NAME,
5736fce0a2cSEnric Balletbo i Serra 		.pm = &cros_ec_debugfs_pm_ops,
574692a68adSBrian Norris 		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
5756fce0a2cSEnric Balletbo i Serra 	},
5766fce0a2cSEnric Balletbo i Serra 	.probe = cros_ec_debugfs_probe,
5776fce0a2cSEnric Balletbo i Serra 	.remove = cros_ec_debugfs_remove,
5786fce0a2cSEnric Balletbo i Serra };
5796fce0a2cSEnric Balletbo i Serra 
5806fce0a2cSEnric Balletbo i Serra module_platform_driver(cros_ec_debugfs_driver);
5816fce0a2cSEnric Balletbo i Serra 
5826fce0a2cSEnric Balletbo i Serra MODULE_LICENSE("GPL");
5836fce0a2cSEnric Balletbo i Serra MODULE_DESCRIPTION("Debug logs for ChromeOS EC");
5846fce0a2cSEnric Balletbo i Serra MODULE_ALIAS("platform:" DRV_NAME);
585