xref: /openbmc/linux/drivers/platform/chrome/wilco_ec/debugfs.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
1b787bb12SNick Crews // SPDX-License-Identifier: GPL-2.0
2b787bb12SNick Crews /*
3b787bb12SNick Crews  * debugfs attributes for Wilco EC
4b787bb12SNick Crews  *
5b787bb12SNick Crews  * Copyright 2019 Google LLC
6b787bb12SNick Crews  *
714e14aafSNick Crews  * See Documentation/ABI/testing/debugfs-wilco-ec for usage.
8b787bb12SNick Crews  */
9b787bb12SNick Crews 
10b787bb12SNick Crews #include <linux/ctype.h>
11b787bb12SNick Crews #include <linux/debugfs.h>
12b787bb12SNick Crews #include <linux/fs.h>
13b787bb12SNick Crews #include <linux/module.h>
14b787bb12SNick Crews #include <linux/platform_data/wilco-ec.h>
15b787bb12SNick Crews #include <linux/platform_device.h>
16b787bb12SNick Crews 
17b787bb12SNick Crews #define DRV_NAME "wilco-ec-debugfs"
18b787bb12SNick Crews 
191210d1e6SNick Crews /* The raw bytes will take up more space when represented as a hex string */
202ad1f7a9SNick Crews #define FORMATTED_BUFFER_SIZE (EC_MAILBOX_DATA_SIZE * 4)
21b787bb12SNick Crews 
22b787bb12SNick Crews struct wilco_ec_debugfs {
23b787bb12SNick Crews 	struct wilco_ec_device *ec;
24b787bb12SNick Crews 	struct dentry *dir;
25b787bb12SNick Crews 	size_t response_size;
262ad1f7a9SNick Crews 	u8 raw_data[EC_MAILBOX_DATA_SIZE];
27b787bb12SNick Crews 	u8 formatted_data[FORMATTED_BUFFER_SIZE];
28b787bb12SNick Crews };
29b787bb12SNick Crews static struct wilco_ec_debugfs *debug_info;
30b787bb12SNick Crews 
31b787bb12SNick Crews /**
32b787bb12SNick Crews  * parse_hex_sentence() - Convert a ascii hex representation into byte array.
33b787bb12SNick Crews  * @in: Input buffer of ascii.
34b787bb12SNick Crews  * @isize: Length of input buffer.
35b787bb12SNick Crews  * @out: Output buffer.
36b787bb12SNick Crews  * @osize: Length of output buffer, e.g. max number of bytes to parse.
37b787bb12SNick Crews  *
38b787bb12SNick Crews  * An valid input is a series of ascii hexadecimal numbers, separated by spaces.
39b787bb12SNick Crews  * An example valid input is
40b787bb12SNick Crews  * "   00 f2 0    000076 6 0  ff"
41b787bb12SNick Crews  *
42b787bb12SNick Crews  * If an individual "word" within the hex sentence is longer than MAX_WORD_SIZE,
43b787bb12SNick Crews  * then the sentence is illegal, and parsing will fail.
44b787bb12SNick Crews  *
45b787bb12SNick Crews  * Return: Number of bytes parsed, or negative error code on failure.
46b787bb12SNick Crews  */
parse_hex_sentence(const char * in,int isize,u8 * out,int osize)47b787bb12SNick Crews static int parse_hex_sentence(const char *in, int isize, u8 *out, int osize)
48b787bb12SNick Crews {
49b787bb12SNick Crews 	int n_parsed = 0;
50b787bb12SNick Crews 	int word_start = 0;
51b787bb12SNick Crews 	int word_end;
52b787bb12SNick Crews 	int word_len;
53b787bb12SNick Crews 	/* Temp buffer for holding a "word" of chars that represents one byte */
54b787bb12SNick Crews 	#define MAX_WORD_SIZE 16
55b787bb12SNick Crews 	char tmp[MAX_WORD_SIZE + 1];
56b787bb12SNick Crews 	u8 byte;
57b787bb12SNick Crews 
58b787bb12SNick Crews 	while (word_start < isize && n_parsed < osize) {
59b787bb12SNick Crews 		/* Find the start of the next word */
60b787bb12SNick Crews 		while (word_start < isize && isspace(in[word_start]))
61b787bb12SNick Crews 			word_start++;
62b787bb12SNick Crews 		 /* reached the end of the input before next word? */
63b787bb12SNick Crews 		if (word_start >= isize)
64b787bb12SNick Crews 			break;
65b787bb12SNick Crews 
66b787bb12SNick Crews 		/* Find the end of this word */
67b787bb12SNick Crews 		word_end = word_start;
68b787bb12SNick Crews 		while (word_end < isize && !isspace(in[word_end]))
69b787bb12SNick Crews 			word_end++;
70b787bb12SNick Crews 
71b787bb12SNick Crews 		/* Copy to a tmp NULL terminated string */
72b787bb12SNick Crews 		word_len = word_end - word_start;
73b787bb12SNick Crews 		if (word_len > MAX_WORD_SIZE)
74b787bb12SNick Crews 			return -EINVAL;
75b787bb12SNick Crews 		memcpy(tmp, in + word_start, word_len);
76b787bb12SNick Crews 		tmp[word_len] = '\0';
77b787bb12SNick Crews 
78b787bb12SNick Crews 		/*
79b787bb12SNick Crews 		 * Convert from hex string, place in output. If fails to parse,
80b787bb12SNick Crews 		 * just return -EINVAL because specific error code is only
81b787bb12SNick Crews 		 * relevant for this one word, returning it would be confusing.
82b787bb12SNick Crews 		 */
83b787bb12SNick Crews 		if (kstrtou8(tmp, 16, &byte))
84b787bb12SNick Crews 			return -EINVAL;
85b787bb12SNick Crews 		out[n_parsed++] = byte;
86b787bb12SNick Crews 
87b787bb12SNick Crews 		word_start = word_end;
88b787bb12SNick Crews 	}
89b787bb12SNick Crews 	return n_parsed;
90b787bb12SNick Crews }
91b787bb12SNick Crews 
92b787bb12SNick Crews /* The message type takes up two bytes*/
93b787bb12SNick Crews #define TYPE_AND_DATA_SIZE ((EC_MAILBOX_DATA_SIZE) + 2)
94b787bb12SNick Crews 
raw_write(struct file * file,const char __user * user_buf,size_t count,loff_t * ppos)95b787bb12SNick Crews static ssize_t raw_write(struct file *file, const char __user *user_buf,
96b787bb12SNick Crews 			 size_t count, loff_t *ppos)
97b787bb12SNick Crews {
98b787bb12SNick Crews 	char *buf = debug_info->formatted_data;
99b787bb12SNick Crews 	struct wilco_ec_message msg;
100b787bb12SNick Crews 	u8 request_data[TYPE_AND_DATA_SIZE];
101b787bb12SNick Crews 	ssize_t kcount;
102b787bb12SNick Crews 	int ret;
103b787bb12SNick Crews 
104b787bb12SNick Crews 	if (count > FORMATTED_BUFFER_SIZE)
105b787bb12SNick Crews 		return -EINVAL;
106b787bb12SNick Crews 
107b787bb12SNick Crews 	kcount = simple_write_to_buffer(buf, FORMATTED_BUFFER_SIZE, ppos,
108b787bb12SNick Crews 					user_buf, count);
109b787bb12SNick Crews 	if (kcount < 0)
110b787bb12SNick Crews 		return kcount;
111b787bb12SNick Crews 
112b787bb12SNick Crews 	ret = parse_hex_sentence(buf, kcount, request_data, TYPE_AND_DATA_SIZE);
113b787bb12SNick Crews 	if (ret < 0)
114b787bb12SNick Crews 		return ret;
11514e14aafSNick Crews 	/* Need at least two bytes for message type and one byte of data */
116b787bb12SNick Crews 	if (ret < 3)
117b787bb12SNick Crews 		return -EINVAL;
118b787bb12SNick Crews 
119b787bb12SNick Crews 	msg.type = request_data[0] << 8 | request_data[1];
12014e14aafSNick Crews 	msg.flags = 0;
12114e14aafSNick Crews 	msg.request_data = request_data + 2;
12214e14aafSNick Crews 	msg.request_size = ret - 2;
12314e14aafSNick Crews 	memset(debug_info->raw_data, 0, sizeof(debug_info->raw_data));
124b787bb12SNick Crews 	msg.response_data = debug_info->raw_data;
125b787bb12SNick Crews 	msg.response_size = EC_MAILBOX_DATA_SIZE;
126b787bb12SNick Crews 
127b787bb12SNick Crews 	ret = wilco_ec_mailbox(debug_info->ec, &msg);
128b787bb12SNick Crews 	if (ret < 0)
129b787bb12SNick Crews 		return ret;
130b787bb12SNick Crews 	debug_info->response_size = ret;
131b787bb12SNick Crews 
132b787bb12SNick Crews 	return count;
133b787bb12SNick Crews }
134b787bb12SNick Crews 
raw_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)135b787bb12SNick Crews static ssize_t raw_read(struct file *file, char __user *user_buf, size_t count,
136b787bb12SNick Crews 			loff_t *ppos)
137b787bb12SNick Crews {
138b787bb12SNick Crews 	int fmt_len = 0;
139b787bb12SNick Crews 
140b787bb12SNick Crews 	if (debug_info->response_size) {
141b787bb12SNick Crews 		fmt_len = hex_dump_to_buffer(debug_info->raw_data,
142b787bb12SNick Crews 					     debug_info->response_size,
143b787bb12SNick Crews 					     16, 1, debug_info->formatted_data,
14414e14aafSNick Crews 					     sizeof(debug_info->formatted_data),
14514e14aafSNick Crews 					     true);
146b787bb12SNick Crews 		/* Only return response the first time it is read */
147b787bb12SNick Crews 		debug_info->response_size = 0;
148b787bb12SNick Crews 	}
149b787bb12SNick Crews 
150b787bb12SNick Crews 	return simple_read_from_buffer(user_buf, count, ppos,
151b787bb12SNick Crews 				       debug_info->formatted_data, fmt_len);
152b787bb12SNick Crews }
153b787bb12SNick Crews 
154b787bb12SNick Crews static const struct file_operations fops_raw = {
155b787bb12SNick Crews 	.owner = THIS_MODULE,
156b787bb12SNick Crews 	.read = raw_read,
157b787bb12SNick Crews 	.write = raw_write,
158b787bb12SNick Crews 	.llseek = no_llseek,
159b787bb12SNick Crews };
160b787bb12SNick Crews 
1619e2b0e0bSNick Crews #define CMD_KB_CHROME		0x88
1629e2b0e0bSNick Crews #define SUB_CMD_H1_GPIO		0x0A
163e6679fd1SDaniel Campello #define SUB_CMD_TEST_EVENT	0x0B
1649e2b0e0bSNick Crews 
165e6679fd1SDaniel Campello struct ec_request {
1669e2b0e0bSNick Crews 	u8 cmd;		/* Always CMD_KB_CHROME */
1679e2b0e0bSNick Crews 	u8 reserved;
168e6679fd1SDaniel Campello 	u8 sub_cmd;
1699e2b0e0bSNick Crews } __packed;
1709e2b0e0bSNick Crews 
171e6679fd1SDaniel Campello struct ec_response {
1729e2b0e0bSNick Crews 	u8 status;	/* 0 if allowed */
173e6679fd1SDaniel Campello 	u8 val;
1749e2b0e0bSNick Crews } __packed;
1759e2b0e0bSNick Crews 
send_ec_cmd(struct wilco_ec_device * ec,u8 sub_cmd,u8 * out_val)176e6679fd1SDaniel Campello static int send_ec_cmd(struct wilco_ec_device *ec, u8 sub_cmd, u8 *out_val)
1779e2b0e0bSNick Crews {
178e6679fd1SDaniel Campello 	struct ec_request rq;
179e6679fd1SDaniel Campello 	struct ec_response rs;
1809e2b0e0bSNick Crews 	struct wilco_ec_message msg;
1819e2b0e0bSNick Crews 	int ret;
1829e2b0e0bSNick Crews 
1839e2b0e0bSNick Crews 	memset(&rq, 0, sizeof(rq));
1849e2b0e0bSNick Crews 	rq.cmd = CMD_KB_CHROME;
185e6679fd1SDaniel Campello 	rq.sub_cmd = sub_cmd;
1869e2b0e0bSNick Crews 
1879e2b0e0bSNick Crews 	memset(&msg, 0, sizeof(msg));
1889e2b0e0bSNick Crews 	msg.type = WILCO_EC_MSG_LEGACY;
1899e2b0e0bSNick Crews 	msg.request_data = &rq;
1909e2b0e0bSNick Crews 	msg.request_size = sizeof(rq);
1919e2b0e0bSNick Crews 	msg.response_data = &rs;
1929e2b0e0bSNick Crews 	msg.response_size = sizeof(rs);
1939e2b0e0bSNick Crews 	ret = wilco_ec_mailbox(ec, &msg);
1949e2b0e0bSNick Crews 	if (ret < 0)
1959e2b0e0bSNick Crews 		return ret;
1969e2b0e0bSNick Crews 	if (rs.status)
1979e2b0e0bSNick Crews 		return -EIO;
1989e2b0e0bSNick Crews 
199e6679fd1SDaniel Campello 	*out_val = rs.val;
2009e2b0e0bSNick Crews 
2019e2b0e0bSNick Crews 	return 0;
2029e2b0e0bSNick Crews }
2039e2b0e0bSNick Crews 
204e6679fd1SDaniel Campello /**
205e6679fd1SDaniel Campello  * h1_gpio_get() - Gets h1 gpio status.
206e6679fd1SDaniel Campello  * @arg: The wilco EC device.
207e6679fd1SDaniel Campello  * @val: BIT(0)=ENTRY_TO_FACT_MODE, BIT(1)=SPI_CHROME_SEL
208e6679fd1SDaniel Campello  */
h1_gpio_get(void * arg,u64 * val)209e6679fd1SDaniel Campello static int h1_gpio_get(void *arg, u64 *val)
210e6679fd1SDaniel Campello {
211*ad35da94SBernardo Perez Priego 	int ret;
212*ad35da94SBernardo Perez Priego 
213*ad35da94SBernardo Perez Priego 	ret = send_ec_cmd(arg, SUB_CMD_H1_GPIO, (u8 *)val);
214*ad35da94SBernardo Perez Priego 	if (ret == 0)
215*ad35da94SBernardo Perez Priego 		*val &= 0xFF;
216*ad35da94SBernardo Perez Priego 	return ret;
217e6679fd1SDaniel Campello }
218e6679fd1SDaniel Campello 
2199e2b0e0bSNick Crews DEFINE_DEBUGFS_ATTRIBUTE(fops_h1_gpio, h1_gpio_get, NULL, "0x%02llx\n");
2209e2b0e0bSNick Crews 
221b787bb12SNick Crews /**
222e6679fd1SDaniel Campello  * test_event_set() - Sends command to EC to cause an EC test event.
223e6679fd1SDaniel Campello  * @arg: The wilco EC device.
224e6679fd1SDaniel Campello  * @val: unused.
225e6679fd1SDaniel Campello  */
test_event_set(void * arg,u64 val)226e6679fd1SDaniel Campello static int test_event_set(void *arg, u64 val)
227e6679fd1SDaniel Campello {
228e6679fd1SDaniel Campello 	u8 ret;
229e6679fd1SDaniel Campello 
230e6679fd1SDaniel Campello 	return send_ec_cmd(arg, SUB_CMD_TEST_EVENT, &ret);
231e6679fd1SDaniel Campello }
232e6679fd1SDaniel Campello 
233e6679fd1SDaniel Campello /* Format is unused since it is only required for get method which is NULL */
234e6679fd1SDaniel Campello DEFINE_DEBUGFS_ATTRIBUTE(fops_test_event, NULL, test_event_set, "%llu\n");
235e6679fd1SDaniel Campello 
236e6679fd1SDaniel Campello /**
237b787bb12SNick Crews  * wilco_ec_debugfs_probe() - Create the debugfs node
238b787bb12SNick Crews  * @pdev: The platform device, probably created in core.c
239b787bb12SNick Crews  *
240b787bb12SNick Crews  * Try to create a debugfs node. If it fails, then we don't want to change
241b787bb12SNick Crews  * behavior at all, this is for debugging after all. Just fail silently.
242b787bb12SNick Crews  *
243b787bb12SNick Crews  * Return: 0 always.
244b787bb12SNick Crews  */
wilco_ec_debugfs_probe(struct platform_device * pdev)245b787bb12SNick Crews static int wilco_ec_debugfs_probe(struct platform_device *pdev)
246b787bb12SNick Crews {
247b787bb12SNick Crews 	struct wilco_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
248b787bb12SNick Crews 
249b787bb12SNick Crews 	debug_info = devm_kzalloc(&pdev->dev, sizeof(*debug_info), GFP_KERNEL);
250b787bb12SNick Crews 	if (!debug_info)
251b787bb12SNick Crews 		return 0;
252b787bb12SNick Crews 	debug_info->ec = ec;
253b787bb12SNick Crews 	debug_info->dir = debugfs_create_dir("wilco_ec", NULL);
254b787bb12SNick Crews 	debugfs_create_file("raw", 0644, debug_info->dir, NULL, &fops_raw);
2559e2b0e0bSNick Crews 	debugfs_create_file("h1_gpio", 0444, debug_info->dir, ec,
2569e2b0e0bSNick Crews 			    &fops_h1_gpio);
257e6679fd1SDaniel Campello 	debugfs_create_file("test_event", 0200, debug_info->dir, ec,
258e6679fd1SDaniel Campello 			    &fops_test_event);
259b787bb12SNick Crews 
260b787bb12SNick Crews 	return 0;
261b787bb12SNick Crews }
262b787bb12SNick Crews 
wilco_ec_debugfs_remove(struct platform_device * pdev)263b787bb12SNick Crews static int wilco_ec_debugfs_remove(struct platform_device *pdev)
264b787bb12SNick Crews {
265b787bb12SNick Crews 	debugfs_remove_recursive(debug_info->dir);
266b787bb12SNick Crews 
267b787bb12SNick Crews 	return 0;
268b787bb12SNick Crews }
269b787bb12SNick Crews 
270b787bb12SNick Crews static struct platform_driver wilco_ec_debugfs_driver = {
271b787bb12SNick Crews 	.driver = {
272b787bb12SNick Crews 		.name = DRV_NAME,
273b787bb12SNick Crews 	},
274b787bb12SNick Crews 	.probe = wilco_ec_debugfs_probe,
275b787bb12SNick Crews 	.remove = wilco_ec_debugfs_remove,
276b787bb12SNick Crews };
277b787bb12SNick Crews 
278b787bb12SNick Crews module_platform_driver(wilco_ec_debugfs_driver);
279b787bb12SNick Crews 
280b787bb12SNick Crews MODULE_ALIAS("platform:" DRV_NAME);
281b787bb12SNick Crews MODULE_AUTHOR("Nick Crews <ncrews@chromium.org>");
282b787bb12SNick Crews MODULE_LICENSE("GPL v2");
283b787bb12SNick Crews MODULE_DESCRIPTION("Wilco EC debugfs driver");
284