Linux Audio

Check our new training course

Loading...
v6.8
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 *   Driver for ARTPEC-6 crypto block using the kernel asynchronous crypto api.
   4 *
   5 *    Copyright (C) 2014-2017  Axis Communications AB
   6 */
   7#define pr_fmt(fmt)     KBUILD_MODNAME ": " fmt
   8
   9#include <linux/bitfield.h>
  10#include <linux/crypto.h>
  11#include <linux/debugfs.h>
  12#include <linux/delay.h>
  13#include <linux/dma-mapping.h>
  14#include <linux/fault-inject.h>
  15#include <linux/init.h>
  16#include <linux/interrupt.h>
  17#include <linux/kernel.h>
  18#include <linux/list.h>
  19#include <linux/module.h>
  20#include <linux/of.h>
  21#include <linux/platform_device.h>
  22#include <linux/scatterlist.h>
  23#include <linux/slab.h>
  24
  25#include <crypto/aes.h>
  26#include <crypto/gcm.h>
  27#include <crypto/internal/aead.h>
  28#include <crypto/internal/hash.h>
  29#include <crypto/internal/skcipher.h>
  30#include <crypto/scatterwalk.h>
  31#include <crypto/sha1.h>
  32#include <crypto/sha2.h>
  33#include <crypto/xts.h>
  34
  35/* Max length of a line in all cache levels for Artpec SoCs. */
  36#define ARTPEC_CACHE_LINE_MAX	32
  37
  38#define PDMA_OUT_CFG		0x0000
  39#define PDMA_OUT_BUF_CFG	0x0004
  40#define PDMA_OUT_CMD		0x0008
  41#define PDMA_OUT_DESCRQ_PUSH	0x0010
  42#define PDMA_OUT_DESCRQ_STAT	0x0014
  43
  44#define A6_PDMA_IN_CFG		0x0028
  45#define A6_PDMA_IN_BUF_CFG	0x002c
  46#define A6_PDMA_IN_CMD		0x0030
  47#define A6_PDMA_IN_STATQ_PUSH	0x0038
  48#define A6_PDMA_IN_DESCRQ_PUSH	0x0044
  49#define A6_PDMA_IN_DESCRQ_STAT	0x0048
  50#define A6_PDMA_INTR_MASK	0x0068
  51#define A6_PDMA_ACK_INTR	0x006c
  52#define A6_PDMA_MASKED_INTR	0x0074
  53
  54#define A7_PDMA_IN_CFG		0x002c
  55#define A7_PDMA_IN_BUF_CFG	0x0030
  56#define A7_PDMA_IN_CMD		0x0034
  57#define A7_PDMA_IN_STATQ_PUSH	0x003c
  58#define A7_PDMA_IN_DESCRQ_PUSH	0x0048
  59#define A7_PDMA_IN_DESCRQ_STAT	0x004C
  60#define A7_PDMA_INTR_MASK	0x006c
  61#define A7_PDMA_ACK_INTR	0x0070
  62#define A7_PDMA_MASKED_INTR	0x0078
  63
  64#define PDMA_OUT_CFG_EN				BIT(0)
  65
  66#define PDMA_OUT_BUF_CFG_DATA_BUF_SIZE		GENMASK(4, 0)
  67#define PDMA_OUT_BUF_CFG_DESCR_BUF_SIZE		GENMASK(9, 5)
  68
  69#define PDMA_OUT_CMD_START			BIT(0)
  70#define A6_PDMA_OUT_CMD_STOP			BIT(3)
  71#define A7_PDMA_OUT_CMD_STOP			BIT(2)
  72
  73#define PDMA_OUT_DESCRQ_PUSH_LEN		GENMASK(5, 0)
  74#define PDMA_OUT_DESCRQ_PUSH_ADDR		GENMASK(31, 6)
  75
  76#define PDMA_OUT_DESCRQ_STAT_LEVEL		GENMASK(3, 0)
  77#define PDMA_OUT_DESCRQ_STAT_SIZE		GENMASK(7, 4)
  78
  79#define PDMA_IN_CFG_EN				BIT(0)
  80
  81#define PDMA_IN_BUF_CFG_DATA_BUF_SIZE		GENMASK(4, 0)
  82#define PDMA_IN_BUF_CFG_DESCR_BUF_SIZE		GENMASK(9, 5)
  83#define PDMA_IN_BUF_CFG_STAT_BUF_SIZE		GENMASK(14, 10)
  84
  85#define PDMA_IN_CMD_START			BIT(0)
  86#define A6_PDMA_IN_CMD_FLUSH_STAT		BIT(2)
  87#define A6_PDMA_IN_CMD_STOP			BIT(3)
  88#define A7_PDMA_IN_CMD_FLUSH_STAT		BIT(1)
  89#define A7_PDMA_IN_CMD_STOP			BIT(2)
  90
  91#define PDMA_IN_STATQ_PUSH_LEN			GENMASK(5, 0)
  92#define PDMA_IN_STATQ_PUSH_ADDR			GENMASK(31, 6)
  93
  94#define PDMA_IN_DESCRQ_PUSH_LEN			GENMASK(5, 0)
  95#define PDMA_IN_DESCRQ_PUSH_ADDR		GENMASK(31, 6)
  96
  97#define PDMA_IN_DESCRQ_STAT_LEVEL		GENMASK(3, 0)
  98#define PDMA_IN_DESCRQ_STAT_SIZE		GENMASK(7, 4)
  99
 100#define A6_PDMA_INTR_MASK_IN_DATA		BIT(2)
 101#define A6_PDMA_INTR_MASK_IN_EOP		BIT(3)
 102#define A6_PDMA_INTR_MASK_IN_EOP_FLUSH		BIT(4)
 103
 104#define A7_PDMA_INTR_MASK_IN_DATA		BIT(3)
 105#define A7_PDMA_INTR_MASK_IN_EOP		BIT(4)
 106#define A7_PDMA_INTR_MASK_IN_EOP_FLUSH		BIT(5)
 107
 108#define A6_CRY_MD_OPER		GENMASK(19, 16)
 109
 110#define A6_CRY_MD_HASH_SEL_CTX	GENMASK(21, 20)
 111#define A6_CRY_MD_HASH_HMAC_FIN	BIT(23)
 112
 113#define A6_CRY_MD_CIPHER_LEN	GENMASK(21, 20)
 114#define A6_CRY_MD_CIPHER_DECR	BIT(22)
 115#define A6_CRY_MD_CIPHER_TWEAK	BIT(23)
 116#define A6_CRY_MD_CIPHER_DSEQ	BIT(24)
 117
 118#define A7_CRY_MD_OPER		GENMASK(11, 8)
 119
 120#define A7_CRY_MD_HASH_SEL_CTX	GENMASK(13, 12)
 121#define A7_CRY_MD_HASH_HMAC_FIN	BIT(15)
 122
 123#define A7_CRY_MD_CIPHER_LEN	GENMASK(13, 12)
 124#define A7_CRY_MD_CIPHER_DECR	BIT(14)
 125#define A7_CRY_MD_CIPHER_TWEAK	BIT(15)
 126#define A7_CRY_MD_CIPHER_DSEQ	BIT(16)
 127
 128/* DMA metadata constants */
 129#define regk_crypto_aes_cbc     0x00000002
 130#define regk_crypto_aes_ctr     0x00000003
 131#define regk_crypto_aes_ecb     0x00000001
 132#define regk_crypto_aes_gcm     0x00000004
 133#define regk_crypto_aes_xts     0x00000005
 134#define regk_crypto_cache       0x00000002
 135#define a6_regk_crypto_dlkey    0x0000000a
 136#define a7_regk_crypto_dlkey    0x0000000e
 137#define regk_crypto_ext         0x00000001
 138#define regk_crypto_hmac_sha1   0x00000007
 139#define regk_crypto_hmac_sha256 0x00000009
 140#define regk_crypto_init        0x00000000
 141#define regk_crypto_key_128     0x00000000
 142#define regk_crypto_key_192     0x00000001
 143#define regk_crypto_key_256     0x00000002
 144#define regk_crypto_null        0x00000000
 145#define regk_crypto_sha1        0x00000006
 146#define regk_crypto_sha256      0x00000008
 147
 148/* DMA descriptor structures */
 149struct pdma_descr_ctrl  {
 150	unsigned char short_descr : 1;
 151	unsigned char pad1        : 1;
 152	unsigned char eop         : 1;
 153	unsigned char intr        : 1;
 154	unsigned char short_len   : 3;
 155	unsigned char pad2        : 1;
 156} __packed;
 157
 158struct pdma_data_descr {
 159	unsigned int len : 24;
 160	unsigned int buf : 32;
 161} __packed;
 162
 163struct pdma_short_descr {
 164	unsigned char data[7];
 165} __packed;
 166
 167struct pdma_descr {
 168	struct pdma_descr_ctrl ctrl;
 169	union {
 170		struct pdma_data_descr   data;
 171		struct pdma_short_descr  shrt;
 172	};
 173};
 174
 175struct pdma_stat_descr {
 176	unsigned char pad1        : 1;
 177	unsigned char pad2        : 1;
 178	unsigned char eop         : 1;
 179	unsigned char pad3        : 5;
 180	unsigned int  len         : 24;
 181};
 182
 183/* Each descriptor array can hold max 64 entries */
 184#define PDMA_DESCR_COUNT	64
 185
 186#define MODULE_NAME   "Artpec-6 CA"
 187
 188/* Hash modes (including HMAC variants) */
 189#define ARTPEC6_CRYPTO_HASH_SHA1	1
 190#define ARTPEC6_CRYPTO_HASH_SHA256	2
 191
 192/* Crypto modes */
 193#define ARTPEC6_CRYPTO_CIPHER_AES_ECB	1
 194#define ARTPEC6_CRYPTO_CIPHER_AES_CBC	2
 195#define ARTPEC6_CRYPTO_CIPHER_AES_CTR	3
 196#define ARTPEC6_CRYPTO_CIPHER_AES_XTS	5
 197
 198/* The PDMA is a DMA-engine tightly coupled with a ciphering engine.
 199 * It operates on a descriptor array with up to 64 descriptor entries.
 200 * The arrays must be 64 byte aligned in memory.
 201 *
 202 * The ciphering unit has no registers and is completely controlled by
 203 * a 4-byte metadata that is inserted at the beginning of each dma packet.
 204 *
 205 * A dma packet is a sequence of descriptors terminated by setting the .eop
 206 * field in the final descriptor of the packet.
 207 *
 208 * Multiple packets are used for providing context data, key data and
 209 * the plain/ciphertext.
 210 *
 211 *   PDMA Descriptors (Array)
 212 *  +------+------+------+~~+-------+------+----
 213 *  |  0   |  1   |  2   |~~| 11 EOP|  12  |  ....
 214 *  +--+---+--+---+----+-+~~+-------+----+-+----
 215 *     |      |        |       |         |
 216 *     |      |        |       |         |
 217 *   __|__  +-------++-------++-------+ +----+
 218 *  | MD  | |Payload||Payload||Payload| | MD |
 219 *  +-----+ +-------++-------++-------+ +----+
 220 */
 221
 222struct artpec6_crypto_bounce_buffer {
 223	struct list_head list;
 224	size_t length;
 225	struct scatterlist *sg;
 226	size_t offset;
 227	/* buf is aligned to ARTPEC_CACHE_LINE_MAX and
 228	 * holds up to ARTPEC_CACHE_LINE_MAX bytes data.
 229	 */
 230	void *buf;
 231};
 232
 233struct artpec6_crypto_dma_map {
 234	dma_addr_t dma_addr;
 235	size_t size;
 236	enum dma_data_direction dir;
 237};
 238
 239struct artpec6_crypto_dma_descriptors {
 240	struct pdma_descr out[PDMA_DESCR_COUNT] __aligned(64);
 241	struct pdma_descr in[PDMA_DESCR_COUNT] __aligned(64);
 242	u32 stat[PDMA_DESCR_COUNT] __aligned(64);
 243	struct list_head bounce_buffers;
 244	/* Enough maps for all out/in buffers, and all three descr. arrays */
 245	struct artpec6_crypto_dma_map maps[PDMA_DESCR_COUNT * 2 + 2];
 246	dma_addr_t out_dma_addr;
 247	dma_addr_t in_dma_addr;
 248	dma_addr_t stat_dma_addr;
 249	size_t out_cnt;
 250	size_t in_cnt;
 251	size_t map_count;
 252};
 253
 254enum artpec6_crypto_variant {
 255	ARTPEC6_CRYPTO,
 256	ARTPEC7_CRYPTO,
 257};
 258
 259struct artpec6_crypto {
 260	void __iomem *base;
 261	spinlock_t queue_lock;
 262	struct list_head queue; /* waiting for pdma fifo space */
 263	struct list_head pending; /* submitted to pdma fifo */
 264	struct tasklet_struct task;
 265	struct kmem_cache *dma_cache;
 266	int pending_count;
 267	struct timer_list timer;
 268	enum artpec6_crypto_variant variant;
 269	void *pad_buffer; /* cache-aligned block padding buffer */
 270	void *zero_buffer;
 271};
 272
 273enum artpec6_crypto_hash_flags {
 274	HASH_FLAG_INIT_CTX = 2,
 275	HASH_FLAG_UPDATE = 4,
 276	HASH_FLAG_FINALIZE = 8,
 277	HASH_FLAG_HMAC = 16,
 278	HASH_FLAG_UPDATE_KEY = 32,
 279};
 280
 281struct artpec6_crypto_req_common {
 282	struct list_head list;
 283	struct list_head complete_in_progress;
 284	struct artpec6_crypto_dma_descriptors *dma;
 285	struct crypto_async_request *req;
 286	void (*complete)(struct crypto_async_request *req);
 287	gfp_t gfp_flags;
 288};
 289
 290struct artpec6_hash_request_context {
 291	char partial_buffer[SHA256_BLOCK_SIZE];
 292	char partial_buffer_out[SHA256_BLOCK_SIZE];
 293	char key_buffer[SHA256_BLOCK_SIZE];
 294	char pad_buffer[SHA256_BLOCK_SIZE + 32];
 295	unsigned char digeststate[SHA256_DIGEST_SIZE];
 296	size_t partial_bytes;
 297	u64 digcnt;
 298	u32 key_md;
 299	u32 hash_md;
 300	enum artpec6_crypto_hash_flags hash_flags;
 301	struct artpec6_crypto_req_common common;
 302};
 303
 304struct artpec6_hash_export_state {
 305	char partial_buffer[SHA256_BLOCK_SIZE];
 306	unsigned char digeststate[SHA256_DIGEST_SIZE];
 307	size_t partial_bytes;
 308	u64 digcnt;
 309	int oper;
 310	unsigned int hash_flags;
 311};
 312
 313struct artpec6_hashalg_context {
 314	char hmac_key[SHA256_BLOCK_SIZE];
 315	size_t hmac_key_length;
 316	struct crypto_shash *child_hash;
 317};
 318
 319struct artpec6_crypto_request_context {
 320	u32 cipher_md;
 321	bool decrypt;
 322	struct artpec6_crypto_req_common common;
 323};
 324
 325struct artpec6_cryptotfm_context {
 326	unsigned char aes_key[2*AES_MAX_KEY_SIZE];
 327	size_t key_length;
 328	u32 key_md;
 329	int crypto_type;
 330	struct crypto_sync_skcipher *fallback;
 331};
 332
 333struct artpec6_crypto_aead_hw_ctx {
 334	__be64	aad_length_bits;
 335	__be64  text_length_bits;
 336	__u8	J0[AES_BLOCK_SIZE];
 337};
 338
 339struct artpec6_crypto_aead_req_ctx {
 340	struct artpec6_crypto_aead_hw_ctx hw_ctx;
 341	u32 cipher_md;
 342	bool decrypt;
 343	struct artpec6_crypto_req_common common;
 344	__u8 decryption_tag[AES_BLOCK_SIZE] ____cacheline_aligned;
 345};
 346
 347/* The crypto framework makes it hard to avoid this global. */
 348static struct device *artpec6_crypto_dev;
 349
 350#ifdef CONFIG_FAULT_INJECTION
 351static DECLARE_FAULT_ATTR(artpec6_crypto_fail_status_read);
 352static DECLARE_FAULT_ATTR(artpec6_crypto_fail_dma_array_full);
 353#endif
 354
 355enum {
 356	ARTPEC6_CRYPTO_PREPARE_HASH_NO_START,
 357	ARTPEC6_CRYPTO_PREPARE_HASH_START,
 358};
 359
 360static int artpec6_crypto_prepare_aead(struct aead_request *areq);
 361static int artpec6_crypto_prepare_crypto(struct skcipher_request *areq);
 362static int artpec6_crypto_prepare_hash(struct ahash_request *areq);
 363
 364static void
 365artpec6_crypto_complete_crypto(struct crypto_async_request *req);
 366static void
 367artpec6_crypto_complete_cbc_encrypt(struct crypto_async_request *req);
 368static void
 369artpec6_crypto_complete_cbc_decrypt(struct crypto_async_request *req);
 370static void
 371artpec6_crypto_complete_aead(struct crypto_async_request *req);
 372static void
 373artpec6_crypto_complete_hash(struct crypto_async_request *req);
 374
 375static int
 376artpec6_crypto_common_destroy(struct artpec6_crypto_req_common *common);
 377
 378static void
 379artpec6_crypto_start_dma(struct artpec6_crypto_req_common *common);
 380
 381struct artpec6_crypto_walk {
 382	struct scatterlist *sg;
 383	size_t offset;
 384};
 385
 386static void artpec6_crypto_walk_init(struct artpec6_crypto_walk *awalk,
 387				     struct scatterlist *sg)
 388{
 389	awalk->sg = sg;
 390	awalk->offset = 0;
 391}
 392
 393static size_t artpec6_crypto_walk_advance(struct artpec6_crypto_walk *awalk,
 394					  size_t nbytes)
 395{
 396	while (nbytes && awalk->sg) {
 397		size_t piece;
 398
 399		WARN_ON(awalk->offset > awalk->sg->length);
 400
 401		piece = min(nbytes, (size_t)awalk->sg->length - awalk->offset);
 402		nbytes -= piece;
 403		awalk->offset += piece;
 404		if (awalk->offset == awalk->sg->length) {
 405			awalk->sg = sg_next(awalk->sg);
 406			awalk->offset = 0;
 407		}
 408
 409	}
 410
 411	return nbytes;
 412}
 413
 414static size_t
 415artpec6_crypto_walk_chunklen(const struct artpec6_crypto_walk *awalk)
 416{
 417	WARN_ON(awalk->sg->length == awalk->offset);
 418
 419	return awalk->sg->length - awalk->offset;
 420}
 421
 422static dma_addr_t
 423artpec6_crypto_walk_chunk_phys(const struct artpec6_crypto_walk *awalk)
 424{
 425	return sg_phys(awalk->sg) + awalk->offset;
 426}
 427
 428static void
 429artpec6_crypto_copy_bounce_buffers(struct artpec6_crypto_req_common *common)
 430{
 431	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 432	struct artpec6_crypto_bounce_buffer *b;
 433	struct artpec6_crypto_bounce_buffer *next;
 434
 435	list_for_each_entry_safe(b, next, &dma->bounce_buffers, list) {
 436		pr_debug("bounce entry %p: %zu bytes @ %zu from %p\n",
 437			 b, b->length, b->offset, b->buf);
 438		sg_pcopy_from_buffer(b->sg,
 439				   1,
 440				   b->buf,
 441				   b->length,
 442				   b->offset);
 443
 444		list_del(&b->list);
 445		kfree(b);
 446	}
 447}
 448
 449static inline bool artpec6_crypto_busy(void)
 450{
 451	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
 452	int fifo_count = ac->pending_count;
 453
 454	return fifo_count > 6;
 455}
 456
 457static int artpec6_crypto_submit(struct artpec6_crypto_req_common *req)
 458{
 459	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
 460	int ret = -EBUSY;
 461
 462	spin_lock_bh(&ac->queue_lock);
 463
 464	if (!artpec6_crypto_busy()) {
 465		list_add_tail(&req->list, &ac->pending);
 466		artpec6_crypto_start_dma(req);
 467		ret = -EINPROGRESS;
 468	} else if (req->req->flags & CRYPTO_TFM_REQ_MAY_BACKLOG) {
 469		list_add_tail(&req->list, &ac->queue);
 470	} else {
 471		artpec6_crypto_common_destroy(req);
 472	}
 473
 474	spin_unlock_bh(&ac->queue_lock);
 475
 476	return ret;
 477}
 478
 479static void artpec6_crypto_start_dma(struct artpec6_crypto_req_common *common)
 480{
 481	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
 482	enum artpec6_crypto_variant variant = ac->variant;
 483	void __iomem *base = ac->base;
 484	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 485	u32 ind, statd, outd;
 486
 487	/* Make descriptor content visible to the DMA before starting it. */
 488	wmb();
 489
 490	ind = FIELD_PREP(PDMA_IN_DESCRQ_PUSH_LEN, dma->in_cnt - 1) |
 491	      FIELD_PREP(PDMA_IN_DESCRQ_PUSH_ADDR, dma->in_dma_addr >> 6);
 492
 493	statd = FIELD_PREP(PDMA_IN_STATQ_PUSH_LEN, dma->in_cnt - 1) |
 494		FIELD_PREP(PDMA_IN_STATQ_PUSH_ADDR, dma->stat_dma_addr >> 6);
 495
 496	outd = FIELD_PREP(PDMA_OUT_DESCRQ_PUSH_LEN, dma->out_cnt - 1) |
 497	       FIELD_PREP(PDMA_OUT_DESCRQ_PUSH_ADDR, dma->out_dma_addr >> 6);
 498
 499	if (variant == ARTPEC6_CRYPTO) {
 500		writel_relaxed(ind, base + A6_PDMA_IN_DESCRQ_PUSH);
 501		writel_relaxed(statd, base + A6_PDMA_IN_STATQ_PUSH);
 502		writel_relaxed(PDMA_IN_CMD_START, base + A6_PDMA_IN_CMD);
 503	} else {
 504		writel_relaxed(ind, base + A7_PDMA_IN_DESCRQ_PUSH);
 505		writel_relaxed(statd, base + A7_PDMA_IN_STATQ_PUSH);
 506		writel_relaxed(PDMA_IN_CMD_START, base + A7_PDMA_IN_CMD);
 507	}
 508
 509	writel_relaxed(outd, base + PDMA_OUT_DESCRQ_PUSH);
 510	writel_relaxed(PDMA_OUT_CMD_START, base + PDMA_OUT_CMD);
 511
 512	ac->pending_count++;
 513}
 514
 515static void
 516artpec6_crypto_init_dma_operation(struct artpec6_crypto_req_common *common)
 517{
 518	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 519
 520	dma->out_cnt = 0;
 521	dma->in_cnt = 0;
 522	dma->map_count = 0;
 523	INIT_LIST_HEAD(&dma->bounce_buffers);
 524}
 525
 526static bool fault_inject_dma_descr(void)
 527{
 528#ifdef CONFIG_FAULT_INJECTION
 529	return should_fail(&artpec6_crypto_fail_dma_array_full, 1);
 530#else
 531	return false;
 532#endif
 533}
 534
 535/** artpec6_crypto_setup_out_descr_phys - Setup an out channel with a
 536 *                                        physical address
 537 *
 538 * @addr: The physical address of the data buffer
 539 * @len:  The length of the data buffer
 540 * @eop:  True if this is the last buffer in the packet
 541 *
 542 * @return 0 on success or -ENOSPC if there are no more descriptors available
 543 */
 544static int
 545artpec6_crypto_setup_out_descr_phys(struct artpec6_crypto_req_common *common,
 546				    dma_addr_t addr, size_t len, bool eop)
 547{
 548	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 549	struct pdma_descr *d;
 550
 551	if (dma->out_cnt >= PDMA_DESCR_COUNT ||
 552	    fault_inject_dma_descr()) {
 553		pr_err("No free OUT DMA descriptors available!\n");
 554		return -ENOSPC;
 555	}
 556
 557	d = &dma->out[dma->out_cnt++];
 558	memset(d, 0, sizeof(*d));
 559
 560	d->ctrl.short_descr = 0;
 561	d->ctrl.eop = eop;
 562	d->data.len = len;
 563	d->data.buf = addr;
 564	return 0;
 565}
 566
 567/** artpec6_crypto_setup_out_descr_short - Setup a short out descriptor
 568 *
 569 * @dst: The virtual address of the data
 570 * @len: The length of the data, must be between 1 to 7 bytes
 571 * @eop: True if this is the last buffer in the packet
 572 *
 573 * @return 0 on success
 574 *	-ENOSPC if no more descriptors are available
 575 *	-EINVAL if the data length exceeds 7 bytes
 576 */
 577static int
 578artpec6_crypto_setup_out_descr_short(struct artpec6_crypto_req_common *common,
 579				     void *dst, unsigned int len, bool eop)
 580{
 581	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 582	struct pdma_descr *d;
 583
 584	if (dma->out_cnt >= PDMA_DESCR_COUNT ||
 585	    fault_inject_dma_descr()) {
 586		pr_err("No free OUT DMA descriptors available!\n");
 587		return -ENOSPC;
 588	} else if (len > 7 || len < 1) {
 589		return -EINVAL;
 590	}
 591	d = &dma->out[dma->out_cnt++];
 592	memset(d, 0, sizeof(*d));
 593
 594	d->ctrl.short_descr = 1;
 595	d->ctrl.short_len = len;
 596	d->ctrl.eop = eop;
 597	memcpy(d->shrt.data, dst, len);
 598	return 0;
 599}
 600
 601static int artpec6_crypto_dma_map_page(struct artpec6_crypto_req_common *common,
 602				      struct page *page, size_t offset,
 603				      size_t size,
 604				      enum dma_data_direction dir,
 605				      dma_addr_t *dma_addr_out)
 606{
 607	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 608	struct device *dev = artpec6_crypto_dev;
 609	struct artpec6_crypto_dma_map *map;
 610	dma_addr_t dma_addr;
 611
 612	*dma_addr_out = 0;
 613
 614	if (dma->map_count >= ARRAY_SIZE(dma->maps))
 615		return -ENOMEM;
 616
 617	dma_addr = dma_map_page(dev, page, offset, size, dir);
 618	if (dma_mapping_error(dev, dma_addr))
 619		return -ENOMEM;
 620
 621	map = &dma->maps[dma->map_count++];
 622	map->size = size;
 623	map->dma_addr = dma_addr;
 624	map->dir = dir;
 625
 626	*dma_addr_out = dma_addr;
 627
 628	return 0;
 629}
 630
 631static int
 632artpec6_crypto_dma_map_single(struct artpec6_crypto_req_common *common,
 633			      void *ptr, size_t size,
 634			      enum dma_data_direction dir,
 635			      dma_addr_t *dma_addr_out)
 636{
 637	struct page *page = virt_to_page(ptr);
 638	size_t offset = (uintptr_t)ptr & ~PAGE_MASK;
 639
 640	return artpec6_crypto_dma_map_page(common, page, offset, size, dir,
 641					  dma_addr_out);
 642}
 643
 644static int
 645artpec6_crypto_dma_map_descs(struct artpec6_crypto_req_common *common)
 646{
 647	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 648	int ret;
 649
 650	ret = artpec6_crypto_dma_map_single(common, dma->in,
 651				sizeof(dma->in[0]) * dma->in_cnt,
 652				DMA_TO_DEVICE, &dma->in_dma_addr);
 653	if (ret)
 654		return ret;
 655
 656	ret = artpec6_crypto_dma_map_single(common, dma->out,
 657				sizeof(dma->out[0]) * dma->out_cnt,
 658				DMA_TO_DEVICE, &dma->out_dma_addr);
 659	if (ret)
 660		return ret;
 661
 662	/* We only read one stat descriptor */
 663	dma->stat[dma->in_cnt - 1] = 0;
 664
 665	/*
 666	 * DMA_BIDIRECTIONAL since we need our zeroing of the stat descriptor
 667	 * to be written.
 668	 */
 669	return artpec6_crypto_dma_map_single(common,
 670				dma->stat,
 671				sizeof(dma->stat[0]) * dma->in_cnt,
 672				DMA_BIDIRECTIONAL,
 673				&dma->stat_dma_addr);
 674}
 675
 676static void
 677artpec6_crypto_dma_unmap_all(struct artpec6_crypto_req_common *common)
 678{
 679	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 680	struct device *dev = artpec6_crypto_dev;
 681	int i;
 682
 683	for (i = 0; i < dma->map_count; i++) {
 684		struct artpec6_crypto_dma_map *map = &dma->maps[i];
 685
 686		dma_unmap_page(dev, map->dma_addr, map->size, map->dir);
 687	}
 688
 689	dma->map_count = 0;
 690}
 691
 692/** artpec6_crypto_setup_out_descr - Setup an out descriptor
 693 *
 694 * @dst: The virtual address of the data
 695 * @len: The length of the data
 696 * @eop: True if this is the last buffer in the packet
 697 * @use_short: If this is true and the data length is 7 bytes or less then
 698 *	a short descriptor will be used
 699 *
 700 * @return 0 on success
 701 *	Any errors from artpec6_crypto_setup_out_descr_short() or
 702 *	setup_out_descr_phys()
 703 */
 704static int
 705artpec6_crypto_setup_out_descr(struct artpec6_crypto_req_common *common,
 706			       void *dst, unsigned int len, bool eop,
 707			       bool use_short)
 708{
 709	if (use_short && len < 7) {
 710		return artpec6_crypto_setup_out_descr_short(common, dst, len,
 711							    eop);
 712	} else {
 713		int ret;
 714		dma_addr_t dma_addr;
 715
 716		ret = artpec6_crypto_dma_map_single(common, dst, len,
 717						   DMA_TO_DEVICE,
 718						   &dma_addr);
 719		if (ret)
 720			return ret;
 721
 722		return artpec6_crypto_setup_out_descr_phys(common, dma_addr,
 723							   len, eop);
 724	}
 725}
 726
 727/** artpec6_crypto_setup_in_descr_phys - Setup an in channel with a
 728 *                                       physical address
 729 *
 730 * @addr: The physical address of the data buffer
 731 * @len:  The length of the data buffer
 732 * @intr: True if an interrupt should be fired after HW processing of this
 733 *	  descriptor
 734 *
 735 */
 736static int
 737artpec6_crypto_setup_in_descr_phys(struct artpec6_crypto_req_common *common,
 738			       dma_addr_t addr, unsigned int len, bool intr)
 739{
 740	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 741	struct pdma_descr *d;
 742
 743	if (dma->in_cnt >= PDMA_DESCR_COUNT ||
 744	    fault_inject_dma_descr()) {
 745		pr_err("No free IN DMA descriptors available!\n");
 746		return -ENOSPC;
 747	}
 748	d = &dma->in[dma->in_cnt++];
 749	memset(d, 0, sizeof(*d));
 750
 751	d->ctrl.intr = intr;
 752	d->data.len = len;
 753	d->data.buf = addr;
 754	return 0;
 755}
 756
 757/** artpec6_crypto_setup_in_descr - Setup an in channel descriptor
 758 *
 759 * @buffer: The virtual address to of the data buffer
 760 * @len:    The length of the data buffer
 761 * @last:   If this is the last data buffer in the request (i.e. an interrupt
 762 *	    is needed
 763 *
 764 * Short descriptors are not used for the in channel
 765 */
 766static int
 767artpec6_crypto_setup_in_descr(struct artpec6_crypto_req_common *common,
 768			  void *buffer, unsigned int len, bool last)
 769{
 770	dma_addr_t dma_addr;
 771	int ret;
 772
 773	ret = artpec6_crypto_dma_map_single(common, buffer, len,
 774					   DMA_FROM_DEVICE, &dma_addr);
 775	if (ret)
 776		return ret;
 777
 778	return artpec6_crypto_setup_in_descr_phys(common, dma_addr, len, last);
 779}
 780
 781static struct artpec6_crypto_bounce_buffer *
 782artpec6_crypto_alloc_bounce(gfp_t flags)
 783{
 784	void *base;
 785	size_t alloc_size = sizeof(struct artpec6_crypto_bounce_buffer) +
 786			    2 * ARTPEC_CACHE_LINE_MAX;
 787	struct artpec6_crypto_bounce_buffer *bbuf = kzalloc(alloc_size, flags);
 788
 789	if (!bbuf)
 790		return NULL;
 791
 792	base = bbuf + 1;
 793	bbuf->buf = PTR_ALIGN(base, ARTPEC_CACHE_LINE_MAX);
 794	return bbuf;
 795}
 796
 797static int setup_bounce_buffer_in(struct artpec6_crypto_req_common *common,
 798				  struct artpec6_crypto_walk *walk, size_t size)
 799{
 800	struct artpec6_crypto_bounce_buffer *bbuf;
 801	int ret;
 802
 803	bbuf = artpec6_crypto_alloc_bounce(common->gfp_flags);
 804	if (!bbuf)
 805		return -ENOMEM;
 806
 807	bbuf->length = size;
 808	bbuf->sg = walk->sg;
 809	bbuf->offset = walk->offset;
 810
 811	ret =  artpec6_crypto_setup_in_descr(common, bbuf->buf, size, false);
 812	if (ret) {
 813		kfree(bbuf);
 814		return ret;
 815	}
 816
 817	pr_debug("BOUNCE %zu offset %zu\n", size, walk->offset);
 818	list_add_tail(&bbuf->list, &common->dma->bounce_buffers);
 819	return 0;
 820}
 821
 822static int
 823artpec6_crypto_setup_sg_descrs_in(struct artpec6_crypto_req_common *common,
 824				  struct artpec6_crypto_walk *walk,
 825				  size_t count)
 826{
 827	size_t chunk;
 828	int ret;
 829	dma_addr_t addr;
 830
 831	while (walk->sg && count) {
 832		chunk = min(count, artpec6_crypto_walk_chunklen(walk));
 833		addr = artpec6_crypto_walk_chunk_phys(walk);
 834
 835		/* When destination buffers are not aligned to the cache line
 836		 * size we need bounce buffers. The DMA-API requires that the
 837		 * entire line is owned by the DMA buffer and this holds also
 838		 * for the case when coherent DMA is used.
 839		 */
 840		if (!IS_ALIGNED(addr, ARTPEC_CACHE_LINE_MAX)) {
 841			chunk = min_t(dma_addr_t, chunk,
 842				      ALIGN(addr, ARTPEC_CACHE_LINE_MAX) -
 843				      addr);
 844
 845			pr_debug("CHUNK-b %pad:%zu\n", &addr, chunk);
 846			ret = setup_bounce_buffer_in(common, walk, chunk);
 847		} else if (chunk < ARTPEC_CACHE_LINE_MAX) {
 848			pr_debug("CHUNK-b %pad:%zu\n", &addr, chunk);
 849			ret = setup_bounce_buffer_in(common, walk, chunk);
 850		} else {
 851			dma_addr_t dma_addr;
 852
 853			chunk = chunk & ~(ARTPEC_CACHE_LINE_MAX-1);
 854
 855			pr_debug("CHUNK %pad:%zu\n", &addr, chunk);
 856
 857			ret = artpec6_crypto_dma_map_page(common,
 858							 sg_page(walk->sg),
 859							 walk->sg->offset +
 860							 walk->offset,
 861							 chunk,
 862							 DMA_FROM_DEVICE,
 863							 &dma_addr);
 864			if (ret)
 865				return ret;
 866
 867			ret = artpec6_crypto_setup_in_descr_phys(common,
 868								 dma_addr,
 869								 chunk, false);
 870		}
 871
 872		if (ret)
 873			return ret;
 874
 875		count = count - chunk;
 876		artpec6_crypto_walk_advance(walk, chunk);
 877	}
 878
 879	if (count)
 880		pr_err("EOL unexpected %zu bytes left\n", count);
 881
 882	return count ? -EINVAL : 0;
 883}
 884
 885static int
 886artpec6_crypto_setup_sg_descrs_out(struct artpec6_crypto_req_common *common,
 887				   struct artpec6_crypto_walk *walk,
 888				   size_t count)
 889{
 890	size_t chunk;
 891	int ret;
 892	dma_addr_t addr;
 893
 894	while (walk->sg && count) {
 895		chunk = min(count, artpec6_crypto_walk_chunklen(walk));
 896		addr = artpec6_crypto_walk_chunk_phys(walk);
 897
 898		pr_debug("OUT-CHUNK %pad:%zu\n", &addr, chunk);
 899
 900		if (addr & 3) {
 901			char buf[3];
 902
 903			chunk = min_t(size_t, chunk, (4-(addr&3)));
 904
 905			sg_pcopy_to_buffer(walk->sg, 1, buf, chunk,
 906					   walk->offset);
 907
 908			ret = artpec6_crypto_setup_out_descr_short(common, buf,
 909								   chunk,
 910								   false);
 911		} else {
 912			dma_addr_t dma_addr;
 913
 914			ret = artpec6_crypto_dma_map_page(common,
 915							 sg_page(walk->sg),
 916							 walk->sg->offset +
 917							 walk->offset,
 918							 chunk,
 919							 DMA_TO_DEVICE,
 920							 &dma_addr);
 921			if (ret)
 922				return ret;
 923
 924			ret = artpec6_crypto_setup_out_descr_phys(common,
 925								 dma_addr,
 926								 chunk, false);
 927		}
 928
 929		if (ret)
 930			return ret;
 931
 932		count = count - chunk;
 933		artpec6_crypto_walk_advance(walk, chunk);
 934	}
 935
 936	if (count)
 937		pr_err("EOL unexpected %zu bytes left\n", count);
 938
 939	return count ? -EINVAL : 0;
 940}
 941
 942
 943/** artpec6_crypto_terminate_out_descrs - Set the EOP on the last out descriptor
 944 *
 945 * If the out descriptor list is non-empty, then the eop flag on the
 946 * last used out descriptor will be set.
 947 *
 948 * @return  0 on success
 949 *	-EINVAL if the out descriptor is empty or has overflown
 950 */
 951static int
 952artpec6_crypto_terminate_out_descrs(struct artpec6_crypto_req_common *common)
 953{
 954	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 955	struct pdma_descr *d;
 956
 957	if (!dma->out_cnt || dma->out_cnt > PDMA_DESCR_COUNT) {
 958		pr_err("%s: OUT descriptor list is %s\n",
 959			MODULE_NAME, dma->out_cnt ? "empty" : "full");
 960		return -EINVAL;
 961
 962	}
 963
 964	d = &dma->out[dma->out_cnt-1];
 965	d->ctrl.eop = 1;
 966
 967	return 0;
 968}
 969
 970/** artpec6_crypto_terminate_in_descrs - Set the interrupt flag on the last
 971 *                                       in descriptor
 972 *
 973 * See artpec6_crypto_terminate_out_descrs() for return values
 974 */
 975static int
 976artpec6_crypto_terminate_in_descrs(struct artpec6_crypto_req_common *common)
 977{
 978	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 979	struct pdma_descr *d;
 980
 981	if (!dma->in_cnt || dma->in_cnt > PDMA_DESCR_COUNT) {
 982		pr_err("%s: IN descriptor list is %s\n",
 983			MODULE_NAME, dma->in_cnt ? "empty" : "full");
 984		return -EINVAL;
 985	}
 986
 987	d = &dma->in[dma->in_cnt-1];
 988	d->ctrl.intr = 1;
 989	return 0;
 990}
 991
 992/** create_hash_pad - Create a Secure Hash conformant pad
 993 *
 994 * @dst:      The destination buffer to write the pad. Must be at least 64 bytes
 995 * @dgstlen:  The total length of the hash digest in bytes
 996 * @bitcount: The total length of the digest in bits
 997 *
 998 * @return The total number of padding bytes written to @dst
 999 */
1000static size_t
1001create_hash_pad(int oper, unsigned char *dst, u64 dgstlen, u64 bitcount)
1002{
1003	unsigned int mod, target, diff, pad_bytes, size_bytes;
1004	__be64 bits = __cpu_to_be64(bitcount);
1005
1006	switch (oper) {
1007	case regk_crypto_sha1:
1008	case regk_crypto_sha256:
1009	case regk_crypto_hmac_sha1:
1010	case regk_crypto_hmac_sha256:
1011		target = 448 / 8;
1012		mod = 512 / 8;
1013		size_bytes = 8;
1014		break;
1015	default:
1016		target = 896 / 8;
1017		mod = 1024 / 8;
1018		size_bytes = 16;
1019		break;
1020	}
1021
1022	target -= 1;
1023	diff = dgstlen & (mod - 1);
1024	pad_bytes = diff > target ? target + mod - diff : target - diff;
1025
1026	memset(dst + 1, 0, pad_bytes);
1027	dst[0] = 0x80;
1028
1029	if (size_bytes == 16) {
1030		memset(dst + 1 + pad_bytes, 0, 8);
1031		memcpy(dst + 1 + pad_bytes + 8, &bits, 8);
1032	} else {
1033		memcpy(dst + 1 + pad_bytes, &bits, 8);
1034	}
1035
1036	return pad_bytes + size_bytes + 1;
1037}
1038
1039static int artpec6_crypto_common_init(struct artpec6_crypto_req_common *common,
1040		struct crypto_async_request *parent,
1041		void (*complete)(struct crypto_async_request *req),
1042		struct scatterlist *dstsg, unsigned int nbytes)
1043{
1044	gfp_t flags;
1045	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1046
1047	flags = (parent->flags & CRYPTO_TFM_REQ_MAY_SLEEP) ?
1048		 GFP_KERNEL : GFP_ATOMIC;
1049
1050	common->gfp_flags = flags;
1051	common->dma = kmem_cache_alloc(ac->dma_cache, flags);
1052	if (!common->dma)
1053		return -ENOMEM;
1054
1055	common->req = parent;
1056	common->complete = complete;
1057	return 0;
1058}
1059
1060static void
1061artpec6_crypto_bounce_destroy(struct artpec6_crypto_dma_descriptors *dma)
1062{
1063	struct artpec6_crypto_bounce_buffer *b;
1064	struct artpec6_crypto_bounce_buffer *next;
1065
1066	list_for_each_entry_safe(b, next, &dma->bounce_buffers, list) {
1067		kfree(b);
1068	}
1069}
1070
1071static int
1072artpec6_crypto_common_destroy(struct artpec6_crypto_req_common *common)
1073{
1074	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1075
1076	artpec6_crypto_dma_unmap_all(common);
1077	artpec6_crypto_bounce_destroy(common->dma);
1078	kmem_cache_free(ac->dma_cache, common->dma);
1079	common->dma = NULL;
1080	return 0;
1081}
1082
1083/*
1084 * Ciphering functions.
1085 */
1086static int artpec6_crypto_encrypt(struct skcipher_request *req)
1087{
1088	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(req);
1089	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1090	struct artpec6_crypto_request_context *req_ctx = NULL;
1091	void (*complete)(struct crypto_async_request *req);
1092	int ret;
1093
1094	req_ctx = skcipher_request_ctx(req);
1095
1096	switch (ctx->crypto_type) {
1097	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1098	case ARTPEC6_CRYPTO_CIPHER_AES_ECB:
1099	case ARTPEC6_CRYPTO_CIPHER_AES_XTS:
1100		req_ctx->decrypt = 0;
1101		break;
1102	default:
1103		break;
1104	}
1105
1106	switch (ctx->crypto_type) {
1107	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1108		complete = artpec6_crypto_complete_cbc_encrypt;
1109		break;
1110	default:
1111		complete = artpec6_crypto_complete_crypto;
1112		break;
1113	}
1114
1115	ret = artpec6_crypto_common_init(&req_ctx->common,
1116				  &req->base,
1117				  complete,
1118				  req->dst, req->cryptlen);
1119	if (ret)
1120		return ret;
1121
1122	ret = artpec6_crypto_prepare_crypto(req);
1123	if (ret) {
1124		artpec6_crypto_common_destroy(&req_ctx->common);
1125		return ret;
1126	}
1127
1128	return artpec6_crypto_submit(&req_ctx->common);
1129}
1130
1131static int artpec6_crypto_decrypt(struct skcipher_request *req)
1132{
1133	int ret;
1134	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(req);
1135	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1136	struct artpec6_crypto_request_context *req_ctx = NULL;
1137	void (*complete)(struct crypto_async_request *req);
1138
1139	req_ctx = skcipher_request_ctx(req);
1140
1141	switch (ctx->crypto_type) {
1142	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1143	case ARTPEC6_CRYPTO_CIPHER_AES_ECB:
1144	case ARTPEC6_CRYPTO_CIPHER_AES_XTS:
1145		req_ctx->decrypt = 1;
1146		break;
1147	default:
1148		break;
1149	}
1150
1151
1152	switch (ctx->crypto_type) {
1153	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1154		complete = artpec6_crypto_complete_cbc_decrypt;
1155		break;
1156	default:
1157		complete = artpec6_crypto_complete_crypto;
1158		break;
1159	}
1160
1161	ret = artpec6_crypto_common_init(&req_ctx->common, &req->base,
1162				  complete,
1163				  req->dst, req->cryptlen);
1164	if (ret)
1165		return ret;
1166
1167	ret = artpec6_crypto_prepare_crypto(req);
1168	if (ret) {
1169		artpec6_crypto_common_destroy(&req_ctx->common);
1170		return ret;
1171	}
1172
1173	return artpec6_crypto_submit(&req_ctx->common);
1174}
1175
1176static int
1177artpec6_crypto_ctr_crypt(struct skcipher_request *req, bool encrypt)
1178{
1179	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(req);
1180	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1181	size_t iv_len = crypto_skcipher_ivsize(cipher);
1182	unsigned int counter = be32_to_cpup((__be32 *)
1183					    (req->iv + iv_len - 4));
1184	unsigned int nblks = ALIGN(req->cryptlen, AES_BLOCK_SIZE) /
1185			     AES_BLOCK_SIZE;
1186
1187	/*
1188	 * The hardware uses only the last 32-bits as the counter while the
1189	 * kernel tests (aes_ctr_enc_tv_template[4] for example) expect that
1190	 * the whole IV is a counter.  So fallback if the counter is going to
1191	 * overlow.
1192	 */
1193	if (counter + nblks < counter) {
1194		int ret;
1195
1196		pr_debug("counter %x will overflow (nblks %u), falling back\n",
1197			 counter, counter + nblks);
1198
1199		ret = crypto_sync_skcipher_setkey(ctx->fallback, ctx->aes_key,
1200						  ctx->key_length);
1201		if (ret)
1202			return ret;
1203
1204		{
1205			SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, ctx->fallback);
1206
1207			skcipher_request_set_sync_tfm(subreq, ctx->fallback);
1208			skcipher_request_set_callback(subreq, req->base.flags,
1209						      NULL, NULL);
1210			skcipher_request_set_crypt(subreq, req->src, req->dst,
1211						   req->cryptlen, req->iv);
1212			ret = encrypt ? crypto_skcipher_encrypt(subreq)
1213				      : crypto_skcipher_decrypt(subreq);
1214			skcipher_request_zero(subreq);
1215		}
1216		return ret;
1217	}
1218
1219	return encrypt ? artpec6_crypto_encrypt(req)
1220		       : artpec6_crypto_decrypt(req);
1221}
1222
1223static int artpec6_crypto_ctr_encrypt(struct skcipher_request *req)
1224{
1225	return artpec6_crypto_ctr_crypt(req, true);
1226}
1227
1228static int artpec6_crypto_ctr_decrypt(struct skcipher_request *req)
1229{
1230	return artpec6_crypto_ctr_crypt(req, false);
1231}
1232
1233/*
1234 * AEAD functions
1235 */
1236static int artpec6_crypto_aead_init(struct crypto_aead *tfm)
1237{
1238	struct artpec6_cryptotfm_context *tfm_ctx = crypto_aead_ctx(tfm);
1239
1240	memset(tfm_ctx, 0, sizeof(*tfm_ctx));
1241
1242	crypto_aead_set_reqsize(tfm,
1243				sizeof(struct artpec6_crypto_aead_req_ctx));
1244
1245	return 0;
1246}
1247
1248static int artpec6_crypto_aead_set_key(struct crypto_aead *tfm, const u8 *key,
1249			       unsigned int len)
1250{
1251	struct artpec6_cryptotfm_context *ctx = crypto_tfm_ctx(&tfm->base);
1252
1253	if (len != 16 && len != 24 && len != 32)
1254		return -EINVAL;
1255
1256	ctx->key_length = len;
1257
1258	memcpy(ctx->aes_key, key, len);
1259	return 0;
1260}
1261
1262static int artpec6_crypto_aead_encrypt(struct aead_request *req)
1263{
1264	int ret;
1265	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(req);
1266
1267	req_ctx->decrypt = false;
1268	ret = artpec6_crypto_common_init(&req_ctx->common, &req->base,
1269				  artpec6_crypto_complete_aead,
1270				  NULL, 0);
1271	if (ret)
1272		return ret;
1273
1274	ret = artpec6_crypto_prepare_aead(req);
1275	if (ret) {
1276		artpec6_crypto_common_destroy(&req_ctx->common);
1277		return ret;
1278	}
1279
1280	return artpec6_crypto_submit(&req_ctx->common);
1281}
1282
1283static int artpec6_crypto_aead_decrypt(struct aead_request *req)
1284{
1285	int ret;
1286	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(req);
1287
1288	req_ctx->decrypt = true;
1289	if (req->cryptlen < AES_BLOCK_SIZE)
1290		return -EINVAL;
1291
1292	ret = artpec6_crypto_common_init(&req_ctx->common,
1293				  &req->base,
1294				  artpec6_crypto_complete_aead,
1295				  NULL, 0);
1296	if (ret)
1297		return ret;
1298
1299	ret = artpec6_crypto_prepare_aead(req);
1300	if (ret) {
1301		artpec6_crypto_common_destroy(&req_ctx->common);
1302		return ret;
1303	}
1304
1305	return artpec6_crypto_submit(&req_ctx->common);
1306}
1307
1308static int artpec6_crypto_prepare_hash(struct ahash_request *areq)
1309{
1310	struct artpec6_hashalg_context *ctx = crypto_tfm_ctx(areq->base.tfm);
1311	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(areq);
1312	size_t digestsize = crypto_ahash_digestsize(crypto_ahash_reqtfm(areq));
1313	size_t contextsize = digestsize;
1314	size_t blocksize = crypto_tfm_alg_blocksize(
1315		crypto_ahash_tfm(crypto_ahash_reqtfm(areq)));
1316	struct artpec6_crypto_req_common *common = &req_ctx->common;
1317	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1318	enum artpec6_crypto_variant variant = ac->variant;
1319	u32 sel_ctx;
1320	bool ext_ctx = false;
1321	bool run_hw = false;
1322	int error = 0;
1323
1324	artpec6_crypto_init_dma_operation(common);
1325
1326	/* Upload HMAC key, must be first the first packet */
1327	if (req_ctx->hash_flags & HASH_FLAG_HMAC) {
1328		if (variant == ARTPEC6_CRYPTO) {
1329			req_ctx->key_md = FIELD_PREP(A6_CRY_MD_OPER,
1330						     a6_regk_crypto_dlkey);
1331		} else {
1332			req_ctx->key_md = FIELD_PREP(A7_CRY_MD_OPER,
1333						     a7_regk_crypto_dlkey);
1334		}
1335
1336		/* Copy and pad up the key */
1337		memcpy(req_ctx->key_buffer, ctx->hmac_key,
1338		       ctx->hmac_key_length);
1339		memset(req_ctx->key_buffer + ctx->hmac_key_length, 0,
1340		       blocksize - ctx->hmac_key_length);
1341
1342		error = artpec6_crypto_setup_out_descr(common,
1343					(void *)&req_ctx->key_md,
1344					sizeof(req_ctx->key_md), false, false);
1345		if (error)
1346			return error;
1347
1348		error = artpec6_crypto_setup_out_descr(common,
1349					req_ctx->key_buffer, blocksize,
1350					true, false);
1351		if (error)
1352			return error;
1353	}
1354
1355	if (!(req_ctx->hash_flags & HASH_FLAG_INIT_CTX)) {
1356		/* Restore context */
1357		sel_ctx = regk_crypto_ext;
1358		ext_ctx = true;
1359	} else {
1360		sel_ctx = regk_crypto_init;
1361	}
1362
1363	if (variant == ARTPEC6_CRYPTO) {
1364		req_ctx->hash_md &= ~A6_CRY_MD_HASH_SEL_CTX;
1365		req_ctx->hash_md |= FIELD_PREP(A6_CRY_MD_HASH_SEL_CTX, sel_ctx);
1366
1367		/* If this is the final round, set the final flag */
1368		if (req_ctx->hash_flags & HASH_FLAG_FINALIZE)
1369			req_ctx->hash_md |= A6_CRY_MD_HASH_HMAC_FIN;
1370	} else {
1371		req_ctx->hash_md &= ~A7_CRY_MD_HASH_SEL_CTX;
1372		req_ctx->hash_md |= FIELD_PREP(A7_CRY_MD_HASH_SEL_CTX, sel_ctx);
1373
1374		/* If this is the final round, set the final flag */
1375		if (req_ctx->hash_flags & HASH_FLAG_FINALIZE)
1376			req_ctx->hash_md |= A7_CRY_MD_HASH_HMAC_FIN;
1377	}
1378
1379	/* Setup up metadata descriptors */
1380	error = artpec6_crypto_setup_out_descr(common,
1381				(void *)&req_ctx->hash_md,
1382				sizeof(req_ctx->hash_md), false, false);
1383	if (error)
1384		return error;
1385
1386	error = artpec6_crypto_setup_in_descr(common, ac->pad_buffer, 4, false);
1387	if (error)
1388		return error;
1389
1390	if (ext_ctx) {
1391		error = artpec6_crypto_setup_out_descr(common,
1392					req_ctx->digeststate,
1393					contextsize, false, false);
1394
1395		if (error)
1396			return error;
1397	}
1398
1399	if (req_ctx->hash_flags & HASH_FLAG_UPDATE) {
1400		size_t done_bytes = 0;
1401		size_t total_bytes = areq->nbytes + req_ctx->partial_bytes;
1402		size_t ready_bytes = round_down(total_bytes, blocksize);
1403		struct artpec6_crypto_walk walk;
1404
1405		run_hw = ready_bytes > 0;
1406		if (req_ctx->partial_bytes && ready_bytes) {
1407			/* We have a partial buffer and will at least some bytes
1408			 * to the HW. Empty this partial buffer before tackling
1409			 * the SG lists
1410			 */
1411			memcpy(req_ctx->partial_buffer_out,
1412				req_ctx->partial_buffer,
1413				req_ctx->partial_bytes);
1414
1415			error = artpec6_crypto_setup_out_descr(common,
1416						req_ctx->partial_buffer_out,
1417						req_ctx->partial_bytes,
1418						false, true);
1419			if (error)
1420				return error;
1421
1422			/* Reset partial buffer */
1423			done_bytes += req_ctx->partial_bytes;
1424			req_ctx->partial_bytes = 0;
1425		}
1426
1427		artpec6_crypto_walk_init(&walk, areq->src);
1428
1429		error = artpec6_crypto_setup_sg_descrs_out(common, &walk,
1430							   ready_bytes -
1431							   done_bytes);
1432		if (error)
1433			return error;
1434
1435		if (walk.sg) {
1436			size_t sg_skip = ready_bytes - done_bytes;
1437			size_t sg_rem = areq->nbytes - sg_skip;
1438
1439			sg_pcopy_to_buffer(areq->src, sg_nents(areq->src),
1440					   req_ctx->partial_buffer +
1441					   req_ctx->partial_bytes,
1442					   sg_rem, sg_skip);
1443
1444			req_ctx->partial_bytes += sg_rem;
1445		}
1446
1447		req_ctx->digcnt += ready_bytes;
1448		req_ctx->hash_flags &= ~(HASH_FLAG_UPDATE);
1449	}
1450
1451	/* Finalize */
1452	if (req_ctx->hash_flags & HASH_FLAG_FINALIZE) {
1453		size_t hash_pad_len;
1454		u64 digest_bits;
1455		u32 oper;
1456
1457		if (variant == ARTPEC6_CRYPTO)
1458			oper = FIELD_GET(A6_CRY_MD_OPER, req_ctx->hash_md);
1459		else
1460			oper = FIELD_GET(A7_CRY_MD_OPER, req_ctx->hash_md);
1461
1462		/* Write out the partial buffer if present */
1463		if (req_ctx->partial_bytes) {
1464			memcpy(req_ctx->partial_buffer_out,
1465			       req_ctx->partial_buffer,
1466			       req_ctx->partial_bytes);
1467			error = artpec6_crypto_setup_out_descr(common,
1468						req_ctx->partial_buffer_out,
1469						req_ctx->partial_bytes,
1470						false, true);
1471			if (error)
1472				return error;
1473
1474			req_ctx->digcnt += req_ctx->partial_bytes;
1475			req_ctx->partial_bytes = 0;
1476		}
1477
1478		if (req_ctx->hash_flags & HASH_FLAG_HMAC)
1479			digest_bits = 8 * (req_ctx->digcnt + blocksize);
1480		else
1481			digest_bits = 8 * req_ctx->digcnt;
1482
1483		/* Add the hash pad */
1484		hash_pad_len = create_hash_pad(oper, req_ctx->pad_buffer,
1485					       req_ctx->digcnt, digest_bits);
1486		error = artpec6_crypto_setup_out_descr(common,
1487						      req_ctx->pad_buffer,
1488						      hash_pad_len, false,
1489						      true);
1490		req_ctx->digcnt = 0;
1491
1492		if (error)
1493			return error;
1494
1495		/* Descriptor for the final result */
1496		error = artpec6_crypto_setup_in_descr(common, areq->result,
1497						      digestsize,
1498						      true);
1499		if (error)
1500			return error;
1501
1502	} else { /* This is not the final operation for this request */
1503		if (!run_hw)
1504			return ARTPEC6_CRYPTO_PREPARE_HASH_NO_START;
1505
1506		/* Save the result to the context */
1507		error = artpec6_crypto_setup_in_descr(common,
1508						      req_ctx->digeststate,
1509						      contextsize, false);
1510		if (error)
1511			return error;
1512		/* fall through */
1513	}
1514
1515	req_ctx->hash_flags &= ~(HASH_FLAG_INIT_CTX | HASH_FLAG_UPDATE |
1516				 HASH_FLAG_FINALIZE);
1517
1518	error = artpec6_crypto_terminate_in_descrs(common);
1519	if (error)
1520		return error;
1521
1522	error = artpec6_crypto_terminate_out_descrs(common);
1523	if (error)
1524		return error;
1525
1526	error = artpec6_crypto_dma_map_descs(common);
1527	if (error)
1528		return error;
1529
1530	return ARTPEC6_CRYPTO_PREPARE_HASH_START;
1531}
1532
1533
1534static int artpec6_crypto_aes_ecb_init(struct crypto_skcipher *tfm)
1535{
1536	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1537
1538	crypto_skcipher_set_reqsize(tfm,
1539				    sizeof(struct artpec6_crypto_request_context));
1540	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_ECB;
1541
1542	return 0;
1543}
1544
1545static int artpec6_crypto_aes_ctr_init(struct crypto_skcipher *tfm)
1546{
1547	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1548
1549	ctx->fallback =
1550		crypto_alloc_sync_skcipher(crypto_tfm_alg_name(&tfm->base),
1551					   0, CRYPTO_ALG_NEED_FALLBACK);
1552	if (IS_ERR(ctx->fallback))
1553		return PTR_ERR(ctx->fallback);
1554
1555	crypto_skcipher_set_reqsize(tfm,
1556				    sizeof(struct artpec6_crypto_request_context));
1557	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_CTR;
1558
1559	return 0;
1560}
1561
1562static int artpec6_crypto_aes_cbc_init(struct crypto_skcipher *tfm)
1563{
1564	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1565
1566	crypto_skcipher_set_reqsize(tfm,
1567				    sizeof(struct artpec6_crypto_request_context));
1568	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_CBC;
1569
1570	return 0;
1571}
1572
1573static int artpec6_crypto_aes_xts_init(struct crypto_skcipher *tfm)
1574{
1575	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1576
1577	crypto_skcipher_set_reqsize(tfm,
1578				    sizeof(struct artpec6_crypto_request_context));
1579	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_XTS;
1580
1581	return 0;
1582}
1583
1584static void artpec6_crypto_aes_exit(struct crypto_skcipher *tfm)
1585{
1586	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1587
1588	memset(ctx, 0, sizeof(*ctx));
1589}
1590
1591static void artpec6_crypto_aes_ctr_exit(struct crypto_skcipher *tfm)
1592{
1593	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1594
1595	crypto_free_sync_skcipher(ctx->fallback);
1596	artpec6_crypto_aes_exit(tfm);
1597}
1598
1599static int
1600artpec6_crypto_cipher_set_key(struct crypto_skcipher *cipher, const u8 *key,
1601			      unsigned int keylen)
1602{
1603	struct artpec6_cryptotfm_context *ctx =
1604		crypto_skcipher_ctx(cipher);
1605
1606	switch (keylen) {
1607	case 16:
1608	case 24:
1609	case 32:
1610		break;
1611	default:
1612		return -EINVAL;
1613	}
1614
1615	memcpy(ctx->aes_key, key, keylen);
1616	ctx->key_length = keylen;
1617	return 0;
1618}
1619
1620static int
1621artpec6_crypto_xts_set_key(struct crypto_skcipher *cipher, const u8 *key,
1622			      unsigned int keylen)
1623{
1624	struct artpec6_cryptotfm_context *ctx =
1625		crypto_skcipher_ctx(cipher);
1626	int ret;
1627
1628	ret = xts_verify_key(cipher, key, keylen);
1629	if (ret)
1630		return ret;
1631
1632	switch (keylen) {
1633	case 32:
1634	case 48:
1635	case 64:
1636		break;
1637	default:
1638		return -EINVAL;
1639	}
1640
1641	memcpy(ctx->aes_key, key, keylen);
1642	ctx->key_length = keylen;
1643	return 0;
1644}
1645
1646/** artpec6_crypto_process_crypto - Prepare an async block cipher crypto request
1647 *
1648 * @req: The asynch request to process
1649 *
1650 * @return 0 if the dma job was successfully prepared
1651 *	  <0 on error
1652 *
1653 * This function sets up the PDMA descriptors for a block cipher request.
1654 *
1655 * The required padding is added for AES-CTR using a statically defined
1656 * buffer.
1657 *
1658 * The PDMA descriptor list will be as follows:
1659 *
1660 * OUT: [KEY_MD][KEY][EOP]<CIPHER_MD>[IV]<data_0>...[data_n][AES-CTR_pad]<eop>
1661 * IN:  <CIPHER_MD><data_0>...[data_n]<intr>
1662 *
1663 */
1664static int artpec6_crypto_prepare_crypto(struct skcipher_request *areq)
1665{
1666	int ret;
1667	struct artpec6_crypto_walk walk;
1668	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(areq);
1669	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1670	struct artpec6_crypto_request_context *req_ctx = NULL;
1671	size_t iv_len = crypto_skcipher_ivsize(cipher);
1672	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1673	enum artpec6_crypto_variant variant = ac->variant;
1674	struct artpec6_crypto_req_common *common;
1675	bool cipher_decr = false;
1676	size_t cipher_klen;
1677	u32 cipher_len = 0; /* Same as regk_crypto_key_128 for NULL crypto */
1678	u32 oper;
1679
1680	req_ctx = skcipher_request_ctx(areq);
1681	common = &req_ctx->common;
1682
1683	artpec6_crypto_init_dma_operation(common);
1684
1685	if (variant == ARTPEC6_CRYPTO)
1686		ctx->key_md = FIELD_PREP(A6_CRY_MD_OPER, a6_regk_crypto_dlkey);
1687	else
1688		ctx->key_md = FIELD_PREP(A7_CRY_MD_OPER, a7_regk_crypto_dlkey);
1689
1690	ret = artpec6_crypto_setup_out_descr(common, (void *)&ctx->key_md,
1691					     sizeof(ctx->key_md), false, false);
1692	if (ret)
1693		return ret;
1694
1695	ret = artpec6_crypto_setup_out_descr(common, ctx->aes_key,
1696					      ctx->key_length, true, false);
1697	if (ret)
1698		return ret;
1699
1700	req_ctx->cipher_md = 0;
1701
1702	if (ctx->crypto_type == ARTPEC6_CRYPTO_CIPHER_AES_XTS)
1703		cipher_klen = ctx->key_length/2;
1704	else
1705		cipher_klen =  ctx->key_length;
1706
1707	/* Metadata */
1708	switch (cipher_klen) {
1709	case 16:
1710		cipher_len = regk_crypto_key_128;
1711		break;
1712	case 24:
1713		cipher_len = regk_crypto_key_192;
1714		break;
1715	case 32:
1716		cipher_len = regk_crypto_key_256;
1717		break;
1718	default:
1719		pr_err("%s: Invalid key length %zu!\n",
1720			MODULE_NAME, ctx->key_length);
1721		return -EINVAL;
1722	}
1723
1724	switch (ctx->crypto_type) {
1725	case ARTPEC6_CRYPTO_CIPHER_AES_ECB:
1726		oper = regk_crypto_aes_ecb;
1727		cipher_decr = req_ctx->decrypt;
1728		break;
1729
1730	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1731		oper = regk_crypto_aes_cbc;
1732		cipher_decr = req_ctx->decrypt;
1733		break;
1734
1735	case ARTPEC6_CRYPTO_CIPHER_AES_CTR:
1736		oper = regk_crypto_aes_ctr;
1737		cipher_decr = false;
1738		break;
1739
1740	case ARTPEC6_CRYPTO_CIPHER_AES_XTS:
1741		oper = regk_crypto_aes_xts;
1742		cipher_decr = req_ctx->decrypt;
1743
1744		if (variant == ARTPEC6_CRYPTO)
1745			req_ctx->cipher_md |= A6_CRY_MD_CIPHER_DSEQ;
1746		else
1747			req_ctx->cipher_md |= A7_CRY_MD_CIPHER_DSEQ;
1748		break;
1749
1750	default:
1751		pr_err("%s: Invalid cipher mode %d!\n",
1752			MODULE_NAME, ctx->crypto_type);
1753		return -EINVAL;
1754	}
1755
1756	if (variant == ARTPEC6_CRYPTO) {
1757		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_OPER, oper);
1758		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_CIPHER_LEN,
1759						 cipher_len);
1760		if (cipher_decr)
1761			req_ctx->cipher_md |= A6_CRY_MD_CIPHER_DECR;
1762	} else {
1763		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_OPER, oper);
1764		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_CIPHER_LEN,
1765						 cipher_len);
1766		if (cipher_decr)
1767			req_ctx->cipher_md |= A7_CRY_MD_CIPHER_DECR;
1768	}
1769
1770	ret = artpec6_crypto_setup_out_descr(common,
1771					    &req_ctx->cipher_md,
1772					    sizeof(req_ctx->cipher_md),
1773					    false, false);
1774	if (ret)
1775		return ret;
1776
1777	ret = artpec6_crypto_setup_in_descr(common, ac->pad_buffer, 4, false);
1778	if (ret)
1779		return ret;
1780
1781	if (iv_len) {
1782		ret = artpec6_crypto_setup_out_descr(common, areq->iv, iv_len,
1783						     false, false);
1784		if (ret)
1785			return ret;
1786	}
1787	/* Data out */
1788	artpec6_crypto_walk_init(&walk, areq->src);
1789	ret = artpec6_crypto_setup_sg_descrs_out(common, &walk, areq->cryptlen);
1790	if (ret)
1791		return ret;
1792
1793	/* Data in */
1794	artpec6_crypto_walk_init(&walk, areq->dst);
1795	ret = artpec6_crypto_setup_sg_descrs_in(common, &walk, areq->cryptlen);
1796	if (ret)
1797		return ret;
1798
1799	/* CTR-mode padding required by the HW. */
1800	if (ctx->crypto_type == ARTPEC6_CRYPTO_CIPHER_AES_CTR ||
1801	    ctx->crypto_type == ARTPEC6_CRYPTO_CIPHER_AES_XTS) {
1802		size_t pad = ALIGN(areq->cryptlen, AES_BLOCK_SIZE) -
1803			     areq->cryptlen;
1804
1805		if (pad) {
1806			ret = artpec6_crypto_setup_out_descr(common,
1807							     ac->pad_buffer,
1808							     pad, false, false);
1809			if (ret)
1810				return ret;
1811
1812			ret = artpec6_crypto_setup_in_descr(common,
1813							    ac->pad_buffer, pad,
1814							    false);
1815			if (ret)
1816				return ret;
1817		}
1818	}
1819
1820	ret = artpec6_crypto_terminate_out_descrs(common);
1821	if (ret)
1822		return ret;
1823
1824	ret = artpec6_crypto_terminate_in_descrs(common);
1825	if (ret)
1826		return ret;
1827
1828	return artpec6_crypto_dma_map_descs(common);
1829}
1830
1831static int artpec6_crypto_prepare_aead(struct aead_request *areq)
1832{
1833	size_t count;
1834	int ret;
1835	size_t input_length;
1836	struct artpec6_cryptotfm_context *ctx = crypto_tfm_ctx(areq->base.tfm);
1837	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(areq);
1838	struct crypto_aead *cipher = crypto_aead_reqtfm(areq);
1839	struct artpec6_crypto_req_common *common = &req_ctx->common;
1840	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1841	enum artpec6_crypto_variant variant = ac->variant;
1842	u32 md_cipher_len;
1843
1844	artpec6_crypto_init_dma_operation(common);
1845
1846	/* Key */
1847	if (variant == ARTPEC6_CRYPTO) {
1848		ctx->key_md = FIELD_PREP(A6_CRY_MD_OPER,
1849					 a6_regk_crypto_dlkey);
1850	} else {
1851		ctx->key_md = FIELD_PREP(A7_CRY_MD_OPER,
1852					 a7_regk_crypto_dlkey);
1853	}
1854	ret = artpec6_crypto_setup_out_descr(common, (void *)&ctx->key_md,
1855					     sizeof(ctx->key_md), false, false);
1856	if (ret)
1857		return ret;
1858
1859	ret = artpec6_crypto_setup_out_descr(common, ctx->aes_key,
1860					     ctx->key_length, true, false);
1861	if (ret)
1862		return ret;
1863
1864	req_ctx->cipher_md = 0;
1865
1866	switch (ctx->key_length) {
1867	case 16:
1868		md_cipher_len = regk_crypto_key_128;
1869		break;
1870	case 24:
1871		md_cipher_len = regk_crypto_key_192;
1872		break;
1873	case 32:
1874		md_cipher_len = regk_crypto_key_256;
1875		break;
1876	default:
1877		return -EINVAL;
1878	}
1879
1880	if (variant == ARTPEC6_CRYPTO) {
1881		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_OPER,
1882						 regk_crypto_aes_gcm);
1883		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_CIPHER_LEN,
1884						 md_cipher_len);
1885		if (req_ctx->decrypt)
1886			req_ctx->cipher_md |= A6_CRY_MD_CIPHER_DECR;
1887	} else {
1888		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_OPER,
1889						 regk_crypto_aes_gcm);
1890		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_CIPHER_LEN,
1891						 md_cipher_len);
1892		if (req_ctx->decrypt)
1893			req_ctx->cipher_md |= A7_CRY_MD_CIPHER_DECR;
1894	}
1895
1896	ret = artpec6_crypto_setup_out_descr(common,
1897					    (void *) &req_ctx->cipher_md,
1898					    sizeof(req_ctx->cipher_md), false,
1899					    false);
1900	if (ret)
1901		return ret;
1902
1903	ret = artpec6_crypto_setup_in_descr(common, ac->pad_buffer, 4, false);
1904	if (ret)
1905		return ret;
1906
1907	/* For the decryption, cryptlen includes the tag. */
1908	input_length = areq->cryptlen;
1909	if (req_ctx->decrypt)
1910		input_length -= crypto_aead_authsize(cipher);
1911
1912	/* Prepare the context buffer */
1913	req_ctx->hw_ctx.aad_length_bits =
1914		__cpu_to_be64(8*areq->assoclen);
1915
1916	req_ctx->hw_ctx.text_length_bits =
1917		__cpu_to_be64(8*input_length);
1918
1919	memcpy(req_ctx->hw_ctx.J0, areq->iv, crypto_aead_ivsize(cipher));
1920	// The HW omits the initial increment of the counter field.
1921	memcpy(req_ctx->hw_ctx.J0 + GCM_AES_IV_SIZE, "\x00\x00\x00\x01", 4);
1922
1923	ret = artpec6_crypto_setup_out_descr(common, &req_ctx->hw_ctx,
1924		sizeof(struct artpec6_crypto_aead_hw_ctx), false, false);
1925	if (ret)
1926		return ret;
1927
1928	{
1929		struct artpec6_crypto_walk walk;
1930
1931		artpec6_crypto_walk_init(&walk, areq->src);
1932
1933		/* Associated data */
1934		count = areq->assoclen;
1935		ret = artpec6_crypto_setup_sg_descrs_out(common, &walk, count);
1936		if (ret)
1937			return ret;
1938
1939		if (!IS_ALIGNED(areq->assoclen, 16)) {
1940			size_t assoc_pad = 16 - (areq->assoclen % 16);
1941			/* The HW mandates zero padding here */
1942			ret = artpec6_crypto_setup_out_descr(common,
1943							     ac->zero_buffer,
1944							     assoc_pad, false,
1945							     false);
1946			if (ret)
1947				return ret;
1948		}
1949
1950		/* Data to crypto */
1951		count = input_length;
1952		ret = artpec6_crypto_setup_sg_descrs_out(common, &walk, count);
1953		if (ret)
1954			return ret;
1955
1956		if (!IS_ALIGNED(input_length, 16)) {
1957			size_t crypto_pad = 16 - (input_length % 16);
1958			/* The HW mandates zero padding here */
1959			ret = artpec6_crypto_setup_out_descr(common,
1960							     ac->zero_buffer,
1961							     crypto_pad,
1962							     false,
1963							     false);
1964			if (ret)
1965				return ret;
1966		}
1967	}
1968
1969	/* Data from crypto */
1970	{
1971		struct artpec6_crypto_walk walk;
1972		size_t output_len = areq->cryptlen;
1973
1974		if (req_ctx->decrypt)
1975			output_len -= crypto_aead_authsize(cipher);
1976
1977		artpec6_crypto_walk_init(&walk, areq->dst);
1978
1979		/* skip associated data in the output */
1980		count = artpec6_crypto_walk_advance(&walk, areq->assoclen);
1981		if (count)
1982			return -EINVAL;
1983
1984		count = output_len;
1985		ret = artpec6_crypto_setup_sg_descrs_in(common, &walk, count);
1986		if (ret)
1987			return ret;
1988
1989		/* Put padding between the cryptotext and the auth tag */
1990		if (!IS_ALIGNED(output_len, 16)) {
1991			size_t crypto_pad = 16 - (output_len % 16);
1992
1993			ret = artpec6_crypto_setup_in_descr(common,
1994							    ac->pad_buffer,
1995							    crypto_pad, false);
1996			if (ret)
1997				return ret;
1998		}
1999
2000		/* The authentication tag shall follow immediately after
2001		 * the output ciphertext. For decryption it is put in a context
2002		 * buffer for later compare against the input tag.
2003		 */
2004
2005		if (req_ctx->decrypt) {
2006			ret = artpec6_crypto_setup_in_descr(common,
2007				req_ctx->decryption_tag, AES_BLOCK_SIZE, false);
2008			if (ret)
2009				return ret;
2010
2011		} else {
2012			/* For encryption the requested tag size may be smaller
2013			 * than the hardware's generated tag.
2014			 */
2015			size_t authsize = crypto_aead_authsize(cipher);
2016
2017			ret = artpec6_crypto_setup_sg_descrs_in(common, &walk,
2018								authsize);
2019			if (ret)
2020				return ret;
2021
2022			if (authsize < AES_BLOCK_SIZE) {
2023				count = AES_BLOCK_SIZE - authsize;
2024				ret = artpec6_crypto_setup_in_descr(common,
2025					ac->pad_buffer,
2026					count, false);
2027				if (ret)
2028					return ret;
2029			}
2030		}
2031
2032	}
2033
2034	ret = artpec6_crypto_terminate_in_descrs(common);
2035	if (ret)
2036		return ret;
2037
2038	ret = artpec6_crypto_terminate_out_descrs(common);
2039	if (ret)
2040		return ret;
2041
2042	return artpec6_crypto_dma_map_descs(common);
2043}
2044
2045static void artpec6_crypto_process_queue(struct artpec6_crypto *ac,
2046	    struct list_head *completions)
2047{
2048	struct artpec6_crypto_req_common *req;
2049
2050	while (!list_empty(&ac->queue) && !artpec6_crypto_busy()) {
2051		req = list_first_entry(&ac->queue,
2052				       struct artpec6_crypto_req_common,
2053				       list);
2054		list_move_tail(&req->list, &ac->pending);
2055		artpec6_crypto_start_dma(req);
2056
2057		list_add_tail(&req->complete_in_progress, completions);
2058	}
2059
2060	/*
2061	 * In some cases, the hardware can raise an in_eop_flush interrupt
2062	 * before actually updating the status, so we have an timer which will
2063	 * recheck the status on timeout.  Since the cases are expected to be
2064	 * very rare, we use a relatively large timeout value.  There should be
2065	 * no noticeable negative effect if we timeout spuriously.
2066	 */
2067	if (ac->pending_count)
2068		mod_timer(&ac->timer, jiffies + msecs_to_jiffies(100));
2069	else
2070		del_timer(&ac->timer);
2071}
2072
2073static void artpec6_crypto_timeout(struct timer_list *t)
2074{
2075	struct artpec6_crypto *ac = from_timer(ac, t, timer);
2076
2077	dev_info_ratelimited(artpec6_crypto_dev, "timeout\n");
2078
2079	tasklet_schedule(&ac->task);
2080}
2081
2082static void artpec6_crypto_task(unsigned long data)
2083{
2084	struct artpec6_crypto *ac = (struct artpec6_crypto *)data;
2085	struct artpec6_crypto_req_common *req;
2086	struct artpec6_crypto_req_common *n;
2087	struct list_head complete_done;
2088	struct list_head complete_in_progress;
2089
2090	INIT_LIST_HEAD(&complete_done);
2091	INIT_LIST_HEAD(&complete_in_progress);
2092
2093	if (list_empty(&ac->pending)) {
2094		pr_debug("Spurious IRQ\n");
2095		return;
2096	}
2097
2098	spin_lock(&ac->queue_lock);
2099
2100	list_for_each_entry_safe(req, n, &ac->pending, list) {
2101		struct artpec6_crypto_dma_descriptors *dma = req->dma;
2102		u32 stat;
2103		dma_addr_t stataddr;
2104
2105		stataddr = dma->stat_dma_addr + 4 * (req->dma->in_cnt - 1);
2106		dma_sync_single_for_cpu(artpec6_crypto_dev,
2107					stataddr,
2108					4,
2109					DMA_BIDIRECTIONAL);
2110
2111		stat = req->dma->stat[req->dma->in_cnt-1];
2112
2113		/* A non-zero final status descriptor indicates
2114		 * this job has finished.
2115		 */
2116		pr_debug("Request %p status is %X\n", req, stat);
2117		if (!stat)
2118			break;
2119
2120		/* Allow testing of timeout handling with fault injection */
2121#ifdef CONFIG_FAULT_INJECTION
2122		if (should_fail(&artpec6_crypto_fail_status_read, 1))
2123			continue;
2124#endif
2125
2126		pr_debug("Completing request %p\n", req);
2127
2128		list_move_tail(&req->list, &complete_done);
2129
2130		ac->pending_count--;
2131	}
2132
2133	artpec6_crypto_process_queue(ac, &complete_in_progress);
2134
2135	spin_unlock(&ac->queue_lock);
2136
2137	/* Perform the completion callbacks without holding the queue lock
2138	 * to allow new request submissions from the callbacks.
2139	 */
2140	list_for_each_entry_safe(req, n, &complete_done, list) {
2141		artpec6_crypto_dma_unmap_all(req);
2142		artpec6_crypto_copy_bounce_buffers(req);
2143		artpec6_crypto_common_destroy(req);
2144
2145		req->complete(req->req);
2146	}
2147
2148	list_for_each_entry_safe(req, n, &complete_in_progress,
2149				 complete_in_progress) {
2150		crypto_request_complete(req->req, -EINPROGRESS);
2151	}
2152}
2153
2154static void artpec6_crypto_complete_crypto(struct crypto_async_request *req)
2155{
2156	crypto_request_complete(req, 0);
2157}
2158
2159static void
2160artpec6_crypto_complete_cbc_decrypt(struct crypto_async_request *req)
2161{
2162	struct skcipher_request *cipher_req = container_of(req,
2163		struct skcipher_request, base);
2164
2165	scatterwalk_map_and_copy(cipher_req->iv, cipher_req->src,
2166				 cipher_req->cryptlen - AES_BLOCK_SIZE,
2167				 AES_BLOCK_SIZE, 0);
2168	skcipher_request_complete(cipher_req, 0);
2169}
2170
2171static void
2172artpec6_crypto_complete_cbc_encrypt(struct crypto_async_request *req)
2173{
2174	struct skcipher_request *cipher_req = container_of(req,
2175		struct skcipher_request, base);
2176
2177	scatterwalk_map_and_copy(cipher_req->iv, cipher_req->dst,
2178				 cipher_req->cryptlen - AES_BLOCK_SIZE,
2179				 AES_BLOCK_SIZE, 0);
2180	skcipher_request_complete(cipher_req, 0);
2181}
2182
2183static void artpec6_crypto_complete_aead(struct crypto_async_request *req)
2184{
2185	int result = 0;
2186
2187	/* Verify GCM hashtag. */
2188	struct aead_request *areq = container_of(req,
2189		struct aead_request, base);
2190	struct crypto_aead *aead = crypto_aead_reqtfm(areq);
2191	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(areq);
2192
2193	if (req_ctx->decrypt) {
2194		u8 input_tag[AES_BLOCK_SIZE];
2195		unsigned int authsize = crypto_aead_authsize(aead);
2196
2197		sg_pcopy_to_buffer(areq->src,
2198				   sg_nents(areq->src),
2199				   input_tag,
2200				   authsize,
2201				   areq->assoclen + areq->cryptlen -
2202				   authsize);
2203
2204		if (crypto_memneq(req_ctx->decryption_tag,
2205				  input_tag,
2206				  authsize)) {
2207			pr_debug("***EBADMSG:\n");
2208			print_hex_dump_debug("ref:", DUMP_PREFIX_ADDRESS, 32, 1,
2209					     input_tag, authsize, true);
2210			print_hex_dump_debug("out:", DUMP_PREFIX_ADDRESS, 32, 1,
2211					     req_ctx->decryption_tag,
2212					     authsize, true);
2213
2214			result = -EBADMSG;
2215		}
2216	}
2217
2218	aead_request_complete(areq, result);
2219}
2220
2221static void artpec6_crypto_complete_hash(struct crypto_async_request *req)
2222{
2223	crypto_request_complete(req, 0);
2224}
2225
2226
2227/*------------------- Hash functions -----------------------------------------*/
2228static int
2229artpec6_crypto_hash_set_key(struct crypto_ahash *tfm,
2230		    const u8 *key, unsigned int keylen)
2231{
2232	struct artpec6_hashalg_context *tfm_ctx = crypto_tfm_ctx(&tfm->base);
2233	size_t blocksize;
2234	int ret;
2235
2236	if (!keylen) {
2237		pr_err("Invalid length (%d) of HMAC key\n",
2238			keylen);
2239		return -EINVAL;
2240	}
2241
2242	memset(tfm_ctx->hmac_key, 0, sizeof(tfm_ctx->hmac_key));
2243
2244	blocksize = crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
2245
2246	if (keylen > blocksize) {
2247		tfm_ctx->hmac_key_length = blocksize;
2248
2249		ret = crypto_shash_tfm_digest(tfm_ctx->child_hash, key, keylen,
2250					      tfm_ctx->hmac_key);
2251		if (ret)
2252			return ret;
2253	} else {
2254		memcpy(tfm_ctx->hmac_key, key, keylen);
2255		tfm_ctx->hmac_key_length = keylen;
2256	}
2257
2258	return 0;
2259}
2260
2261static int
2262artpec6_crypto_init_hash(struct ahash_request *req, u8 type, int hmac)
2263{
2264	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
2265	enum artpec6_crypto_variant variant = ac->variant;
2266	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2267	u32 oper;
2268
2269	memset(req_ctx, 0, sizeof(*req_ctx));
2270
2271	req_ctx->hash_flags = HASH_FLAG_INIT_CTX;
2272	if (hmac)
2273		req_ctx->hash_flags |= (HASH_FLAG_HMAC | HASH_FLAG_UPDATE_KEY);
2274
2275	switch (type) {
2276	case ARTPEC6_CRYPTO_HASH_SHA1:
2277		oper = hmac ? regk_crypto_hmac_sha1 : regk_crypto_sha1;
2278		break;
2279	case ARTPEC6_CRYPTO_HASH_SHA256:
2280		oper = hmac ? regk_crypto_hmac_sha256 : regk_crypto_sha256;
2281		break;
2282	default:
2283		pr_err("%s: Unsupported hash type 0x%x\n", MODULE_NAME, type);
2284		return -EINVAL;
2285	}
2286
2287	if (variant == ARTPEC6_CRYPTO)
2288		req_ctx->hash_md = FIELD_PREP(A6_CRY_MD_OPER, oper);
2289	else
2290		req_ctx->hash_md = FIELD_PREP(A7_CRY_MD_OPER, oper);
2291
2292	return 0;
2293}
2294
2295static int artpec6_crypto_prepare_submit_hash(struct ahash_request *req)
2296{
2297	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2298	int ret;
2299
2300	if (!req_ctx->common.dma) {
2301		ret = artpec6_crypto_common_init(&req_ctx->common,
2302					  &req->base,
2303					  artpec6_crypto_complete_hash,
2304					  NULL, 0);
2305
2306		if (ret)
2307			return ret;
2308	}
2309
2310	ret = artpec6_crypto_prepare_hash(req);
2311	switch (ret) {
2312	case ARTPEC6_CRYPTO_PREPARE_HASH_START:
2313		ret = artpec6_crypto_submit(&req_ctx->common);
2314		break;
2315
2316	case ARTPEC6_CRYPTO_PREPARE_HASH_NO_START:
2317		ret = 0;
2318		fallthrough;
2319
2320	default:
2321		artpec6_crypto_common_destroy(&req_ctx->common);
2322		break;
2323	}
2324
2325	return ret;
2326}
2327
2328static int artpec6_crypto_hash_final(struct ahash_request *req)
2329{
2330	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2331
2332	req_ctx->hash_flags |= HASH_FLAG_FINALIZE;
2333
2334	return artpec6_crypto_prepare_submit_hash(req);
2335}
2336
2337static int artpec6_crypto_hash_update(struct ahash_request *req)
2338{
2339	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2340
2341	req_ctx->hash_flags |= HASH_FLAG_UPDATE;
2342
2343	return artpec6_crypto_prepare_submit_hash(req);
2344}
2345
2346static int artpec6_crypto_sha1_init(struct ahash_request *req)
2347{
2348	return artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA1, 0);
2349}
2350
2351static int artpec6_crypto_sha1_digest(struct ahash_request *req)
2352{
2353	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2354
2355	artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA1, 0);
2356
2357	req_ctx->hash_flags |= HASH_FLAG_UPDATE | HASH_FLAG_FINALIZE;
2358
2359	return artpec6_crypto_prepare_submit_hash(req);
2360}
2361
2362static int artpec6_crypto_sha256_init(struct ahash_request *req)
2363{
2364	return artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 0);
2365}
2366
2367static int artpec6_crypto_sha256_digest(struct ahash_request *req)
2368{
2369	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2370
2371	artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 0);
2372	req_ctx->hash_flags |= HASH_FLAG_UPDATE | HASH_FLAG_FINALIZE;
2373
2374	return artpec6_crypto_prepare_submit_hash(req);
2375}
2376
2377static int artpec6_crypto_hmac_sha256_init(struct ahash_request *req)
2378{
2379	return artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 1);
2380}
2381
2382static int artpec6_crypto_hmac_sha256_digest(struct ahash_request *req)
2383{
2384	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2385
2386	artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 1);
2387	req_ctx->hash_flags |= HASH_FLAG_UPDATE | HASH_FLAG_FINALIZE;
2388
2389	return artpec6_crypto_prepare_submit_hash(req);
2390}
2391
2392static int artpec6_crypto_ahash_init_common(struct crypto_tfm *tfm,
2393				    const char *base_hash_name)
2394{
2395	struct artpec6_hashalg_context *tfm_ctx = crypto_tfm_ctx(tfm);
2396
2397	crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
2398				 sizeof(struct artpec6_hash_request_context));
2399	memset(tfm_ctx, 0, sizeof(*tfm_ctx));
2400
2401	if (base_hash_name) {
2402		struct crypto_shash *child;
2403
2404		child = crypto_alloc_shash(base_hash_name, 0,
2405					   CRYPTO_ALG_NEED_FALLBACK);
2406
2407		if (IS_ERR(child))
2408			return PTR_ERR(child);
2409
2410		tfm_ctx->child_hash = child;
2411	}
2412
2413	return 0;
2414}
2415
2416static int artpec6_crypto_ahash_init(struct crypto_tfm *tfm)
2417{
2418	return artpec6_crypto_ahash_init_common(tfm, NULL);
2419}
2420
2421static int artpec6_crypto_ahash_init_hmac_sha256(struct crypto_tfm *tfm)
2422{
2423	return artpec6_crypto_ahash_init_common(tfm, "sha256");
2424}
2425
2426static void artpec6_crypto_ahash_exit(struct crypto_tfm *tfm)
2427{
2428	struct artpec6_hashalg_context *tfm_ctx = crypto_tfm_ctx(tfm);
2429
2430	if (tfm_ctx->child_hash)
2431		crypto_free_shash(tfm_ctx->child_hash);
2432
2433	memset(tfm_ctx->hmac_key, 0, sizeof(tfm_ctx->hmac_key));
2434	tfm_ctx->hmac_key_length = 0;
2435}
2436
2437static int artpec6_crypto_hash_export(struct ahash_request *req, void *out)
2438{
2439	const struct artpec6_hash_request_context *ctx = ahash_request_ctx(req);
2440	struct artpec6_hash_export_state *state = out;
2441	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
2442	enum artpec6_crypto_variant variant = ac->variant;
2443
2444	BUILD_BUG_ON(sizeof(state->partial_buffer) !=
2445		     sizeof(ctx->partial_buffer));
2446	BUILD_BUG_ON(sizeof(state->digeststate) != sizeof(ctx->digeststate));
2447
2448	state->digcnt = ctx->digcnt;
2449	state->partial_bytes = ctx->partial_bytes;
2450	state->hash_flags = ctx->hash_flags;
2451
2452	if (variant == ARTPEC6_CRYPTO)
2453		state->oper = FIELD_GET(A6_CRY_MD_OPER, ctx->hash_md);
2454	else
2455		state->oper = FIELD_GET(A7_CRY_MD_OPER, ctx->hash_md);
2456
2457	memcpy(state->partial_buffer, ctx->partial_buffer,
2458	       sizeof(state->partial_buffer));
2459	memcpy(state->digeststate, ctx->digeststate,
2460	       sizeof(state->digeststate));
2461
2462	return 0;
2463}
2464
2465static int artpec6_crypto_hash_import(struct ahash_request *req, const void *in)
2466{
2467	struct artpec6_hash_request_context *ctx = ahash_request_ctx(req);
2468	const struct artpec6_hash_export_state *state = in;
2469	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
2470	enum artpec6_crypto_variant variant = ac->variant;
2471
2472	memset(ctx, 0, sizeof(*ctx));
2473
2474	ctx->digcnt = state->digcnt;
2475	ctx->partial_bytes = state->partial_bytes;
2476	ctx->hash_flags = state->hash_flags;
2477
2478	if (variant == ARTPEC6_CRYPTO)
2479		ctx->hash_md = FIELD_PREP(A6_CRY_MD_OPER, state->oper);
2480	else
2481		ctx->hash_md = FIELD_PREP(A7_CRY_MD_OPER, state->oper);
2482
2483	memcpy(ctx->partial_buffer, state->partial_buffer,
2484	       sizeof(state->partial_buffer));
2485	memcpy(ctx->digeststate, state->digeststate,
2486	       sizeof(state->digeststate));
2487
2488	return 0;
2489}
2490
2491static int init_crypto_hw(struct artpec6_crypto *ac)
2492{
2493	enum artpec6_crypto_variant variant = ac->variant;
2494	void __iomem *base = ac->base;
2495	u32 out_descr_buf_size;
2496	u32 out_data_buf_size;
2497	u32 in_data_buf_size;
2498	u32 in_descr_buf_size;
2499	u32 in_stat_buf_size;
2500	u32 in, out;
2501
2502	/*
2503	 * The PDMA unit contains 1984 bytes of internal memory for the OUT
2504	 * channels and 1024 bytes for the IN channel. This is an elastic
2505	 * memory used to internally store the descriptors and data. The values
2506	 * ares specified in 64 byte incremements.  Trustzone buffers are not
2507	 * used at this stage.
2508	 */
2509	out_data_buf_size = 16;  /* 1024 bytes for data */
2510	out_descr_buf_size = 15; /* 960 bytes for descriptors */
2511	in_data_buf_size = 8;    /* 512 bytes for data */
2512	in_descr_buf_size = 4;   /* 256 bytes for descriptors */
2513	in_stat_buf_size = 4;   /* 256 bytes for stat descrs */
2514
2515	BUILD_BUG_ON_MSG((out_data_buf_size
2516				+ out_descr_buf_size) * 64 > 1984,
2517			  "Invalid OUT configuration");
2518
2519	BUILD_BUG_ON_MSG((in_data_buf_size
2520				+ in_descr_buf_size
2521				+ in_stat_buf_size) * 64 > 1024,
2522			  "Invalid IN configuration");
2523
2524	in = FIELD_PREP(PDMA_IN_BUF_CFG_DATA_BUF_SIZE, in_data_buf_size) |
2525	     FIELD_PREP(PDMA_IN_BUF_CFG_DESCR_BUF_SIZE, in_descr_buf_size) |
2526	     FIELD_PREP(PDMA_IN_BUF_CFG_STAT_BUF_SIZE, in_stat_buf_size);
2527
2528	out = FIELD_PREP(PDMA_OUT_BUF_CFG_DATA_BUF_SIZE, out_data_buf_size) |
2529	      FIELD_PREP(PDMA_OUT_BUF_CFG_DESCR_BUF_SIZE, out_descr_buf_size);
2530
2531	writel_relaxed(out, base + PDMA_OUT_BUF_CFG);
2532	writel_relaxed(PDMA_OUT_CFG_EN, base + PDMA_OUT_CFG);
2533
2534	if (variant == ARTPEC6_CRYPTO) {
2535		writel_relaxed(in, base + A6_PDMA_IN_BUF_CFG);
2536		writel_relaxed(PDMA_IN_CFG_EN, base + A6_PDMA_IN_CFG);
2537		writel_relaxed(A6_PDMA_INTR_MASK_IN_DATA |
2538			       A6_PDMA_INTR_MASK_IN_EOP_FLUSH,
2539			       base + A6_PDMA_INTR_MASK);
2540	} else {
2541		writel_relaxed(in, base + A7_PDMA_IN_BUF_CFG);
2542		writel_relaxed(PDMA_IN_CFG_EN, base + A7_PDMA_IN_CFG);
2543		writel_relaxed(A7_PDMA_INTR_MASK_IN_DATA |
2544			       A7_PDMA_INTR_MASK_IN_EOP_FLUSH,
2545			       base + A7_PDMA_INTR_MASK);
2546	}
2547
2548	return 0;
2549}
2550
2551static void artpec6_crypto_disable_hw(struct artpec6_crypto *ac)
2552{
2553	enum artpec6_crypto_variant variant = ac->variant;
2554	void __iomem *base = ac->base;
2555
2556	if (variant == ARTPEC6_CRYPTO) {
2557		writel_relaxed(A6_PDMA_IN_CMD_STOP, base + A6_PDMA_IN_CMD);
2558		writel_relaxed(0, base + A6_PDMA_IN_CFG);
2559		writel_relaxed(A6_PDMA_OUT_CMD_STOP, base + PDMA_OUT_CMD);
2560	} else {
2561		writel_relaxed(A7_PDMA_IN_CMD_STOP, base + A7_PDMA_IN_CMD);
2562		writel_relaxed(0, base + A7_PDMA_IN_CFG);
2563		writel_relaxed(A7_PDMA_OUT_CMD_STOP, base + PDMA_OUT_CMD);
2564	}
2565
2566	writel_relaxed(0, base + PDMA_OUT_CFG);
2567
2568}
2569
2570static irqreturn_t artpec6_crypto_irq(int irq, void *dev_id)
2571{
2572	struct artpec6_crypto *ac = dev_id;
2573	enum artpec6_crypto_variant variant = ac->variant;
2574	void __iomem *base = ac->base;
2575	u32 mask_in_data, mask_in_eop_flush;
2576	u32 in_cmd_flush_stat, in_cmd_reg;
2577	u32 ack_intr_reg;
2578	u32 ack = 0;
2579	u32 intr;
2580
2581	if (variant == ARTPEC6_CRYPTO) {
2582		intr = readl_relaxed(base + A6_PDMA_MASKED_INTR);
2583		mask_in_data = A6_PDMA_INTR_MASK_IN_DATA;
2584		mask_in_eop_flush = A6_PDMA_INTR_MASK_IN_EOP_FLUSH;
2585		in_cmd_flush_stat = A6_PDMA_IN_CMD_FLUSH_STAT;
2586		in_cmd_reg = A6_PDMA_IN_CMD;
2587		ack_intr_reg = A6_PDMA_ACK_INTR;
2588	} else {
2589		intr = readl_relaxed(base + A7_PDMA_MASKED_INTR);
2590		mask_in_data = A7_PDMA_INTR_MASK_IN_DATA;
2591		mask_in_eop_flush = A7_PDMA_INTR_MASK_IN_EOP_FLUSH;
2592		in_cmd_flush_stat = A7_PDMA_IN_CMD_FLUSH_STAT;
2593		in_cmd_reg = A7_PDMA_IN_CMD;
2594		ack_intr_reg = A7_PDMA_ACK_INTR;
2595	}
2596
2597	/* We get two interrupt notifications from each job.
2598	 * The in_data means all data was sent to memory and then
2599	 * we request a status flush command to write the per-job
2600	 * status to its status vector. This ensures that the
2601	 * tasklet can detect exactly how many submitted jobs
2602	 * that have finished.
2603	 */
2604	if (intr & mask_in_data)
2605		ack |= mask_in_data;
2606
2607	if (intr & mask_in_eop_flush)
2608		ack |= mask_in_eop_flush;
2609	else
2610		writel_relaxed(in_cmd_flush_stat, base + in_cmd_reg);
2611
2612	writel_relaxed(ack, base + ack_intr_reg);
2613
2614	if (intr & mask_in_eop_flush)
2615		tasklet_schedule(&ac->task);
2616
2617	return IRQ_HANDLED;
2618}
2619
2620/*------------------- Algorithm definitions ----------------------------------*/
2621
2622/* Hashes */
2623static struct ahash_alg hash_algos[] = {
2624	/* SHA-1 */
2625	{
2626		.init = artpec6_crypto_sha1_init,
2627		.update = artpec6_crypto_hash_update,
2628		.final = artpec6_crypto_hash_final,
2629		.digest = artpec6_crypto_sha1_digest,
2630		.import = artpec6_crypto_hash_import,
2631		.export = artpec6_crypto_hash_export,
2632		.halg.digestsize = SHA1_DIGEST_SIZE,
2633		.halg.statesize = sizeof(struct artpec6_hash_export_state),
2634		.halg.base = {
2635			.cra_name = "sha1",
2636			.cra_driver_name = "artpec-sha1",
2637			.cra_priority = 300,
2638			.cra_flags = CRYPTO_ALG_ASYNC |
2639				     CRYPTO_ALG_ALLOCATES_MEMORY,
2640			.cra_blocksize = SHA1_BLOCK_SIZE,
2641			.cra_ctxsize = sizeof(struct artpec6_hashalg_context),
 
2642			.cra_module = THIS_MODULE,
2643			.cra_init = artpec6_crypto_ahash_init,
2644			.cra_exit = artpec6_crypto_ahash_exit,
2645		}
2646	},
2647	/* SHA-256 */
2648	{
2649		.init = artpec6_crypto_sha256_init,
2650		.update = artpec6_crypto_hash_update,
2651		.final = artpec6_crypto_hash_final,
2652		.digest = artpec6_crypto_sha256_digest,
2653		.import = artpec6_crypto_hash_import,
2654		.export = artpec6_crypto_hash_export,
2655		.halg.digestsize = SHA256_DIGEST_SIZE,
2656		.halg.statesize = sizeof(struct artpec6_hash_export_state),
2657		.halg.base = {
2658			.cra_name = "sha256",
2659			.cra_driver_name = "artpec-sha256",
2660			.cra_priority = 300,
2661			.cra_flags = CRYPTO_ALG_ASYNC |
2662				     CRYPTO_ALG_ALLOCATES_MEMORY,
2663			.cra_blocksize = SHA256_BLOCK_SIZE,
2664			.cra_ctxsize = sizeof(struct artpec6_hashalg_context),
 
2665			.cra_module = THIS_MODULE,
2666			.cra_init = artpec6_crypto_ahash_init,
2667			.cra_exit = artpec6_crypto_ahash_exit,
2668		}
2669	},
2670	/* HMAC SHA-256 */
2671	{
2672		.init = artpec6_crypto_hmac_sha256_init,
2673		.update = artpec6_crypto_hash_update,
2674		.final = artpec6_crypto_hash_final,
2675		.digest = artpec6_crypto_hmac_sha256_digest,
2676		.import = artpec6_crypto_hash_import,
2677		.export = artpec6_crypto_hash_export,
2678		.setkey = artpec6_crypto_hash_set_key,
2679		.halg.digestsize = SHA256_DIGEST_SIZE,
2680		.halg.statesize = sizeof(struct artpec6_hash_export_state),
2681		.halg.base = {
2682			.cra_name = "hmac(sha256)",
2683			.cra_driver_name = "artpec-hmac-sha256",
2684			.cra_priority = 300,
2685			.cra_flags = CRYPTO_ALG_ASYNC |
2686				     CRYPTO_ALG_ALLOCATES_MEMORY,
2687			.cra_blocksize = SHA256_BLOCK_SIZE,
2688			.cra_ctxsize = sizeof(struct artpec6_hashalg_context),
 
2689			.cra_module = THIS_MODULE,
2690			.cra_init = artpec6_crypto_ahash_init_hmac_sha256,
2691			.cra_exit = artpec6_crypto_ahash_exit,
2692		}
2693	},
2694};
2695
2696/* Crypto */
2697static struct skcipher_alg crypto_algos[] = {
2698	/* AES - ECB */
2699	{
2700		.base = {
2701			.cra_name = "ecb(aes)",
2702			.cra_driver_name = "artpec6-ecb-aes",
2703			.cra_priority = 300,
2704			.cra_flags = CRYPTO_ALG_ASYNC |
2705				     CRYPTO_ALG_ALLOCATES_MEMORY,
2706			.cra_blocksize = AES_BLOCK_SIZE,
2707			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2708			.cra_alignmask = 3,
2709			.cra_module = THIS_MODULE,
2710		},
2711		.min_keysize = AES_MIN_KEY_SIZE,
2712		.max_keysize = AES_MAX_KEY_SIZE,
2713		.setkey = artpec6_crypto_cipher_set_key,
2714		.encrypt = artpec6_crypto_encrypt,
2715		.decrypt = artpec6_crypto_decrypt,
2716		.init = artpec6_crypto_aes_ecb_init,
2717		.exit = artpec6_crypto_aes_exit,
2718	},
2719	/* AES - CTR */
2720	{
2721		.base = {
2722			.cra_name = "ctr(aes)",
2723			.cra_driver_name = "artpec6-ctr-aes",
2724			.cra_priority = 300,
2725			.cra_flags = CRYPTO_ALG_ASYNC |
2726				     CRYPTO_ALG_ALLOCATES_MEMORY |
2727				     CRYPTO_ALG_NEED_FALLBACK,
2728			.cra_blocksize = 1,
2729			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2730			.cra_alignmask = 3,
2731			.cra_module = THIS_MODULE,
2732		},
2733		.min_keysize = AES_MIN_KEY_SIZE,
2734		.max_keysize = AES_MAX_KEY_SIZE,
2735		.ivsize = AES_BLOCK_SIZE,
2736		.setkey = artpec6_crypto_cipher_set_key,
2737		.encrypt = artpec6_crypto_ctr_encrypt,
2738		.decrypt = artpec6_crypto_ctr_decrypt,
2739		.init = artpec6_crypto_aes_ctr_init,
2740		.exit = artpec6_crypto_aes_ctr_exit,
2741	},
2742	/* AES - CBC */
2743	{
2744		.base = {
2745			.cra_name = "cbc(aes)",
2746			.cra_driver_name = "artpec6-cbc-aes",
2747			.cra_priority = 300,
2748			.cra_flags = CRYPTO_ALG_ASYNC |
2749				     CRYPTO_ALG_ALLOCATES_MEMORY,
2750			.cra_blocksize = AES_BLOCK_SIZE,
2751			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2752			.cra_alignmask = 3,
2753			.cra_module = THIS_MODULE,
2754		},
2755		.min_keysize = AES_MIN_KEY_SIZE,
2756		.max_keysize = AES_MAX_KEY_SIZE,
2757		.ivsize = AES_BLOCK_SIZE,
2758		.setkey = artpec6_crypto_cipher_set_key,
2759		.encrypt = artpec6_crypto_encrypt,
2760		.decrypt = artpec6_crypto_decrypt,
2761		.init = artpec6_crypto_aes_cbc_init,
2762		.exit = artpec6_crypto_aes_exit
2763	},
2764	/* AES - XTS */
2765	{
2766		.base = {
2767			.cra_name = "xts(aes)",
2768			.cra_driver_name = "artpec6-xts-aes",
2769			.cra_priority = 300,
2770			.cra_flags = CRYPTO_ALG_ASYNC |
2771				     CRYPTO_ALG_ALLOCATES_MEMORY,
2772			.cra_blocksize = 1,
2773			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2774			.cra_alignmask = 3,
2775			.cra_module = THIS_MODULE,
2776		},
2777		.min_keysize = 2*AES_MIN_KEY_SIZE,
2778		.max_keysize = 2*AES_MAX_KEY_SIZE,
2779		.ivsize = 16,
2780		.setkey = artpec6_crypto_xts_set_key,
2781		.encrypt = artpec6_crypto_encrypt,
2782		.decrypt = artpec6_crypto_decrypt,
2783		.init = artpec6_crypto_aes_xts_init,
2784		.exit = artpec6_crypto_aes_exit,
2785	},
2786};
2787
2788static struct aead_alg aead_algos[] = {
2789	{
2790		.init   = artpec6_crypto_aead_init,
2791		.setkey = artpec6_crypto_aead_set_key,
2792		.encrypt = artpec6_crypto_aead_encrypt,
2793		.decrypt = artpec6_crypto_aead_decrypt,
2794		.ivsize = GCM_AES_IV_SIZE,
2795		.maxauthsize = AES_BLOCK_SIZE,
2796
2797		.base = {
2798			.cra_name = "gcm(aes)",
2799			.cra_driver_name = "artpec-gcm-aes",
2800			.cra_priority = 300,
2801			.cra_flags = CRYPTO_ALG_ASYNC |
2802				     CRYPTO_ALG_ALLOCATES_MEMORY |
2803				     CRYPTO_ALG_KERN_DRIVER_ONLY,
2804			.cra_blocksize = 1,
2805			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2806			.cra_alignmask = 3,
2807			.cra_module = THIS_MODULE,
2808		},
2809	}
2810};
2811
2812#ifdef CONFIG_DEBUG_FS
2813
2814struct dbgfs_u32 {
2815	char *name;
2816	mode_t mode;
2817	u32 *flag;
2818	char *desc;
2819};
2820
2821static struct dentry *dbgfs_root;
2822
2823static void artpec6_crypto_init_debugfs(void)
2824{
2825	dbgfs_root = debugfs_create_dir("artpec6_crypto", NULL);
2826
2827#ifdef CONFIG_FAULT_INJECTION
2828	fault_create_debugfs_attr("fail_status_read", dbgfs_root,
2829				  &artpec6_crypto_fail_status_read);
2830
2831	fault_create_debugfs_attr("fail_dma_array_full", dbgfs_root,
2832				  &artpec6_crypto_fail_dma_array_full);
2833#endif
2834}
2835
2836static void artpec6_crypto_free_debugfs(void)
2837{
2838	debugfs_remove_recursive(dbgfs_root);
2839	dbgfs_root = NULL;
2840}
2841#endif
2842
2843static const struct of_device_id artpec6_crypto_of_match[] = {
2844	{ .compatible = "axis,artpec6-crypto", .data = (void *)ARTPEC6_CRYPTO },
2845	{ .compatible = "axis,artpec7-crypto", .data = (void *)ARTPEC7_CRYPTO },
2846	{}
2847};
2848MODULE_DEVICE_TABLE(of, artpec6_crypto_of_match);
2849
2850static int artpec6_crypto_probe(struct platform_device *pdev)
2851{
2852	const struct of_device_id *match;
2853	enum artpec6_crypto_variant variant;
2854	struct artpec6_crypto *ac;
2855	struct device *dev = &pdev->dev;
2856	void __iomem *base;
2857	int irq;
2858	int err;
2859
2860	if (artpec6_crypto_dev)
2861		return -ENODEV;
2862
2863	match = of_match_node(artpec6_crypto_of_match, dev->of_node);
2864	if (!match)
2865		return -EINVAL;
2866
2867	variant = (enum artpec6_crypto_variant)match->data;
2868
2869	base = devm_platform_ioremap_resource(pdev, 0);
2870	if (IS_ERR(base))
2871		return PTR_ERR(base);
2872
2873	irq = platform_get_irq(pdev, 0);
2874	if (irq < 0)
2875		return -ENODEV;
2876
2877	ac = devm_kzalloc(&pdev->dev, sizeof(struct artpec6_crypto),
2878			  GFP_KERNEL);
2879	if (!ac)
2880		return -ENOMEM;
2881
2882	platform_set_drvdata(pdev, ac);
2883	ac->variant = variant;
2884
2885	spin_lock_init(&ac->queue_lock);
2886	INIT_LIST_HEAD(&ac->queue);
2887	INIT_LIST_HEAD(&ac->pending);
2888	timer_setup(&ac->timer, artpec6_crypto_timeout, 0);
2889
2890	ac->base = base;
2891
2892	ac->dma_cache = kmem_cache_create("artpec6_crypto_dma",
2893		sizeof(struct artpec6_crypto_dma_descriptors),
2894		64,
2895		0,
2896		NULL);
2897	if (!ac->dma_cache)
2898		return -ENOMEM;
2899
2900#ifdef CONFIG_DEBUG_FS
2901	artpec6_crypto_init_debugfs();
2902#endif
2903
2904	tasklet_init(&ac->task, artpec6_crypto_task,
2905		     (unsigned long)ac);
2906
2907	ac->pad_buffer = devm_kzalloc(&pdev->dev, 2 * ARTPEC_CACHE_LINE_MAX,
2908				      GFP_KERNEL);
2909	if (!ac->pad_buffer)
2910		return -ENOMEM;
2911	ac->pad_buffer = PTR_ALIGN(ac->pad_buffer, ARTPEC_CACHE_LINE_MAX);
2912
2913	ac->zero_buffer = devm_kzalloc(&pdev->dev, 2 * ARTPEC_CACHE_LINE_MAX,
2914				      GFP_KERNEL);
2915	if (!ac->zero_buffer)
2916		return -ENOMEM;
2917	ac->zero_buffer = PTR_ALIGN(ac->zero_buffer, ARTPEC_CACHE_LINE_MAX);
2918
2919	err = init_crypto_hw(ac);
2920	if (err)
2921		goto free_cache;
2922
2923	err = devm_request_irq(&pdev->dev, irq, artpec6_crypto_irq, 0,
2924			       "artpec6-crypto", ac);
2925	if (err)
2926		goto disable_hw;
2927
2928	artpec6_crypto_dev = &pdev->dev;
2929
2930	err = crypto_register_ahashes(hash_algos, ARRAY_SIZE(hash_algos));
2931	if (err) {
2932		dev_err(dev, "Failed to register ahashes\n");
2933		goto disable_hw;
2934	}
2935
2936	err = crypto_register_skciphers(crypto_algos, ARRAY_SIZE(crypto_algos));
2937	if (err) {
2938		dev_err(dev, "Failed to register ciphers\n");
2939		goto unregister_ahashes;
2940	}
2941
2942	err = crypto_register_aeads(aead_algos, ARRAY_SIZE(aead_algos));
2943	if (err) {
2944		dev_err(dev, "Failed to register aeads\n");
2945		goto unregister_algs;
2946	}
2947
2948	return 0;
2949
2950unregister_algs:
2951	crypto_unregister_skciphers(crypto_algos, ARRAY_SIZE(crypto_algos));
2952unregister_ahashes:
2953	crypto_unregister_ahashes(hash_algos, ARRAY_SIZE(hash_algos));
2954disable_hw:
2955	artpec6_crypto_disable_hw(ac);
2956free_cache:
2957	kmem_cache_destroy(ac->dma_cache);
2958	return err;
2959}
2960
2961static void artpec6_crypto_remove(struct platform_device *pdev)
2962{
2963	struct artpec6_crypto *ac = platform_get_drvdata(pdev);
2964	int irq = platform_get_irq(pdev, 0);
2965
2966	crypto_unregister_ahashes(hash_algos, ARRAY_SIZE(hash_algos));
2967	crypto_unregister_skciphers(crypto_algos, ARRAY_SIZE(crypto_algos));
2968	crypto_unregister_aeads(aead_algos, ARRAY_SIZE(aead_algos));
2969
2970	tasklet_disable(&ac->task);
2971	devm_free_irq(&pdev->dev, irq, ac);
2972	tasklet_kill(&ac->task);
2973	del_timer_sync(&ac->timer);
2974
2975	artpec6_crypto_disable_hw(ac);
2976
2977	kmem_cache_destroy(ac->dma_cache);
2978#ifdef CONFIG_DEBUG_FS
2979	artpec6_crypto_free_debugfs();
2980#endif
 
2981}
2982
2983static struct platform_driver artpec6_crypto_driver = {
2984	.probe   = artpec6_crypto_probe,
2985	.remove_new = artpec6_crypto_remove,
2986	.driver  = {
2987		.name  = "artpec6-crypto",
2988		.of_match_table = artpec6_crypto_of_match,
2989	},
2990};
2991
2992module_platform_driver(artpec6_crypto_driver);
2993
2994MODULE_AUTHOR("Axis Communications AB");
2995MODULE_DESCRIPTION("ARTPEC-6 Crypto driver");
2996MODULE_LICENSE("GPL");
v5.9
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 *   Driver for ARTPEC-6 crypto block using the kernel asynchronous crypto api.
   4 *
   5 *    Copyright (C) 2014-2017  Axis Communications AB
   6 */
   7#define pr_fmt(fmt)     KBUILD_MODNAME ": " fmt
   8
   9#include <linux/bitfield.h>
  10#include <linux/crypto.h>
  11#include <linux/debugfs.h>
  12#include <linux/delay.h>
  13#include <linux/dma-mapping.h>
  14#include <linux/fault-inject.h>
  15#include <linux/init.h>
  16#include <linux/interrupt.h>
  17#include <linux/kernel.h>
  18#include <linux/list.h>
  19#include <linux/module.h>
  20#include <linux/of.h>
  21#include <linux/platform_device.h>
  22#include <linux/scatterlist.h>
  23#include <linux/slab.h>
  24
  25#include <crypto/aes.h>
  26#include <crypto/gcm.h>
  27#include <crypto/internal/aead.h>
  28#include <crypto/internal/hash.h>
  29#include <crypto/internal/skcipher.h>
  30#include <crypto/scatterwalk.h>
  31#include <crypto/sha.h>
 
  32#include <crypto/xts.h>
  33
  34/* Max length of a line in all cache levels for Artpec SoCs. */
  35#define ARTPEC_CACHE_LINE_MAX	32
  36
  37#define PDMA_OUT_CFG		0x0000
  38#define PDMA_OUT_BUF_CFG	0x0004
  39#define PDMA_OUT_CMD		0x0008
  40#define PDMA_OUT_DESCRQ_PUSH	0x0010
  41#define PDMA_OUT_DESCRQ_STAT	0x0014
  42
  43#define A6_PDMA_IN_CFG		0x0028
  44#define A6_PDMA_IN_BUF_CFG	0x002c
  45#define A6_PDMA_IN_CMD		0x0030
  46#define A6_PDMA_IN_STATQ_PUSH	0x0038
  47#define A6_PDMA_IN_DESCRQ_PUSH	0x0044
  48#define A6_PDMA_IN_DESCRQ_STAT	0x0048
  49#define A6_PDMA_INTR_MASK	0x0068
  50#define A6_PDMA_ACK_INTR	0x006c
  51#define A6_PDMA_MASKED_INTR	0x0074
  52
  53#define A7_PDMA_IN_CFG		0x002c
  54#define A7_PDMA_IN_BUF_CFG	0x0030
  55#define A7_PDMA_IN_CMD		0x0034
  56#define A7_PDMA_IN_STATQ_PUSH	0x003c
  57#define A7_PDMA_IN_DESCRQ_PUSH	0x0048
  58#define A7_PDMA_IN_DESCRQ_STAT	0x004C
  59#define A7_PDMA_INTR_MASK	0x006c
  60#define A7_PDMA_ACK_INTR	0x0070
  61#define A7_PDMA_MASKED_INTR	0x0078
  62
  63#define PDMA_OUT_CFG_EN				BIT(0)
  64
  65#define PDMA_OUT_BUF_CFG_DATA_BUF_SIZE		GENMASK(4, 0)
  66#define PDMA_OUT_BUF_CFG_DESCR_BUF_SIZE		GENMASK(9, 5)
  67
  68#define PDMA_OUT_CMD_START			BIT(0)
  69#define A6_PDMA_OUT_CMD_STOP			BIT(3)
  70#define A7_PDMA_OUT_CMD_STOP			BIT(2)
  71
  72#define PDMA_OUT_DESCRQ_PUSH_LEN		GENMASK(5, 0)
  73#define PDMA_OUT_DESCRQ_PUSH_ADDR		GENMASK(31, 6)
  74
  75#define PDMA_OUT_DESCRQ_STAT_LEVEL		GENMASK(3, 0)
  76#define PDMA_OUT_DESCRQ_STAT_SIZE		GENMASK(7, 4)
  77
  78#define PDMA_IN_CFG_EN				BIT(0)
  79
  80#define PDMA_IN_BUF_CFG_DATA_BUF_SIZE		GENMASK(4, 0)
  81#define PDMA_IN_BUF_CFG_DESCR_BUF_SIZE		GENMASK(9, 5)
  82#define PDMA_IN_BUF_CFG_STAT_BUF_SIZE		GENMASK(14, 10)
  83
  84#define PDMA_IN_CMD_START			BIT(0)
  85#define A6_PDMA_IN_CMD_FLUSH_STAT		BIT(2)
  86#define A6_PDMA_IN_CMD_STOP			BIT(3)
  87#define A7_PDMA_IN_CMD_FLUSH_STAT		BIT(1)
  88#define A7_PDMA_IN_CMD_STOP			BIT(2)
  89
  90#define PDMA_IN_STATQ_PUSH_LEN			GENMASK(5, 0)
  91#define PDMA_IN_STATQ_PUSH_ADDR			GENMASK(31, 6)
  92
  93#define PDMA_IN_DESCRQ_PUSH_LEN			GENMASK(5, 0)
  94#define PDMA_IN_DESCRQ_PUSH_ADDR		GENMASK(31, 6)
  95
  96#define PDMA_IN_DESCRQ_STAT_LEVEL		GENMASK(3, 0)
  97#define PDMA_IN_DESCRQ_STAT_SIZE		GENMASK(7, 4)
  98
  99#define A6_PDMA_INTR_MASK_IN_DATA		BIT(2)
 100#define A6_PDMA_INTR_MASK_IN_EOP		BIT(3)
 101#define A6_PDMA_INTR_MASK_IN_EOP_FLUSH		BIT(4)
 102
 103#define A7_PDMA_INTR_MASK_IN_DATA		BIT(3)
 104#define A7_PDMA_INTR_MASK_IN_EOP		BIT(4)
 105#define A7_PDMA_INTR_MASK_IN_EOP_FLUSH		BIT(5)
 106
 107#define A6_CRY_MD_OPER		GENMASK(19, 16)
 108
 109#define A6_CRY_MD_HASH_SEL_CTX	GENMASK(21, 20)
 110#define A6_CRY_MD_HASH_HMAC_FIN	BIT(23)
 111
 112#define A6_CRY_MD_CIPHER_LEN	GENMASK(21, 20)
 113#define A6_CRY_MD_CIPHER_DECR	BIT(22)
 114#define A6_CRY_MD_CIPHER_TWEAK	BIT(23)
 115#define A6_CRY_MD_CIPHER_DSEQ	BIT(24)
 116
 117#define A7_CRY_MD_OPER		GENMASK(11, 8)
 118
 119#define A7_CRY_MD_HASH_SEL_CTX	GENMASK(13, 12)
 120#define A7_CRY_MD_HASH_HMAC_FIN	BIT(15)
 121
 122#define A7_CRY_MD_CIPHER_LEN	GENMASK(13, 12)
 123#define A7_CRY_MD_CIPHER_DECR	BIT(14)
 124#define A7_CRY_MD_CIPHER_TWEAK	BIT(15)
 125#define A7_CRY_MD_CIPHER_DSEQ	BIT(16)
 126
 127/* DMA metadata constants */
 128#define regk_crypto_aes_cbc     0x00000002
 129#define regk_crypto_aes_ctr     0x00000003
 130#define regk_crypto_aes_ecb     0x00000001
 131#define regk_crypto_aes_gcm     0x00000004
 132#define regk_crypto_aes_xts     0x00000005
 133#define regk_crypto_cache       0x00000002
 134#define a6_regk_crypto_dlkey    0x0000000a
 135#define a7_regk_crypto_dlkey    0x0000000e
 136#define regk_crypto_ext         0x00000001
 137#define regk_crypto_hmac_sha1   0x00000007
 138#define regk_crypto_hmac_sha256 0x00000009
 139#define regk_crypto_init        0x00000000
 140#define regk_crypto_key_128     0x00000000
 141#define regk_crypto_key_192     0x00000001
 142#define regk_crypto_key_256     0x00000002
 143#define regk_crypto_null        0x00000000
 144#define regk_crypto_sha1        0x00000006
 145#define regk_crypto_sha256      0x00000008
 146
 147/* DMA descriptor structures */
 148struct pdma_descr_ctrl  {
 149	unsigned char short_descr : 1;
 150	unsigned char pad1        : 1;
 151	unsigned char eop         : 1;
 152	unsigned char intr        : 1;
 153	unsigned char short_len   : 3;
 154	unsigned char pad2        : 1;
 155} __packed;
 156
 157struct pdma_data_descr {
 158	unsigned int len : 24;
 159	unsigned int buf : 32;
 160} __packed;
 161
 162struct pdma_short_descr {
 163	unsigned char data[7];
 164} __packed;
 165
 166struct pdma_descr {
 167	struct pdma_descr_ctrl ctrl;
 168	union {
 169		struct pdma_data_descr   data;
 170		struct pdma_short_descr  shrt;
 171	};
 172};
 173
 174struct pdma_stat_descr {
 175	unsigned char pad1        : 1;
 176	unsigned char pad2        : 1;
 177	unsigned char eop         : 1;
 178	unsigned char pad3        : 5;
 179	unsigned int  len         : 24;
 180};
 181
 182/* Each descriptor array can hold max 64 entries */
 183#define PDMA_DESCR_COUNT	64
 184
 185#define MODULE_NAME   "Artpec-6 CA"
 186
 187/* Hash modes (including HMAC variants) */
 188#define ARTPEC6_CRYPTO_HASH_SHA1	1
 189#define ARTPEC6_CRYPTO_HASH_SHA256	2
 190
 191/* Crypto modes */
 192#define ARTPEC6_CRYPTO_CIPHER_AES_ECB	1
 193#define ARTPEC6_CRYPTO_CIPHER_AES_CBC	2
 194#define ARTPEC6_CRYPTO_CIPHER_AES_CTR	3
 195#define ARTPEC6_CRYPTO_CIPHER_AES_XTS	5
 196
 197/* The PDMA is a DMA-engine tightly coupled with a ciphering engine.
 198 * It operates on a descriptor array with up to 64 descriptor entries.
 199 * The arrays must be 64 byte aligned in memory.
 200 *
 201 * The ciphering unit has no registers and is completely controlled by
 202 * a 4-byte metadata that is inserted at the beginning of each dma packet.
 203 *
 204 * A dma packet is a sequence of descriptors terminated by setting the .eop
 205 * field in the final descriptor of the packet.
 206 *
 207 * Multiple packets are used for providing context data, key data and
 208 * the plain/ciphertext.
 209 *
 210 *   PDMA Descriptors (Array)
 211 *  +------+------+------+~~+-------+------+----
 212 *  |  0   |  1   |  2   |~~| 11 EOP|  12  |  ....
 213 *  +--+---+--+---+----+-+~~+-------+----+-+----
 214 *     |      |        |       |         |
 215 *     |      |        |       |         |
 216 *   __|__  +-------++-------++-------+ +----+
 217 *  | MD  | |Payload||Payload||Payload| | MD |
 218 *  +-----+ +-------++-------++-------+ +----+
 219 */
 220
 221struct artpec6_crypto_bounce_buffer {
 222	struct list_head list;
 223	size_t length;
 224	struct scatterlist *sg;
 225	size_t offset;
 226	/* buf is aligned to ARTPEC_CACHE_LINE_MAX and
 227	 * holds up to ARTPEC_CACHE_LINE_MAX bytes data.
 228	 */
 229	void *buf;
 230};
 231
 232struct artpec6_crypto_dma_map {
 233	dma_addr_t dma_addr;
 234	size_t size;
 235	enum dma_data_direction dir;
 236};
 237
 238struct artpec6_crypto_dma_descriptors {
 239	struct pdma_descr out[PDMA_DESCR_COUNT] __aligned(64);
 240	struct pdma_descr in[PDMA_DESCR_COUNT] __aligned(64);
 241	u32 stat[PDMA_DESCR_COUNT] __aligned(64);
 242	struct list_head bounce_buffers;
 243	/* Enough maps for all out/in buffers, and all three descr. arrays */
 244	struct artpec6_crypto_dma_map maps[PDMA_DESCR_COUNT * 2 + 2];
 245	dma_addr_t out_dma_addr;
 246	dma_addr_t in_dma_addr;
 247	dma_addr_t stat_dma_addr;
 248	size_t out_cnt;
 249	size_t in_cnt;
 250	size_t map_count;
 251};
 252
 253enum artpec6_crypto_variant {
 254	ARTPEC6_CRYPTO,
 255	ARTPEC7_CRYPTO,
 256};
 257
 258struct artpec6_crypto {
 259	void __iomem *base;
 260	spinlock_t queue_lock;
 261	struct list_head queue; /* waiting for pdma fifo space */
 262	struct list_head pending; /* submitted to pdma fifo */
 263	struct tasklet_struct task;
 264	struct kmem_cache *dma_cache;
 265	int pending_count;
 266	struct timer_list timer;
 267	enum artpec6_crypto_variant variant;
 268	void *pad_buffer; /* cache-aligned block padding buffer */
 269	void *zero_buffer;
 270};
 271
 272enum artpec6_crypto_hash_flags {
 273	HASH_FLAG_INIT_CTX = 2,
 274	HASH_FLAG_UPDATE = 4,
 275	HASH_FLAG_FINALIZE = 8,
 276	HASH_FLAG_HMAC = 16,
 277	HASH_FLAG_UPDATE_KEY = 32,
 278};
 279
 280struct artpec6_crypto_req_common {
 281	struct list_head list;
 282	struct list_head complete_in_progress;
 283	struct artpec6_crypto_dma_descriptors *dma;
 284	struct crypto_async_request *req;
 285	void (*complete)(struct crypto_async_request *req);
 286	gfp_t gfp_flags;
 287};
 288
 289struct artpec6_hash_request_context {
 290	char partial_buffer[SHA256_BLOCK_SIZE];
 291	char partial_buffer_out[SHA256_BLOCK_SIZE];
 292	char key_buffer[SHA256_BLOCK_SIZE];
 293	char pad_buffer[SHA256_BLOCK_SIZE + 32];
 294	unsigned char digeststate[SHA256_DIGEST_SIZE];
 295	size_t partial_bytes;
 296	u64 digcnt;
 297	u32 key_md;
 298	u32 hash_md;
 299	enum artpec6_crypto_hash_flags hash_flags;
 300	struct artpec6_crypto_req_common common;
 301};
 302
 303struct artpec6_hash_export_state {
 304	char partial_buffer[SHA256_BLOCK_SIZE];
 305	unsigned char digeststate[SHA256_DIGEST_SIZE];
 306	size_t partial_bytes;
 307	u64 digcnt;
 308	int oper;
 309	unsigned int hash_flags;
 310};
 311
 312struct artpec6_hashalg_context {
 313	char hmac_key[SHA256_BLOCK_SIZE];
 314	size_t hmac_key_length;
 315	struct crypto_shash *child_hash;
 316};
 317
 318struct artpec6_crypto_request_context {
 319	u32 cipher_md;
 320	bool decrypt;
 321	struct artpec6_crypto_req_common common;
 322};
 323
 324struct artpec6_cryptotfm_context {
 325	unsigned char aes_key[2*AES_MAX_KEY_SIZE];
 326	size_t key_length;
 327	u32 key_md;
 328	int crypto_type;
 329	struct crypto_sync_skcipher *fallback;
 330};
 331
 332struct artpec6_crypto_aead_hw_ctx {
 333	__be64	aad_length_bits;
 334	__be64  text_length_bits;
 335	__u8	J0[AES_BLOCK_SIZE];
 336};
 337
 338struct artpec6_crypto_aead_req_ctx {
 339	struct artpec6_crypto_aead_hw_ctx hw_ctx;
 340	u32 cipher_md;
 341	bool decrypt;
 342	struct artpec6_crypto_req_common common;
 343	__u8 decryption_tag[AES_BLOCK_SIZE] ____cacheline_aligned;
 344};
 345
 346/* The crypto framework makes it hard to avoid this global. */
 347static struct device *artpec6_crypto_dev;
 348
 349#ifdef CONFIG_FAULT_INJECTION
 350static DECLARE_FAULT_ATTR(artpec6_crypto_fail_status_read);
 351static DECLARE_FAULT_ATTR(artpec6_crypto_fail_dma_array_full);
 352#endif
 353
 354enum {
 355	ARTPEC6_CRYPTO_PREPARE_HASH_NO_START,
 356	ARTPEC6_CRYPTO_PREPARE_HASH_START,
 357};
 358
 359static int artpec6_crypto_prepare_aead(struct aead_request *areq);
 360static int artpec6_crypto_prepare_crypto(struct skcipher_request *areq);
 361static int artpec6_crypto_prepare_hash(struct ahash_request *areq);
 362
 363static void
 364artpec6_crypto_complete_crypto(struct crypto_async_request *req);
 365static void
 366artpec6_crypto_complete_cbc_encrypt(struct crypto_async_request *req);
 367static void
 368artpec6_crypto_complete_cbc_decrypt(struct crypto_async_request *req);
 369static void
 370artpec6_crypto_complete_aead(struct crypto_async_request *req);
 371static void
 372artpec6_crypto_complete_hash(struct crypto_async_request *req);
 373
 374static int
 375artpec6_crypto_common_destroy(struct artpec6_crypto_req_common *common);
 376
 377static void
 378artpec6_crypto_start_dma(struct artpec6_crypto_req_common *common);
 379
 380struct artpec6_crypto_walk {
 381	struct scatterlist *sg;
 382	size_t offset;
 383};
 384
 385static void artpec6_crypto_walk_init(struct artpec6_crypto_walk *awalk,
 386				     struct scatterlist *sg)
 387{
 388	awalk->sg = sg;
 389	awalk->offset = 0;
 390}
 391
 392static size_t artpec6_crypto_walk_advance(struct artpec6_crypto_walk *awalk,
 393					  size_t nbytes)
 394{
 395	while (nbytes && awalk->sg) {
 396		size_t piece;
 397
 398		WARN_ON(awalk->offset > awalk->sg->length);
 399
 400		piece = min(nbytes, (size_t)awalk->sg->length - awalk->offset);
 401		nbytes -= piece;
 402		awalk->offset += piece;
 403		if (awalk->offset == awalk->sg->length) {
 404			awalk->sg = sg_next(awalk->sg);
 405			awalk->offset = 0;
 406		}
 407
 408	}
 409
 410	return nbytes;
 411}
 412
 413static size_t
 414artpec6_crypto_walk_chunklen(const struct artpec6_crypto_walk *awalk)
 415{
 416	WARN_ON(awalk->sg->length == awalk->offset);
 417
 418	return awalk->sg->length - awalk->offset;
 419}
 420
 421static dma_addr_t
 422artpec6_crypto_walk_chunk_phys(const struct artpec6_crypto_walk *awalk)
 423{
 424	return sg_phys(awalk->sg) + awalk->offset;
 425}
 426
 427static void
 428artpec6_crypto_copy_bounce_buffers(struct artpec6_crypto_req_common *common)
 429{
 430	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 431	struct artpec6_crypto_bounce_buffer *b;
 432	struct artpec6_crypto_bounce_buffer *next;
 433
 434	list_for_each_entry_safe(b, next, &dma->bounce_buffers, list) {
 435		pr_debug("bounce entry %p: %zu bytes @ %zu from %p\n",
 436			 b, b->length, b->offset, b->buf);
 437		sg_pcopy_from_buffer(b->sg,
 438				   1,
 439				   b->buf,
 440				   b->length,
 441				   b->offset);
 442
 443		list_del(&b->list);
 444		kfree(b);
 445	}
 446}
 447
 448static inline bool artpec6_crypto_busy(void)
 449{
 450	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
 451	int fifo_count = ac->pending_count;
 452
 453	return fifo_count > 6;
 454}
 455
 456static int artpec6_crypto_submit(struct artpec6_crypto_req_common *req)
 457{
 458	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
 459	int ret = -EBUSY;
 460
 461	spin_lock_bh(&ac->queue_lock);
 462
 463	if (!artpec6_crypto_busy()) {
 464		list_add_tail(&req->list, &ac->pending);
 465		artpec6_crypto_start_dma(req);
 466		ret = -EINPROGRESS;
 467	} else if (req->req->flags & CRYPTO_TFM_REQ_MAY_BACKLOG) {
 468		list_add_tail(&req->list, &ac->queue);
 469	} else {
 470		artpec6_crypto_common_destroy(req);
 471	}
 472
 473	spin_unlock_bh(&ac->queue_lock);
 474
 475	return ret;
 476}
 477
 478static void artpec6_crypto_start_dma(struct artpec6_crypto_req_common *common)
 479{
 480	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
 481	enum artpec6_crypto_variant variant = ac->variant;
 482	void __iomem *base = ac->base;
 483	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 484	u32 ind, statd, outd;
 485
 486	/* Make descriptor content visible to the DMA before starting it. */
 487	wmb();
 488
 489	ind = FIELD_PREP(PDMA_IN_DESCRQ_PUSH_LEN, dma->in_cnt - 1) |
 490	      FIELD_PREP(PDMA_IN_DESCRQ_PUSH_ADDR, dma->in_dma_addr >> 6);
 491
 492	statd = FIELD_PREP(PDMA_IN_STATQ_PUSH_LEN, dma->in_cnt - 1) |
 493		FIELD_PREP(PDMA_IN_STATQ_PUSH_ADDR, dma->stat_dma_addr >> 6);
 494
 495	outd = FIELD_PREP(PDMA_OUT_DESCRQ_PUSH_LEN, dma->out_cnt - 1) |
 496	       FIELD_PREP(PDMA_OUT_DESCRQ_PUSH_ADDR, dma->out_dma_addr >> 6);
 497
 498	if (variant == ARTPEC6_CRYPTO) {
 499		writel_relaxed(ind, base + A6_PDMA_IN_DESCRQ_PUSH);
 500		writel_relaxed(statd, base + A6_PDMA_IN_STATQ_PUSH);
 501		writel_relaxed(PDMA_IN_CMD_START, base + A6_PDMA_IN_CMD);
 502	} else {
 503		writel_relaxed(ind, base + A7_PDMA_IN_DESCRQ_PUSH);
 504		writel_relaxed(statd, base + A7_PDMA_IN_STATQ_PUSH);
 505		writel_relaxed(PDMA_IN_CMD_START, base + A7_PDMA_IN_CMD);
 506	}
 507
 508	writel_relaxed(outd, base + PDMA_OUT_DESCRQ_PUSH);
 509	writel_relaxed(PDMA_OUT_CMD_START, base + PDMA_OUT_CMD);
 510
 511	ac->pending_count++;
 512}
 513
 514static void
 515artpec6_crypto_init_dma_operation(struct artpec6_crypto_req_common *common)
 516{
 517	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 518
 519	dma->out_cnt = 0;
 520	dma->in_cnt = 0;
 521	dma->map_count = 0;
 522	INIT_LIST_HEAD(&dma->bounce_buffers);
 523}
 524
 525static bool fault_inject_dma_descr(void)
 526{
 527#ifdef CONFIG_FAULT_INJECTION
 528	return should_fail(&artpec6_crypto_fail_dma_array_full, 1);
 529#else
 530	return false;
 531#endif
 532}
 533
 534/** artpec6_crypto_setup_out_descr_phys - Setup an out channel with a
 535 *                                        physical address
 536 *
 537 * @addr: The physical address of the data buffer
 538 * @len:  The length of the data buffer
 539 * @eop:  True if this is the last buffer in the packet
 540 *
 541 * @return 0 on success or -ENOSPC if there are no more descriptors available
 542 */
 543static int
 544artpec6_crypto_setup_out_descr_phys(struct artpec6_crypto_req_common *common,
 545				    dma_addr_t addr, size_t len, bool eop)
 546{
 547	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 548	struct pdma_descr *d;
 549
 550	if (dma->out_cnt >= PDMA_DESCR_COUNT ||
 551	    fault_inject_dma_descr()) {
 552		pr_err("No free OUT DMA descriptors available!\n");
 553		return -ENOSPC;
 554	}
 555
 556	d = &dma->out[dma->out_cnt++];
 557	memset(d, 0, sizeof(*d));
 558
 559	d->ctrl.short_descr = 0;
 560	d->ctrl.eop = eop;
 561	d->data.len = len;
 562	d->data.buf = addr;
 563	return 0;
 564}
 565
 566/** artpec6_crypto_setup_out_descr_short - Setup a short out descriptor
 567 *
 568 * @dst: The virtual address of the data
 569 * @len: The length of the data, must be between 1 to 7 bytes
 570 * @eop: True if this is the last buffer in the packet
 571 *
 572 * @return 0 on success
 573 *	-ENOSPC if no more descriptors are available
 574 *	-EINVAL if the data length exceeds 7 bytes
 575 */
 576static int
 577artpec6_crypto_setup_out_descr_short(struct artpec6_crypto_req_common *common,
 578				     void *dst, unsigned int len, bool eop)
 579{
 580	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 581	struct pdma_descr *d;
 582
 583	if (dma->out_cnt >= PDMA_DESCR_COUNT ||
 584	    fault_inject_dma_descr()) {
 585		pr_err("No free OUT DMA descriptors available!\n");
 586		return -ENOSPC;
 587	} else if (len > 7 || len < 1) {
 588		return -EINVAL;
 589	}
 590	d = &dma->out[dma->out_cnt++];
 591	memset(d, 0, sizeof(*d));
 592
 593	d->ctrl.short_descr = 1;
 594	d->ctrl.short_len = len;
 595	d->ctrl.eop = eop;
 596	memcpy(d->shrt.data, dst, len);
 597	return 0;
 598}
 599
 600static int artpec6_crypto_dma_map_page(struct artpec6_crypto_req_common *common,
 601				      struct page *page, size_t offset,
 602				      size_t size,
 603				      enum dma_data_direction dir,
 604				      dma_addr_t *dma_addr_out)
 605{
 606	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 607	struct device *dev = artpec6_crypto_dev;
 608	struct artpec6_crypto_dma_map *map;
 609	dma_addr_t dma_addr;
 610
 611	*dma_addr_out = 0;
 612
 613	if (dma->map_count >= ARRAY_SIZE(dma->maps))
 614		return -ENOMEM;
 615
 616	dma_addr = dma_map_page(dev, page, offset, size, dir);
 617	if (dma_mapping_error(dev, dma_addr))
 618		return -ENOMEM;
 619
 620	map = &dma->maps[dma->map_count++];
 621	map->size = size;
 622	map->dma_addr = dma_addr;
 623	map->dir = dir;
 624
 625	*dma_addr_out = dma_addr;
 626
 627	return 0;
 628}
 629
 630static int
 631artpec6_crypto_dma_map_single(struct artpec6_crypto_req_common *common,
 632			      void *ptr, size_t size,
 633			      enum dma_data_direction dir,
 634			      dma_addr_t *dma_addr_out)
 635{
 636	struct page *page = virt_to_page(ptr);
 637	size_t offset = (uintptr_t)ptr & ~PAGE_MASK;
 638
 639	return artpec6_crypto_dma_map_page(common, page, offset, size, dir,
 640					  dma_addr_out);
 641}
 642
 643static int
 644artpec6_crypto_dma_map_descs(struct artpec6_crypto_req_common *common)
 645{
 646	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 647	int ret;
 648
 649	ret = artpec6_crypto_dma_map_single(common, dma->in,
 650				sizeof(dma->in[0]) * dma->in_cnt,
 651				DMA_TO_DEVICE, &dma->in_dma_addr);
 652	if (ret)
 653		return ret;
 654
 655	ret = artpec6_crypto_dma_map_single(common, dma->out,
 656				sizeof(dma->out[0]) * dma->out_cnt,
 657				DMA_TO_DEVICE, &dma->out_dma_addr);
 658	if (ret)
 659		return ret;
 660
 661	/* We only read one stat descriptor */
 662	dma->stat[dma->in_cnt - 1] = 0;
 663
 664	/*
 665	 * DMA_BIDIRECTIONAL since we need our zeroing of the stat descriptor
 666	 * to be written.
 667	 */
 668	return artpec6_crypto_dma_map_single(common,
 669				dma->stat,
 670				sizeof(dma->stat[0]) * dma->in_cnt,
 671				DMA_BIDIRECTIONAL,
 672				&dma->stat_dma_addr);
 673}
 674
 675static void
 676artpec6_crypto_dma_unmap_all(struct artpec6_crypto_req_common *common)
 677{
 678	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 679	struct device *dev = artpec6_crypto_dev;
 680	int i;
 681
 682	for (i = 0; i < dma->map_count; i++) {
 683		struct artpec6_crypto_dma_map *map = &dma->maps[i];
 684
 685		dma_unmap_page(dev, map->dma_addr, map->size, map->dir);
 686	}
 687
 688	dma->map_count = 0;
 689}
 690
 691/** artpec6_crypto_setup_out_descr - Setup an out descriptor
 692 *
 693 * @dst: The virtual address of the data
 694 * @len: The length of the data
 695 * @eop: True if this is the last buffer in the packet
 696 * @use_short: If this is true and the data length is 7 bytes or less then
 697 *	a short descriptor will be used
 698 *
 699 * @return 0 on success
 700 *	Any errors from artpec6_crypto_setup_out_descr_short() or
 701 *	setup_out_descr_phys()
 702 */
 703static int
 704artpec6_crypto_setup_out_descr(struct artpec6_crypto_req_common *common,
 705			       void *dst, unsigned int len, bool eop,
 706			       bool use_short)
 707{
 708	if (use_short && len < 7) {
 709		return artpec6_crypto_setup_out_descr_short(common, dst, len,
 710							    eop);
 711	} else {
 712		int ret;
 713		dma_addr_t dma_addr;
 714
 715		ret = artpec6_crypto_dma_map_single(common, dst, len,
 716						   DMA_TO_DEVICE,
 717						   &dma_addr);
 718		if (ret)
 719			return ret;
 720
 721		return artpec6_crypto_setup_out_descr_phys(common, dma_addr,
 722							   len, eop);
 723	}
 724}
 725
 726/** artpec6_crypto_setup_in_descr_phys - Setup an in channel with a
 727 *                                       physical address
 728 *
 729 * @addr: The physical address of the data buffer
 730 * @len:  The length of the data buffer
 731 * @intr: True if an interrupt should be fired after HW processing of this
 732 *	  descriptor
 733 *
 734 */
 735static int
 736artpec6_crypto_setup_in_descr_phys(struct artpec6_crypto_req_common *common,
 737			       dma_addr_t addr, unsigned int len, bool intr)
 738{
 739	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 740	struct pdma_descr *d;
 741
 742	if (dma->in_cnt >= PDMA_DESCR_COUNT ||
 743	    fault_inject_dma_descr()) {
 744		pr_err("No free IN DMA descriptors available!\n");
 745		return -ENOSPC;
 746	}
 747	d = &dma->in[dma->in_cnt++];
 748	memset(d, 0, sizeof(*d));
 749
 750	d->ctrl.intr = intr;
 751	d->data.len = len;
 752	d->data.buf = addr;
 753	return 0;
 754}
 755
 756/** artpec6_crypto_setup_in_descr - Setup an in channel descriptor
 757 *
 758 * @buffer: The virtual address to of the data buffer
 759 * @len:    The length of the data buffer
 760 * @last:   If this is the last data buffer in the request (i.e. an interrupt
 761 *	    is needed
 762 *
 763 * Short descriptors are not used for the in channel
 764 */
 765static int
 766artpec6_crypto_setup_in_descr(struct artpec6_crypto_req_common *common,
 767			  void *buffer, unsigned int len, bool last)
 768{
 769	dma_addr_t dma_addr;
 770	int ret;
 771
 772	ret = artpec6_crypto_dma_map_single(common, buffer, len,
 773					   DMA_FROM_DEVICE, &dma_addr);
 774	if (ret)
 775		return ret;
 776
 777	return artpec6_crypto_setup_in_descr_phys(common, dma_addr, len, last);
 778}
 779
 780static struct artpec6_crypto_bounce_buffer *
 781artpec6_crypto_alloc_bounce(gfp_t flags)
 782{
 783	void *base;
 784	size_t alloc_size = sizeof(struct artpec6_crypto_bounce_buffer) +
 785			    2 * ARTPEC_CACHE_LINE_MAX;
 786	struct artpec6_crypto_bounce_buffer *bbuf = kzalloc(alloc_size, flags);
 787
 788	if (!bbuf)
 789		return NULL;
 790
 791	base = bbuf + 1;
 792	bbuf->buf = PTR_ALIGN(base, ARTPEC_CACHE_LINE_MAX);
 793	return bbuf;
 794}
 795
 796static int setup_bounce_buffer_in(struct artpec6_crypto_req_common *common,
 797				  struct artpec6_crypto_walk *walk, size_t size)
 798{
 799	struct artpec6_crypto_bounce_buffer *bbuf;
 800	int ret;
 801
 802	bbuf = artpec6_crypto_alloc_bounce(common->gfp_flags);
 803	if (!bbuf)
 804		return -ENOMEM;
 805
 806	bbuf->length = size;
 807	bbuf->sg = walk->sg;
 808	bbuf->offset = walk->offset;
 809
 810	ret =  artpec6_crypto_setup_in_descr(common, bbuf->buf, size, false);
 811	if (ret) {
 812		kfree(bbuf);
 813		return ret;
 814	}
 815
 816	pr_debug("BOUNCE %zu offset %zu\n", size, walk->offset);
 817	list_add_tail(&bbuf->list, &common->dma->bounce_buffers);
 818	return 0;
 819}
 820
 821static int
 822artpec6_crypto_setup_sg_descrs_in(struct artpec6_crypto_req_common *common,
 823				  struct artpec6_crypto_walk *walk,
 824				  size_t count)
 825{
 826	size_t chunk;
 827	int ret;
 828	dma_addr_t addr;
 829
 830	while (walk->sg && count) {
 831		chunk = min(count, artpec6_crypto_walk_chunklen(walk));
 832		addr = artpec6_crypto_walk_chunk_phys(walk);
 833
 834		/* When destination buffers are not aligned to the cache line
 835		 * size we need bounce buffers. The DMA-API requires that the
 836		 * entire line is owned by the DMA buffer and this holds also
 837		 * for the case when coherent DMA is used.
 838		 */
 839		if (!IS_ALIGNED(addr, ARTPEC_CACHE_LINE_MAX)) {
 840			chunk = min_t(dma_addr_t, chunk,
 841				      ALIGN(addr, ARTPEC_CACHE_LINE_MAX) -
 842				      addr);
 843
 844			pr_debug("CHUNK-b %pad:%zu\n", &addr, chunk);
 845			ret = setup_bounce_buffer_in(common, walk, chunk);
 846		} else if (chunk < ARTPEC_CACHE_LINE_MAX) {
 847			pr_debug("CHUNK-b %pad:%zu\n", &addr, chunk);
 848			ret = setup_bounce_buffer_in(common, walk, chunk);
 849		} else {
 850			dma_addr_t dma_addr;
 851
 852			chunk = chunk & ~(ARTPEC_CACHE_LINE_MAX-1);
 853
 854			pr_debug("CHUNK %pad:%zu\n", &addr, chunk);
 855
 856			ret = artpec6_crypto_dma_map_page(common,
 857							 sg_page(walk->sg),
 858							 walk->sg->offset +
 859							 walk->offset,
 860							 chunk,
 861							 DMA_FROM_DEVICE,
 862							 &dma_addr);
 863			if (ret)
 864				return ret;
 865
 866			ret = artpec6_crypto_setup_in_descr_phys(common,
 867								 dma_addr,
 868								 chunk, false);
 869		}
 870
 871		if (ret)
 872			return ret;
 873
 874		count = count - chunk;
 875		artpec6_crypto_walk_advance(walk, chunk);
 876	}
 877
 878	if (count)
 879		pr_err("EOL unexpected %zu bytes left\n", count);
 880
 881	return count ? -EINVAL : 0;
 882}
 883
 884static int
 885artpec6_crypto_setup_sg_descrs_out(struct artpec6_crypto_req_common *common,
 886				   struct artpec6_crypto_walk *walk,
 887				   size_t count)
 888{
 889	size_t chunk;
 890	int ret;
 891	dma_addr_t addr;
 892
 893	while (walk->sg && count) {
 894		chunk = min(count, artpec6_crypto_walk_chunklen(walk));
 895		addr = artpec6_crypto_walk_chunk_phys(walk);
 896
 897		pr_debug("OUT-CHUNK %pad:%zu\n", &addr, chunk);
 898
 899		if (addr & 3) {
 900			char buf[3];
 901
 902			chunk = min_t(size_t, chunk, (4-(addr&3)));
 903
 904			sg_pcopy_to_buffer(walk->sg, 1, buf, chunk,
 905					   walk->offset);
 906
 907			ret = artpec6_crypto_setup_out_descr_short(common, buf,
 908								   chunk,
 909								   false);
 910		} else {
 911			dma_addr_t dma_addr;
 912
 913			ret = artpec6_crypto_dma_map_page(common,
 914							 sg_page(walk->sg),
 915							 walk->sg->offset +
 916							 walk->offset,
 917							 chunk,
 918							 DMA_TO_DEVICE,
 919							 &dma_addr);
 920			if (ret)
 921				return ret;
 922
 923			ret = artpec6_crypto_setup_out_descr_phys(common,
 924								 dma_addr,
 925								 chunk, false);
 926		}
 927
 928		if (ret)
 929			return ret;
 930
 931		count = count - chunk;
 932		artpec6_crypto_walk_advance(walk, chunk);
 933	}
 934
 935	if (count)
 936		pr_err("EOL unexpected %zu bytes left\n", count);
 937
 938	return count ? -EINVAL : 0;
 939}
 940
 941
 942/** artpec6_crypto_terminate_out_descrs - Set the EOP on the last out descriptor
 943 *
 944 * If the out descriptor list is non-empty, then the eop flag on the
 945 * last used out descriptor will be set.
 946 *
 947 * @return  0 on success
 948 *	-EINVAL if the out descriptor is empty or has overflown
 949 */
 950static int
 951artpec6_crypto_terminate_out_descrs(struct artpec6_crypto_req_common *common)
 952{
 953	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 954	struct pdma_descr *d;
 955
 956	if (!dma->out_cnt || dma->out_cnt > PDMA_DESCR_COUNT) {
 957		pr_err("%s: OUT descriptor list is %s\n",
 958			MODULE_NAME, dma->out_cnt ? "empty" : "full");
 959		return -EINVAL;
 960
 961	}
 962
 963	d = &dma->out[dma->out_cnt-1];
 964	d->ctrl.eop = 1;
 965
 966	return 0;
 967}
 968
 969/** artpec6_crypto_terminate_in_descrs - Set the interrupt flag on the last
 970 *                                       in descriptor
 971 *
 972 * See artpec6_crypto_terminate_out_descrs() for return values
 973 */
 974static int
 975artpec6_crypto_terminate_in_descrs(struct artpec6_crypto_req_common *common)
 976{
 977	struct artpec6_crypto_dma_descriptors *dma = common->dma;
 978	struct pdma_descr *d;
 979
 980	if (!dma->in_cnt || dma->in_cnt > PDMA_DESCR_COUNT) {
 981		pr_err("%s: IN descriptor list is %s\n",
 982			MODULE_NAME, dma->in_cnt ? "empty" : "full");
 983		return -EINVAL;
 984	}
 985
 986	d = &dma->in[dma->in_cnt-1];
 987	d->ctrl.intr = 1;
 988	return 0;
 989}
 990
 991/** create_hash_pad - Create a Secure Hash conformant pad
 992 *
 993 * @dst:      The destination buffer to write the pad. Must be at least 64 bytes
 994 * @dgstlen:  The total length of the hash digest in bytes
 995 * @bitcount: The total length of the digest in bits
 996 *
 997 * @return The total number of padding bytes written to @dst
 998 */
 999static size_t
1000create_hash_pad(int oper, unsigned char *dst, u64 dgstlen, u64 bitcount)
1001{
1002	unsigned int mod, target, diff, pad_bytes, size_bytes;
1003	__be64 bits = __cpu_to_be64(bitcount);
1004
1005	switch (oper) {
1006	case regk_crypto_sha1:
1007	case regk_crypto_sha256:
1008	case regk_crypto_hmac_sha1:
1009	case regk_crypto_hmac_sha256:
1010		target = 448 / 8;
1011		mod = 512 / 8;
1012		size_bytes = 8;
1013		break;
1014	default:
1015		target = 896 / 8;
1016		mod = 1024 / 8;
1017		size_bytes = 16;
1018		break;
1019	}
1020
1021	target -= 1;
1022	diff = dgstlen & (mod - 1);
1023	pad_bytes = diff > target ? target + mod - diff : target - diff;
1024
1025	memset(dst + 1, 0, pad_bytes);
1026	dst[0] = 0x80;
1027
1028	if (size_bytes == 16) {
1029		memset(dst + 1 + pad_bytes, 0, 8);
1030		memcpy(dst + 1 + pad_bytes + 8, &bits, 8);
1031	} else {
1032		memcpy(dst + 1 + pad_bytes, &bits, 8);
1033	}
1034
1035	return pad_bytes + size_bytes + 1;
1036}
1037
1038static int artpec6_crypto_common_init(struct artpec6_crypto_req_common *common,
1039		struct crypto_async_request *parent,
1040		void (*complete)(struct crypto_async_request *req),
1041		struct scatterlist *dstsg, unsigned int nbytes)
1042{
1043	gfp_t flags;
1044	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1045
1046	flags = (parent->flags & CRYPTO_TFM_REQ_MAY_SLEEP) ?
1047		 GFP_KERNEL : GFP_ATOMIC;
1048
1049	common->gfp_flags = flags;
1050	common->dma = kmem_cache_alloc(ac->dma_cache, flags);
1051	if (!common->dma)
1052		return -ENOMEM;
1053
1054	common->req = parent;
1055	common->complete = complete;
1056	return 0;
1057}
1058
1059static void
1060artpec6_crypto_bounce_destroy(struct artpec6_crypto_dma_descriptors *dma)
1061{
1062	struct artpec6_crypto_bounce_buffer *b;
1063	struct artpec6_crypto_bounce_buffer *next;
1064
1065	list_for_each_entry_safe(b, next, &dma->bounce_buffers, list) {
1066		kfree(b);
1067	}
1068}
1069
1070static int
1071artpec6_crypto_common_destroy(struct artpec6_crypto_req_common *common)
1072{
1073	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1074
1075	artpec6_crypto_dma_unmap_all(common);
1076	artpec6_crypto_bounce_destroy(common->dma);
1077	kmem_cache_free(ac->dma_cache, common->dma);
1078	common->dma = NULL;
1079	return 0;
1080}
1081
1082/*
1083 * Ciphering functions.
1084 */
1085static int artpec6_crypto_encrypt(struct skcipher_request *req)
1086{
1087	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(req);
1088	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1089	struct artpec6_crypto_request_context *req_ctx = NULL;
1090	void (*complete)(struct crypto_async_request *req);
1091	int ret;
1092
1093	req_ctx = skcipher_request_ctx(req);
1094
1095	switch (ctx->crypto_type) {
1096	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1097	case ARTPEC6_CRYPTO_CIPHER_AES_ECB:
1098	case ARTPEC6_CRYPTO_CIPHER_AES_XTS:
1099		req_ctx->decrypt = 0;
1100		break;
1101	default:
1102		break;
1103	}
1104
1105	switch (ctx->crypto_type) {
1106	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1107		complete = artpec6_crypto_complete_cbc_encrypt;
1108		break;
1109	default:
1110		complete = artpec6_crypto_complete_crypto;
1111		break;
1112	}
1113
1114	ret = artpec6_crypto_common_init(&req_ctx->common,
1115				  &req->base,
1116				  complete,
1117				  req->dst, req->cryptlen);
1118	if (ret)
1119		return ret;
1120
1121	ret = artpec6_crypto_prepare_crypto(req);
1122	if (ret) {
1123		artpec6_crypto_common_destroy(&req_ctx->common);
1124		return ret;
1125	}
1126
1127	return artpec6_crypto_submit(&req_ctx->common);
1128}
1129
1130static int artpec6_crypto_decrypt(struct skcipher_request *req)
1131{
1132	int ret;
1133	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(req);
1134	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1135	struct artpec6_crypto_request_context *req_ctx = NULL;
1136	void (*complete)(struct crypto_async_request *req);
1137
1138	req_ctx = skcipher_request_ctx(req);
1139
1140	switch (ctx->crypto_type) {
1141	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1142	case ARTPEC6_CRYPTO_CIPHER_AES_ECB:
1143	case ARTPEC6_CRYPTO_CIPHER_AES_XTS:
1144		req_ctx->decrypt = 1;
1145		break;
1146	default:
1147		break;
1148	}
1149
1150
1151	switch (ctx->crypto_type) {
1152	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1153		complete = artpec6_crypto_complete_cbc_decrypt;
1154		break;
1155	default:
1156		complete = artpec6_crypto_complete_crypto;
1157		break;
1158	}
1159
1160	ret = artpec6_crypto_common_init(&req_ctx->common, &req->base,
1161				  complete,
1162				  req->dst, req->cryptlen);
1163	if (ret)
1164		return ret;
1165
1166	ret = artpec6_crypto_prepare_crypto(req);
1167	if (ret) {
1168		artpec6_crypto_common_destroy(&req_ctx->common);
1169		return ret;
1170	}
1171
1172	return artpec6_crypto_submit(&req_ctx->common);
1173}
1174
1175static int
1176artpec6_crypto_ctr_crypt(struct skcipher_request *req, bool encrypt)
1177{
1178	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(req);
1179	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1180	size_t iv_len = crypto_skcipher_ivsize(cipher);
1181	unsigned int counter = be32_to_cpup((__be32 *)
1182					    (req->iv + iv_len - 4));
1183	unsigned int nblks = ALIGN(req->cryptlen, AES_BLOCK_SIZE) /
1184			     AES_BLOCK_SIZE;
1185
1186	/*
1187	 * The hardware uses only the last 32-bits as the counter while the
1188	 * kernel tests (aes_ctr_enc_tv_template[4] for example) expect that
1189	 * the whole IV is a counter.  So fallback if the counter is going to
1190	 * overlow.
1191	 */
1192	if (counter + nblks < counter) {
1193		int ret;
1194
1195		pr_debug("counter %x will overflow (nblks %u), falling back\n",
1196			 counter, counter + nblks);
1197
1198		ret = crypto_sync_skcipher_setkey(ctx->fallback, ctx->aes_key,
1199						  ctx->key_length);
1200		if (ret)
1201			return ret;
1202
1203		{
1204			SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, ctx->fallback);
1205
1206			skcipher_request_set_sync_tfm(subreq, ctx->fallback);
1207			skcipher_request_set_callback(subreq, req->base.flags,
1208						      NULL, NULL);
1209			skcipher_request_set_crypt(subreq, req->src, req->dst,
1210						   req->cryptlen, req->iv);
1211			ret = encrypt ? crypto_skcipher_encrypt(subreq)
1212				      : crypto_skcipher_decrypt(subreq);
1213			skcipher_request_zero(subreq);
1214		}
1215		return ret;
1216	}
1217
1218	return encrypt ? artpec6_crypto_encrypt(req)
1219		       : artpec6_crypto_decrypt(req);
1220}
1221
1222static int artpec6_crypto_ctr_encrypt(struct skcipher_request *req)
1223{
1224	return artpec6_crypto_ctr_crypt(req, true);
1225}
1226
1227static int artpec6_crypto_ctr_decrypt(struct skcipher_request *req)
1228{
1229	return artpec6_crypto_ctr_crypt(req, false);
1230}
1231
1232/*
1233 * AEAD functions
1234 */
1235static int artpec6_crypto_aead_init(struct crypto_aead *tfm)
1236{
1237	struct artpec6_cryptotfm_context *tfm_ctx = crypto_aead_ctx(tfm);
1238
1239	memset(tfm_ctx, 0, sizeof(*tfm_ctx));
1240
1241	crypto_aead_set_reqsize(tfm,
1242				sizeof(struct artpec6_crypto_aead_req_ctx));
1243
1244	return 0;
1245}
1246
1247static int artpec6_crypto_aead_set_key(struct crypto_aead *tfm, const u8 *key,
1248			       unsigned int len)
1249{
1250	struct artpec6_cryptotfm_context *ctx = crypto_tfm_ctx(&tfm->base);
1251
1252	if (len != 16 && len != 24 && len != 32)
1253		return -EINVAL;
1254
1255	ctx->key_length = len;
1256
1257	memcpy(ctx->aes_key, key, len);
1258	return 0;
1259}
1260
1261static int artpec6_crypto_aead_encrypt(struct aead_request *req)
1262{
1263	int ret;
1264	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(req);
1265
1266	req_ctx->decrypt = false;
1267	ret = artpec6_crypto_common_init(&req_ctx->common, &req->base,
1268				  artpec6_crypto_complete_aead,
1269				  NULL, 0);
1270	if (ret)
1271		return ret;
1272
1273	ret = artpec6_crypto_prepare_aead(req);
1274	if (ret) {
1275		artpec6_crypto_common_destroy(&req_ctx->common);
1276		return ret;
1277	}
1278
1279	return artpec6_crypto_submit(&req_ctx->common);
1280}
1281
1282static int artpec6_crypto_aead_decrypt(struct aead_request *req)
1283{
1284	int ret;
1285	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(req);
1286
1287	req_ctx->decrypt = true;
1288	if (req->cryptlen < AES_BLOCK_SIZE)
1289		return -EINVAL;
1290
1291	ret = artpec6_crypto_common_init(&req_ctx->common,
1292				  &req->base,
1293				  artpec6_crypto_complete_aead,
1294				  NULL, 0);
1295	if (ret)
1296		return ret;
1297
1298	ret = artpec6_crypto_prepare_aead(req);
1299	if (ret) {
1300		artpec6_crypto_common_destroy(&req_ctx->common);
1301		return ret;
1302	}
1303
1304	return artpec6_crypto_submit(&req_ctx->common);
1305}
1306
1307static int artpec6_crypto_prepare_hash(struct ahash_request *areq)
1308{
1309	struct artpec6_hashalg_context *ctx = crypto_tfm_ctx(areq->base.tfm);
1310	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(areq);
1311	size_t digestsize = crypto_ahash_digestsize(crypto_ahash_reqtfm(areq));
1312	size_t contextsize = digestsize;
1313	size_t blocksize = crypto_tfm_alg_blocksize(
1314		crypto_ahash_tfm(crypto_ahash_reqtfm(areq)));
1315	struct artpec6_crypto_req_common *common = &req_ctx->common;
1316	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1317	enum artpec6_crypto_variant variant = ac->variant;
1318	u32 sel_ctx;
1319	bool ext_ctx = false;
1320	bool run_hw = false;
1321	int error = 0;
1322
1323	artpec6_crypto_init_dma_operation(common);
1324
1325	/* Upload HMAC key, must be first the first packet */
1326	if (req_ctx->hash_flags & HASH_FLAG_HMAC) {
1327		if (variant == ARTPEC6_CRYPTO) {
1328			req_ctx->key_md = FIELD_PREP(A6_CRY_MD_OPER,
1329						     a6_regk_crypto_dlkey);
1330		} else {
1331			req_ctx->key_md = FIELD_PREP(A7_CRY_MD_OPER,
1332						     a7_regk_crypto_dlkey);
1333		}
1334
1335		/* Copy and pad up the key */
1336		memcpy(req_ctx->key_buffer, ctx->hmac_key,
1337		       ctx->hmac_key_length);
1338		memset(req_ctx->key_buffer + ctx->hmac_key_length, 0,
1339		       blocksize - ctx->hmac_key_length);
1340
1341		error = artpec6_crypto_setup_out_descr(common,
1342					(void *)&req_ctx->key_md,
1343					sizeof(req_ctx->key_md), false, false);
1344		if (error)
1345			return error;
1346
1347		error = artpec6_crypto_setup_out_descr(common,
1348					req_ctx->key_buffer, blocksize,
1349					true, false);
1350		if (error)
1351			return error;
1352	}
1353
1354	if (!(req_ctx->hash_flags & HASH_FLAG_INIT_CTX)) {
1355		/* Restore context */
1356		sel_ctx = regk_crypto_ext;
1357		ext_ctx = true;
1358	} else {
1359		sel_ctx = regk_crypto_init;
1360	}
1361
1362	if (variant == ARTPEC6_CRYPTO) {
1363		req_ctx->hash_md &= ~A6_CRY_MD_HASH_SEL_CTX;
1364		req_ctx->hash_md |= FIELD_PREP(A6_CRY_MD_HASH_SEL_CTX, sel_ctx);
1365
1366		/* If this is the final round, set the final flag */
1367		if (req_ctx->hash_flags & HASH_FLAG_FINALIZE)
1368			req_ctx->hash_md |= A6_CRY_MD_HASH_HMAC_FIN;
1369	} else {
1370		req_ctx->hash_md &= ~A7_CRY_MD_HASH_SEL_CTX;
1371		req_ctx->hash_md |= FIELD_PREP(A7_CRY_MD_HASH_SEL_CTX, sel_ctx);
1372
1373		/* If this is the final round, set the final flag */
1374		if (req_ctx->hash_flags & HASH_FLAG_FINALIZE)
1375			req_ctx->hash_md |= A7_CRY_MD_HASH_HMAC_FIN;
1376	}
1377
1378	/* Setup up metadata descriptors */
1379	error = artpec6_crypto_setup_out_descr(common,
1380				(void *)&req_ctx->hash_md,
1381				sizeof(req_ctx->hash_md), false, false);
1382	if (error)
1383		return error;
1384
1385	error = artpec6_crypto_setup_in_descr(common, ac->pad_buffer, 4, false);
1386	if (error)
1387		return error;
1388
1389	if (ext_ctx) {
1390		error = artpec6_crypto_setup_out_descr(common,
1391					req_ctx->digeststate,
1392					contextsize, false, false);
1393
1394		if (error)
1395			return error;
1396	}
1397
1398	if (req_ctx->hash_flags & HASH_FLAG_UPDATE) {
1399		size_t done_bytes = 0;
1400		size_t total_bytes = areq->nbytes + req_ctx->partial_bytes;
1401		size_t ready_bytes = round_down(total_bytes, blocksize);
1402		struct artpec6_crypto_walk walk;
1403
1404		run_hw = ready_bytes > 0;
1405		if (req_ctx->partial_bytes && ready_bytes) {
1406			/* We have a partial buffer and will at least some bytes
1407			 * to the HW. Empty this partial buffer before tackling
1408			 * the SG lists
1409			 */
1410			memcpy(req_ctx->partial_buffer_out,
1411				req_ctx->partial_buffer,
1412				req_ctx->partial_bytes);
1413
1414			error = artpec6_crypto_setup_out_descr(common,
1415						req_ctx->partial_buffer_out,
1416						req_ctx->partial_bytes,
1417						false, true);
1418			if (error)
1419				return error;
1420
1421			/* Reset partial buffer */
1422			done_bytes += req_ctx->partial_bytes;
1423			req_ctx->partial_bytes = 0;
1424		}
1425
1426		artpec6_crypto_walk_init(&walk, areq->src);
1427
1428		error = artpec6_crypto_setup_sg_descrs_out(common, &walk,
1429							   ready_bytes -
1430							   done_bytes);
1431		if (error)
1432			return error;
1433
1434		if (walk.sg) {
1435			size_t sg_skip = ready_bytes - done_bytes;
1436			size_t sg_rem = areq->nbytes - sg_skip;
1437
1438			sg_pcopy_to_buffer(areq->src, sg_nents(areq->src),
1439					   req_ctx->partial_buffer +
1440					   req_ctx->partial_bytes,
1441					   sg_rem, sg_skip);
1442
1443			req_ctx->partial_bytes += sg_rem;
1444		}
1445
1446		req_ctx->digcnt += ready_bytes;
1447		req_ctx->hash_flags &= ~(HASH_FLAG_UPDATE);
1448	}
1449
1450	/* Finalize */
1451	if (req_ctx->hash_flags & HASH_FLAG_FINALIZE) {
1452		size_t hash_pad_len;
1453		u64 digest_bits;
1454		u32 oper;
1455
1456		if (variant == ARTPEC6_CRYPTO)
1457			oper = FIELD_GET(A6_CRY_MD_OPER, req_ctx->hash_md);
1458		else
1459			oper = FIELD_GET(A7_CRY_MD_OPER, req_ctx->hash_md);
1460
1461		/* Write out the partial buffer if present */
1462		if (req_ctx->partial_bytes) {
1463			memcpy(req_ctx->partial_buffer_out,
1464			       req_ctx->partial_buffer,
1465			       req_ctx->partial_bytes);
1466			error = artpec6_crypto_setup_out_descr(common,
1467						req_ctx->partial_buffer_out,
1468						req_ctx->partial_bytes,
1469						false, true);
1470			if (error)
1471				return error;
1472
1473			req_ctx->digcnt += req_ctx->partial_bytes;
1474			req_ctx->partial_bytes = 0;
1475		}
1476
1477		if (req_ctx->hash_flags & HASH_FLAG_HMAC)
1478			digest_bits = 8 * (req_ctx->digcnt + blocksize);
1479		else
1480			digest_bits = 8 * req_ctx->digcnt;
1481
1482		/* Add the hash pad */
1483		hash_pad_len = create_hash_pad(oper, req_ctx->pad_buffer,
1484					       req_ctx->digcnt, digest_bits);
1485		error = artpec6_crypto_setup_out_descr(common,
1486						      req_ctx->pad_buffer,
1487						      hash_pad_len, false,
1488						      true);
1489		req_ctx->digcnt = 0;
1490
1491		if (error)
1492			return error;
1493
1494		/* Descriptor for the final result */
1495		error = artpec6_crypto_setup_in_descr(common, areq->result,
1496						      digestsize,
1497						      true);
1498		if (error)
1499			return error;
1500
1501	} else { /* This is not the final operation for this request */
1502		if (!run_hw)
1503			return ARTPEC6_CRYPTO_PREPARE_HASH_NO_START;
1504
1505		/* Save the result to the context */
1506		error = artpec6_crypto_setup_in_descr(common,
1507						      req_ctx->digeststate,
1508						      contextsize, false);
1509		if (error)
1510			return error;
1511		/* fall through */
1512	}
1513
1514	req_ctx->hash_flags &= ~(HASH_FLAG_INIT_CTX | HASH_FLAG_UPDATE |
1515				 HASH_FLAG_FINALIZE);
1516
1517	error = artpec6_crypto_terminate_in_descrs(common);
1518	if (error)
1519		return error;
1520
1521	error = artpec6_crypto_terminate_out_descrs(common);
1522	if (error)
1523		return error;
1524
1525	error = artpec6_crypto_dma_map_descs(common);
1526	if (error)
1527		return error;
1528
1529	return ARTPEC6_CRYPTO_PREPARE_HASH_START;
1530}
1531
1532
1533static int artpec6_crypto_aes_ecb_init(struct crypto_skcipher *tfm)
1534{
1535	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1536
1537	tfm->reqsize = sizeof(struct artpec6_crypto_request_context);
 
1538	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_ECB;
1539
1540	return 0;
1541}
1542
1543static int artpec6_crypto_aes_ctr_init(struct crypto_skcipher *tfm)
1544{
1545	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1546
1547	ctx->fallback =
1548		crypto_alloc_sync_skcipher(crypto_tfm_alg_name(&tfm->base),
1549					   0, CRYPTO_ALG_NEED_FALLBACK);
1550	if (IS_ERR(ctx->fallback))
1551		return PTR_ERR(ctx->fallback);
1552
1553	tfm->reqsize = sizeof(struct artpec6_crypto_request_context);
 
1554	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_CTR;
1555
1556	return 0;
1557}
1558
1559static int artpec6_crypto_aes_cbc_init(struct crypto_skcipher *tfm)
1560{
1561	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1562
1563	tfm->reqsize = sizeof(struct artpec6_crypto_request_context);
 
1564	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_CBC;
1565
1566	return 0;
1567}
1568
1569static int artpec6_crypto_aes_xts_init(struct crypto_skcipher *tfm)
1570{
1571	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1572
1573	tfm->reqsize = sizeof(struct artpec6_crypto_request_context);
 
1574	ctx->crypto_type = ARTPEC6_CRYPTO_CIPHER_AES_XTS;
1575
1576	return 0;
1577}
1578
1579static void artpec6_crypto_aes_exit(struct crypto_skcipher *tfm)
1580{
1581	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1582
1583	memset(ctx, 0, sizeof(*ctx));
1584}
1585
1586static void artpec6_crypto_aes_ctr_exit(struct crypto_skcipher *tfm)
1587{
1588	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(tfm);
1589
1590	crypto_free_sync_skcipher(ctx->fallback);
1591	artpec6_crypto_aes_exit(tfm);
1592}
1593
1594static int
1595artpec6_crypto_cipher_set_key(struct crypto_skcipher *cipher, const u8 *key,
1596			      unsigned int keylen)
1597{
1598	struct artpec6_cryptotfm_context *ctx =
1599		crypto_skcipher_ctx(cipher);
1600
1601	switch (keylen) {
1602	case 16:
1603	case 24:
1604	case 32:
1605		break;
1606	default:
1607		return -EINVAL;
1608	}
1609
1610	memcpy(ctx->aes_key, key, keylen);
1611	ctx->key_length = keylen;
1612	return 0;
1613}
1614
1615static int
1616artpec6_crypto_xts_set_key(struct crypto_skcipher *cipher, const u8 *key,
1617			      unsigned int keylen)
1618{
1619	struct artpec6_cryptotfm_context *ctx =
1620		crypto_skcipher_ctx(cipher);
1621	int ret;
1622
1623	ret = xts_check_key(&cipher->base, key, keylen);
1624	if (ret)
1625		return ret;
1626
1627	switch (keylen) {
1628	case 32:
1629	case 48:
1630	case 64:
1631		break;
1632	default:
1633		return -EINVAL;
1634	}
1635
1636	memcpy(ctx->aes_key, key, keylen);
1637	ctx->key_length = keylen;
1638	return 0;
1639}
1640
1641/** artpec6_crypto_process_crypto - Prepare an async block cipher crypto request
1642 *
1643 * @req: The asynch request to process
1644 *
1645 * @return 0 if the dma job was successfully prepared
1646 *	  <0 on error
1647 *
1648 * This function sets up the PDMA descriptors for a block cipher request.
1649 *
1650 * The required padding is added for AES-CTR using a statically defined
1651 * buffer.
1652 *
1653 * The PDMA descriptor list will be as follows:
1654 *
1655 * OUT: [KEY_MD][KEY][EOP]<CIPHER_MD>[IV]<data_0>...[data_n][AES-CTR_pad]<eop>
1656 * IN:  <CIPHER_MD><data_0>...[data_n]<intr>
1657 *
1658 */
1659static int artpec6_crypto_prepare_crypto(struct skcipher_request *areq)
1660{
1661	int ret;
1662	struct artpec6_crypto_walk walk;
1663	struct crypto_skcipher *cipher = crypto_skcipher_reqtfm(areq);
1664	struct artpec6_cryptotfm_context *ctx = crypto_skcipher_ctx(cipher);
1665	struct artpec6_crypto_request_context *req_ctx = NULL;
1666	size_t iv_len = crypto_skcipher_ivsize(cipher);
1667	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1668	enum artpec6_crypto_variant variant = ac->variant;
1669	struct artpec6_crypto_req_common *common;
1670	bool cipher_decr = false;
1671	size_t cipher_klen;
1672	u32 cipher_len = 0; /* Same as regk_crypto_key_128 for NULL crypto */
1673	u32 oper;
1674
1675	req_ctx = skcipher_request_ctx(areq);
1676	common = &req_ctx->common;
1677
1678	artpec6_crypto_init_dma_operation(common);
1679
1680	if (variant == ARTPEC6_CRYPTO)
1681		ctx->key_md = FIELD_PREP(A6_CRY_MD_OPER, a6_regk_crypto_dlkey);
1682	else
1683		ctx->key_md = FIELD_PREP(A7_CRY_MD_OPER, a7_regk_crypto_dlkey);
1684
1685	ret = artpec6_crypto_setup_out_descr(common, (void *)&ctx->key_md,
1686					     sizeof(ctx->key_md), false, false);
1687	if (ret)
1688		return ret;
1689
1690	ret = artpec6_crypto_setup_out_descr(common, ctx->aes_key,
1691					      ctx->key_length, true, false);
1692	if (ret)
1693		return ret;
1694
1695	req_ctx->cipher_md = 0;
1696
1697	if (ctx->crypto_type == ARTPEC6_CRYPTO_CIPHER_AES_XTS)
1698		cipher_klen = ctx->key_length/2;
1699	else
1700		cipher_klen =  ctx->key_length;
1701
1702	/* Metadata */
1703	switch (cipher_klen) {
1704	case 16:
1705		cipher_len = regk_crypto_key_128;
1706		break;
1707	case 24:
1708		cipher_len = regk_crypto_key_192;
1709		break;
1710	case 32:
1711		cipher_len = regk_crypto_key_256;
1712		break;
1713	default:
1714		pr_err("%s: Invalid key length %d!\n",
1715			MODULE_NAME, ctx->key_length);
1716		return -EINVAL;
1717	}
1718
1719	switch (ctx->crypto_type) {
1720	case ARTPEC6_CRYPTO_CIPHER_AES_ECB:
1721		oper = regk_crypto_aes_ecb;
1722		cipher_decr = req_ctx->decrypt;
1723		break;
1724
1725	case ARTPEC6_CRYPTO_CIPHER_AES_CBC:
1726		oper = regk_crypto_aes_cbc;
1727		cipher_decr = req_ctx->decrypt;
1728		break;
1729
1730	case ARTPEC6_CRYPTO_CIPHER_AES_CTR:
1731		oper = regk_crypto_aes_ctr;
1732		cipher_decr = false;
1733		break;
1734
1735	case ARTPEC6_CRYPTO_CIPHER_AES_XTS:
1736		oper = regk_crypto_aes_xts;
1737		cipher_decr = req_ctx->decrypt;
1738
1739		if (variant == ARTPEC6_CRYPTO)
1740			req_ctx->cipher_md |= A6_CRY_MD_CIPHER_DSEQ;
1741		else
1742			req_ctx->cipher_md |= A7_CRY_MD_CIPHER_DSEQ;
1743		break;
1744
1745	default:
1746		pr_err("%s: Invalid cipher mode %d!\n",
1747			MODULE_NAME, ctx->crypto_type);
1748		return -EINVAL;
1749	}
1750
1751	if (variant == ARTPEC6_CRYPTO) {
1752		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_OPER, oper);
1753		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_CIPHER_LEN,
1754						 cipher_len);
1755		if (cipher_decr)
1756			req_ctx->cipher_md |= A6_CRY_MD_CIPHER_DECR;
1757	} else {
1758		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_OPER, oper);
1759		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_CIPHER_LEN,
1760						 cipher_len);
1761		if (cipher_decr)
1762			req_ctx->cipher_md |= A7_CRY_MD_CIPHER_DECR;
1763	}
1764
1765	ret = artpec6_crypto_setup_out_descr(common,
1766					    &req_ctx->cipher_md,
1767					    sizeof(req_ctx->cipher_md),
1768					    false, false);
1769	if (ret)
1770		return ret;
1771
1772	ret = artpec6_crypto_setup_in_descr(common, ac->pad_buffer, 4, false);
1773	if (ret)
1774		return ret;
1775
1776	if (iv_len) {
1777		ret = artpec6_crypto_setup_out_descr(common, areq->iv, iv_len,
1778						     false, false);
1779		if (ret)
1780			return ret;
1781	}
1782	/* Data out */
1783	artpec6_crypto_walk_init(&walk, areq->src);
1784	ret = artpec6_crypto_setup_sg_descrs_out(common, &walk, areq->cryptlen);
1785	if (ret)
1786		return ret;
1787
1788	/* Data in */
1789	artpec6_crypto_walk_init(&walk, areq->dst);
1790	ret = artpec6_crypto_setup_sg_descrs_in(common, &walk, areq->cryptlen);
1791	if (ret)
1792		return ret;
1793
1794	/* CTR-mode padding required by the HW. */
1795	if (ctx->crypto_type == ARTPEC6_CRYPTO_CIPHER_AES_CTR ||
1796	    ctx->crypto_type == ARTPEC6_CRYPTO_CIPHER_AES_XTS) {
1797		size_t pad = ALIGN(areq->cryptlen, AES_BLOCK_SIZE) -
1798			     areq->cryptlen;
1799
1800		if (pad) {
1801			ret = artpec6_crypto_setup_out_descr(common,
1802							     ac->pad_buffer,
1803							     pad, false, false);
1804			if (ret)
1805				return ret;
1806
1807			ret = artpec6_crypto_setup_in_descr(common,
1808							    ac->pad_buffer, pad,
1809							    false);
1810			if (ret)
1811				return ret;
1812		}
1813	}
1814
1815	ret = artpec6_crypto_terminate_out_descrs(common);
1816	if (ret)
1817		return ret;
1818
1819	ret = artpec6_crypto_terminate_in_descrs(common);
1820	if (ret)
1821		return ret;
1822
1823	return artpec6_crypto_dma_map_descs(common);
1824}
1825
1826static int artpec6_crypto_prepare_aead(struct aead_request *areq)
1827{
1828	size_t count;
1829	int ret;
1830	size_t input_length;
1831	struct artpec6_cryptotfm_context *ctx = crypto_tfm_ctx(areq->base.tfm);
1832	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(areq);
1833	struct crypto_aead *cipher = crypto_aead_reqtfm(areq);
1834	struct artpec6_crypto_req_common *common = &req_ctx->common;
1835	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
1836	enum artpec6_crypto_variant variant = ac->variant;
1837	u32 md_cipher_len;
1838
1839	artpec6_crypto_init_dma_operation(common);
1840
1841	/* Key */
1842	if (variant == ARTPEC6_CRYPTO) {
1843		ctx->key_md = FIELD_PREP(A6_CRY_MD_OPER,
1844					 a6_regk_crypto_dlkey);
1845	} else {
1846		ctx->key_md = FIELD_PREP(A7_CRY_MD_OPER,
1847					 a7_regk_crypto_dlkey);
1848	}
1849	ret = artpec6_crypto_setup_out_descr(common, (void *)&ctx->key_md,
1850					     sizeof(ctx->key_md), false, false);
1851	if (ret)
1852		return ret;
1853
1854	ret = artpec6_crypto_setup_out_descr(common, ctx->aes_key,
1855					     ctx->key_length, true, false);
1856	if (ret)
1857		return ret;
1858
1859	req_ctx->cipher_md = 0;
1860
1861	switch (ctx->key_length) {
1862	case 16:
1863		md_cipher_len = regk_crypto_key_128;
1864		break;
1865	case 24:
1866		md_cipher_len = regk_crypto_key_192;
1867		break;
1868	case 32:
1869		md_cipher_len = regk_crypto_key_256;
1870		break;
1871	default:
1872		return -EINVAL;
1873	}
1874
1875	if (variant == ARTPEC6_CRYPTO) {
1876		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_OPER,
1877						 regk_crypto_aes_gcm);
1878		req_ctx->cipher_md |= FIELD_PREP(A6_CRY_MD_CIPHER_LEN,
1879						 md_cipher_len);
1880		if (req_ctx->decrypt)
1881			req_ctx->cipher_md |= A6_CRY_MD_CIPHER_DECR;
1882	} else {
1883		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_OPER,
1884						 regk_crypto_aes_gcm);
1885		req_ctx->cipher_md |= FIELD_PREP(A7_CRY_MD_CIPHER_LEN,
1886						 md_cipher_len);
1887		if (req_ctx->decrypt)
1888			req_ctx->cipher_md |= A7_CRY_MD_CIPHER_DECR;
1889	}
1890
1891	ret = artpec6_crypto_setup_out_descr(common,
1892					    (void *) &req_ctx->cipher_md,
1893					    sizeof(req_ctx->cipher_md), false,
1894					    false);
1895	if (ret)
1896		return ret;
1897
1898	ret = artpec6_crypto_setup_in_descr(common, ac->pad_buffer, 4, false);
1899	if (ret)
1900		return ret;
1901
1902	/* For the decryption, cryptlen includes the tag. */
1903	input_length = areq->cryptlen;
1904	if (req_ctx->decrypt)
1905		input_length -= crypto_aead_authsize(cipher);
1906
1907	/* Prepare the context buffer */
1908	req_ctx->hw_ctx.aad_length_bits =
1909		__cpu_to_be64(8*areq->assoclen);
1910
1911	req_ctx->hw_ctx.text_length_bits =
1912		__cpu_to_be64(8*input_length);
1913
1914	memcpy(req_ctx->hw_ctx.J0, areq->iv, crypto_aead_ivsize(cipher));
1915	// The HW omits the initial increment of the counter field.
1916	memcpy(req_ctx->hw_ctx.J0 + GCM_AES_IV_SIZE, "\x00\x00\x00\x01", 4);
1917
1918	ret = artpec6_crypto_setup_out_descr(common, &req_ctx->hw_ctx,
1919		sizeof(struct artpec6_crypto_aead_hw_ctx), false, false);
1920	if (ret)
1921		return ret;
1922
1923	{
1924		struct artpec6_crypto_walk walk;
1925
1926		artpec6_crypto_walk_init(&walk, areq->src);
1927
1928		/* Associated data */
1929		count = areq->assoclen;
1930		ret = artpec6_crypto_setup_sg_descrs_out(common, &walk, count);
1931		if (ret)
1932			return ret;
1933
1934		if (!IS_ALIGNED(areq->assoclen, 16)) {
1935			size_t assoc_pad = 16 - (areq->assoclen % 16);
1936			/* The HW mandates zero padding here */
1937			ret = artpec6_crypto_setup_out_descr(common,
1938							     ac->zero_buffer,
1939							     assoc_pad, false,
1940							     false);
1941			if (ret)
1942				return ret;
1943		}
1944
1945		/* Data to crypto */
1946		count = input_length;
1947		ret = artpec6_crypto_setup_sg_descrs_out(common, &walk, count);
1948		if (ret)
1949			return ret;
1950
1951		if (!IS_ALIGNED(input_length, 16)) {
1952			size_t crypto_pad = 16 - (input_length % 16);
1953			/* The HW mandates zero padding here */
1954			ret = artpec6_crypto_setup_out_descr(common,
1955							     ac->zero_buffer,
1956							     crypto_pad,
1957							     false,
1958							     false);
1959			if (ret)
1960				return ret;
1961		}
1962	}
1963
1964	/* Data from crypto */
1965	{
1966		struct artpec6_crypto_walk walk;
1967		size_t output_len = areq->cryptlen;
1968
1969		if (req_ctx->decrypt)
1970			output_len -= crypto_aead_authsize(cipher);
1971
1972		artpec6_crypto_walk_init(&walk, areq->dst);
1973
1974		/* skip associated data in the output */
1975		count = artpec6_crypto_walk_advance(&walk, areq->assoclen);
1976		if (count)
1977			return -EINVAL;
1978
1979		count = output_len;
1980		ret = artpec6_crypto_setup_sg_descrs_in(common, &walk, count);
1981		if (ret)
1982			return ret;
1983
1984		/* Put padding between the cryptotext and the auth tag */
1985		if (!IS_ALIGNED(output_len, 16)) {
1986			size_t crypto_pad = 16 - (output_len % 16);
1987
1988			ret = artpec6_crypto_setup_in_descr(common,
1989							    ac->pad_buffer,
1990							    crypto_pad, false);
1991			if (ret)
1992				return ret;
1993		}
1994
1995		/* The authentication tag shall follow immediately after
1996		 * the output ciphertext. For decryption it is put in a context
1997		 * buffer for later compare against the input tag.
1998		 */
1999
2000		if (req_ctx->decrypt) {
2001			ret = artpec6_crypto_setup_in_descr(common,
2002				req_ctx->decryption_tag, AES_BLOCK_SIZE, false);
2003			if (ret)
2004				return ret;
2005
2006		} else {
2007			/* For encryption the requested tag size may be smaller
2008			 * than the hardware's generated tag.
2009			 */
2010			size_t authsize = crypto_aead_authsize(cipher);
2011
2012			ret = artpec6_crypto_setup_sg_descrs_in(common, &walk,
2013								authsize);
2014			if (ret)
2015				return ret;
2016
2017			if (authsize < AES_BLOCK_SIZE) {
2018				count = AES_BLOCK_SIZE - authsize;
2019				ret = artpec6_crypto_setup_in_descr(common,
2020					ac->pad_buffer,
2021					count, false);
2022				if (ret)
2023					return ret;
2024			}
2025		}
2026
2027	}
2028
2029	ret = artpec6_crypto_terminate_in_descrs(common);
2030	if (ret)
2031		return ret;
2032
2033	ret = artpec6_crypto_terminate_out_descrs(common);
2034	if (ret)
2035		return ret;
2036
2037	return artpec6_crypto_dma_map_descs(common);
2038}
2039
2040static void artpec6_crypto_process_queue(struct artpec6_crypto *ac,
2041	    struct list_head *completions)
2042{
2043	struct artpec6_crypto_req_common *req;
2044
2045	while (!list_empty(&ac->queue) && !artpec6_crypto_busy()) {
2046		req = list_first_entry(&ac->queue,
2047				       struct artpec6_crypto_req_common,
2048				       list);
2049		list_move_tail(&req->list, &ac->pending);
2050		artpec6_crypto_start_dma(req);
2051
2052		list_add_tail(&req->complete_in_progress, completions);
2053	}
2054
2055	/*
2056	 * In some cases, the hardware can raise an in_eop_flush interrupt
2057	 * before actually updating the status, so we have an timer which will
2058	 * recheck the status on timeout.  Since the cases are expected to be
2059	 * very rare, we use a relatively large timeout value.  There should be
2060	 * no noticeable negative effect if we timeout spuriously.
2061	 */
2062	if (ac->pending_count)
2063		mod_timer(&ac->timer, jiffies + msecs_to_jiffies(100));
2064	else
2065		del_timer(&ac->timer);
2066}
2067
2068static void artpec6_crypto_timeout(struct timer_list *t)
2069{
2070	struct artpec6_crypto *ac = from_timer(ac, t, timer);
2071
2072	dev_info_ratelimited(artpec6_crypto_dev, "timeout\n");
2073
2074	tasklet_schedule(&ac->task);
2075}
2076
2077static void artpec6_crypto_task(unsigned long data)
2078{
2079	struct artpec6_crypto *ac = (struct artpec6_crypto *)data;
2080	struct artpec6_crypto_req_common *req;
2081	struct artpec6_crypto_req_common *n;
2082	struct list_head complete_done;
2083	struct list_head complete_in_progress;
2084
2085	INIT_LIST_HEAD(&complete_done);
2086	INIT_LIST_HEAD(&complete_in_progress);
2087
2088	if (list_empty(&ac->pending)) {
2089		pr_debug("Spurious IRQ\n");
2090		return;
2091	}
2092
2093	spin_lock_bh(&ac->queue_lock);
2094
2095	list_for_each_entry_safe(req, n, &ac->pending, list) {
2096		struct artpec6_crypto_dma_descriptors *dma = req->dma;
2097		u32 stat;
2098		dma_addr_t stataddr;
2099
2100		stataddr = dma->stat_dma_addr + 4 * (req->dma->in_cnt - 1);
2101		dma_sync_single_for_cpu(artpec6_crypto_dev,
2102					stataddr,
2103					4,
2104					DMA_BIDIRECTIONAL);
2105
2106		stat = req->dma->stat[req->dma->in_cnt-1];
2107
2108		/* A non-zero final status descriptor indicates
2109		 * this job has finished.
2110		 */
2111		pr_debug("Request %p status is %X\n", req, stat);
2112		if (!stat)
2113			break;
2114
2115		/* Allow testing of timeout handling with fault injection */
2116#ifdef CONFIG_FAULT_INJECTION
2117		if (should_fail(&artpec6_crypto_fail_status_read, 1))
2118			continue;
2119#endif
2120
2121		pr_debug("Completing request %p\n", req);
2122
2123		list_move_tail(&req->list, &complete_done);
2124
2125		ac->pending_count--;
2126	}
2127
2128	artpec6_crypto_process_queue(ac, &complete_in_progress);
2129
2130	spin_unlock_bh(&ac->queue_lock);
2131
2132	/* Perform the completion callbacks without holding the queue lock
2133	 * to allow new request submissions from the callbacks.
2134	 */
2135	list_for_each_entry_safe(req, n, &complete_done, list) {
2136		artpec6_crypto_dma_unmap_all(req);
2137		artpec6_crypto_copy_bounce_buffers(req);
2138		artpec6_crypto_common_destroy(req);
2139
2140		req->complete(req->req);
2141	}
2142
2143	list_for_each_entry_safe(req, n, &complete_in_progress,
2144				 complete_in_progress) {
2145		req->req->complete(req->req, -EINPROGRESS);
2146	}
2147}
2148
2149static void artpec6_crypto_complete_crypto(struct crypto_async_request *req)
2150{
2151	req->complete(req, 0);
2152}
2153
2154static void
2155artpec6_crypto_complete_cbc_decrypt(struct crypto_async_request *req)
2156{
2157	struct skcipher_request *cipher_req = container_of(req,
2158		struct skcipher_request, base);
2159
2160	scatterwalk_map_and_copy(cipher_req->iv, cipher_req->src,
2161				 cipher_req->cryptlen - AES_BLOCK_SIZE,
2162				 AES_BLOCK_SIZE, 0);
2163	req->complete(req, 0);
2164}
2165
2166static void
2167artpec6_crypto_complete_cbc_encrypt(struct crypto_async_request *req)
2168{
2169	struct skcipher_request *cipher_req = container_of(req,
2170		struct skcipher_request, base);
2171
2172	scatterwalk_map_and_copy(cipher_req->iv, cipher_req->dst,
2173				 cipher_req->cryptlen - AES_BLOCK_SIZE,
2174				 AES_BLOCK_SIZE, 0);
2175	req->complete(req, 0);
2176}
2177
2178static void artpec6_crypto_complete_aead(struct crypto_async_request *req)
2179{
2180	int result = 0;
2181
2182	/* Verify GCM hashtag. */
2183	struct aead_request *areq = container_of(req,
2184		struct aead_request, base);
2185	struct crypto_aead *aead = crypto_aead_reqtfm(areq);
2186	struct artpec6_crypto_aead_req_ctx *req_ctx = aead_request_ctx(areq);
2187
2188	if (req_ctx->decrypt) {
2189		u8 input_tag[AES_BLOCK_SIZE];
2190		unsigned int authsize = crypto_aead_authsize(aead);
2191
2192		sg_pcopy_to_buffer(areq->src,
2193				   sg_nents(areq->src),
2194				   input_tag,
2195				   authsize,
2196				   areq->assoclen + areq->cryptlen -
2197				   authsize);
2198
2199		if (crypto_memneq(req_ctx->decryption_tag,
2200				  input_tag,
2201				  authsize)) {
2202			pr_debug("***EBADMSG:\n");
2203			print_hex_dump_debug("ref:", DUMP_PREFIX_ADDRESS, 32, 1,
2204					     input_tag, authsize, true);
2205			print_hex_dump_debug("out:", DUMP_PREFIX_ADDRESS, 32, 1,
2206					     req_ctx->decryption_tag,
2207					     authsize, true);
2208
2209			result = -EBADMSG;
2210		}
2211	}
2212
2213	req->complete(req, result);
2214}
2215
2216static void artpec6_crypto_complete_hash(struct crypto_async_request *req)
2217{
2218	req->complete(req, 0);
2219}
2220
2221
2222/*------------------- Hash functions -----------------------------------------*/
2223static int
2224artpec6_crypto_hash_set_key(struct crypto_ahash *tfm,
2225		    const u8 *key, unsigned int keylen)
2226{
2227	struct artpec6_hashalg_context *tfm_ctx = crypto_tfm_ctx(&tfm->base);
2228	size_t blocksize;
2229	int ret;
2230
2231	if (!keylen) {
2232		pr_err("Invalid length (%d) of HMAC key\n",
2233			keylen);
2234		return -EINVAL;
2235	}
2236
2237	memset(tfm_ctx->hmac_key, 0, sizeof(tfm_ctx->hmac_key));
2238
2239	blocksize = crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
2240
2241	if (keylen > blocksize) {
2242		tfm_ctx->hmac_key_length = blocksize;
2243
2244		ret = crypto_shash_tfm_digest(tfm_ctx->child_hash, key, keylen,
2245					      tfm_ctx->hmac_key);
2246		if (ret)
2247			return ret;
2248	} else {
2249		memcpy(tfm_ctx->hmac_key, key, keylen);
2250		tfm_ctx->hmac_key_length = keylen;
2251	}
2252
2253	return 0;
2254}
2255
2256static int
2257artpec6_crypto_init_hash(struct ahash_request *req, u8 type, int hmac)
2258{
2259	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
2260	enum artpec6_crypto_variant variant = ac->variant;
2261	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2262	u32 oper;
2263
2264	memset(req_ctx, 0, sizeof(*req_ctx));
2265
2266	req_ctx->hash_flags = HASH_FLAG_INIT_CTX;
2267	if (hmac)
2268		req_ctx->hash_flags |= (HASH_FLAG_HMAC | HASH_FLAG_UPDATE_KEY);
2269
2270	switch (type) {
2271	case ARTPEC6_CRYPTO_HASH_SHA1:
2272		oper = hmac ? regk_crypto_hmac_sha1 : regk_crypto_sha1;
2273		break;
2274	case ARTPEC6_CRYPTO_HASH_SHA256:
2275		oper = hmac ? regk_crypto_hmac_sha256 : regk_crypto_sha256;
2276		break;
2277	default:
2278		pr_err("%s: Unsupported hash type 0x%x\n", MODULE_NAME, type);
2279		return -EINVAL;
2280	}
2281
2282	if (variant == ARTPEC6_CRYPTO)
2283		req_ctx->hash_md = FIELD_PREP(A6_CRY_MD_OPER, oper);
2284	else
2285		req_ctx->hash_md = FIELD_PREP(A7_CRY_MD_OPER, oper);
2286
2287	return 0;
2288}
2289
2290static int artpec6_crypto_prepare_submit_hash(struct ahash_request *req)
2291{
2292	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2293	int ret;
2294
2295	if (!req_ctx->common.dma) {
2296		ret = artpec6_crypto_common_init(&req_ctx->common,
2297					  &req->base,
2298					  artpec6_crypto_complete_hash,
2299					  NULL, 0);
2300
2301		if (ret)
2302			return ret;
2303	}
2304
2305	ret = artpec6_crypto_prepare_hash(req);
2306	switch (ret) {
2307	case ARTPEC6_CRYPTO_PREPARE_HASH_START:
2308		ret = artpec6_crypto_submit(&req_ctx->common);
2309		break;
2310
2311	case ARTPEC6_CRYPTO_PREPARE_HASH_NO_START:
2312		ret = 0;
2313		fallthrough;
2314
2315	default:
2316		artpec6_crypto_common_destroy(&req_ctx->common);
2317		break;
2318	}
2319
2320	return ret;
2321}
2322
2323static int artpec6_crypto_hash_final(struct ahash_request *req)
2324{
2325	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2326
2327	req_ctx->hash_flags |= HASH_FLAG_FINALIZE;
2328
2329	return artpec6_crypto_prepare_submit_hash(req);
2330}
2331
2332static int artpec6_crypto_hash_update(struct ahash_request *req)
2333{
2334	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2335
2336	req_ctx->hash_flags |= HASH_FLAG_UPDATE;
2337
2338	return artpec6_crypto_prepare_submit_hash(req);
2339}
2340
2341static int artpec6_crypto_sha1_init(struct ahash_request *req)
2342{
2343	return artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA1, 0);
2344}
2345
2346static int artpec6_crypto_sha1_digest(struct ahash_request *req)
2347{
2348	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2349
2350	artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA1, 0);
2351
2352	req_ctx->hash_flags |= HASH_FLAG_UPDATE | HASH_FLAG_FINALIZE;
2353
2354	return artpec6_crypto_prepare_submit_hash(req);
2355}
2356
2357static int artpec6_crypto_sha256_init(struct ahash_request *req)
2358{
2359	return artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 0);
2360}
2361
2362static int artpec6_crypto_sha256_digest(struct ahash_request *req)
2363{
2364	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2365
2366	artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 0);
2367	req_ctx->hash_flags |= HASH_FLAG_UPDATE | HASH_FLAG_FINALIZE;
2368
2369	return artpec6_crypto_prepare_submit_hash(req);
2370}
2371
2372static int artpec6_crypto_hmac_sha256_init(struct ahash_request *req)
2373{
2374	return artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 1);
2375}
2376
2377static int artpec6_crypto_hmac_sha256_digest(struct ahash_request *req)
2378{
2379	struct artpec6_hash_request_context *req_ctx = ahash_request_ctx(req);
2380
2381	artpec6_crypto_init_hash(req, ARTPEC6_CRYPTO_HASH_SHA256, 1);
2382	req_ctx->hash_flags |= HASH_FLAG_UPDATE | HASH_FLAG_FINALIZE;
2383
2384	return artpec6_crypto_prepare_submit_hash(req);
2385}
2386
2387static int artpec6_crypto_ahash_init_common(struct crypto_tfm *tfm,
2388				    const char *base_hash_name)
2389{
2390	struct artpec6_hashalg_context *tfm_ctx = crypto_tfm_ctx(tfm);
2391
2392	crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
2393				 sizeof(struct artpec6_hash_request_context));
2394	memset(tfm_ctx, 0, sizeof(*tfm_ctx));
2395
2396	if (base_hash_name) {
2397		struct crypto_shash *child;
2398
2399		child = crypto_alloc_shash(base_hash_name, 0,
2400					   CRYPTO_ALG_NEED_FALLBACK);
2401
2402		if (IS_ERR(child))
2403			return PTR_ERR(child);
2404
2405		tfm_ctx->child_hash = child;
2406	}
2407
2408	return 0;
2409}
2410
2411static int artpec6_crypto_ahash_init(struct crypto_tfm *tfm)
2412{
2413	return artpec6_crypto_ahash_init_common(tfm, NULL);
2414}
2415
2416static int artpec6_crypto_ahash_init_hmac_sha256(struct crypto_tfm *tfm)
2417{
2418	return artpec6_crypto_ahash_init_common(tfm, "sha256");
2419}
2420
2421static void artpec6_crypto_ahash_exit(struct crypto_tfm *tfm)
2422{
2423	struct artpec6_hashalg_context *tfm_ctx = crypto_tfm_ctx(tfm);
2424
2425	if (tfm_ctx->child_hash)
2426		crypto_free_shash(tfm_ctx->child_hash);
2427
2428	memset(tfm_ctx->hmac_key, 0, sizeof(tfm_ctx->hmac_key));
2429	tfm_ctx->hmac_key_length = 0;
2430}
2431
2432static int artpec6_crypto_hash_export(struct ahash_request *req, void *out)
2433{
2434	const struct artpec6_hash_request_context *ctx = ahash_request_ctx(req);
2435	struct artpec6_hash_export_state *state = out;
2436	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
2437	enum artpec6_crypto_variant variant = ac->variant;
2438
2439	BUILD_BUG_ON(sizeof(state->partial_buffer) !=
2440		     sizeof(ctx->partial_buffer));
2441	BUILD_BUG_ON(sizeof(state->digeststate) != sizeof(ctx->digeststate));
2442
2443	state->digcnt = ctx->digcnt;
2444	state->partial_bytes = ctx->partial_bytes;
2445	state->hash_flags = ctx->hash_flags;
2446
2447	if (variant == ARTPEC6_CRYPTO)
2448		state->oper = FIELD_GET(A6_CRY_MD_OPER, ctx->hash_md);
2449	else
2450		state->oper = FIELD_GET(A7_CRY_MD_OPER, ctx->hash_md);
2451
2452	memcpy(state->partial_buffer, ctx->partial_buffer,
2453	       sizeof(state->partial_buffer));
2454	memcpy(state->digeststate, ctx->digeststate,
2455	       sizeof(state->digeststate));
2456
2457	return 0;
2458}
2459
2460static int artpec6_crypto_hash_import(struct ahash_request *req, const void *in)
2461{
2462	struct artpec6_hash_request_context *ctx = ahash_request_ctx(req);
2463	const struct artpec6_hash_export_state *state = in;
2464	struct artpec6_crypto *ac = dev_get_drvdata(artpec6_crypto_dev);
2465	enum artpec6_crypto_variant variant = ac->variant;
2466
2467	memset(ctx, 0, sizeof(*ctx));
2468
2469	ctx->digcnt = state->digcnt;
2470	ctx->partial_bytes = state->partial_bytes;
2471	ctx->hash_flags = state->hash_flags;
2472
2473	if (variant == ARTPEC6_CRYPTO)
2474		ctx->hash_md = FIELD_PREP(A6_CRY_MD_OPER, state->oper);
2475	else
2476		ctx->hash_md = FIELD_PREP(A7_CRY_MD_OPER, state->oper);
2477
2478	memcpy(ctx->partial_buffer, state->partial_buffer,
2479	       sizeof(state->partial_buffer));
2480	memcpy(ctx->digeststate, state->digeststate,
2481	       sizeof(state->digeststate));
2482
2483	return 0;
2484}
2485
2486static int init_crypto_hw(struct artpec6_crypto *ac)
2487{
2488	enum artpec6_crypto_variant variant = ac->variant;
2489	void __iomem *base = ac->base;
2490	u32 out_descr_buf_size;
2491	u32 out_data_buf_size;
2492	u32 in_data_buf_size;
2493	u32 in_descr_buf_size;
2494	u32 in_stat_buf_size;
2495	u32 in, out;
2496
2497	/*
2498	 * The PDMA unit contains 1984 bytes of internal memory for the OUT
2499	 * channels and 1024 bytes for the IN channel. This is an elastic
2500	 * memory used to internally store the descriptors and data. The values
2501	 * ares specified in 64 byte incremements.  Trustzone buffers are not
2502	 * used at this stage.
2503	 */
2504	out_data_buf_size = 16;  /* 1024 bytes for data */
2505	out_descr_buf_size = 15; /* 960 bytes for descriptors */
2506	in_data_buf_size = 8;    /* 512 bytes for data */
2507	in_descr_buf_size = 4;   /* 256 bytes for descriptors */
2508	in_stat_buf_size = 4;   /* 256 bytes for stat descrs */
2509
2510	BUILD_BUG_ON_MSG((out_data_buf_size
2511				+ out_descr_buf_size) * 64 > 1984,
2512			  "Invalid OUT configuration");
2513
2514	BUILD_BUG_ON_MSG((in_data_buf_size
2515				+ in_descr_buf_size
2516				+ in_stat_buf_size) * 64 > 1024,
2517			  "Invalid IN configuration");
2518
2519	in = FIELD_PREP(PDMA_IN_BUF_CFG_DATA_BUF_SIZE, in_data_buf_size) |
2520	     FIELD_PREP(PDMA_IN_BUF_CFG_DESCR_BUF_SIZE, in_descr_buf_size) |
2521	     FIELD_PREP(PDMA_IN_BUF_CFG_STAT_BUF_SIZE, in_stat_buf_size);
2522
2523	out = FIELD_PREP(PDMA_OUT_BUF_CFG_DATA_BUF_SIZE, out_data_buf_size) |
2524	      FIELD_PREP(PDMA_OUT_BUF_CFG_DESCR_BUF_SIZE, out_descr_buf_size);
2525
2526	writel_relaxed(out, base + PDMA_OUT_BUF_CFG);
2527	writel_relaxed(PDMA_OUT_CFG_EN, base + PDMA_OUT_CFG);
2528
2529	if (variant == ARTPEC6_CRYPTO) {
2530		writel_relaxed(in, base + A6_PDMA_IN_BUF_CFG);
2531		writel_relaxed(PDMA_IN_CFG_EN, base + A6_PDMA_IN_CFG);
2532		writel_relaxed(A6_PDMA_INTR_MASK_IN_DATA |
2533			       A6_PDMA_INTR_MASK_IN_EOP_FLUSH,
2534			       base + A6_PDMA_INTR_MASK);
2535	} else {
2536		writel_relaxed(in, base + A7_PDMA_IN_BUF_CFG);
2537		writel_relaxed(PDMA_IN_CFG_EN, base + A7_PDMA_IN_CFG);
2538		writel_relaxed(A7_PDMA_INTR_MASK_IN_DATA |
2539			       A7_PDMA_INTR_MASK_IN_EOP_FLUSH,
2540			       base + A7_PDMA_INTR_MASK);
2541	}
2542
2543	return 0;
2544}
2545
2546static void artpec6_crypto_disable_hw(struct artpec6_crypto *ac)
2547{
2548	enum artpec6_crypto_variant variant = ac->variant;
2549	void __iomem *base = ac->base;
2550
2551	if (variant == ARTPEC6_CRYPTO) {
2552		writel_relaxed(A6_PDMA_IN_CMD_STOP, base + A6_PDMA_IN_CMD);
2553		writel_relaxed(0, base + A6_PDMA_IN_CFG);
2554		writel_relaxed(A6_PDMA_OUT_CMD_STOP, base + PDMA_OUT_CMD);
2555	} else {
2556		writel_relaxed(A7_PDMA_IN_CMD_STOP, base + A7_PDMA_IN_CMD);
2557		writel_relaxed(0, base + A7_PDMA_IN_CFG);
2558		writel_relaxed(A7_PDMA_OUT_CMD_STOP, base + PDMA_OUT_CMD);
2559	}
2560
2561	writel_relaxed(0, base + PDMA_OUT_CFG);
2562
2563}
2564
2565static irqreturn_t artpec6_crypto_irq(int irq, void *dev_id)
2566{
2567	struct artpec6_crypto *ac = dev_id;
2568	enum artpec6_crypto_variant variant = ac->variant;
2569	void __iomem *base = ac->base;
2570	u32 mask_in_data, mask_in_eop_flush;
2571	u32 in_cmd_flush_stat, in_cmd_reg;
2572	u32 ack_intr_reg;
2573	u32 ack = 0;
2574	u32 intr;
2575
2576	if (variant == ARTPEC6_CRYPTO) {
2577		intr = readl_relaxed(base + A6_PDMA_MASKED_INTR);
2578		mask_in_data = A6_PDMA_INTR_MASK_IN_DATA;
2579		mask_in_eop_flush = A6_PDMA_INTR_MASK_IN_EOP_FLUSH;
2580		in_cmd_flush_stat = A6_PDMA_IN_CMD_FLUSH_STAT;
2581		in_cmd_reg = A6_PDMA_IN_CMD;
2582		ack_intr_reg = A6_PDMA_ACK_INTR;
2583	} else {
2584		intr = readl_relaxed(base + A7_PDMA_MASKED_INTR);
2585		mask_in_data = A7_PDMA_INTR_MASK_IN_DATA;
2586		mask_in_eop_flush = A7_PDMA_INTR_MASK_IN_EOP_FLUSH;
2587		in_cmd_flush_stat = A7_PDMA_IN_CMD_FLUSH_STAT;
2588		in_cmd_reg = A7_PDMA_IN_CMD;
2589		ack_intr_reg = A7_PDMA_ACK_INTR;
2590	}
2591
2592	/* We get two interrupt notifications from each job.
2593	 * The in_data means all data was sent to memory and then
2594	 * we request a status flush command to write the per-job
2595	 * status to its status vector. This ensures that the
2596	 * tasklet can detect exactly how many submitted jobs
2597	 * that have finished.
2598	 */
2599	if (intr & mask_in_data)
2600		ack |= mask_in_data;
2601
2602	if (intr & mask_in_eop_flush)
2603		ack |= mask_in_eop_flush;
2604	else
2605		writel_relaxed(in_cmd_flush_stat, base + in_cmd_reg);
2606
2607	writel_relaxed(ack, base + ack_intr_reg);
2608
2609	if (intr & mask_in_eop_flush)
2610		tasklet_schedule(&ac->task);
2611
2612	return IRQ_HANDLED;
2613}
2614
2615/*------------------- Algorithm definitions ----------------------------------*/
2616
2617/* Hashes */
2618static struct ahash_alg hash_algos[] = {
2619	/* SHA-1 */
2620	{
2621		.init = artpec6_crypto_sha1_init,
2622		.update = artpec6_crypto_hash_update,
2623		.final = artpec6_crypto_hash_final,
2624		.digest = artpec6_crypto_sha1_digest,
2625		.import = artpec6_crypto_hash_import,
2626		.export = artpec6_crypto_hash_export,
2627		.halg.digestsize = SHA1_DIGEST_SIZE,
2628		.halg.statesize = sizeof(struct artpec6_hash_export_state),
2629		.halg.base = {
2630			.cra_name = "sha1",
2631			.cra_driver_name = "artpec-sha1",
2632			.cra_priority = 300,
2633			.cra_flags = CRYPTO_ALG_ASYNC |
2634				     CRYPTO_ALG_ALLOCATES_MEMORY,
2635			.cra_blocksize = SHA1_BLOCK_SIZE,
2636			.cra_ctxsize = sizeof(struct artpec6_hashalg_context),
2637			.cra_alignmask = 3,
2638			.cra_module = THIS_MODULE,
2639			.cra_init = artpec6_crypto_ahash_init,
2640			.cra_exit = artpec6_crypto_ahash_exit,
2641		}
2642	},
2643	/* SHA-256 */
2644	{
2645		.init = artpec6_crypto_sha256_init,
2646		.update = artpec6_crypto_hash_update,
2647		.final = artpec6_crypto_hash_final,
2648		.digest = artpec6_crypto_sha256_digest,
2649		.import = artpec6_crypto_hash_import,
2650		.export = artpec6_crypto_hash_export,
2651		.halg.digestsize = SHA256_DIGEST_SIZE,
2652		.halg.statesize = sizeof(struct artpec6_hash_export_state),
2653		.halg.base = {
2654			.cra_name = "sha256",
2655			.cra_driver_name = "artpec-sha256",
2656			.cra_priority = 300,
2657			.cra_flags = CRYPTO_ALG_ASYNC |
2658				     CRYPTO_ALG_ALLOCATES_MEMORY,
2659			.cra_blocksize = SHA256_BLOCK_SIZE,
2660			.cra_ctxsize = sizeof(struct artpec6_hashalg_context),
2661			.cra_alignmask = 3,
2662			.cra_module = THIS_MODULE,
2663			.cra_init = artpec6_crypto_ahash_init,
2664			.cra_exit = artpec6_crypto_ahash_exit,
2665		}
2666	},
2667	/* HMAC SHA-256 */
2668	{
2669		.init = artpec6_crypto_hmac_sha256_init,
2670		.update = artpec6_crypto_hash_update,
2671		.final = artpec6_crypto_hash_final,
2672		.digest = artpec6_crypto_hmac_sha256_digest,
2673		.import = artpec6_crypto_hash_import,
2674		.export = artpec6_crypto_hash_export,
2675		.setkey = artpec6_crypto_hash_set_key,
2676		.halg.digestsize = SHA256_DIGEST_SIZE,
2677		.halg.statesize = sizeof(struct artpec6_hash_export_state),
2678		.halg.base = {
2679			.cra_name = "hmac(sha256)",
2680			.cra_driver_name = "artpec-hmac-sha256",
2681			.cra_priority = 300,
2682			.cra_flags = CRYPTO_ALG_ASYNC |
2683				     CRYPTO_ALG_ALLOCATES_MEMORY,
2684			.cra_blocksize = SHA256_BLOCK_SIZE,
2685			.cra_ctxsize = sizeof(struct artpec6_hashalg_context),
2686			.cra_alignmask = 3,
2687			.cra_module = THIS_MODULE,
2688			.cra_init = artpec6_crypto_ahash_init_hmac_sha256,
2689			.cra_exit = artpec6_crypto_ahash_exit,
2690		}
2691	},
2692};
2693
2694/* Crypto */
2695static struct skcipher_alg crypto_algos[] = {
2696	/* AES - ECB */
2697	{
2698		.base = {
2699			.cra_name = "ecb(aes)",
2700			.cra_driver_name = "artpec6-ecb-aes",
2701			.cra_priority = 300,
2702			.cra_flags = CRYPTO_ALG_ASYNC |
2703				     CRYPTO_ALG_ALLOCATES_MEMORY,
2704			.cra_blocksize = AES_BLOCK_SIZE,
2705			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2706			.cra_alignmask = 3,
2707			.cra_module = THIS_MODULE,
2708		},
2709		.min_keysize = AES_MIN_KEY_SIZE,
2710		.max_keysize = AES_MAX_KEY_SIZE,
2711		.setkey = artpec6_crypto_cipher_set_key,
2712		.encrypt = artpec6_crypto_encrypt,
2713		.decrypt = artpec6_crypto_decrypt,
2714		.init = artpec6_crypto_aes_ecb_init,
2715		.exit = artpec6_crypto_aes_exit,
2716	},
2717	/* AES - CTR */
2718	{
2719		.base = {
2720			.cra_name = "ctr(aes)",
2721			.cra_driver_name = "artpec6-ctr-aes",
2722			.cra_priority = 300,
2723			.cra_flags = CRYPTO_ALG_ASYNC |
2724				     CRYPTO_ALG_ALLOCATES_MEMORY |
2725				     CRYPTO_ALG_NEED_FALLBACK,
2726			.cra_blocksize = 1,
2727			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2728			.cra_alignmask = 3,
2729			.cra_module = THIS_MODULE,
2730		},
2731		.min_keysize = AES_MIN_KEY_SIZE,
2732		.max_keysize = AES_MAX_KEY_SIZE,
2733		.ivsize = AES_BLOCK_SIZE,
2734		.setkey = artpec6_crypto_cipher_set_key,
2735		.encrypt = artpec6_crypto_ctr_encrypt,
2736		.decrypt = artpec6_crypto_ctr_decrypt,
2737		.init = artpec6_crypto_aes_ctr_init,
2738		.exit = artpec6_crypto_aes_ctr_exit,
2739	},
2740	/* AES - CBC */
2741	{
2742		.base = {
2743			.cra_name = "cbc(aes)",
2744			.cra_driver_name = "artpec6-cbc-aes",
2745			.cra_priority = 300,
2746			.cra_flags = CRYPTO_ALG_ASYNC |
2747				     CRYPTO_ALG_ALLOCATES_MEMORY,
2748			.cra_blocksize = AES_BLOCK_SIZE,
2749			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2750			.cra_alignmask = 3,
2751			.cra_module = THIS_MODULE,
2752		},
2753		.min_keysize = AES_MIN_KEY_SIZE,
2754		.max_keysize = AES_MAX_KEY_SIZE,
2755		.ivsize = AES_BLOCK_SIZE,
2756		.setkey = artpec6_crypto_cipher_set_key,
2757		.encrypt = artpec6_crypto_encrypt,
2758		.decrypt = artpec6_crypto_decrypt,
2759		.init = artpec6_crypto_aes_cbc_init,
2760		.exit = artpec6_crypto_aes_exit
2761	},
2762	/* AES - XTS */
2763	{
2764		.base = {
2765			.cra_name = "xts(aes)",
2766			.cra_driver_name = "artpec6-xts-aes",
2767			.cra_priority = 300,
2768			.cra_flags = CRYPTO_ALG_ASYNC |
2769				     CRYPTO_ALG_ALLOCATES_MEMORY,
2770			.cra_blocksize = 1,
2771			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2772			.cra_alignmask = 3,
2773			.cra_module = THIS_MODULE,
2774		},
2775		.min_keysize = 2*AES_MIN_KEY_SIZE,
2776		.max_keysize = 2*AES_MAX_KEY_SIZE,
2777		.ivsize = 16,
2778		.setkey = artpec6_crypto_xts_set_key,
2779		.encrypt = artpec6_crypto_encrypt,
2780		.decrypt = artpec6_crypto_decrypt,
2781		.init = artpec6_crypto_aes_xts_init,
2782		.exit = artpec6_crypto_aes_exit,
2783	},
2784};
2785
2786static struct aead_alg aead_algos[] = {
2787	{
2788		.init   = artpec6_crypto_aead_init,
2789		.setkey = artpec6_crypto_aead_set_key,
2790		.encrypt = artpec6_crypto_aead_encrypt,
2791		.decrypt = artpec6_crypto_aead_decrypt,
2792		.ivsize = GCM_AES_IV_SIZE,
2793		.maxauthsize = AES_BLOCK_SIZE,
2794
2795		.base = {
2796			.cra_name = "gcm(aes)",
2797			.cra_driver_name = "artpec-gcm-aes",
2798			.cra_priority = 300,
2799			.cra_flags = CRYPTO_ALG_ASYNC |
2800				     CRYPTO_ALG_ALLOCATES_MEMORY |
2801				     CRYPTO_ALG_KERN_DRIVER_ONLY,
2802			.cra_blocksize = 1,
2803			.cra_ctxsize = sizeof(struct artpec6_cryptotfm_context),
2804			.cra_alignmask = 3,
2805			.cra_module = THIS_MODULE,
2806		},
2807	}
2808};
2809
2810#ifdef CONFIG_DEBUG_FS
2811
2812struct dbgfs_u32 {
2813	char *name;
2814	mode_t mode;
2815	u32 *flag;
2816	char *desc;
2817};
2818
2819static struct dentry *dbgfs_root;
2820
2821static void artpec6_crypto_init_debugfs(void)
2822{
2823	dbgfs_root = debugfs_create_dir("artpec6_crypto", NULL);
2824
2825#ifdef CONFIG_FAULT_INJECTION
2826	fault_create_debugfs_attr("fail_status_read", dbgfs_root,
2827				  &artpec6_crypto_fail_status_read);
2828
2829	fault_create_debugfs_attr("fail_dma_array_full", dbgfs_root,
2830				  &artpec6_crypto_fail_dma_array_full);
2831#endif
2832}
2833
2834static void artpec6_crypto_free_debugfs(void)
2835{
2836	debugfs_remove_recursive(dbgfs_root);
2837	dbgfs_root = NULL;
2838}
2839#endif
2840
2841static const struct of_device_id artpec6_crypto_of_match[] = {
2842	{ .compatible = "axis,artpec6-crypto", .data = (void *)ARTPEC6_CRYPTO },
2843	{ .compatible = "axis,artpec7-crypto", .data = (void *)ARTPEC7_CRYPTO },
2844	{}
2845};
2846MODULE_DEVICE_TABLE(of, artpec6_crypto_of_match);
2847
2848static int artpec6_crypto_probe(struct platform_device *pdev)
2849{
2850	const struct of_device_id *match;
2851	enum artpec6_crypto_variant variant;
2852	struct artpec6_crypto *ac;
2853	struct device *dev = &pdev->dev;
2854	void __iomem *base;
2855	int irq;
2856	int err;
2857
2858	if (artpec6_crypto_dev)
2859		return -ENODEV;
2860
2861	match = of_match_node(artpec6_crypto_of_match, dev->of_node);
2862	if (!match)
2863		return -EINVAL;
2864
2865	variant = (enum artpec6_crypto_variant)match->data;
2866
2867	base = devm_platform_ioremap_resource(pdev, 0);
2868	if (IS_ERR(base))
2869		return PTR_ERR(base);
2870
2871	irq = platform_get_irq(pdev, 0);
2872	if (irq < 0)
2873		return -ENODEV;
2874
2875	ac = devm_kzalloc(&pdev->dev, sizeof(struct artpec6_crypto),
2876			  GFP_KERNEL);
2877	if (!ac)
2878		return -ENOMEM;
2879
2880	platform_set_drvdata(pdev, ac);
2881	ac->variant = variant;
2882
2883	spin_lock_init(&ac->queue_lock);
2884	INIT_LIST_HEAD(&ac->queue);
2885	INIT_LIST_HEAD(&ac->pending);
2886	timer_setup(&ac->timer, artpec6_crypto_timeout, 0);
2887
2888	ac->base = base;
2889
2890	ac->dma_cache = kmem_cache_create("artpec6_crypto_dma",
2891		sizeof(struct artpec6_crypto_dma_descriptors),
2892		64,
2893		0,
2894		NULL);
2895	if (!ac->dma_cache)
2896		return -ENOMEM;
2897
2898#ifdef CONFIG_DEBUG_FS
2899	artpec6_crypto_init_debugfs();
2900#endif
2901
2902	tasklet_init(&ac->task, artpec6_crypto_task,
2903		     (unsigned long)ac);
2904
2905	ac->pad_buffer = devm_kzalloc(&pdev->dev, 2 * ARTPEC_CACHE_LINE_MAX,
2906				      GFP_KERNEL);
2907	if (!ac->pad_buffer)
2908		return -ENOMEM;
2909	ac->pad_buffer = PTR_ALIGN(ac->pad_buffer, ARTPEC_CACHE_LINE_MAX);
2910
2911	ac->zero_buffer = devm_kzalloc(&pdev->dev, 2 * ARTPEC_CACHE_LINE_MAX,
2912				      GFP_KERNEL);
2913	if (!ac->zero_buffer)
2914		return -ENOMEM;
2915	ac->zero_buffer = PTR_ALIGN(ac->zero_buffer, ARTPEC_CACHE_LINE_MAX);
2916
2917	err = init_crypto_hw(ac);
2918	if (err)
2919		goto free_cache;
2920
2921	err = devm_request_irq(&pdev->dev, irq, artpec6_crypto_irq, 0,
2922			       "artpec6-crypto", ac);
2923	if (err)
2924		goto disable_hw;
2925
2926	artpec6_crypto_dev = &pdev->dev;
2927
2928	err = crypto_register_ahashes(hash_algos, ARRAY_SIZE(hash_algos));
2929	if (err) {
2930		dev_err(dev, "Failed to register ahashes\n");
2931		goto disable_hw;
2932	}
2933
2934	err = crypto_register_skciphers(crypto_algos, ARRAY_SIZE(crypto_algos));
2935	if (err) {
2936		dev_err(dev, "Failed to register ciphers\n");
2937		goto unregister_ahashes;
2938	}
2939
2940	err = crypto_register_aeads(aead_algos, ARRAY_SIZE(aead_algos));
2941	if (err) {
2942		dev_err(dev, "Failed to register aeads\n");
2943		goto unregister_algs;
2944	}
2945
2946	return 0;
2947
2948unregister_algs:
2949	crypto_unregister_skciphers(crypto_algos, ARRAY_SIZE(crypto_algos));
2950unregister_ahashes:
2951	crypto_unregister_ahashes(hash_algos, ARRAY_SIZE(hash_algos));
2952disable_hw:
2953	artpec6_crypto_disable_hw(ac);
2954free_cache:
2955	kmem_cache_destroy(ac->dma_cache);
2956	return err;
2957}
2958
2959static int artpec6_crypto_remove(struct platform_device *pdev)
2960{
2961	struct artpec6_crypto *ac = platform_get_drvdata(pdev);
2962	int irq = platform_get_irq(pdev, 0);
2963
2964	crypto_unregister_ahashes(hash_algos, ARRAY_SIZE(hash_algos));
2965	crypto_unregister_skciphers(crypto_algos, ARRAY_SIZE(crypto_algos));
2966	crypto_unregister_aeads(aead_algos, ARRAY_SIZE(aead_algos));
2967
2968	tasklet_disable(&ac->task);
2969	devm_free_irq(&pdev->dev, irq, ac);
2970	tasklet_kill(&ac->task);
2971	del_timer_sync(&ac->timer);
2972
2973	artpec6_crypto_disable_hw(ac);
2974
2975	kmem_cache_destroy(ac->dma_cache);
2976#ifdef CONFIG_DEBUG_FS
2977	artpec6_crypto_free_debugfs();
2978#endif
2979	return 0;
2980}
2981
2982static struct platform_driver artpec6_crypto_driver = {
2983	.probe   = artpec6_crypto_probe,
2984	.remove  = artpec6_crypto_remove,
2985	.driver  = {
2986		.name  = "artpec6-crypto",
2987		.of_match_table = artpec6_crypto_of_match,
2988	},
2989};
2990
2991module_platform_driver(artpec6_crypto_driver);
2992
2993MODULE_AUTHOR("Axis Communications AB");
2994MODULE_DESCRIPTION("ARTPEC-6 Crypto driver");
2995MODULE_LICENSE("GPL");