mei: add new hbm.h header to export hbm protocol
[linux-2.6-block.git] / drivers / misc / mei / mei_dev.h
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_DEV_H_
18 #define _MEI_DEV_H_
19
20 #include <linux/types.h>
21 #include <linux/watchdog.h>
22 #include <linux/poll.h>
23 #include <linux/mei.h>
24
25 #include "hw.h"
26 #include "hw-me.h"
27
28 /*
29  * watch dog definition
30  */
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
39 #define MEI_WD_STOP_TIMEOUT      10 /* msecs */
40
41 #define MEI_WD_STATE_INDEPENDENCE_MSG_SENT       (1 << 0)
42
43 #define MEI_RD_MSG_BUF_SIZE           (128 * sizeof(u32))
44
45
46 /*
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 /*
62  * Number of Maximum MEI Clients
63  */
64 #define MEI_CLIENTS_MAX 256
65
66 /*
67  * Number of File descriptors/handles
68  * that can be opened to the driver.
69  *
70  * Limit to 253: 256 Total Clients
71  * minus internal client for MEI Bus Messags
72  * minus internal client for AMTHI
73  * minus internal client for Watchdog
74  */
75 #define  MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 3)
76
77 /*
78  * Internal Clients Number
79  */
80 #define MEI_WD_HOST_CLIENT_ID          1
81 #define MEI_IAMTHIF_HOST_CLIENT_ID     2
82
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 */
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
103 };
104
105 const char *mei_dev_state_str(int state);
106
107 /* init clients states*/
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
131 enum mei_wd_states {
132         MEI_WD_IDLE,
133         MEI_WD_RUNNING,
134         MEI_WD_STOPPING,
135 };
136
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
151 };
152
153 /*
154  * Intel MEI message data struct
155  */
156 struct mei_message_data {
157         u32 size;
158         unsigned char *data;
159 };
160
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
174
175 struct mei_cl;
176
177 /**
178  * struct mei_cl_cb - file operation callback structure
179  *
180  * @cl - file client who is running this operation
181  * @fop_type - file operation type
182  */
183 struct mei_cl_cb {
184         struct list_head list;
185         struct mei_cl *cl;
186         enum mei_cb_file_ops fop_type;
187         struct mei_message_data request_buffer;
188         struct mei_message_data response_buffer;
189         unsigned long buf_idx;
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;
202         int read_pending;
203         int status;
204         /* ID of client connected */
205         u8 host_client_id;
206         u8 me_client_id;
207         u8 mei_flow_ctrl_creds;
208         u8 timer_count;
209         enum mei_file_transaction_states reading_state;
210         enum mei_file_transaction_states writing_state;
211         int sm_state;
212         struct mei_cl_cb *read_cb;
213 };
214
215 /**
216  * struct mei_device -  MEI private device struct
217  * @mem_addr - mem mapped base register address
218  * @hbuf_depth - depth of host(write) buffer
219  * @wr_ext_msg - buffer for hbm control responses (set in read cycle)
220  */
221 struct mei_device {
222         struct pci_dev *pdev;   /* pointer to pci device struct */
223         /*
224          * lists of queues
225          */
226         /* array of pointers to aio lists */
227         struct mei_cl_cb read_list;             /* driver read queue */
228         struct mei_cl_cb write_list;            /* driver write queue */
229         struct mei_cl_cb write_waiting_list;    /* write waiting queue */
230         struct mei_cl_cb ctrl_wr_list;          /* managed write IOCTL list */
231         struct mei_cl_cb ctrl_rd_list;          /* managed read IOCTL list */
232
233         /*
234          * list of files
235          */
236         struct list_head file_list;
237         long open_handle_count;
238
239         void __iomem *mem_addr;
240         /*
241          * lock for the device
242          */
243         struct mutex device_lock; /* device lock */
244         struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */
245         bool recvd_msg;
246         /*
247          * hw states of host and fw(ME)
248          */
249         u32 host_hw_state;
250         u32 me_hw_state;
251         u8  hbuf_depth;
252         /*
253          * waiting queue for receive message from FW
254          */
255         wait_queue_head_t wait_recvd_msg;
256         wait_queue_head_t wait_stop_wd;
257
258         /*
259          * mei device  states
260          */
261         enum mei_dev_state dev_state;
262         enum mei_init_clients_states init_clients_state;
263         u16 init_clients_timer;
264         bool need_reset;
265
266         unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE];  /* control messages */
267         u32 rd_msg_hdr;
268
269         /* used for control messages */
270         struct {
271                 struct mei_msg_hdr hdr;
272                 unsigned char data[128];
273         } wr_msg;
274
275         struct {
276                 struct mei_msg_hdr hdr;
277                 unsigned char data[4];  /* All HBM messages are 4 bytes */
278         } wr_ext_msg;           /* for control responses */
279
280         struct hbm_version version;
281
282         struct mei_me_client *me_clients; /* Note: memory has to be allocated */
283         DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX);
284         DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX);
285         u8 me_clients_num;
286         u8 me_client_presentation_num;
287         u8 me_client_index;
288         bool mei_host_buffer_is_empty;
289
290         struct mei_cl wd_cl;
291         enum mei_wd_states wd_state;
292         bool wd_pending;
293         u16 wd_timeout;
294         unsigned char wd_data[MEI_WD_START_MSG_SIZE];
295
296
297         /* amthif list for cmd waiting */
298         struct mei_cl_cb amthif_cmd_list;
299         /* driver managed amthif list for reading completed amthif cmd data */
300         struct mei_cl_cb amthif_rd_complete_list;
301         struct file *iamthif_file_object;
302         struct mei_cl iamthif_cl;
303         struct mei_cl_cb *iamthif_current_cb;
304         int iamthif_mtu;
305         unsigned long iamthif_timer;
306         u32 iamthif_stall_timer;
307         unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */
308         u32 iamthif_msg_buf_size;
309         u32 iamthif_msg_buf_index;
310         enum iamthif_states iamthif_state;
311         bool iamthif_flow_control_pending;
312         bool iamthif_ioctl;
313         bool iamthif_canceled;
314
315         struct work_struct init_work;
316 };
317
318 static inline unsigned long mei_secs_to_jiffies(unsigned long sec)
319 {
320         return msecs_to_jiffies(sec * MSEC_PER_SEC);
321 }
322
323
324 /*
325  * mei init function prototypes
326  */
327 struct mei_device *mei_device_init(struct pci_dev *pdev);
328 void mei_reset(struct mei_device *dev, int interrupts);
329 int mei_hw_init(struct mei_device *dev);
330 int mei_task_initialize_clients(void *data);
331 int mei_initialize_clients(struct mei_device *dev);
332 int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl);
333 void mei_allocate_me_clients_storage(struct mei_device *dev);
334
335
336 int mei_me_cl_link(struct mei_device *dev, struct mei_cl *cl,
337                         const uuid_le *cguid, u8 host_client_id);
338 void mei_me_cl_unlink(struct mei_device *dev, struct mei_cl *cl);
339 int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid);
340 int mei_me_cl_by_id(struct mei_device *dev, u8 client_id);
341
342 /*
343  * MEI IO Functions
344  */
345 struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, struct file *fp);
346 void mei_io_cb_free(struct mei_cl_cb *priv_cb);
347 int mei_io_cb_alloc_req_buf(struct mei_cl_cb *cb, size_t length);
348 int mei_io_cb_alloc_resp_buf(struct mei_cl_cb *cb, size_t length);
349
350
351 /**
352  * mei_io_list_init - Sets up a queue list.
353  *
354  * @list: An instance cl callback structure
355  */
356 static inline void mei_io_list_init(struct mei_cl_cb *list)
357 {
358         INIT_LIST_HEAD(&list->list);
359 }
360 void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl);
361
362 /*
363  * MEI ME Client Functions
364  */
365
366 struct mei_cl *mei_cl_allocate(struct mei_device *dev);
367 void mei_cl_init(struct mei_cl *cl, struct mei_device *dev);
368 int mei_cl_flush_queues(struct mei_cl *cl);
369 /**
370  * mei_cl_cmp_id - tells if file private data have same id
371  *
372  * @fe1: private data of 1. file object
373  * @fe2: private data of 2. file object
374  *
375  * returns true  - if ids are the same and not NULL
376  */
377 static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
378                                 const struct mei_cl *cl2)
379 {
380         return cl1 && cl2 &&
381                 (cl1->host_client_id == cl2->host_client_id) &&
382                 (cl1->me_client_id == cl2->me_client_id);
383 }
384
385
386 /*
387  *  MEI interrupt functions prototype
388  */
389 irqreturn_t mei_interrupt_quick_handler(int irq, void *dev_id);
390 irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id);
391 void mei_timer(struct work_struct *work);
392
393 /*
394  *  MEI input output function prototype
395  */
396 int mei_ioctl_connect_client(struct file *file,
397                         struct mei_connect_client_data *data);
398
399 int mei_start_read(struct mei_device *dev, struct mei_cl *cl);
400
401 /*
402  * AMTHIF - AMT Host Interface Functions
403  */
404 void mei_amthif_reset_params(struct mei_device *dev);
405
406 void mei_amthif_host_init(struct mei_device *dev);
407
408 int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb);
409
410 int mei_amthif_read(struct mei_device *dev, struct file *file,
411                 char __user *ubuf, size_t length, loff_t *offset);
412
413 unsigned int mei_amthif_poll(struct mei_device *dev,
414                 struct file *file, poll_table *wait);
415
416 int mei_amthif_release(struct mei_device *dev, struct file *file);
417
418 struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
419                                                 struct file *file);
420
421 void mei_amthif_run_next_cmd(struct mei_device *dev);
422
423
424 int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots,
425                         struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list);
426
427 void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb);
428 int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list,
429                 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
430 int mei_amthif_irq_read(struct mei_device *dev, s32 *slots);
431
432 /*
433  * Register Access Function
434  */
435
436 u32 mei_hcsr_read(const struct mei_device *dev);
437 u32 mei_mecsr_read(const struct mei_device *dev);
438 u32 mei_mecbrw_read(const struct mei_device *dev);
439
440 void mei_hcsr_set(struct mei_device *dev);
441 void mei_csr_clear_his(struct mei_device *dev);
442
443 void mei_clear_interrupts(struct mei_device *dev);
444 void mei_enable_interrupts(struct mei_device *dev);
445 void mei_disable_interrupts(struct mei_device *dev);
446
447
448
449 #define MEI_HDR_FMT "hdr:host=%02d me=%02d len=%d comp=%1d"
450 #define MEI_HDR_PRM(hdr)                  \
451         (hdr)->host_addr, (hdr)->me_addr, \
452         (hdr)->length, (hdr)->msg_complete
453
454 #endif