Merge branch 'akpm' (patches from Andrew)
[linux/fpc-iii.git] / drivers / crypto / qat / qat_common / adf_init.c
blob26556c713049736aedd941523b3336637e4ac0ab
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.
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.
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.
16 Contact Information:
17 qat-linux@intel.com
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:
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.
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.
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"
55 static LIST_HEAD(service_table);
56 static DEFINE_MUTEX(service_lock);
58 static void adf_service_add(struct service_hndl *service)
60 mutex_lock(&service_lock);
61 list_add(&service->list, &service_table);
62 mutex_unlock(&service_lock);
65 int adf_service_register(struct service_hndl *service)
67 memset(service->init_status, 0, sizeof(service->init_status));
68 memset(service->start_status, 0, sizeof(service->start_status));
69 adf_service_add(service);
70 return 0;
73 static void adf_service_remove(struct service_hndl *service)
75 mutex_lock(&service_lock);
76 list_del(&service->list);
77 mutex_unlock(&service_lock);
80 int adf_service_unregister(struct service_hndl *service)
82 int i;
84 for (i = 0; i < ARRAY_SIZE(service->init_status); i++) {
85 if (service->init_status[i] || service->start_status[i]) {
86 pr_err("QAT: Could not remove active service\n");
87 return -EFAULT;
90 adf_service_remove(service);
91 return 0;
94 /**
95 * adf_dev_init() - Init data structures and services for the given accel device
96 * @accel_dev: Pointer to acceleration device.
98 * Initialize the ring data structures and the admin comms and arbitration
99 * services.
101 * Return: 0 on success, error code otherwise.
103 int adf_dev_init(struct adf_accel_dev *accel_dev)
105 struct service_hndl *service;
106 struct list_head *list_itr;
107 struct adf_hw_device_data *hw_data = accel_dev->hw_device;
109 if (!hw_data) {
110 dev_err(&GET_DEV(accel_dev),
111 "Failed to init device - hw_data not set\n");
112 return -EFAULT;
115 if (!test_bit(ADF_STATUS_CONFIGURED, &accel_dev->status)) {
116 dev_err(&GET_DEV(accel_dev), "Device not configured\n");
117 return -EFAULT;
120 if (adf_init_etr_data(accel_dev)) {
121 dev_err(&GET_DEV(accel_dev), "Failed initialize etr\n");
122 return -EFAULT;
125 if (hw_data->init_admin_comms && hw_data->init_admin_comms(accel_dev)) {
126 dev_err(&GET_DEV(accel_dev), "Failed initialize admin comms\n");
127 return -EFAULT;
130 if (hw_data->init_arb && hw_data->init_arb(accel_dev)) {
131 dev_err(&GET_DEV(accel_dev), "Failed initialize hw arbiter\n");
132 return -EFAULT;
135 hw_data->enable_ints(accel_dev);
137 if (adf_ae_init(accel_dev)) {
138 dev_err(&GET_DEV(accel_dev),
139 "Failed to initialise Acceleration Engine\n");
140 return -EFAULT;
142 set_bit(ADF_STATUS_AE_INITIALISED, &accel_dev->status);
144 if (adf_ae_fw_load(accel_dev)) {
145 dev_err(&GET_DEV(accel_dev),
146 "Failed to load acceleration FW\n");
147 return -EFAULT;
149 set_bit(ADF_STATUS_AE_UCODE_LOADED, &accel_dev->status);
151 if (hw_data->alloc_irq(accel_dev)) {
152 dev_err(&GET_DEV(accel_dev), "Failed to allocate interrupts\n");
153 return -EFAULT;
155 set_bit(ADF_STATUS_IRQ_ALLOCATED, &accel_dev->status);
158 * Subservice initialisation is divided into two stages: init and start.
159 * This is to facilitate any ordering dependencies between services
160 * prior to starting any of the accelerators.
162 list_for_each(list_itr, &service_table) {
163 service = list_entry(list_itr, struct service_hndl, list);
164 if (service->event_hld(accel_dev, ADF_EVENT_INIT)) {
165 dev_err(&GET_DEV(accel_dev),
166 "Failed to initialise service %s\n",
167 service->name);
168 return -EFAULT;
170 set_bit(accel_dev->accel_id, service->init_status);
173 hw_data->enable_error_correction(accel_dev);
174 hw_data->enable_vf2pf_comms(accel_dev);
176 return 0;
178 EXPORT_SYMBOL_GPL(adf_dev_init);
181 * adf_dev_start() - Start acceleration service for the given accel device
182 * @accel_dev: Pointer to acceleration device.
184 * Function notifies all the registered services that the acceleration device
185 * is ready to be used.
186 * To be used by QAT device specific drivers.
188 * Return: 0 on success, error code otherwise.
190 int adf_dev_start(struct adf_accel_dev *accel_dev)
192 struct adf_hw_device_data *hw_data = accel_dev->hw_device;
193 struct service_hndl *service;
194 struct list_head *list_itr;
196 set_bit(ADF_STATUS_STARTING, &accel_dev->status);
198 if (adf_ae_start(accel_dev)) {
199 dev_err(&GET_DEV(accel_dev), "AE Start Failed\n");
200 return -EFAULT;
202 set_bit(ADF_STATUS_AE_STARTED, &accel_dev->status);
204 if (hw_data->send_admin_init(accel_dev)) {
205 dev_err(&GET_DEV(accel_dev), "Failed to send init message\n");
206 return -EFAULT;
209 list_for_each(list_itr, &service_table) {
210 service = list_entry(list_itr, struct service_hndl, list);
211 if (service->event_hld(accel_dev, ADF_EVENT_START)) {
212 dev_err(&GET_DEV(accel_dev),
213 "Failed to start service %s\n",
214 service->name);
215 return -EFAULT;
217 set_bit(accel_dev->accel_id, service->start_status);
220 clear_bit(ADF_STATUS_STARTING, &accel_dev->status);
221 set_bit(ADF_STATUS_STARTED, &accel_dev->status);
223 if (!list_empty(&accel_dev->crypto_list) &&
224 (qat_algs_register() || qat_asym_algs_register())) {
225 dev_err(&GET_DEV(accel_dev),
226 "Failed to register crypto algs\n");
227 set_bit(ADF_STATUS_STARTING, &accel_dev->status);
228 clear_bit(ADF_STATUS_STARTED, &accel_dev->status);
229 return -EFAULT;
231 return 0;
233 EXPORT_SYMBOL_GPL(adf_dev_start);
236 * adf_dev_stop() - Stop acceleration service for the given accel device
237 * @accel_dev: Pointer to acceleration device.
239 * Function notifies all the registered services that the acceleration device
240 * is shuting down.
241 * To be used by QAT device specific drivers.
243 * Return: void
245 void adf_dev_stop(struct adf_accel_dev *accel_dev)
247 struct service_hndl *service;
248 struct list_head *list_itr;
249 bool wait = false;
250 int ret;
252 if (!adf_dev_started(accel_dev) &&
253 !test_bit(ADF_STATUS_STARTING, &accel_dev->status))
254 return;
256 clear_bit(ADF_STATUS_STARTING, &accel_dev->status);
257 clear_bit(ADF_STATUS_STARTED, &accel_dev->status);
259 if (!list_empty(&accel_dev->crypto_list)) {
260 qat_algs_unregister();
261 qat_asym_algs_unregister();
264 list_for_each(list_itr, &service_table) {
265 service = list_entry(list_itr, struct service_hndl, list);
266 if (!test_bit(accel_dev->accel_id, service->start_status))
267 continue;
268 ret = service->event_hld(accel_dev, ADF_EVENT_STOP);
269 if (!ret) {
270 clear_bit(accel_dev->accel_id, service->start_status);
271 } else if (ret == -EAGAIN) {
272 wait = true;
273 clear_bit(accel_dev->accel_id, service->start_status);
277 if (wait)
278 msleep(100);
280 if (test_bit(ADF_STATUS_AE_STARTED, &accel_dev->status)) {
281 if (adf_ae_stop(accel_dev))
282 dev_err(&GET_DEV(accel_dev), "failed to stop AE\n");
283 else
284 clear_bit(ADF_STATUS_AE_STARTED, &accel_dev->status);
287 EXPORT_SYMBOL_GPL(adf_dev_stop);
290 * adf_dev_shutdown() - shutdown acceleration services and data strucutures
291 * @accel_dev: Pointer to acceleration device
293 * Cleanup the ring data structures and the admin comms and arbitration
294 * services.
296 void adf_dev_shutdown(struct adf_accel_dev *accel_dev)
298 struct adf_hw_device_data *hw_data = accel_dev->hw_device;
299 struct service_hndl *service;
300 struct list_head *list_itr;
302 if (!hw_data) {
303 dev_err(&GET_DEV(accel_dev),
304 "QAT: Failed to shutdown device - hw_data not set\n");
305 return;
308 if (test_bit(ADF_STATUS_AE_UCODE_LOADED, &accel_dev->status)) {
309 adf_ae_fw_release(accel_dev);
310 clear_bit(ADF_STATUS_AE_UCODE_LOADED, &accel_dev->status);
313 if (test_bit(ADF_STATUS_AE_INITIALISED, &accel_dev->status)) {
314 if (adf_ae_shutdown(accel_dev))
315 dev_err(&GET_DEV(accel_dev),
316 "Failed to shutdown Accel Engine\n");
317 else
318 clear_bit(ADF_STATUS_AE_INITIALISED,
319 &accel_dev->status);
322 list_for_each(list_itr, &service_table) {
323 service = list_entry(list_itr, struct service_hndl, list);
324 if (!test_bit(accel_dev->accel_id, service->init_status))
325 continue;
326 if (service->event_hld(accel_dev, ADF_EVENT_SHUTDOWN))
327 dev_err(&GET_DEV(accel_dev),
328 "Failed to shutdown service %s\n",
329 service->name);
330 else
331 clear_bit(accel_dev->accel_id, service->init_status);
334 hw_data->disable_iov(accel_dev);
336 if (test_bit(ADF_STATUS_IRQ_ALLOCATED, &accel_dev->status)) {
337 hw_data->free_irq(accel_dev);
338 clear_bit(ADF_STATUS_IRQ_ALLOCATED, &accel_dev->status);
341 /* Delete configuration only if not restarting */
342 if (!test_bit(ADF_STATUS_RESTARTING, &accel_dev->status))
343 adf_cfg_del_all(accel_dev);
345 if (hw_data->exit_arb)
346 hw_data->exit_arb(accel_dev);
348 if (hw_data->exit_admin_comms)
349 hw_data->exit_admin_comms(accel_dev);
351 adf_cleanup_etr_data(accel_dev);
352 adf_dev_restore(accel_dev);
354 EXPORT_SYMBOL_GPL(adf_dev_shutdown);
356 int adf_dev_restarting_notify(struct adf_accel_dev *accel_dev)
358 struct service_hndl *service;
359 struct list_head *list_itr;
361 list_for_each(list_itr, &service_table) {
362 service = list_entry(list_itr, struct service_hndl, list);
363 if (service->event_hld(accel_dev, ADF_EVENT_RESTARTING))
364 dev_err(&GET_DEV(accel_dev),
365 "Failed to restart service %s.\n",
366 service->name);
368 return 0;
371 int adf_dev_restarted_notify(struct adf_accel_dev *accel_dev)
373 struct service_hndl *service;
374 struct list_head *list_itr;
376 list_for_each(list_itr, &service_table) {
377 service = list_entry(list_itr, struct service_hndl, list);
378 if (service->event_hld(accel_dev, ADF_EVENT_RESTARTED))
379 dev_err(&GET_DEV(accel_dev),
380 "Failed to restart service %s.\n",
381 service->name);
383 return 0;