crypto: qat - changed adf_dev_stop to void
[deliverable/linux.git] / drivers / crypto / qat / qat_common / adf_init.c
CommitLineData
d8cba25d
TS
1/*
2 This file is provided under a dual BSD/GPLv2 license. When using or
3 redistributing this file, you may do so under either license.
4
5 GPL LICENSE SUMMARY
6 Copyright(c) 2014 Intel Corporation.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of version 2 of the GNU General Public License as
9 published by the Free Software Foundation.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 Contact Information:
17 qat-linux@intel.com
18
19 BSD LICENSE
20 Copyright(c) 2014 Intel Corporation.
21 Redistribution and use in source and binary forms, with or without
22 modification, are permitted provided that the following conditions
23 are met:
24
25 * Redistributions of source code must retain the above copyright
26 notice, this list of conditions and the following disclaimer.
27 * Redistributions in binary form must reproduce the above copyright
28 notice, this list of conditions and the following disclaimer in
29 the documentation and/or other materials provided with the
30 distribution.
31 * Neither the name of Intel Corporation nor the names of its
32 contributors may be used to endorse or promote products derived
33 from this software without specific prior written permission.
34
35 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46*/
47#include <linux/mutex.h>
48#include <linux/list.h>
49#include <linux/bitops.h>
50#include <linux/delay.h>
51#include "adf_accel_devices.h"
52#include "adf_cfg.h"
53#include "adf_common_drv.h"
54
55static LIST_HEAD(service_table);
56static DEFINE_MUTEX(service_lock);
57
58static void adf_service_add(struct service_hndl *service)
59{
60 mutex_lock(&service_lock);
61 list_add(&service->list, &service_table);
62 mutex_unlock(&service_lock);
63}
64
d8cba25d
TS
65int adf_service_register(struct service_hndl *service)
66{
67 service->init_status = 0;
68 service->start_status = 0;
69 adf_service_add(service);
70 return 0;
71}
d8cba25d
TS
72
73static void adf_service_remove(struct service_hndl *service)
74{
75 mutex_lock(&service_lock);
76 list_del(&service->list);
77 mutex_unlock(&service_lock);
78}
79
d8cba25d
TS
80int adf_service_unregister(struct service_hndl *service)
81{
82 if (service->init_status || service->start_status) {
83 pr_err("QAT: Could not remove active service\n");
84 return -EFAULT;
85 }
86 adf_service_remove(service);
87 return 0;
88}
d8cba25d
TS
89
90/**
22e4dda0
AB
91 * adf_dev_init() - Init data structures and services for the given accel device
92 * @accel_dev: Pointer to acceleration device.
d8cba25d 93 *
22e4dda0
AB
94 * Initialize the ring data structures and the admin comms and arbitration
95 * services.
d8cba25d 96 *
ec0d6fa3 97 * Return: 0 on success, error code otherwise.
d8cba25d 98 */
22e4dda0 99int adf_dev_init(struct adf_accel_dev *accel_dev)
d8cba25d
TS
100{
101 struct service_hndl *service;
102 struct list_head *list_itr;
103 struct adf_hw_device_data *hw_data = accel_dev->hw_device;
104
22e4dda0
AB
105 if (!hw_data) {
106 dev_err(&GET_DEV(accel_dev),
66550304 107 "Failed to init device - hw_data not set\n");
22e4dda0
AB
108 return -EFAULT;
109 }
110
d8cba25d 111 if (!test_bit(ADF_STATUS_CONFIGURED, &accel_dev->status)) {
66550304 112 dev_err(&GET_DEV(accel_dev), "Device not configured\n");
d8cba25d
TS
113 return -EFAULT;
114 }
22e4dda0
AB
115
116 if (adf_init_etr_data(accel_dev)) {
117 dev_err(&GET_DEV(accel_dev), "Failed initialize etr\n");
118 return -EFAULT;
119 }
120
121 if (hw_data->init_admin_comms && hw_data->init_admin_comms(accel_dev)) {
122 dev_err(&GET_DEV(accel_dev), "Failed initialize admin comms\n");
123 return -EFAULT;
124 }
125
126 if (hw_data->init_arb && hw_data->init_arb(accel_dev)) {
127 dev_err(&GET_DEV(accel_dev), "Failed initialize hw arbiter\n");
128 return -EFAULT;
129 }
130
131 hw_data->enable_ints(accel_dev);
d8cba25d
TS
132
133 if (adf_ae_init(accel_dev)) {
66550304
AB
134 dev_err(&GET_DEV(accel_dev),
135 "Failed to initialise Acceleration Engine\n");
d8cba25d
TS
136 return -EFAULT;
137 }
138 set_bit(ADF_STATUS_AE_INITIALISED, &accel_dev->status);
139
140 if (adf_ae_fw_load(accel_dev)) {
66550304
AB
141 dev_err(&GET_DEV(accel_dev),
142 "Failed to load acceleration FW\n");
d8cba25d
TS
143 return -EFAULT;
144 }
145 set_bit(ADF_STATUS_AE_UCODE_LOADED, &accel_dev->status);
146
147 if (hw_data->alloc_irq(accel_dev)) {
66550304 148 dev_err(&GET_DEV(accel_dev), "Failed to allocate interrupts\n");
d8cba25d
TS
149 return -EFAULT;
150 }
151 set_bit(ADF_STATUS_IRQ_ALLOCATED, &accel_dev->status);
152
153 /*
154 * Subservice initialisation is divided into two stages: init and start.
155 * This is to facilitate any ordering dependencies between services
156 * prior to starting any of the accelerators.
157 */
158 list_for_each(list_itr, &service_table) {
159 service = list_entry(list_itr, struct service_hndl, list);
d8cba25d 160 if (service->event_hld(accel_dev, ADF_EVENT_INIT)) {
66550304
AB
161 dev_err(&GET_DEV(accel_dev),
162 "Failed to initialise service %s\n",
163 service->name);
d8cba25d
TS
164 return -EFAULT;
165 }
166 set_bit(accel_dev->accel_id, &service->init_status);
167 }
168
169 hw_data->enable_error_correction(accel_dev);
ed8ccaef 170 hw_data->enable_vf2pf_comms(accel_dev);
d8cba25d 171
22e4dda0
AB
172 return 0;
173}
174EXPORT_SYMBOL_GPL(adf_dev_init);
175
176/**
177 * adf_dev_start() - Start acceleration service for the given accel device
178 * @accel_dev: Pointer to acceleration device.
179 *
180 * Function notifies all the registered services that the acceleration device
181 * is ready to be used.
182 * To be used by QAT device specific drivers.
183 *
ec0d6fa3 184 * Return: 0 on success, error code otherwise.
22e4dda0
AB
185 */
186int adf_dev_start(struct adf_accel_dev *accel_dev)
187{
a5733139 188 struct adf_hw_device_data *hw_data = accel_dev->hw_device;
22e4dda0
AB
189 struct service_hndl *service;
190 struct list_head *list_itr;
191
192 set_bit(ADF_STATUS_STARTING, &accel_dev->status);
193
d8cba25d 194 if (adf_ae_start(accel_dev)) {
66550304 195 dev_err(&GET_DEV(accel_dev), "AE Start Failed\n");
d8cba25d
TS
196 return -EFAULT;
197 }
198 set_bit(ADF_STATUS_AE_STARTED, &accel_dev->status);
199
a5733139
TS
200 if (hw_data->send_admin_init(accel_dev)) {
201 dev_err(&GET_DEV(accel_dev), "Failed to send init message\n");
202 return -EFAULT;
d8cba25d 203 }
a5733139 204
d8cba25d
TS
205 list_for_each(list_itr, &service_table) {
206 service = list_entry(list_itr, struct service_hndl, list);
d8cba25d 207 if (service->event_hld(accel_dev, ADF_EVENT_START)) {
66550304
AB
208 dev_err(&GET_DEV(accel_dev),
209 "Failed to start service %s\n",
210 service->name);
d8cba25d
TS
211 return -EFAULT;
212 }
213 set_bit(accel_dev->accel_id, &service->start_status);
214 }
215
216 clear_bit(ADF_STATUS_STARTING, &accel_dev->status);
217 set_bit(ADF_STATUS_STARTED, &accel_dev->status);
218
ed8ccaef
TS
219 if (!list_empty(&accel_dev->crypto_list) &&
220 (qat_algs_register() || qat_asym_algs_register())) {
66550304
AB
221 dev_err(&GET_DEV(accel_dev),
222 "Failed to register crypto algs\n");
d8cba25d
TS
223 set_bit(ADF_STATUS_STARTING, &accel_dev->status);
224 clear_bit(ADF_STATUS_STARTED, &accel_dev->status);
225 return -EFAULT;
226 }
227 return 0;
228}
229EXPORT_SYMBOL_GPL(adf_dev_start);
230
231/**
232 * adf_dev_stop() - Stop acceleration service for the given accel device
233 * @accel_dev: Pointer to acceleration device.
234 *
235 * Function notifies all the registered services that the acceleration device
236 * is shuting down.
237 * To be used by QAT device specific drivers.
238 *
f1420cee 239 * Return: void
d8cba25d 240 */
f1420cee 241void adf_dev_stop(struct adf_accel_dev *accel_dev)
d8cba25d 242{
d8cba25d
TS
243 struct service_hndl *service;
244 struct list_head *list_itr;
53bc0251
AB
245 bool wait = false;
246 int ret;
d8cba25d
TS
247
248 if (!adf_dev_started(accel_dev) &&
f1420cee
TS
249 !test_bit(ADF_STATUS_STARTING, &accel_dev->status))
250 return;
251
d8cba25d
TS
252 clear_bit(ADF_STATUS_STARTING, &accel_dev->status);
253 clear_bit(ADF_STATUS_STARTED, &accel_dev->status);
254
be2cfac0
TS
255 if (!list_empty(&accel_dev->crypto_list)) {
256 qat_algs_unregister();
ed8ccaef 257 qat_asym_algs_unregister();
be2cfac0 258 }
a9905320 259
d8cba25d
TS
260 list_for_each(list_itr, &service_table) {
261 service = list_entry(list_itr, struct service_hndl, list);
d8cba25d
TS
262 if (!test_bit(accel_dev->accel_id, &service->start_status))
263 continue;
264 ret = service->event_hld(accel_dev, ADF_EVENT_STOP);
265 if (!ret) {
266 clear_bit(accel_dev->accel_id, &service->start_status);
267 } else if (ret == -EAGAIN) {
53bc0251 268 wait = true;
d8cba25d
TS
269 clear_bit(accel_dev->accel_id, &service->start_status);
270 }
271 }
d8cba25d
TS
272
273 if (wait)
274 msleep(100);
275
fd98d692 276 if (test_bit(ADF_STATUS_AE_STARTED, &accel_dev->status)) {
d8cba25d 277 if (adf_ae_stop(accel_dev))
66550304 278 dev_err(&GET_DEV(accel_dev), "failed to stop AE\n");
d8cba25d
TS
279 else
280 clear_bit(ADF_STATUS_AE_STARTED, &accel_dev->status);
281 }
22e4dda0
AB
282}
283EXPORT_SYMBOL_GPL(adf_dev_stop);
284
285/**
286 * adf_dev_shutdown() - shutdown acceleration services and data strucutures
287 * @accel_dev: Pointer to acceleration device
288 *
289 * Cleanup the ring data structures and the admin comms and arbitration
290 * services.
291 */
292void adf_dev_shutdown(struct adf_accel_dev *accel_dev)
293{
294 struct adf_hw_device_data *hw_data = accel_dev->hw_device;
295 struct service_hndl *service;
296 struct list_head *list_itr;
297
298 if (!hw_data) {
299 dev_err(&GET_DEV(accel_dev),
300 "QAT: Failed to shutdown device - hw_data not set\n");
301 return;
302 }
303
d8cba25d 304 if (test_bit(ADF_STATUS_AE_UCODE_LOADED, &accel_dev->status)) {
b4e97050
TS
305 adf_ae_fw_release(accel_dev);
306 clear_bit(ADF_STATUS_AE_UCODE_LOADED, &accel_dev->status);
d8cba25d
TS
307 }
308
309 if (test_bit(ADF_STATUS_AE_INITIALISED, &accel_dev->status)) {
310 if (adf_ae_shutdown(accel_dev))
66550304
AB
311 dev_err(&GET_DEV(accel_dev),
312 "Failed to shutdown Accel Engine\n");
d8cba25d
TS
313 else
314 clear_bit(ADF_STATUS_AE_INITIALISED,
315 &accel_dev->status);
316 }
317
318 list_for_each(list_itr, &service_table) {
319 service = list_entry(list_itr, struct service_hndl, list);
d8cba25d
TS
320 if (!test_bit(accel_dev->accel_id, &service->init_status))
321 continue;
322 if (service->event_hld(accel_dev, ADF_EVENT_SHUTDOWN))
66550304
AB
323 dev_err(&GET_DEV(accel_dev),
324 "Failed to shutdown service %s\n",
325 service->name);
d8cba25d
TS
326 else
327 clear_bit(accel_dev->accel_id, &service->init_status);
328 }
329
330 if (test_bit(ADF_STATUS_IRQ_ALLOCATED, &accel_dev->status)) {
331 hw_data->free_irq(accel_dev);
332 clear_bit(ADF_STATUS_IRQ_ALLOCATED, &accel_dev->status);
333 }
334
335 /* Delete configuration only if not restarting */
336 if (!test_bit(ADF_STATUS_RESTARTING, &accel_dev->status))
337 adf_cfg_del_all(accel_dev);
338
22e4dda0
AB
339 if (hw_data->exit_arb)
340 hw_data->exit_arb(accel_dev);
341
342 if (hw_data->exit_admin_comms)
343 hw_data->exit_admin_comms(accel_dev);
344
ed8ccaef 345 hw_data->disable_iov(accel_dev);
22e4dda0 346 adf_cleanup_etr_data(accel_dev);
1a72d3a6 347 adf_dev_restore(accel_dev);
d8cba25d 348}
22e4dda0 349EXPORT_SYMBOL_GPL(adf_dev_shutdown);
d8cba25d
TS
350
351int adf_dev_restarting_notify(struct adf_accel_dev *accel_dev)
352{
353 struct service_hndl *service;
354 struct list_head *list_itr;
355
356 list_for_each(list_itr, &service_table) {
357 service = list_entry(list_itr, struct service_hndl, list);
d8cba25d 358 if (service->event_hld(accel_dev, ADF_EVENT_RESTARTING))
66550304
AB
359 dev_err(&GET_DEV(accel_dev),
360 "Failed to restart service %s.\n",
361 service->name);
d8cba25d
TS
362 }
363 return 0;
364}
365
366int adf_dev_restarted_notify(struct adf_accel_dev *accel_dev)
367{
368 struct service_hndl *service;
369 struct list_head *list_itr;
370
371 list_for_each(list_itr, &service_table) {
372 service = list_entry(list_itr, struct service_hndl, list);
d8cba25d 373 if (service->event_hld(accel_dev, ADF_EVENT_RESTARTED))
66550304
AB
374 dev_err(&GET_DEV(accel_dev),
375 "Failed to restart service %s.\n",
376 service->name);
d8cba25d
TS
377 }
378 return 0;
379}
This page took 0.107152 seconds and 5 git commands to generate.