Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Intel Management Engine Interface (Intel MEI) Linux driver |
Tomas Winkler | 733ba91c | 2012-02-09 19:25:53 +0200 | [diff] [blame] | 4 | * Copyright (c) 2003-2012, Intel Corporation. |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 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_DEV_H_ |
| 18 | #define _MEI_DEV_H_ |
| 19 | |
| 20 | #include <linux/types.h> |
Oren Weil | 9ce178e | 2011-09-07 09:03:09 +0300 | [diff] [blame] | 21 | #include <linux/watchdog.h> |
Tomas Winkler | 744f0f2 | 2012-11-11 17:38:02 +0200 | [diff] [blame] | 22 | #include <linux/poll.h> |
Tomas Winkler | 4f3afe1 | 2012-05-09 16:38:59 +0300 | [diff] [blame] | 23 | #include <linux/mei.h> |
Tomas Winkler | 66ef5ea | 2012-12-25 19:06:02 +0200 | [diff] [blame^] | 24 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 25 | #include "hw.h" |
Tomas Winkler | 66ef5ea | 2012-12-25 19:06:02 +0200 | [diff] [blame^] | 26 | #include "hw-me.h" |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 27 | |
| 28 | /* |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 29 | * watch dog definition |
| 30 | */ |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 31 | #define MEI_WD_HDR_SIZE 4 |
| 32 | #define MEI_WD_STOP_MSG_SIZE MEI_WD_HDR_SIZE |
| 33 | #define MEI_WD_START_MSG_SIZE (MEI_WD_HDR_SIZE + 16) |
| 34 | |
| 35 | #define MEI_WD_DEFAULT_TIMEOUT 120 /* seconds */ |
| 36 | #define MEI_WD_MIN_TIMEOUT 120 /* seconds */ |
| 37 | #define MEI_WD_MAX_TIMEOUT 65535 /* seconds */ |
| 38 | |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 39 | #define MEI_WD_STOP_TIMEOUT 10 /* msecs */ |
| 40 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 41 | #define MEI_WD_STATE_INDEPENDENCE_MSG_SENT (1 << 0) |
| 42 | |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 43 | #define MEI_RD_MSG_BUF_SIZE (128 * sizeof(u32)) |
| 44 | |
Oren Weil | 9ce178e | 2011-09-07 09:03:09 +0300 | [diff] [blame] | 45 | |
| 46 | /* |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 47 | * AMTHI Client UUID |
| 48 | */ |
| 49 | extern const uuid_le mei_amthi_guid; |
| 50 | |
| 51 | /* |
| 52 | * Watchdog Client UUID |
| 53 | */ |
| 54 | extern const uuid_le mei_wd_guid; |
| 55 | |
| 56 | /* |
| 57 | * Watchdog independence state message |
| 58 | */ |
| 59 | extern const u8 mei_wd_state_independence_msg[3][4]; |
| 60 | |
| 61 | /* |
Tomas Winkler | 1e2776c | 2012-08-24 00:35:58 +0300 | [diff] [blame] | 62 | * Number of Maximum MEI Clients |
| 63 | */ |
| 64 | #define MEI_CLIENTS_MAX 256 |
| 65 | |
| 66 | /* |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 67 | * Number of File descriptors/handles |
| 68 | * that can be opened to the driver. |
| 69 | * |
Tomas Winkler | 1e2776c | 2012-08-24 00:35:58 +0300 | [diff] [blame] | 70 | * Limit to 253: 256 Total Clients |
| 71 | * minus internal client for MEI Bus Messags |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 72 | * minus internal client for AMTHI |
| 73 | * minus internal client for Watchdog |
| 74 | */ |
Tomas Winkler | 1e2776c | 2012-08-24 00:35:58 +0300 | [diff] [blame] | 75 | #define MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 3) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 76 | |
Tomas Winkler | 1d3f3da | 2012-12-25 19:06:01 +0200 | [diff] [blame] | 77 | /* |
| 78 | * Internal Clients Number |
| 79 | */ |
| 80 | #define MEI_WD_HOST_CLIENT_ID 1 |
| 81 | #define MEI_IAMTHIF_HOST_CLIENT_ID 2 |
| 82 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 83 | |
| 84 | /* File state */ |
| 85 | enum file_state { |
| 86 | MEI_FILE_INITIALIZING = 0, |
| 87 | MEI_FILE_CONNECTING, |
| 88 | MEI_FILE_CONNECTED, |
| 89 | MEI_FILE_DISCONNECTING, |
| 90 | MEI_FILE_DISCONNECTED |
| 91 | }; |
| 92 | |
| 93 | /* MEI device states */ |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 94 | enum mei_dev_state { |
| 95 | MEI_DEV_INITIALIZING = 0, |
| 96 | MEI_DEV_INIT_CLIENTS, |
| 97 | MEI_DEV_ENABLED, |
| 98 | MEI_DEV_RESETING, |
| 99 | MEI_DEV_DISABLED, |
| 100 | MEI_DEV_RECOVERING_FROM_RESET, |
| 101 | MEI_DEV_POWER_DOWN, |
| 102 | MEI_DEV_POWER_UP |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 103 | }; |
| 104 | |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 105 | const char *mei_dev_state_str(int state); |
| 106 | |
Justin P. Mattock | 5f9092f3 | 2012-03-12 07:18:09 -0700 | [diff] [blame] | 107 | /* init clients states*/ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 108 | enum mei_init_clients_states { |
| 109 | MEI_START_MESSAGE = 0, |
| 110 | MEI_ENUM_CLIENTS_MESSAGE, |
| 111 | MEI_CLIENT_PROPERTIES_MESSAGE |
| 112 | }; |
| 113 | |
| 114 | enum iamthif_states { |
| 115 | MEI_IAMTHIF_IDLE, |
| 116 | MEI_IAMTHIF_WRITING, |
| 117 | MEI_IAMTHIF_FLOW_CONTROL, |
| 118 | MEI_IAMTHIF_READING, |
| 119 | MEI_IAMTHIF_READ_COMPLETE |
| 120 | }; |
| 121 | |
| 122 | enum mei_file_transaction_states { |
| 123 | MEI_IDLE, |
| 124 | MEI_WRITING, |
| 125 | MEI_WRITE_COMPLETE, |
| 126 | MEI_FLOW_CONTROL, |
| 127 | MEI_READING, |
| 128 | MEI_READ_COMPLETE |
| 129 | }; |
| 130 | |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 131 | enum mei_wd_states { |
| 132 | MEI_WD_IDLE, |
| 133 | MEI_WD_RUNNING, |
| 134 | MEI_WD_STOPPING, |
| 135 | }; |
| 136 | |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 137 | /** |
| 138 | * enum mei_cb_file_ops - file operation associated with the callback |
| 139 | * @MEI_FOP_READ - read |
| 140 | * @MEI_FOP_WRITE - write |
| 141 | * @MEI_FOP_IOCTL - ioctl |
| 142 | * @MEI_FOP_OPEN - open |
| 143 | * @MEI_FOP_CLOSE - close |
| 144 | */ |
| 145 | enum mei_cb_file_ops { |
| 146 | MEI_FOP_READ = 0, |
| 147 | MEI_FOP_WRITE, |
| 148 | MEI_FOP_IOCTL, |
| 149 | MEI_FOP_OPEN, |
| 150 | MEI_FOP_CLOSE |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | /* |
| 154 | * Intel MEI message data struct |
| 155 | */ |
| 156 | struct mei_message_data { |
| 157 | u32 size; |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 158 | unsigned char *data; |
Tomas Winkler | f060939 | 2012-09-11 00:43:21 +0300 | [diff] [blame] | 159 | }; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 160 | |
| 161 | |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 162 | struct mei_cl; |
| 163 | |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 164 | /** |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 165 | * struct mei_cl_cb - file operation callback structure |
| 166 | * |
| 167 | * @cl - file client who is running this operation |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 168 | * @fop_type - file operation type |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 169 | */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 170 | struct mei_cl_cb { |
Tomas Winkler | fb601ad | 2012-10-15 12:06:48 +0200 | [diff] [blame] | 171 | struct list_head list; |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 172 | struct mei_cl *cl; |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 173 | enum mei_cb_file_ops fop_type; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 174 | struct mei_message_data request_buffer; |
| 175 | struct mei_message_data response_buffer; |
Tomas Winkler | ebb108ef | 2012-10-09 16:50:16 +0200 | [diff] [blame] | 176 | unsigned long buf_idx; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 177 | unsigned long read_time; |
| 178 | struct file *file_object; |
| 179 | }; |
| 180 | |
| 181 | /* MEI client instance carried as file->pirvate_data*/ |
| 182 | struct mei_cl { |
| 183 | struct list_head link; |
| 184 | struct mei_device *dev; |
| 185 | enum file_state state; |
| 186 | wait_queue_head_t tx_wait; |
| 187 | wait_queue_head_t rx_wait; |
| 188 | wait_queue_head_t wait; |
| 189 | int read_pending; |
| 190 | int status; |
| 191 | /* ID of client connected */ |
| 192 | u8 host_client_id; |
| 193 | u8 me_client_id; |
| 194 | u8 mei_flow_ctrl_creds; |
| 195 | u8 timer_count; |
| 196 | enum mei_file_transaction_states reading_state; |
| 197 | enum mei_file_transaction_states writing_state; |
| 198 | int sm_state; |
| 199 | struct mei_cl_cb *read_cb; |
| 200 | }; |
| 201 | |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 202 | /** |
Tomas Winkler | 5fb54fb | 2012-11-18 15:13:15 +0200 | [diff] [blame] | 203 | * struct mei_device - MEI private device struct |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 204 | * @hbuf_depth - depth of host(write) buffer |
Tomas Winkler | 5fb54fb | 2012-11-18 15:13:15 +0200 | [diff] [blame] | 205 | * @wr_ext_msg - buffer for hbm control responses (set in read cycle) |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 206 | */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 207 | struct mei_device { |
| 208 | struct pci_dev *pdev; /* pointer to pci device struct */ |
| 209 | /* |
| 210 | * lists of queues |
| 211 | */ |
Tomas Winkler | e773efc | 2012-11-11 17:37:58 +0200 | [diff] [blame] | 212 | /* array of pointers to aio lists */ |
Tomas Winkler | fb601ad | 2012-10-15 12:06:48 +0200 | [diff] [blame] | 213 | struct mei_cl_cb read_list; /* driver read queue */ |
| 214 | struct mei_cl_cb write_list; /* driver write queue */ |
| 215 | struct mei_cl_cb write_waiting_list; /* write waiting queue */ |
| 216 | struct mei_cl_cb ctrl_wr_list; /* managed write IOCTL list */ |
| 217 | struct mei_cl_cb ctrl_rd_list; /* managed read IOCTL list */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 218 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 219 | /* |
| 220 | * list of files |
| 221 | */ |
| 222 | struct list_head file_list; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 223 | long open_handle_count; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 224 | /* |
| 225 | * memory of device |
| 226 | */ |
| 227 | unsigned int mem_base; |
| 228 | unsigned int mem_length; |
| 229 | void __iomem *mem_addr; |
| 230 | /* |
| 231 | * lock for the device |
| 232 | */ |
| 233 | struct mutex device_lock; /* device lock */ |
Oren Weil | a61c653 | 2011-09-07 09:03:13 +0300 | [diff] [blame] | 234 | struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */ |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 235 | bool recvd_msg; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 236 | /* |
| 237 | * hw states of host and fw(ME) |
| 238 | */ |
| 239 | u32 host_hw_state; |
| 240 | u32 me_hw_state; |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 241 | u8 hbuf_depth; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 242 | /* |
| 243 | * waiting queue for receive message from FW |
| 244 | */ |
| 245 | wait_queue_head_t wait_recvd_msg; |
| 246 | wait_queue_head_t wait_stop_wd; |
| 247 | |
| 248 | /* |
| 249 | * mei device states |
| 250 | */ |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 251 | enum mei_dev_state dev_state; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 252 | enum mei_init_clients_states init_clients_state; |
| 253 | u16 init_clients_timer; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 254 | bool need_reset; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 255 | |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 256 | unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE]; /* control messages */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 257 | u32 rd_msg_hdr; |
Tomas Winkler | 5fb54fb | 2012-11-18 15:13:15 +0200 | [diff] [blame] | 258 | u32 wr_msg_buf[128]; /* used for control messages */ |
| 259 | struct { |
| 260 | struct mei_msg_hdr hdr; |
| 261 | unsigned char data[4]; /* All HBM messages are 4 bytes */ |
| 262 | } wr_ext_msg; /* for control responses */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 263 | |
| 264 | struct hbm_version version; |
| 265 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 266 | struct mei_me_client *me_clients; /* Note: memory has to be allocated */ |
| 267 | DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX); |
| 268 | DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX); |
Tomas Winkler | cf9673d | 2011-06-06 10:44:33 +0300 | [diff] [blame] | 269 | u8 me_clients_num; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 270 | u8 me_client_presentation_num; |
| 271 | u8 me_client_index; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 272 | bool mei_host_buffer_is_empty; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 273 | |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 274 | struct mei_cl wd_cl; |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 275 | enum mei_wd_states wd_state; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 276 | bool wd_pending; |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 277 | u16 wd_timeout; |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 278 | unsigned char wd_data[MEI_WD_START_MSG_SIZE]; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 279 | |
| 280 | |
Tomas Winkler | e773efc | 2012-11-11 17:37:58 +0200 | [diff] [blame] | 281 | /* amthif list for cmd waiting */ |
| 282 | struct mei_cl_cb amthif_cmd_list; |
| 283 | /* driver managed amthif list for reading completed amthif cmd data */ |
| 284 | struct mei_cl_cb amthif_rd_complete_list; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 285 | struct file *iamthif_file_object; |
| 286 | struct mei_cl iamthif_cl; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 287 | struct mei_cl_cb *iamthif_current_cb; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 288 | int iamthif_mtu; |
| 289 | unsigned long iamthif_timer; |
| 290 | u32 iamthif_stall_timer; |
| 291 | unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */ |
| 292 | u32 iamthif_msg_buf_size; |
| 293 | u32 iamthif_msg_buf_index; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 294 | enum iamthif_states iamthif_state; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 295 | bool iamthif_flow_control_pending; |
| 296 | bool iamthif_ioctl; |
| 297 | bool iamthif_canceled; |
Samuel Ortiz | c1174c0 | 2012-11-18 15:13:20 +0200 | [diff] [blame] | 298 | |
| 299 | struct work_struct init_work; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 300 | }; |
| 301 | |
Tomas Winkler | 3870c32 | 2012-11-01 21:17:14 +0200 | [diff] [blame] | 302 | static inline unsigned long mei_secs_to_jiffies(unsigned long sec) |
| 303 | { |
| 304 | return msecs_to_jiffies(sec * MSEC_PER_SEC); |
| 305 | } |
| 306 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 307 | |
| 308 | /* |
| 309 | * mei init function prototypes |
| 310 | */ |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 311 | struct mei_device *mei_device_init(struct pci_dev *pdev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 312 | void mei_reset(struct mei_device *dev, int interrupts); |
| 313 | int mei_hw_init(struct mei_device *dev); |
| 314 | int mei_task_initialize_clients(void *data); |
| 315 | int mei_initialize_clients(struct mei_device *dev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 316 | int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl); |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 317 | void mei_allocate_me_clients_storage(struct mei_device *dev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 318 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 319 | |
Tomas Winkler | ff8b2f4 | 2012-11-11 17:38:03 +0200 | [diff] [blame] | 320 | int mei_me_cl_link(struct mei_device *dev, struct mei_cl *cl, |
Tomas Winkler | 07b509b | 2012-07-23 14:05:39 +0300 | [diff] [blame] | 321 | const uuid_le *cguid, u8 host_client_id); |
Tomas Winkler | ff8b2f4 | 2012-11-11 17:38:03 +0200 | [diff] [blame] | 322 | void mei_me_cl_unlink(struct mei_device *dev, struct mei_cl *cl); |
Tomas Winkler | 07b509b | 2012-07-23 14:05:39 +0300 | [diff] [blame] | 323 | int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid); |
| 324 | int mei_me_cl_by_id(struct mei_device *dev, u8 client_id); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 325 | |
| 326 | /* |
Tomas Winkler | 601a1ef | 2012-10-09 16:50:20 +0200 | [diff] [blame] | 327 | * MEI IO Functions |
Tomas Winkler | 0288c7c | 2011-06-06 10:44:34 +0300 | [diff] [blame] | 328 | */ |
Tomas Winkler | 664df38 | 2012-10-11 16:35:08 +0200 | [diff] [blame] | 329 | struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, struct file *fp); |
Tomas Winkler | 601a1ef | 2012-10-09 16:50:20 +0200 | [diff] [blame] | 330 | void mei_io_cb_free(struct mei_cl_cb *priv_cb); |
Tomas Winkler | 664df38 | 2012-10-11 16:35:08 +0200 | [diff] [blame] | 331 | int mei_io_cb_alloc_req_buf(struct mei_cl_cb *cb, size_t length); |
| 332 | int mei_io_cb_alloc_resp_buf(struct mei_cl_cb *cb, size_t length); |
| 333 | |
Tomas Winkler | 601a1ef | 2012-10-09 16:50:20 +0200 | [diff] [blame] | 334 | |
Tomas Winkler | fb601ad | 2012-10-15 12:06:48 +0200 | [diff] [blame] | 335 | /** |
| 336 | * mei_io_list_init - Sets up a queue list. |
| 337 | * |
| 338 | * @list: An instance cl callback structure |
| 339 | */ |
| 340 | static inline void mei_io_list_init(struct mei_cl_cb *list) |
| 341 | { |
| 342 | INIT_LIST_HEAD(&list->list); |
| 343 | } |
| 344 | void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl); |
Tomas Winkler | 0288c7c | 2011-06-06 10:44:34 +0300 | [diff] [blame] | 345 | |
| 346 | /* |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 347 | * MEI ME Client Functions |
| 348 | */ |
| 349 | |
| 350 | struct mei_cl *mei_cl_allocate(struct mei_device *dev); |
Tomas Winkler | 0288c7c | 2011-06-06 10:44:34 +0300 | [diff] [blame] | 351 | void mei_cl_init(struct mei_cl *cl, struct mei_device *dev); |
| 352 | int mei_cl_flush_queues(struct mei_cl *cl); |
| 353 | /** |
| 354 | * mei_cl_cmp_id - tells if file private data have same id |
| 355 | * |
| 356 | * @fe1: private data of 1. file object |
| 357 | * @fe2: private data of 2. file object |
| 358 | * |
| 359 | * returns true - if ids are the same and not NULL |
| 360 | */ |
| 361 | static inline bool mei_cl_cmp_id(const struct mei_cl *cl1, |
| 362 | const struct mei_cl *cl2) |
| 363 | { |
| 364 | return cl1 && cl2 && |
| 365 | (cl1->host_client_id == cl2->host_client_id) && |
| 366 | (cl1->me_client_id == cl2->me_client_id); |
| 367 | } |
| 368 | |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 369 | |
| 370 | |
| 371 | /* |
| 372 | * MEI Host Client Functions |
| 373 | */ |
| 374 | void mei_host_start_message(struct mei_device *dev); |
| 375 | void mei_host_enum_clients_message(struct mei_device *dev); |
Samuel Ortiz | c1174c0 | 2012-11-18 15:13:20 +0200 | [diff] [blame] | 376 | int mei_host_client_enumerate(struct mei_device *dev); |
| 377 | void mei_host_client_init(struct work_struct *work); |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 378 | |
| 379 | /* |
| 380 | * MEI interrupt functions prototype |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 381 | */ |
| 382 | irqreturn_t mei_interrupt_quick_handler(int irq, void *dev_id); |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 383 | irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id); |
Oren Weil | a61c653 | 2011-09-07 09:03:13 +0300 | [diff] [blame] | 384 | void mei_timer(struct work_struct *work); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 385 | |
| 386 | /* |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 387 | * MEI input output function prototype |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 388 | */ |
| 389 | int mei_ioctl_connect_client(struct file *file, |
| 390 | struct mei_connect_client_data *data); |
| 391 | |
| 392 | int mei_start_read(struct mei_device *dev, struct mei_cl *cl); |
| 393 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 394 | |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 395 | /* |
| 396 | * AMTHIF - AMT Host Interface Functions |
| 397 | */ |
| 398 | void mei_amthif_reset_params(struct mei_device *dev); |
| 399 | |
| 400 | void mei_amthif_host_init(struct mei_device *dev); |
| 401 | |
| 402 | int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb); |
| 403 | |
| 404 | int mei_amthif_read(struct mei_device *dev, struct file *file, |
Tomas Winkler | 744f0f2 | 2012-11-11 17:38:02 +0200 | [diff] [blame] | 405 | char __user *ubuf, size_t length, loff_t *offset); |
| 406 | |
| 407 | unsigned int mei_amthif_poll(struct mei_device *dev, |
| 408 | struct file *file, poll_table *wait); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 409 | |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 410 | int mei_amthif_release(struct mei_device *dev, struct file *file); |
| 411 | |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 412 | struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev, |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 413 | struct file *file); |
| 414 | |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 415 | void mei_amthif_run_next_cmd(struct mei_device *dev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 416 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 417 | |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 418 | int mei_amthif_read_message(struct mei_cl_cb *complete_list, |
| 419 | struct mei_device *dev, struct mei_msg_hdr *mei_hdr); |
| 420 | |
Tomas Winkler | 24c656e | 2012-11-18 15:13:17 +0200 | [diff] [blame] | 421 | int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots, |
| 422 | struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list); |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 423 | |
| 424 | void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb); |
| 425 | int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list, |
| 426 | struct mei_device *dev, struct mei_msg_hdr *mei_hdr); |
| 427 | int mei_amthif_irq_read(struct mei_device *dev, s32 *slots); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 428 | |
| 429 | /* |
| 430 | * Register Access Function |
| 431 | */ |
| 432 | |
| 433 | /** |
| 434 | * mei_reg_read - Reads 32bit data from the mei device |
| 435 | * |
| 436 | * @dev: the device structure |
| 437 | * @offset: offset from which to read the data |
| 438 | * |
Oren Weil | 92eb401 | 2011-09-07 09:03:08 +0300 | [diff] [blame] | 439 | * returns register value (u32) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 440 | */ |
Tomas Winkler | 4a0d6a7 | 2012-07-04 19:24:49 +0300 | [diff] [blame] | 441 | static inline u32 mei_reg_read(const struct mei_device *dev, |
| 442 | unsigned long offset) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 443 | { |
| 444 | return ioread32(dev->mem_addr + offset); |
| 445 | } |
| 446 | |
| 447 | /** |
| 448 | * mei_reg_write - Writes 32bit data to the mei device |
| 449 | * |
| 450 | * @dev: the device structure |
| 451 | * @offset: offset from which to write the data |
Oren Weil | 92eb401 | 2011-09-07 09:03:08 +0300 | [diff] [blame] | 452 | * @value: register value to write (u32) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 453 | */ |
Tomas Winkler | 4a0d6a7 | 2012-07-04 19:24:49 +0300 | [diff] [blame] | 454 | static inline void mei_reg_write(const struct mei_device *dev, |
| 455 | unsigned long offset, u32 value) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 456 | { |
| 457 | iowrite32(value, dev->mem_addr + offset); |
| 458 | } |
| 459 | |
| 460 | /** |
| 461 | * mei_hcsr_read - Reads 32bit data from the host CSR |
| 462 | * |
| 463 | * @dev: the device structure |
| 464 | * |
| 465 | * returns the byte read. |
| 466 | */ |
Tomas Winkler | 4a0d6a7 | 2012-07-04 19:24:49 +0300 | [diff] [blame] | 467 | static inline u32 mei_hcsr_read(const struct mei_device *dev) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 468 | { |
| 469 | return mei_reg_read(dev, H_CSR); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * mei_mecsr_read - Reads 32bit data from the ME CSR |
| 474 | * |
| 475 | * @dev: the device structure |
| 476 | * |
| 477 | * returns ME_CSR_HA register value (u32) |
| 478 | */ |
Tomas Winkler | 4a0d6a7 | 2012-07-04 19:24:49 +0300 | [diff] [blame] | 479 | static inline u32 mei_mecsr_read(const struct mei_device *dev) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 480 | { |
| 481 | return mei_reg_read(dev, ME_CSR_HA); |
| 482 | } |
| 483 | |
| 484 | /** |
| 485 | * get_me_cb_rw - Reads 32bit data from the mei ME_CB_RW register |
| 486 | * |
| 487 | * @dev: the device structure |
| 488 | * |
| 489 | * returns ME_CB_RW register value (u32) |
| 490 | */ |
Tomas Winkler | 4a0d6a7 | 2012-07-04 19:24:49 +0300 | [diff] [blame] | 491 | static inline u32 mei_mecbrw_read(const struct mei_device *dev) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 492 | { |
| 493 | return mei_reg_read(dev, ME_CB_RW); |
| 494 | } |
| 495 | |
| 496 | |
| 497 | /* |
| 498 | * mei interface function prototypes |
| 499 | */ |
| 500 | void mei_hcsr_set(struct mei_device *dev); |
| 501 | void mei_csr_clear_his(struct mei_device *dev); |
| 502 | |
| 503 | void mei_enable_interrupts(struct mei_device *dev); |
| 504 | void mei_disable_interrupts(struct mei_device *dev); |
| 505 | |
Tomas Winkler | 5bd6471 | 2012-11-18 15:13:14 +0200 | [diff] [blame] | 506 | static inline struct mei_msg_hdr *mei_hbm_hdr(u32 *buf, size_t length) |
| 507 | { |
| 508 | struct mei_msg_hdr *hdr = (struct mei_msg_hdr *)buf; |
| 509 | hdr->host_addr = 0; |
| 510 | hdr->me_addr = 0; |
| 511 | hdr->length = length; |
| 512 | hdr->msg_complete = 1; |
| 513 | hdr->reserved = 0; |
| 514 | return hdr; |
| 515 | } |
| 516 | |
Tomas Winkler | 15d4acc | 2012-12-25 19:06:00 +0200 | [diff] [blame] | 517 | #define MEI_HDR_FMT "hdr:host=%02d me=%02d len=%d comp=%1d" |
| 518 | #define MEI_HDR_PRM(hdr) \ |
| 519 | (hdr)->host_addr, (hdr)->me_addr, \ |
| 520 | (hdr)->length, (hdr)->msg_complete |
| 521 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 522 | #endif |