1 #ifndef _LINUX_MEI_CL_BUS_H
2 #define _LINUX_MEI_CL_BUS_H
4 #include <linux/device.h>
5 #include <linux/uuid.h>
6 #include <linux/mod_devicetable.h>
11 typedef void (*mei_cldev_event_cb_t
)(struct mei_cl_device
*cldev
,
12 u32 events
, void *context
);
15 * struct mei_cl_device - MEI device handle
16 * An mei_cl_device pointer is returned from mei_add_device()
17 * and links MEI bus clients to their actual ME host client pointer.
18 * Drivers for MEI devices will get an mei_cl_device pointer
19 * when being probed and shall use it for doing ME bus I/O.
21 * @bus_list: device on the bus list
22 * @bus: parent mei device
23 * @dev: linux driver model device pointer
27 * @event_work: async work to execute event callback
28 * @event_cb: Drivers register this callback to get asynchronous ME
29 * events (e.g. Rx buffer pending) notifications.
30 * @event_context: event callback run context
31 * @events_mask: Events bit mask requested by driver.
32 * @events: Events bitmask sent to the driver.
34 * @do_match: wheather device can be matched with a driver
35 * @is_added: device is already scanned
36 * @priv_data: client private data
38 struct mei_cl_device
{
39 struct list_head bus_list
;
40 struct mei_device
*bus
;
43 struct mei_me_client
*me_cl
;
45 char name
[MEI_CL_NAME_SIZE
];
47 struct work_struct event_work
;
48 mei_cldev_event_cb_t event_cb
;
50 unsigned long events_mask
;
53 unsigned int do_match
:1;
54 unsigned int is_added
:1;
59 struct mei_cl_driver
{
60 struct device_driver driver
;
63 const struct mei_cl_device_id
*id_table
;
65 int (*probe
)(struct mei_cl_device
*cldev
,
66 const struct mei_cl_device_id
*id
);
67 int (*remove
)(struct mei_cl_device
*cldev
);
70 int __mei_cldev_driver_register(struct mei_cl_driver
*cldrv
,
71 struct module
*owner
);
72 #define mei_cldev_driver_register(cldrv) \
73 __mei_cldev_driver_register(cldrv, THIS_MODULE)
75 void mei_cldev_driver_unregister(struct mei_cl_driver
*cldrv
);
77 ssize_t
mei_cldev_send(struct mei_cl_device
*cldev
, u8
*buf
, size_t length
);
78 ssize_t
mei_cldev_recv(struct mei_cl_device
*cldev
, u8
*buf
, size_t length
);
80 int mei_cldev_register_event_cb(struct mei_cl_device
*cldev
,
81 unsigned long event_mask
,
82 mei_cldev_event_cb_t read_cb
, void *context
);
84 #define MEI_CL_EVENT_RX 0
85 #define MEI_CL_EVENT_TX 1
86 #define MEI_CL_EVENT_NOTIF 2
88 const uuid_le
*mei_cldev_uuid(const struct mei_cl_device
*cldev
);
89 u8
mei_cldev_ver(const struct mei_cl_device
*cldev
);
91 void *mei_cldev_get_drvdata(const struct mei_cl_device
*cldev
);
92 void mei_cldev_set_drvdata(struct mei_cl_device
*cldev
, void *data
);
94 int mei_cldev_enable(struct mei_cl_device
*cldev
);
95 int mei_cldev_disable(struct mei_cl_device
*cldev
);
96 bool mei_cldev_enabled(struct mei_cl_device
*cldev
);
98 #endif /* _LINUX_MEI_CL_BUS_H */