Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[linux/fpc-iii.git] / drivers / misc / mei / init.c
blobcdd31c2a2a2bf095e827758e3d71567d80557a5f
1 /*
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, Intel Corporation.
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.
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.
17 #include <linux/export.h>
18 #include <linux/pci.h>
19 #include <linux/sched.h>
20 #include <linux/wait.h>
21 #include <linux/delay.h>
23 #include <linux/mei.h>
25 #include "mei_dev.h"
26 #include "hbm.h"
27 #include "client.h"
29 const char *mei_dev_state_str(int state)
31 #define MEI_DEV_STATE(state) case MEI_DEV_##state: return #state
32 switch (state) {
33 MEI_DEV_STATE(INITIALIZING);
34 MEI_DEV_STATE(INIT_CLIENTS);
35 MEI_DEV_STATE(ENABLED);
36 MEI_DEV_STATE(RESETTING);
37 MEI_DEV_STATE(DISABLED);
38 MEI_DEV_STATE(POWER_DOWN);
39 MEI_DEV_STATE(POWER_UP);
40 default:
41 return "unknown";
43 #undef MEI_DEV_STATE
47 /**
48 * mei_cancel_work. Cancel mei background jobs
50 * @dev: the device structure
52 * returns 0 on success or < 0 if the reset hasn't succeeded
54 void mei_cancel_work(struct mei_device *dev)
56 cancel_work_sync(&dev->init_work);
57 cancel_work_sync(&dev->reset_work);
59 cancel_delayed_work(&dev->timer_work);
61 EXPORT_SYMBOL_GPL(mei_cancel_work);
63 /**
64 * mei_reset - resets host and fw.
66 * @dev: the device structure
68 int mei_reset(struct mei_device *dev)
70 enum mei_dev_state state = dev->dev_state;
71 bool interrupts_enabled;
72 int ret;
74 if (state != MEI_DEV_INITIALIZING &&
75 state != MEI_DEV_DISABLED &&
76 state != MEI_DEV_POWER_DOWN &&
77 state != MEI_DEV_POWER_UP)
78 dev_warn(&dev->pdev->dev, "unexpected reset: dev_state = %s\n",
79 mei_dev_state_str(state));
81 /* we're already in reset, cancel the init timer
82 * if the reset was called due the hbm protocol error
83 * we need to call it before hw start
84 * so the hbm watchdog won't kick in
86 mei_hbm_idle(dev);
88 /* enter reset flow */
89 interrupts_enabled = state != MEI_DEV_POWER_DOWN;
90 dev->dev_state = MEI_DEV_RESETTING;
92 dev->reset_count++;
93 if (dev->reset_count > MEI_MAX_CONSEC_RESET) {
94 dev_err(&dev->pdev->dev, "reset: reached maximal consecutive resets: disabling the device\n");
95 dev->dev_state = MEI_DEV_DISABLED;
96 return -ENODEV;
99 ret = mei_hw_reset(dev, interrupts_enabled);
100 /* fall through and remove the sw state even if hw reset has failed */
102 /* no need to clean up software state in case of power up */
103 if (state != MEI_DEV_INITIALIZING &&
104 state != MEI_DEV_POWER_UP) {
106 /* remove all waiting requests */
107 mei_cl_all_write_clear(dev);
109 mei_cl_all_disconnect(dev);
111 /* wake up all readers and writers so they can be interrupted */
112 mei_cl_all_wakeup(dev);
114 /* remove entry if already in list */
115 dev_dbg(&dev->pdev->dev, "remove iamthif and wd from the file list.\n");
116 mei_cl_unlink(&dev->wd_cl);
117 mei_cl_unlink(&dev->iamthif_cl);
118 mei_amthif_reset_params(dev);
119 memset(&dev->wr_ext_msg, 0, sizeof(dev->wr_ext_msg));
123 dev->me_clients_num = 0;
124 dev->rd_msg_hdr = 0;
125 dev->wd_pending = false;
127 if (ret) {
128 dev_err(&dev->pdev->dev, "hw_reset failed ret = %d\n", ret);
129 dev->dev_state = MEI_DEV_DISABLED;
130 return ret;
133 if (state == MEI_DEV_POWER_DOWN) {
134 dev_dbg(&dev->pdev->dev, "powering down: end of reset\n");
135 dev->dev_state = MEI_DEV_DISABLED;
136 return 0;
139 ret = mei_hw_start(dev);
140 if (ret) {
141 dev_err(&dev->pdev->dev, "hw_start failed ret = %d\n", ret);
142 dev->dev_state = MEI_DEV_DISABLED;
143 return ret;
146 dev_dbg(&dev->pdev->dev, "link is established start sending messages.\n");
148 dev->dev_state = MEI_DEV_INIT_CLIENTS;
149 ret = mei_hbm_start_req(dev);
150 if (ret) {
151 dev_err(&dev->pdev->dev, "hbm_start failed ret = %d\n", ret);
152 dev->dev_state = MEI_DEV_DISABLED;
153 return ret;
156 return 0;
158 EXPORT_SYMBOL_GPL(mei_reset);
161 * mei_start - initializes host and fw to start work.
163 * @dev: the device structure
165 * returns 0 on success, <0 on failure.
167 int mei_start(struct mei_device *dev)
169 mutex_lock(&dev->device_lock);
171 /* acknowledge interrupt and stop interrupts */
172 mei_clear_interrupts(dev);
174 mei_hw_config(dev);
176 dev_dbg(&dev->pdev->dev, "reset in start the mei device.\n");
178 dev->dev_state = MEI_DEV_INITIALIZING;
179 dev->reset_count = 0;
180 mei_reset(dev);
182 if (dev->dev_state == MEI_DEV_DISABLED) {
183 dev_err(&dev->pdev->dev, "reset failed");
184 goto err;
187 if (mei_hbm_start_wait(dev)) {
188 dev_err(&dev->pdev->dev, "HBM haven't started");
189 goto err;
192 if (!mei_host_is_ready(dev)) {
193 dev_err(&dev->pdev->dev, "host is not ready.\n");
194 goto err;
197 if (!mei_hw_is_ready(dev)) {
198 dev_err(&dev->pdev->dev, "ME is not ready.\n");
199 goto err;
202 if (!mei_hbm_version_is_supported(dev)) {
203 dev_dbg(&dev->pdev->dev, "MEI start failed.\n");
204 goto err;
207 dev_dbg(&dev->pdev->dev, "link layer has been established.\n");
209 mutex_unlock(&dev->device_lock);
210 return 0;
211 err:
212 dev_err(&dev->pdev->dev, "link layer initialization failed.\n");
213 dev->dev_state = MEI_DEV_DISABLED;
214 mutex_unlock(&dev->device_lock);
215 return -ENODEV;
217 EXPORT_SYMBOL_GPL(mei_start);
220 * mei_restart - restart device after suspend
222 * @dev: the device structure
224 * returns 0 on success or -ENODEV if the restart hasn't succeeded
226 int mei_restart(struct mei_device *dev)
228 int err;
230 mutex_lock(&dev->device_lock);
232 mei_clear_interrupts(dev);
234 dev->dev_state = MEI_DEV_POWER_UP;
235 dev->reset_count = 0;
237 err = mei_reset(dev);
239 mutex_unlock(&dev->device_lock);
241 if (err || dev->dev_state == MEI_DEV_DISABLED)
242 return -ENODEV;
244 return 0;
246 EXPORT_SYMBOL_GPL(mei_restart);
249 static void mei_reset_work(struct work_struct *work)
251 struct mei_device *dev =
252 container_of(work, struct mei_device, reset_work);
254 mutex_lock(&dev->device_lock);
256 mei_reset(dev);
258 mutex_unlock(&dev->device_lock);
260 if (dev->dev_state == MEI_DEV_DISABLED)
261 dev_err(&dev->pdev->dev, "reset failed");
264 void mei_stop(struct mei_device *dev)
266 dev_dbg(&dev->pdev->dev, "stopping the device.\n");
268 mei_cancel_work(dev);
270 mei_nfc_host_exit(dev);
272 mutex_lock(&dev->device_lock);
274 mei_wd_stop(dev);
276 dev->dev_state = MEI_DEV_POWER_DOWN;
277 mei_reset(dev);
279 mutex_unlock(&dev->device_lock);
281 mei_watchdog_unregister(dev);
283 EXPORT_SYMBOL_GPL(mei_stop);
287 void mei_device_init(struct mei_device *dev)
289 /* setup our list array */
290 INIT_LIST_HEAD(&dev->file_list);
291 INIT_LIST_HEAD(&dev->device_list);
292 mutex_init(&dev->device_lock);
293 init_waitqueue_head(&dev->wait_hw_ready);
294 init_waitqueue_head(&dev->wait_recvd_msg);
295 init_waitqueue_head(&dev->wait_stop_wd);
296 dev->dev_state = MEI_DEV_INITIALIZING;
297 dev->reset_count = 0;
299 mei_io_list_init(&dev->read_list);
300 mei_io_list_init(&dev->write_list);
301 mei_io_list_init(&dev->write_waiting_list);
302 mei_io_list_init(&dev->ctrl_wr_list);
303 mei_io_list_init(&dev->ctrl_rd_list);
305 INIT_DELAYED_WORK(&dev->timer_work, mei_timer);
306 INIT_WORK(&dev->init_work, mei_host_client_init);
307 INIT_WORK(&dev->reset_work, mei_reset_work);
309 INIT_LIST_HEAD(&dev->wd_cl.link);
310 INIT_LIST_HEAD(&dev->iamthif_cl.link);
311 mei_io_list_init(&dev->amthif_cmd_list);
312 mei_io_list_init(&dev->amthif_rd_complete_list);
314 bitmap_zero(dev->host_clients_map, MEI_CLIENTS_MAX);
315 dev->open_handle_count = 0;
318 * Reserving the first client ID
319 * 0: Reserved for MEI Bus Message communications
321 bitmap_set(dev->host_clients_map, 0, 1);
323 EXPORT_SYMBOL_GPL(mei_device_init);