linux/drivers/crypto/amlogic/amlogic-gxl-core.c

// SPDX-License-Identifier: GPL-2.0
/*
 * amlgoic-core.c - hardware cryptographic offloader for Amlogic GXL SoC
 *
 * Copyright (C) 2018-2019 Corentin Labbe <[email protected]>
 *
 * Core file which registers crypto algorithms supported by the hardware.
 */

#include <crypto/engine.h>
#include <crypto/internal/skcipher.h>
#include <linux/clk.h>
#include <linux/dma-mapping.h>
#include <linux/err.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>

#include "amlogic-gxl.h"

static irqreturn_t meson_irq_handler(int irq, void *data)
{}

static struct meson_alg_template mc_algs[] =;

static int meson_debugfs_show(struct seq_file *seq, void *v)
{}
DEFINE_SHOW_ATTRIBUTE();

static void meson_free_chanlist(struct meson_dev *mc, int i)
{}

/*
 * Allocate the channel list structure
 */
static int meson_allocate_chanlist(struct meson_dev *mc)
{}

static int meson_register_algs(struct meson_dev *mc)
{}

static void meson_unregister_algs(struct meson_dev *mc)
{}

static int meson_crypto_probe(struct platform_device *pdev)
{}

static void meson_crypto_remove(struct platform_device *pdev)
{}

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

static struct platform_driver meson_crypto_driver =;

module_platform_driver();

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