talitos.c 90.5 KB
Newer Older
1 2 3
/*
 * talitos - Freescale Integrated Security Engine (SEC) device driver
 *
4
 * Copyright (c) 2008-2011 Freescale Semiconductor, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * Scatterlist Crypto API glue code copied from files with the following:
 * Copyright (c) 2006-2007 Herbert Xu <herbert@gondor.apana.org.au>
 *
 * Crypto algorithm registration code copied from hifn driver:
 * 2007+ Copyright (c) Evgeniy Polyakov <johnpol@2ka.mipt.ru>
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/device.h>
#include <linux/interrupt.h>
#include <linux/crypto.h>
#include <linux/hw_random.h>
35 36
#include <linux/of_address.h>
#include <linux/of_irq.h>
37 38 39 40 41
#include <linux/of_platform.h>
#include <linux/dma-mapping.h>
#include <linux/io.h>
#include <linux/spinlock.h>
#include <linux/rtnetlink.h>
42
#include <linux/slab.h>
43 44 45

#include <crypto/algapi.h>
#include <crypto/aes.h>
46
#include <crypto/des.h>
47
#include <crypto/sha.h>
48
#include <crypto/md5.h>
49
#include <crypto/internal/aead.h>
50
#include <crypto/authenc.h>
51
#include <crypto/skcipher.h>
52 53
#include <crypto/hash.h>
#include <crypto/internal/hash.h>
54
#include <crypto/scatterwalk.h>
55 56 57

#include "talitos.h"

58 59
static void to_talitos_ptr(struct talitos_ptr *ptr, dma_addr_t dma_addr,
			   bool is_sec1)
60
{
61
	ptr->ptr = cpu_to_be32(lower_32_bits(dma_addr));
62 63
	if (!is_sec1)
		ptr->eptr = upper_32_bits(dma_addr);
64 65
}

66 67 68 69 70 71 72 73
static void copy_talitos_ptr(struct talitos_ptr *dst_ptr,
			     struct talitos_ptr *src_ptr, bool is_sec1)
{
	dst_ptr->ptr = src_ptr->ptr;
	if (!is_sec1)
		dst_ptr->eptr = src_ptr->eptr;
}

74
static void to_talitos_ptr_len(struct talitos_ptr *ptr, unsigned int len,
75
			       bool is_sec1)
76
{
77 78 79 80 81 82
	if (is_sec1) {
		ptr->res = 0;
		ptr->len1 = cpu_to_be16(len);
	} else {
		ptr->len = cpu_to_be16(len);
	}
83 84
}

85 86
static unsigned short from_talitos_ptr_len(struct talitos_ptr *ptr,
					   bool is_sec1)
87
{
88 89 90 91
	if (is_sec1)
		return be16_to_cpu(ptr->len1);
	else
		return be16_to_cpu(ptr->len);
92 93
}

94 95
static void to_talitos_ptr_ext_set(struct talitos_ptr *ptr, u8 val,
				   bool is_sec1)
96
{
97
	if (!is_sec1)
98 99 100 101 102 103 104
		ptr->j_extent = val;
}

static void to_talitos_ptr_ext_or(struct talitos_ptr *ptr, u8 val, bool is_sec1)
{
	if (!is_sec1)
		ptr->j_extent |= val;
105 106
}

107 108 109 110
/*
 * map virtual single (contiguous) pointer to h/w descriptor pointer
 */
static void map_single_talitos_ptr(struct device *dev,
111
				   struct talitos_ptr *ptr,
112
				   unsigned int len, void *data,
113 114
				   enum dma_data_direction dir)
{
115
	dma_addr_t dma_addr = dma_map_single(dev, data, len, dir);
116 117
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);
118

119 120
	to_talitos_ptr_len(ptr, len, is_sec1);
	to_talitos_ptr(ptr, dma_addr, is_sec1);
121
	to_talitos_ptr_ext_set(ptr, 0, is_sec1);
122 123 124 125 126 127
}

/*
 * unmap bus single (contiguous) h/w descriptor pointer
 */
static void unmap_single_talitos_ptr(struct device *dev,
128
				     struct talitos_ptr *ptr,
129 130
				     enum dma_data_direction dir)
{
131 132 133
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);

134
	dma_unmap_single(dev, be32_to_cpu(ptr->ptr),
135
			 from_talitos_ptr_len(ptr, is_sec1), dir);
136 137 138 139 140 141
}

static int reset_channel(struct device *dev, int ch)
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	unsigned int timeout = TALITOS_TIMEOUT;
142
	bool is_sec1 = has_ftr_sec1(priv);
143

144 145 146
	if (is_sec1) {
		setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO,
			  TALITOS1_CCCR_LO_RESET);
147

148 149 150 151 152 153 154 155 156 157 158
		while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR_LO) &
			TALITOS1_CCCR_LO_RESET) && --timeout)
			cpu_relax();
	} else {
		setbits32(priv->chan[ch].reg + TALITOS_CCCR,
			  TALITOS2_CCCR_RESET);

		while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) &
			TALITOS2_CCCR_RESET) && --timeout)
			cpu_relax();
	}
159 160 161 162 163 164

	if (timeout == 0) {
		dev_err(dev, "failed to reset channel %d\n", ch);
		return -EIO;
	}

165
	/* set 36-bit addressing, done writeback enable and done IRQ enable */
166
	setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, TALITOS_CCCR_LO_EAE |
167
		  TALITOS_CCCR_LO_CDWE | TALITOS_CCCR_LO_CDIE);
168

169 170
	/* and ICCR writeback, if available */
	if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
171
		setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO,
172 173
		          TALITOS_CCCR_LO_IWSE);

174 175 176 177 178 179 180
	return 0;
}

static int reset_device(struct device *dev)
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	unsigned int timeout = TALITOS_TIMEOUT;
181 182
	bool is_sec1 = has_ftr_sec1(priv);
	u32 mcr = is_sec1 ? TALITOS1_MCR_SWR : TALITOS2_MCR_SWR;
183

184
	setbits32(priv->reg + TALITOS_MCR, mcr);
185

186
	while ((in_be32(priv->reg + TALITOS_MCR) & mcr)
187 188 189
	       && --timeout)
		cpu_relax();

190
	if (priv->irq[1]) {
191 192 193 194
		mcr = TALITOS_MCR_RCA1 | TALITOS_MCR_RCA3;
		setbits32(priv->reg + TALITOS_MCR, mcr);
	}

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
	if (timeout == 0) {
		dev_err(dev, "failed to reset device\n");
		return -EIO;
	}

	return 0;
}

/*
 * Reset and initialize the device
 */
static int init_device(struct device *dev)
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	int ch, err;
210
	bool is_sec1 = has_ftr_sec1(priv);
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233

	/*
	 * Master reset
	 * errata documentation: warning: certain SEC interrupts
	 * are not fully cleared by writing the MCR:SWR bit,
	 * set bit twice to completely reset
	 */
	err = reset_device(dev);
	if (err)
		return err;

	err = reset_device(dev);
	if (err)
		return err;

	/* reset channels */
	for (ch = 0; ch < priv->num_channels; ch++) {
		err = reset_channel(dev, ch);
		if (err)
			return err;
	}

	/* enable channel done and error interrupts */
234 235 236 237 238 239 240 241 242
	if (is_sec1) {
		clrbits32(priv->reg + TALITOS_IMR, TALITOS1_IMR_INIT);
		clrbits32(priv->reg + TALITOS_IMR_LO, TALITOS1_IMR_LO_INIT);
		/* disable parity error check in DEU (erroneous? test vect.) */
		setbits32(priv->reg_deu + TALITOS_EUICR, TALITOS1_DEUICR_KPE);
	} else {
		setbits32(priv->reg + TALITOS_IMR, TALITOS2_IMR_INIT);
		setbits32(priv->reg + TALITOS_IMR_LO, TALITOS2_IMR_LO_INIT);
	}
243

244 245
	/* disable integrity check error interrupts (use writeback instead) */
	if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
246
		setbits32(priv->reg_mdeu + TALITOS_EUICR_LO,
247 248
		          TALITOS_MDEUICR_LO_ICE);

249 250 251 252 253 254
	return 0;
}

/**
 * talitos_submit - submits a descriptor to the device for processing
 * @dev:	the SEC device to be used
255
 * @ch:		the SEC device channel to be used
256 257 258 259 260 261 262 263
 * @desc:	the descriptor to be processed by the device
 * @callback:	whom to call when processing is complete
 * @context:	a handle for use by caller (optional)
 *
 * desc must contain valid dma-mapped (bus physical) address pointers.
 * callback must check err and feedback in descriptor header
 * for device processing status.
 */
264 265 266 267 268
int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc,
		   void (*callback)(struct device *dev,
				    struct talitos_desc *desc,
				    void *context, int error),
		   void *context)
269 270 271
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	struct talitos_request *request;
272
	unsigned long flags;
273
	int head;
274
	bool is_sec1 = has_ftr_sec1(priv);
275

276
	spin_lock_irqsave(&priv->chan[ch].head_lock, flags);
277

278
	if (!atomic_inc_not_zero(&priv->chan[ch].submit_count)) {
279
		/* h/w fifo is full */
280
		spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
281 282 283
		return -EAGAIN;
	}

284 285
	head = priv->chan[ch].head;
	request = &priv->chan[ch].fifo[head];
286

287
	/* map descriptor and save caller data */
288 289 290 291 292 293 294 295 296 297 298
	if (is_sec1) {
		desc->hdr1 = desc->hdr;
		desc->next_desc = 0;
		request->dma_desc = dma_map_single(dev, &desc->hdr1,
						   TALITOS_DESC_SIZE,
						   DMA_BIDIRECTIONAL);
	} else {
		request->dma_desc = dma_map_single(dev, desc,
						   TALITOS_DESC_SIZE,
						   DMA_BIDIRECTIONAL);
	}
299 300 301 302
	request->callback = callback;
	request->context = context;

	/* increment fifo head */
303
	priv->chan[ch].head = (priv->chan[ch].head + 1) & (priv->fifo_len - 1);
304 305 306 307 308 309

	smp_wmb();
	request->desc = desc;

	/* GO! */
	wmb();
310 311 312
	out_be32(priv->chan[ch].reg + TALITOS_FF,
		 upper_32_bits(request->dma_desc));
	out_be32(priv->chan[ch].reg + TALITOS_FF_LO,
313
		 lower_32_bits(request->dma_desc));
314

315
	spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
316 317 318

	return -EINPROGRESS;
}
319
EXPORT_SYMBOL(talitos_submit);
320 321 322 323 324 325 326 327 328 329

/*
 * process what was done, notify callback of error if not
 */
static void flush_channel(struct device *dev, int ch, int error, int reset_ch)
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	struct talitos_request *request, saved_req;
	unsigned long flags;
	int tail, status;
330
	bool is_sec1 = has_ftr_sec1(priv);
331

332
	spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
333

334 335
	tail = priv->chan[ch].tail;
	while (priv->chan[ch].fifo[tail].desc) {
336 337
		__be32 hdr;

338
		request = &priv->chan[ch].fifo[tail];
339 340 341

		/* descriptors with their done bits set don't get the error */
		rmb();
342 343 344
		hdr = is_sec1 ? request->desc->hdr1 : request->desc->hdr;

		if ((hdr & DESC_HDR_DONE) == DESC_HDR_DONE)
345
			status = 0;
346
		else
347 348 349 350 351 352
			if (!error)
				break;
			else
				status = error;

		dma_unmap_single(dev, request->dma_desc,
353
				 TALITOS_DESC_SIZE,
354
				 DMA_BIDIRECTIONAL);
355 356 357 358 359 360 361 362 363 364 365

		/* copy entries so we can call callback outside lock */
		saved_req.desc = request->desc;
		saved_req.callback = request->callback;
		saved_req.context = request->context;

		/* release request entry in fifo */
		smp_wmb();
		request->desc = NULL;

		/* increment fifo tail */
366
		priv->chan[ch].tail = (tail + 1) & (priv->fifo_len - 1);
367

368
		spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
369

370
		atomic_dec(&priv->chan[ch].submit_count);
371

372 373 374 375 376
		saved_req.callback(dev, saved_req.desc, saved_req.context,
				   status);
		/* channel may resume processing in single desc error case */
		if (error && !reset_ch && status == error)
			return;
377 378
		spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
		tail = priv->chan[ch].tail;
379 380
	}

381
	spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
382 383 384 385 386
}

/*
 * process completed requests for channels that have done status
 */
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
#define DEF_TALITOS1_DONE(name, ch_done_mask)				\
static void talitos1_done_##name(unsigned long data)			\
{									\
	struct device *dev = (struct device *)data;			\
	struct talitos_private *priv = dev_get_drvdata(dev);		\
	unsigned long flags;						\
									\
	if (ch_done_mask & 0x10000000)					\
		flush_channel(dev, 0, 0, 0);			\
	if (priv->num_channels == 1)					\
		goto out;						\
	if (ch_done_mask & 0x40000000)					\
		flush_channel(dev, 1, 0, 0);			\
	if (ch_done_mask & 0x00010000)					\
		flush_channel(dev, 2, 0, 0);			\
	if (ch_done_mask & 0x00040000)					\
		flush_channel(dev, 3, 0, 0);			\
									\
out:									\
	/* At this point, all completed channels have been processed */	\
	/* Unmask done interrupts for channels completed later on. */	\
	spin_lock_irqsave(&priv->reg_lock, flags);			\
	clrbits32(priv->reg + TALITOS_IMR, ch_done_mask);		\
	clrbits32(priv->reg + TALITOS_IMR_LO, TALITOS1_IMR_LO_INIT);	\
	spin_unlock_irqrestore(&priv->reg_lock, flags);			\
}

DEF_TALITOS1_DONE(4ch, TALITOS1_ISR_4CHDONE)

#define DEF_TALITOS2_DONE(name, ch_done_mask)				\
static void talitos2_done_##name(unsigned long data)			\
418 419 420
{									\
	struct device *dev = (struct device *)data;			\
	struct talitos_private *priv = dev_get_drvdata(dev);		\
421
	unsigned long flags;						\
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
									\
	if (ch_done_mask & 1)						\
		flush_channel(dev, 0, 0, 0);				\
	if (priv->num_channels == 1)					\
		goto out;						\
	if (ch_done_mask & (1 << 2))					\
		flush_channel(dev, 1, 0, 0);				\
	if (ch_done_mask & (1 << 4))					\
		flush_channel(dev, 2, 0, 0);				\
	if (ch_done_mask & (1 << 6))					\
		flush_channel(dev, 3, 0, 0);				\
									\
out:									\
	/* At this point, all completed channels have been processed */	\
	/* Unmask done interrupts for channels completed later on. */	\
437
	spin_lock_irqsave(&priv->reg_lock, flags);			\
438
	setbits32(priv->reg + TALITOS_IMR, ch_done_mask);		\
439
	setbits32(priv->reg + TALITOS_IMR_LO, TALITOS2_IMR_LO_INIT);	\
440
	spin_unlock_irqrestore(&priv->reg_lock, flags);			\
441
}
442 443 444 445

DEF_TALITOS2_DONE(4ch, TALITOS2_ISR_4CHDONE)
DEF_TALITOS2_DONE(ch0_2, TALITOS2_ISR_CH_0_2_DONE)
DEF_TALITOS2_DONE(ch1_3, TALITOS2_ISR_CH_1_3_DONE)
446 447 448 449

/*
 * locate current (offending) descriptor
 */
450
static u32 current_desc_hdr(struct device *dev, int ch)
451 452
{
	struct talitos_private *priv = dev_get_drvdata(dev);
453
	int tail, iter;
454 455
	dma_addr_t cur_desc;

456 457
	cur_desc = ((u64)in_be32(priv->chan[ch].reg + TALITOS_CDPR)) << 32;
	cur_desc |= in_be32(priv->chan[ch].reg + TALITOS_CDPR_LO);
458

459 460 461 462 463 464 465 466 467 468 469
	if (!cur_desc) {
		dev_err(dev, "CDPR is NULL, giving up search for offending descriptor\n");
		return 0;
	}

	tail = priv->chan[ch].tail;

	iter = tail;
	while (priv->chan[ch].fifo[iter].dma_desc != cur_desc) {
		iter = (iter + 1) & (priv->fifo_len - 1);
		if (iter == tail) {
470
			dev_err(dev, "couldn't locate current descriptor\n");
471
			return 0;
472 473 474
		}
	}

475
	return priv->chan[ch].fifo[iter].desc->hdr;
476 477 478 479 480
}

/*
 * user diagnostics; report root cause of error based on execution unit status
 */
481
static void report_eu_error(struct device *dev, int ch, u32 desc_hdr)
482 483 484 485
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	int i;

486
	if (!desc_hdr)
487
		desc_hdr = in_be32(priv->chan[ch].reg + TALITOS_DESCBUF);
488 489

	switch (desc_hdr & DESC_HDR_SEL0_MASK) {
490 491
	case DESC_HDR_SEL0_AFEU:
		dev_err(dev, "AFEUISR 0x%08x_%08x\n",
492 493
			in_be32(priv->reg_afeu + TALITOS_EUISR),
			in_be32(priv->reg_afeu + TALITOS_EUISR_LO));
494 495 496
		break;
	case DESC_HDR_SEL0_DEU:
		dev_err(dev, "DEUISR 0x%08x_%08x\n",
497 498
			in_be32(priv->reg_deu + TALITOS_EUISR),
			in_be32(priv->reg_deu + TALITOS_EUISR_LO));
499 500 501 502
		break;
	case DESC_HDR_SEL0_MDEUA:
	case DESC_HDR_SEL0_MDEUB:
		dev_err(dev, "MDEUISR 0x%08x_%08x\n",
503 504
			in_be32(priv->reg_mdeu + TALITOS_EUISR),
			in_be32(priv->reg_mdeu + TALITOS_EUISR_LO));
505 506 507
		break;
	case DESC_HDR_SEL0_RNG:
		dev_err(dev, "RNGUISR 0x%08x_%08x\n",
508 509
			in_be32(priv->reg_rngu + TALITOS_ISR),
			in_be32(priv->reg_rngu + TALITOS_ISR_LO));
510 511 512
		break;
	case DESC_HDR_SEL0_PKEU:
		dev_err(dev, "PKEUISR 0x%08x_%08x\n",
513 514
			in_be32(priv->reg_pkeu + TALITOS_EUISR),
			in_be32(priv->reg_pkeu + TALITOS_EUISR_LO));
515 516 517
		break;
	case DESC_HDR_SEL0_AESU:
		dev_err(dev, "AESUISR 0x%08x_%08x\n",
518 519
			in_be32(priv->reg_aesu + TALITOS_EUISR),
			in_be32(priv->reg_aesu + TALITOS_EUISR_LO));
520 521 522
		break;
	case DESC_HDR_SEL0_CRCU:
		dev_err(dev, "CRCUISR 0x%08x_%08x\n",
523 524
			in_be32(priv->reg_crcu + TALITOS_EUISR),
			in_be32(priv->reg_crcu + TALITOS_EUISR_LO));
525 526 527
		break;
	case DESC_HDR_SEL0_KEU:
		dev_err(dev, "KEUISR 0x%08x_%08x\n",
528 529
			in_be32(priv->reg_pkeu + TALITOS_EUISR),
			in_be32(priv->reg_pkeu + TALITOS_EUISR_LO));
530 531 532
		break;
	}

533
	switch (desc_hdr & DESC_HDR_SEL1_MASK) {
534 535 536
	case DESC_HDR_SEL1_MDEUA:
	case DESC_HDR_SEL1_MDEUB:
		dev_err(dev, "MDEUISR 0x%08x_%08x\n",
537 538
			in_be32(priv->reg_mdeu + TALITOS_EUISR),
			in_be32(priv->reg_mdeu + TALITOS_EUISR_LO));
539 540 541
		break;
	case DESC_HDR_SEL1_CRCU:
		dev_err(dev, "CRCUISR 0x%08x_%08x\n",
542 543
			in_be32(priv->reg_crcu + TALITOS_EUISR),
			in_be32(priv->reg_crcu + TALITOS_EUISR_LO));
544 545 546 547 548
		break;
	}

	for (i = 0; i < 8; i++)
		dev_err(dev, "DESCBUF 0x%08x_%08x\n",
549 550
			in_be32(priv->chan[ch].reg + TALITOS_DESCBUF + 8*i),
			in_be32(priv->chan[ch].reg + TALITOS_DESCBUF_LO + 8*i));
551 552 553 554 555
}

/*
 * recover from error interrupts
 */
556
static void talitos_error(struct device *dev, u32 isr, u32 isr_lo)
557 558 559
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	unsigned int timeout = TALITOS_TIMEOUT;
560
	int ch, error, reset_dev = 0;
561
	u32 v_lo;
562 563
	bool is_sec1 = has_ftr_sec1(priv);
	int reset_ch = is_sec1 ? 1 : 0; /* only SEC2 supports continuation */
564 565 566

	for (ch = 0; ch < priv->num_channels; ch++) {
		/* skip channels without errors */
567 568 569 570 571 572 573 574
		if (is_sec1) {
			/* bits 29, 31, 17, 19 */
			if (!(isr & (1 << (29 + (ch & 1) * 2 - (ch & 2) * 6))))
				continue;
		} else {
			if (!(isr & (1 << (ch * 2 + 1))))
				continue;
		}
575 576 577

		error = -EINVAL;

578
		v_lo = in_be32(priv->chan[ch].reg + TALITOS_CCPSR_LO);
579 580 581 582 583 584 585 586 587 588 589 590 591 592

		if (v_lo & TALITOS_CCPSR_LO_DOF) {
			dev_err(dev, "double fetch fifo overflow error\n");
			error = -EAGAIN;
			reset_ch = 1;
		}
		if (v_lo & TALITOS_CCPSR_LO_SOF) {
			/* h/w dropped descriptor */
			dev_err(dev, "single fetch fifo overflow error\n");
			error = -EAGAIN;
		}
		if (v_lo & TALITOS_CCPSR_LO_MDTE)
			dev_err(dev, "master data transfer error\n");
		if (v_lo & TALITOS_CCPSR_LO_SGDLZ)
593 594
			dev_err(dev, is_sec1 ? "pointeur not complete error\n"
					     : "s/g data length zero error\n");
595
		if (v_lo & TALITOS_CCPSR_LO_FPZ)
596 597
			dev_err(dev, is_sec1 ? "parity error\n"
					     : "fetch pointer zero error\n");
598 599 600
		if (v_lo & TALITOS_CCPSR_LO_IDH)
			dev_err(dev, "illegal descriptor header error\n");
		if (v_lo & TALITOS_CCPSR_LO_IEU)
601 602
			dev_err(dev, is_sec1 ? "static assignment error\n"
					     : "invalid exec unit error\n");
603
		if (v_lo & TALITOS_CCPSR_LO_EU)
604
			report_eu_error(dev, ch, current_desc_hdr(dev, ch));
605 606 607 608 609 610 611 612 613 614
		if (!is_sec1) {
			if (v_lo & TALITOS_CCPSR_LO_GB)
				dev_err(dev, "gather boundary error\n");
			if (v_lo & TALITOS_CCPSR_LO_GRL)
				dev_err(dev, "gather return/length error\n");
			if (v_lo & TALITOS_CCPSR_LO_SB)
				dev_err(dev, "scatter boundary error\n");
			if (v_lo & TALITOS_CCPSR_LO_SRL)
				dev_err(dev, "scatter return/length error\n");
		}
615 616 617 618 619 620

		flush_channel(dev, ch, error, reset_ch);

		if (reset_ch) {
			reset_channel(dev, ch);
		} else {
621
			setbits32(priv->chan[ch].reg + TALITOS_CCCR,
622
				  TALITOS2_CCCR_CONT);
623 624
			setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, 0);
			while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) &
625
			       TALITOS2_CCCR_CONT) && --timeout)
626 627 628 629 630 631 632 633
				cpu_relax();
			if (timeout == 0) {
				dev_err(dev, "failed to restart channel %d\n",
					ch);
				reset_dev = 1;
			}
		}
	}
634 635 636 637 638 639 640 641
	if (reset_dev || (is_sec1 && isr & ~TALITOS1_ISR_4CHERR) ||
	    (!is_sec1 && isr & ~TALITOS2_ISR_4CHERR) || isr_lo) {
		if (is_sec1 && (isr_lo & TALITOS1_ISR_TEA_ERR))
			dev_err(dev, "TEA error: ISR 0x%08x_%08x\n",
				isr, isr_lo);
		else
			dev_err(dev, "done overflow, internal time out, or "
				"rngu error: ISR 0x%08x_%08x\n", isr, isr_lo);
642 643 644 645 646 647 648 649 650 651

		/* purge request queues */
		for (ch = 0; ch < priv->num_channels; ch++)
			flush_channel(dev, ch, -EIO, 1);

		/* reset and reinitialize the device */
		init_device(dev);
	}
}

652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
#define DEF_TALITOS1_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet)	       \
static irqreturn_t talitos1_interrupt_##name(int irq, void *data)	       \
{									       \
	struct device *dev = data;					       \
	struct talitos_private *priv = dev_get_drvdata(dev);		       \
	u32 isr, isr_lo;						       \
	unsigned long flags;						       \
									       \
	spin_lock_irqsave(&priv->reg_lock, flags);			       \
	isr = in_be32(priv->reg + TALITOS_ISR);				       \
	isr_lo = in_be32(priv->reg + TALITOS_ISR_LO);			       \
	/* Acknowledge interrupt */					       \
	out_be32(priv->reg + TALITOS_ICR, isr & (ch_done_mask | ch_err_mask)); \
	out_be32(priv->reg + TALITOS_ICR_LO, isr_lo);			       \
									       \
	if (unlikely(isr & ch_err_mask || isr_lo & TALITOS1_IMR_LO_INIT)) {    \
		spin_unlock_irqrestore(&priv->reg_lock, flags);		       \
		talitos_error(dev, isr & ch_err_mask, isr_lo);		       \
	}								       \
	else {								       \
		if (likely(isr & ch_done_mask)) {			       \
			/* mask further done interrupts. */		       \
			setbits32(priv->reg + TALITOS_IMR, ch_done_mask);      \
			/* done_task will unmask done interrupts at exit */    \
			tasklet_schedule(&priv->done_task[tlet]);	       \
		}							       \
		spin_unlock_irqrestore(&priv->reg_lock, flags);		       \
	}								       \
									       \
	return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED :  \
								IRQ_NONE;      \
}

DEF_TALITOS1_INTERRUPT(4ch, TALITOS1_ISR_4CHDONE, TALITOS1_ISR_4CHERR, 0)

#define DEF_TALITOS2_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet)	       \
static irqreturn_t talitos2_interrupt_##name(int irq, void *data)	       \
689 690 691 692
{									       \
	struct device *dev = data;					       \
	struct talitos_private *priv = dev_get_drvdata(dev);		       \
	u32 isr, isr_lo;						       \
693
	unsigned long flags;						       \
694
									       \
695
	spin_lock_irqsave(&priv->reg_lock, flags);			       \
696 697 698 699 700 701
	isr = in_be32(priv->reg + TALITOS_ISR);				       \
	isr_lo = in_be32(priv->reg + TALITOS_ISR_LO);			       \
	/* Acknowledge interrupt */					       \
	out_be32(priv->reg + TALITOS_ICR, isr & (ch_done_mask | ch_err_mask)); \
	out_be32(priv->reg + TALITOS_ICR_LO, isr_lo);			       \
									       \
702 703 704 705 706
	if (unlikely(isr & ch_err_mask || isr_lo)) {			       \
		spin_unlock_irqrestore(&priv->reg_lock, flags);		       \
		talitos_error(dev, isr & ch_err_mask, isr_lo);		       \
	}								       \
	else {								       \
707 708 709 710 711 712
		if (likely(isr & ch_done_mask)) {			       \
			/* mask further done interrupts. */		       \
			clrbits32(priv->reg + TALITOS_IMR, ch_done_mask);      \
			/* done_task will unmask done interrupts at exit */    \
			tasklet_schedule(&priv->done_task[tlet]);	       \
		}							       \
713 714
		spin_unlock_irqrestore(&priv->reg_lock, flags);		       \
	}								       \
715 716 717
									       \
	return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED :  \
								IRQ_NONE;      \
718
}
719 720 721 722 723 724

DEF_TALITOS2_INTERRUPT(4ch, TALITOS2_ISR_4CHDONE, TALITOS2_ISR_4CHERR, 0)
DEF_TALITOS2_INTERRUPT(ch0_2, TALITOS2_ISR_CH_0_2_DONE, TALITOS2_ISR_CH_0_2_ERR,
		       0)
DEF_TALITOS2_INTERRUPT(ch1_3, TALITOS2_ISR_CH_1_3_DONE, TALITOS2_ISR_CH_1_3_ERR,
		       1)
725 726 727 728 729 730 731 732 733 734 735 736

/*
 * hwrng
 */
static int talitos_rng_data_present(struct hwrng *rng, int wait)
{
	struct device *dev = (struct device *)rng->priv;
	struct talitos_private *priv = dev_get_drvdata(dev);
	u32 ofl;
	int i;

	for (i = 0; i < 20; i++) {
737
		ofl = in_be32(priv->reg_rngu + TALITOS_EUSR_LO) &
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752
		      TALITOS_RNGUSR_LO_OFL;
		if (ofl || !wait)
			break;
		udelay(10);
	}

	return !!ofl;
}

static int talitos_rng_data_read(struct hwrng *rng, u32 *data)
{
	struct device *dev = (struct device *)rng->priv;
	struct talitos_private *priv = dev_get_drvdata(dev);

	/* rng fifo requires 64-bit accesses */
753 754
	*data = in_be32(priv->reg_rngu + TALITOS_EU_FIFO);
	*data = in_be32(priv->reg_rngu + TALITOS_EU_FIFO_LO);
755 756 757 758 759 760 761 762 763 764

	return sizeof(u32);
}

static int talitos_rng_init(struct hwrng *rng)
{
	struct device *dev = (struct device *)rng->priv;
	struct talitos_private *priv = dev_get_drvdata(dev);
	unsigned int timeout = TALITOS_TIMEOUT;

765 766 767
	setbits32(priv->reg_rngu + TALITOS_EURCR_LO, TALITOS_RNGURCR_LO_SR);
	while (!(in_be32(priv->reg_rngu + TALITOS_EUSR_LO)
		 & TALITOS_RNGUSR_LO_RD)
768 769 770 771 772 773 774 775
	       && --timeout)
		cpu_relax();
	if (timeout == 0) {
		dev_err(dev, "failed to reset rng hw\n");
		return -ENODEV;
	}

	/* start generating */
776
	setbits32(priv->reg_rngu + TALITOS_EUDSR_LO, 0);
777 778 779 780 781 782 783

	return 0;
}

static int talitos_register_rng(struct device *dev)
{
	struct talitos_private *priv = dev_get_drvdata(dev);
784
	int err;
785 786 787 788 789 790 791

	priv->rng.name		= dev_driver_string(dev),
	priv->rng.init		= talitos_rng_init,
	priv->rng.data_present	= talitos_rng_data_present,
	priv->rng.data_read	= talitos_rng_data_read,
	priv->rng.priv		= (unsigned long)dev;

792 793 794 795 796
	err = hwrng_register(&priv->rng);
	if (!err)
		priv->rng_registered = true;

	return err;
797 798 799 800 801 802
}

static void talitos_unregister_rng(struct device *dev)
{
	struct talitos_private *priv = dev_get_drvdata(dev);

803 804 805
	if (!priv->rng_registered)
		return;

806
	hwrng_unregister(&priv->rng);
807
	priv->rng_registered = false;
808 809 810 811 812 813
}

/*
 * crypto alg
 */
#define TALITOS_CRA_PRIORITY		3000
814
#define TALITOS_MAX_KEY_SIZE		96
815
#define TALITOS_MAX_IV_LENGTH		16 /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */
816

817 818
struct talitos_ctx {
	struct device *dev;
819
	int ch;
820 821
	__be32 desc_hdr_template;
	u8 key[TALITOS_MAX_KEY_SIZE];
822
	u8 iv[TALITOS_MAX_IV_LENGTH];
823 824 825 826 827
	unsigned int keylen;
	unsigned int enckeylen;
	unsigned int authkeylen;
};

828 829 830 831
#define HASH_MAX_BLOCK_SIZE		SHA512_BLOCK_SIZE
#define TALITOS_MDEU_MAX_CONTEXT_SIZE	TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512

struct talitos_ahash_req_ctx {
832
	u32 hw_context[TALITOS_MDEU_MAX_CONTEXT_SIZE / sizeof(u32)];
833 834 835
	unsigned int hw_context_size;
	u8 buf[HASH_MAX_BLOCK_SIZE];
	u8 bufnext[HASH_MAX_BLOCK_SIZE];
836
	unsigned int swinit;
837 838 839
	unsigned int first;
	unsigned int last;
	unsigned int to_hash_later;
840
	unsigned int nbuf;
841 842 843 844
	struct scatterlist bufsl[2];
	struct scatterlist *psrc;
};

845 846 847 848 849 850 851 852 853 854
struct talitos_export_state {
	u32 hw_context[TALITOS_MDEU_MAX_CONTEXT_SIZE / sizeof(u32)];
	u8 buf[HASH_MAX_BLOCK_SIZE];
	unsigned int swinit;
	unsigned int first;
	unsigned int last;
	unsigned int to_hash_later;
	unsigned int nbuf;
};

855 856
static int aead_setkey(struct crypto_aead *authenc,
		       const u8 *key, unsigned int keylen)
857 858
{
	struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
859
	struct crypto_authenc_keys keys;
860

861
	if (crypto_authenc_extractkeys(&keys, key, keylen) != 0)
862 863
		goto badkey;

864
	if (keys.authkeylen + keys.enckeylen > TALITOS_MAX_KEY_SIZE)
865 866
		goto badkey;

867 868
	memcpy(ctx->key, keys.authkey, keys.authkeylen);
	memcpy(&ctx->key[keys.authkeylen], keys.enckey, keys.enckeylen);
869

870 871 872
	ctx->keylen = keys.authkeylen + keys.enckeylen;
	ctx->enckeylen = keys.enckeylen;
	ctx->authkeylen = keys.authkeylen;
873 874 875 876 877 878 879 880 881

	return 0;

badkey:
	crypto_aead_set_flags(authenc, CRYPTO_TFM_RES_BAD_KEY_LEN);
	return -EINVAL;
}

/*
882
 * talitos_edesc - s/w-extended descriptor
883 884
 * @src_nents: number of segments in input scatterlist
 * @dst_nents: number of segments in output scatterlist
885
 * @icv_ool: whether ICV is out-of-line
886
 * @iv_dma: dma address of iv for checking continuity and link table
887
 * @dma_len: length of dma mapped link_tbl space
888
 * @dma_link_tbl: bus physical address of link_tbl/buf
889
 * @desc: h/w descriptor
890 891
 * @link_tbl: input and output h/w link tables (if {src,dst}_nents > 1) (SEC2)
 * @buf: input and output buffeur (if {src,dst}_nents > 1) (SEC1)
892 893 894 895 896
 *
 * if decrypting (with authcheck), or either one of src_nents or dst_nents
 * is greater than 1, an integrity check value is concatenated to the end
 * of link_tbl data
 */
897
struct talitos_edesc {
898 899
	int src_nents;
	int dst_nents;
900
	bool icv_ool;
901
	dma_addr_t iv_dma;
902 903 904
	int dma_len;
	dma_addr_t dma_link_tbl;
	struct talitos_desc desc;
905 906 907 908
	union {
		struct talitos_ptr link_tbl[0];
		u8 buf[0];
	};
909 910
};

911 912 913 914 915 916 917 918 919
static void talitos_sg_unmap(struct device *dev,
			     struct talitos_edesc *edesc,
			     struct scatterlist *src,
			     struct scatterlist *dst)
{
	unsigned int src_nents = edesc->src_nents ? : 1;
	unsigned int dst_nents = edesc->dst_nents ? : 1;

	if (src != dst) {
920
		dma_unmap_sg(dev, src, src_nents, DMA_TO_DEVICE);
921

922
		if (dst) {
923
			dma_unmap_sg(dev, dst, dst_nents, DMA_FROM_DEVICE);
924
		}
925
	} else
926
		dma_unmap_sg(dev, src, src_nents, DMA_BIDIRECTIONAL);
927 928
}

929
static void ipsec_esp_unmap(struct device *dev,
930
			    struct talitos_edesc *edesc,
931 932 933 934 935 936 937
			    struct aead_request *areq)
{
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[6], DMA_FROM_DEVICE);
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[3], DMA_TO_DEVICE);
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[0], DMA_TO_DEVICE);

938
	talitos_sg_unmap(dev, edesc, areq->src, areq->dst);
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953

	if (edesc->dma_len)
		dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
				 DMA_BIDIRECTIONAL);
}

/*
 * ipsec_esp descriptor callbacks
 */
static void ipsec_esp_encrypt_done(struct device *dev,
				   struct talitos_desc *desc, void *context,
				   int err)
{
	struct aead_request *areq = context;
	struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
954
	unsigned int authsize = crypto_aead_authsize(authenc);
955
	struct talitos_edesc *edesc;
956 957 958
	struct scatterlist *sg;
	void *icvdata;

959 960
	edesc = container_of(desc, struct talitos_edesc, desc);

961 962 963
	ipsec_esp_unmap(dev, edesc, areq);

	/* copy the generated ICV to dst */
964
	if (edesc->icv_ool) {
965
		icvdata = &edesc->link_tbl[edesc->src_nents +
966
					   edesc->dst_nents + 2];
967
		sg = sg_last(areq->dst, edesc->dst_nents);
968 969
		memcpy((char *)sg_virt(sg) + sg->length - authsize,
		       icvdata, authsize);
970 971 972 973 974 975 976
	}

	kfree(edesc);

	aead_request_complete(areq, err);
}

977
static void ipsec_esp_decrypt_swauth_done(struct device *dev,
978 979
					  struct talitos_desc *desc,
					  void *context, int err)
980 981 982
{
	struct aead_request *req = context;
	struct crypto_aead *authenc = crypto_aead_reqtfm(req);
983
	unsigned int authsize = crypto_aead_authsize(authenc);
984
	struct talitos_edesc *edesc;
985
	struct scatterlist *sg;
986
	char *oicv, *icv;
987

988 989
	edesc = container_of(desc, struct talitos_edesc, desc);

990 991 992 993 994
	ipsec_esp_unmap(dev, edesc, req);

	if (!err) {
		/* auth check */
		sg = sg_last(req->dst, edesc->dst_nents ? : 1);
995 996 997 998 999 1000 1001 1002 1003 1004
		icv = (char *)sg_virt(sg) + sg->length - authsize;

		if (edesc->dma_len) {
			oicv = (char *)&edesc->link_tbl[edesc->src_nents +
							edesc->dst_nents + 2];
			if (edesc->icv_ool)
				icv = oicv + authsize;
		} else
			oicv = (char *)&edesc->link_tbl[0];

1005
		err = crypto_memneq(oicv, icv, authsize) ? -EBADMSG : 0;
1006 1007 1008 1009 1010 1011 1012
	}

	kfree(edesc);

	aead_request_complete(req, err);
}

1013
static void ipsec_esp_decrypt_hwauth_done(struct device *dev,
1014 1015
					  struct talitos_desc *desc,
					  void *context, int err)
1016 1017
{
	struct aead_request *req = context;
1018 1019 1020
	struct talitos_edesc *edesc;

	edesc = container_of(desc, struct talitos_edesc, desc);
1021 1022 1023 1024

	ipsec_esp_unmap(dev, edesc, req);

	/* check ICV auth status */
1025 1026 1027
	if (!err && ((desc->hdr_lo & DESC_HDR_LO_ICCR1_MASK) !=
		     DESC_HDR_LO_ICCR1_PASS))
		err = -EBADMSG;
1028 1029 1030 1031 1032 1033

	kfree(edesc);

	aead_request_complete(req, err);
}

1034 1035 1036 1037
/*
 * convert scatterlist to SEC h/w link table format
 * stop at cryptlen bytes
 */
1038 1039 1040
static int sg_to_link_tbl_offset(struct scatterlist *sg, int sg_count,
				 unsigned int offset, int cryptlen,
				 struct talitos_ptr *link_tbl_ptr)
1041
{
1042
	int n_sg = sg_count;
1043
	int count = 0;
1044

1045 1046
	while (cryptlen && sg && n_sg--) {
		unsigned int len = sg_dma_len(sg);
1047

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
		if (offset >= len) {
			offset -= len;
			goto next;
		}

		len -= offset;

		if (len > cryptlen)
			len = cryptlen;

		to_talitos_ptr(link_tbl_ptr + count,
			       sg_dma_address(sg) + offset, 0);
1060 1061
		to_talitos_ptr_len(link_tbl_ptr + count, len, 0);
		to_talitos_ptr_ext_set(link_tbl_ptr + count, 0, 0);
1062 1063 1064 1065 1066 1067
		count++;
		cryptlen -= len;
		offset = 0;

next:
		sg = sg_next(sg);
1068
	}
1069 1070

	/* tag end of link table */
1071
	if (count > 0)
1072 1073
		to_talitos_ptr_ext_set(link_tbl_ptr + count - 1,
				       DESC_PTR_LNKTBL_RETURN, 0);
1074

1075 1076 1077 1078 1079 1080 1081 1082 1083
	return count;
}

static inline int sg_to_link_tbl(struct scatterlist *sg, int sg_count,
				 int cryptlen,
				 struct talitos_ptr *link_tbl_ptr)
{
	return sg_to_link_tbl_offset(sg, sg_count, 0, cryptlen,
				     link_tbl_ptr);
1084 1085 1086 1087 1088
}

/*
 * fill in and submit ipsec_esp descriptor
 */
1089
static int ipsec_esp(struct talitos_edesc *edesc, struct aead_request *areq,
1090 1091 1092
		     void (*callback)(struct device *dev,
				      struct talitos_desc *desc,
				      void *context, int error))
1093 1094
{
	struct crypto_aead *aead = crypto_aead_reqtfm(areq);
1095
	unsigned int authsize = crypto_aead_authsize(aead);
1096 1097 1098 1099
	struct talitos_ctx *ctx = crypto_aead_ctx(aead);
	struct device *dev = ctx->dev;
	struct talitos_desc *desc = &edesc->desc;
	unsigned int cryptlen = areq->cryptlen;
1100
	unsigned int ivsize = crypto_aead_ivsize(aead);
1101
	int tbl_off = 0;
1102
	int sg_count, ret;
1103
	int sg_link_tbl_len;
1104 1105 1106

	/* hmac key */
	map_single_talitos_ptr(dev, &desc->ptr[0], ctx->authkeylen, &ctx->key,
1107
			       DMA_TO_DEVICE);
1108

1109 1110 1111
	sg_count = dma_map_sg(dev, areq->src, edesc->src_nents ?: 1,
			      (areq->src == areq->dst) ? DMA_BIDIRECTIONAL
							   : DMA_TO_DEVICE);
1112
	/* hmac data */
1113
	to_talitos_ptr_len(&desc->ptr[1], areq->assoclen, 0);
1114 1115 1116 1117
	if (sg_count > 1 &&
	    (ret = sg_to_link_tbl_offset(areq->src, sg_count, 0,
					 areq->assoclen,
					 &edesc->link_tbl[tbl_off])) > 1) {
1118
		to_talitos_ptr(&desc->ptr[1], edesc->dma_link_tbl + tbl_off *
1119
			       sizeof(struct talitos_ptr), 0);
1120
		to_talitos_ptr_ext_set(&desc->ptr[1], DESC_PTR_LNKTBL_JUMP, 0);
1121 1122 1123

		dma_sync_single_for_device(dev, edesc->dma_link_tbl,
					   edesc->dma_len, DMA_BIDIRECTIONAL);
1124 1125

		tbl_off += ret;
1126
	} else {
1127
		to_talitos_ptr(&desc->ptr[1], sg_dma_address(areq->src), 0);
1128
		to_talitos_ptr_ext_set(&desc->ptr[1], 0, 0);
1129 1130
	}

1131
	/* cipher iv */
1132
	to_talitos_ptr(&desc->ptr[2], edesc->iv_dma, 0);
1133 1134
	to_talitos_ptr_len(&desc->ptr[2], ivsize, 0);
	to_talitos_ptr_ext_set(&desc->ptr[2], 0, 0);
1135 1136 1137

	/* cipher key */
	map_single_talitos_ptr(dev, &desc->ptr[3], ctx->enckeylen,
1138
			       (char *)&ctx->key + ctx->authkeylen,
1139 1140 1141 1142 1143 1144 1145 1146
			       DMA_TO_DEVICE);

	/*
	 * cipher in
	 * map and adjust cipher len to aead request cryptlen.
	 * extent is bytes of HMAC postpended to ciphertext,
	 * typically 12 for ipsec
	 */
1147 1148
	to_talitos_ptr_len(&desc->ptr[4], cryptlen, 0);
	to_talitos_ptr_ext_set(&desc->ptr[4], authsize, 0);
1149

1150 1151 1152 1153
	sg_link_tbl_len = cryptlen;
	if (edesc->desc.hdr & DESC_HDR_MODE1_MDEU_CICV)
		sg_link_tbl_len += authsize;

1154 1155 1156 1157 1158 1159 1160
	if (sg_count == 1) {
		to_talitos_ptr(&desc->ptr[4], sg_dma_address(areq->src) +
			       areq->assoclen, 0);
	} else if ((ret = sg_to_link_tbl_offset(areq->src, sg_count,
						areq->assoclen, sg_link_tbl_len,
						&edesc->link_tbl[tbl_off])) >
		   1) {
1161
		to_talitos_ptr_ext_or(&desc->ptr[4], DESC_PTR_LNKTBL_JUMP, 0);
1162 1163 1164 1165 1166 1167
		to_talitos_ptr(&desc->ptr[4], edesc->dma_link_tbl +
					      tbl_off *
					      sizeof(struct talitos_ptr), 0);
		dma_sync_single_for_device(dev, edesc->dma_link_tbl,
					   edesc->dma_len,
					   DMA_BIDIRECTIONAL);
1168 1169 1170 1171
		tbl_off += ret;
	} else {
		copy_talitos_ptr(&desc->ptr[4], &edesc->link_tbl[tbl_off], 0);
	}
1172 1173

	/* cipher out */
1174 1175
	to_talitos_ptr_len(&desc->ptr[5], cryptlen, 0);
	to_talitos_ptr_ext_set(&desc->ptr[5], authsize, 0);
1176

1177
	if (areq->src != areq->dst)
1178 1179
		sg_count = dma_map_sg(dev, areq->dst, edesc->dst_nents ? : 1,
				      DMA_FROM_DEVICE);
1180

1181 1182
	edesc->icv_ool = false;

1183 1184 1185 1186 1187
	if (sg_count == 1) {
		to_talitos_ptr(&desc->ptr[5], sg_dma_address(areq->dst) +
			       areq->assoclen, 0);
	} else if ((sg_count =
			sg_to_link_tbl_offset(areq->dst, sg_count,
1188
					      areq->assoclen, cryptlen,
1189
					      &edesc->link_tbl[tbl_off])) > 1) {
1190
		struct talitos_ptr *tbl_ptr = &edesc->link_tbl[tbl_off];
1191

1192
		to_talitos_ptr(&desc->ptr[5], edesc->dma_link_tbl +
1193
			       tbl_off * sizeof(struct talitos_ptr), 0);
1194

1195
		/* Add an entry to the link table for ICV data */
1196
		tbl_ptr += sg_count - 1;
1197
		to_talitos_ptr_ext_set(tbl_ptr, 0, 0);
1198
		tbl_ptr++;
1199 1200
		to_talitos_ptr_ext_set(tbl_ptr, DESC_PTR_LNKTBL_RETURN, 0);
		to_talitos_ptr_len(tbl_ptr, authsize, 0);
1201 1202

		/* icv data follows link tables */
1203
		to_talitos_ptr(tbl_ptr, edesc->dma_link_tbl +
1204 1205 1206
					(edesc->src_nents + edesc->dst_nents +
					 2) * sizeof(struct talitos_ptr) +
					authsize, 0);
1207
		to_talitos_ptr_ext_or(&desc->ptr[5], DESC_PTR_LNKTBL_JUMP, 0);
1208 1209
		dma_sync_single_for_device(ctx->dev, edesc->dma_link_tbl,
					   edesc->dma_len, DMA_BIDIRECTIONAL);
1210 1211

		edesc->icv_ool = true;
1212 1213 1214
	} else {
		copy_talitos_ptr(&desc->ptr[5], &edesc->link_tbl[tbl_off], 0);
	}
1215 1216

	/* iv out */
1217
	map_single_talitos_ptr(dev, &desc->ptr[6], ivsize, ctx->iv,
1218 1219
			       DMA_FROM_DEVICE);

1220
	ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
1221 1222 1223 1224 1225
	if (ret != -EINPROGRESS) {
		ipsec_esp_unmap(dev, edesc, areq);
		kfree(edesc);
	}
	return ret;
1226 1227 1228
}

/*
1229
 * allocate and map the extended descriptor
1230
 */
1231 1232 1233
static struct talitos_edesc *talitos_edesc_alloc(struct device *dev,
						 struct scatterlist *src,
						 struct scatterlist *dst,
1234 1235
						 u8 *iv,
						 unsigned int assoclen,
1236 1237
						 unsigned int cryptlen,
						 unsigned int authsize,
1238
						 unsigned int ivsize,
1239
						 int icv_stashing,
1240 1241
						 u32 cryptoflags,
						 bool encrypt)
1242
{
1243
	struct talitos_edesc *edesc;
1244
	int src_nents, dst_nents, alloc_len, dma_len;
1245
	dma_addr_t iv_dma = 0;
1246
	gfp_t flags = cryptoflags & CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL :
1247
		      GFP_ATOMIC;
1248 1249 1250
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);
	int max_len = is_sec1 ? TALITOS1_MAX_DATA_LEN : TALITOS2_MAX_DATA_LEN;
1251
	void *err;
1252

1253
	if (cryptlen + authsize > max_len) {
1254
		dev_err(dev, "length exceeds h/w max limit\n");
1255 1256 1257
		return ERR_PTR(-EINVAL);
	}

1258
	if (ivsize)
1259 1260
		iv_dma = dma_map_single(dev, iv, ivsize, DMA_TO_DEVICE);

1261
	if (!dst || dst == src) {
1262 1263
		src_nents = sg_nents_for_len(src,
					     assoclen + cryptlen + authsize);
1264 1265 1266 1267 1268
		if (src_nents < 0) {
			dev_err(dev, "Invalid number of src SG.\n");
			err = ERR_PTR(-EINVAL);
			goto error_sg;
		}
1269 1270 1271
		src_nents = (src_nents == 1) ? 0 : src_nents;
		dst_nents = dst ? src_nents : 0;
	} else { /* dst && dst != src*/
1272 1273
		src_nents = sg_nents_for_len(src, assoclen + cryptlen +
						 (encrypt ? 0 : authsize));
1274 1275 1276 1277 1278
		if (src_nents < 0) {
			dev_err(dev, "Invalid number of src SG.\n");
			err = ERR_PTR(-EINVAL);
			goto error_sg;
		}
1279
		src_nents = (src_nents == 1) ? 0 : src_nents;
1280 1281
		dst_nents = sg_nents_for_len(dst, assoclen + cryptlen +
						 (encrypt ? authsize : 0));
1282 1283 1284 1285 1286
		if (dst_nents < 0) {
			dev_err(dev, "Invalid number of dst SG.\n");
			err = ERR_PTR(-EINVAL);
			goto error_sg;
		}
1287
		dst_nents = (dst_nents == 1) ? 0 : dst_nents;
1288 1289 1290 1291
	}

	/*
	 * allocate space for base edesc plus the link tables,
1292 1293
	 * allowing for two separate entries for AD and generated ICV (+ 2),
	 * and space for two sets of ICVs (stashed and generated)
1294
	 */
1295
	alloc_len = sizeof(struct talitos_edesc);
1296
	if (src_nents || dst_nents) {
1297
		if (is_sec1)
1298 1299
			dma_len = (src_nents ? cryptlen : 0) +
				  (dst_nents ? cryptlen : 0);
1300
		else
1301 1302
			dma_len = (src_nents + dst_nents + 2) *
				  sizeof(struct talitos_ptr) + authsize * 2;
1303 1304 1305
		alloc_len += dma_len;
	} else {
		dma_len = 0;
1306
		alloc_len += icv_stashing ? authsize : 0;
1307 1308
	}

1309
	edesc = kmalloc(alloc_len, GFP_DMA | flags);
1310
	if (!edesc) {
1311
		dev_err(dev, "could not allocate edescriptor\n");
1312 1313
		err = ERR_PTR(-ENOMEM);
		goto error_sg;
1314 1315 1316 1317
	}

	edesc->src_nents = src_nents;
	edesc->dst_nents = dst_nents;
1318
	edesc->iv_dma = iv_dma;
1319
	edesc->dma_len = dma_len;
1320 1321 1322 1323
	if (dma_len)
		edesc->dma_link_tbl = dma_map_single(dev, &edesc->link_tbl[0],
						     edesc->dma_len,
						     DMA_BIDIRECTIONAL);
1324 1325

	return edesc;
1326 1327 1328 1329
error_sg:
	if (iv_dma)
		dma_unmap_single(dev, iv_dma, ivsize, DMA_TO_DEVICE);
	return err;
1330 1331
}

1332
static struct talitos_edesc *aead_edesc_alloc(struct aead_request *areq, u8 *iv,
1333
					      int icv_stashing, bool encrypt)
1334 1335
{
	struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
1336
	unsigned int authsize = crypto_aead_authsize(authenc);
1337
	struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
1338
	unsigned int ivsize = crypto_aead_ivsize(authenc);
1339

1340
	return talitos_edesc_alloc(ctx->dev, areq->src, areq->dst,
1341
				   iv, areq->assoclen, areq->cryptlen,
1342
				   authsize, ivsize, icv_stashing,
1343
				   areq->base.flags, encrypt);
1344 1345
}

1346
static int aead_encrypt(struct aead_request *req)
1347 1348 1349
{
	struct crypto_aead *authenc = crypto_aead_reqtfm(req);
	struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
1350
	struct talitos_edesc *edesc;
1351 1352

	/* allocate extended descriptor */
1353
	edesc = aead_edesc_alloc(req, req->iv, 0, true);
1354 1355 1356 1357
	if (IS_ERR(edesc))
		return PTR_ERR(edesc);

	/* set encrypt */
1358
	edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
1359

1360
	return ipsec_esp(edesc, req, ipsec_esp_encrypt_done);
1361 1362
}

1363
static int aead_decrypt(struct aead_request *req)
1364 1365
{
	struct crypto_aead *authenc = crypto_aead_reqtfm(req);
1366
	unsigned int authsize = crypto_aead_authsize(authenc);
1367
	struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
1368
	struct talitos_private *priv = dev_get_drvdata(ctx->dev);
1369
	struct talitos_edesc *edesc;
1370 1371 1372 1373 1374 1375
	struct scatterlist *sg;
	void *icvdata;

	req->cryptlen -= authsize;

	/* allocate extended descriptor */
1376
	edesc = aead_edesc_alloc(req, req->iv, 1, false);
1377 1378 1379
	if (IS_ERR(edesc))
		return PTR_ERR(edesc);

1380
	if ((priv->features & TALITOS_FTR_HW_AUTH_CHECK) &&
1381 1382
	    ((!edesc->src_nents && !edesc->dst_nents) ||
	     priv->features & TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT)) {
1383

1384
		/* decrypt and check the ICV */
1385 1386
		edesc->desc.hdr = ctx->desc_hdr_template |
				  DESC_HDR_DIR_INBOUND |
1387
				  DESC_HDR_MODE1_MDEU_CICV;
1388

1389 1390
		/* reset integrity check result bits */
		edesc->desc.hdr_lo = 0;
1391

1392
		return ipsec_esp(edesc, req, ipsec_esp_decrypt_hwauth_done);
1393
	}
1394

1395 1396
	/* Have to check the ICV with software */
	edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1397

1398 1399
	/* stash incoming ICV for later cmp with ICV generated by the h/w */
	if (edesc->dma_len)
1400 1401
		icvdata = (char *)&edesc->link_tbl[edesc->src_nents +
						   edesc->dst_nents + 2];
1402 1403
	else
		icvdata = &edesc->link_tbl[0];
1404

1405
	sg = sg_last(req->src, edesc->src_nents ? : 1);
1406

1407
	memcpy(icvdata, (char *)sg_virt(sg) + sg->length - authsize, authsize);
1408

1409
	return ipsec_esp(edesc, req, ipsec_esp_decrypt_swauth_done);
1410 1411
}

1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
static int ablkcipher_setkey(struct crypto_ablkcipher *cipher,
			     const u8 *key, unsigned int keylen)
{
	struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);

	memcpy(&ctx->key, key, keylen);
	ctx->keylen = keylen;

	return 0;
}

1423 1424 1425 1426
static void unmap_sg_talitos_ptr(struct device *dev, struct scatterlist *src,
				 struct scatterlist *dst, unsigned int len,
				 struct talitos_edesc *edesc)
{
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);

	if (is_sec1) {
		if (!edesc->src_nents) {
			dma_unmap_sg(dev, src, 1,
				     dst != src ? DMA_TO_DEVICE
						: DMA_BIDIRECTIONAL);
		}
		if (dst && edesc->dst_nents) {
			dma_sync_single_for_device(dev,
						   edesc->dma_link_tbl + len,
						   len, DMA_FROM_DEVICE);
			sg_copy_from_buffer(dst, edesc->dst_nents ? : 1,
					    edesc->buf + len, len);
		} else if (dst && dst != src) {
			dma_unmap_sg(dev, dst, 1, DMA_FROM_DEVICE);
		}
	} else {
		talitos_sg_unmap(dev, edesc, src, dst);
	}
1448 1449
}

1450 1451 1452 1453 1454
static void common_nonsnoop_unmap(struct device *dev,
				  struct talitos_edesc *edesc,
				  struct ablkcipher_request *areq)
{
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
1455 1456

	unmap_sg_talitos_ptr(dev, areq->src, areq->dst, areq->nbytes, edesc);
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1], DMA_TO_DEVICE);

	if (edesc->dma_len)
		dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
				 DMA_BIDIRECTIONAL);
}

static void ablkcipher_done(struct device *dev,
			    struct talitos_desc *desc, void *context,
			    int err)
{
	struct ablkcipher_request *areq = context;
1470 1471 1472
	struct talitos_edesc *edesc;

	edesc = container_of(desc, struct talitos_edesc, desc);
1473 1474 1475 1476 1477 1478 1479 1480

	common_nonsnoop_unmap(dev, edesc, areq);

	kfree(edesc);

	areq->base.complete(&areq->base, err);
}

1481 1482 1483 1484 1485
int map_sg_in_talitos_ptr(struct device *dev, struct scatterlist *src,
			  unsigned int len, struct talitos_edesc *edesc,
			  enum dma_data_direction dir, struct talitos_ptr *ptr)
{
	int sg_count;
1486 1487
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);
1488

1489
	to_talitos_ptr_len(ptr, len, is_sec1);
1490

1491 1492
	if (is_sec1) {
		sg_count = edesc->src_nents ? : 1;
1493

1494 1495 1496
		if (sg_count == 1) {
			dma_map_sg(dev, src, 1, dir);
			to_talitos_ptr(ptr, sg_dma_address(src), is_sec1);
1497
		} else {
1498 1499 1500 1501 1502 1503
			sg_copy_to_buffer(src, sg_count, edesc->buf, len);
			to_talitos_ptr(ptr, edesc->dma_link_tbl, is_sec1);
			dma_sync_single_for_device(dev, edesc->dma_link_tbl,
						   len, DMA_TO_DEVICE);
		}
	} else {
1504
		to_talitos_ptr_ext_set(ptr, 0, is_sec1);
1505

1506
		sg_count = dma_map_sg(dev, src, edesc->src_nents ? : 1, dir);
1507 1508

		if (sg_count == 1) {
1509
			to_talitos_ptr(ptr, sg_dma_address(src), is_sec1);
1510 1511 1512 1513 1514
		} else {
			sg_count = sg_to_link_tbl(src, sg_count, len,
						  &edesc->link_tbl[0]);
			if (sg_count > 1) {
				to_talitos_ptr(ptr, edesc->dma_link_tbl, 0);
1515 1516
				to_talitos_ptr_ext_or(ptr, DESC_PTR_LNKTBL_JUMP,
						      0);
1517 1518 1519 1520 1521 1522 1523 1524 1525
				dma_sync_single_for_device(dev,
							   edesc->dma_link_tbl,
							   edesc->dma_len,
							   DMA_BIDIRECTIONAL);
			} else {
				/* Only one segment now, so no link tbl needed*/
				to_talitos_ptr(ptr, sg_dma_address(src),
					       is_sec1);
			}
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
		}
	}
	return sg_count;
}

void map_sg_out_talitos_ptr(struct device *dev, struct scatterlist *dst,
			    unsigned int len, struct talitos_edesc *edesc,
			    enum dma_data_direction dir,
			    struct talitos_ptr *ptr, int sg_count)
{
1536 1537 1538
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);

1539
	if (dir != DMA_NONE)
1540
		sg_count = dma_map_sg(dev, dst, edesc->dst_nents ? : 1, dir);
1541

1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
	to_talitos_ptr_len(ptr, len, is_sec1);

	if (is_sec1) {
		if (sg_count == 1) {
			if (dir != DMA_NONE)
				dma_map_sg(dev, dst, 1, dir);
			to_talitos_ptr(ptr, sg_dma_address(dst), is_sec1);
		} else {
			to_talitos_ptr(ptr, edesc->dma_link_tbl + len, is_sec1);
			dma_sync_single_for_device(dev,
						   edesc->dma_link_tbl + len,
						   len, DMA_FROM_DEVICE);
		}
1555
	} else {
1556
		to_talitos_ptr_ext_set(ptr, 0, is_sec1);
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566

		if (sg_count == 1) {
			to_talitos_ptr(ptr, sg_dma_address(dst), is_sec1);
		} else {
			struct talitos_ptr *link_tbl_ptr =
				&edesc->link_tbl[edesc->src_nents + 1];

			to_talitos_ptr(ptr, edesc->dma_link_tbl +
					    (edesc->src_nents + 1) *
					     sizeof(struct talitos_ptr), 0);
1567
			to_talitos_ptr_ext_or(ptr, DESC_PTR_LNKTBL_JUMP, 0);
1568
			sg_to_link_tbl(dst, sg_count, len, link_tbl_ptr);
1569 1570 1571 1572
			dma_sync_single_for_device(dev, edesc->dma_link_tbl,
						   edesc->dma_len,
						   DMA_BIDIRECTIONAL);
		}
1573 1574 1575
	}
}

1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
static int common_nonsnoop(struct talitos_edesc *edesc,
			   struct ablkcipher_request *areq,
			   void (*callback) (struct device *dev,
					     struct talitos_desc *desc,
					     void *context, int error))
{
	struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
	struct device *dev = ctx->dev;
	struct talitos_desc *desc = &edesc->desc;
	unsigned int cryptlen = areq->nbytes;
1587
	unsigned int ivsize = crypto_ablkcipher_ivsize(cipher);
1588
	int sg_count, ret;
1589 1590
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);
1591 1592

	/* first DWORD empty */
1593
	desc->ptr[0] = zero_entry;
1594 1595

	/* cipher iv */
1596 1597
	to_talitos_ptr(&desc->ptr[1], edesc->iv_dma, is_sec1);
	to_talitos_ptr_len(&desc->ptr[1], ivsize, is_sec1);
1598
	to_talitos_ptr_ext_set(&desc->ptr[1], 0, is_sec1);
1599 1600 1601

	/* cipher key */
	map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
1602
			       (char *)&ctx->key, DMA_TO_DEVICE);
1603 1604 1605 1606

	/*
	 * cipher in
	 */
1607 1608 1609 1610
	sg_count = map_sg_in_talitos_ptr(dev, areq->src, cryptlen, edesc,
					 (areq->src == areq->dst) ?
					  DMA_BIDIRECTIONAL : DMA_TO_DEVICE,
					  &desc->ptr[3]);
1611 1612

	/* cipher out */
1613 1614 1615 1616
	map_sg_out_talitos_ptr(dev, areq->dst, cryptlen, edesc,
			       (areq->src == areq->dst) ? DMA_NONE
							: DMA_FROM_DEVICE,
			       &desc->ptr[4], sg_count);
1617 1618

	/* iv out */
1619
	map_single_talitos_ptr(dev, &desc->ptr[5], ivsize, ctx->iv,
1620 1621 1622
			       DMA_FROM_DEVICE);

	/* last DWORD empty */
1623
	desc->ptr[6] = zero_entry;
1624

1625
	ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
1626 1627 1628 1629 1630 1631 1632
	if (ret != -EINPROGRESS) {
		common_nonsnoop_unmap(dev, edesc, areq);
		kfree(edesc);
	}
	return ret;
}

1633
static struct talitos_edesc *ablkcipher_edesc_alloc(struct ablkcipher_request *
1634
						    areq, bool encrypt)
1635 1636 1637
{
	struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1638
	unsigned int ivsize = crypto_ablkcipher_ivsize(cipher);
1639

1640
	return talitos_edesc_alloc(ctx->dev, areq->src, areq->dst,
1641
				   areq->info, 0, areq->nbytes, 0, ivsize, 0,
1642
				   areq->base.flags, encrypt);
1643 1644 1645 1646 1647 1648 1649 1650 1651
}

static int ablkcipher_encrypt(struct ablkcipher_request *areq)
{
	struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
	struct talitos_edesc *edesc;

	/* allocate extended descriptor */
1652
	edesc = ablkcipher_edesc_alloc(areq, true);
1653 1654 1655 1656 1657 1658
	if (IS_ERR(edesc))
		return PTR_ERR(edesc);

	/* set encrypt */
	edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;

1659
	return common_nonsnoop(edesc, areq, ablkcipher_done);
1660 1661 1662 1663 1664 1665 1666 1667 1668
}

static int ablkcipher_decrypt(struct ablkcipher_request *areq)
{
	struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
	struct talitos_edesc *edesc;

	/* allocate extended descriptor */
1669
	edesc = ablkcipher_edesc_alloc(areq, false);
1670 1671 1672 1673 1674
	if (IS_ERR(edesc))
		return PTR_ERR(edesc);

	edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;

1675
	return common_nonsnoop(edesc, areq, ablkcipher_done);
1676 1677
}

1678 1679 1680 1681 1682
static void common_nonsnoop_hash_unmap(struct device *dev,
				       struct talitos_edesc *edesc,
				       struct ahash_request *areq)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1683 1684
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);
1685 1686 1687

	unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);

1688 1689
	unmap_sg_talitos_ptr(dev, req_ctx->psrc, NULL, 0, edesc);

1690
	/* When using hashctx-in, must unmap it. */
1691
	if (from_talitos_ptr_len(&edesc->desc.ptr[1], is_sec1))
1692 1693 1694
		unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1],
					 DMA_TO_DEVICE);

1695
	if (from_talitos_ptr_len(&edesc->desc.ptr[2], is_sec1))
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
		unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2],
					 DMA_TO_DEVICE);

	if (edesc->dma_len)
		dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
				 DMA_BIDIRECTIONAL);

}

static void ahash_done(struct device *dev,
		       struct talitos_desc *desc, void *context,
		       int err)
{
	struct ahash_request *areq = context;
	struct talitos_edesc *edesc =
		 container_of(desc, struct talitos_edesc, desc);
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

	if (!req_ctx->last && req_ctx->to_hash_later) {
		/* Position any partial block for next update/final/finup */
		memcpy(req_ctx->buf, req_ctx->bufnext, req_ctx->to_hash_later);
1717
		req_ctx->nbuf = req_ctx->to_hash_later;
1718 1719 1720 1721 1722 1723 1724 1725
	}
	common_nonsnoop_hash_unmap(dev, edesc, areq);

	kfree(edesc);

	areq->base.complete(&areq->base, err);
}

1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
/*
 * SEC1 doesn't like hashing of 0 sized message, so we do the padding
 * ourself and submit a padded block
 */
void talitos_handle_buggy_hash(struct talitos_ctx *ctx,
			       struct talitos_edesc *edesc,
			       struct talitos_ptr *ptr)
{
	static u8 padded_hash[64] = {
		0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	};

	pr_err_once("Bug in SEC1, padding ourself\n");
	edesc->desc.hdr &= ~DESC_HDR_MODE0_MDEU_PAD;
	map_single_talitos_ptr(ctx->dev, ptr, sizeof(padded_hash),
			       (char *)padded_hash, DMA_TO_DEVICE);
}

1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
static int common_nonsnoop_hash(struct talitos_edesc *edesc,
				struct ahash_request *areq, unsigned int length,
				void (*callback) (struct device *dev,
						  struct talitos_desc *desc,
						  void *context, int error))
{
	struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
	struct device *dev = ctx->dev;
	struct talitos_desc *desc = &edesc->desc;
1758
	int ret;
1759 1760
	struct talitos_private *priv = dev_get_drvdata(dev);
	bool is_sec1 = has_ftr_sec1(priv);
1761 1762 1763 1764

	/* first DWORD empty */
	desc->ptr[0] = zero_entry;

1765 1766
	/* hash context in */
	if (!req_ctx->first || req_ctx->swinit) {
1767 1768
		map_single_talitos_ptr(dev, &desc->ptr[1],
				       req_ctx->hw_context_size,
1769
				       (char *)req_ctx->hw_context,
1770
				       DMA_TO_DEVICE);
1771
		req_ctx->swinit = 0;
1772 1773 1774 1775 1776 1777 1778 1779 1780
	} else {
		desc->ptr[1] = zero_entry;
		/* Indicate next op is not the first. */
		req_ctx->first = 0;
	}

	/* HMAC key */
	if (ctx->keylen)
		map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
1781
				       (char *)&ctx->key, DMA_TO_DEVICE);
1782 1783 1784 1785 1786 1787
	else
		desc->ptr[2] = zero_entry;

	/*
	 * data in
	 */
1788 1789
	map_sg_in_talitos_ptr(dev, req_ctx->psrc, length, edesc,
			      DMA_TO_DEVICE, &desc->ptr[3]);
1790 1791 1792 1793 1794 1795 1796 1797

	/* fifth DWORD empty */
	desc->ptr[4] = zero_entry;

	/* hash/HMAC out -or- hash context out */
	if (req_ctx->last)
		map_single_talitos_ptr(dev, &desc->ptr[5],
				       crypto_ahash_digestsize(tfm),
1798
				       areq->result, DMA_FROM_DEVICE);
1799 1800 1801
	else
		map_single_talitos_ptr(dev, &desc->ptr[5],
				       req_ctx->hw_context_size,
1802
				       req_ctx->hw_context, DMA_FROM_DEVICE);
1803 1804 1805 1806

	/* last DWORD empty */
	desc->ptr[6] = zero_entry;

1807 1808 1809
	if (is_sec1 && from_talitos_ptr_len(&desc->ptr[3], true) == 0)
		talitos_handle_buggy_hash(ctx, edesc, &desc->ptr[3]);

1810
	ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
	if (ret != -EINPROGRESS) {
		common_nonsnoop_hash_unmap(dev, edesc, areq);
		kfree(edesc);
	}
	return ret;
}

static struct talitos_edesc *ahash_edesc_alloc(struct ahash_request *areq,
					       unsigned int nbytes)
{
	struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

1825
	return talitos_edesc_alloc(ctx->dev, req_ctx->psrc, NULL, NULL, 0,
1826
				   nbytes, 0, 0, 0, areq->base.flags, false);
1827 1828 1829 1830 1831 1832 1833 1834
}

static int ahash_init(struct ahash_request *areq)
{
	struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

	/* Initialize the context */
1835
	req_ctx->nbuf = 0;
1836 1837
	req_ctx->first = 1; /* first indicates h/w must init its context */
	req_ctx->swinit = 0; /* assume h/w init of context */
1838 1839 1840 1841 1842 1843 1844 1845
	req_ctx->hw_context_size =
		(crypto_ahash_digestsize(tfm) <= SHA256_DIGEST_SIZE)
			? TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256
			: TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512;

	return 0;
}

1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856
/*
 * on h/w without explicit sha224 support, we initialize h/w context
 * manually with sha224 constants, and tell it to run sha256.
 */
static int ahash_init_sha224_swinit(struct ahash_request *areq)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

	ahash_init(areq);
	req_ctx->swinit = 1;/* prevent h/w initting context with sha256 values*/

1857 1858 1859 1860 1861 1862 1863 1864
	req_ctx->hw_context[0] = SHA224_H0;
	req_ctx->hw_context[1] = SHA224_H1;
	req_ctx->hw_context[2] = SHA224_H2;
	req_ctx->hw_context[3] = SHA224_H3;
	req_ctx->hw_context[4] = SHA224_H4;
	req_ctx->hw_context[5] = SHA224_H5;
	req_ctx->hw_context[6] = SHA224_H6;
	req_ctx->hw_context[7] = SHA224_H7;
1865 1866 1867 1868 1869 1870 1871 1872

	/* init 64-bit count */
	req_ctx->hw_context[8] = 0;
	req_ctx->hw_context[9] = 0;

	return 0;
}

1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
static int ahash_process_req(struct ahash_request *areq, unsigned int nbytes)
{
	struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
	struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
	struct talitos_edesc *edesc;
	unsigned int blocksize =
			crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
	unsigned int nbytes_to_hash;
	unsigned int to_hash_later;
1883
	unsigned int nsg;
1884
	int nents;
1885

1886 1887
	if (!req_ctx->last && (nbytes + req_ctx->nbuf <= blocksize)) {
		/* Buffer up to one whole block */
1888 1889 1890 1891 1892 1893
		nents = sg_nents_for_len(areq->src, nbytes);
		if (nents < 0) {
			dev_err(ctx->dev, "Invalid number of src SG.\n");
			return nents;
		}
		sg_copy_to_buffer(areq->src, nents,
1894 1895
				  req_ctx->buf + req_ctx->nbuf, nbytes);
		req_ctx->nbuf += nbytes;
1896 1897 1898
		return 0;
	}

1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
	/* At least (blocksize + 1) bytes are available to hash */
	nbytes_to_hash = nbytes + req_ctx->nbuf;
	to_hash_later = nbytes_to_hash & (blocksize - 1);

	if (req_ctx->last)
		to_hash_later = 0;
	else if (to_hash_later)
		/* There is a partial block. Hash the full block(s) now */
		nbytes_to_hash -= to_hash_later;
	else {
		/* Keep one block buffered */
		nbytes_to_hash -= blocksize;
		to_hash_later = blocksize;
	}

	/* Chain in any previously buffered data */
	if (req_ctx->nbuf) {
		nsg = (req_ctx->nbuf < nbytes_to_hash) ? 2 : 1;
		sg_init_table(req_ctx->bufsl, nsg);
		sg_set_buf(req_ctx->bufsl, req_ctx->buf, req_ctx->nbuf);
		if (nsg > 1)
1920
			sg_chain(req_ctx->bufsl, 2, areq->src);
1921
		req_ctx->psrc = req_ctx->bufsl;
1922
	} else
1923
		req_ctx->psrc = areq->src;
1924 1925

	if (to_hash_later) {
1926 1927 1928 1929 1930
		nents = sg_nents_for_len(areq->src, nbytes);
		if (nents < 0) {
			dev_err(ctx->dev, "Invalid number of src SG.\n");
			return nents;
		}
1931
		sg_pcopy_to_buffer(areq->src, nents,
1932 1933 1934
				      req_ctx->bufnext,
				      to_hash_later,
				      nbytes - to_hash_later);
1935
	}
1936
	req_ctx->to_hash_later = to_hash_later;
1937

1938
	/* Allocate extended descriptor */
1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950
	edesc = ahash_edesc_alloc(areq, nbytes_to_hash);
	if (IS_ERR(edesc))
		return PTR_ERR(edesc);

	edesc->desc.hdr = ctx->desc_hdr_template;

	/* On last one, request SEC to pad; otherwise continue */
	if (req_ctx->last)
		edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_PAD;
	else
		edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_CONT;

1951 1952
	/* request SEC to INIT hash. */
	if (req_ctx->first && !req_ctx->swinit)
1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
		edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_INIT;

	/* When the tfm context has a keylen, it's an HMAC.
	 * A first or last (ie. not middle) descriptor must request HMAC.
	 */
	if (ctx->keylen && (req_ctx->first || req_ctx->last))
		edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_HMAC;

	return common_nonsnoop_hash(edesc, areq, nbytes_to_hash,
				    ahash_done);
}

static int ahash_update(struct ahash_request *areq)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

	req_ctx->last = 0;

	return ahash_process_req(areq, areq->nbytes);
}

static int ahash_final(struct ahash_request *areq)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

	req_ctx->last = 1;

	return ahash_process_req(areq, 0);
}

static int ahash_finup(struct ahash_request *areq)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);

	req_ctx->last = 1;

	return ahash_process_req(areq, areq->nbytes);
}

static int ahash_digest(struct ahash_request *areq)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1995
	struct crypto_ahash *ahash = crypto_ahash_reqtfm(areq);
1996

1997
	ahash->init(areq);
1998 1999 2000 2001 2002
	req_ctx->last = 1;

	return ahash_process_req(areq, areq->nbytes);
}

2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042
static int ahash_export(struct ahash_request *areq, void *out)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
	struct talitos_export_state *export = out;

	memcpy(export->hw_context, req_ctx->hw_context,
	       req_ctx->hw_context_size);
	memcpy(export->buf, req_ctx->buf, req_ctx->nbuf);
	export->swinit = req_ctx->swinit;
	export->first = req_ctx->first;
	export->last = req_ctx->last;
	export->to_hash_later = req_ctx->to_hash_later;
	export->nbuf = req_ctx->nbuf;

	return 0;
}

static int ahash_import(struct ahash_request *areq, const void *in)
{
	struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
	struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
	const struct talitos_export_state *export = in;

	memset(req_ctx, 0, sizeof(*req_ctx));
	req_ctx->hw_context_size =
		(crypto_ahash_digestsize(tfm) <= SHA256_DIGEST_SIZE)
			? TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256
			: TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512;
	memcpy(req_ctx->hw_context, export->hw_context,
	       req_ctx->hw_context_size);
	memcpy(req_ctx->buf, export->buf, export->nbuf);
	req_ctx->swinit = export->swinit;
	req_ctx->first = export->first;
	req_ctx->last = export->last;
	req_ctx->to_hash_later = export->to_hash_later;
	req_ctx->nbuf = export->nbuf;

	return 0;
}

L
Lee Nipper 已提交
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133
struct keyhash_result {
	struct completion completion;
	int err;
};

static void keyhash_complete(struct crypto_async_request *req, int err)
{
	struct keyhash_result *res = req->data;

	if (err == -EINPROGRESS)
		return;

	res->err = err;
	complete(&res->completion);
}

static int keyhash(struct crypto_ahash *tfm, const u8 *key, unsigned int keylen,
		   u8 *hash)
{
	struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));

	struct scatterlist sg[1];
	struct ahash_request *req;
	struct keyhash_result hresult;
	int ret;

	init_completion(&hresult.completion);

	req = ahash_request_alloc(tfm, GFP_KERNEL);
	if (!req)
		return -ENOMEM;

	/* Keep tfm keylen == 0 during hash of the long key */
	ctx->keylen = 0;
	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
				   keyhash_complete, &hresult);

	sg_init_one(&sg[0], key, keylen);

	ahash_request_set_crypt(req, sg, hash, keylen);
	ret = crypto_ahash_digest(req);
	switch (ret) {
	case 0:
		break;
	case -EINPROGRESS:
	case -EBUSY:
		ret = wait_for_completion_interruptible(
			&hresult.completion);
		if (!ret)
			ret = hresult.err;
		break;
	default:
		break;
	}
	ahash_request_free(req);

	return ret;
}

static int ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
			unsigned int keylen)
{
	struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
	unsigned int blocksize =
			crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
	unsigned int digestsize = crypto_ahash_digestsize(tfm);
	unsigned int keysize = keylen;
	u8 hash[SHA512_DIGEST_SIZE];
	int ret;

	if (keylen <= blocksize)
		memcpy(ctx->key, key, keysize);
	else {
		/* Must get the hash of the long key */
		ret = keyhash(tfm, key, keylen, hash);

		if (ret) {
			crypto_ahash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
			return -EINVAL;
		}

		keysize = digestsize;
		memcpy(ctx->key, hash, digestsize);
	}

	ctx->keylen = keysize;

	return 0;
}


2134
struct talitos_alg_template {
2135 2136 2137
	u32 type;
	union {
		struct crypto_alg crypto;
2138
		struct ahash_alg hash;
2139
		struct aead_alg aead;
2140
	} alg;
2141 2142 2143 2144
	__be32 desc_hdr_template;
};

static struct talitos_alg_template driver_algs[] = {
2145
	/* AEAD algorithms.  These use a single-pass ipsec_esp descriptor */
2146
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha1),cbc(aes))",
				.cra_driver_name = "authenc-hmac-sha1-"
						   "cbc-aes-talitos",
				.cra_blocksize = AES_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = AES_BLOCK_SIZE,
			.maxauthsize = SHA1_DIGEST_SIZE,
2157
		},
2158 2159 2160 2161 2162 2163 2164
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_AESU |
		                     DESC_HDR_MODE0_AESU_CBC |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_SHA1_HMAC,
2165
	},
2166
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha1),"
					    "cbc(des3_ede))",
				.cra_driver_name = "authenc-hmac-sha1-"
						   "cbc-3des-talitos",
				.cra_blocksize = DES3_EDE_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = DES3_EDE_BLOCK_SIZE,
			.maxauthsize = SHA1_DIGEST_SIZE,
2178
		},
2179 2180 2181 2182 2183 2184 2185 2186
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_SHA1_HMAC,
2187
	},
2188
	{       .type = CRYPTO_ALG_TYPE_AEAD,
2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha224),cbc(aes))",
				.cra_driver_name = "authenc-hmac-sha224-"
						   "cbc-aes-talitos",
				.cra_blocksize = AES_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = AES_BLOCK_SIZE,
			.maxauthsize = SHA224_DIGEST_SIZE,
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208
		},
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
				     DESC_HDR_SEL0_AESU |
				     DESC_HDR_MODE0_AESU_CBC |
				     DESC_HDR_SEL1_MDEUA |
				     DESC_HDR_MODE1_MDEU_INIT |
				     DESC_HDR_MODE1_MDEU_PAD |
				     DESC_HDR_MODE1_MDEU_SHA224_HMAC,
	},
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha224),"
					    "cbc(des3_ede))",
				.cra_driver_name = "authenc-hmac-sha224-"
						   "cbc-3des-talitos",
				.cra_blocksize = DES3_EDE_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = DES3_EDE_BLOCK_SIZE,
			.maxauthsize = SHA224_DIGEST_SIZE,
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229
		},
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_SHA224_HMAC,
	},
2230
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha256),cbc(aes))",
				.cra_driver_name = "authenc-hmac-sha256-"
						   "cbc-aes-talitos",
				.cra_blocksize = AES_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = AES_BLOCK_SIZE,
			.maxauthsize = SHA256_DIGEST_SIZE,
2241
		},
2242 2243 2244 2245 2246 2247 2248 2249
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_AESU |
		                     DESC_HDR_MODE0_AESU_CBC |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_SHA256_HMAC,
	},
2250
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha256),"
					    "cbc(des3_ede))",
				.cra_driver_name = "authenc-hmac-sha256-"
						   "cbc-3des-talitos",
				.cra_blocksize = DES3_EDE_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = DES3_EDE_BLOCK_SIZE,
			.maxauthsize = SHA256_DIGEST_SIZE,
2262
		},
2263 2264 2265 2266 2267 2268 2269 2270 2271
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_SHA256_HMAC,
	},
2272
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha384),cbc(aes))",
				.cra_driver_name = "authenc-hmac-sha384-"
						   "cbc-aes-talitos",
				.cra_blocksize = AES_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = AES_BLOCK_SIZE,
			.maxauthsize = SHA384_DIGEST_SIZE,
2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
		},
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_AESU |
		                     DESC_HDR_MODE0_AESU_CBC |
		                     DESC_HDR_SEL1_MDEUB |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
	},
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha384),"
					    "cbc(des3_ede))",
				.cra_driver_name = "authenc-hmac-sha384-"
						   "cbc-3des-talitos",
				.cra_blocksize = DES3_EDE_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = DES3_EDE_BLOCK_SIZE,
			.maxauthsize = SHA384_DIGEST_SIZE,
2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314
		},
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES |
		                     DESC_HDR_SEL1_MDEUB |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
	},
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2315 2316 2317 2318 2319 2320 2321 2322 2323 2324
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha512),cbc(aes))",
				.cra_driver_name = "authenc-hmac-sha512-"
						   "cbc-aes-talitos",
				.cra_blocksize = AES_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = AES_BLOCK_SIZE,
			.maxauthsize = SHA512_DIGEST_SIZE,
2325 2326 2327 2328 2329 2330 2331 2332 2333 2334
		},
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_AESU |
		                     DESC_HDR_MODE0_AESU_CBC |
		                     DESC_HDR_SEL1_MDEUB |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
	},
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(sha512),"
					    "cbc(des3_ede))",
				.cra_driver_name = "authenc-hmac-sha512-"
						   "cbc-3des-talitos",
				.cra_blocksize = DES3_EDE_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = DES3_EDE_BLOCK_SIZE,
			.maxauthsize = SHA512_DIGEST_SIZE,
2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356
		},
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES |
		                     DESC_HDR_SEL1_MDEUB |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
	},
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(md5),cbc(aes))",
				.cra_driver_name = "authenc-hmac-md5-"
						   "cbc-aes-talitos",
				.cra_blocksize = AES_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = AES_BLOCK_SIZE,
			.maxauthsize = MD5_DIGEST_SIZE,
2367
		},
2368 2369 2370 2371 2372 2373 2374 2375
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_AESU |
		                     DESC_HDR_MODE0_AESU_CBC |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_MD5_HMAC,
	},
2376
	{	.type = CRYPTO_ALG_TYPE_AEAD,
2377 2378 2379 2380 2381 2382 2383 2384 2385 2386
		.alg.aead = {
			.base = {
				.cra_name = "authenc(hmac(md5),cbc(des3_ede))",
				.cra_driver_name = "authenc-hmac-md5-"
						   "cbc-3des-talitos",
				.cra_blocksize = DES3_EDE_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_ASYNC,
			},
			.ivsize = DES3_EDE_BLOCK_SIZE,
			.maxauthsize = MD5_DIGEST_SIZE,
2387
		},
2388 2389 2390 2391 2392 2393 2394 2395
		.desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES |
		                     DESC_HDR_SEL1_MDEUA |
		                     DESC_HDR_MODE1_MDEU_INIT |
		                     DESC_HDR_MODE1_MDEU_PAD |
		                     DESC_HDR_MODE1_MDEU_MD5_HMAC,
2396 2397
	},
	/* ABLKCIPHER algorithms. */
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
			.cra_name = "ecb(aes)",
			.cra_driver_name = "ecb-aes-talitos",
			.cra_blocksize = AES_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
				     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = AES_MIN_KEY_SIZE,
				.max_keysize = AES_MAX_KEY_SIZE,
				.ivsize = AES_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_AESU,
	},
2414 2415
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
			.cra_name = "cbc(aes)",
			.cra_driver_name = "cbc-aes-talitos",
			.cra_blocksize = AES_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
                                     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = AES_MIN_KEY_SIZE,
				.max_keysize = AES_MAX_KEY_SIZE,
				.ivsize = AES_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_AESU |
				     DESC_HDR_MODE0_AESU_CBC,
	},
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
			.cra_name = "ctr(aes)",
			.cra_driver_name = "ctr-aes-talitos",
			.cra_blocksize = AES_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
				     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = AES_MIN_KEY_SIZE,
				.max_keysize = AES_MAX_KEY_SIZE,
				.ivsize = AES_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_AESU |
				     DESC_HDR_MODE0_AESU_CTR,
	},
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
			.cra_name = "ecb(des)",
			.cra_driver_name = "ecb-des-talitos",
			.cra_blocksize = DES_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
				     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = DES_KEY_SIZE,
				.max_keysize = DES_KEY_SIZE,
				.ivsize = DES_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_DEU,
	},
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
			.cra_name = "cbc(des)",
			.cra_driver_name = "cbc-des-talitos",
			.cra_blocksize = DES_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
				     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = DES_KEY_SIZE,
				.max_keysize = DES_KEY_SIZE,
				.ivsize = DES_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_DEU |
				     DESC_HDR_MODE0_DEU_CBC,
	},
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
			.cra_name = "ecb(des3_ede)",
			.cra_driver_name = "ecb-3des-talitos",
			.cra_blocksize = DES3_EDE_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
				     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = DES3_EDE_KEY_SIZE,
				.max_keysize = DES3_EDE_KEY_SIZE,
				.ivsize = DES3_EDE_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_DEU |
				     DESC_HDR_MODE0_DEU_3DES,
	},
2498 2499
	{	.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
		.alg.crypto = {
2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
			.cra_name = "cbc(des3_ede)",
			.cra_driver_name = "cbc-3des-talitos",
			.cra_blocksize = DES3_EDE_BLOCK_SIZE,
			.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
                                     CRYPTO_ALG_ASYNC,
			.cra_ablkcipher = {
				.min_keysize = DES3_EDE_KEY_SIZE,
				.max_keysize = DES3_EDE_KEY_SIZE,
				.ivsize = DES3_EDE_BLOCK_SIZE,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
			             DESC_HDR_SEL0_DEU |
		                     DESC_HDR_MODE0_DEU_CBC |
		                     DESC_HDR_MODE0_DEU_3DES,
2515 2516 2517 2518 2519
	},
	/* AHASH algorithms. */
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = MD5_DIGEST_SIZE,
2520
			.halg.statesize = sizeof(struct talitos_export_state),
2521 2522 2523
			.halg.base = {
				.cra_name = "md5",
				.cra_driver_name = "md5-talitos",
2524
				.cra_blocksize = MD5_HMAC_BLOCK_SIZE,
2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_MD5,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA1_DIGEST_SIZE,
2536
			.halg.statesize = sizeof(struct talitos_export_state),
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548
			.halg.base = {
				.cra_name = "sha1",
				.cra_driver_name = "sha1-talitos",
				.cra_blocksize = SHA1_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_SHA1,
	},
2549 2550 2551
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA224_DIGEST_SIZE,
2552
			.halg.statesize = sizeof(struct talitos_export_state),
2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564
			.halg.base = {
				.cra_name = "sha224",
				.cra_driver_name = "sha224-talitos",
				.cra_blocksize = SHA224_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_SHA224,
	},
2565 2566 2567
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA256_DIGEST_SIZE,
2568
			.halg.statesize = sizeof(struct talitos_export_state),
2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583
			.halg.base = {
				.cra_name = "sha256",
				.cra_driver_name = "sha256-talitos",
				.cra_blocksize = SHA256_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_SHA256,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA384_DIGEST_SIZE,
2584
			.halg.statesize = sizeof(struct talitos_export_state),
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599
			.halg.base = {
				.cra_name = "sha384",
				.cra_driver_name = "sha384-talitos",
				.cra_blocksize = SHA384_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUB |
				     DESC_HDR_MODE0_MDEUB_SHA384,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA512_DIGEST_SIZE,
2600
			.halg.statesize = sizeof(struct talitos_export_state),
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612
			.halg.base = {
				.cra_name = "sha512",
				.cra_driver_name = "sha512-talitos",
				.cra_blocksize = SHA512_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUB |
				     DESC_HDR_MODE0_MDEUB_SHA512,
	},
L
Lee Nipper 已提交
2613 2614 2615
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = MD5_DIGEST_SIZE,
2616
			.halg.statesize = sizeof(struct talitos_export_state),
L
Lee Nipper 已提交
2617 2618 2619
			.halg.base = {
				.cra_name = "hmac(md5)",
				.cra_driver_name = "hmac-md5-talitos",
2620
				.cra_blocksize = MD5_HMAC_BLOCK_SIZE,
L
Lee Nipper 已提交
2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_MD5,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA1_DIGEST_SIZE,
2632
			.halg.statesize = sizeof(struct talitos_export_state),
L
Lee Nipper 已提交
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
			.halg.base = {
				.cra_name = "hmac(sha1)",
				.cra_driver_name = "hmac-sha1-talitos",
				.cra_blocksize = SHA1_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_SHA1,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA224_DIGEST_SIZE,
2648
			.halg.statesize = sizeof(struct talitos_export_state),
L
Lee Nipper 已提交
2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
			.halg.base = {
				.cra_name = "hmac(sha224)",
				.cra_driver_name = "hmac-sha224-talitos",
				.cra_blocksize = SHA224_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_SHA224,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA256_DIGEST_SIZE,
2664
			.halg.statesize = sizeof(struct talitos_export_state),
L
Lee Nipper 已提交
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679
			.halg.base = {
				.cra_name = "hmac(sha256)",
				.cra_driver_name = "hmac-sha256-talitos",
				.cra_blocksize = SHA256_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUA |
				     DESC_HDR_MODE0_MDEU_SHA256,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA384_DIGEST_SIZE,
2680
			.halg.statesize = sizeof(struct talitos_export_state),
L
Lee Nipper 已提交
2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
			.halg.base = {
				.cra_name = "hmac(sha384)",
				.cra_driver_name = "hmac-sha384-talitos",
				.cra_blocksize = SHA384_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUB |
				     DESC_HDR_MODE0_MDEUB_SHA384,
	},
	{	.type = CRYPTO_ALG_TYPE_AHASH,
		.alg.hash = {
			.halg.digestsize = SHA512_DIGEST_SIZE,
2696
			.halg.statesize = sizeof(struct talitos_export_state),
L
Lee Nipper 已提交
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708
			.halg.base = {
				.cra_name = "hmac(sha512)",
				.cra_driver_name = "hmac-sha512-talitos",
				.cra_blocksize = SHA512_BLOCK_SIZE,
				.cra_flags = CRYPTO_ALG_TYPE_AHASH |
					     CRYPTO_ALG_ASYNC,
			}
		},
		.desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
				     DESC_HDR_SEL0_MDEUB |
				     DESC_HDR_MODE0_MDEUB_SHA512,
	}
2709 2710 2711 2712 2713
};

struct talitos_crypto_alg {
	struct list_head entry;
	struct device *dev;
2714
	struct talitos_alg_template algt;
2715 2716
};

2717 2718
static int talitos_init_common(struct talitos_ctx *ctx,
			       struct talitos_crypto_alg *talitos_alg)
2719
{
2720
	struct talitos_private *priv;
2721 2722 2723

	/* update context with ptr to dev */
	ctx->dev = talitos_alg->dev;
2724

2725 2726 2727 2728 2729
	/* assign SEC channel to tfm in round-robin fashion */
	priv = dev_get_drvdata(ctx->dev);
	ctx->ch = atomic_inc_return(&priv->last_chan) &
		  (priv->num_channels - 1);

2730
	/* copy descriptor header template value */
2731
	ctx->desc_hdr_template = talitos_alg->algt.desc_hdr_template;
2732

2733 2734 2735
	/* select done notification */
	ctx->desc_hdr_template |= DESC_HDR_DONE_NOTIFY;

2736 2737 2738
	return 0;
}

2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755
static int talitos_cra_init(struct crypto_tfm *tfm)
{
	struct crypto_alg *alg = tfm->__crt_alg;
	struct talitos_crypto_alg *talitos_alg;
	struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);

	if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_AHASH)
		talitos_alg = container_of(__crypto_ahash_alg(alg),
					   struct talitos_crypto_alg,
					   algt.alg.hash);
	else
		talitos_alg = container_of(alg, struct talitos_crypto_alg,
					   algt.alg.crypto);

	return talitos_init_common(ctx, talitos_alg);
}

2756
static int talitos_cra_init_aead(struct crypto_aead *tfm)
2757
{
2758 2759 2760 2761 2762 2763 2764 2765
	struct aead_alg *alg = crypto_aead_alg(tfm);
	struct talitos_crypto_alg *talitos_alg;
	struct talitos_ctx *ctx = crypto_aead_ctx(tfm);

	talitos_alg = container_of(alg, struct talitos_crypto_alg,
				   algt.alg.aead);

	return talitos_init_common(ctx, talitos_alg);
2766 2767
}

2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780
static int talitos_cra_init_ahash(struct crypto_tfm *tfm)
{
	struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);

	talitos_cra_init(tfm);

	ctx->keylen = 0;
	crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
				 sizeof(struct talitos_ahash_req_ctx));

	return 0;
}

2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800
/*
 * given the alg's descriptor header template, determine whether descriptor
 * type and primary/secondary execution units required match the hw
 * capabilities description provided in the device tree node.
 */
static int hw_supports(struct device *dev, __be32 desc_hdr_template)
{
	struct talitos_private *priv = dev_get_drvdata(dev);
	int ret;

	ret = (1 << DESC_TYPE(desc_hdr_template) & priv->desc_types) &&
	      (1 << PRIMARY_EU(desc_hdr_template) & priv->exec_units);

	if (SECONDARY_EU(desc_hdr_template))
		ret = ret && (1 << SECONDARY_EU(desc_hdr_template)
		              & priv->exec_units);

	return ret;
}

2801
static int talitos_remove(struct platform_device *ofdev)
2802 2803 2804 2805 2806 2807 2808
{
	struct device *dev = &ofdev->dev;
	struct talitos_private *priv = dev_get_drvdata(dev);
	struct talitos_crypto_alg *t_alg, *n;
	int i;

	list_for_each_entry_safe(t_alg, n, &priv->alg_list, entry) {
2809 2810 2811
		switch (t_alg->algt.type) {
		case CRYPTO_ALG_TYPE_ABLKCIPHER:
			break;
2812 2813
		case CRYPTO_ALG_TYPE_AEAD:
			crypto_unregister_aead(&t_alg->algt.alg.aead);
2814 2815 2816 2817
		case CRYPTO_ALG_TYPE_AHASH:
			crypto_unregister_ahash(&t_alg->algt.alg.hash);
			break;
		}
2818 2819 2820 2821 2822 2823 2824
		list_del(&t_alg->entry);
		kfree(t_alg);
	}

	if (hw_supports(dev, DESC_HDR_SEL0_RNG))
		talitos_unregister_rng(dev);

2825
	for (i = 0; priv->chan && i < priv->num_channels; i++)
2826
		kfree(priv->chan[i].fifo);
2827

2828
	kfree(priv->chan);
2829

2830
	for (i = 0; i < 2; i++)
2831
		if (priv->irq[i]) {
2832 2833 2834
			free_irq(priv->irq[i], dev);
			irq_dispose_mapping(priv->irq[i]);
		}
2835

2836
	tasklet_kill(&priv->done_task[0]);
2837
	if (priv->irq[1])
2838
		tasklet_kill(&priv->done_task[1]);
2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850

	iounmap(priv->reg);

	kfree(priv);

	return 0;
}

static struct talitos_crypto_alg *talitos_alg_alloc(struct device *dev,
						    struct talitos_alg_template
						           *template)
{
2851
	struct talitos_private *priv = dev_get_drvdata(dev);
2852 2853 2854 2855 2856 2857 2858
	struct talitos_crypto_alg *t_alg;
	struct crypto_alg *alg;

	t_alg = kzalloc(sizeof(struct talitos_crypto_alg), GFP_KERNEL);
	if (!t_alg)
		return ERR_PTR(-ENOMEM);

2859 2860 2861 2862
	t_alg->algt = *template;

	switch (t_alg->algt.type) {
	case CRYPTO_ALG_TYPE_ABLKCIPHER:
2863 2864
		alg = &t_alg->algt.alg.crypto;
		alg->cra_init = talitos_cra_init;
2865
		alg->cra_type = &crypto_ablkcipher_type;
2866 2867 2868 2869
		alg->cra_ablkcipher.setkey = ablkcipher_setkey;
		alg->cra_ablkcipher.encrypt = ablkcipher_encrypt;
		alg->cra_ablkcipher.decrypt = ablkcipher_decrypt;
		alg->cra_ablkcipher.geniv = "eseqiv";
2870
		break;
2871
	case CRYPTO_ALG_TYPE_AEAD:
2872 2873 2874 2875 2876
		alg = &t_alg->algt.alg.aead.base;
		t_alg->algt.alg.aead.init = talitos_cra_init_aead;
		t_alg->algt.alg.aead.setkey = aead_setkey;
		t_alg->algt.alg.aead.encrypt = aead_encrypt;
		t_alg->algt.alg.aead.decrypt = aead_decrypt;
2877 2878 2879
		break;
	case CRYPTO_ALG_TYPE_AHASH:
		alg = &t_alg->algt.alg.hash.halg.base;
2880
		alg->cra_init = talitos_cra_init_ahash;
2881
		alg->cra_type = &crypto_ahash_type;
2882 2883 2884 2885 2886 2887
		t_alg->algt.alg.hash.init = ahash_init;
		t_alg->algt.alg.hash.update = ahash_update;
		t_alg->algt.alg.hash.final = ahash_final;
		t_alg->algt.alg.hash.finup = ahash_finup;
		t_alg->algt.alg.hash.digest = ahash_digest;
		t_alg->algt.alg.hash.setkey = ahash_setkey;
2888 2889
		t_alg->algt.alg.hash.import = ahash_import;
		t_alg->algt.alg.hash.export = ahash_export;
2890

L
Lee Nipper 已提交
2891
		if (!(priv->features & TALITOS_FTR_HMAC_OK) &&
K
Kim Phillips 已提交
2892 2893
		    !strncmp(alg->cra_name, "hmac", 4)) {
			kfree(t_alg);
L
Lee Nipper 已提交
2894
			return ERR_PTR(-ENOTSUPP);
K
Kim Phillips 已提交
2895
		}
2896
		if (!(priv->features & TALITOS_FTR_SHA224_HWINIT) &&
L
Lee Nipper 已提交
2897 2898
		    (!strcmp(alg->cra_name, "sha224") ||
		     !strcmp(alg->cra_name, "hmac(sha224)"))) {
2899 2900 2901 2902 2903 2904
			t_alg->algt.alg.hash.init = ahash_init_sha224_swinit;
			t_alg->algt.desc_hdr_template =
					DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
					DESC_HDR_SEL0_MDEUA |
					DESC_HDR_MODE0_MDEU_SHA256;
		}
2905
		break;
2906 2907
	default:
		dev_err(dev, "unknown algorithm type %d\n", t_alg->algt.type);
2908
		kfree(t_alg);
2909
		return ERR_PTR(-EINVAL);
2910
	}
2911 2912 2913 2914 2915

	alg->cra_module = THIS_MODULE;
	alg->cra_priority = TALITOS_CRA_PRIORITY;
	alg->cra_alignmask = 0;
	alg->cra_ctxsize = sizeof(struct talitos_ctx);
2916
	alg->cra_flags |= CRYPTO_ALG_KERN_DRIVER_ONLY;
2917 2918 2919 2920 2921 2922

	t_alg->dev = dev;

	return t_alg;
}

2923 2924 2925 2926 2927 2928
static int talitos_probe_irq(struct platform_device *ofdev)
{
	struct device *dev = &ofdev->dev;
	struct device_node *np = ofdev->dev.of_node;
	struct talitos_private *priv = dev_get_drvdata(dev);
	int err;
2929
	bool is_sec1 = has_ftr_sec1(priv);
2930 2931

	priv->irq[0] = irq_of_parse_and_map(np, 0);
2932
	if (!priv->irq[0]) {
2933 2934 2935
		dev_err(dev, "failed to map irq\n");
		return -EINVAL;
	}
2936 2937 2938 2939 2940
	if (is_sec1) {
		err = request_irq(priv->irq[0], talitos1_interrupt_4ch, 0,
				  dev_driver_string(dev), dev);
		goto primary_out;
	}
2941 2942 2943 2944

	priv->irq[1] = irq_of_parse_and_map(np, 1);

	/* get the primary irq line */
2945
	if (!priv->irq[1]) {
2946
		err = request_irq(priv->irq[0], talitos2_interrupt_4ch, 0,
2947 2948 2949 2950
				  dev_driver_string(dev), dev);
		goto primary_out;
	}

2951
	err = request_irq(priv->irq[0], talitos2_interrupt_ch0_2, 0,
2952 2953 2954 2955 2956
			  dev_driver_string(dev), dev);
	if (err)
		goto primary_out;

	/* get the secondary irq line */
2957
	err = request_irq(priv->irq[1], talitos2_interrupt_ch1_3, 0,
2958 2959 2960 2961
			  dev_driver_string(dev), dev);
	if (err) {
		dev_err(dev, "failed to request secondary irq\n");
		irq_dispose_mapping(priv->irq[1]);
2962
		priv->irq[1] = 0;
2963 2964 2965 2966 2967 2968 2969 2970
	}

	return err;

primary_out:
	if (err) {
		dev_err(dev, "failed to request primary irq\n");
		irq_dispose_mapping(priv->irq[0]);
2971
		priv->irq[0] = 0;
2972 2973 2974 2975 2976
	}

	return err;
}

2977
static int talitos_probe(struct platform_device *ofdev)
2978 2979
{
	struct device *dev = &ofdev->dev;
2980
	struct device_node *np = ofdev->dev.of_node;
2981 2982 2983
	struct talitos_private *priv;
	const unsigned int *prop;
	int i, err;
2984
	int stride;
2985 2986 2987 2988 2989

	priv = kzalloc(sizeof(struct talitos_private), GFP_KERNEL);
	if (!priv)
		return -ENOMEM;

2990 2991
	INIT_LIST_HEAD(&priv->alg_list);

2992 2993 2994 2995
	dev_set_drvdata(dev, priv);

	priv->ofdev = ofdev;

2996 2997
	spin_lock_init(&priv->reg_lock);

2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028
	priv->reg = of_iomap(np, 0);
	if (!priv->reg) {
		dev_err(dev, "failed to of_iomap\n");
		err = -ENOMEM;
		goto err_out;
	}

	/* get SEC version capabilities from device tree */
	prop = of_get_property(np, "fsl,num-channels", NULL);
	if (prop)
		priv->num_channels = *prop;

	prop = of_get_property(np, "fsl,channel-fifo-len", NULL);
	if (prop)
		priv->chfifo_len = *prop;

	prop = of_get_property(np, "fsl,exec-units-mask", NULL);
	if (prop)
		priv->exec_units = *prop;

	prop = of_get_property(np, "fsl,descriptor-types-mask", NULL);
	if (prop)
		priv->desc_types = *prop;

	if (!is_power_of_2(priv->num_channels) || !priv->chfifo_len ||
	    !priv->exec_units || !priv->desc_types) {
		dev_err(dev, "invalid property data in device tree node\n");
		err = -EINVAL;
		goto err_out;
	}

3029 3030 3031
	if (of_device_is_compatible(np, "fsl,sec3.0"))
		priv->features |= TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT;

3032
	if (of_device_is_compatible(np, "fsl,sec2.1"))
3033
		priv->features |= TALITOS_FTR_HW_AUTH_CHECK |
L
Lee Nipper 已提交
3034 3035
				  TALITOS_FTR_SHA224_HWINIT |
				  TALITOS_FTR_HMAC_OK;
3036

3037 3038 3039
	if (of_device_is_compatible(np, "fsl,sec1.0"))
		priv->features |= TALITOS_FTR_SEC1;

3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064
	if (of_device_is_compatible(np, "fsl,sec1.2")) {
		priv->reg_deu = priv->reg + TALITOS12_DEU;
		priv->reg_aesu = priv->reg + TALITOS12_AESU;
		priv->reg_mdeu = priv->reg + TALITOS12_MDEU;
		stride = TALITOS1_CH_STRIDE;
	} else if (of_device_is_compatible(np, "fsl,sec1.0")) {
		priv->reg_deu = priv->reg + TALITOS10_DEU;
		priv->reg_aesu = priv->reg + TALITOS10_AESU;
		priv->reg_mdeu = priv->reg + TALITOS10_MDEU;
		priv->reg_afeu = priv->reg + TALITOS10_AFEU;
		priv->reg_rngu = priv->reg + TALITOS10_RNGU;
		priv->reg_pkeu = priv->reg + TALITOS10_PKEU;
		stride = TALITOS1_CH_STRIDE;
	} else {
		priv->reg_deu = priv->reg + TALITOS2_DEU;
		priv->reg_aesu = priv->reg + TALITOS2_AESU;
		priv->reg_mdeu = priv->reg + TALITOS2_MDEU;
		priv->reg_afeu = priv->reg + TALITOS2_AFEU;
		priv->reg_rngu = priv->reg + TALITOS2_RNGU;
		priv->reg_pkeu = priv->reg + TALITOS2_PKEU;
		priv->reg_keu = priv->reg + TALITOS2_KEU;
		priv->reg_crcu = priv->reg + TALITOS2_CRCU;
		stride = TALITOS2_CH_STRIDE;
	}

3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083
	err = talitos_probe_irq(ofdev);
	if (err)
		goto err_out;

	if (of_device_is_compatible(np, "fsl,sec1.0")) {
		tasklet_init(&priv->done_task[0], talitos1_done_4ch,
			     (unsigned long)dev);
	} else {
		if (!priv->irq[1]) {
			tasklet_init(&priv->done_task[0], talitos2_done_4ch,
				     (unsigned long)dev);
		} else {
			tasklet_init(&priv->done_task[0], talitos2_done_ch0_2,
				     (unsigned long)dev);
			tasklet_init(&priv->done_task[1], talitos2_done_ch1_3,
				     (unsigned long)dev);
		}
	}

3084 3085 3086 3087
	priv->chan = kzalloc(sizeof(struct talitos_channel) *
			     priv->num_channels, GFP_KERNEL);
	if (!priv->chan) {
		dev_err(dev, "failed to allocate channel management space\n");
3088 3089 3090 3091
		err = -ENOMEM;
		goto err_out;
	}

3092 3093
	priv->fifo_len = roundup_pow_of_two(priv->chfifo_len);

3094
	for (i = 0; i < priv->num_channels; i++) {
3095
		priv->chan[i].reg = priv->reg + stride * (i + 1);
3096
		if (!priv->irq[1] || !(i & 1))
3097
			priv->chan[i].reg += TALITOS_CH_BASE_OFFSET;
3098

3099 3100
		spin_lock_init(&priv->chan[i].head_lock);
		spin_lock_init(&priv->chan[i].tail_lock);
3101

3102 3103 3104
		priv->chan[i].fifo = kzalloc(sizeof(struct talitos_request) *
					     priv->fifo_len, GFP_KERNEL);
		if (!priv->chan[i].fifo) {
3105 3106 3107 3108 3109
			dev_err(dev, "failed to allocate request fifo %d\n", i);
			err = -ENOMEM;
			goto err_out;
		}

3110 3111
		atomic_set(&priv->chan[i].submit_count,
			   -(priv->chfifo_len - 1));
3112
	}
3113

3114 3115
	dma_set_mask(dev, DMA_BIT_MASK(36));

3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136
	/* reset and initialize the h/w */
	err = init_device(dev);
	if (err) {
		dev_err(dev, "failed to initialize device\n");
		goto err_out;
	}

	/* register the RNG, if available */
	if (hw_supports(dev, DESC_HDR_SEL0_RNG)) {
		err = talitos_register_rng(dev);
		if (err) {
			dev_err(dev, "failed to register hwrng: %d\n", err);
			goto err_out;
		} else
			dev_info(dev, "hwrng\n");
	}

	/* register crypto algorithms the device supports */
	for (i = 0; i < ARRAY_SIZE(driver_algs); i++) {
		if (hw_supports(dev, driver_algs[i].desc_hdr_template)) {
			struct talitos_crypto_alg *t_alg;
3137
			struct crypto_alg *alg = NULL;
3138 3139 3140 3141

			t_alg = talitos_alg_alloc(dev, &driver_algs[i]);
			if (IS_ERR(t_alg)) {
				err = PTR_ERR(t_alg);
K
Kim Phillips 已提交
3142
				if (err == -ENOTSUPP)
L
Lee Nipper 已提交
3143
					continue;
3144 3145 3146
				goto err_out;
			}

3147 3148 3149 3150
			switch (t_alg->algt.type) {
			case CRYPTO_ALG_TYPE_ABLKCIPHER:
				err = crypto_register_alg(
						&t_alg->algt.alg.crypto);
3151
				alg = &t_alg->algt.alg.crypto;
3152
				break;
3153 3154 3155 3156 3157 3158 3159

			case CRYPTO_ALG_TYPE_AEAD:
				err = crypto_register_aead(
					&t_alg->algt.alg.aead);
				alg = &t_alg->algt.alg.aead.base;
				break;

3160 3161 3162
			case CRYPTO_ALG_TYPE_AHASH:
				err = crypto_register_ahash(
						&t_alg->algt.alg.hash);
3163
				alg = &t_alg->algt.alg.hash.halg.base;
3164 3165
				break;
			}
3166 3167
			if (err) {
				dev_err(dev, "%s alg registration failed\n",
3168
					alg->cra_driver_name);
3169
				kfree(t_alg);
3170
			} else
3171 3172 3173
				list_add_tail(&t_alg->entry, &priv->alg_list);
		}
	}
3174 3175 3176
	if (!list_empty(&priv->alg_list))
		dev_info(dev, "%s algorithms registered in /proc/crypto\n",
			 (char *)of_get_property(np, "compatible", NULL));
3177 3178 3179 3180 3181 3182 3183 3184 3185

	return 0;

err_out:
	talitos_remove(ofdev);

	return err;
}

3186
static const struct of_device_id talitos_match[] = {
3187 3188 3189 3190 3191 3192
#ifdef CONFIG_CRYPTO_DEV_TALITOS1
	{
		.compatible = "fsl,sec1.0",
	},
#endif
#ifdef CONFIG_CRYPTO_DEV_TALITOS2
3193 3194 3195
	{
		.compatible = "fsl,sec2.0",
	},
3196
#endif
3197 3198 3199 3200
	{},
};
MODULE_DEVICE_TABLE(of, talitos_match);

3201
static struct platform_driver talitos_driver = {
3202 3203 3204 3205
	.driver = {
		.name = "talitos",
		.of_match_table = talitos_match,
	},
3206
	.probe = talitos_probe,
A
Al Viro 已提交
3207
	.remove = talitos_remove,
3208 3209
};

3210
module_platform_driver(talitos_driver);
3211 3212 3213 3214

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Kim Phillips <kim.phillips@freescale.com>");
MODULE_DESCRIPTION("Freescale integrated security engine (SEC) driver");