aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2017-05-16 11:46:48 -0400
committerBenson Leung <bleung@chromium.org>2017-06-16 16:57:44 -0400
commit68c35ea25bdd4ad10445c4c02f7d48b3dccab8cc (patch)
treeef13d2554f06434b37f871311168228aa95594bf /include/linux
parent32c1431eea4881a6b17bd7c639315010aeefa452 (diff)
mfd: cros_ec: Add helper for event notifier.
Add cros_ec_get_event() entry point to retrieve event within functions called by the notifier. Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Acked-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Benson Leung <bleung@chromium.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mfd/cros_ec.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/mfd/cros_ec.h b/include/linux/mfd/cros_ec.h
index 28baee63eaf6..b61b2e013698 100644
--- a/include/linux/mfd/cros_ec.h
+++ b/include/linux/mfd/cros_ec.h
@@ -300,6 +300,16 @@ int cros_ec_query_all(struct cros_ec_device *ec_dev);
300 */ 300 */
301int cros_ec_get_next_event(struct cros_ec_device *ec_dev); 301int cros_ec_get_next_event(struct cros_ec_device *ec_dev);
302 302
303/**
304 * cros_ec_get_host_event - Return a mask of event set by the EC.
305 *
306 * When MKBP is supported, when the EC raises an interrupt,
307 * We collect the events raised and call the functions in the ec notifier.
308 *
309 * This function is a helper to know which events are raised.
310 */
311u32 cros_ec_get_host_event(struct cros_ec_device *ec_dev);
312
303/* sysfs stuff */ 313/* sysfs stuff */
304extern struct attribute_group cros_ec_attr_group; 314extern struct attribute_group cros_ec_attr_group;
305extern struct attribute_group cros_ec_lightbar_attr_group; 315extern struct attribute_group cros_ec_lightbar_attr_group;