linux/drivers/crypto/qce/core.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2010-2014, The Linux Foundation. All rights reserved.
 */

#include <linux/clk.h>
#include <linux/dma-mapping.h>
#include <linux/interconnect.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include <linux/types.h>
#include <crypto/algapi.h>
#include <crypto/internal/hash.h>

#include "core.h"
#include "cipher.h"
#include "sha.h"
#include "aead.h"

#define QCE_MAJOR_VERSION5
#define QCE_QUEUE_LENGTH

#define QCE_DEFAULT_MEM_BANDWIDTH

static const struct qce_algo_ops *qce_ops[] =;

static void qce_unregister_algs(struct qce_device *qce)
{}

static int qce_register_algs(struct qce_device *qce)
{}

static int qce_handle_request(struct crypto_async_request *async_req)
{}

static int qce_handle_queue(struct qce_device *qce,
			    struct crypto_async_request *req)
{}

static void qce_tasklet_req_done(unsigned long data)
{}

static int qce_async_request_enqueue(struct qce_device *qce,
				     struct crypto_async_request *req)
{}

static void qce_async_request_done(struct qce_device *qce, int ret)
{}

static int qce_check_version(struct qce_device *qce)
{}

static int qce_crypto_probe(struct platform_device *pdev)
{}

static void qce_crypto_remove(struct platform_device *pdev)
{}

static const struct of_device_id qce_crypto_of_match[] =;
MODULE_DEVICE_TABLE(of, qce_crypto_of_match);

static struct platform_driver qce_crypto_driver =;
module_platform_driver();

MODULE_LICENSE();
MODULE_DESCRIPTION();
MODULE_ALIAS();
MODULE_AUTHOR();