Imported Upstream version 16.07-rc2
[deb_dpdk.git] / drivers / crypto / qat / rte_qat_cryptodev.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2015-2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <rte_common.h>
35 #include <rte_dev.h>
36 #include <rte_malloc.h>
37 #include <rte_cryptodev_pmd.h>
38
39 #include "qat_crypto.h"
40 #include "qat_logs.h"
41
42 static struct rte_cryptodev_ops crypto_qat_ops = {
43
44                 /* Device related operations */
45                 .dev_configure          = qat_dev_config,
46                 .dev_start              = qat_dev_start,
47                 .dev_stop               = qat_dev_stop,
48                 .dev_close              = qat_dev_close,
49                 .dev_infos_get          = qat_dev_info_get,
50
51                 .stats_get              = qat_crypto_sym_stats_get,
52                 .stats_reset            = qat_crypto_sym_stats_reset,
53                 .queue_pair_setup       = qat_crypto_sym_qp_setup,
54                 .queue_pair_release     = qat_crypto_sym_qp_release,
55                 .queue_pair_start       = NULL,
56                 .queue_pair_stop        = NULL,
57                 .queue_pair_count       = NULL,
58
59                 /* Crypto related operations */
60                 .session_get_size       = qat_crypto_sym_get_session_private_size,
61                 .session_configure      = qat_crypto_sym_configure_session,
62                 .session_initialize     = qat_crypto_sym_session_init,
63                 .session_clear          = qat_crypto_sym_clear_session
64 };
65
66 /*
67  * The set of PCI devices this driver supports
68  */
69
70 static struct rte_pci_id pci_id_qat_map[] = {
71                 {
72                         RTE_PCI_DEVICE(0x8086, 0x0443),
73                 },
74                 {.device_id = 0},
75 };
76
77 static int
78 crypto_qat_dev_init(__attribute__((unused)) struct rte_cryptodev_driver *crypto_drv,
79                         struct rte_cryptodev *cryptodev)
80 {
81         struct qat_pmd_private *internals;
82
83         PMD_INIT_FUNC_TRACE();
84         PMD_DRV_LOG(DEBUG, "Found crypto device at %02x:%02x.%x",
85                 cryptodev->pci_dev->addr.bus,
86                 cryptodev->pci_dev->addr.devid,
87                 cryptodev->pci_dev->addr.function);
88
89         cryptodev->dev_type = RTE_CRYPTODEV_QAT_SYM_PMD;
90         cryptodev->dev_ops = &crypto_qat_ops;
91
92         cryptodev->enqueue_burst = qat_pmd_enqueue_op_burst;
93         cryptodev->dequeue_burst = qat_pmd_dequeue_op_burst;
94
95         cryptodev->feature_flags = RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO |
96                         RTE_CRYPTODEV_FF_HW_ACCELERATED |
97                         RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING;
98
99         internals = cryptodev->data->dev_private;
100         internals->max_nb_sessions = RTE_QAT_PMD_MAX_NB_SESSIONS;
101
102         /*
103          * For secondary processes, we don't initialise any further as primary
104          * has already done this work. Only check we don't need a different
105          * RX function
106          */
107         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
108                 PMD_DRV_LOG(DEBUG, "Device already initialised by primary process");
109                 return 0;
110         }
111
112         return 0;
113 }
114
115 static struct rte_cryptodev_driver rte_qat_pmd = {
116         {
117                 .id_table = pci_id_qat_map,
118                 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
119         },
120         .cryptodev_init = crypto_qat_dev_init,
121         .dev_private_size = sizeof(struct qat_pmd_private),
122 };
123
124 static int
125 rte_qat_pmd_init(const char *name __rte_unused, const char *params __rte_unused)
126 {
127         PMD_INIT_FUNC_TRACE();
128         return rte_cryptodev_pmd_driver_register(&rte_qat_pmd, PMD_PDEV);
129 }
130
131 static struct rte_driver pmd_qat_drv = {
132         .type = PMD_PDEV,
133         .init = rte_qat_pmd_init,
134 };
135
136 PMD_REGISTER_DRIVER(pmd_qat_drv, CRYPTODEV_NAME_QAT_SYM_PMD);
137 DRIVER_REGISTER_PCI_TABLE(CRYPTODEV_NAME_QAT_SYM_PMD, pci_id_qat_map);
138