Tomas Winkler | 0edb23f | 2013-01-08 23:07:12 +0200 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Intel Management Engine Interface (Intel MEI) Linux driver |
| 4 | * Copyright (c) 2003-2012, Intel Corporation. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms and conditions of the GNU General Public License, |
| 8 | * version 2, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | * more details. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #ifndef _MEI_HBM_H_ |
| 18 | #define _MEI_HBM_H_ |
| 19 | |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 20 | struct mei_device; |
| 21 | struct mei_msg_hdr; |
| 22 | struct mei_cl; |
| 23 | |
| 24 | /** |
| 25 | * enum mei_hbm_state - host bus message protocol state |
| 26 | * |
| 27 | * @MEI_HBM_IDLE : protocol not started |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 28 | * @MEI_HBM_STARTING : start request message was sent |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 29 | * @MEI_HBM_ENUM_CLIENTS : enumeration request was sent |
| 30 | * @MEI_HBM_CLIENT_PROPERTIES : acquiring clients properties |
Tomas Winkler | 5ebdc36 | 2014-11-05 11:44:48 +0200 | [diff] [blame] | 31 | * @MEI_HBM_STARTED : enumeration was completed |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 32 | * @MEI_HBM_STOPPED : stopping exchange |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 33 | */ |
| 34 | enum mei_hbm_state { |
| 35 | MEI_HBM_IDLE = 0, |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 36 | MEI_HBM_STARTING, |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 37 | MEI_HBM_ENUM_CLIENTS, |
| 38 | MEI_HBM_CLIENT_PROPERTIES, |
Tomas Winkler | 5ebdc36 | 2014-11-05 11:44:48 +0200 | [diff] [blame] | 39 | MEI_HBM_STARTED, |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 40 | MEI_HBM_STOPPED, |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 41 | }; |
| 42 | |
Alexander Usyskin | 1beeb4b | 2014-09-29 16:31:33 +0300 | [diff] [blame] | 43 | const char *mei_hbm_state_str(enum mei_hbm_state state); |
| 44 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 45 | int mei_hbm_dispatch(struct mei_device *dev, struct mei_msg_hdr *hdr); |
Tomas Winkler | 0edb23f | 2013-01-08 23:07:12 +0200 | [diff] [blame] | 46 | |
Tomas Winkler | 66ae460 | 2014-01-08 20:19:22 +0200 | [diff] [blame] | 47 | void mei_hbm_idle(struct mei_device *dev); |
Tomas Winkler | 84b3294 | 2014-05-07 16:51:28 +0300 | [diff] [blame] | 48 | void mei_hbm_reset(struct mei_device *dev); |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 49 | int mei_hbm_start_req(struct mei_device *dev); |
| 50 | int mei_hbm_start_wait(struct mei_device *dev); |
Tomas Winkler | 0edb23f | 2013-01-08 23:07:12 +0200 | [diff] [blame] | 51 | int mei_hbm_cl_flow_control_req(struct mei_device *dev, struct mei_cl *cl); |
| 52 | int mei_hbm_cl_disconnect_req(struct mei_device *dev, struct mei_cl *cl); |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 53 | int mei_hbm_cl_disconnect_rsp(struct mei_device *dev, struct mei_cl *cl); |
Tomas Winkler | 0edb23f | 2013-01-08 23:07:12 +0200 | [diff] [blame] | 54 | int mei_hbm_cl_connect_req(struct mei_device *dev, struct mei_cl *cl); |
Tomas Winkler | 2c9b48a | 2013-06-16 09:16:31 +0300 | [diff] [blame] | 55 | bool mei_hbm_version_is_supported(struct mei_device *dev); |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 56 | int mei_hbm_pg(struct mei_device *dev, u8 pg_cmd); |
Alexander Usyskin | 859ef2f | 2015-08-02 22:20:54 +0300 | [diff] [blame] | 57 | void mei_hbm_pg_resume(struct mei_device *dev); |
Tomas Winkler | 965ae37 | 2015-07-26 09:54:16 +0300 | [diff] [blame] | 58 | int mei_hbm_cl_notify_req(struct mei_device *dev, |
| 59 | struct mei_cl *cl, u8 request); |
Tomas Winkler | 0edb23f | 2013-01-08 23:07:12 +0200 | [diff] [blame] | 60 | |
| 61 | #endif /* _MEI_HBM_H_ */ |
| 62 | |