diff options
author | Daniel Drake <dsd@laptop.org> | 2012-03-27 11:07:40 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-03-27 14:54:52 -0400 |
commit | a3c8121b8724c3d496dc00201ab40e8313edcf0d (patch) | |
tree | 4e6974368cd9f09a7a881c0f3ece3ccf7b8f5451 | |
parent | 90e240142bd31ff10aeda5a280a53153f4eff004 (diff) |
x86/olpc: Add debugfs interface for EC commands
Add a debugfs interface for sending commands to the OLPC
Embedded Controller (EC) and reading the responses. The EC
provides functionality for machine identification, battery and
AC control, wakeup control, etc.
Having a debugfs interface available is useful for EC
development and debugging.
Based on code by Paul Fox (who also approves of the end result).
Signed-off-by: Daniel Drake <dsd@laptop.org>
Acked-by: Paul Fox <pgf@laptop.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Andres Salomon <dilinger@queued.net>
Link: http://lkml.kernel.org/r/20120327150740.667D09D401E@zog.reactivated.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | Documentation/ABI/testing/debugfs-olpc | 16 | ||||
-rw-r--r-- | arch/x86/platform/olpc/olpc.c | 97 |
2 files changed, 113 insertions, 0 deletions
diff --git a/Documentation/ABI/testing/debugfs-olpc b/Documentation/ABI/testing/debugfs-olpc new file mode 100644 index 000000000000..bd76cc6d55f9 --- /dev/null +++ b/Documentation/ABI/testing/debugfs-olpc | |||
@@ -0,0 +1,16 @@ | |||
1 | What: /sys/kernel/debug/olpc-ec/cmd | ||
2 | Date: Dec 2011 | ||
3 | KernelVersion: 3.4 | ||
4 | Contact: devel@lists.laptop.org | ||
5 | Description: | ||
6 | |||
7 | A generic interface for executing OLPC Embedded Controller commands and | ||
8 | reading their responses. | ||
9 | |||
10 | To execute a command, write data with the format: CC:N A A A A | ||
11 | CC is the (hex) command, N is the count of expected reply bytes, and A A A A | ||
12 | are optional (hex) arguments. | ||
13 | |||
14 | To read the response (if any), read from the generic node after executing | ||
15 | a command. Hex reply bytes will be returned, *whether or not* they came from | ||
16 | the immediately previous command. | ||
diff --git a/arch/x86/platform/olpc/olpc.c b/arch/x86/platform/olpc/olpc.c index 7cce722667b8..a4bee53c2e54 100644 --- a/arch/x86/platform/olpc/olpc.c +++ b/arch/x86/platform/olpc/olpc.c | |||
@@ -20,6 +20,8 @@ | |||
20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
21 | #include <linux/of.h> | 21 | #include <linux/of.h> |
22 | #include <linux/syscore_ops.h> | 22 | #include <linux/syscore_ops.h> |
23 | #include <linux/debugfs.h> | ||
24 | #include <linux/mutex.h> | ||
23 | 25 | ||
24 | #include <asm/geode.h> | 26 | #include <asm/geode.h> |
25 | #include <asm/setup.h> | 27 | #include <asm/setup.h> |
@@ -31,6 +33,15 @@ EXPORT_SYMBOL_GPL(olpc_platform_info); | |||
31 | 33 | ||
32 | static DEFINE_SPINLOCK(ec_lock); | 34 | static DEFINE_SPINLOCK(ec_lock); |
33 | 35 | ||
36 | /* debugfs interface to EC commands */ | ||
37 | #define EC_MAX_CMD_ARGS (5 + 1) /* cmd byte + 5 args */ | ||
38 | #define EC_MAX_CMD_REPLY (8) | ||
39 | |||
40 | static struct dentry *ec_debugfs_dir; | ||
41 | static DEFINE_MUTEX(ec_debugfs_cmd_lock); | ||
42 | static unsigned char ec_debugfs_resp[EC_MAX_CMD_REPLY]; | ||
43 | static unsigned int ec_debugfs_resp_bytes; | ||
44 | |||
34 | /* EC event mask to be applied during suspend (defining wakeup sources). */ | 45 | /* EC event mask to be applied during suspend (defining wakeup sources). */ |
35 | static u16 ec_wakeup_mask; | 46 | static u16 ec_wakeup_mask; |
36 | 47 | ||
@@ -269,6 +280,91 @@ int olpc_ec_sci_query(u16 *sci_value) | |||
269 | } | 280 | } |
270 | EXPORT_SYMBOL_GPL(olpc_ec_sci_query); | 281 | EXPORT_SYMBOL_GPL(olpc_ec_sci_query); |
271 | 282 | ||
283 | static ssize_t ec_debugfs_cmd_write(struct file *file, const char __user *buf, | ||
284 | size_t size, loff_t *ppos) | ||
285 | { | ||
286 | int i, m; | ||
287 | unsigned char ec_cmd[EC_MAX_CMD_ARGS]; | ||
288 | unsigned int ec_cmd_int[EC_MAX_CMD_ARGS]; | ||
289 | char cmdbuf[64]; | ||
290 | int ec_cmd_bytes; | ||
291 | |||
292 | mutex_lock(&ec_debugfs_cmd_lock); | ||
293 | |||
294 | size = simple_write_to_buffer(cmdbuf, sizeof(cmdbuf), ppos, buf, size); | ||
295 | |||
296 | m = sscanf(cmdbuf, "%x:%u %x %x %x %x %x", &ec_cmd_int[0], | ||
297 | &ec_debugfs_resp_bytes, | ||
298 | &ec_cmd_int[1], &ec_cmd_int[2], &ec_cmd_int[3], | ||
299 | &ec_cmd_int[4], &ec_cmd_int[5]); | ||
300 | if (m < 2 || ec_debugfs_resp_bytes > EC_MAX_CMD_REPLY) { | ||
301 | /* reset to prevent overflow on read */ | ||
302 | ec_debugfs_resp_bytes = 0; | ||
303 | |||
304 | printk(KERN_DEBUG "olpc-ec: bad ec cmd: " | ||
305 | "cmd:response-count [arg1 [arg2 ...]]\n"); | ||
306 | size = -EINVAL; | ||
307 | goto out; | ||
308 | } | ||
309 | |||
310 | /* convert scanf'd ints to char */ | ||
311 | ec_cmd_bytes = m - 2; | ||
312 | for (i = 0; i <= ec_cmd_bytes; i++) | ||
313 | ec_cmd[i] = ec_cmd_int[i]; | ||
314 | |||
315 | printk(KERN_DEBUG "olpc-ec: debugfs cmd 0x%02x with %d args " | ||
316 | "%02x %02x %02x %02x %02x, want %d returns\n", | ||
317 | ec_cmd[0], ec_cmd_bytes, ec_cmd[1], ec_cmd[2], ec_cmd[3], | ||
318 | ec_cmd[4], ec_cmd[5], ec_debugfs_resp_bytes); | ||
319 | |||
320 | olpc_ec_cmd(ec_cmd[0], (ec_cmd_bytes == 0) ? NULL : &ec_cmd[1], | ||
321 | ec_cmd_bytes, ec_debugfs_resp, ec_debugfs_resp_bytes); | ||
322 | |||
323 | printk(KERN_DEBUG "olpc-ec: response " | ||
324 | "%02x %02x %02x %02x %02x %02x %02x %02x (%d bytes expected)\n", | ||
325 | ec_debugfs_resp[0], ec_debugfs_resp[1], ec_debugfs_resp[2], | ||
326 | ec_debugfs_resp[3], ec_debugfs_resp[4], ec_debugfs_resp[5], | ||
327 | ec_debugfs_resp[6], ec_debugfs_resp[7], ec_debugfs_resp_bytes); | ||
328 | |||
329 | out: | ||
330 | mutex_unlock(&ec_debugfs_cmd_lock); | ||
331 | return size; | ||
332 | } | ||
333 | |||
334 | static ssize_t ec_debugfs_cmd_read(struct file *file, char __user *buf, | ||
335 | size_t size, loff_t *ppos) | ||
336 | { | ||
337 | unsigned int i, r; | ||
338 | char *rp; | ||
339 | char respbuf[64]; | ||
340 | |||
341 | mutex_lock(&ec_debugfs_cmd_lock); | ||
342 | rp = respbuf; | ||
343 | rp += sprintf(rp, "%02x", ec_debugfs_resp[0]); | ||
344 | for (i = 1; i < ec_debugfs_resp_bytes; i++) | ||
345 | rp += sprintf(rp, ", %02x", ec_debugfs_resp[i]); | ||
346 | mutex_unlock(&ec_debugfs_cmd_lock); | ||
347 | rp += sprintf(rp, "\n"); | ||
348 | |||
349 | r = rp - respbuf; | ||
350 | return simple_read_from_buffer(buf, size, ppos, respbuf, r); | ||
351 | } | ||
352 | |||
353 | static const struct file_operations ec_debugfs_genops = { | ||
354 | .write = ec_debugfs_cmd_write, | ||
355 | .read = ec_debugfs_cmd_read, | ||
356 | }; | ||
357 | |||
358 | static void setup_debugfs(void) | ||
359 | { | ||
360 | ec_debugfs_dir = debugfs_create_dir("olpc-ec", 0); | ||
361 | if (ec_debugfs_dir == ERR_PTR(-ENODEV)) | ||
362 | return; | ||
363 | |||
364 | debugfs_create_file("cmd", 0600, ec_debugfs_dir, NULL, | ||
365 | &ec_debugfs_genops); | ||
366 | } | ||
367 | |||
272 | static int olpc_ec_suspend(void) | 368 | static int olpc_ec_suspend(void) |
273 | { | 369 | { |
274 | return olpc_ec_mask_write(ec_wakeup_mask); | 370 | return olpc_ec_mask_write(ec_wakeup_mask); |
@@ -372,6 +468,7 @@ static int __init olpc_init(void) | |||
372 | } | 468 | } |
373 | 469 | ||
374 | register_syscore_ops(&olpc_syscore_ops); | 470 | register_syscore_ops(&olpc_syscore_ops); |
471 | setup_debugfs(); | ||
375 | 472 | ||
376 | return 0; | 473 | return 0; |
377 | } | 474 | } |