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.
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.
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
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
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"
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 service
->init_status
= 0;
68 service
->start_status
= 0;
69 adf_service_add(service
);
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 if (service
->init_status
|| service
->start_status
) {
83 pr_err("QAT: Could not remove active service\n");
86 adf_service_remove(service
);
91 * adf_dev_init() - Init data structures and services for the given accel device
92 * @accel_dev: Pointer to acceleration device.
94 * Initialize the ring data structures and the admin comms and arbitration
97 * Return: 0 on success, error code otherwise.
99 int adf_dev_init(struct adf_accel_dev
*accel_dev
)
101 struct service_hndl
*service
;
102 struct list_head
*list_itr
;
103 struct adf_hw_device_data
*hw_data
= accel_dev
->hw_device
;
106 dev_err(&GET_DEV(accel_dev
),
107 "Failed to init device - hw_data not set\n");
111 if (!test_bit(ADF_STATUS_CONFIGURED
, &accel_dev
->status
)) {
112 dev_err(&GET_DEV(accel_dev
), "Device not configured\n");
116 if (adf_init_etr_data(accel_dev
)) {
117 dev_err(&GET_DEV(accel_dev
), "Failed initialize etr\n");
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");
126 if (hw_data
->init_arb
&& hw_data
->init_arb(accel_dev
)) {
127 dev_err(&GET_DEV(accel_dev
), "Failed initialize hw arbiter\n");
131 hw_data
->enable_ints(accel_dev
);
133 if (adf_ae_init(accel_dev
)) {
134 dev_err(&GET_DEV(accel_dev
),
135 "Failed to initialise Acceleration Engine\n");
138 set_bit(ADF_STATUS_AE_INITIALISED
, &accel_dev
->status
);
140 if (adf_ae_fw_load(accel_dev
)) {
141 dev_err(&GET_DEV(accel_dev
),
142 "Failed to load acceleration FW\n");
145 set_bit(ADF_STATUS_AE_UCODE_LOADED
, &accel_dev
->status
);
147 if (hw_data
->alloc_irq(accel_dev
)) {
148 dev_err(&GET_DEV(accel_dev
), "Failed to allocate interrupts\n");
151 set_bit(ADF_STATUS_IRQ_ALLOCATED
, &accel_dev
->status
);
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.
158 list_for_each(list_itr
, &service_table
) {
159 service
= list_entry(list_itr
, struct service_hndl
, list
);
160 if (service
->event_hld(accel_dev
, ADF_EVENT_INIT
)) {
161 dev_err(&GET_DEV(accel_dev
),
162 "Failed to initialise service %s\n",
166 set_bit(accel_dev
->accel_id
, &service
->init_status
);
169 hw_data
->enable_error_correction(accel_dev
);
170 hw_data
->enable_vf2pf_comms(accel_dev
);
174 EXPORT_SYMBOL_GPL(adf_dev_init
);
177 * adf_dev_start() - Start acceleration service for the given accel device
178 * @accel_dev: Pointer to acceleration device.
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.
184 * Return: 0 on success, error code otherwise.
186 int adf_dev_start(struct adf_accel_dev
*accel_dev
)
188 struct adf_hw_device_data
*hw_data
= accel_dev
->hw_device
;
189 struct service_hndl
*service
;
190 struct list_head
*list_itr
;
192 set_bit(ADF_STATUS_STARTING
, &accel_dev
->status
);
194 if (adf_ae_start(accel_dev
)) {
195 dev_err(&GET_DEV(accel_dev
), "AE Start Failed\n");
198 set_bit(ADF_STATUS_AE_STARTED
, &accel_dev
->status
);
200 if (hw_data
->send_admin_init(accel_dev
)) {
201 dev_err(&GET_DEV(accel_dev
), "Failed to send init message\n");
205 list_for_each(list_itr
, &service_table
) {
206 service
= list_entry(list_itr
, struct service_hndl
, list
);
207 if (service
->event_hld(accel_dev
, ADF_EVENT_START
)) {
208 dev_err(&GET_DEV(accel_dev
),
209 "Failed to start service %s\n",
213 set_bit(accel_dev
->accel_id
, &service
->start_status
);
216 clear_bit(ADF_STATUS_STARTING
, &accel_dev
->status
);
217 set_bit(ADF_STATUS_STARTED
, &accel_dev
->status
);
219 if (!list_empty(&accel_dev
->crypto_list
) &&
220 (qat_algs_register() || qat_asym_algs_register())) {
221 dev_err(&GET_DEV(accel_dev
),
222 "Failed to register crypto algs\n");
223 set_bit(ADF_STATUS_STARTING
, &accel_dev
->status
);
224 clear_bit(ADF_STATUS_STARTED
, &accel_dev
->status
);
229 EXPORT_SYMBOL_GPL(adf_dev_start
);
232 * adf_dev_stop() - Stop acceleration service for the given accel device
233 * @accel_dev: Pointer to acceleration device.
235 * Function notifies all the registered services that the acceleration device
237 * To be used by QAT device specific drivers.
239 * Return: 0 on success, error code otherwise.
241 int adf_dev_stop(struct adf_accel_dev
*accel_dev
)
243 struct service_hndl
*service
;
244 struct list_head
*list_itr
;
248 if (!adf_dev_started(accel_dev
) &&
249 !test_bit(ADF_STATUS_STARTING
, &accel_dev
->status
)) {
252 clear_bit(ADF_STATUS_STARTING
, &accel_dev
->status
);
253 clear_bit(ADF_STATUS_STARTED
, &accel_dev
->status
);
255 if (!list_empty(&accel_dev
->crypto_list
)) {
256 qat_algs_unregister();
257 qat_asym_algs_unregister();
260 list_for_each(list_itr
, &service_table
) {
261 service
= list_entry(list_itr
, struct service_hndl
, list
);
262 if (!test_bit(accel_dev
->accel_id
, &service
->start_status
))
264 ret
= service
->event_hld(accel_dev
, ADF_EVENT_STOP
);
266 clear_bit(accel_dev
->accel_id
, &service
->start_status
);
267 } else if (ret
== -EAGAIN
) {
269 clear_bit(accel_dev
->accel_id
, &service
->start_status
);
276 if (test_bit(ADF_STATUS_AE_STARTED
, &accel_dev
->status
)) {
277 if (adf_ae_stop(accel_dev
))
278 dev_err(&GET_DEV(accel_dev
), "failed to stop AE\n");
280 clear_bit(ADF_STATUS_AE_STARTED
, &accel_dev
->status
);
285 EXPORT_SYMBOL_GPL(adf_dev_stop
);
288 * adf_dev_shutdown() - shutdown acceleration services and data strucutures
289 * @accel_dev: Pointer to acceleration device
291 * Cleanup the ring data structures and the admin comms and arbitration
294 void adf_dev_shutdown(struct adf_accel_dev
*accel_dev
)
296 struct adf_hw_device_data
*hw_data
= accel_dev
->hw_device
;
297 struct service_hndl
*service
;
298 struct list_head
*list_itr
;
301 dev_err(&GET_DEV(accel_dev
),
302 "QAT: Failed to shutdown device - hw_data not set\n");
306 if (test_bit(ADF_STATUS_AE_UCODE_LOADED
, &accel_dev
->status
)) {
307 adf_ae_fw_release(accel_dev
);
308 clear_bit(ADF_STATUS_AE_UCODE_LOADED
, &accel_dev
->status
);
311 if (test_bit(ADF_STATUS_AE_INITIALISED
, &accel_dev
->status
)) {
312 if (adf_ae_shutdown(accel_dev
))
313 dev_err(&GET_DEV(accel_dev
),
314 "Failed to shutdown Accel Engine\n");
316 clear_bit(ADF_STATUS_AE_INITIALISED
,
320 list_for_each(list_itr
, &service_table
) {
321 service
= list_entry(list_itr
, struct service_hndl
, list
);
322 if (!test_bit(accel_dev
->accel_id
, &service
->init_status
))
324 if (service
->event_hld(accel_dev
, ADF_EVENT_SHUTDOWN
))
325 dev_err(&GET_DEV(accel_dev
),
326 "Failed to shutdown service %s\n",
329 clear_bit(accel_dev
->accel_id
, &service
->init_status
);
332 if (test_bit(ADF_STATUS_IRQ_ALLOCATED
, &accel_dev
->status
)) {
333 hw_data
->free_irq(accel_dev
);
334 clear_bit(ADF_STATUS_IRQ_ALLOCATED
, &accel_dev
->status
);
337 /* Delete configuration only if not restarting */
338 if (!test_bit(ADF_STATUS_RESTARTING
, &accel_dev
->status
))
339 adf_cfg_del_all(accel_dev
);
341 if (hw_data
->exit_arb
)
342 hw_data
->exit_arb(accel_dev
);
344 if (hw_data
->exit_admin_comms
)
345 hw_data
->exit_admin_comms(accel_dev
);
347 hw_data
->disable_iov(accel_dev
);
348 adf_cleanup_etr_data(accel_dev
);
349 adf_dev_restore(accel_dev
);
351 EXPORT_SYMBOL_GPL(adf_dev_shutdown
);
353 int adf_dev_restarting_notify(struct adf_accel_dev
*accel_dev
)
355 struct service_hndl
*service
;
356 struct list_head
*list_itr
;
358 list_for_each(list_itr
, &service_table
) {
359 service
= list_entry(list_itr
, struct service_hndl
, list
);
360 if (service
->event_hld(accel_dev
, ADF_EVENT_RESTARTING
))
361 dev_err(&GET_DEV(accel_dev
),
362 "Failed to restart service %s.\n",
368 int adf_dev_restarted_notify(struct adf_accel_dev
*accel_dev
)
370 struct service_hndl
*service
;
371 struct list_head
*list_itr
;
373 list_for_each(list_itr
, &service_table
) {
374 service
= list_entry(list_itr
, struct service_hndl
, list
);
375 if (service
->event_hld(accel_dev
, ADF_EVENT_RESTARTED
))
376 dev_err(&GET_DEV(accel_dev
),
377 "Failed to restart service %s.\n",