blob: 8653f601b95f87a8f586bb8994b63e263f4330ec [file] [log] [blame]
Kim Phillips9c4a7962008-06-23 19:50:15 +08001/*
2 * talitos - Freescale Integrated Security Engine (SEC) device driver
3 *
Kim Phillips5228f0f2011-07-15 11:21:38 +08004 * Copyright (c) 2008-2011 Freescale Semiconductor, Inc.
Kim Phillips9c4a7962008-06-23 19:50:15 +08005 *
6 * Scatterlist Crypto API glue code copied from files with the following:
7 * Copyright (c) 2006-2007 Herbert Xu <herbert@gondor.apana.org.au>
8 *
9 * Crypto algorithm registration code copied from hifn driver:
10 * 2007+ Copyright (c) Evgeniy Polyakov <johnpol@2ka.mipt.ru>
11 * All rights reserved.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 */
27
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/mod_devicetable.h>
31#include <linux/device.h>
32#include <linux/interrupt.h>
33#include <linux/crypto.h>
34#include <linux/hw_random.h>
35#include <linux/of_platform.h>
36#include <linux/dma-mapping.h>
37#include <linux/io.h>
38#include <linux/spinlock.h>
39#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080041
42#include <crypto/algapi.h>
43#include <crypto/aes.h>
Lee Nipper3952f172008-07-10 18:29:18 +080044#include <crypto/des.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080045#include <crypto/sha.h>
Lee Nipper497f2e62010-05-19 19:20:36 +100046#include <crypto/md5.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080047#include <crypto/aead.h>
48#include <crypto/authenc.h>
Lee Nipper4de9d0b2009-03-29 15:52:32 +080049#include <crypto/skcipher.h>
Lee Nipperacbf7c622010-05-19 19:19:33 +100050#include <crypto/hash.h>
51#include <crypto/internal/hash.h>
Lee Nipper4de9d0b2009-03-29 15:52:32 +080052#include <crypto/scatterwalk.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080053
54#include "talitos.h"
55
Kim Phillips81eb0242009-08-13 11:51:51 +100056static void to_talitos_ptr(struct talitos_ptr *talitos_ptr, dma_addr_t dma_addr)
57{
58 talitos_ptr->ptr = cpu_to_be32(lower_32_bits(dma_addr));
Kim Phillipsa7524472010-09-23 15:56:38 +080059 talitos_ptr->eptr = upper_32_bits(dma_addr);
Kim Phillips81eb0242009-08-13 11:51:51 +100060}
61
Kim Phillips9c4a7962008-06-23 19:50:15 +080062/*
63 * map virtual single (contiguous) pointer to h/w descriptor pointer
64 */
65static void map_single_talitos_ptr(struct device *dev,
66 struct talitos_ptr *talitos_ptr,
67 unsigned short len, void *data,
68 unsigned char extent,
69 enum dma_data_direction dir)
70{
Kim Phillips81eb0242009-08-13 11:51:51 +100071 dma_addr_t dma_addr = dma_map_single(dev, data, len, dir);
72
Kim Phillips9c4a7962008-06-23 19:50:15 +080073 talitos_ptr->len = cpu_to_be16(len);
Kim Phillips81eb0242009-08-13 11:51:51 +100074 to_talitos_ptr(talitos_ptr, dma_addr);
Kim Phillips9c4a7962008-06-23 19:50:15 +080075 talitos_ptr->j_extent = extent;
76}
77
78/*
79 * unmap bus single (contiguous) h/w descriptor pointer
80 */
81static void unmap_single_talitos_ptr(struct device *dev,
82 struct talitos_ptr *talitos_ptr,
83 enum dma_data_direction dir)
84{
85 dma_unmap_single(dev, be32_to_cpu(talitos_ptr->ptr),
86 be16_to_cpu(talitos_ptr->len), dir);
87}
88
89static int reset_channel(struct device *dev, int ch)
90{
91 struct talitos_private *priv = dev_get_drvdata(dev);
92 unsigned int timeout = TALITOS_TIMEOUT;
93
Kim Phillipsad42d5f2011-11-21 16:13:27 +080094 setbits32(priv->chan[ch].reg + TALITOS_CCCR, TALITOS_CCCR_RESET);
Kim Phillips9c4a7962008-06-23 19:50:15 +080095
Kim Phillipsad42d5f2011-11-21 16:13:27 +080096 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) & TALITOS_CCCR_RESET)
Kim Phillips9c4a7962008-06-23 19:50:15 +080097 && --timeout)
98 cpu_relax();
99
100 if (timeout == 0) {
101 dev_err(dev, "failed to reset channel %d\n", ch);
102 return -EIO;
103 }
104
Kim Phillips81eb0242009-08-13 11:51:51 +1000105 /* set 36-bit addressing, done writeback enable and done IRQ enable */
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800106 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, TALITOS_CCCR_LO_EAE |
Kim Phillips81eb0242009-08-13 11:51:51 +1000107 TALITOS_CCCR_LO_CDWE | TALITOS_CCCR_LO_CDIE);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800108
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800109 /* and ICCR writeback, if available */
110 if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800111 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO,
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800112 TALITOS_CCCR_LO_IWSE);
113
Kim Phillips9c4a7962008-06-23 19:50:15 +0800114 return 0;
115}
116
117static int reset_device(struct device *dev)
118{
119 struct talitos_private *priv = dev_get_drvdata(dev);
120 unsigned int timeout = TALITOS_TIMEOUT;
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800121 u32 mcr = TALITOS_MCR_SWR;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800122
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800123 setbits32(priv->reg + TALITOS_MCR, mcr);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800124
125 while ((in_be32(priv->reg + TALITOS_MCR) & TALITOS_MCR_SWR)
126 && --timeout)
127 cpu_relax();
128
Kim Phillips2cdba3c2011-12-12 14:59:11 -0600129 if (priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800130 mcr = TALITOS_MCR_RCA1 | TALITOS_MCR_RCA3;
131 setbits32(priv->reg + TALITOS_MCR, mcr);
132 }
133
Kim Phillips9c4a7962008-06-23 19:50:15 +0800134 if (timeout == 0) {
135 dev_err(dev, "failed to reset device\n");
136 return -EIO;
137 }
138
139 return 0;
140}
141
142/*
143 * Reset and initialize the device
144 */
145static int init_device(struct device *dev)
146{
147 struct talitos_private *priv = dev_get_drvdata(dev);
148 int ch, err;
149
150 /*
151 * Master reset
152 * errata documentation: warning: certain SEC interrupts
153 * are not fully cleared by writing the MCR:SWR bit,
154 * set bit twice to completely reset
155 */
156 err = reset_device(dev);
157 if (err)
158 return err;
159
160 err = reset_device(dev);
161 if (err)
162 return err;
163
164 /* reset channels */
165 for (ch = 0; ch < priv->num_channels; ch++) {
166 err = reset_channel(dev, ch);
167 if (err)
168 return err;
169 }
170
171 /* enable channel done and error interrupts */
172 setbits32(priv->reg + TALITOS_IMR, TALITOS_IMR_INIT);
173 setbits32(priv->reg + TALITOS_IMR_LO, TALITOS_IMR_LO_INIT);
174
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800175 /* disable integrity check error interrupts (use writeback instead) */
176 if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
177 setbits32(priv->reg + TALITOS_MDEUICR_LO,
178 TALITOS_MDEUICR_LO_ICE);
179
Kim Phillips9c4a7962008-06-23 19:50:15 +0800180 return 0;
181}
182
183/**
184 * talitos_submit - submits a descriptor to the device for processing
185 * @dev: the SEC device to be used
Kim Phillips5228f0f2011-07-15 11:21:38 +0800186 * @ch: the SEC device channel to be used
Kim Phillips9c4a7962008-06-23 19:50:15 +0800187 * @desc: the descriptor to be processed by the device
188 * @callback: whom to call when processing is complete
189 * @context: a handle for use by caller (optional)
190 *
191 * desc must contain valid dma-mapped (bus physical) address pointers.
192 * callback must check err and feedback in descriptor header
193 * for device processing status.
194 */
Horia Geanta865d5062012-07-03 19:16:52 +0300195int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc,
196 void (*callback)(struct device *dev,
197 struct talitos_desc *desc,
198 void *context, int error),
199 void *context)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800200{
201 struct talitos_private *priv = dev_get_drvdata(dev);
202 struct talitos_request *request;
Kim Phillips5228f0f2011-07-15 11:21:38 +0800203 unsigned long flags;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800204 int head;
205
Kim Phillips4b9926282009-08-13 11:50:38 +1000206 spin_lock_irqsave(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800207
Kim Phillips4b9926282009-08-13 11:50:38 +1000208 if (!atomic_inc_not_zero(&priv->chan[ch].submit_count)) {
Kim Phillipsec6644d2008-07-17 20:16:40 +0800209 /* h/w fifo is full */
Kim Phillips4b9926282009-08-13 11:50:38 +1000210 spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800211 return -EAGAIN;
212 }
213
Kim Phillips4b9926282009-08-13 11:50:38 +1000214 head = priv->chan[ch].head;
215 request = &priv->chan[ch].fifo[head];
Kim Phillipsec6644d2008-07-17 20:16:40 +0800216
Kim Phillips9c4a7962008-06-23 19:50:15 +0800217 /* map descriptor and save caller data */
218 request->dma_desc = dma_map_single(dev, desc, sizeof(*desc),
219 DMA_BIDIRECTIONAL);
220 request->callback = callback;
221 request->context = context;
222
223 /* increment fifo head */
Kim Phillips4b9926282009-08-13 11:50:38 +1000224 priv->chan[ch].head = (priv->chan[ch].head + 1) & (priv->fifo_len - 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800225
226 smp_wmb();
227 request->desc = desc;
228
229 /* GO! */
230 wmb();
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800231 out_be32(priv->chan[ch].reg + TALITOS_FF,
232 upper_32_bits(request->dma_desc));
233 out_be32(priv->chan[ch].reg + TALITOS_FF_LO,
Kim Phillipsa7524472010-09-23 15:56:38 +0800234 lower_32_bits(request->dma_desc));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800235
Kim Phillips4b9926282009-08-13 11:50:38 +1000236 spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800237
238 return -EINPROGRESS;
239}
Horia Geanta865d5062012-07-03 19:16:52 +0300240EXPORT_SYMBOL(talitos_submit);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800241
242/*
243 * process what was done, notify callback of error if not
244 */
245static void flush_channel(struct device *dev, int ch, int error, int reset_ch)
246{
247 struct talitos_private *priv = dev_get_drvdata(dev);
248 struct talitos_request *request, saved_req;
249 unsigned long flags;
250 int tail, status;
251
Kim Phillips4b9926282009-08-13 11:50:38 +1000252 spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800253
Kim Phillips4b9926282009-08-13 11:50:38 +1000254 tail = priv->chan[ch].tail;
255 while (priv->chan[ch].fifo[tail].desc) {
256 request = &priv->chan[ch].fifo[tail];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800257
258 /* descriptors with their done bits set don't get the error */
259 rmb();
Lee Nipperca38a812008-12-20 17:09:25 +1100260 if ((request->desc->hdr & DESC_HDR_DONE) == DESC_HDR_DONE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800261 status = 0;
Lee Nipperca38a812008-12-20 17:09:25 +1100262 else
Kim Phillips9c4a7962008-06-23 19:50:15 +0800263 if (!error)
264 break;
265 else
266 status = error;
267
268 dma_unmap_single(dev, request->dma_desc,
Kim Phillipse938e462009-03-29 15:53:23 +0800269 sizeof(struct talitos_desc),
270 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800271
272 /* copy entries so we can call callback outside lock */
273 saved_req.desc = request->desc;
274 saved_req.callback = request->callback;
275 saved_req.context = request->context;
276
277 /* release request entry in fifo */
278 smp_wmb();
279 request->desc = NULL;
280
281 /* increment fifo tail */
Kim Phillips4b9926282009-08-13 11:50:38 +1000282 priv->chan[ch].tail = (tail + 1) & (priv->fifo_len - 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800283
Kim Phillips4b9926282009-08-13 11:50:38 +1000284 spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
Kim Phillipsec6644d2008-07-17 20:16:40 +0800285
Kim Phillips4b9926282009-08-13 11:50:38 +1000286 atomic_dec(&priv->chan[ch].submit_count);
Kim Phillipsec6644d2008-07-17 20:16:40 +0800287
Kim Phillips9c4a7962008-06-23 19:50:15 +0800288 saved_req.callback(dev, saved_req.desc, saved_req.context,
289 status);
290 /* channel may resume processing in single desc error case */
291 if (error && !reset_ch && status == error)
292 return;
Kim Phillips4b9926282009-08-13 11:50:38 +1000293 spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
294 tail = priv->chan[ch].tail;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800295 }
296
Kim Phillips4b9926282009-08-13 11:50:38 +1000297 spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800298}
299
300/*
301 * process completed requests for channels that have done status
302 */
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800303#define DEF_TALITOS_DONE(name, ch_done_mask) \
304static void talitos_done_##name(unsigned long data) \
305{ \
306 struct device *dev = (struct device *)data; \
307 struct talitos_private *priv = dev_get_drvdata(dev); \
Horia Geanta511d63c2012-03-30 17:49:53 +0300308 unsigned long flags; \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800309 \
310 if (ch_done_mask & 1) \
311 flush_channel(dev, 0, 0, 0); \
312 if (priv->num_channels == 1) \
313 goto out; \
314 if (ch_done_mask & (1 << 2)) \
315 flush_channel(dev, 1, 0, 0); \
316 if (ch_done_mask & (1 << 4)) \
317 flush_channel(dev, 2, 0, 0); \
318 if (ch_done_mask & (1 << 6)) \
319 flush_channel(dev, 3, 0, 0); \
320 \
321out: \
322 /* At this point, all completed channels have been processed */ \
323 /* Unmask done interrupts for channels completed later on. */ \
Horia Geanta511d63c2012-03-30 17:49:53 +0300324 spin_lock_irqsave(&priv->reg_lock, flags); \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800325 setbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
326 setbits32(priv->reg + TALITOS_IMR_LO, TALITOS_IMR_LO_INIT); \
Horia Geanta511d63c2012-03-30 17:49:53 +0300327 spin_unlock_irqrestore(&priv->reg_lock, flags); \
Kim Phillips9c4a7962008-06-23 19:50:15 +0800328}
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800329DEF_TALITOS_DONE(4ch, TALITOS_ISR_4CHDONE)
330DEF_TALITOS_DONE(ch0_2, TALITOS_ISR_CH_0_2_DONE)
331DEF_TALITOS_DONE(ch1_3, TALITOS_ISR_CH_1_3_DONE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800332
333/*
334 * locate current (offending) descriptor
335 */
Kim Phillips3e721ae2011-10-21 15:20:28 +0200336static u32 current_desc_hdr(struct device *dev, int ch)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800337{
338 struct talitos_private *priv = dev_get_drvdata(dev);
Kim Phillips4b9926282009-08-13 11:50:38 +1000339 int tail = priv->chan[ch].tail;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800340 dma_addr_t cur_desc;
341
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800342 cur_desc = in_be32(priv->chan[ch].reg + TALITOS_CDPR_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800343
Kim Phillips4b9926282009-08-13 11:50:38 +1000344 while (priv->chan[ch].fifo[tail].dma_desc != cur_desc) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800345 tail = (tail + 1) & (priv->fifo_len - 1);
Kim Phillips4b9926282009-08-13 11:50:38 +1000346 if (tail == priv->chan[ch].tail) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800347 dev_err(dev, "couldn't locate current descriptor\n");
Kim Phillips3e721ae2011-10-21 15:20:28 +0200348 return 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800349 }
350 }
351
Kim Phillips3e721ae2011-10-21 15:20:28 +0200352 return priv->chan[ch].fifo[tail].desc->hdr;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800353}
354
355/*
356 * user diagnostics; report root cause of error based on execution unit status
357 */
Kim Phillips3e721ae2011-10-21 15:20:28 +0200358static void report_eu_error(struct device *dev, int ch, u32 desc_hdr)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800359{
360 struct talitos_private *priv = dev_get_drvdata(dev);
361 int i;
362
Kim Phillips3e721ae2011-10-21 15:20:28 +0200363 if (!desc_hdr)
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800364 desc_hdr = in_be32(priv->chan[ch].reg + TALITOS_DESCBUF);
Kim Phillips3e721ae2011-10-21 15:20:28 +0200365
366 switch (desc_hdr & DESC_HDR_SEL0_MASK) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800367 case DESC_HDR_SEL0_AFEU:
368 dev_err(dev, "AFEUISR 0x%08x_%08x\n",
369 in_be32(priv->reg + TALITOS_AFEUISR),
370 in_be32(priv->reg + TALITOS_AFEUISR_LO));
371 break;
372 case DESC_HDR_SEL0_DEU:
373 dev_err(dev, "DEUISR 0x%08x_%08x\n",
374 in_be32(priv->reg + TALITOS_DEUISR),
375 in_be32(priv->reg + TALITOS_DEUISR_LO));
376 break;
377 case DESC_HDR_SEL0_MDEUA:
378 case DESC_HDR_SEL0_MDEUB:
379 dev_err(dev, "MDEUISR 0x%08x_%08x\n",
380 in_be32(priv->reg + TALITOS_MDEUISR),
381 in_be32(priv->reg + TALITOS_MDEUISR_LO));
382 break;
383 case DESC_HDR_SEL0_RNG:
384 dev_err(dev, "RNGUISR 0x%08x_%08x\n",
385 in_be32(priv->reg + TALITOS_RNGUISR),
386 in_be32(priv->reg + TALITOS_RNGUISR_LO));
387 break;
388 case DESC_HDR_SEL0_PKEU:
389 dev_err(dev, "PKEUISR 0x%08x_%08x\n",
390 in_be32(priv->reg + TALITOS_PKEUISR),
391 in_be32(priv->reg + TALITOS_PKEUISR_LO));
392 break;
393 case DESC_HDR_SEL0_AESU:
394 dev_err(dev, "AESUISR 0x%08x_%08x\n",
395 in_be32(priv->reg + TALITOS_AESUISR),
396 in_be32(priv->reg + TALITOS_AESUISR_LO));
397 break;
398 case DESC_HDR_SEL0_CRCU:
399 dev_err(dev, "CRCUISR 0x%08x_%08x\n",
400 in_be32(priv->reg + TALITOS_CRCUISR),
401 in_be32(priv->reg + TALITOS_CRCUISR_LO));
402 break;
403 case DESC_HDR_SEL0_KEU:
404 dev_err(dev, "KEUISR 0x%08x_%08x\n",
405 in_be32(priv->reg + TALITOS_KEUISR),
406 in_be32(priv->reg + TALITOS_KEUISR_LO));
407 break;
408 }
409
Kim Phillips3e721ae2011-10-21 15:20:28 +0200410 switch (desc_hdr & DESC_HDR_SEL1_MASK) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800411 case DESC_HDR_SEL1_MDEUA:
412 case DESC_HDR_SEL1_MDEUB:
413 dev_err(dev, "MDEUISR 0x%08x_%08x\n",
414 in_be32(priv->reg + TALITOS_MDEUISR),
415 in_be32(priv->reg + TALITOS_MDEUISR_LO));
416 break;
417 case DESC_HDR_SEL1_CRCU:
418 dev_err(dev, "CRCUISR 0x%08x_%08x\n",
419 in_be32(priv->reg + TALITOS_CRCUISR),
420 in_be32(priv->reg + TALITOS_CRCUISR_LO));
421 break;
422 }
423
424 for (i = 0; i < 8; i++)
425 dev_err(dev, "DESCBUF 0x%08x_%08x\n",
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800426 in_be32(priv->chan[ch].reg + TALITOS_DESCBUF + 8*i),
427 in_be32(priv->chan[ch].reg + TALITOS_DESCBUF_LO + 8*i));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800428}
429
430/*
431 * recover from error interrupts
432 */
Kim Phillips5e718a02011-12-12 14:59:12 -0600433static void talitos_error(struct device *dev, u32 isr, u32 isr_lo)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800434{
Kim Phillips9c4a7962008-06-23 19:50:15 +0800435 struct talitos_private *priv = dev_get_drvdata(dev);
436 unsigned int timeout = TALITOS_TIMEOUT;
437 int ch, error, reset_dev = 0, reset_ch = 0;
Kim Phillips40405f12008-10-12 20:19:35 +0800438 u32 v, v_lo;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800439
440 for (ch = 0; ch < priv->num_channels; ch++) {
441 /* skip channels without errors */
442 if (!(isr & (1 << (ch * 2 + 1))))
443 continue;
444
445 error = -EINVAL;
446
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800447 v = in_be32(priv->chan[ch].reg + TALITOS_CCPSR);
448 v_lo = in_be32(priv->chan[ch].reg + TALITOS_CCPSR_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800449
450 if (v_lo & TALITOS_CCPSR_LO_DOF) {
451 dev_err(dev, "double fetch fifo overflow error\n");
452 error = -EAGAIN;
453 reset_ch = 1;
454 }
455 if (v_lo & TALITOS_CCPSR_LO_SOF) {
456 /* h/w dropped descriptor */
457 dev_err(dev, "single fetch fifo overflow error\n");
458 error = -EAGAIN;
459 }
460 if (v_lo & TALITOS_CCPSR_LO_MDTE)
461 dev_err(dev, "master data transfer error\n");
462 if (v_lo & TALITOS_CCPSR_LO_SGDLZ)
463 dev_err(dev, "s/g data length zero error\n");
464 if (v_lo & TALITOS_CCPSR_LO_FPZ)
465 dev_err(dev, "fetch pointer zero error\n");
466 if (v_lo & TALITOS_CCPSR_LO_IDH)
467 dev_err(dev, "illegal descriptor header error\n");
468 if (v_lo & TALITOS_CCPSR_LO_IEU)
469 dev_err(dev, "invalid execution unit error\n");
470 if (v_lo & TALITOS_CCPSR_LO_EU)
Kim Phillips3e721ae2011-10-21 15:20:28 +0200471 report_eu_error(dev, ch, current_desc_hdr(dev, ch));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800472 if (v_lo & TALITOS_CCPSR_LO_GB)
473 dev_err(dev, "gather boundary error\n");
474 if (v_lo & TALITOS_CCPSR_LO_GRL)
475 dev_err(dev, "gather return/length error\n");
476 if (v_lo & TALITOS_CCPSR_LO_SB)
477 dev_err(dev, "scatter boundary error\n");
478 if (v_lo & TALITOS_CCPSR_LO_SRL)
479 dev_err(dev, "scatter return/length error\n");
480
481 flush_channel(dev, ch, error, reset_ch);
482
483 if (reset_ch) {
484 reset_channel(dev, ch);
485 } else {
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800486 setbits32(priv->chan[ch].reg + TALITOS_CCCR,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800487 TALITOS_CCCR_CONT);
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800488 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, 0);
489 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) &
Kim Phillips9c4a7962008-06-23 19:50:15 +0800490 TALITOS_CCCR_CONT) && --timeout)
491 cpu_relax();
492 if (timeout == 0) {
493 dev_err(dev, "failed to restart channel %d\n",
494 ch);
495 reset_dev = 1;
496 }
497 }
498 }
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800499 if (reset_dev || isr & ~TALITOS_ISR_4CHERR || isr_lo) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800500 dev_err(dev, "done overflow, internal time out, or rngu error: "
501 "ISR 0x%08x_%08x\n", isr, isr_lo);
502
503 /* purge request queues */
504 for (ch = 0; ch < priv->num_channels; ch++)
505 flush_channel(dev, ch, -EIO, 1);
506
507 /* reset and reinitialize the device */
508 init_device(dev);
509 }
510}
511
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800512#define DEF_TALITOS_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet) \
513static irqreturn_t talitos_interrupt_##name(int irq, void *data) \
514{ \
515 struct device *dev = data; \
516 struct talitos_private *priv = dev_get_drvdata(dev); \
517 u32 isr, isr_lo; \
Horia Geanta511d63c2012-03-30 17:49:53 +0300518 unsigned long flags; \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800519 \
Horia Geanta511d63c2012-03-30 17:49:53 +0300520 spin_lock_irqsave(&priv->reg_lock, flags); \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800521 isr = in_be32(priv->reg + TALITOS_ISR); \
522 isr_lo = in_be32(priv->reg + TALITOS_ISR_LO); \
523 /* Acknowledge interrupt */ \
524 out_be32(priv->reg + TALITOS_ICR, isr & (ch_done_mask | ch_err_mask)); \
525 out_be32(priv->reg + TALITOS_ICR_LO, isr_lo); \
526 \
Horia Geanta511d63c2012-03-30 17:49:53 +0300527 if (unlikely(isr & ch_err_mask || isr_lo)) { \
528 spin_unlock_irqrestore(&priv->reg_lock, flags); \
529 talitos_error(dev, isr & ch_err_mask, isr_lo); \
530 } \
531 else { \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800532 if (likely(isr & ch_done_mask)) { \
533 /* mask further done interrupts. */ \
534 clrbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
535 /* done_task will unmask done interrupts at exit */ \
536 tasklet_schedule(&priv->done_task[tlet]); \
537 } \
Horia Geanta511d63c2012-03-30 17:49:53 +0300538 spin_unlock_irqrestore(&priv->reg_lock, flags); \
539 } \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800540 \
541 return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED : \
542 IRQ_NONE; \
Kim Phillips9c4a7962008-06-23 19:50:15 +0800543}
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800544DEF_TALITOS_INTERRUPT(4ch, TALITOS_ISR_4CHDONE, TALITOS_ISR_4CHERR, 0)
545DEF_TALITOS_INTERRUPT(ch0_2, TALITOS_ISR_CH_0_2_DONE, TALITOS_ISR_CH_0_2_ERR, 0)
546DEF_TALITOS_INTERRUPT(ch1_3, TALITOS_ISR_CH_1_3_DONE, TALITOS_ISR_CH_1_3_ERR, 1)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800547
548/*
549 * hwrng
550 */
551static int talitos_rng_data_present(struct hwrng *rng, int wait)
552{
553 struct device *dev = (struct device *)rng->priv;
554 struct talitos_private *priv = dev_get_drvdata(dev);
555 u32 ofl;
556 int i;
557
558 for (i = 0; i < 20; i++) {
559 ofl = in_be32(priv->reg + TALITOS_RNGUSR_LO) &
560 TALITOS_RNGUSR_LO_OFL;
561 if (ofl || !wait)
562 break;
563 udelay(10);
564 }
565
566 return !!ofl;
567}
568
569static int talitos_rng_data_read(struct hwrng *rng, u32 *data)
570{
571 struct device *dev = (struct device *)rng->priv;
572 struct talitos_private *priv = dev_get_drvdata(dev);
573
574 /* rng fifo requires 64-bit accesses */
575 *data = in_be32(priv->reg + TALITOS_RNGU_FIFO);
576 *data = in_be32(priv->reg + TALITOS_RNGU_FIFO_LO);
577
578 return sizeof(u32);
579}
580
581static int talitos_rng_init(struct hwrng *rng)
582{
583 struct device *dev = (struct device *)rng->priv;
584 struct talitos_private *priv = dev_get_drvdata(dev);
585 unsigned int timeout = TALITOS_TIMEOUT;
586
587 setbits32(priv->reg + TALITOS_RNGURCR_LO, TALITOS_RNGURCR_LO_SR);
588 while (!(in_be32(priv->reg + TALITOS_RNGUSR_LO) & TALITOS_RNGUSR_LO_RD)
589 && --timeout)
590 cpu_relax();
591 if (timeout == 0) {
592 dev_err(dev, "failed to reset rng hw\n");
593 return -ENODEV;
594 }
595
596 /* start generating */
597 setbits32(priv->reg + TALITOS_RNGUDSR_LO, 0);
598
599 return 0;
600}
601
602static int talitos_register_rng(struct device *dev)
603{
604 struct talitos_private *priv = dev_get_drvdata(dev);
605
606 priv->rng.name = dev_driver_string(dev),
607 priv->rng.init = talitos_rng_init,
608 priv->rng.data_present = talitos_rng_data_present,
609 priv->rng.data_read = talitos_rng_data_read,
610 priv->rng.priv = (unsigned long)dev;
611
612 return hwrng_register(&priv->rng);
613}
614
615static void talitos_unregister_rng(struct device *dev)
616{
617 struct talitos_private *priv = dev_get_drvdata(dev);
618
619 hwrng_unregister(&priv->rng);
620}
621
622/*
623 * crypto alg
624 */
625#define TALITOS_CRA_PRIORITY 3000
Horia Geanta357fb602012-07-03 19:16:53 +0300626#define TALITOS_MAX_KEY_SIZE 96
Lee Nipper3952f172008-07-10 18:29:18 +0800627#define TALITOS_MAX_IV_LENGTH 16 /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */
Lee Nipper70bcaca2008-07-03 19:08:46 +0800628
Lee Nipper497f2e62010-05-19 19:20:36 +1000629#define MD5_BLOCK_SIZE 64
Kim Phillips9c4a7962008-06-23 19:50:15 +0800630
631struct talitos_ctx {
632 struct device *dev;
Kim Phillips5228f0f2011-07-15 11:21:38 +0800633 int ch;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800634 __be32 desc_hdr_template;
635 u8 key[TALITOS_MAX_KEY_SIZE];
Lee Nipper70bcaca2008-07-03 19:08:46 +0800636 u8 iv[TALITOS_MAX_IV_LENGTH];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800637 unsigned int keylen;
638 unsigned int enckeylen;
639 unsigned int authkeylen;
640 unsigned int authsize;
641};
642
Lee Nipper497f2e62010-05-19 19:20:36 +1000643#define HASH_MAX_BLOCK_SIZE SHA512_BLOCK_SIZE
644#define TALITOS_MDEU_MAX_CONTEXT_SIZE TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512
645
646struct talitos_ahash_req_ctx {
Kim Phillips60f208d2010-05-19 19:21:53 +1000647 u32 hw_context[TALITOS_MDEU_MAX_CONTEXT_SIZE / sizeof(u32)];
Lee Nipper497f2e62010-05-19 19:20:36 +1000648 unsigned int hw_context_size;
649 u8 buf[HASH_MAX_BLOCK_SIZE];
650 u8 bufnext[HASH_MAX_BLOCK_SIZE];
Kim Phillips60f208d2010-05-19 19:21:53 +1000651 unsigned int swinit;
Lee Nipper497f2e62010-05-19 19:20:36 +1000652 unsigned int first;
653 unsigned int last;
654 unsigned int to_hash_later;
Lee Nipper5e833bc2010-06-16 15:29:15 +1000655 u64 nbuf;
Lee Nipper497f2e62010-05-19 19:20:36 +1000656 struct scatterlist bufsl[2];
657 struct scatterlist *psrc;
658};
659
Lee Nipper56af8cd2009-03-29 15:50:50 +0800660static int aead_setauthsize(struct crypto_aead *authenc,
661 unsigned int authsize)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800662{
663 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
664
665 ctx->authsize = authsize;
666
667 return 0;
668}
669
Lee Nipper56af8cd2009-03-29 15:50:50 +0800670static int aead_setkey(struct crypto_aead *authenc,
671 const u8 *key, unsigned int keylen)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800672{
673 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
674 struct rtattr *rta = (void *)key;
675 struct crypto_authenc_key_param *param;
676 unsigned int authkeylen;
677 unsigned int enckeylen;
678
679 if (!RTA_OK(rta, keylen))
680 goto badkey;
681
682 if (rta->rta_type != CRYPTO_AUTHENC_KEYA_PARAM)
683 goto badkey;
684
685 if (RTA_PAYLOAD(rta) < sizeof(*param))
686 goto badkey;
687
688 param = RTA_DATA(rta);
689 enckeylen = be32_to_cpu(param->enckeylen);
690
691 key += RTA_ALIGN(rta->rta_len);
692 keylen -= RTA_ALIGN(rta->rta_len);
693
694 if (keylen < enckeylen)
695 goto badkey;
696
697 authkeylen = keylen - enckeylen;
698
699 if (keylen > TALITOS_MAX_KEY_SIZE)
700 goto badkey;
701
702 memcpy(&ctx->key, key, keylen);
703
704 ctx->keylen = keylen;
705 ctx->enckeylen = enckeylen;
706 ctx->authkeylen = authkeylen;
707
708 return 0;
709
710badkey:
711 crypto_aead_set_flags(authenc, CRYPTO_TFM_RES_BAD_KEY_LEN);
712 return -EINVAL;
713}
714
715/*
Lee Nipper56af8cd2009-03-29 15:50:50 +0800716 * talitos_edesc - s/w-extended descriptor
Kim Phillips9c4a7962008-06-23 19:50:15 +0800717 * @src_nents: number of segments in input scatterlist
718 * @dst_nents: number of segments in output scatterlist
719 * @dma_len: length of dma mapped link_tbl space
720 * @dma_link_tbl: bus physical address of link_tbl
721 * @desc: h/w descriptor
722 * @link_tbl: input and output h/w link tables (if {src,dst}_nents > 1)
723 *
724 * if decrypting (with authcheck), or either one of src_nents or dst_nents
725 * is greater than 1, an integrity check value is concatenated to the end
726 * of link_tbl data
727 */
Lee Nipper56af8cd2009-03-29 15:50:50 +0800728struct talitos_edesc {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800729 int src_nents;
730 int dst_nents;
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800731 int src_is_chained;
732 int dst_is_chained;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800733 int dma_len;
734 dma_addr_t dma_link_tbl;
735 struct talitos_desc desc;
736 struct talitos_ptr link_tbl[0];
737};
738
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800739static int talitos_map_sg(struct device *dev, struct scatterlist *sg,
740 unsigned int nents, enum dma_data_direction dir,
741 int chained)
742{
743 if (unlikely(chained))
744 while (sg) {
745 dma_map_sg(dev, sg, 1, dir);
746 sg = scatterwalk_sg_next(sg);
747 }
748 else
749 dma_map_sg(dev, sg, nents, dir);
750 return nents;
751}
752
753static void talitos_unmap_sg_chain(struct device *dev, struct scatterlist *sg,
754 enum dma_data_direction dir)
755{
756 while (sg) {
757 dma_unmap_sg(dev, sg, 1, dir);
758 sg = scatterwalk_sg_next(sg);
759 }
760}
761
762static void talitos_sg_unmap(struct device *dev,
763 struct talitos_edesc *edesc,
764 struct scatterlist *src,
765 struct scatterlist *dst)
766{
767 unsigned int src_nents = edesc->src_nents ? : 1;
768 unsigned int dst_nents = edesc->dst_nents ? : 1;
769
770 if (src != dst) {
771 if (edesc->src_is_chained)
772 talitos_unmap_sg_chain(dev, src, DMA_TO_DEVICE);
773 else
774 dma_unmap_sg(dev, src, src_nents, DMA_TO_DEVICE);
775
Lee Nipper497f2e62010-05-19 19:20:36 +1000776 if (dst) {
777 if (edesc->dst_is_chained)
778 talitos_unmap_sg_chain(dev, dst,
779 DMA_FROM_DEVICE);
780 else
781 dma_unmap_sg(dev, dst, dst_nents,
782 DMA_FROM_DEVICE);
783 }
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800784 } else
785 if (edesc->src_is_chained)
786 talitos_unmap_sg_chain(dev, src, DMA_BIDIRECTIONAL);
787 else
788 dma_unmap_sg(dev, src, src_nents, DMA_BIDIRECTIONAL);
789}
790
Kim Phillips9c4a7962008-06-23 19:50:15 +0800791static void ipsec_esp_unmap(struct device *dev,
Lee Nipper56af8cd2009-03-29 15:50:50 +0800792 struct talitos_edesc *edesc,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800793 struct aead_request *areq)
794{
795 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[6], DMA_FROM_DEVICE);
796 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[3], DMA_TO_DEVICE);
797 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
798 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[0], DMA_TO_DEVICE);
799
800 dma_unmap_sg(dev, areq->assoc, 1, DMA_TO_DEVICE);
801
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800802 talitos_sg_unmap(dev, edesc, areq->src, areq->dst);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800803
804 if (edesc->dma_len)
805 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
806 DMA_BIDIRECTIONAL);
807}
808
809/*
810 * ipsec_esp descriptor callbacks
811 */
812static void ipsec_esp_encrypt_done(struct device *dev,
813 struct talitos_desc *desc, void *context,
814 int err)
815{
816 struct aead_request *areq = context;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800817 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
818 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Kim Phillips19bbbc62009-03-29 15:53:59 +0800819 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800820 struct scatterlist *sg;
821 void *icvdata;
822
Kim Phillips19bbbc62009-03-29 15:53:59 +0800823 edesc = container_of(desc, struct talitos_edesc, desc);
824
Kim Phillips9c4a7962008-06-23 19:50:15 +0800825 ipsec_esp_unmap(dev, edesc, areq);
826
827 /* copy the generated ICV to dst */
Horia Geanta60542502012-08-02 17:16:37 +0300828 if (edesc->dst_nents) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800829 icvdata = &edesc->link_tbl[edesc->src_nents +
Lee Nipperf3c85bc2008-07-30 16:26:57 +0800830 edesc->dst_nents + 2];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800831 sg = sg_last(areq->dst, edesc->dst_nents);
832 memcpy((char *)sg_virt(sg) + sg->length - ctx->authsize,
833 icvdata, ctx->authsize);
834 }
835
836 kfree(edesc);
837
838 aead_request_complete(areq, err);
839}
840
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800841static void ipsec_esp_decrypt_swauth_done(struct device *dev,
Kim Phillipse938e462009-03-29 15:53:23 +0800842 struct talitos_desc *desc,
843 void *context, int err)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800844{
845 struct aead_request *req = context;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800846 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
847 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Kim Phillips19bbbc62009-03-29 15:53:59 +0800848 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800849 struct scatterlist *sg;
850 void *icvdata;
851
Kim Phillips19bbbc62009-03-29 15:53:59 +0800852 edesc = container_of(desc, struct talitos_edesc, desc);
853
Kim Phillips9c4a7962008-06-23 19:50:15 +0800854 ipsec_esp_unmap(dev, edesc, req);
855
856 if (!err) {
857 /* auth check */
858 if (edesc->dma_len)
859 icvdata = &edesc->link_tbl[edesc->src_nents +
Lee Nipperf3c85bc2008-07-30 16:26:57 +0800860 edesc->dst_nents + 2];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800861 else
862 icvdata = &edesc->link_tbl[0];
863
864 sg = sg_last(req->dst, edesc->dst_nents ? : 1);
865 err = memcmp(icvdata, (char *)sg_virt(sg) + sg->length -
866 ctx->authsize, ctx->authsize) ? -EBADMSG : 0;
867 }
868
869 kfree(edesc);
870
871 aead_request_complete(req, err);
872}
873
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800874static void ipsec_esp_decrypt_hwauth_done(struct device *dev,
Kim Phillipse938e462009-03-29 15:53:23 +0800875 struct talitos_desc *desc,
876 void *context, int err)
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800877{
878 struct aead_request *req = context;
Kim Phillips19bbbc62009-03-29 15:53:59 +0800879 struct talitos_edesc *edesc;
880
881 edesc = container_of(desc, struct talitos_edesc, desc);
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800882
883 ipsec_esp_unmap(dev, edesc, req);
884
885 /* check ICV auth status */
Kim Phillipse938e462009-03-29 15:53:23 +0800886 if (!err && ((desc->hdr_lo & DESC_HDR_LO_ICCR1_MASK) !=
887 DESC_HDR_LO_ICCR1_PASS))
888 err = -EBADMSG;
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800889
890 kfree(edesc);
891
892 aead_request_complete(req, err);
893}
894
Kim Phillips9c4a7962008-06-23 19:50:15 +0800895/*
896 * convert scatterlist to SEC h/w link table format
897 * stop at cryptlen bytes
898 */
Lee Nipper70bcaca2008-07-03 19:08:46 +0800899static int sg_to_link_tbl(struct scatterlist *sg, int sg_count,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800900 int cryptlen, struct talitos_ptr *link_tbl_ptr)
901{
Lee Nipper70bcaca2008-07-03 19:08:46 +0800902 int n_sg = sg_count;
903
904 while (n_sg--) {
Kim Phillips81eb0242009-08-13 11:51:51 +1000905 to_talitos_ptr(link_tbl_ptr, sg_dma_address(sg));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800906 link_tbl_ptr->len = cpu_to_be16(sg_dma_len(sg));
907 link_tbl_ptr->j_extent = 0;
908 link_tbl_ptr++;
909 cryptlen -= sg_dma_len(sg);
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800910 sg = scatterwalk_sg_next(sg);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800911 }
912
Lee Nipper70bcaca2008-07-03 19:08:46 +0800913 /* adjust (decrease) last one (or two) entry's len to cryptlen */
Kim Phillips9c4a7962008-06-23 19:50:15 +0800914 link_tbl_ptr--;
Kim Phillipsc0e741d2008-07-17 20:20:59 +0800915 while (be16_to_cpu(link_tbl_ptr->len) <= (-cryptlen)) {
Lee Nipper70bcaca2008-07-03 19:08:46 +0800916 /* Empty this entry, and move to previous one */
917 cryptlen += be16_to_cpu(link_tbl_ptr->len);
918 link_tbl_ptr->len = 0;
919 sg_count--;
920 link_tbl_ptr--;
921 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800922 link_tbl_ptr->len = cpu_to_be16(be16_to_cpu(link_tbl_ptr->len)
923 + cryptlen);
924
925 /* tag end of link table */
926 link_tbl_ptr->j_extent = DESC_PTR_LNKTBL_RETURN;
Lee Nipper70bcaca2008-07-03 19:08:46 +0800927
928 return sg_count;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800929}
930
931/*
932 * fill in and submit ipsec_esp descriptor
933 */
Lee Nipper56af8cd2009-03-29 15:50:50 +0800934static int ipsec_esp(struct talitos_edesc *edesc, struct aead_request *areq,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800935 u8 *giv, u64 seq,
936 void (*callback) (struct device *dev,
937 struct talitos_desc *desc,
938 void *context, int error))
939{
940 struct crypto_aead *aead = crypto_aead_reqtfm(areq);
941 struct talitos_ctx *ctx = crypto_aead_ctx(aead);
942 struct device *dev = ctx->dev;
943 struct talitos_desc *desc = &edesc->desc;
944 unsigned int cryptlen = areq->cryptlen;
945 unsigned int authsize = ctx->authsize;
Kim Phillipse41256f2009-08-13 11:49:06 +1000946 unsigned int ivsize = crypto_aead_ivsize(aead);
Kim Phillipsfa86a262008-07-17 20:20:06 +0800947 int sg_count, ret;
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800948 int sg_link_tbl_len;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800949
950 /* hmac key */
951 map_single_talitos_ptr(dev, &desc->ptr[0], ctx->authkeylen, &ctx->key,
952 0, DMA_TO_DEVICE);
953 /* hmac data */
Kim Phillipse41256f2009-08-13 11:49:06 +1000954 map_single_talitos_ptr(dev, &desc->ptr[1], areq->assoclen + ivsize,
955 sg_virt(areq->assoc), 0, DMA_TO_DEVICE);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800956 /* cipher iv */
Kim Phillips9c4a7962008-06-23 19:50:15 +0800957 map_single_talitos_ptr(dev, &desc->ptr[2], ivsize, giv ?: areq->iv, 0,
958 DMA_TO_DEVICE);
959
960 /* cipher key */
961 map_single_talitos_ptr(dev, &desc->ptr[3], ctx->enckeylen,
962 (char *)&ctx->key + ctx->authkeylen, 0,
963 DMA_TO_DEVICE);
964
965 /*
966 * cipher in
967 * map and adjust cipher len to aead request cryptlen.
968 * extent is bytes of HMAC postpended to ciphertext,
969 * typically 12 for ipsec
970 */
971 desc->ptr[4].len = cpu_to_be16(cryptlen);
972 desc->ptr[4].j_extent = authsize;
973
Kim Phillipse938e462009-03-29 15:53:23 +0800974 sg_count = talitos_map_sg(dev, areq->src, edesc->src_nents ? : 1,
975 (areq->src == areq->dst) ? DMA_BIDIRECTIONAL
976 : DMA_TO_DEVICE,
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800977 edesc->src_is_chained);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800978
979 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +1000980 to_talitos_ptr(&desc->ptr[4], sg_dma_address(areq->src));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800981 } else {
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800982 sg_link_tbl_len = cryptlen;
983
Kim Phillips962a9c92009-03-29 15:54:30 +0800984 if (edesc->desc.hdr & DESC_HDR_MODE1_MDEU_CICV)
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800985 sg_link_tbl_len = cryptlen + authsize;
Kim Phillipse938e462009-03-29 15:53:23 +0800986
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800987 sg_count = sg_to_link_tbl(areq->src, sg_count, sg_link_tbl_len,
Lee Nipper70bcaca2008-07-03 19:08:46 +0800988 &edesc->link_tbl[0]);
989 if (sg_count > 1) {
990 desc->ptr[4].j_extent |= DESC_PTR_LNKTBL_JUMP;
Kim Phillips81eb0242009-08-13 11:51:51 +1000991 to_talitos_ptr(&desc->ptr[4], edesc->dma_link_tbl);
Kim Phillipse938e462009-03-29 15:53:23 +0800992 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
993 edesc->dma_len,
994 DMA_BIDIRECTIONAL);
Lee Nipper70bcaca2008-07-03 19:08:46 +0800995 } else {
996 /* Only one segment now, so no link tbl needed */
Kim Phillips81eb0242009-08-13 11:51:51 +1000997 to_talitos_ptr(&desc->ptr[4],
998 sg_dma_address(areq->src));
Lee Nipper70bcaca2008-07-03 19:08:46 +0800999 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001000 }
1001
1002 /* cipher out */
1003 desc->ptr[5].len = cpu_to_be16(cryptlen);
1004 desc->ptr[5].j_extent = authsize;
1005
Kim Phillipse938e462009-03-29 15:53:23 +08001006 if (areq->src != areq->dst)
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001007 sg_count = talitos_map_sg(dev, areq->dst,
1008 edesc->dst_nents ? : 1,
1009 DMA_FROM_DEVICE,
1010 edesc->dst_is_chained);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001011
1012 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001013 to_talitos_ptr(&desc->ptr[5], sg_dma_address(areq->dst));
Kim Phillips9c4a7962008-06-23 19:50:15 +08001014 } else {
1015 struct talitos_ptr *link_tbl_ptr =
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001016 &edesc->link_tbl[edesc->src_nents + 1];
Kim Phillips9c4a7962008-06-23 19:50:15 +08001017
Kim Phillips81eb0242009-08-13 11:51:51 +10001018 to_talitos_ptr(&desc->ptr[5], edesc->dma_link_tbl +
1019 (edesc->src_nents + 1) *
1020 sizeof(struct talitos_ptr));
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001021 sg_count = sg_to_link_tbl(areq->dst, sg_count, cryptlen,
1022 link_tbl_ptr);
1023
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001024 /* Add an entry to the link table for ICV data */
Kim Phillips9c4a7962008-06-23 19:50:15 +08001025 link_tbl_ptr += sg_count - 1;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001026 link_tbl_ptr->j_extent = 0;
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001027 sg_count++;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001028 link_tbl_ptr++;
1029 link_tbl_ptr->j_extent = DESC_PTR_LNKTBL_RETURN;
1030 link_tbl_ptr->len = cpu_to_be16(authsize);
1031
1032 /* icv data follows link tables */
Kim Phillips81eb0242009-08-13 11:51:51 +10001033 to_talitos_ptr(link_tbl_ptr, edesc->dma_link_tbl +
1034 (edesc->src_nents + edesc->dst_nents + 2) *
1035 sizeof(struct talitos_ptr));
Kim Phillips9c4a7962008-06-23 19:50:15 +08001036 desc->ptr[5].j_extent |= DESC_PTR_LNKTBL_JUMP;
1037 dma_sync_single_for_device(ctx->dev, edesc->dma_link_tbl,
1038 edesc->dma_len, DMA_BIDIRECTIONAL);
1039 }
1040
1041 /* iv out */
1042 map_single_talitos_ptr(dev, &desc->ptr[6], ivsize, ctx->iv, 0,
1043 DMA_FROM_DEVICE);
1044
Kim Phillips5228f0f2011-07-15 11:21:38 +08001045 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Kim Phillipsfa86a262008-07-17 20:20:06 +08001046 if (ret != -EINPROGRESS) {
1047 ipsec_esp_unmap(dev, edesc, areq);
1048 kfree(edesc);
1049 }
1050 return ret;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001051}
1052
Kim Phillips9c4a7962008-06-23 19:50:15 +08001053/*
1054 * derive number of elements in scatterlist
1055 */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001056static int sg_count(struct scatterlist *sg_list, int nbytes, int *chained)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001057{
1058 struct scatterlist *sg = sg_list;
1059 int sg_nents = 0;
1060
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001061 *chained = 0;
1062 while (nbytes > 0) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08001063 sg_nents++;
1064 nbytes -= sg->length;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001065 if (!sg_is_last(sg) && (sg + 1)->length == 0)
1066 *chained = 1;
1067 sg = scatterwalk_sg_next(sg);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001068 }
1069
1070 return sg_nents;
1071}
1072
Lee Nipper497f2e62010-05-19 19:20:36 +10001073/**
1074 * sg_copy_end_to_buffer - Copy end data from SG list to a linear buffer
1075 * @sgl: The SG list
1076 * @nents: Number of SG entries
1077 * @buf: Where to copy to
1078 * @buflen: The number of bytes to copy
1079 * @skip: The number of bytes to skip before copying.
1080 * Note: skip + buflen should equal SG total size.
1081 *
1082 * Returns the number of copied bytes.
1083 *
1084 **/
1085static size_t sg_copy_end_to_buffer(struct scatterlist *sgl, unsigned int nents,
1086 void *buf, size_t buflen, unsigned int skip)
1087{
1088 unsigned int offset = 0;
1089 unsigned int boffset = 0;
1090 struct sg_mapping_iter miter;
1091 unsigned long flags;
1092 unsigned int sg_flags = SG_MITER_ATOMIC;
1093 size_t total_buffer = buflen + skip;
1094
1095 sg_flags |= SG_MITER_FROM_SG;
1096
1097 sg_miter_start(&miter, sgl, nents, sg_flags);
1098
1099 local_irq_save(flags);
1100
1101 while (sg_miter_next(&miter) && offset < total_buffer) {
1102 unsigned int len;
1103 unsigned int ignore;
1104
1105 if ((offset + miter.length) > skip) {
1106 if (offset < skip) {
1107 /* Copy part of this segment */
1108 ignore = skip - offset;
1109 len = miter.length - ignore;
Lee Nipper72600422010-07-19 14:11:24 +08001110 if (boffset + len > buflen)
1111 len = buflen - boffset;
Lee Nipper497f2e62010-05-19 19:20:36 +10001112 memcpy(buf + boffset, miter.addr + ignore, len);
1113 } else {
Lee Nipper72600422010-07-19 14:11:24 +08001114 /* Copy all of this segment (up to buflen) */
Lee Nipper497f2e62010-05-19 19:20:36 +10001115 len = miter.length;
Lee Nipper72600422010-07-19 14:11:24 +08001116 if (boffset + len > buflen)
1117 len = buflen - boffset;
Lee Nipper497f2e62010-05-19 19:20:36 +10001118 memcpy(buf + boffset, miter.addr, len);
1119 }
1120 boffset += len;
1121 }
1122 offset += miter.length;
1123 }
1124
1125 sg_miter_stop(&miter);
1126
1127 local_irq_restore(flags);
1128 return boffset;
1129}
1130
Kim Phillips9c4a7962008-06-23 19:50:15 +08001131/*
Lee Nipper56af8cd2009-03-29 15:50:50 +08001132 * allocate and map the extended descriptor
Kim Phillips9c4a7962008-06-23 19:50:15 +08001133 */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001134static struct talitos_edesc *talitos_edesc_alloc(struct device *dev,
1135 struct scatterlist *src,
1136 struct scatterlist *dst,
Lee Nipper497f2e62010-05-19 19:20:36 +10001137 int hash_result,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001138 unsigned int cryptlen,
1139 unsigned int authsize,
1140 int icv_stashing,
1141 u32 cryptoflags)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001142{
Lee Nipper56af8cd2009-03-29 15:50:50 +08001143 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001144 int src_nents, dst_nents, alloc_len, dma_len;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001145 int src_chained, dst_chained = 0;
1146 gfp_t flags = cryptoflags & CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL :
Kim Phillips586725f2008-07-17 20:19:18 +08001147 GFP_ATOMIC;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001148
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001149 if (cryptlen + authsize > TALITOS_MAX_DATA_LEN) {
1150 dev_err(dev, "length exceeds h/w max limit\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08001151 return ERR_PTR(-EINVAL);
1152 }
1153
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001154 src_nents = sg_count(src, cryptlen + authsize, &src_chained);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001155 src_nents = (src_nents == 1) ? 0 : src_nents;
1156
Lee Nipper497f2e62010-05-19 19:20:36 +10001157 if (hash_result) {
1158 dst_nents = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001159 } else {
Lee Nipper497f2e62010-05-19 19:20:36 +10001160 if (dst == src) {
1161 dst_nents = src_nents;
1162 } else {
1163 dst_nents = sg_count(dst, cryptlen + authsize,
1164 &dst_chained);
1165 dst_nents = (dst_nents == 1) ? 0 : dst_nents;
1166 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001167 }
1168
1169 /*
1170 * allocate space for base edesc plus the link tables,
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001171 * allowing for two separate entries for ICV and generated ICV (+ 2),
Kim Phillips9c4a7962008-06-23 19:50:15 +08001172 * and the ICV data itself
1173 */
Lee Nipper56af8cd2009-03-29 15:50:50 +08001174 alloc_len = sizeof(struct talitos_edesc);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001175 if (src_nents || dst_nents) {
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001176 dma_len = (src_nents + dst_nents + 2) *
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001177 sizeof(struct talitos_ptr) + authsize;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001178 alloc_len += dma_len;
1179 } else {
1180 dma_len = 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001181 alloc_len += icv_stashing ? authsize : 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001182 }
1183
Kim Phillips586725f2008-07-17 20:19:18 +08001184 edesc = kmalloc(alloc_len, GFP_DMA | flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001185 if (!edesc) {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001186 dev_err(dev, "could not allocate edescriptor\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08001187 return ERR_PTR(-ENOMEM);
1188 }
1189
1190 edesc->src_nents = src_nents;
1191 edesc->dst_nents = dst_nents;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001192 edesc->src_is_chained = src_chained;
1193 edesc->dst_is_chained = dst_chained;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001194 edesc->dma_len = dma_len;
Lee Nipper497f2e62010-05-19 19:20:36 +10001195 if (dma_len)
1196 edesc->dma_link_tbl = dma_map_single(dev, &edesc->link_tbl[0],
1197 edesc->dma_len,
1198 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001199
1200 return edesc;
1201}
1202
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001203static struct talitos_edesc *aead_edesc_alloc(struct aead_request *areq,
1204 int icv_stashing)
1205{
1206 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
1207 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
1208
Lee Nipper497f2e62010-05-19 19:20:36 +10001209 return talitos_edesc_alloc(ctx->dev, areq->src, areq->dst, 0,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001210 areq->cryptlen, ctx->authsize, icv_stashing,
1211 areq->base.flags);
1212}
1213
Lee Nipper56af8cd2009-03-29 15:50:50 +08001214static int aead_encrypt(struct aead_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001215{
1216 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
1217 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001218 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001219
1220 /* allocate extended descriptor */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001221 edesc = aead_edesc_alloc(req, 0);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001222 if (IS_ERR(edesc))
1223 return PTR_ERR(edesc);
1224
1225 /* set encrypt */
Lee Nipper70bcaca2008-07-03 19:08:46 +08001226 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001227
1228 return ipsec_esp(edesc, req, NULL, 0, ipsec_esp_encrypt_done);
1229}
1230
Lee Nipper56af8cd2009-03-29 15:50:50 +08001231static int aead_decrypt(struct aead_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001232{
1233 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
1234 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
1235 unsigned int authsize = ctx->authsize;
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001236 struct talitos_private *priv = dev_get_drvdata(ctx->dev);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001237 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001238 struct scatterlist *sg;
1239 void *icvdata;
1240
1241 req->cryptlen -= authsize;
1242
1243 /* allocate extended descriptor */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001244 edesc = aead_edesc_alloc(req, 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001245 if (IS_ERR(edesc))
1246 return PTR_ERR(edesc);
1247
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001248 if ((priv->features & TALITOS_FTR_HW_AUTH_CHECK) &&
Kim Phillipse938e462009-03-29 15:53:23 +08001249 ((!edesc->src_nents && !edesc->dst_nents) ||
1250 priv->features & TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT)) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08001251
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001252 /* decrypt and check the ICV */
Kim Phillipse938e462009-03-29 15:53:23 +08001253 edesc->desc.hdr = ctx->desc_hdr_template |
1254 DESC_HDR_DIR_INBOUND |
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001255 DESC_HDR_MODE1_MDEU_CICV;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001256
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001257 /* reset integrity check result bits */
1258 edesc->desc.hdr_lo = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001259
Kim Phillipse938e462009-03-29 15:53:23 +08001260 return ipsec_esp(edesc, req, NULL, 0,
1261 ipsec_esp_decrypt_hwauth_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001262
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001263 }
Kim Phillipse938e462009-03-29 15:53:23 +08001264
1265 /* Have to check the ICV with software */
1266 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1267
1268 /* stash incoming ICV for later cmp with ICV generated by the h/w */
1269 if (edesc->dma_len)
1270 icvdata = &edesc->link_tbl[edesc->src_nents +
1271 edesc->dst_nents + 2];
1272 else
1273 icvdata = &edesc->link_tbl[0];
1274
1275 sg = sg_last(req->src, edesc->src_nents ? : 1);
1276
1277 memcpy(icvdata, (char *)sg_virt(sg) + sg->length - ctx->authsize,
1278 ctx->authsize);
1279
1280 return ipsec_esp(edesc, req, NULL, 0, ipsec_esp_decrypt_swauth_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001281}
1282
Lee Nipper56af8cd2009-03-29 15:50:50 +08001283static int aead_givencrypt(struct aead_givcrypt_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001284{
1285 struct aead_request *areq = &req->areq;
1286 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
1287 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001288 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001289
1290 /* allocate extended descriptor */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001291 edesc = aead_edesc_alloc(areq, 0);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001292 if (IS_ERR(edesc))
1293 return PTR_ERR(edesc);
1294
1295 /* set encrypt */
Lee Nipper70bcaca2008-07-03 19:08:46 +08001296 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001297
1298 memcpy(req->giv, ctx->iv, crypto_aead_ivsize(authenc));
Kim Phillipsba954872008-09-14 13:41:19 -07001299 /* avoid consecutive packets going out with same IV */
1300 *(__be64 *)req->giv ^= cpu_to_be64(req->seq);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001301
1302 return ipsec_esp(edesc, areq, req->giv, req->seq,
1303 ipsec_esp_encrypt_done);
1304}
1305
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001306static int ablkcipher_setkey(struct crypto_ablkcipher *cipher,
1307 const u8 *key, unsigned int keylen)
1308{
1309 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001310
1311 memcpy(&ctx->key, key, keylen);
1312 ctx->keylen = keylen;
1313
1314 return 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001315}
1316
1317static void common_nonsnoop_unmap(struct device *dev,
1318 struct talitos_edesc *edesc,
1319 struct ablkcipher_request *areq)
1320{
1321 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
1322 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
1323 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1], DMA_TO_DEVICE);
1324
1325 talitos_sg_unmap(dev, edesc, areq->src, areq->dst);
1326
1327 if (edesc->dma_len)
1328 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
1329 DMA_BIDIRECTIONAL);
1330}
1331
1332static void ablkcipher_done(struct device *dev,
1333 struct talitos_desc *desc, void *context,
1334 int err)
1335{
1336 struct ablkcipher_request *areq = context;
Kim Phillips19bbbc62009-03-29 15:53:59 +08001337 struct talitos_edesc *edesc;
1338
1339 edesc = container_of(desc, struct talitos_edesc, desc);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001340
1341 common_nonsnoop_unmap(dev, edesc, areq);
1342
1343 kfree(edesc);
1344
1345 areq->base.complete(&areq->base, err);
1346}
1347
1348static int common_nonsnoop(struct talitos_edesc *edesc,
1349 struct ablkcipher_request *areq,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001350 void (*callback) (struct device *dev,
1351 struct talitos_desc *desc,
1352 void *context, int error))
1353{
1354 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1355 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1356 struct device *dev = ctx->dev;
1357 struct talitos_desc *desc = &edesc->desc;
1358 unsigned int cryptlen = areq->nbytes;
1359 unsigned int ivsize;
1360 int sg_count, ret;
1361
1362 /* first DWORD empty */
1363 desc->ptr[0].len = 0;
Kim Phillips81eb0242009-08-13 11:51:51 +10001364 to_talitos_ptr(&desc->ptr[0], 0);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001365 desc->ptr[0].j_extent = 0;
1366
1367 /* cipher iv */
1368 ivsize = crypto_ablkcipher_ivsize(cipher);
Kim Phillipsfebec542011-07-15 11:21:39 +08001369 map_single_talitos_ptr(dev, &desc->ptr[1], ivsize, areq->info, 0,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001370 DMA_TO_DEVICE);
1371
1372 /* cipher key */
1373 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
1374 (char *)&ctx->key, 0, DMA_TO_DEVICE);
1375
1376 /*
1377 * cipher in
1378 */
1379 desc->ptr[3].len = cpu_to_be16(cryptlen);
1380 desc->ptr[3].j_extent = 0;
1381
1382 sg_count = talitos_map_sg(dev, areq->src, edesc->src_nents ? : 1,
1383 (areq->src == areq->dst) ? DMA_BIDIRECTIONAL
1384 : DMA_TO_DEVICE,
1385 edesc->src_is_chained);
1386
1387 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001388 to_talitos_ptr(&desc->ptr[3], sg_dma_address(areq->src));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001389 } else {
1390 sg_count = sg_to_link_tbl(areq->src, sg_count, cryptlen,
1391 &edesc->link_tbl[0]);
1392 if (sg_count > 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001393 to_talitos_ptr(&desc->ptr[3], edesc->dma_link_tbl);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001394 desc->ptr[3].j_extent |= DESC_PTR_LNKTBL_JUMP;
Kim Phillipse938e462009-03-29 15:53:23 +08001395 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
1396 edesc->dma_len,
1397 DMA_BIDIRECTIONAL);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001398 } else {
1399 /* Only one segment now, so no link tbl needed */
Kim Phillips81eb0242009-08-13 11:51:51 +10001400 to_talitos_ptr(&desc->ptr[3],
1401 sg_dma_address(areq->src));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001402 }
1403 }
1404
1405 /* cipher out */
1406 desc->ptr[4].len = cpu_to_be16(cryptlen);
1407 desc->ptr[4].j_extent = 0;
1408
1409 if (areq->src != areq->dst)
1410 sg_count = talitos_map_sg(dev, areq->dst,
1411 edesc->dst_nents ? : 1,
1412 DMA_FROM_DEVICE,
1413 edesc->dst_is_chained);
1414
1415 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001416 to_talitos_ptr(&desc->ptr[4], sg_dma_address(areq->dst));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001417 } else {
1418 struct talitos_ptr *link_tbl_ptr =
1419 &edesc->link_tbl[edesc->src_nents + 1];
1420
Kim Phillips81eb0242009-08-13 11:51:51 +10001421 to_talitos_ptr(&desc->ptr[4], edesc->dma_link_tbl +
1422 (edesc->src_nents + 1) *
1423 sizeof(struct talitos_ptr));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001424 desc->ptr[4].j_extent |= DESC_PTR_LNKTBL_JUMP;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001425 sg_count = sg_to_link_tbl(areq->dst, sg_count, cryptlen,
1426 link_tbl_ptr);
1427 dma_sync_single_for_device(ctx->dev, edesc->dma_link_tbl,
1428 edesc->dma_len, DMA_BIDIRECTIONAL);
1429 }
1430
1431 /* iv out */
1432 map_single_talitos_ptr(dev, &desc->ptr[5], ivsize, ctx->iv, 0,
1433 DMA_FROM_DEVICE);
1434
1435 /* last DWORD empty */
1436 desc->ptr[6].len = 0;
Kim Phillips81eb0242009-08-13 11:51:51 +10001437 to_talitos_ptr(&desc->ptr[6], 0);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001438 desc->ptr[6].j_extent = 0;
1439
Kim Phillips5228f0f2011-07-15 11:21:38 +08001440 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001441 if (ret != -EINPROGRESS) {
1442 common_nonsnoop_unmap(dev, edesc, areq);
1443 kfree(edesc);
1444 }
1445 return ret;
1446}
1447
Kim Phillipse938e462009-03-29 15:53:23 +08001448static struct talitos_edesc *ablkcipher_edesc_alloc(struct ablkcipher_request *
1449 areq)
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001450{
1451 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1452 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1453
Lee Nipper497f2e62010-05-19 19:20:36 +10001454 return talitos_edesc_alloc(ctx->dev, areq->src, areq->dst, 0,
1455 areq->nbytes, 0, 0, areq->base.flags);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001456}
1457
1458static int ablkcipher_encrypt(struct ablkcipher_request *areq)
1459{
1460 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1461 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1462 struct talitos_edesc *edesc;
1463
1464 /* allocate extended descriptor */
1465 edesc = ablkcipher_edesc_alloc(areq);
1466 if (IS_ERR(edesc))
1467 return PTR_ERR(edesc);
1468
1469 /* set encrypt */
1470 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
1471
Kim Phillipsfebec542011-07-15 11:21:39 +08001472 return common_nonsnoop(edesc, areq, ablkcipher_done);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001473}
1474
1475static int ablkcipher_decrypt(struct ablkcipher_request *areq)
1476{
1477 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1478 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1479 struct talitos_edesc *edesc;
1480
1481 /* allocate extended descriptor */
1482 edesc = ablkcipher_edesc_alloc(areq);
1483 if (IS_ERR(edesc))
1484 return PTR_ERR(edesc);
1485
1486 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1487
Kim Phillipsfebec542011-07-15 11:21:39 +08001488 return common_nonsnoop(edesc, areq, ablkcipher_done);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001489}
1490
Lee Nipper497f2e62010-05-19 19:20:36 +10001491static void common_nonsnoop_hash_unmap(struct device *dev,
1492 struct talitos_edesc *edesc,
1493 struct ahash_request *areq)
1494{
1495 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1496
1497 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
1498
1499 /* When using hashctx-in, must unmap it. */
1500 if (edesc->desc.ptr[1].len)
1501 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1],
1502 DMA_TO_DEVICE);
1503
1504 if (edesc->desc.ptr[2].len)
1505 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2],
1506 DMA_TO_DEVICE);
1507
1508 talitos_sg_unmap(dev, edesc, req_ctx->psrc, NULL);
1509
1510 if (edesc->dma_len)
1511 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
1512 DMA_BIDIRECTIONAL);
1513
1514}
1515
1516static void ahash_done(struct device *dev,
1517 struct talitos_desc *desc, void *context,
1518 int err)
1519{
1520 struct ahash_request *areq = context;
1521 struct talitos_edesc *edesc =
1522 container_of(desc, struct talitos_edesc, desc);
1523 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1524
1525 if (!req_ctx->last && req_ctx->to_hash_later) {
1526 /* Position any partial block for next update/final/finup */
1527 memcpy(req_ctx->buf, req_ctx->bufnext, req_ctx->to_hash_later);
Lee Nipper5e833bc2010-06-16 15:29:15 +10001528 req_ctx->nbuf = req_ctx->to_hash_later;
Lee Nipper497f2e62010-05-19 19:20:36 +10001529 }
1530 common_nonsnoop_hash_unmap(dev, edesc, areq);
1531
1532 kfree(edesc);
1533
1534 areq->base.complete(&areq->base, err);
1535}
1536
1537static int common_nonsnoop_hash(struct talitos_edesc *edesc,
1538 struct ahash_request *areq, unsigned int length,
1539 void (*callback) (struct device *dev,
1540 struct talitos_desc *desc,
1541 void *context, int error))
1542{
1543 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1544 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1545 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1546 struct device *dev = ctx->dev;
1547 struct talitos_desc *desc = &edesc->desc;
1548 int sg_count, ret;
1549
1550 /* first DWORD empty */
1551 desc->ptr[0] = zero_entry;
1552
Kim Phillips60f208d2010-05-19 19:21:53 +10001553 /* hash context in */
1554 if (!req_ctx->first || req_ctx->swinit) {
Lee Nipper497f2e62010-05-19 19:20:36 +10001555 map_single_talitos_ptr(dev, &desc->ptr[1],
1556 req_ctx->hw_context_size,
1557 (char *)req_ctx->hw_context, 0,
1558 DMA_TO_DEVICE);
Kim Phillips60f208d2010-05-19 19:21:53 +10001559 req_ctx->swinit = 0;
Lee Nipper497f2e62010-05-19 19:20:36 +10001560 } else {
1561 desc->ptr[1] = zero_entry;
1562 /* Indicate next op is not the first. */
1563 req_ctx->first = 0;
1564 }
1565
1566 /* HMAC key */
1567 if (ctx->keylen)
1568 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
1569 (char *)&ctx->key, 0, DMA_TO_DEVICE);
1570 else
1571 desc->ptr[2] = zero_entry;
1572
1573 /*
1574 * data in
1575 */
1576 desc->ptr[3].len = cpu_to_be16(length);
1577 desc->ptr[3].j_extent = 0;
1578
1579 sg_count = talitos_map_sg(dev, req_ctx->psrc,
1580 edesc->src_nents ? : 1,
1581 DMA_TO_DEVICE,
1582 edesc->src_is_chained);
1583
1584 if (sg_count == 1) {
1585 to_talitos_ptr(&desc->ptr[3], sg_dma_address(req_ctx->psrc));
1586 } else {
1587 sg_count = sg_to_link_tbl(req_ctx->psrc, sg_count, length,
1588 &edesc->link_tbl[0]);
1589 if (sg_count > 1) {
1590 desc->ptr[3].j_extent |= DESC_PTR_LNKTBL_JUMP;
1591 to_talitos_ptr(&desc->ptr[3], edesc->dma_link_tbl);
1592 dma_sync_single_for_device(ctx->dev,
1593 edesc->dma_link_tbl,
1594 edesc->dma_len,
1595 DMA_BIDIRECTIONAL);
1596 } else {
1597 /* Only one segment now, so no link tbl needed */
1598 to_talitos_ptr(&desc->ptr[3],
1599 sg_dma_address(req_ctx->psrc));
1600 }
1601 }
1602
1603 /* fifth DWORD empty */
1604 desc->ptr[4] = zero_entry;
1605
1606 /* hash/HMAC out -or- hash context out */
1607 if (req_ctx->last)
1608 map_single_talitos_ptr(dev, &desc->ptr[5],
1609 crypto_ahash_digestsize(tfm),
1610 areq->result, 0, DMA_FROM_DEVICE);
1611 else
1612 map_single_talitos_ptr(dev, &desc->ptr[5],
1613 req_ctx->hw_context_size,
1614 req_ctx->hw_context, 0, DMA_FROM_DEVICE);
1615
1616 /* last DWORD empty */
1617 desc->ptr[6] = zero_entry;
1618
Kim Phillips5228f0f2011-07-15 11:21:38 +08001619 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001620 if (ret != -EINPROGRESS) {
1621 common_nonsnoop_hash_unmap(dev, edesc, areq);
1622 kfree(edesc);
1623 }
1624 return ret;
1625}
1626
1627static struct talitos_edesc *ahash_edesc_alloc(struct ahash_request *areq,
1628 unsigned int nbytes)
1629{
1630 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1631 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1632 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1633
1634 return talitos_edesc_alloc(ctx->dev, req_ctx->psrc, NULL, 1,
1635 nbytes, 0, 0, areq->base.flags);
1636}
1637
1638static int ahash_init(struct ahash_request *areq)
1639{
1640 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1641 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1642
1643 /* Initialize the context */
Lee Nipper5e833bc2010-06-16 15:29:15 +10001644 req_ctx->nbuf = 0;
Kim Phillips60f208d2010-05-19 19:21:53 +10001645 req_ctx->first = 1; /* first indicates h/w must init its context */
1646 req_ctx->swinit = 0; /* assume h/w init of context */
Lee Nipper497f2e62010-05-19 19:20:36 +10001647 req_ctx->hw_context_size =
1648 (crypto_ahash_digestsize(tfm) <= SHA256_DIGEST_SIZE)
1649 ? TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256
1650 : TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512;
1651
1652 return 0;
1653}
1654
Kim Phillips60f208d2010-05-19 19:21:53 +10001655/*
1656 * on h/w without explicit sha224 support, we initialize h/w context
1657 * manually with sha224 constants, and tell it to run sha256.
1658 */
1659static int ahash_init_sha224_swinit(struct ahash_request *areq)
1660{
1661 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1662
1663 ahash_init(areq);
1664 req_ctx->swinit = 1;/* prevent h/w initting context with sha256 values*/
1665
Kim Phillipsa7524472010-09-23 15:56:38 +08001666 req_ctx->hw_context[0] = SHA224_H0;
1667 req_ctx->hw_context[1] = SHA224_H1;
1668 req_ctx->hw_context[2] = SHA224_H2;
1669 req_ctx->hw_context[3] = SHA224_H3;
1670 req_ctx->hw_context[4] = SHA224_H4;
1671 req_ctx->hw_context[5] = SHA224_H5;
1672 req_ctx->hw_context[6] = SHA224_H6;
1673 req_ctx->hw_context[7] = SHA224_H7;
Kim Phillips60f208d2010-05-19 19:21:53 +10001674
1675 /* init 64-bit count */
1676 req_ctx->hw_context[8] = 0;
1677 req_ctx->hw_context[9] = 0;
1678
1679 return 0;
1680}
1681
Lee Nipper497f2e62010-05-19 19:20:36 +10001682static int ahash_process_req(struct ahash_request *areq, unsigned int nbytes)
1683{
1684 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1685 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1686 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1687 struct talitos_edesc *edesc;
1688 unsigned int blocksize =
1689 crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
1690 unsigned int nbytes_to_hash;
1691 unsigned int to_hash_later;
Lee Nipper5e833bc2010-06-16 15:29:15 +10001692 unsigned int nsg;
Lee Nipper497f2e62010-05-19 19:20:36 +10001693 int chained;
1694
Lee Nipper5e833bc2010-06-16 15:29:15 +10001695 if (!req_ctx->last && (nbytes + req_ctx->nbuf <= blocksize)) {
1696 /* Buffer up to one whole block */
Lee Nipper497f2e62010-05-19 19:20:36 +10001697 sg_copy_to_buffer(areq->src,
1698 sg_count(areq->src, nbytes, &chained),
Lee Nipper5e833bc2010-06-16 15:29:15 +10001699 req_ctx->buf + req_ctx->nbuf, nbytes);
1700 req_ctx->nbuf += nbytes;
Lee Nipper497f2e62010-05-19 19:20:36 +10001701 return 0;
1702 }
1703
Lee Nipper5e833bc2010-06-16 15:29:15 +10001704 /* At least (blocksize + 1) bytes are available to hash */
1705 nbytes_to_hash = nbytes + req_ctx->nbuf;
1706 to_hash_later = nbytes_to_hash & (blocksize - 1);
1707
1708 if (req_ctx->last)
1709 to_hash_later = 0;
1710 else if (to_hash_later)
1711 /* There is a partial block. Hash the full block(s) now */
1712 nbytes_to_hash -= to_hash_later;
1713 else {
1714 /* Keep one block buffered */
1715 nbytes_to_hash -= blocksize;
1716 to_hash_later = blocksize;
1717 }
1718
1719 /* Chain in any previously buffered data */
1720 if (req_ctx->nbuf) {
1721 nsg = (req_ctx->nbuf < nbytes_to_hash) ? 2 : 1;
1722 sg_init_table(req_ctx->bufsl, nsg);
1723 sg_set_buf(req_ctx->bufsl, req_ctx->buf, req_ctx->nbuf);
1724 if (nsg > 1)
1725 scatterwalk_sg_chain(req_ctx->bufsl, 2, areq->src);
Lee Nipper497f2e62010-05-19 19:20:36 +10001726 req_ctx->psrc = req_ctx->bufsl;
Lee Nipper5e833bc2010-06-16 15:29:15 +10001727 } else
Lee Nipper497f2e62010-05-19 19:20:36 +10001728 req_ctx->psrc = areq->src;
Lee Nipper497f2e62010-05-19 19:20:36 +10001729
Lee Nipper5e833bc2010-06-16 15:29:15 +10001730 if (to_hash_later) {
1731 int nents = sg_count(areq->src, nbytes, &chained);
1732 sg_copy_end_to_buffer(areq->src, nents,
1733 req_ctx->bufnext,
1734 to_hash_later,
1735 nbytes - to_hash_later);
Lee Nipper497f2e62010-05-19 19:20:36 +10001736 }
Lee Nipper5e833bc2010-06-16 15:29:15 +10001737 req_ctx->to_hash_later = to_hash_later;
Lee Nipper497f2e62010-05-19 19:20:36 +10001738
Lee Nipper5e833bc2010-06-16 15:29:15 +10001739 /* Allocate extended descriptor */
Lee Nipper497f2e62010-05-19 19:20:36 +10001740 edesc = ahash_edesc_alloc(areq, nbytes_to_hash);
1741 if (IS_ERR(edesc))
1742 return PTR_ERR(edesc);
1743
1744 edesc->desc.hdr = ctx->desc_hdr_template;
1745
1746 /* On last one, request SEC to pad; otherwise continue */
1747 if (req_ctx->last)
1748 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_PAD;
1749 else
1750 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_CONT;
1751
Kim Phillips60f208d2010-05-19 19:21:53 +10001752 /* request SEC to INIT hash. */
1753 if (req_ctx->first && !req_ctx->swinit)
Lee Nipper497f2e62010-05-19 19:20:36 +10001754 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_INIT;
1755
1756 /* When the tfm context has a keylen, it's an HMAC.
1757 * A first or last (ie. not middle) descriptor must request HMAC.
1758 */
1759 if (ctx->keylen && (req_ctx->first || req_ctx->last))
1760 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_HMAC;
1761
1762 return common_nonsnoop_hash(edesc, areq, nbytes_to_hash,
1763 ahash_done);
1764}
1765
1766static int ahash_update(struct ahash_request *areq)
1767{
1768 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1769
1770 req_ctx->last = 0;
1771
1772 return ahash_process_req(areq, areq->nbytes);
1773}
1774
1775static int ahash_final(struct ahash_request *areq)
1776{
1777 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1778
1779 req_ctx->last = 1;
1780
1781 return ahash_process_req(areq, 0);
1782}
1783
1784static int ahash_finup(struct ahash_request *areq)
1785{
1786 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1787
1788 req_ctx->last = 1;
1789
1790 return ahash_process_req(areq, areq->nbytes);
1791}
1792
1793static int ahash_digest(struct ahash_request *areq)
1794{
1795 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
Kim Phillips60f208d2010-05-19 19:21:53 +10001796 struct crypto_ahash *ahash = crypto_ahash_reqtfm(areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001797
Kim Phillips60f208d2010-05-19 19:21:53 +10001798 ahash->init(areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001799 req_ctx->last = 1;
1800
1801 return ahash_process_req(areq, areq->nbytes);
1802}
1803
Lee Nipper79b3a412011-11-21 16:13:25 +08001804struct keyhash_result {
1805 struct completion completion;
1806 int err;
1807};
1808
1809static void keyhash_complete(struct crypto_async_request *req, int err)
1810{
1811 struct keyhash_result *res = req->data;
1812
1813 if (err == -EINPROGRESS)
1814 return;
1815
1816 res->err = err;
1817 complete(&res->completion);
1818}
1819
1820static int keyhash(struct crypto_ahash *tfm, const u8 *key, unsigned int keylen,
1821 u8 *hash)
1822{
1823 struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
1824
1825 struct scatterlist sg[1];
1826 struct ahash_request *req;
1827 struct keyhash_result hresult;
1828 int ret;
1829
1830 init_completion(&hresult.completion);
1831
1832 req = ahash_request_alloc(tfm, GFP_KERNEL);
1833 if (!req)
1834 return -ENOMEM;
1835
1836 /* Keep tfm keylen == 0 during hash of the long key */
1837 ctx->keylen = 0;
1838 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1839 keyhash_complete, &hresult);
1840
1841 sg_init_one(&sg[0], key, keylen);
1842
1843 ahash_request_set_crypt(req, sg, hash, keylen);
1844 ret = crypto_ahash_digest(req);
1845 switch (ret) {
1846 case 0:
1847 break;
1848 case -EINPROGRESS:
1849 case -EBUSY:
1850 ret = wait_for_completion_interruptible(
1851 &hresult.completion);
1852 if (!ret)
1853 ret = hresult.err;
1854 break;
1855 default:
1856 break;
1857 }
1858 ahash_request_free(req);
1859
1860 return ret;
1861}
1862
1863static int ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
1864 unsigned int keylen)
1865{
1866 struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
1867 unsigned int blocksize =
1868 crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
1869 unsigned int digestsize = crypto_ahash_digestsize(tfm);
1870 unsigned int keysize = keylen;
1871 u8 hash[SHA512_DIGEST_SIZE];
1872 int ret;
1873
1874 if (keylen <= blocksize)
1875 memcpy(ctx->key, key, keysize);
1876 else {
1877 /* Must get the hash of the long key */
1878 ret = keyhash(tfm, key, keylen, hash);
1879
1880 if (ret) {
1881 crypto_ahash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
1882 return -EINVAL;
1883 }
1884
1885 keysize = digestsize;
1886 memcpy(ctx->key, hash, digestsize);
1887 }
1888
1889 ctx->keylen = keysize;
1890
1891 return 0;
1892}
1893
1894
Kim Phillips9c4a7962008-06-23 19:50:15 +08001895struct talitos_alg_template {
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001896 u32 type;
1897 union {
1898 struct crypto_alg crypto;
Lee Nipperacbf7c622010-05-19 19:19:33 +10001899 struct ahash_alg hash;
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001900 } alg;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001901 __be32 desc_hdr_template;
1902};
1903
1904static struct talitos_alg_template driver_algs[] = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001905 /* AEAD algorithms. These use a single-pass ipsec_esp descriptor */
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001906 { .type = CRYPTO_ALG_TYPE_AEAD,
1907 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001908 .cra_name = "authenc(hmac(sha1),cbc(aes))",
1909 .cra_driver_name = "authenc-hmac-sha1-cbc-aes-talitos",
1910 .cra_blocksize = AES_BLOCK_SIZE,
1911 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08001912 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001913 .ivsize = AES_BLOCK_SIZE,
1914 .maxauthsize = SHA1_DIGEST_SIZE,
1915 }
1916 },
Kim Phillips9c4a7962008-06-23 19:50:15 +08001917 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
1918 DESC_HDR_SEL0_AESU |
1919 DESC_HDR_MODE0_AESU_CBC |
1920 DESC_HDR_SEL1_MDEUA |
1921 DESC_HDR_MODE1_MDEU_INIT |
1922 DESC_HDR_MODE1_MDEU_PAD |
1923 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
Lee Nipper70bcaca2008-07-03 19:08:46 +08001924 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001925 { .type = CRYPTO_ALG_TYPE_AEAD,
1926 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001927 .cra_name = "authenc(hmac(sha1),cbc(des3_ede))",
1928 .cra_driver_name = "authenc-hmac-sha1-cbc-3des-talitos",
1929 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1930 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08001931 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001932 .ivsize = DES3_EDE_BLOCK_SIZE,
1933 .maxauthsize = SHA1_DIGEST_SIZE,
1934 }
1935 },
Lee Nipper70bcaca2008-07-03 19:08:46 +08001936 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
1937 DESC_HDR_SEL0_DEU |
1938 DESC_HDR_MODE0_DEU_CBC |
1939 DESC_HDR_MODE0_DEU_3DES |
1940 DESC_HDR_SEL1_MDEUA |
1941 DESC_HDR_MODE1_MDEU_INIT |
1942 DESC_HDR_MODE1_MDEU_PAD |
1943 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
Lee Nipper3952f172008-07-10 18:29:18 +08001944 },
Horia Geanta357fb602012-07-03 19:16:53 +03001945 { .type = CRYPTO_ALG_TYPE_AEAD,
1946 .alg.crypto = {
1947 .cra_name = "authenc(hmac(sha224),cbc(aes))",
1948 .cra_driver_name = "authenc-hmac-sha224-cbc-aes-talitos",
1949 .cra_blocksize = AES_BLOCK_SIZE,
1950 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03001951 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03001952 .ivsize = AES_BLOCK_SIZE,
1953 .maxauthsize = SHA224_DIGEST_SIZE,
1954 }
1955 },
1956 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
1957 DESC_HDR_SEL0_AESU |
1958 DESC_HDR_MODE0_AESU_CBC |
1959 DESC_HDR_SEL1_MDEUA |
1960 DESC_HDR_MODE1_MDEU_INIT |
1961 DESC_HDR_MODE1_MDEU_PAD |
1962 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
1963 },
1964 { .type = CRYPTO_ALG_TYPE_AEAD,
1965 .alg.crypto = {
1966 .cra_name = "authenc(hmac(sha224),cbc(des3_ede))",
1967 .cra_driver_name = "authenc-hmac-sha224-cbc-3des-talitos",
1968 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
1969 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03001970 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03001971 .ivsize = DES3_EDE_BLOCK_SIZE,
1972 .maxauthsize = SHA224_DIGEST_SIZE,
1973 }
1974 },
1975 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
1976 DESC_HDR_SEL0_DEU |
1977 DESC_HDR_MODE0_DEU_CBC |
1978 DESC_HDR_MODE0_DEU_3DES |
1979 DESC_HDR_SEL1_MDEUA |
1980 DESC_HDR_MODE1_MDEU_INIT |
1981 DESC_HDR_MODE1_MDEU_PAD |
1982 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
1983 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001984 { .type = CRYPTO_ALG_TYPE_AEAD,
1985 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001986 .cra_name = "authenc(hmac(sha256),cbc(aes))",
1987 .cra_driver_name = "authenc-hmac-sha256-cbc-aes-talitos",
1988 .cra_blocksize = AES_BLOCK_SIZE,
1989 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08001990 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001991 .ivsize = AES_BLOCK_SIZE,
1992 .maxauthsize = SHA256_DIGEST_SIZE,
1993 }
1994 },
Lee Nipper3952f172008-07-10 18:29:18 +08001995 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
1996 DESC_HDR_SEL0_AESU |
1997 DESC_HDR_MODE0_AESU_CBC |
1998 DESC_HDR_SEL1_MDEUA |
1999 DESC_HDR_MODE1_MDEU_INIT |
2000 DESC_HDR_MODE1_MDEU_PAD |
2001 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2002 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002003 { .type = CRYPTO_ALG_TYPE_AEAD,
2004 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002005 .cra_name = "authenc(hmac(sha256),cbc(des3_ede))",
2006 .cra_driver_name = "authenc-hmac-sha256-cbc-3des-talitos",
2007 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2008 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002009 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002010 .ivsize = DES3_EDE_BLOCK_SIZE,
2011 .maxauthsize = SHA256_DIGEST_SIZE,
2012 }
2013 },
Lee Nipper3952f172008-07-10 18:29:18 +08002014 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2015 DESC_HDR_SEL0_DEU |
2016 DESC_HDR_MODE0_DEU_CBC |
2017 DESC_HDR_MODE0_DEU_3DES |
2018 DESC_HDR_SEL1_MDEUA |
2019 DESC_HDR_MODE1_MDEU_INIT |
2020 DESC_HDR_MODE1_MDEU_PAD |
2021 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2022 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002023 { .type = CRYPTO_ALG_TYPE_AEAD,
2024 .alg.crypto = {
Horia Geanta357fb602012-07-03 19:16:53 +03002025 .cra_name = "authenc(hmac(sha384),cbc(aes))",
2026 .cra_driver_name = "authenc-hmac-sha384-cbc-aes-talitos",
2027 .cra_blocksize = AES_BLOCK_SIZE,
2028 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002029 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002030 .ivsize = AES_BLOCK_SIZE,
2031 .maxauthsize = SHA384_DIGEST_SIZE,
2032 }
2033 },
2034 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2035 DESC_HDR_SEL0_AESU |
2036 DESC_HDR_MODE0_AESU_CBC |
2037 DESC_HDR_SEL1_MDEUB |
2038 DESC_HDR_MODE1_MDEU_INIT |
2039 DESC_HDR_MODE1_MDEU_PAD |
2040 DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
2041 },
2042 { .type = CRYPTO_ALG_TYPE_AEAD,
2043 .alg.crypto = {
2044 .cra_name = "authenc(hmac(sha384),cbc(des3_ede))",
2045 .cra_driver_name = "authenc-hmac-sha384-cbc-3des-talitos",
2046 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2047 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002048 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002049 .ivsize = DES3_EDE_BLOCK_SIZE,
2050 .maxauthsize = SHA384_DIGEST_SIZE,
2051 }
2052 },
2053 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2054 DESC_HDR_SEL0_DEU |
2055 DESC_HDR_MODE0_DEU_CBC |
2056 DESC_HDR_MODE0_DEU_3DES |
2057 DESC_HDR_SEL1_MDEUB |
2058 DESC_HDR_MODE1_MDEU_INIT |
2059 DESC_HDR_MODE1_MDEU_PAD |
2060 DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
2061 },
2062 { .type = CRYPTO_ALG_TYPE_AEAD,
2063 .alg.crypto = {
2064 .cra_name = "authenc(hmac(sha512),cbc(aes))",
2065 .cra_driver_name = "authenc-hmac-sha512-cbc-aes-talitos",
2066 .cra_blocksize = AES_BLOCK_SIZE,
2067 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002068 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002069 .ivsize = AES_BLOCK_SIZE,
2070 .maxauthsize = SHA512_DIGEST_SIZE,
2071 }
2072 },
2073 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2074 DESC_HDR_SEL0_AESU |
2075 DESC_HDR_MODE0_AESU_CBC |
2076 DESC_HDR_SEL1_MDEUB |
2077 DESC_HDR_MODE1_MDEU_INIT |
2078 DESC_HDR_MODE1_MDEU_PAD |
2079 DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
2080 },
2081 { .type = CRYPTO_ALG_TYPE_AEAD,
2082 .alg.crypto = {
2083 .cra_name = "authenc(hmac(sha512),cbc(des3_ede))",
2084 .cra_driver_name = "authenc-hmac-sha512-cbc-3des-talitos",
2085 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2086 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002087 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002088 .ivsize = DES3_EDE_BLOCK_SIZE,
2089 .maxauthsize = SHA512_DIGEST_SIZE,
2090 }
2091 },
2092 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2093 DESC_HDR_SEL0_DEU |
2094 DESC_HDR_MODE0_DEU_CBC |
2095 DESC_HDR_MODE0_DEU_3DES |
2096 DESC_HDR_SEL1_MDEUB |
2097 DESC_HDR_MODE1_MDEU_INIT |
2098 DESC_HDR_MODE1_MDEU_PAD |
2099 DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
2100 },
2101 { .type = CRYPTO_ALG_TYPE_AEAD,
2102 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002103 .cra_name = "authenc(hmac(md5),cbc(aes))",
2104 .cra_driver_name = "authenc-hmac-md5-cbc-aes-talitos",
2105 .cra_blocksize = AES_BLOCK_SIZE,
2106 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002107 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002108 .ivsize = AES_BLOCK_SIZE,
2109 .maxauthsize = MD5_DIGEST_SIZE,
2110 }
2111 },
Lee Nipper3952f172008-07-10 18:29:18 +08002112 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2113 DESC_HDR_SEL0_AESU |
2114 DESC_HDR_MODE0_AESU_CBC |
2115 DESC_HDR_SEL1_MDEUA |
2116 DESC_HDR_MODE1_MDEU_INIT |
2117 DESC_HDR_MODE1_MDEU_PAD |
2118 DESC_HDR_MODE1_MDEU_MD5_HMAC,
2119 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002120 { .type = CRYPTO_ALG_TYPE_AEAD,
2121 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002122 .cra_name = "authenc(hmac(md5),cbc(des3_ede))",
2123 .cra_driver_name = "authenc-hmac-md5-cbc-3des-talitos",
2124 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2125 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002126 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002127 .ivsize = DES3_EDE_BLOCK_SIZE,
2128 .maxauthsize = MD5_DIGEST_SIZE,
2129 }
2130 },
Lee Nipper3952f172008-07-10 18:29:18 +08002131 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2132 DESC_HDR_SEL0_DEU |
2133 DESC_HDR_MODE0_DEU_CBC |
2134 DESC_HDR_MODE0_DEU_3DES |
2135 DESC_HDR_SEL1_MDEUA |
2136 DESC_HDR_MODE1_MDEU_INIT |
2137 DESC_HDR_MODE1_MDEU_PAD |
2138 DESC_HDR_MODE1_MDEU_MD5_HMAC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002139 },
2140 /* ABLKCIPHER algorithms. */
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002141 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2142 .alg.crypto = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002143 .cra_name = "cbc(aes)",
2144 .cra_driver_name = "cbc-aes-talitos",
2145 .cra_blocksize = AES_BLOCK_SIZE,
2146 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2147 CRYPTO_ALG_ASYNC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002148 .cra_ablkcipher = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002149 .min_keysize = AES_MIN_KEY_SIZE,
2150 .max_keysize = AES_MAX_KEY_SIZE,
2151 .ivsize = AES_BLOCK_SIZE,
2152 }
2153 },
2154 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2155 DESC_HDR_SEL0_AESU |
2156 DESC_HDR_MODE0_AESU_CBC,
2157 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002158 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2159 .alg.crypto = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002160 .cra_name = "cbc(des3_ede)",
2161 .cra_driver_name = "cbc-3des-talitos",
2162 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2163 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2164 CRYPTO_ALG_ASYNC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002165 .cra_ablkcipher = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002166 .min_keysize = DES3_EDE_KEY_SIZE,
2167 .max_keysize = DES3_EDE_KEY_SIZE,
2168 .ivsize = DES3_EDE_BLOCK_SIZE,
2169 }
2170 },
2171 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2172 DESC_HDR_SEL0_DEU |
2173 DESC_HDR_MODE0_DEU_CBC |
2174 DESC_HDR_MODE0_DEU_3DES,
Lee Nipper497f2e62010-05-19 19:20:36 +10002175 },
2176 /* AHASH algorithms. */
2177 { .type = CRYPTO_ALG_TYPE_AHASH,
2178 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002179 .halg.digestsize = MD5_DIGEST_SIZE,
2180 .halg.base = {
2181 .cra_name = "md5",
2182 .cra_driver_name = "md5-talitos",
2183 .cra_blocksize = MD5_BLOCK_SIZE,
2184 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2185 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002186 }
2187 },
2188 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2189 DESC_HDR_SEL0_MDEUA |
2190 DESC_HDR_MODE0_MDEU_MD5,
2191 },
2192 { .type = CRYPTO_ALG_TYPE_AHASH,
2193 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002194 .halg.digestsize = SHA1_DIGEST_SIZE,
2195 .halg.base = {
2196 .cra_name = "sha1",
2197 .cra_driver_name = "sha1-talitos",
2198 .cra_blocksize = SHA1_BLOCK_SIZE,
2199 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2200 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002201 }
2202 },
2203 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2204 DESC_HDR_SEL0_MDEUA |
2205 DESC_HDR_MODE0_MDEU_SHA1,
2206 },
2207 { .type = CRYPTO_ALG_TYPE_AHASH,
2208 .alg.hash = {
Kim Phillips60f208d2010-05-19 19:21:53 +10002209 .halg.digestsize = SHA224_DIGEST_SIZE,
2210 .halg.base = {
2211 .cra_name = "sha224",
2212 .cra_driver_name = "sha224-talitos",
2213 .cra_blocksize = SHA224_BLOCK_SIZE,
2214 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2215 CRYPTO_ALG_ASYNC,
Kim Phillips60f208d2010-05-19 19:21:53 +10002216 }
2217 },
2218 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2219 DESC_HDR_SEL0_MDEUA |
2220 DESC_HDR_MODE0_MDEU_SHA224,
2221 },
2222 { .type = CRYPTO_ALG_TYPE_AHASH,
2223 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002224 .halg.digestsize = SHA256_DIGEST_SIZE,
2225 .halg.base = {
2226 .cra_name = "sha256",
2227 .cra_driver_name = "sha256-talitos",
2228 .cra_blocksize = SHA256_BLOCK_SIZE,
2229 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2230 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002231 }
2232 },
2233 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2234 DESC_HDR_SEL0_MDEUA |
2235 DESC_HDR_MODE0_MDEU_SHA256,
2236 },
2237 { .type = CRYPTO_ALG_TYPE_AHASH,
2238 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002239 .halg.digestsize = SHA384_DIGEST_SIZE,
2240 .halg.base = {
2241 .cra_name = "sha384",
2242 .cra_driver_name = "sha384-talitos",
2243 .cra_blocksize = SHA384_BLOCK_SIZE,
2244 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2245 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002246 }
2247 },
2248 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2249 DESC_HDR_SEL0_MDEUB |
2250 DESC_HDR_MODE0_MDEUB_SHA384,
2251 },
2252 { .type = CRYPTO_ALG_TYPE_AHASH,
2253 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002254 .halg.digestsize = SHA512_DIGEST_SIZE,
2255 .halg.base = {
2256 .cra_name = "sha512",
2257 .cra_driver_name = "sha512-talitos",
2258 .cra_blocksize = SHA512_BLOCK_SIZE,
2259 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2260 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002261 }
2262 },
2263 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2264 DESC_HDR_SEL0_MDEUB |
2265 DESC_HDR_MODE0_MDEUB_SHA512,
2266 },
Lee Nipper79b3a412011-11-21 16:13:25 +08002267 { .type = CRYPTO_ALG_TYPE_AHASH,
2268 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002269 .halg.digestsize = MD5_DIGEST_SIZE,
2270 .halg.base = {
2271 .cra_name = "hmac(md5)",
2272 .cra_driver_name = "hmac-md5-talitos",
2273 .cra_blocksize = MD5_BLOCK_SIZE,
2274 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2275 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002276 }
2277 },
2278 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2279 DESC_HDR_SEL0_MDEUA |
2280 DESC_HDR_MODE0_MDEU_MD5,
2281 },
2282 { .type = CRYPTO_ALG_TYPE_AHASH,
2283 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002284 .halg.digestsize = SHA1_DIGEST_SIZE,
2285 .halg.base = {
2286 .cra_name = "hmac(sha1)",
2287 .cra_driver_name = "hmac-sha1-talitos",
2288 .cra_blocksize = SHA1_BLOCK_SIZE,
2289 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2290 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002291 }
2292 },
2293 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2294 DESC_HDR_SEL0_MDEUA |
2295 DESC_HDR_MODE0_MDEU_SHA1,
2296 },
2297 { .type = CRYPTO_ALG_TYPE_AHASH,
2298 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002299 .halg.digestsize = SHA224_DIGEST_SIZE,
2300 .halg.base = {
2301 .cra_name = "hmac(sha224)",
2302 .cra_driver_name = "hmac-sha224-talitos",
2303 .cra_blocksize = SHA224_BLOCK_SIZE,
2304 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2305 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002306 }
2307 },
2308 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2309 DESC_HDR_SEL0_MDEUA |
2310 DESC_HDR_MODE0_MDEU_SHA224,
2311 },
2312 { .type = CRYPTO_ALG_TYPE_AHASH,
2313 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002314 .halg.digestsize = SHA256_DIGEST_SIZE,
2315 .halg.base = {
2316 .cra_name = "hmac(sha256)",
2317 .cra_driver_name = "hmac-sha256-talitos",
2318 .cra_blocksize = SHA256_BLOCK_SIZE,
2319 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2320 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002321 }
2322 },
2323 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2324 DESC_HDR_SEL0_MDEUA |
2325 DESC_HDR_MODE0_MDEU_SHA256,
2326 },
2327 { .type = CRYPTO_ALG_TYPE_AHASH,
2328 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002329 .halg.digestsize = SHA384_DIGEST_SIZE,
2330 .halg.base = {
2331 .cra_name = "hmac(sha384)",
2332 .cra_driver_name = "hmac-sha384-talitos",
2333 .cra_blocksize = SHA384_BLOCK_SIZE,
2334 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2335 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002336 }
2337 },
2338 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2339 DESC_HDR_SEL0_MDEUB |
2340 DESC_HDR_MODE0_MDEUB_SHA384,
2341 },
2342 { .type = CRYPTO_ALG_TYPE_AHASH,
2343 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002344 .halg.digestsize = SHA512_DIGEST_SIZE,
2345 .halg.base = {
2346 .cra_name = "hmac(sha512)",
2347 .cra_driver_name = "hmac-sha512-talitos",
2348 .cra_blocksize = SHA512_BLOCK_SIZE,
2349 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2350 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002351 }
2352 },
2353 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2354 DESC_HDR_SEL0_MDEUB |
2355 DESC_HDR_MODE0_MDEUB_SHA512,
2356 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002357};
2358
2359struct talitos_crypto_alg {
2360 struct list_head entry;
2361 struct device *dev;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002362 struct talitos_alg_template algt;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002363};
2364
2365static int talitos_cra_init(struct crypto_tfm *tfm)
2366{
2367 struct crypto_alg *alg = tfm->__crt_alg;
Kim Phillips19bbbc62009-03-29 15:53:59 +08002368 struct talitos_crypto_alg *talitos_alg;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002369 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
Kim Phillips5228f0f2011-07-15 11:21:38 +08002370 struct talitos_private *priv;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002371
Lee Nipper497f2e62010-05-19 19:20:36 +10002372 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_AHASH)
2373 talitos_alg = container_of(__crypto_ahash_alg(alg),
2374 struct talitos_crypto_alg,
2375 algt.alg.hash);
2376 else
2377 talitos_alg = container_of(alg, struct talitos_crypto_alg,
2378 algt.alg.crypto);
Kim Phillips19bbbc62009-03-29 15:53:59 +08002379
Kim Phillips9c4a7962008-06-23 19:50:15 +08002380 /* update context with ptr to dev */
2381 ctx->dev = talitos_alg->dev;
Kim Phillips19bbbc62009-03-29 15:53:59 +08002382
Kim Phillips5228f0f2011-07-15 11:21:38 +08002383 /* assign SEC channel to tfm in round-robin fashion */
2384 priv = dev_get_drvdata(ctx->dev);
2385 ctx->ch = atomic_inc_return(&priv->last_chan) &
2386 (priv->num_channels - 1);
2387
Kim Phillips9c4a7962008-06-23 19:50:15 +08002388 /* copy descriptor header template value */
Lee Nipperacbf7c622010-05-19 19:19:33 +10002389 ctx->desc_hdr_template = talitos_alg->algt.desc_hdr_template;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002390
Kim Phillips602dba52011-07-15 11:21:39 +08002391 /* select done notification */
2392 ctx->desc_hdr_template |= DESC_HDR_DONE_NOTIFY;
2393
Lee Nipper497f2e62010-05-19 19:20:36 +10002394 return 0;
2395}
2396
2397static int talitos_cra_init_aead(struct crypto_tfm *tfm)
2398{
2399 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
2400
2401 talitos_cra_init(tfm);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002402
2403 /* random first IV */
Lee Nipper70bcaca2008-07-03 19:08:46 +08002404 get_random_bytes(ctx->iv, TALITOS_MAX_IV_LENGTH);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002405
2406 return 0;
2407}
2408
Lee Nipper497f2e62010-05-19 19:20:36 +10002409static int talitos_cra_init_ahash(struct crypto_tfm *tfm)
2410{
2411 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
2412
2413 talitos_cra_init(tfm);
2414
2415 ctx->keylen = 0;
2416 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
2417 sizeof(struct talitos_ahash_req_ctx));
2418
2419 return 0;
2420}
2421
Kim Phillips9c4a7962008-06-23 19:50:15 +08002422/*
2423 * given the alg's descriptor header template, determine whether descriptor
2424 * type and primary/secondary execution units required match the hw
2425 * capabilities description provided in the device tree node.
2426 */
2427static int hw_supports(struct device *dev, __be32 desc_hdr_template)
2428{
2429 struct talitos_private *priv = dev_get_drvdata(dev);
2430 int ret;
2431
2432 ret = (1 << DESC_TYPE(desc_hdr_template) & priv->desc_types) &&
2433 (1 << PRIMARY_EU(desc_hdr_template) & priv->exec_units);
2434
2435 if (SECONDARY_EU(desc_hdr_template))
2436 ret = ret && (1 << SECONDARY_EU(desc_hdr_template)
2437 & priv->exec_units);
2438
2439 return ret;
2440}
2441
Grant Likely2dc11582010-08-06 09:25:50 -06002442static int talitos_remove(struct platform_device *ofdev)
Kim Phillips9c4a7962008-06-23 19:50:15 +08002443{
2444 struct device *dev = &ofdev->dev;
2445 struct talitos_private *priv = dev_get_drvdata(dev);
2446 struct talitos_crypto_alg *t_alg, *n;
2447 int i;
2448
2449 list_for_each_entry_safe(t_alg, n, &priv->alg_list, entry) {
Lee Nipperacbf7c622010-05-19 19:19:33 +10002450 switch (t_alg->algt.type) {
2451 case CRYPTO_ALG_TYPE_ABLKCIPHER:
2452 case CRYPTO_ALG_TYPE_AEAD:
2453 crypto_unregister_alg(&t_alg->algt.alg.crypto);
2454 break;
2455 case CRYPTO_ALG_TYPE_AHASH:
2456 crypto_unregister_ahash(&t_alg->algt.alg.hash);
2457 break;
2458 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002459 list_del(&t_alg->entry);
2460 kfree(t_alg);
2461 }
2462
2463 if (hw_supports(dev, DESC_HDR_SEL0_RNG))
2464 talitos_unregister_rng(dev);
2465
Kim Phillips4b9926282009-08-13 11:50:38 +10002466 for (i = 0; i < priv->num_channels; i++)
Kim Phillips0b798242010-09-23 15:56:08 +08002467 kfree(priv->chan[i].fifo);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002468
Kim Phillips4b9926282009-08-13 11:50:38 +10002469 kfree(priv->chan);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002470
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002471 for (i = 0; i < 2; i++)
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002472 if (priv->irq[i]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002473 free_irq(priv->irq[i], dev);
2474 irq_dispose_mapping(priv->irq[i]);
2475 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002476
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002477 tasklet_kill(&priv->done_task[0]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002478 if (priv->irq[1])
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002479 tasklet_kill(&priv->done_task[1]);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002480
2481 iounmap(priv->reg);
2482
2483 dev_set_drvdata(dev, NULL);
2484
2485 kfree(priv);
2486
2487 return 0;
2488}
2489
2490static struct talitos_crypto_alg *talitos_alg_alloc(struct device *dev,
2491 struct talitos_alg_template
2492 *template)
2493{
Kim Phillips60f208d2010-05-19 19:21:53 +10002494 struct talitos_private *priv = dev_get_drvdata(dev);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002495 struct talitos_crypto_alg *t_alg;
2496 struct crypto_alg *alg;
2497
2498 t_alg = kzalloc(sizeof(struct talitos_crypto_alg), GFP_KERNEL);
2499 if (!t_alg)
2500 return ERR_PTR(-ENOMEM);
2501
Lee Nipperacbf7c622010-05-19 19:19:33 +10002502 t_alg->algt = *template;
2503
2504 switch (t_alg->algt.type) {
2505 case CRYPTO_ALG_TYPE_ABLKCIPHER:
Lee Nipper497f2e62010-05-19 19:20:36 +10002506 alg = &t_alg->algt.alg.crypto;
2507 alg->cra_init = talitos_cra_init;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05002508 alg->cra_type = &crypto_ablkcipher_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05002509 alg->cra_ablkcipher.setkey = ablkcipher_setkey;
2510 alg->cra_ablkcipher.encrypt = ablkcipher_encrypt;
2511 alg->cra_ablkcipher.decrypt = ablkcipher_decrypt;
2512 alg->cra_ablkcipher.geniv = "eseqiv";
Lee Nipper497f2e62010-05-19 19:20:36 +10002513 break;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002514 case CRYPTO_ALG_TYPE_AEAD:
2515 alg = &t_alg->algt.alg.crypto;
Lee Nipper497f2e62010-05-19 19:20:36 +10002516 alg->cra_init = talitos_cra_init_aead;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05002517 alg->cra_type = &crypto_aead_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05002518 alg->cra_aead.setkey = aead_setkey;
2519 alg->cra_aead.setauthsize = aead_setauthsize;
2520 alg->cra_aead.encrypt = aead_encrypt;
2521 alg->cra_aead.decrypt = aead_decrypt;
2522 alg->cra_aead.givencrypt = aead_givencrypt;
2523 alg->cra_aead.geniv = "<built-in>";
Lee Nipperacbf7c622010-05-19 19:19:33 +10002524 break;
2525 case CRYPTO_ALG_TYPE_AHASH:
2526 alg = &t_alg->algt.alg.hash.halg.base;
Lee Nipper497f2e62010-05-19 19:20:36 +10002527 alg->cra_init = talitos_cra_init_ahash;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05002528 alg->cra_type = &crypto_ahash_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05002529 t_alg->algt.alg.hash.init = ahash_init;
2530 t_alg->algt.alg.hash.update = ahash_update;
2531 t_alg->algt.alg.hash.final = ahash_final;
2532 t_alg->algt.alg.hash.finup = ahash_finup;
2533 t_alg->algt.alg.hash.digest = ahash_digest;
2534 t_alg->algt.alg.hash.setkey = ahash_setkey;
2535
Lee Nipper79b3a412011-11-21 16:13:25 +08002536 if (!(priv->features & TALITOS_FTR_HMAC_OK) &&
Kim Phillips0b2730d2011-12-12 14:59:10 -06002537 !strncmp(alg->cra_name, "hmac", 4)) {
2538 kfree(t_alg);
Lee Nipper79b3a412011-11-21 16:13:25 +08002539 return ERR_PTR(-ENOTSUPP);
Kim Phillips0b2730d2011-12-12 14:59:10 -06002540 }
Kim Phillips60f208d2010-05-19 19:21:53 +10002541 if (!(priv->features & TALITOS_FTR_SHA224_HWINIT) &&
Lee Nipper79b3a412011-11-21 16:13:25 +08002542 (!strcmp(alg->cra_name, "sha224") ||
2543 !strcmp(alg->cra_name, "hmac(sha224)"))) {
Kim Phillips60f208d2010-05-19 19:21:53 +10002544 t_alg->algt.alg.hash.init = ahash_init_sha224_swinit;
2545 t_alg->algt.desc_hdr_template =
2546 DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2547 DESC_HDR_SEL0_MDEUA |
2548 DESC_HDR_MODE0_MDEU_SHA256;
2549 }
Lee Nipper497f2e62010-05-19 19:20:36 +10002550 break;
Kim Phillips1d119112010-09-23 15:55:27 +08002551 default:
2552 dev_err(dev, "unknown algorithm type %d\n", t_alg->algt.type);
2553 return ERR_PTR(-EINVAL);
Lee Nipperacbf7c622010-05-19 19:19:33 +10002554 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002555
Kim Phillips9c4a7962008-06-23 19:50:15 +08002556 alg->cra_module = THIS_MODULE;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002557 alg->cra_priority = TALITOS_CRA_PRIORITY;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002558 alg->cra_alignmask = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002559 alg->cra_ctxsize = sizeof(struct talitos_ctx);
Nikos Mavrogiannopoulosd912bb72011-11-01 13:39:56 +01002560 alg->cra_flags |= CRYPTO_ALG_KERN_DRIVER_ONLY;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002561
Kim Phillips9c4a7962008-06-23 19:50:15 +08002562 t_alg->dev = dev;
2563
2564 return t_alg;
2565}
2566
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002567static int talitos_probe_irq(struct platform_device *ofdev)
2568{
2569 struct device *dev = &ofdev->dev;
2570 struct device_node *np = ofdev->dev.of_node;
2571 struct talitos_private *priv = dev_get_drvdata(dev);
2572 int err;
2573
2574 priv->irq[0] = irq_of_parse_and_map(np, 0);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002575 if (!priv->irq[0]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002576 dev_err(dev, "failed to map irq\n");
2577 return -EINVAL;
2578 }
2579
2580 priv->irq[1] = irq_of_parse_and_map(np, 1);
2581
2582 /* get the primary irq line */
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002583 if (!priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002584 err = request_irq(priv->irq[0], talitos_interrupt_4ch, 0,
2585 dev_driver_string(dev), dev);
2586 goto primary_out;
2587 }
2588
2589 err = request_irq(priv->irq[0], talitos_interrupt_ch0_2, 0,
2590 dev_driver_string(dev), dev);
2591 if (err)
2592 goto primary_out;
2593
2594 /* get the secondary irq line */
2595 err = request_irq(priv->irq[1], talitos_interrupt_ch1_3, 0,
2596 dev_driver_string(dev), dev);
2597 if (err) {
2598 dev_err(dev, "failed to request secondary irq\n");
2599 irq_dispose_mapping(priv->irq[1]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002600 priv->irq[1] = 0;
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002601 }
2602
2603 return err;
2604
2605primary_out:
2606 if (err) {
2607 dev_err(dev, "failed to request primary irq\n");
2608 irq_dispose_mapping(priv->irq[0]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002609 priv->irq[0] = 0;
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002610 }
2611
2612 return err;
2613}
2614
Grant Likely1c48a5c2011-02-17 02:43:24 -07002615static int talitos_probe(struct platform_device *ofdev)
Kim Phillips9c4a7962008-06-23 19:50:15 +08002616{
2617 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -07002618 struct device_node *np = ofdev->dev.of_node;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002619 struct talitos_private *priv;
2620 const unsigned int *prop;
2621 int i, err;
2622
2623 priv = kzalloc(sizeof(struct talitos_private), GFP_KERNEL);
2624 if (!priv)
2625 return -ENOMEM;
2626
2627 dev_set_drvdata(dev, priv);
2628
2629 priv->ofdev = ofdev;
2630
Horia Geanta511d63c2012-03-30 17:49:53 +03002631 spin_lock_init(&priv->reg_lock);
2632
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002633 err = talitos_probe_irq(ofdev);
2634 if (err)
2635 goto err_out;
2636
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002637 if (!priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002638 tasklet_init(&priv->done_task[0], talitos_done_4ch,
2639 (unsigned long)dev);
2640 } else {
2641 tasklet_init(&priv->done_task[0], talitos_done_ch0_2,
2642 (unsigned long)dev);
2643 tasklet_init(&priv->done_task[1], talitos_done_ch1_3,
2644 (unsigned long)dev);
2645 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002646
Kim Phillipsfe5720e2008-10-12 20:33:14 +08002647 INIT_LIST_HEAD(&priv->alg_list);
2648
Kim Phillips9c4a7962008-06-23 19:50:15 +08002649 priv->reg = of_iomap(np, 0);
2650 if (!priv->reg) {
2651 dev_err(dev, "failed to of_iomap\n");
2652 err = -ENOMEM;
2653 goto err_out;
2654 }
2655
2656 /* get SEC version capabilities from device tree */
2657 prop = of_get_property(np, "fsl,num-channels", NULL);
2658 if (prop)
2659 priv->num_channels = *prop;
2660
2661 prop = of_get_property(np, "fsl,channel-fifo-len", NULL);
2662 if (prop)
2663 priv->chfifo_len = *prop;
2664
2665 prop = of_get_property(np, "fsl,exec-units-mask", NULL);
2666 if (prop)
2667 priv->exec_units = *prop;
2668
2669 prop = of_get_property(np, "fsl,descriptor-types-mask", NULL);
2670 if (prop)
2671 priv->desc_types = *prop;
2672
2673 if (!is_power_of_2(priv->num_channels) || !priv->chfifo_len ||
2674 !priv->exec_units || !priv->desc_types) {
2675 dev_err(dev, "invalid property data in device tree node\n");
2676 err = -EINVAL;
2677 goto err_out;
2678 }
2679
Lee Nipperf3c85bc2008-07-30 16:26:57 +08002680 if (of_device_is_compatible(np, "fsl,sec3.0"))
2681 priv->features |= TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT;
2682
Kim Phillipsfe5720e2008-10-12 20:33:14 +08002683 if (of_device_is_compatible(np, "fsl,sec2.1"))
Kim Phillips60f208d2010-05-19 19:21:53 +10002684 priv->features |= TALITOS_FTR_HW_AUTH_CHECK |
Lee Nipper79b3a412011-11-21 16:13:25 +08002685 TALITOS_FTR_SHA224_HWINIT |
2686 TALITOS_FTR_HMAC_OK;
Kim Phillipsfe5720e2008-10-12 20:33:14 +08002687
Kim Phillips4b9926282009-08-13 11:50:38 +10002688 priv->chan = kzalloc(sizeof(struct talitos_channel) *
2689 priv->num_channels, GFP_KERNEL);
2690 if (!priv->chan) {
2691 dev_err(dev, "failed to allocate channel management space\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08002692 err = -ENOMEM;
2693 goto err_out;
2694 }
2695
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002696 for (i = 0; i < priv->num_channels; i++) {
2697 priv->chan[i].reg = priv->reg + TALITOS_CH_STRIDE * (i + 1);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002698 if (!priv->irq[1] || !(i & 1))
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002699 priv->chan[i].reg += TALITOS_CH_BASE_OFFSET;
2700 }
Kim Phillipsad42d5f2011-11-21 16:13:27 +08002701
Kim Phillips9c4a7962008-06-23 19:50:15 +08002702 for (i = 0; i < priv->num_channels; i++) {
Kim Phillips4b9926282009-08-13 11:50:38 +10002703 spin_lock_init(&priv->chan[i].head_lock);
2704 spin_lock_init(&priv->chan[i].tail_lock);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002705 }
2706
2707 priv->fifo_len = roundup_pow_of_two(priv->chfifo_len);
2708
2709 for (i = 0; i < priv->num_channels; i++) {
Kim Phillips4b9926282009-08-13 11:50:38 +10002710 priv->chan[i].fifo = kzalloc(sizeof(struct talitos_request) *
2711 priv->fifo_len, GFP_KERNEL);
2712 if (!priv->chan[i].fifo) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08002713 dev_err(dev, "failed to allocate request fifo %d\n", i);
2714 err = -ENOMEM;
2715 goto err_out;
2716 }
2717 }
2718
Kim Phillipsec6644d2008-07-17 20:16:40 +08002719 for (i = 0; i < priv->num_channels; i++)
Kim Phillips4b9926282009-08-13 11:50:38 +10002720 atomic_set(&priv->chan[i].submit_count,
2721 -(priv->chfifo_len - 1));
Kim Phillips9c4a7962008-06-23 19:50:15 +08002722
Kim Phillips81eb0242009-08-13 11:51:51 +10002723 dma_set_mask(dev, DMA_BIT_MASK(36));
2724
Kim Phillips9c4a7962008-06-23 19:50:15 +08002725 /* reset and initialize the h/w */
2726 err = init_device(dev);
2727 if (err) {
2728 dev_err(dev, "failed to initialize device\n");
2729 goto err_out;
2730 }
2731
2732 /* register the RNG, if available */
2733 if (hw_supports(dev, DESC_HDR_SEL0_RNG)) {
2734 err = talitos_register_rng(dev);
2735 if (err) {
2736 dev_err(dev, "failed to register hwrng: %d\n", err);
2737 goto err_out;
2738 } else
2739 dev_info(dev, "hwrng\n");
2740 }
2741
2742 /* register crypto algorithms the device supports */
Kim Phillips9c4a7962008-06-23 19:50:15 +08002743 for (i = 0; i < ARRAY_SIZE(driver_algs); i++) {
2744 if (hw_supports(dev, driver_algs[i].desc_hdr_template)) {
2745 struct talitos_crypto_alg *t_alg;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002746 char *name = NULL;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002747
2748 t_alg = talitos_alg_alloc(dev, &driver_algs[i]);
2749 if (IS_ERR(t_alg)) {
2750 err = PTR_ERR(t_alg);
Kim Phillips0b2730d2011-12-12 14:59:10 -06002751 if (err == -ENOTSUPP)
Lee Nipper79b3a412011-11-21 16:13:25 +08002752 continue;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002753 goto err_out;
2754 }
2755
Lee Nipperacbf7c622010-05-19 19:19:33 +10002756 switch (t_alg->algt.type) {
2757 case CRYPTO_ALG_TYPE_ABLKCIPHER:
2758 case CRYPTO_ALG_TYPE_AEAD:
2759 err = crypto_register_alg(
2760 &t_alg->algt.alg.crypto);
2761 name = t_alg->algt.alg.crypto.cra_driver_name;
2762 break;
2763 case CRYPTO_ALG_TYPE_AHASH:
2764 err = crypto_register_ahash(
2765 &t_alg->algt.alg.hash);
2766 name =
2767 t_alg->algt.alg.hash.halg.base.cra_driver_name;
2768 break;
2769 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002770 if (err) {
2771 dev_err(dev, "%s alg registration failed\n",
Lee Nipperacbf7c622010-05-19 19:19:33 +10002772 name);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002773 kfree(t_alg);
Kim Phillips5b859b6e2011-11-21 16:13:26 +08002774 } else
Kim Phillips9c4a7962008-06-23 19:50:15 +08002775 list_add_tail(&t_alg->entry, &priv->alg_list);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002776 }
2777 }
Kim Phillips5b859b6e2011-11-21 16:13:26 +08002778 if (!list_empty(&priv->alg_list))
2779 dev_info(dev, "%s algorithms registered in /proc/crypto\n",
2780 (char *)of_get_property(np, "compatible", NULL));
Kim Phillips9c4a7962008-06-23 19:50:15 +08002781
2782 return 0;
2783
2784err_out:
2785 talitos_remove(ofdev);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002786
2787 return err;
2788}
2789
Márton Németh6c3f9752010-01-17 21:54:01 +11002790static const struct of_device_id talitos_match[] = {
Kim Phillips9c4a7962008-06-23 19:50:15 +08002791 {
2792 .compatible = "fsl,sec2.0",
2793 },
2794 {},
2795};
2796MODULE_DEVICE_TABLE(of, talitos_match);
2797
Grant Likely1c48a5c2011-02-17 02:43:24 -07002798static struct platform_driver talitos_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002799 .driver = {
2800 .name = "talitos",
2801 .owner = THIS_MODULE,
2802 .of_match_table = talitos_match,
2803 },
Kim Phillips9c4a7962008-06-23 19:50:15 +08002804 .probe = talitos_probe,
Al Viro596f1032008-11-22 17:34:24 +00002805 .remove = talitos_remove,
Kim Phillips9c4a7962008-06-23 19:50:15 +08002806};
2807
Axel Lin741e8c22011-11-26 21:26:19 +08002808module_platform_driver(talitos_driver);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002809
2810MODULE_LICENSE("GPL");
2811MODULE_AUTHOR("Kim Phillips <kim.phillips@freescale.com>");
2812MODULE_DESCRIPTION("Freescale integrated security engine (SEC) driver");