mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-28 18:05:00 -04:00
AES-CCM is an AEAD algorithm supporting both encryption and authentication of data. This patch introduces support for AES-CCM AEAD algorithm in the DTHEv2 driver. Signed-off-by: T Pratham <t-pratham@ti.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
135 lines
3.3 KiB
C
135 lines
3.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* K3 DTHE V2 crypto accelerator driver
|
|
*
|
|
* Copyright (C) Texas Instruments 2025 - https://www.ti.com
|
|
* Author: T Pratham <t-pratham@ti.com>
|
|
*/
|
|
|
|
#ifndef __TI_DTHEV2_H__
|
|
#define __TI_DTHEV2_H__
|
|
|
|
#include <crypto/aead.h>
|
|
#include <crypto/aes.h>
|
|
#include <crypto/algapi.h>
|
|
#include <crypto/engine.h>
|
|
#include <crypto/hash.h>
|
|
#include <crypto/internal/aead.h>
|
|
#include <crypto/internal/hash.h>
|
|
#include <crypto/internal/skcipher.h>
|
|
|
|
#include <linux/delay.h>
|
|
#include <linux/dmaengine.h>
|
|
#include <linux/dmapool.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <linux/io.h>
|
|
#include <linux/scatterlist.h>
|
|
|
|
#define DTHE_REG_SIZE 4
|
|
#define DTHE_DMA_TIMEOUT_MS 2000
|
|
/*
|
|
* Size of largest possible key (of all algorithms) to be stored in dthe_tfm_ctx
|
|
* This is currently the keysize of XTS-AES-256 which is 512 bits (64 bytes)
|
|
*/
|
|
#define DTHE_MAX_KEYSIZE (AES_MAX_KEY_SIZE * 2)
|
|
|
|
enum dthe_aes_mode {
|
|
DTHE_AES_ECB = 0,
|
|
DTHE_AES_CBC,
|
|
DTHE_AES_CTR,
|
|
DTHE_AES_XTS,
|
|
DTHE_AES_GCM,
|
|
DTHE_AES_CCM,
|
|
};
|
|
|
|
/* Driver specific struct definitions */
|
|
|
|
/**
|
|
* struct dthe_data - DTHE_V2 driver instance data
|
|
* @dev: Device pointer
|
|
* @regs: Base address of the register space
|
|
* @list: list node for dev
|
|
* @engine: Crypto engine instance
|
|
* @dma_aes_rx: AES Rx DMA Channel
|
|
* @dma_aes_tx: AES Tx DMA Channel
|
|
* @dma_sha_tx: SHA Tx DMA Channel
|
|
*/
|
|
struct dthe_data {
|
|
struct device *dev;
|
|
void __iomem *regs;
|
|
struct list_head list;
|
|
struct crypto_engine *engine;
|
|
|
|
struct dma_chan *dma_aes_rx;
|
|
struct dma_chan *dma_aes_tx;
|
|
|
|
struct dma_chan *dma_sha_tx;
|
|
};
|
|
|
|
/**
|
|
* struct dthe_list - device data list head
|
|
* @dev_list: linked list head
|
|
* @lock: Spinlock protecting accesses to the list
|
|
*/
|
|
struct dthe_list {
|
|
struct list_head dev_list;
|
|
spinlock_t lock;
|
|
};
|
|
|
|
/**
|
|
* struct dthe_tfm_ctx - Transform ctx struct containing ctx for all sub-components of DTHE V2
|
|
* @dev_data: Device data struct pointer
|
|
* @keylen: AES key length
|
|
* @authsize: Authentication size for modes with authentication
|
|
* @key: AES key
|
|
* @aes_mode: AES mode
|
|
* @aead_fb: Fallback crypto aead handle
|
|
* @skcipher_fb: Fallback crypto skcipher handle for AES-XTS mode
|
|
*/
|
|
struct dthe_tfm_ctx {
|
|
struct dthe_data *dev_data;
|
|
unsigned int keylen;
|
|
unsigned int authsize;
|
|
u32 key[DTHE_MAX_KEYSIZE / sizeof(u32)];
|
|
enum dthe_aes_mode aes_mode;
|
|
union {
|
|
struct crypto_sync_aead *aead_fb;
|
|
struct crypto_sync_skcipher *skcipher_fb;
|
|
};
|
|
};
|
|
|
|
/**
|
|
* struct dthe_aes_req_ctx - AES engine req ctx struct
|
|
* @enc: flag indicating encryption or decryption operation
|
|
* @padding: padding buffer for handling unaligned data
|
|
* @aes_compl: Completion variable for use in manual completion in case of DMA callback failure
|
|
*/
|
|
struct dthe_aes_req_ctx {
|
|
int enc;
|
|
u8 padding[2 * AES_BLOCK_SIZE];
|
|
struct completion aes_compl;
|
|
};
|
|
|
|
/* Struct definitions end */
|
|
|
|
struct dthe_data *dthe_get_dev(struct dthe_tfm_ctx *ctx);
|
|
|
|
/**
|
|
* dthe_copy_sg - Copy sg entries from src to dst
|
|
* @dst: Destination sg to be filled
|
|
* @src: Source sg to be copied from
|
|
* @buflen: Number of bytes to be copied
|
|
*
|
|
* Description:
|
|
* Copy buflen bytes of data from src to dst.
|
|
*
|
|
**/
|
|
struct scatterlist *dthe_copy_sg(struct scatterlist *dst,
|
|
struct scatterlist *src,
|
|
int buflen);
|
|
|
|
int dthe_register_aes_algs(void);
|
|
void dthe_unregister_aes_algs(void);
|
|
|
|
#endif
|