aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mei_cl_bus.h
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2013-03-27 17:29:55 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-29 08:44:12 -0700
commit3e8332952dedd2c17bb497e3909e3b6fbac10ce7 (patch)
treead405a421bb788fe421f62f23b38cba9a36b0ab7 /include/linux/mei_cl_bus.h
parentmei: bus: Implement driver registration (diff)
downloadlinux-dev-3e8332952dedd2c17bb497e3909e3b6fbac10ce7.tar.xz
linux-dev-3e8332952dedd2c17bb497e3909e3b6fbac10ce7.zip
mei: bus: Initial implementation for I/O routines
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/mei_cl_bus.h')
-rw-r--r--include/linux/mei_cl_bus.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/mei_cl_bus.h b/include/linux/mei_cl_bus.h
index ba2aa3b66f30..d9958c3960a2 100644
--- a/include/linux/mei_cl_bus.h
+++ b/include/linux/mei_cl_bus.h
@@ -24,4 +24,15 @@ int __mei_cl_driver_register(struct mei_cl_driver *driver,
void mei_cl_driver_unregister(struct mei_cl_driver *driver);
+int mei_cl_send(struct mei_cl_device *device, u8 *buf, size_t length);
+int mei_cl_recv(struct mei_cl_device *device, u8 *buf, size_t length);
+
+typedef void (*mei_cl_event_cb_t)(struct mei_cl_device *device,
+ u32 events, void *context);
+int mei_cl_register_event_cb(struct mei_cl_device *device,
+ mei_cl_event_cb_t read_cb, void *context);
+
+#define MEI_CL_EVENT_RX 0
+#define MEI_CL_EVENT_TX 1
+
#endif /* _LINUX_MEI_CL_BUS_H */