summaryrefslogtreecommitdiff
path: root/include/console.h
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2015-11-12 16:44:46 -0800
committerchrome-bot <chrome-bot@chromium.org>2015-11-17 14:40:26 -0800
commita8f2e3625e34b51da381236a14a7d28adc37df4a (patch)
tree6965c1b45350c11d61bbf560fa0a01162b2de119 /include/console.h
parent2d57e6f6d98a06abd55e193b6f5d193280f01988 (diff)
downloadchrome-ec-a8f2e3625e34b51da381236a14a7d28adc37df4a.tar.gz
add the 'extension' command framework
This patch introduces a facility which would allow to compile in callbacks for arbitrary commands passed over various communication protocols. Typically this will be used for testing, when various test commands are multiplexed over an existing protocol. The callbacks are associated with 16 bit command codes. On input the callback receives a buffer, containing the command's argument, the size of the command argument and the maximum size of the buffer. On output the callback stores processing result in the same buffer and updates the size to the actual amount of returned data. Callback descriptors are stored in a dedicated read only section which is scanned by extension_route_command() to find a callback associated with a certain command code. A console channel is also being introduced to allow controlling console output generated by extension commands handlers. BRANCH=none BUG=chrome-os-partner:47524 TEST=none yet Change-Id: I8ae16a78ca7d72176a5e7f74dd7a232078e7c06c Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/312586 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'include/console.h')
-rw-r--r--include/console.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/console.h b/include/console.h
index 81e5a8c3c2..01cf13d6ea 100644
--- a/include/console.h
+++ b/include/console.h
@@ -29,6 +29,9 @@ enum console_channel {
CC_COMMAND = 0, /* Console command (interactive I/O). Use this only
* inside a console command routine. */
CC_ACCEL,
+#ifdef CONFIG_EXTENSION_COMMAND
+ CC_EXTENSION,
+#endif
CC_CHARGER,
CC_CHIPSET,
CC_CLOCK,