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> |
Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame] | 24 | #include <linux/mei_cl_bus.h> |
Tomas Winkler | 66ef5ea | 2012-12-25 19:06:02 +0200 | [diff] [blame] | 25 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 26 | #include "hw.h" |
Tomas Winkler | 9dc64d6 | 2013-01-08 23:07:17 +0200 | [diff] [blame] | 27 | #include "hw-me-regs.h" |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 28 | |
| 29 | /* |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 30 | * watch dog definition |
| 31 | */ |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 32 | #define MEI_WD_HDR_SIZE 4 |
| 33 | #define MEI_WD_STOP_MSG_SIZE MEI_WD_HDR_SIZE |
| 34 | #define MEI_WD_START_MSG_SIZE (MEI_WD_HDR_SIZE + 16) |
| 35 | |
| 36 | #define MEI_WD_DEFAULT_TIMEOUT 120 /* seconds */ |
| 37 | #define MEI_WD_MIN_TIMEOUT 120 /* seconds */ |
| 38 | #define MEI_WD_MAX_TIMEOUT 65535 /* seconds */ |
| 39 | |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 40 | #define MEI_WD_STOP_TIMEOUT 10 /* msecs */ |
| 41 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 42 | #define MEI_WD_STATE_INDEPENDENCE_MSG_SENT (1 << 0) |
| 43 | |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 44 | #define MEI_RD_MSG_BUF_SIZE (128 * sizeof(u32)) |
| 45 | |
Oren Weil | 9ce178e | 2011-09-07 09:03:09 +0300 | [diff] [blame] | 46 | |
| 47 | /* |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 48 | * AMTHI Client UUID |
| 49 | */ |
Tomas Winkler | 1a1aca4 | 2013-01-08 23:07:21 +0200 | [diff] [blame] | 50 | extern const uuid_le mei_amthif_guid; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 51 | |
| 52 | /* |
| 53 | * Watchdog Client UUID |
| 54 | */ |
| 55 | extern const uuid_le mei_wd_guid; |
| 56 | |
| 57 | /* |
| 58 | * Watchdog independence state message |
| 59 | */ |
| 60 | extern const u8 mei_wd_state_independence_msg[3][4]; |
| 61 | |
| 62 | /* |
Tomas Winkler | 1e2776c | 2012-08-24 00:35:58 +0300 | [diff] [blame] | 63 | * Number of Maximum MEI Clients |
| 64 | */ |
| 65 | #define MEI_CLIENTS_MAX 256 |
| 66 | |
| 67 | /* |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 68 | * Number of File descriptors/handles |
| 69 | * that can be opened to the driver. |
| 70 | * |
Tomas Winkler | 781d0d8 | 2013-01-08 23:07:22 +0200 | [diff] [blame] | 71 | * Limit to 255: 256 Total Clients |
Tomas Winkler | 1e2776c | 2012-08-24 00:35:58 +0300 | [diff] [blame] | 72 | * minus internal client for MEI Bus Messags |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 73 | */ |
Tomas Winkler | 781d0d8 | 2013-01-08 23:07:22 +0200 | [diff] [blame] | 74 | #define MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 1) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 75 | |
Tomas Winkler | 1d3f3da | 2012-12-25 19:06:01 +0200 | [diff] [blame] | 76 | /* |
| 77 | * Internal Clients Number |
| 78 | */ |
Tomas Winkler | 781d0d8 | 2013-01-08 23:07:22 +0200 | [diff] [blame] | 79 | #define MEI_HOST_CLIENT_ID_ANY (-1) |
| 80 | #define MEI_HBM_HOST_CLIENT_ID 0 /* not used, just for documentation */ |
Tomas Winkler | 1d3f3da | 2012-12-25 19:06:01 +0200 | [diff] [blame] | 81 | #define MEI_WD_HOST_CLIENT_ID 1 |
| 82 | #define MEI_IAMTHIF_HOST_CLIENT_ID 2 |
| 83 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 84 | |
| 85 | /* File state */ |
| 86 | enum file_state { |
| 87 | MEI_FILE_INITIALIZING = 0, |
| 88 | MEI_FILE_CONNECTING, |
| 89 | MEI_FILE_CONNECTED, |
| 90 | MEI_FILE_DISCONNECTING, |
| 91 | MEI_FILE_DISCONNECTED |
| 92 | }; |
| 93 | |
| 94 | /* MEI device states */ |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 95 | enum mei_dev_state { |
| 96 | MEI_DEV_INITIALIZING = 0, |
| 97 | MEI_DEV_INIT_CLIENTS, |
| 98 | MEI_DEV_ENABLED, |
| 99 | MEI_DEV_RESETING, |
| 100 | MEI_DEV_DISABLED, |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 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 | |
Tomas Winkler | db7da79 | 2012-12-25 19:06:05 +0200 | [diff] [blame] | 161 | /** |
| 162 | * struct mei_me_client - representation of me (fw) client |
| 163 | * |
| 164 | * @props - client properties |
| 165 | * @client_id - me client id |
| 166 | * @mei_flow_ctrl_creds - flow control credits |
| 167 | */ |
| 168 | struct mei_me_client { |
| 169 | struct mei_client_properties props; |
| 170 | u8 client_id; |
| 171 | u8 mei_flow_ctrl_creds; |
| 172 | }; |
| 173 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 174 | |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 175 | struct mei_cl; |
| 176 | |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 177 | /** |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 178 | * struct mei_cl_cb - file operation callback structure |
| 179 | * |
| 180 | * @cl - file client who is running this operation |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 181 | * @fop_type - file operation type |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 182 | */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 183 | struct mei_cl_cb { |
Tomas Winkler | fb601ad | 2012-10-15 12:06:48 +0200 | [diff] [blame] | 184 | struct list_head list; |
Tomas Winkler | db3ed43 | 2012-11-11 17:37:59 +0200 | [diff] [blame] | 185 | struct mei_cl *cl; |
Tomas Winkler | 4b8960b | 2012-11-11 17:38:00 +0200 | [diff] [blame] | 186 | enum mei_cb_file_ops fop_type; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 187 | struct mei_message_data request_buffer; |
| 188 | struct mei_message_data response_buffer; |
Tomas Winkler | ebb108ef | 2012-10-09 16:50:16 +0200 | [diff] [blame] | 189 | unsigned long buf_idx; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 190 | unsigned long read_time; |
| 191 | struct file *file_object; |
| 192 | }; |
| 193 | |
| 194 | /* MEI client instance carried as file->pirvate_data*/ |
| 195 | struct mei_cl { |
| 196 | struct list_head link; |
| 197 | struct mei_device *dev; |
| 198 | enum file_state state; |
| 199 | wait_queue_head_t tx_wait; |
| 200 | wait_queue_head_t rx_wait; |
| 201 | wait_queue_head_t wait; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 202 | int status; |
| 203 | /* ID of client connected */ |
| 204 | u8 host_client_id; |
| 205 | u8 me_client_id; |
| 206 | u8 mei_flow_ctrl_creds; |
| 207 | u8 timer_count; |
| 208 | enum mei_file_transaction_states reading_state; |
| 209 | enum mei_file_transaction_states writing_state; |
| 210 | int sm_state; |
| 211 | struct mei_cl_cb *read_cb; |
| 212 | }; |
| 213 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 214 | /** struct mei_hw_ops |
| 215 | * |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 216 | * @host_is_ready - query for host readiness |
| 217 | |
| 218 | * @hw_is_ready - query if hw is ready |
| 219 | * @hw_reset - reset hw |
Tomas Winkler | aafae7e | 2013-03-11 18:27:03 +0200 | [diff] [blame] | 220 | * @hw_start - start hw after reset |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 221 | * @hw_config - configure hw |
| 222 | |
| 223 | * @intr_clear - clear pending interrupts |
| 224 | * @intr_enable - enable interrupts |
| 225 | * @intr_disable - disable interrupts |
| 226 | |
| 227 | * @hbuf_free_slots - query for write buffer empty slots |
| 228 | * @hbuf_is_ready - query if write buffer is empty |
| 229 | * @hbuf_max_len - query for write buffer max len |
| 230 | |
| 231 | * @write - write a message to FW |
| 232 | |
| 233 | * @rdbuf_full_slots - query how many slots are filled |
| 234 | |
| 235 | * @read_hdr - get first 4 bytes (header) |
| 236 | * @read - read a buffer from the FW |
| 237 | */ |
| 238 | struct mei_hw_ops { |
| 239 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 240 | bool (*host_is_ready) (struct mei_device *dev); |
| 241 | |
| 242 | bool (*hw_is_ready) (struct mei_device *dev); |
| 243 | void (*hw_reset) (struct mei_device *dev, bool enable); |
Tomas Winkler | aafae7e | 2013-03-11 18:27:03 +0200 | [diff] [blame] | 244 | int (*hw_start) (struct mei_device *dev); |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 245 | void (*hw_config) (struct mei_device *dev); |
| 246 | |
| 247 | void (*intr_clear) (struct mei_device *dev); |
| 248 | void (*intr_enable) (struct mei_device *dev); |
| 249 | void (*intr_disable) (struct mei_device *dev); |
| 250 | |
| 251 | int (*hbuf_free_slots) (struct mei_device *dev); |
| 252 | bool (*hbuf_is_ready) (struct mei_device *dev); |
| 253 | size_t (*hbuf_max_len) (const struct mei_device *dev); |
| 254 | |
| 255 | int (*write)(struct mei_device *dev, |
| 256 | struct mei_msg_hdr *hdr, |
| 257 | unsigned char *buf); |
| 258 | |
| 259 | int (*rdbuf_full_slots)(struct mei_device *dev); |
| 260 | |
| 261 | u32 (*read_hdr)(const struct mei_device *dev); |
| 262 | int (*read) (struct mei_device *dev, |
| 263 | unsigned char *buf, unsigned long len); |
| 264 | }; |
| 265 | |
Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame] | 266 | /* MEI bus API*/ |
| 267 | struct mei_cl_device *mei_cl_add_device(struct mei_device *dev, |
| 268 | uuid_le uuid, char *name); |
| 269 | void mei_cl_remove_device(struct mei_cl_device *device); |
| 270 | |
Samuel Ortiz | 3e83329 | 2013-03-27 17:29:55 +0200 | [diff] [blame^] | 271 | int __mei_cl_send(struct mei_cl *cl, u8 *buf, size_t length); |
| 272 | int __mei_cl_recv(struct mei_cl *cl, u8 *buf, size_t length); |
| 273 | |
| 274 | /** |
| 275 | * struct mei_cl_transport_ops - MEI CL device transport ops |
| 276 | * This structure allows ME host clients to implement technology |
| 277 | * specific transport layers. |
| 278 | * |
| 279 | * @send: Tx hook for the device. This allows ME host clients to trap |
| 280 | * the device driver buffers before actually physically |
| 281 | * pushing it to the ME. |
| 282 | * @recv: Rx hook for the device. This allows ME host clients to trap the |
| 283 | * ME buffers before forwarding them to the device driver. |
| 284 | */ |
| 285 | struct mei_cl_transport_ops { |
| 286 | int (*send)(struct mei_cl_device *device, u8 *buf, size_t length); |
| 287 | int (*recv)(struct mei_cl_device *device, u8 *buf, size_t length); |
| 288 | }; |
| 289 | |
Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame] | 290 | /** |
| 291 | * struct mei_cl_device - MEI device handle |
| 292 | * An mei_cl_device pointer is returned from mei_add_device() |
| 293 | * and links MEI bus clients to their actual ME host client pointer. |
| 294 | * Drivers for MEI devices will get an mei_cl_device pointer |
| 295 | * when being probed and shall use it for doing ME bus I/O. |
| 296 | * |
| 297 | * @dev: linux driver model device pointer |
| 298 | * @uuid: me client uuid |
| 299 | * @cl: mei client |
Samuel Ortiz | 3e83329 | 2013-03-27 17:29:55 +0200 | [diff] [blame^] | 300 | * @ops: ME transport ops |
| 301 | * @event_cb: Drivers register this callback to get asynchronous ME |
| 302 | * events (e.g. Rx buffer pending) notifications. |
| 303 | * @events: Events bitmask sent to the driver. |
Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame] | 304 | * @priv_data: client private data |
| 305 | */ |
| 306 | struct mei_cl_device { |
| 307 | struct device dev; |
| 308 | |
| 309 | struct mei_cl *cl; |
| 310 | |
Samuel Ortiz | 3e83329 | 2013-03-27 17:29:55 +0200 | [diff] [blame^] | 311 | const struct mei_cl_transport_ops *ops; |
| 312 | |
| 313 | struct work_struct event_work; |
| 314 | mei_cl_event_cb_t event_cb; |
| 315 | void *event_context; |
| 316 | unsigned long events; |
| 317 | |
Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame] | 318 | void *priv_data; |
| 319 | }; |
| 320 | |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 321 | /** |
Tomas Winkler | 5fb54fb | 2012-11-18 15:13:15 +0200 | [diff] [blame] | 322 | * struct mei_device - MEI private device struct |
Tomas Winkler | 330dd7d | 2013-02-06 14:06:43 +0200 | [diff] [blame] | 323 | |
Tomas Winkler | fecb0d5 | 2012-12-25 19:06:04 +0200 | [diff] [blame] | 324 | * @mem_addr - mem mapped base register address |
Tomas Winkler | 330dd7d | 2013-02-06 14:06:43 +0200 | [diff] [blame] | 325 | |
| 326 | * @hbuf_depth - depth of hardware host/write buffer is slots |
| 327 | * @hbuf_is_ready - query if the host host/write buffer is ready |
| 328 | * @wr_msg - the buffer for hbm control messages |
| 329 | * @wr_ext_msg - the buffer for hbm control responses (set in read cycle) |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 330 | */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 331 | struct mei_device { |
| 332 | struct pci_dev *pdev; /* pointer to pci device struct */ |
| 333 | /* |
| 334 | * lists of queues |
| 335 | */ |
Tomas Winkler | e773efc | 2012-11-11 17:37:58 +0200 | [diff] [blame] | 336 | /* array of pointers to aio lists */ |
Tomas Winkler | fb601ad | 2012-10-15 12:06:48 +0200 | [diff] [blame] | 337 | struct mei_cl_cb read_list; /* driver read queue */ |
| 338 | struct mei_cl_cb write_list; /* driver write queue */ |
| 339 | struct mei_cl_cb write_waiting_list; /* write waiting queue */ |
| 340 | struct mei_cl_cb ctrl_wr_list; /* managed write IOCTL list */ |
| 341 | struct mei_cl_cb ctrl_rd_list; /* managed read IOCTL list */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 342 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 343 | /* |
| 344 | * list of files |
| 345 | */ |
| 346 | struct list_head file_list; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 347 | long open_handle_count; |
Tomas Winkler | fecb0d5 | 2012-12-25 19:06:04 +0200 | [diff] [blame] | 348 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 349 | /* |
| 350 | * lock for the device |
| 351 | */ |
| 352 | struct mutex device_lock; /* device lock */ |
Oren Weil | a61c653 | 2011-09-07 09:03:13 +0300 | [diff] [blame] | 353 | struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */ |
Tomas Winkler | aafae7e | 2013-03-11 18:27:03 +0200 | [diff] [blame] | 354 | |
| 355 | bool recvd_hw_ready; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 356 | bool recvd_msg; |
Tomas Winkler | 52c3456 | 2013-02-06 14:06:40 +0200 | [diff] [blame] | 357 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 358 | /* |
| 359 | * waiting queue for receive message from FW |
| 360 | */ |
Tomas Winkler | aafae7e | 2013-03-11 18:27:03 +0200 | [diff] [blame] | 361 | wait_queue_head_t wait_hw_ready; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 362 | wait_queue_head_t wait_recvd_msg; |
| 363 | wait_queue_head_t wait_stop_wd; |
| 364 | |
| 365 | /* |
| 366 | * mei device states |
| 367 | */ |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 368 | enum mei_dev_state dev_state; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 369 | enum mei_init_clients_states init_clients_state; |
| 370 | u16 init_clients_timer; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 371 | |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 372 | unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE]; /* control messages */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 373 | u32 rd_msg_hdr; |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 374 | |
Tomas Winkler | 330dd7d | 2013-02-06 14:06:43 +0200 | [diff] [blame] | 375 | /* write buffer */ |
| 376 | u8 hbuf_depth; |
| 377 | bool hbuf_is_ready; |
| 378 | |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 379 | /* used for control messages */ |
| 380 | struct { |
| 381 | struct mei_msg_hdr hdr; |
| 382 | unsigned char data[128]; |
| 383 | } wr_msg; |
| 384 | |
Tomas Winkler | 5fb54fb | 2012-11-18 15:13:15 +0200 | [diff] [blame] | 385 | struct { |
| 386 | struct mei_msg_hdr hdr; |
| 387 | unsigned char data[4]; /* All HBM messages are 4 bytes */ |
| 388 | } wr_ext_msg; /* for control responses */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 389 | |
| 390 | struct hbm_version version; |
| 391 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 392 | struct mei_me_client *me_clients; /* Note: memory has to be allocated */ |
| 393 | DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX); |
| 394 | DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX); |
Tomas Winkler | cf9673d | 2011-06-06 10:44:33 +0300 | [diff] [blame] | 395 | u8 me_clients_num; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 396 | u8 me_client_presentation_num; |
| 397 | u8 me_client_index; |
| 398 | |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 399 | struct mei_cl wd_cl; |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 400 | enum mei_wd_states wd_state; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 401 | bool wd_pending; |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 402 | u16 wd_timeout; |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 403 | unsigned char wd_data[MEI_WD_START_MSG_SIZE]; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 404 | |
| 405 | |
Tomas Winkler | e773efc | 2012-11-11 17:37:58 +0200 | [diff] [blame] | 406 | /* amthif list for cmd waiting */ |
| 407 | struct mei_cl_cb amthif_cmd_list; |
| 408 | /* driver managed amthif list for reading completed amthif cmd data */ |
| 409 | struct mei_cl_cb amthif_rd_complete_list; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 410 | struct file *iamthif_file_object; |
| 411 | struct mei_cl iamthif_cl; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 412 | struct mei_cl_cb *iamthif_current_cb; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 413 | int iamthif_mtu; |
| 414 | unsigned long iamthif_timer; |
| 415 | u32 iamthif_stall_timer; |
| 416 | unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */ |
| 417 | u32 iamthif_msg_buf_size; |
| 418 | u32 iamthif_msg_buf_index; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 419 | enum iamthif_states iamthif_state; |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 420 | bool iamthif_flow_control_pending; |
| 421 | bool iamthif_ioctl; |
| 422 | bool iamthif_canceled; |
Samuel Ortiz | c1174c0 | 2012-11-18 15:13:20 +0200 | [diff] [blame] | 423 | |
| 424 | struct work_struct init_work; |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 425 | |
| 426 | const struct mei_hw_ops *ops; |
Tomas Winkler | 52c3456 | 2013-02-06 14:06:40 +0200 | [diff] [blame] | 427 | char hw[0] __aligned(sizeof(void *)); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 428 | }; |
| 429 | |
Tomas Winkler | 3870c32 | 2012-11-01 21:17:14 +0200 | [diff] [blame] | 430 | static inline unsigned long mei_secs_to_jiffies(unsigned long sec) |
| 431 | { |
| 432 | return msecs_to_jiffies(sec * MSEC_PER_SEC); |
| 433 | } |
| 434 | |
Tomas Winkler | c8c8d08 | 2013-03-11 18:27:02 +0200 | [diff] [blame] | 435 | /** |
| 436 | * mei_data2slots - get slots - number of (dwords) from a message length |
| 437 | * + size of the mei header |
| 438 | * @length - size of the messages in bytes |
| 439 | * returns - number of slots |
| 440 | */ |
| 441 | static inline u32 mei_data2slots(size_t length) |
| 442 | { |
| 443 | return DIV_ROUND_UP(sizeof(struct mei_msg_hdr) + length, 4); |
| 444 | } |
| 445 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 446 | |
| 447 | /* |
| 448 | * mei init function prototypes |
| 449 | */ |
Tomas Winkler | 52c3456 | 2013-02-06 14:06:40 +0200 | [diff] [blame] | 450 | void mei_device_init(struct mei_device *dev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 451 | void mei_reset(struct mei_device *dev, int interrupts); |
Tomas Winkler | c4d589b | 2013-03-27 16:58:28 +0200 | [diff] [blame] | 452 | int mei_start(struct mei_device *dev); |
Tomas Winkler | 7cb035d | 2013-03-10 13:56:08 +0200 | [diff] [blame] | 453 | void mei_stop(struct mei_device *dev); |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 454 | |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 455 | /* |
| 456 | * MEI interrupt functions prototype |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 457 | */ |
Tomas Winkler | 06ecd64 | 2013-02-06 14:06:42 +0200 | [diff] [blame] | 458 | |
Oren Weil | a61c653 | 2011-09-07 09:03:13 +0300 | [diff] [blame] | 459 | void mei_timer(struct work_struct *work); |
Tomas Winkler | 06ecd64 | 2013-02-06 14:06:42 +0200 | [diff] [blame] | 460 | int mei_irq_read_handler(struct mei_device *dev, |
| 461 | struct mei_cl_cb *cmpl_list, s32 *slots); |
| 462 | |
| 463 | int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list); |
Tomas Winkler | 4c6e22b | 2013-03-17 11:41:20 +0200 | [diff] [blame] | 464 | void mei_irq_compl_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 465 | |
| 466 | /* |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 467 | * AMTHIF - AMT Host Interface Functions |
| 468 | */ |
| 469 | void mei_amthif_reset_params(struct mei_device *dev); |
| 470 | |
Tomas Winkler | 781d0d8 | 2013-01-08 23:07:22 +0200 | [diff] [blame] | 471 | int mei_amthif_host_init(struct mei_device *dev); |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 472 | |
| 473 | int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb); |
| 474 | |
| 475 | int mei_amthif_read(struct mei_device *dev, struct file *file, |
Tomas Winkler | 744f0f2 | 2012-11-11 17:38:02 +0200 | [diff] [blame] | 476 | char __user *ubuf, size_t length, loff_t *offset); |
| 477 | |
| 478 | unsigned int mei_amthif_poll(struct mei_device *dev, |
| 479 | struct file *file, poll_table *wait); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 480 | |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 481 | int mei_amthif_release(struct mei_device *dev, struct file *file); |
| 482 | |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 483 | 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] | 484 | struct file *file); |
| 485 | |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 486 | void mei_amthif_run_next_cmd(struct mei_device *dev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 487 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 488 | |
Tomas Winkler | 24c656e | 2012-11-18 15:13:17 +0200 | [diff] [blame] | 489 | int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots, |
| 490 | struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list); |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 491 | |
| 492 | void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb); |
| 493 | int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list, |
| 494 | struct mei_device *dev, struct mei_msg_hdr *mei_hdr); |
| 495 | int mei_amthif_irq_read(struct mei_device *dev, s32 *slots); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 496 | |
Tomas Winkler | 37e7d6e | 2013-01-08 23:07:16 +0200 | [diff] [blame] | 497 | |
| 498 | int mei_wd_send(struct mei_device *dev); |
| 499 | int mei_wd_stop(struct mei_device *dev); |
| 500 | int mei_wd_host_init(struct mei_device *dev); |
| 501 | /* |
| 502 | * mei_watchdog_register - Registering watchdog interface |
| 503 | * once we got connection to the WD Client |
| 504 | * @dev - mei device |
| 505 | */ |
| 506 | void mei_watchdog_register(struct mei_device *dev); |
| 507 | /* |
| 508 | * mei_watchdog_unregister - Unregistering watchdog interface |
| 509 | * @dev - mei device |
| 510 | */ |
| 511 | void mei_watchdog_unregister(struct mei_device *dev); |
| 512 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 513 | /* |
| 514 | * Register Access Function |
| 515 | */ |
| 516 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 517 | static inline void mei_hw_config(struct mei_device *dev) |
| 518 | { |
| 519 | dev->ops->hw_config(dev); |
| 520 | } |
| 521 | static inline void mei_hw_reset(struct mei_device *dev, bool enable) |
| 522 | { |
| 523 | dev->ops->hw_reset(dev, enable); |
| 524 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 525 | |
Tomas Winkler | aafae7e | 2013-03-11 18:27:03 +0200 | [diff] [blame] | 526 | static inline void mei_hw_start(struct mei_device *dev) |
| 527 | { |
| 528 | dev->ops->hw_start(dev); |
| 529 | } |
| 530 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 531 | static inline void mei_clear_interrupts(struct mei_device *dev) |
| 532 | { |
| 533 | dev->ops->intr_clear(dev); |
| 534 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 535 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 536 | static inline void mei_enable_interrupts(struct mei_device *dev) |
| 537 | { |
| 538 | dev->ops->intr_enable(dev); |
| 539 | } |
Tomas Winkler | e7e0c23 | 2013-01-08 23:07:31 +0200 | [diff] [blame] | 540 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 541 | static inline void mei_disable_interrupts(struct mei_device *dev) |
| 542 | { |
| 543 | dev->ops->intr_disable(dev); |
| 544 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 545 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 546 | static inline bool mei_host_is_ready(struct mei_device *dev) |
| 547 | { |
| 548 | return dev->ops->host_is_ready(dev); |
| 549 | } |
| 550 | static inline bool mei_hw_is_ready(struct mei_device *dev) |
| 551 | { |
| 552 | return dev->ops->hw_is_ready(dev); |
| 553 | } |
Tomas Winkler | 115ba28 | 2013-01-08 23:07:29 +0200 | [diff] [blame] | 554 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 555 | static inline bool mei_hbuf_is_ready(struct mei_device *dev) |
| 556 | { |
| 557 | return dev->ops->hbuf_is_ready(dev); |
| 558 | } |
Tomas Winkler | 3a65dd4 | 2012-12-25 19:06:06 +0200 | [diff] [blame] | 559 | |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 560 | static inline int mei_hbuf_empty_slots(struct mei_device *dev) |
| 561 | { |
| 562 | return dev->ops->hbuf_free_slots(dev); |
| 563 | } |
| 564 | |
| 565 | static inline size_t mei_hbuf_max_len(const struct mei_device *dev) |
| 566 | { |
| 567 | return dev->ops->hbuf_max_len(dev); |
| 568 | } |
| 569 | |
| 570 | static inline int mei_write_message(struct mei_device *dev, |
| 571 | struct mei_msg_hdr *hdr, |
| 572 | unsigned char *buf) |
| 573 | { |
| 574 | return dev->ops->write(dev, hdr, buf); |
| 575 | } |
| 576 | |
| 577 | static inline u32 mei_read_hdr(const struct mei_device *dev) |
| 578 | { |
| 579 | return dev->ops->read_hdr(dev); |
| 580 | } |
| 581 | |
| 582 | static inline void mei_read_slots(struct mei_device *dev, |
| 583 | unsigned char *buf, unsigned long len) |
| 584 | { |
| 585 | dev->ops->read(dev, buf, len); |
| 586 | } |
| 587 | |
| 588 | static inline int mei_count_full_read_slots(struct mei_device *dev) |
| 589 | { |
| 590 | return dev->ops->rdbuf_full_slots(dev); |
| 591 | } |
Tomas Winkler | 5bd6471 | 2012-11-18 15:13:14 +0200 | [diff] [blame] | 592 | |
Tomas Winkler | 2703d4b | 2013-02-06 14:06:39 +0200 | [diff] [blame] | 593 | int mei_register(struct device *dev); |
| 594 | void mei_deregister(void); |
| 595 | |
Tomas Winkler | 15d4acc | 2012-12-25 19:06:00 +0200 | [diff] [blame] | 596 | #define MEI_HDR_FMT "hdr:host=%02d me=%02d len=%d comp=%1d" |
| 597 | #define MEI_HDR_PRM(hdr) \ |
| 598 | (hdr)->host_addr, (hdr)->me_addr, \ |
| 599 | (hdr)->length, (hdr)->msg_complete |
| 600 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 601 | #endif |