cryptodev: change argument of driver registration
[dpdk.git] / drivers / crypto / mrvl / rte_mrvl_pmd.c
index e2bbfe0..1b6029a 100644 (file)
@@ -1,41 +1,14 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright (C) Semihalf 2017. All rights reserved.
- *
- *   Redistribution and use in source and binary forms, with or without
- *   modification, are permitted provided that the following conditions
- *   are met:
- *
- *     * Redistributions of source code must retain the above copyright
- *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright
- *       notice, this list of conditions and the following disclaimer in
- *       the documentation and/or other materials provided with the
- *       distribution.
- *     * Neither the name of Semihalf nor the names of its
- *       contributors may be used to endorse or promote products derived
- *       from this software without specific prior written permission.
- *
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Marvell International Ltd.
+ * Copyright(c) 2017 Semihalf.
+ * All rights reserved.
  */
 
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_cryptodev.h>
 #include <rte_cryptodev_pmd.h>
-#include <rte_cryptodev_vdev.h>
-#include <rte_vdev.h>
+#include <rte_bus_vdev.h>
 #include <rte_malloc.h>
 #include <rte_cpuflags.h>
 
@@ -479,7 +452,7 @@ mrvl_request_prepare(struct sam_cio_op_params *request,
        request->num_bufs = 1;
        request->src = src_bd;
        src_bd->vaddr = rte_pktmbuf_mtod(op->sym->m_src, void *);
-       src_bd->paddr = rte_pktmbuf_mtophys(op->sym->m_src);
+       src_bd->paddr = rte_pktmbuf_iova(op->sym->m_src);
        src_bd->len = rte_pktmbuf_data_len(op->sym->m_src);
 
        /* Empty source. */
@@ -501,7 +474,7 @@ mrvl_request_prepare(struct sam_cio_op_params *request,
 
        request->dst = dst_bd;
        dst_bd->vaddr = rte_pktmbuf_mtod(dst_mbuf, void *);
-       dst_bd->paddr = rte_pktmbuf_mtophys(dst_mbuf);
+       dst_bd->paddr = rte_pktmbuf_iova(dst_mbuf);
 
        /*
         * We can use all available space in dst_mbuf,
@@ -718,26 +691,14 @@ mrvl_crypto_pmd_dequeue_burst(void *queue_pair,
 static int
 cryptodev_mrvl_crypto_create(const char *name,
                struct rte_vdev_device *vdev,
-               struct rte_crypto_vdev_init_params *init_params)
+               struct rte_cryptodev_pmd_init_params *init_params)
 {
        struct rte_cryptodev *dev;
        struct mrvl_crypto_private *internals;
        struct sam_init_params  sam_params;
        int ret;
 
-       if (init_params->name[0] == '\0') {
-               ret = rte_cryptodev_pmd_create_dev_name(
-                               init_params->name, name);
-
-               if (ret < 0) {
-                       MRVL_CRYPTO_LOG_ERR("failed to create unique name");
-                       return ret;
-               }
-       }
-
-       dev = rte_cryptodev_vdev_pmd_init(init_params->name,
-                               sizeof(struct mrvl_crypto_private),
-                               init_params->socket_id, vdev);
+       dev = rte_cryptodev_pmd_create(name, &vdev->device, init_params);
        if (dev == NULL) {
                MRVL_CRYPTO_LOG_ERR("failed to create cryptodev vdev");
                goto init_error;
@@ -794,40 +755,28 @@ init_error:
 static int
 cryptodev_mrvl_crypto_init(struct rte_vdev_device *vdev)
 {
-       struct rte_crypto_vdev_init_params init_params = { };
-       const char *name;
-       const char *input_args;
+       struct rte_cryptodev_pmd_init_params init_params = { };
+       const char *name, *args;
        int ret;
 
        name = rte_vdev_device_name(vdev);
        if (name == NULL)
                return -EINVAL;
-       input_args = rte_vdev_device_args(vdev);
-
-       if (!input_args)
-               return -EINVAL;
+       args = rte_vdev_device_args(vdev);
 
+       init_params.private_data_size = sizeof(struct mrvl_crypto_private);
        init_params.max_nb_queue_pairs = sam_get_num_inst() * SAM_HW_RING_NUM;
        init_params.max_nb_sessions =
-               RTE_CRYPTODEV_VDEV_DEFAULT_MAX_NB_SESSIONS;
+               RTE_CRYPTODEV_PMD_DEFAULT_MAX_NB_SESSIONS;
        init_params.socket_id = rte_socket_id();
 
-       ret = rte_cryptodev_vdev_parse_init_params(&init_params, input_args);
+       ret = rte_cryptodev_pmd_parse_input_args(&init_params, args);
        if (ret) {
-               RTE_LOG(ERR, PMD, "Failed to parse input arguments\n");
-               return ret;
-       }
-
-       RTE_LOG(INFO, PMD, "Initialising %s on NUMA node %d\n", name,
-                       init_params.socket_id);
-       if (init_params.name[0] != '\0') {
-               RTE_LOG(INFO, PMD, "  User defined name = %s\n",
-                       init_params.name);
+               RTE_LOG(ERR, PMD,
+                       "Failed to parse initialisation arguments[%s]\n",
+                       args);
+               return -EINVAL;
        }
-       RTE_LOG(INFO, PMD, "  Max number of queue pairs = %d\n",
-                       init_params.max_nb_queue_pairs);
-       RTE_LOG(INFO, PMD, "  Max number of sessions = %d\n",
-                       init_params.max_nb_sessions);
 
        return cryptodev_mrvl_crypto_create(name, vdev, &init_params);
 }
@@ -841,6 +790,7 @@ cryptodev_mrvl_crypto_init(struct rte_vdev_device *vdev)
 static int
 cryptodev_mrvl_crypto_uninit(struct rte_vdev_device *vdev)
 {
+       struct rte_cryptodev *cryptodev;
        const char *name = rte_vdev_device_name(vdev);
 
        if (name == NULL)
@@ -852,7 +802,11 @@ cryptodev_mrvl_crypto_uninit(struct rte_vdev_device *vdev)
 
        sam_deinit();
 
-       return 0;
+       cryptodev = rte_cryptodev_pmd_get_named_dev(name);
+       if (cryptodev == NULL)
+               return -ENODEV;
+
+       return rte_cryptodev_pmd_destroy(cryptodev);
 }
 
 /**
@@ -871,5 +825,5 @@ RTE_PMD_REGISTER_PARAM_STRING(CRYPTODEV_NAME_MRVL_PMD,
        "max_nb_queue_pairs=<int> "
        "max_nb_sessions=<int> "
        "socket_id=<int>");
-RTE_PMD_REGISTER_CRYPTO_DRIVER(mrvl_crypto_drv, cryptodev_mrvl_pmd_drv,
+RTE_PMD_REGISTER_CRYPTO_DRIVER(mrvl_crypto_drv, cryptodev_mrvl_pmd_drv.driver,
                cryptodev_driver_id);