blob: da1112765a4465066ecff9bba2ad52900d19944d [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>
Horia Geantae763eb62012-08-08 18:46:45 +030041#include <linux/string.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080042
43#include <crypto/algapi.h>
44#include <crypto/aes.h>
Lee Nipper3952f172008-07-10 18:29:18 +080045#include <crypto/des.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080046#include <crypto/sha.h>
Lee Nipper497f2e62010-05-19 19:20:36 +100047#include <crypto/md5.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080048#include <crypto/aead.h>
49#include <crypto/authenc.h>
Lee Nipper4de9d0b2009-03-29 15:52:32 +080050#include <crypto/skcipher.h>
Lee Nipperacbf7c622010-05-19 19:19:33 +100051#include <crypto/hash.h>
52#include <crypto/internal/hash.h>
Lee Nipper4de9d0b2009-03-29 15:52:32 +080053#include <crypto/scatterwalk.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080054
55#include "talitos.h"
56
Kim Phillips81eb0242009-08-13 11:51:51 +100057static void to_talitos_ptr(struct talitos_ptr *talitos_ptr, dma_addr_t dma_addr)
58{
59 talitos_ptr->ptr = cpu_to_be32(lower_32_bits(dma_addr));
Kim Phillipsa7524472010-09-23 15:56:38 +080060 talitos_ptr->eptr = upper_32_bits(dma_addr);
Kim Phillips81eb0242009-08-13 11:51:51 +100061}
62
Kim Phillips9c4a7962008-06-23 19:50:15 +080063/*
64 * map virtual single (contiguous) pointer to h/w descriptor pointer
65 */
66static void map_single_talitos_ptr(struct device *dev,
67 struct talitos_ptr *talitos_ptr,
68 unsigned short len, void *data,
69 unsigned char extent,
70 enum dma_data_direction dir)
71{
Kim Phillips81eb0242009-08-13 11:51:51 +100072 dma_addr_t dma_addr = dma_map_single(dev, data, len, dir);
73
Kim Phillips9c4a7962008-06-23 19:50:15 +080074 talitos_ptr->len = cpu_to_be16(len);
Kim Phillips81eb0242009-08-13 11:51:51 +100075 to_talitos_ptr(talitos_ptr, dma_addr);
Kim Phillips9c4a7962008-06-23 19:50:15 +080076 talitos_ptr->j_extent = extent;
77}
78
79/*
80 * unmap bus single (contiguous) h/w descriptor pointer
81 */
82static void unmap_single_talitos_ptr(struct device *dev,
83 struct talitos_ptr *talitos_ptr,
84 enum dma_data_direction dir)
85{
86 dma_unmap_single(dev, be32_to_cpu(talitos_ptr->ptr),
87 be16_to_cpu(talitos_ptr->len), dir);
88}
89
90static int reset_channel(struct device *dev, int ch)
91{
92 struct talitos_private *priv = dev_get_drvdata(dev);
93 unsigned int timeout = TALITOS_TIMEOUT;
94
Kim Phillipsad42d5f2011-11-21 16:13:27 +080095 setbits32(priv->chan[ch].reg + TALITOS_CCCR, TALITOS_CCCR_RESET);
Kim Phillips9c4a7962008-06-23 19:50:15 +080096
Kim Phillipsad42d5f2011-11-21 16:13:27 +080097 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) & TALITOS_CCCR_RESET)
Kim Phillips9c4a7962008-06-23 19:50:15 +080098 && --timeout)
99 cpu_relax();
100
101 if (timeout == 0) {
102 dev_err(dev, "failed to reset channel %d\n", ch);
103 return -EIO;
104 }
105
Kim Phillips81eb0242009-08-13 11:51:51 +1000106 /* set 36-bit addressing, done writeback enable and done IRQ enable */
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800107 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, TALITOS_CCCR_LO_EAE |
Kim Phillips81eb0242009-08-13 11:51:51 +1000108 TALITOS_CCCR_LO_CDWE | TALITOS_CCCR_LO_CDIE);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800109
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800110 /* and ICCR writeback, if available */
111 if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800112 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO,
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800113 TALITOS_CCCR_LO_IWSE);
114
Kim Phillips9c4a7962008-06-23 19:50:15 +0800115 return 0;
116}
117
118static int reset_device(struct device *dev)
119{
120 struct talitos_private *priv = dev_get_drvdata(dev);
121 unsigned int timeout = TALITOS_TIMEOUT;
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800122 u32 mcr = TALITOS_MCR_SWR;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800123
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800124 setbits32(priv->reg + TALITOS_MCR, mcr);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800125
126 while ((in_be32(priv->reg + TALITOS_MCR) & TALITOS_MCR_SWR)
127 && --timeout)
128 cpu_relax();
129
Kim Phillips2cdba3c2011-12-12 14:59:11 -0600130 if (priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800131 mcr = TALITOS_MCR_RCA1 | TALITOS_MCR_RCA3;
132 setbits32(priv->reg + TALITOS_MCR, mcr);
133 }
134
Kim Phillips9c4a7962008-06-23 19:50:15 +0800135 if (timeout == 0) {
136 dev_err(dev, "failed to reset device\n");
137 return -EIO;
138 }
139
140 return 0;
141}
142
143/*
144 * Reset and initialize the device
145 */
146static int init_device(struct device *dev)
147{
148 struct talitos_private *priv = dev_get_drvdata(dev);
149 int ch, err;
150
151 /*
152 * Master reset
153 * errata documentation: warning: certain SEC interrupts
154 * are not fully cleared by writing the MCR:SWR bit,
155 * set bit twice to completely reset
156 */
157 err = reset_device(dev);
158 if (err)
159 return err;
160
161 err = reset_device(dev);
162 if (err)
163 return err;
164
165 /* reset channels */
166 for (ch = 0; ch < priv->num_channels; ch++) {
167 err = reset_channel(dev, ch);
168 if (err)
169 return err;
170 }
171
172 /* enable channel done and error interrupts */
173 setbits32(priv->reg + TALITOS_IMR, TALITOS_IMR_INIT);
174 setbits32(priv->reg + TALITOS_IMR_LO, TALITOS_IMR_LO_INIT);
175
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800176 /* disable integrity check error interrupts (use writeback instead) */
177 if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
178 setbits32(priv->reg + TALITOS_MDEUICR_LO,
179 TALITOS_MDEUICR_LO_ICE);
180
Kim Phillips9c4a7962008-06-23 19:50:15 +0800181 return 0;
182}
183
184/**
185 * talitos_submit - submits a descriptor to the device for processing
186 * @dev: the SEC device to be used
Kim Phillips5228f0f2011-07-15 11:21:38 +0800187 * @ch: the SEC device channel to be used
Kim Phillips9c4a7962008-06-23 19:50:15 +0800188 * @desc: the descriptor to be processed by the device
189 * @callback: whom to call when processing is complete
190 * @context: a handle for use by caller (optional)
191 *
192 * desc must contain valid dma-mapped (bus physical) address pointers.
193 * callback must check err and feedback in descriptor header
194 * for device processing status.
195 */
Horia Geanta865d5062012-07-03 19:16:52 +0300196int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc,
197 void (*callback)(struct device *dev,
198 struct talitos_desc *desc,
199 void *context, int error),
200 void *context)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800201{
202 struct talitos_private *priv = dev_get_drvdata(dev);
203 struct talitos_request *request;
Kim Phillips5228f0f2011-07-15 11:21:38 +0800204 unsigned long flags;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800205 int head;
206
Kim Phillips4b9926282009-08-13 11:50:38 +1000207 spin_lock_irqsave(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800208
Kim Phillips4b9926282009-08-13 11:50:38 +1000209 if (!atomic_inc_not_zero(&priv->chan[ch].submit_count)) {
Kim Phillipsec6644d2008-07-17 20:16:40 +0800210 /* h/w fifo is full */
Kim Phillips4b9926282009-08-13 11:50:38 +1000211 spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800212 return -EAGAIN;
213 }
214
Kim Phillips4b9926282009-08-13 11:50:38 +1000215 head = priv->chan[ch].head;
216 request = &priv->chan[ch].fifo[head];
Kim Phillipsec6644d2008-07-17 20:16:40 +0800217
Kim Phillips9c4a7962008-06-23 19:50:15 +0800218 /* map descriptor and save caller data */
219 request->dma_desc = dma_map_single(dev, desc, sizeof(*desc),
220 DMA_BIDIRECTIONAL);
221 request->callback = callback;
222 request->context = context;
223
224 /* increment fifo head */
Kim Phillips4b9926282009-08-13 11:50:38 +1000225 priv->chan[ch].head = (priv->chan[ch].head + 1) & (priv->fifo_len - 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800226
227 smp_wmb();
228 request->desc = desc;
229
230 /* GO! */
231 wmb();
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800232 out_be32(priv->chan[ch].reg + TALITOS_FF,
233 upper_32_bits(request->dma_desc));
234 out_be32(priv->chan[ch].reg + TALITOS_FF_LO,
Kim Phillipsa7524472010-09-23 15:56:38 +0800235 lower_32_bits(request->dma_desc));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800236
Kim Phillips4b9926282009-08-13 11:50:38 +1000237 spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800238
239 return -EINPROGRESS;
240}
Horia Geanta865d5062012-07-03 19:16:52 +0300241EXPORT_SYMBOL(talitos_submit);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800242
243/*
244 * process what was done, notify callback of error if not
245 */
246static void flush_channel(struct device *dev, int ch, int error, int reset_ch)
247{
248 struct talitos_private *priv = dev_get_drvdata(dev);
249 struct talitos_request *request, saved_req;
250 unsigned long flags;
251 int tail, status;
252
Kim Phillips4b9926282009-08-13 11:50:38 +1000253 spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800254
Kim Phillips4b9926282009-08-13 11:50:38 +1000255 tail = priv->chan[ch].tail;
256 while (priv->chan[ch].fifo[tail].desc) {
257 request = &priv->chan[ch].fifo[tail];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800258
259 /* descriptors with their done bits set don't get the error */
260 rmb();
Lee Nipperca38a812008-12-20 17:09:25 +1100261 if ((request->desc->hdr & DESC_HDR_DONE) == DESC_HDR_DONE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800262 status = 0;
Lee Nipperca38a812008-12-20 17:09:25 +1100263 else
Kim Phillips9c4a7962008-06-23 19:50:15 +0800264 if (!error)
265 break;
266 else
267 status = error;
268
269 dma_unmap_single(dev, request->dma_desc,
Kim Phillipse938e462009-03-29 15:53:23 +0800270 sizeof(struct talitos_desc),
271 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800272
273 /* copy entries so we can call callback outside lock */
274 saved_req.desc = request->desc;
275 saved_req.callback = request->callback;
276 saved_req.context = request->context;
277
278 /* release request entry in fifo */
279 smp_wmb();
280 request->desc = NULL;
281
282 /* increment fifo tail */
Kim Phillips4b9926282009-08-13 11:50:38 +1000283 priv->chan[ch].tail = (tail + 1) & (priv->fifo_len - 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800284
Kim Phillips4b9926282009-08-13 11:50:38 +1000285 spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
Kim Phillipsec6644d2008-07-17 20:16:40 +0800286
Kim Phillips4b9926282009-08-13 11:50:38 +1000287 atomic_dec(&priv->chan[ch].submit_count);
Kim Phillipsec6644d2008-07-17 20:16:40 +0800288
Kim Phillips9c4a7962008-06-23 19:50:15 +0800289 saved_req.callback(dev, saved_req.desc, saved_req.context,
290 status);
291 /* channel may resume processing in single desc error case */
292 if (error && !reset_ch && status == error)
293 return;
Kim Phillips4b9926282009-08-13 11:50:38 +1000294 spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
295 tail = priv->chan[ch].tail;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800296 }
297
Kim Phillips4b9926282009-08-13 11:50:38 +1000298 spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800299}
300
301/*
302 * process completed requests for channels that have done status
303 */
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800304#define DEF_TALITOS_DONE(name, ch_done_mask) \
305static void talitos_done_##name(unsigned long data) \
306{ \
307 struct device *dev = (struct device *)data; \
308 struct talitos_private *priv = dev_get_drvdata(dev); \
Horia Geanta511d63c2012-03-30 17:49:53 +0300309 unsigned long flags; \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800310 \
311 if (ch_done_mask & 1) \
312 flush_channel(dev, 0, 0, 0); \
313 if (priv->num_channels == 1) \
314 goto out; \
315 if (ch_done_mask & (1 << 2)) \
316 flush_channel(dev, 1, 0, 0); \
317 if (ch_done_mask & (1 << 4)) \
318 flush_channel(dev, 2, 0, 0); \
319 if (ch_done_mask & (1 << 6)) \
320 flush_channel(dev, 3, 0, 0); \
321 \
322out: \
323 /* At this point, all completed channels have been processed */ \
324 /* Unmask done interrupts for channels completed later on. */ \
Horia Geanta511d63c2012-03-30 17:49:53 +0300325 spin_lock_irqsave(&priv->reg_lock, flags); \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800326 setbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
327 setbits32(priv->reg + TALITOS_IMR_LO, TALITOS_IMR_LO_INIT); \
Horia Geanta511d63c2012-03-30 17:49:53 +0300328 spin_unlock_irqrestore(&priv->reg_lock, flags); \
Kim Phillips9c4a7962008-06-23 19:50:15 +0800329}
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800330DEF_TALITOS_DONE(4ch, TALITOS_ISR_4CHDONE)
331DEF_TALITOS_DONE(ch0_2, TALITOS_ISR_CH_0_2_DONE)
332DEF_TALITOS_DONE(ch1_3, TALITOS_ISR_CH_1_3_DONE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800333
334/*
335 * locate current (offending) descriptor
336 */
Kim Phillips3e721ae2011-10-21 15:20:28 +0200337static u32 current_desc_hdr(struct device *dev, int ch)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800338{
339 struct talitos_private *priv = dev_get_drvdata(dev);
Kim Phillips4b9926282009-08-13 11:50:38 +1000340 int tail = priv->chan[ch].tail;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800341 dma_addr_t cur_desc;
342
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800343 cur_desc = in_be32(priv->chan[ch].reg + TALITOS_CDPR_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800344
Kim Phillips4b9926282009-08-13 11:50:38 +1000345 while (priv->chan[ch].fifo[tail].dma_desc != cur_desc) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800346 tail = (tail + 1) & (priv->fifo_len - 1);
Kim Phillips4b9926282009-08-13 11:50:38 +1000347 if (tail == priv->chan[ch].tail) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800348 dev_err(dev, "couldn't locate current descriptor\n");
Kim Phillips3e721ae2011-10-21 15:20:28 +0200349 return 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800350 }
351 }
352
Kim Phillips3e721ae2011-10-21 15:20:28 +0200353 return priv->chan[ch].fifo[tail].desc->hdr;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800354}
355
356/*
357 * user diagnostics; report root cause of error based on execution unit status
358 */
Kim Phillips3e721ae2011-10-21 15:20:28 +0200359static void report_eu_error(struct device *dev, int ch, u32 desc_hdr)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800360{
361 struct talitos_private *priv = dev_get_drvdata(dev);
362 int i;
363
Kim Phillips3e721ae2011-10-21 15:20:28 +0200364 if (!desc_hdr)
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800365 desc_hdr = in_be32(priv->chan[ch].reg + TALITOS_DESCBUF);
Kim Phillips3e721ae2011-10-21 15:20:28 +0200366
367 switch (desc_hdr & DESC_HDR_SEL0_MASK) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800368 case DESC_HDR_SEL0_AFEU:
369 dev_err(dev, "AFEUISR 0x%08x_%08x\n",
370 in_be32(priv->reg + TALITOS_AFEUISR),
371 in_be32(priv->reg + TALITOS_AFEUISR_LO));
372 break;
373 case DESC_HDR_SEL0_DEU:
374 dev_err(dev, "DEUISR 0x%08x_%08x\n",
375 in_be32(priv->reg + TALITOS_DEUISR),
376 in_be32(priv->reg + TALITOS_DEUISR_LO));
377 break;
378 case DESC_HDR_SEL0_MDEUA:
379 case DESC_HDR_SEL0_MDEUB:
380 dev_err(dev, "MDEUISR 0x%08x_%08x\n",
381 in_be32(priv->reg + TALITOS_MDEUISR),
382 in_be32(priv->reg + TALITOS_MDEUISR_LO));
383 break;
384 case DESC_HDR_SEL0_RNG:
385 dev_err(dev, "RNGUISR 0x%08x_%08x\n",
386 in_be32(priv->reg + TALITOS_RNGUISR),
387 in_be32(priv->reg + TALITOS_RNGUISR_LO));
388 break;
389 case DESC_HDR_SEL0_PKEU:
390 dev_err(dev, "PKEUISR 0x%08x_%08x\n",
391 in_be32(priv->reg + TALITOS_PKEUISR),
392 in_be32(priv->reg + TALITOS_PKEUISR_LO));
393 break;
394 case DESC_HDR_SEL0_AESU:
395 dev_err(dev, "AESUISR 0x%08x_%08x\n",
396 in_be32(priv->reg + TALITOS_AESUISR),
397 in_be32(priv->reg + TALITOS_AESUISR_LO));
398 break;
399 case DESC_HDR_SEL0_CRCU:
400 dev_err(dev, "CRCUISR 0x%08x_%08x\n",
401 in_be32(priv->reg + TALITOS_CRCUISR),
402 in_be32(priv->reg + TALITOS_CRCUISR_LO));
403 break;
404 case DESC_HDR_SEL0_KEU:
405 dev_err(dev, "KEUISR 0x%08x_%08x\n",
406 in_be32(priv->reg + TALITOS_KEUISR),
407 in_be32(priv->reg + TALITOS_KEUISR_LO));
408 break;
409 }
410
Kim Phillips3e721ae2011-10-21 15:20:28 +0200411 switch (desc_hdr & DESC_HDR_SEL1_MASK) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800412 case DESC_HDR_SEL1_MDEUA:
413 case DESC_HDR_SEL1_MDEUB:
414 dev_err(dev, "MDEUISR 0x%08x_%08x\n",
415 in_be32(priv->reg + TALITOS_MDEUISR),
416 in_be32(priv->reg + TALITOS_MDEUISR_LO));
417 break;
418 case DESC_HDR_SEL1_CRCU:
419 dev_err(dev, "CRCUISR 0x%08x_%08x\n",
420 in_be32(priv->reg + TALITOS_CRCUISR),
421 in_be32(priv->reg + TALITOS_CRCUISR_LO));
422 break;
423 }
424
425 for (i = 0; i < 8; i++)
426 dev_err(dev, "DESCBUF 0x%08x_%08x\n",
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800427 in_be32(priv->chan[ch].reg + TALITOS_DESCBUF + 8*i),
428 in_be32(priv->chan[ch].reg + TALITOS_DESCBUF_LO + 8*i));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800429}
430
431/*
432 * recover from error interrupts
433 */
Kim Phillips5e718a02011-12-12 14:59:12 -0600434static void talitos_error(struct device *dev, u32 isr, u32 isr_lo)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800435{
Kim Phillips9c4a7962008-06-23 19:50:15 +0800436 struct talitos_private *priv = dev_get_drvdata(dev);
437 unsigned int timeout = TALITOS_TIMEOUT;
438 int ch, error, reset_dev = 0, reset_ch = 0;
Kim Phillips40405f12008-10-12 20:19:35 +0800439 u32 v, v_lo;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800440
441 for (ch = 0; ch < priv->num_channels; ch++) {
442 /* skip channels without errors */
443 if (!(isr & (1 << (ch * 2 + 1))))
444 continue;
445
446 error = -EINVAL;
447
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800448 v = in_be32(priv->chan[ch].reg + TALITOS_CCPSR);
449 v_lo = in_be32(priv->chan[ch].reg + TALITOS_CCPSR_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800450
451 if (v_lo & TALITOS_CCPSR_LO_DOF) {
452 dev_err(dev, "double fetch fifo overflow error\n");
453 error = -EAGAIN;
454 reset_ch = 1;
455 }
456 if (v_lo & TALITOS_CCPSR_LO_SOF) {
457 /* h/w dropped descriptor */
458 dev_err(dev, "single fetch fifo overflow error\n");
459 error = -EAGAIN;
460 }
461 if (v_lo & TALITOS_CCPSR_LO_MDTE)
462 dev_err(dev, "master data transfer error\n");
463 if (v_lo & TALITOS_CCPSR_LO_SGDLZ)
464 dev_err(dev, "s/g data length zero error\n");
465 if (v_lo & TALITOS_CCPSR_LO_FPZ)
466 dev_err(dev, "fetch pointer zero error\n");
467 if (v_lo & TALITOS_CCPSR_LO_IDH)
468 dev_err(dev, "illegal descriptor header error\n");
469 if (v_lo & TALITOS_CCPSR_LO_IEU)
470 dev_err(dev, "invalid execution unit error\n");
471 if (v_lo & TALITOS_CCPSR_LO_EU)
Kim Phillips3e721ae2011-10-21 15:20:28 +0200472 report_eu_error(dev, ch, current_desc_hdr(dev, ch));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800473 if (v_lo & TALITOS_CCPSR_LO_GB)
474 dev_err(dev, "gather boundary error\n");
475 if (v_lo & TALITOS_CCPSR_LO_GRL)
476 dev_err(dev, "gather return/length error\n");
477 if (v_lo & TALITOS_CCPSR_LO_SB)
478 dev_err(dev, "scatter boundary error\n");
479 if (v_lo & TALITOS_CCPSR_LO_SRL)
480 dev_err(dev, "scatter return/length error\n");
481
482 flush_channel(dev, ch, error, reset_ch);
483
484 if (reset_ch) {
485 reset_channel(dev, ch);
486 } else {
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800487 setbits32(priv->chan[ch].reg + TALITOS_CCCR,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800488 TALITOS_CCCR_CONT);
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800489 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, 0);
490 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) &
Kim Phillips9c4a7962008-06-23 19:50:15 +0800491 TALITOS_CCCR_CONT) && --timeout)
492 cpu_relax();
493 if (timeout == 0) {
494 dev_err(dev, "failed to restart channel %d\n",
495 ch);
496 reset_dev = 1;
497 }
498 }
499 }
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800500 if (reset_dev || isr & ~TALITOS_ISR_4CHERR || isr_lo) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800501 dev_err(dev, "done overflow, internal time out, or rngu error: "
502 "ISR 0x%08x_%08x\n", isr, isr_lo);
503
504 /* purge request queues */
505 for (ch = 0; ch < priv->num_channels; ch++)
506 flush_channel(dev, ch, -EIO, 1);
507
508 /* reset and reinitialize the device */
509 init_device(dev);
510 }
511}
512
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800513#define DEF_TALITOS_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet) \
514static irqreturn_t talitos_interrupt_##name(int irq, void *data) \
515{ \
516 struct device *dev = data; \
517 struct talitos_private *priv = dev_get_drvdata(dev); \
518 u32 isr, isr_lo; \
Horia Geanta511d63c2012-03-30 17:49:53 +0300519 unsigned long flags; \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800520 \
Horia Geanta511d63c2012-03-30 17:49:53 +0300521 spin_lock_irqsave(&priv->reg_lock, flags); \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800522 isr = in_be32(priv->reg + TALITOS_ISR); \
523 isr_lo = in_be32(priv->reg + TALITOS_ISR_LO); \
524 /* Acknowledge interrupt */ \
525 out_be32(priv->reg + TALITOS_ICR, isr & (ch_done_mask | ch_err_mask)); \
526 out_be32(priv->reg + TALITOS_ICR_LO, isr_lo); \
527 \
Horia Geanta511d63c2012-03-30 17:49:53 +0300528 if (unlikely(isr & ch_err_mask || isr_lo)) { \
529 spin_unlock_irqrestore(&priv->reg_lock, flags); \
530 talitos_error(dev, isr & ch_err_mask, isr_lo); \
531 } \
532 else { \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800533 if (likely(isr & ch_done_mask)) { \
534 /* mask further done interrupts. */ \
535 clrbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
536 /* done_task will unmask done interrupts at exit */ \
537 tasklet_schedule(&priv->done_task[tlet]); \
538 } \
Horia Geanta511d63c2012-03-30 17:49:53 +0300539 spin_unlock_irqrestore(&priv->reg_lock, flags); \
540 } \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800541 \
542 return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED : \
543 IRQ_NONE; \
Kim Phillips9c4a7962008-06-23 19:50:15 +0800544}
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800545DEF_TALITOS_INTERRUPT(4ch, TALITOS_ISR_4CHDONE, TALITOS_ISR_4CHERR, 0)
546DEF_TALITOS_INTERRUPT(ch0_2, TALITOS_ISR_CH_0_2_DONE, TALITOS_ISR_CH_0_2_ERR, 0)
547DEF_TALITOS_INTERRUPT(ch1_3, TALITOS_ISR_CH_1_3_DONE, TALITOS_ISR_CH_1_3_ERR, 1)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800548
549/*
550 * hwrng
551 */
552static int talitos_rng_data_present(struct hwrng *rng, int wait)
553{
554 struct device *dev = (struct device *)rng->priv;
555 struct talitos_private *priv = dev_get_drvdata(dev);
556 u32 ofl;
557 int i;
558
559 for (i = 0; i < 20; i++) {
560 ofl = in_be32(priv->reg + TALITOS_RNGUSR_LO) &
561 TALITOS_RNGUSR_LO_OFL;
562 if (ofl || !wait)
563 break;
564 udelay(10);
565 }
566
567 return !!ofl;
568}
569
570static int talitos_rng_data_read(struct hwrng *rng, u32 *data)
571{
572 struct device *dev = (struct device *)rng->priv;
573 struct talitos_private *priv = dev_get_drvdata(dev);
574
575 /* rng fifo requires 64-bit accesses */
576 *data = in_be32(priv->reg + TALITOS_RNGU_FIFO);
577 *data = in_be32(priv->reg + TALITOS_RNGU_FIFO_LO);
578
579 return sizeof(u32);
580}
581
582static int talitos_rng_init(struct hwrng *rng)
583{
584 struct device *dev = (struct device *)rng->priv;
585 struct talitos_private *priv = dev_get_drvdata(dev);
586 unsigned int timeout = TALITOS_TIMEOUT;
587
588 setbits32(priv->reg + TALITOS_RNGURCR_LO, TALITOS_RNGURCR_LO_SR);
589 while (!(in_be32(priv->reg + TALITOS_RNGUSR_LO) & TALITOS_RNGUSR_LO_RD)
590 && --timeout)
591 cpu_relax();
592 if (timeout == 0) {
593 dev_err(dev, "failed to reset rng hw\n");
594 return -ENODEV;
595 }
596
597 /* start generating */
598 setbits32(priv->reg + TALITOS_RNGUDSR_LO, 0);
599
600 return 0;
601}
602
603static int talitos_register_rng(struct device *dev)
604{
605 struct talitos_private *priv = dev_get_drvdata(dev);
606
607 priv->rng.name = dev_driver_string(dev),
608 priv->rng.init = talitos_rng_init,
609 priv->rng.data_present = talitos_rng_data_present,
610 priv->rng.data_read = talitos_rng_data_read,
611 priv->rng.priv = (unsigned long)dev;
612
613 return hwrng_register(&priv->rng);
614}
615
616static void talitos_unregister_rng(struct device *dev)
617{
618 struct talitos_private *priv = dev_get_drvdata(dev);
619
620 hwrng_unregister(&priv->rng);
621}
622
623/*
624 * crypto alg
625 */
626#define TALITOS_CRA_PRIORITY 3000
Horia Geanta357fb602012-07-03 19:16:53 +0300627#define TALITOS_MAX_KEY_SIZE 96
Lee Nipper3952f172008-07-10 18:29:18 +0800628#define TALITOS_MAX_IV_LENGTH 16 /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */
Lee Nipper70bcaca2008-07-03 19:08:46 +0800629
Lee Nipper497f2e62010-05-19 19:20:36 +1000630#define MD5_BLOCK_SIZE 64
Kim Phillips9c4a7962008-06-23 19:50:15 +0800631
632struct talitos_ctx {
633 struct device *dev;
Kim Phillips5228f0f2011-07-15 11:21:38 +0800634 int ch;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800635 __be32 desc_hdr_template;
636 u8 key[TALITOS_MAX_KEY_SIZE];
Lee Nipper70bcaca2008-07-03 19:08:46 +0800637 u8 iv[TALITOS_MAX_IV_LENGTH];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800638 unsigned int keylen;
639 unsigned int enckeylen;
640 unsigned int authkeylen;
641 unsigned int authsize;
642};
643
Lee Nipper497f2e62010-05-19 19:20:36 +1000644#define HASH_MAX_BLOCK_SIZE SHA512_BLOCK_SIZE
645#define TALITOS_MDEU_MAX_CONTEXT_SIZE TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512
646
647struct talitos_ahash_req_ctx {
Kim Phillips60f208d2010-05-19 19:21:53 +1000648 u32 hw_context[TALITOS_MDEU_MAX_CONTEXT_SIZE / sizeof(u32)];
Lee Nipper497f2e62010-05-19 19:20:36 +1000649 unsigned int hw_context_size;
650 u8 buf[HASH_MAX_BLOCK_SIZE];
651 u8 bufnext[HASH_MAX_BLOCK_SIZE];
Kim Phillips60f208d2010-05-19 19:21:53 +1000652 unsigned int swinit;
Lee Nipper497f2e62010-05-19 19:20:36 +1000653 unsigned int first;
654 unsigned int last;
655 unsigned int to_hash_later;
Lee Nipper5e833bc2010-06-16 15:29:15 +1000656 u64 nbuf;
Lee Nipper497f2e62010-05-19 19:20:36 +1000657 struct scatterlist bufsl[2];
658 struct scatterlist *psrc;
659};
660
Lee Nipper56af8cd2009-03-29 15:50:50 +0800661static int aead_setauthsize(struct crypto_aead *authenc,
662 unsigned int authsize)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800663{
664 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
665
666 ctx->authsize = authsize;
667
668 return 0;
669}
670
Lee Nipper56af8cd2009-03-29 15:50:50 +0800671static int aead_setkey(struct crypto_aead *authenc,
672 const u8 *key, unsigned int keylen)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800673{
674 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
675 struct rtattr *rta = (void *)key;
676 struct crypto_authenc_key_param *param;
677 unsigned int authkeylen;
678 unsigned int enckeylen;
679
680 if (!RTA_OK(rta, keylen))
681 goto badkey;
682
683 if (rta->rta_type != CRYPTO_AUTHENC_KEYA_PARAM)
684 goto badkey;
685
686 if (RTA_PAYLOAD(rta) < sizeof(*param))
687 goto badkey;
688
689 param = RTA_DATA(rta);
690 enckeylen = be32_to_cpu(param->enckeylen);
691
692 key += RTA_ALIGN(rta->rta_len);
693 keylen -= RTA_ALIGN(rta->rta_len);
694
695 if (keylen < enckeylen)
696 goto badkey;
697
698 authkeylen = keylen - enckeylen;
699
700 if (keylen > TALITOS_MAX_KEY_SIZE)
701 goto badkey;
702
703 memcpy(&ctx->key, key, keylen);
704
705 ctx->keylen = keylen;
706 ctx->enckeylen = enckeylen;
707 ctx->authkeylen = authkeylen;
708
709 return 0;
710
711badkey:
712 crypto_aead_set_flags(authenc, CRYPTO_TFM_RES_BAD_KEY_LEN);
713 return -EINVAL;
714}
715
716/*
Lee Nipper56af8cd2009-03-29 15:50:50 +0800717 * talitos_edesc - s/w-extended descriptor
Horia Geanta79fd31d2012-08-02 17:16:40 +0300718 * @assoc_nents: number of segments in associated data scatterlist
Kim Phillips9c4a7962008-06-23 19:50:15 +0800719 * @src_nents: number of segments in input scatterlist
720 * @dst_nents: number of segments in output scatterlist
Horia Geanta79fd31d2012-08-02 17:16:40 +0300721 * @assoc_chained: whether assoc is chained or not
Horia Geanta2a1cfe42012-08-02 17:16:39 +0300722 * @src_chained: whether src is chained or not
723 * @dst_chained: whether dst is chained or not
Horia Geanta79fd31d2012-08-02 17:16:40 +0300724 * @iv_dma: dma address of iv for checking continuity and link table
Kim Phillips9c4a7962008-06-23 19:50:15 +0800725 * @dma_len: length of dma mapped link_tbl space
726 * @dma_link_tbl: bus physical address of link_tbl
727 * @desc: h/w descriptor
728 * @link_tbl: input and output h/w link tables (if {src,dst}_nents > 1)
729 *
730 * if decrypting (with authcheck), or either one of src_nents or dst_nents
731 * is greater than 1, an integrity check value is concatenated to the end
732 * of link_tbl data
733 */
Lee Nipper56af8cd2009-03-29 15:50:50 +0800734struct talitos_edesc {
Horia Geanta79fd31d2012-08-02 17:16:40 +0300735 int assoc_nents;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800736 int src_nents;
737 int dst_nents;
Horia Geanta79fd31d2012-08-02 17:16:40 +0300738 bool assoc_chained;
Horia Geanta2a1cfe42012-08-02 17:16:39 +0300739 bool src_chained;
740 bool dst_chained;
Horia Geanta79fd31d2012-08-02 17:16:40 +0300741 dma_addr_t iv_dma;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800742 int dma_len;
743 dma_addr_t dma_link_tbl;
744 struct talitos_desc desc;
745 struct talitos_ptr link_tbl[0];
746};
747
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800748static int talitos_map_sg(struct device *dev, struct scatterlist *sg,
749 unsigned int nents, enum dma_data_direction dir,
Horia Geanta2a1cfe42012-08-02 17:16:39 +0300750 bool chained)
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800751{
752 if (unlikely(chained))
753 while (sg) {
754 dma_map_sg(dev, sg, 1, dir);
755 sg = scatterwalk_sg_next(sg);
756 }
757 else
758 dma_map_sg(dev, sg, nents, dir);
759 return nents;
760}
761
762static void talitos_unmap_sg_chain(struct device *dev, struct scatterlist *sg,
763 enum dma_data_direction dir)
764{
765 while (sg) {
766 dma_unmap_sg(dev, sg, 1, dir);
767 sg = scatterwalk_sg_next(sg);
768 }
769}
770
771static void talitos_sg_unmap(struct device *dev,
772 struct talitos_edesc *edesc,
773 struct scatterlist *src,
774 struct scatterlist *dst)
775{
776 unsigned int src_nents = edesc->src_nents ? : 1;
777 unsigned int dst_nents = edesc->dst_nents ? : 1;
778
779 if (src != dst) {
Horia Geanta2a1cfe42012-08-02 17:16:39 +0300780 if (edesc->src_chained)
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800781 talitos_unmap_sg_chain(dev, src, DMA_TO_DEVICE);
782 else
783 dma_unmap_sg(dev, src, src_nents, DMA_TO_DEVICE);
784
Lee Nipper497f2e62010-05-19 19:20:36 +1000785 if (dst) {
Horia Geanta2a1cfe42012-08-02 17:16:39 +0300786 if (edesc->dst_chained)
Lee Nipper497f2e62010-05-19 19:20:36 +1000787 talitos_unmap_sg_chain(dev, dst,
788 DMA_FROM_DEVICE);
789 else
790 dma_unmap_sg(dev, dst, dst_nents,
791 DMA_FROM_DEVICE);
792 }
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800793 } else
Horia Geanta2a1cfe42012-08-02 17:16:39 +0300794 if (edesc->src_chained)
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800795 talitos_unmap_sg_chain(dev, src, DMA_BIDIRECTIONAL);
796 else
797 dma_unmap_sg(dev, src, src_nents, DMA_BIDIRECTIONAL);
798}
799
Kim Phillips9c4a7962008-06-23 19:50:15 +0800800static void ipsec_esp_unmap(struct device *dev,
Lee Nipper56af8cd2009-03-29 15:50:50 +0800801 struct talitos_edesc *edesc,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800802 struct aead_request *areq)
803{
804 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[6], DMA_FROM_DEVICE);
805 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[3], DMA_TO_DEVICE);
806 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
807 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[0], DMA_TO_DEVICE);
808
Horia Geanta79fd31d2012-08-02 17:16:40 +0300809 if (edesc->assoc_chained)
810 talitos_unmap_sg_chain(dev, areq->assoc, DMA_TO_DEVICE);
811 else
812 /* assoc_nents counts also for IV in non-contiguous cases */
813 dma_unmap_sg(dev, areq->assoc,
814 edesc->assoc_nents ? edesc->assoc_nents - 1 : 1,
815 DMA_TO_DEVICE);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800816
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800817 talitos_sg_unmap(dev, edesc, areq->src, areq->dst);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800818
819 if (edesc->dma_len)
820 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
821 DMA_BIDIRECTIONAL);
822}
823
824/*
825 * ipsec_esp descriptor callbacks
826 */
827static void ipsec_esp_encrypt_done(struct device *dev,
828 struct talitos_desc *desc, void *context,
829 int err)
830{
831 struct aead_request *areq = context;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800832 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
833 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Kim Phillips19bbbc62009-03-29 15:53:59 +0800834 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800835 struct scatterlist *sg;
836 void *icvdata;
837
Kim Phillips19bbbc62009-03-29 15:53:59 +0800838 edesc = container_of(desc, struct talitos_edesc, desc);
839
Kim Phillips9c4a7962008-06-23 19:50:15 +0800840 ipsec_esp_unmap(dev, edesc, areq);
841
842 /* copy the generated ICV to dst */
Horia Geanta60542502012-08-02 17:16:37 +0300843 if (edesc->dst_nents) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800844 icvdata = &edesc->link_tbl[edesc->src_nents +
Horia Geanta79fd31d2012-08-02 17:16:40 +0300845 edesc->dst_nents + 2 +
846 edesc->assoc_nents];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800847 sg = sg_last(areq->dst, edesc->dst_nents);
848 memcpy((char *)sg_virt(sg) + sg->length - ctx->authsize,
849 icvdata, ctx->authsize);
850 }
851
852 kfree(edesc);
853
854 aead_request_complete(areq, err);
855}
856
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800857static void ipsec_esp_decrypt_swauth_done(struct device *dev,
Kim Phillipse938e462009-03-29 15:53:23 +0800858 struct talitos_desc *desc,
859 void *context, int err)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800860{
861 struct aead_request *req = context;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800862 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
863 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Kim Phillips19bbbc62009-03-29 15:53:59 +0800864 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800865 struct scatterlist *sg;
866 void *icvdata;
867
Kim Phillips19bbbc62009-03-29 15:53:59 +0800868 edesc = container_of(desc, struct talitos_edesc, desc);
869
Kim Phillips9c4a7962008-06-23 19:50:15 +0800870 ipsec_esp_unmap(dev, edesc, req);
871
872 if (!err) {
873 /* auth check */
874 if (edesc->dma_len)
875 icvdata = &edesc->link_tbl[edesc->src_nents +
Horia Geanta79fd31d2012-08-02 17:16:40 +0300876 edesc->dst_nents + 2 +
877 edesc->assoc_nents];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800878 else
879 icvdata = &edesc->link_tbl[0];
880
881 sg = sg_last(req->dst, edesc->dst_nents ? : 1);
882 err = memcmp(icvdata, (char *)sg_virt(sg) + sg->length -
883 ctx->authsize, ctx->authsize) ? -EBADMSG : 0;
884 }
885
886 kfree(edesc);
887
888 aead_request_complete(req, err);
889}
890
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800891static void ipsec_esp_decrypt_hwauth_done(struct device *dev,
Kim Phillipse938e462009-03-29 15:53:23 +0800892 struct talitos_desc *desc,
893 void *context, int err)
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800894{
895 struct aead_request *req = context;
Kim Phillips19bbbc62009-03-29 15:53:59 +0800896 struct talitos_edesc *edesc;
897
898 edesc = container_of(desc, struct talitos_edesc, desc);
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800899
900 ipsec_esp_unmap(dev, edesc, req);
901
902 /* check ICV auth status */
Kim Phillipse938e462009-03-29 15:53:23 +0800903 if (!err && ((desc->hdr_lo & DESC_HDR_LO_ICCR1_MASK) !=
904 DESC_HDR_LO_ICCR1_PASS))
905 err = -EBADMSG;
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800906
907 kfree(edesc);
908
909 aead_request_complete(req, err);
910}
911
Kim Phillips9c4a7962008-06-23 19:50:15 +0800912/*
913 * convert scatterlist to SEC h/w link table format
914 * stop at cryptlen bytes
915 */
Lee Nipper70bcaca2008-07-03 19:08:46 +0800916static int sg_to_link_tbl(struct scatterlist *sg, int sg_count,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800917 int cryptlen, struct talitos_ptr *link_tbl_ptr)
918{
Lee Nipper70bcaca2008-07-03 19:08:46 +0800919 int n_sg = sg_count;
920
921 while (n_sg--) {
Kim Phillips81eb0242009-08-13 11:51:51 +1000922 to_talitos_ptr(link_tbl_ptr, sg_dma_address(sg));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800923 link_tbl_ptr->len = cpu_to_be16(sg_dma_len(sg));
924 link_tbl_ptr->j_extent = 0;
925 link_tbl_ptr++;
926 cryptlen -= sg_dma_len(sg);
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800927 sg = scatterwalk_sg_next(sg);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800928 }
929
Lee Nipper70bcaca2008-07-03 19:08:46 +0800930 /* adjust (decrease) last one (or two) entry's len to cryptlen */
Kim Phillips9c4a7962008-06-23 19:50:15 +0800931 link_tbl_ptr--;
Kim Phillipsc0e741d2008-07-17 20:20:59 +0800932 while (be16_to_cpu(link_tbl_ptr->len) <= (-cryptlen)) {
Lee Nipper70bcaca2008-07-03 19:08:46 +0800933 /* Empty this entry, and move to previous one */
934 cryptlen += be16_to_cpu(link_tbl_ptr->len);
935 link_tbl_ptr->len = 0;
936 sg_count--;
937 link_tbl_ptr--;
938 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800939 link_tbl_ptr->len = cpu_to_be16(be16_to_cpu(link_tbl_ptr->len)
940 + cryptlen);
941
942 /* tag end of link table */
943 link_tbl_ptr->j_extent = DESC_PTR_LNKTBL_RETURN;
Lee Nipper70bcaca2008-07-03 19:08:46 +0800944
945 return sg_count;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800946}
947
948/*
949 * fill in and submit ipsec_esp descriptor
950 */
Lee Nipper56af8cd2009-03-29 15:50:50 +0800951static int ipsec_esp(struct talitos_edesc *edesc, struct aead_request *areq,
Horia Geanta79fd31d2012-08-02 17:16:40 +0300952 u64 seq, void (*callback) (struct device *dev,
953 struct talitos_desc *desc,
954 void *context, int error))
Kim Phillips9c4a7962008-06-23 19:50:15 +0800955{
956 struct crypto_aead *aead = crypto_aead_reqtfm(areq);
957 struct talitos_ctx *ctx = crypto_aead_ctx(aead);
958 struct device *dev = ctx->dev;
959 struct talitos_desc *desc = &edesc->desc;
960 unsigned int cryptlen = areq->cryptlen;
961 unsigned int authsize = ctx->authsize;
Kim Phillipse41256f2009-08-13 11:49:06 +1000962 unsigned int ivsize = crypto_aead_ivsize(aead);
Kim Phillipsfa86a262008-07-17 20:20:06 +0800963 int sg_count, ret;
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800964 int sg_link_tbl_len;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800965
966 /* hmac key */
967 map_single_talitos_ptr(dev, &desc->ptr[0], ctx->authkeylen, &ctx->key,
968 0, DMA_TO_DEVICE);
Horia Geanta79fd31d2012-08-02 17:16:40 +0300969
Kim Phillips9c4a7962008-06-23 19:50:15 +0800970 /* hmac data */
Horia Geanta79fd31d2012-08-02 17:16:40 +0300971 desc->ptr[1].len = cpu_to_be16(areq->assoclen + ivsize);
972 if (edesc->assoc_nents) {
973 int tbl_off = edesc->src_nents + edesc->dst_nents + 2;
974 struct talitos_ptr *tbl_ptr = &edesc->link_tbl[tbl_off];
975
976 to_talitos_ptr(&desc->ptr[1], edesc->dma_link_tbl + tbl_off *
977 sizeof(struct talitos_ptr));
978 desc->ptr[1].j_extent = DESC_PTR_LNKTBL_JUMP;
979
980 /* assoc_nents - 1 entries for assoc, 1 for IV */
981 sg_count = sg_to_link_tbl(areq->assoc, edesc->assoc_nents - 1,
982 areq->assoclen, tbl_ptr);
983
984 /* add IV to link table */
985 tbl_ptr += sg_count - 1;
986 tbl_ptr->j_extent = 0;
987 tbl_ptr++;
988 to_talitos_ptr(tbl_ptr, edesc->iv_dma);
989 tbl_ptr->len = cpu_to_be16(ivsize);
990 tbl_ptr->j_extent = DESC_PTR_LNKTBL_RETURN;
991
992 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
993 edesc->dma_len, DMA_BIDIRECTIONAL);
994 } else {
995 to_talitos_ptr(&desc->ptr[1], sg_dma_address(areq->assoc));
996 desc->ptr[1].j_extent = 0;
997 }
998
Kim Phillips9c4a7962008-06-23 19:50:15 +0800999 /* cipher iv */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001000 to_talitos_ptr(&desc->ptr[2], edesc->iv_dma);
1001 desc->ptr[2].len = cpu_to_be16(ivsize);
1002 desc->ptr[2].j_extent = 0;
1003 /* Sync needed for the aead_givencrypt case */
1004 dma_sync_single_for_device(dev, edesc->iv_dma, ivsize, DMA_TO_DEVICE);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001005
1006 /* cipher key */
1007 map_single_talitos_ptr(dev, &desc->ptr[3], ctx->enckeylen,
1008 (char *)&ctx->key + ctx->authkeylen, 0,
1009 DMA_TO_DEVICE);
1010
1011 /*
1012 * cipher in
1013 * map and adjust cipher len to aead request cryptlen.
1014 * extent is bytes of HMAC postpended to ciphertext,
1015 * typically 12 for ipsec
1016 */
1017 desc->ptr[4].len = cpu_to_be16(cryptlen);
1018 desc->ptr[4].j_extent = authsize;
1019
Kim Phillipse938e462009-03-29 15:53:23 +08001020 sg_count = talitos_map_sg(dev, areq->src, edesc->src_nents ? : 1,
1021 (areq->src == areq->dst) ? DMA_BIDIRECTIONAL
1022 : DMA_TO_DEVICE,
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001023 edesc->src_chained);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001024
1025 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001026 to_talitos_ptr(&desc->ptr[4], sg_dma_address(areq->src));
Kim Phillips9c4a7962008-06-23 19:50:15 +08001027 } else {
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001028 sg_link_tbl_len = cryptlen;
1029
Kim Phillips962a9c92009-03-29 15:54:30 +08001030 if (edesc->desc.hdr & DESC_HDR_MODE1_MDEU_CICV)
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001031 sg_link_tbl_len = cryptlen + authsize;
Kim Phillipse938e462009-03-29 15:53:23 +08001032
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001033 sg_count = sg_to_link_tbl(areq->src, sg_count, sg_link_tbl_len,
Lee Nipper70bcaca2008-07-03 19:08:46 +08001034 &edesc->link_tbl[0]);
1035 if (sg_count > 1) {
1036 desc->ptr[4].j_extent |= DESC_PTR_LNKTBL_JUMP;
Kim Phillips81eb0242009-08-13 11:51:51 +10001037 to_talitos_ptr(&desc->ptr[4], edesc->dma_link_tbl);
Kim Phillipse938e462009-03-29 15:53:23 +08001038 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
1039 edesc->dma_len,
1040 DMA_BIDIRECTIONAL);
Lee Nipper70bcaca2008-07-03 19:08:46 +08001041 } else {
1042 /* Only one segment now, so no link tbl needed */
Kim Phillips81eb0242009-08-13 11:51:51 +10001043 to_talitos_ptr(&desc->ptr[4],
1044 sg_dma_address(areq->src));
Lee Nipper70bcaca2008-07-03 19:08:46 +08001045 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001046 }
1047
1048 /* cipher out */
1049 desc->ptr[5].len = cpu_to_be16(cryptlen);
1050 desc->ptr[5].j_extent = authsize;
1051
Kim Phillipse938e462009-03-29 15:53:23 +08001052 if (areq->src != areq->dst)
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001053 sg_count = talitos_map_sg(dev, areq->dst,
1054 edesc->dst_nents ? : 1,
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001055 DMA_FROM_DEVICE, edesc->dst_chained);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001056
1057 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001058 to_talitos_ptr(&desc->ptr[5], sg_dma_address(areq->dst));
Kim Phillips9c4a7962008-06-23 19:50:15 +08001059 } else {
Horia Geanta79fd31d2012-08-02 17:16:40 +03001060 int tbl_off = edesc->src_nents + 1;
1061 struct talitos_ptr *tbl_ptr = &edesc->link_tbl[tbl_off];
Kim Phillips9c4a7962008-06-23 19:50:15 +08001062
Kim Phillips81eb0242009-08-13 11:51:51 +10001063 to_talitos_ptr(&desc->ptr[5], edesc->dma_link_tbl +
Horia Geanta79fd31d2012-08-02 17:16:40 +03001064 tbl_off * sizeof(struct talitos_ptr));
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001065 sg_count = sg_to_link_tbl(areq->dst, sg_count, cryptlen,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001066 tbl_ptr);
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001067
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001068 /* Add an entry to the link table for ICV data */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001069 tbl_ptr += sg_count - 1;
1070 tbl_ptr->j_extent = 0;
1071 tbl_ptr++;
1072 tbl_ptr->j_extent = DESC_PTR_LNKTBL_RETURN;
1073 tbl_ptr->len = cpu_to_be16(authsize);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001074
1075 /* icv data follows link tables */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001076 to_talitos_ptr(tbl_ptr, edesc->dma_link_tbl +
1077 (tbl_off + edesc->dst_nents + 1 +
1078 edesc->assoc_nents) *
Kim Phillips81eb0242009-08-13 11:51:51 +10001079 sizeof(struct talitos_ptr));
Kim Phillips9c4a7962008-06-23 19:50:15 +08001080 desc->ptr[5].j_extent |= DESC_PTR_LNKTBL_JUMP;
1081 dma_sync_single_for_device(ctx->dev, edesc->dma_link_tbl,
1082 edesc->dma_len, DMA_BIDIRECTIONAL);
1083 }
1084
1085 /* iv out */
1086 map_single_talitos_ptr(dev, &desc->ptr[6], ivsize, ctx->iv, 0,
1087 DMA_FROM_DEVICE);
1088
Kim Phillips5228f0f2011-07-15 11:21:38 +08001089 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Kim Phillipsfa86a262008-07-17 20:20:06 +08001090 if (ret != -EINPROGRESS) {
1091 ipsec_esp_unmap(dev, edesc, areq);
1092 kfree(edesc);
1093 }
1094 return ret;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001095}
1096
Kim Phillips9c4a7962008-06-23 19:50:15 +08001097/*
1098 * derive number of elements in scatterlist
1099 */
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001100static int sg_count(struct scatterlist *sg_list, int nbytes, bool *chained)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001101{
1102 struct scatterlist *sg = sg_list;
1103 int sg_nents = 0;
1104
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001105 *chained = false;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001106 while (nbytes > 0) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08001107 sg_nents++;
1108 nbytes -= sg->length;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001109 if (!sg_is_last(sg) && (sg + 1)->length == 0)
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001110 *chained = true;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001111 sg = scatterwalk_sg_next(sg);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001112 }
1113
1114 return sg_nents;
1115}
1116
Lee Nipper497f2e62010-05-19 19:20:36 +10001117/**
1118 * sg_copy_end_to_buffer - Copy end data from SG list to a linear buffer
1119 * @sgl: The SG list
1120 * @nents: Number of SG entries
1121 * @buf: Where to copy to
1122 * @buflen: The number of bytes to copy
1123 * @skip: The number of bytes to skip before copying.
1124 * Note: skip + buflen should equal SG total size.
1125 *
1126 * Returns the number of copied bytes.
1127 *
1128 **/
1129static size_t sg_copy_end_to_buffer(struct scatterlist *sgl, unsigned int nents,
1130 void *buf, size_t buflen, unsigned int skip)
1131{
1132 unsigned int offset = 0;
1133 unsigned int boffset = 0;
1134 struct sg_mapping_iter miter;
1135 unsigned long flags;
1136 unsigned int sg_flags = SG_MITER_ATOMIC;
1137 size_t total_buffer = buflen + skip;
1138
1139 sg_flags |= SG_MITER_FROM_SG;
1140
1141 sg_miter_start(&miter, sgl, nents, sg_flags);
1142
1143 local_irq_save(flags);
1144
1145 while (sg_miter_next(&miter) && offset < total_buffer) {
1146 unsigned int len;
1147 unsigned int ignore;
1148
1149 if ((offset + miter.length) > skip) {
1150 if (offset < skip) {
1151 /* Copy part of this segment */
1152 ignore = skip - offset;
1153 len = miter.length - ignore;
Lee Nipper72600422010-07-19 14:11:24 +08001154 if (boffset + len > buflen)
1155 len = buflen - boffset;
Lee Nipper497f2e62010-05-19 19:20:36 +10001156 memcpy(buf + boffset, miter.addr + ignore, len);
1157 } else {
Lee Nipper72600422010-07-19 14:11:24 +08001158 /* Copy all of this segment (up to buflen) */
Lee Nipper497f2e62010-05-19 19:20:36 +10001159 len = miter.length;
Lee Nipper72600422010-07-19 14:11:24 +08001160 if (boffset + len > buflen)
1161 len = buflen - boffset;
Lee Nipper497f2e62010-05-19 19:20:36 +10001162 memcpy(buf + boffset, miter.addr, len);
1163 }
1164 boffset += len;
1165 }
1166 offset += miter.length;
1167 }
1168
1169 sg_miter_stop(&miter);
1170
1171 local_irq_restore(flags);
1172 return boffset;
1173}
1174
Kim Phillips9c4a7962008-06-23 19:50:15 +08001175/*
Lee Nipper56af8cd2009-03-29 15:50:50 +08001176 * allocate and map the extended descriptor
Kim Phillips9c4a7962008-06-23 19:50:15 +08001177 */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001178static struct talitos_edesc *talitos_edesc_alloc(struct device *dev,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001179 struct scatterlist *assoc,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001180 struct scatterlist *src,
1181 struct scatterlist *dst,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001182 u8 *iv,
1183 unsigned int assoclen,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001184 unsigned int cryptlen,
1185 unsigned int authsize,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001186 unsigned int ivsize,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001187 int icv_stashing,
1188 u32 cryptoflags)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001189{
Lee Nipper56af8cd2009-03-29 15:50:50 +08001190 struct talitos_edesc *edesc;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001191 int assoc_nents = 0, src_nents, dst_nents, alloc_len, dma_len;
1192 bool assoc_chained = false, src_chained = false, dst_chained = false;
1193 dma_addr_t iv_dma = 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001194 gfp_t flags = cryptoflags & CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL :
Kim Phillips586725f2008-07-17 20:19:18 +08001195 GFP_ATOMIC;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001196
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001197 if (cryptlen + authsize > TALITOS_MAX_DATA_LEN) {
1198 dev_err(dev, "length exceeds h/w max limit\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08001199 return ERR_PTR(-EINVAL);
1200 }
1201
Horia Geanta79fd31d2012-08-02 17:16:40 +03001202 if (iv)
1203 iv_dma = dma_map_single(dev, iv, ivsize, DMA_TO_DEVICE);
1204
1205 if (assoc) {
1206 /*
1207 * Currently it is assumed that iv is provided whenever assoc
1208 * is.
1209 */
1210 BUG_ON(!iv);
1211
1212 assoc_nents = sg_count(assoc, assoclen, &assoc_chained);
1213 talitos_map_sg(dev, assoc, assoc_nents, DMA_TO_DEVICE,
1214 assoc_chained);
1215 assoc_nents = (assoc_nents == 1) ? 0 : assoc_nents;
1216
1217 if (assoc_nents || sg_dma_address(assoc) + assoclen != iv_dma)
1218 assoc_nents = assoc_nents ? assoc_nents + 1 : 2;
1219 }
1220
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001221 src_nents = sg_count(src, cryptlen + authsize, &src_chained);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001222 src_nents = (src_nents == 1) ? 0 : src_nents;
1223
Horia Geanta602499a2012-08-02 17:16:38 +03001224 if (!dst) {
Lee Nipper497f2e62010-05-19 19:20:36 +10001225 dst_nents = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001226 } else {
Lee Nipper497f2e62010-05-19 19:20:36 +10001227 if (dst == src) {
1228 dst_nents = src_nents;
1229 } else {
1230 dst_nents = sg_count(dst, cryptlen + authsize,
1231 &dst_chained);
1232 dst_nents = (dst_nents == 1) ? 0 : dst_nents;
1233 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001234 }
1235
1236 /*
1237 * allocate space for base edesc plus the link tables,
Lee Nipperf3c85bc2008-07-30 16:26:57 +08001238 * allowing for two separate entries for ICV and generated ICV (+ 2),
Kim Phillips9c4a7962008-06-23 19:50:15 +08001239 * and the ICV data itself
1240 */
Lee Nipper56af8cd2009-03-29 15:50:50 +08001241 alloc_len = sizeof(struct talitos_edesc);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001242 if (assoc_nents || src_nents || dst_nents) {
1243 dma_len = (src_nents + dst_nents + 2 + assoc_nents) *
1244 sizeof(struct talitos_ptr) + authsize;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001245 alloc_len += dma_len;
1246 } else {
1247 dma_len = 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001248 alloc_len += icv_stashing ? authsize : 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001249 }
1250
Kim Phillips586725f2008-07-17 20:19:18 +08001251 edesc = kmalloc(alloc_len, GFP_DMA | flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001252 if (!edesc) {
Horia Geanta79fd31d2012-08-02 17:16:40 +03001253 talitos_unmap_sg_chain(dev, assoc, DMA_TO_DEVICE);
1254 if (iv_dma)
1255 dma_unmap_single(dev, iv_dma, ivsize, DMA_TO_DEVICE);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001256 dev_err(dev, "could not allocate edescriptor\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08001257 return ERR_PTR(-ENOMEM);
1258 }
1259
Horia Geanta79fd31d2012-08-02 17:16:40 +03001260 edesc->assoc_nents = assoc_nents;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001261 edesc->src_nents = src_nents;
1262 edesc->dst_nents = dst_nents;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001263 edesc->assoc_chained = assoc_chained;
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001264 edesc->src_chained = src_chained;
1265 edesc->dst_chained = dst_chained;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001266 edesc->iv_dma = iv_dma;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001267 edesc->dma_len = dma_len;
Lee Nipper497f2e62010-05-19 19:20:36 +10001268 if (dma_len)
1269 edesc->dma_link_tbl = dma_map_single(dev, &edesc->link_tbl[0],
1270 edesc->dma_len,
1271 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001272
1273 return edesc;
1274}
1275
Horia Geanta79fd31d2012-08-02 17:16:40 +03001276static struct talitos_edesc *aead_edesc_alloc(struct aead_request *areq, u8 *iv,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001277 int icv_stashing)
1278{
1279 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
1280 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001281 unsigned int ivsize = crypto_aead_ivsize(authenc);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001282
Horia Geanta79fd31d2012-08-02 17:16:40 +03001283 return talitos_edesc_alloc(ctx->dev, areq->assoc, areq->src, areq->dst,
1284 iv, areq->assoclen, areq->cryptlen,
1285 ctx->authsize, ivsize, icv_stashing,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001286 areq->base.flags);
1287}
1288
Lee Nipper56af8cd2009-03-29 15:50:50 +08001289static int aead_encrypt(struct aead_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001290{
1291 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
1292 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001293 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001294
1295 /* allocate extended descriptor */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001296 edesc = aead_edesc_alloc(req, req->iv, 0);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001297 if (IS_ERR(edesc))
1298 return PTR_ERR(edesc);
1299
1300 /* set encrypt */
Lee Nipper70bcaca2008-07-03 19:08:46 +08001301 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001302
Horia Geanta79fd31d2012-08-02 17:16:40 +03001303 return ipsec_esp(edesc, req, 0, ipsec_esp_encrypt_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001304}
1305
Lee Nipper56af8cd2009-03-29 15:50:50 +08001306static int aead_decrypt(struct aead_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001307{
1308 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
1309 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
1310 unsigned int authsize = ctx->authsize;
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001311 struct talitos_private *priv = dev_get_drvdata(ctx->dev);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001312 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001313 struct scatterlist *sg;
1314 void *icvdata;
1315
1316 req->cryptlen -= authsize;
1317
1318 /* allocate extended descriptor */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001319 edesc = aead_edesc_alloc(req, req->iv, 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001320 if (IS_ERR(edesc))
1321 return PTR_ERR(edesc);
1322
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001323 if ((priv->features & TALITOS_FTR_HW_AUTH_CHECK) &&
Kim Phillipse938e462009-03-29 15:53:23 +08001324 ((!edesc->src_nents && !edesc->dst_nents) ||
1325 priv->features & TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT)) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08001326
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001327 /* decrypt and check the ICV */
Kim Phillipse938e462009-03-29 15:53:23 +08001328 edesc->desc.hdr = ctx->desc_hdr_template |
1329 DESC_HDR_DIR_INBOUND |
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001330 DESC_HDR_MODE1_MDEU_CICV;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001331
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001332 /* reset integrity check result bits */
1333 edesc->desc.hdr_lo = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001334
Horia Geanta79fd31d2012-08-02 17:16:40 +03001335 return ipsec_esp(edesc, req, 0, ipsec_esp_decrypt_hwauth_done);
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001336 }
Kim Phillipse938e462009-03-29 15:53:23 +08001337
1338 /* Have to check the ICV with software */
1339 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1340
1341 /* stash incoming ICV for later cmp with ICV generated by the h/w */
1342 if (edesc->dma_len)
1343 icvdata = &edesc->link_tbl[edesc->src_nents +
Horia Geanta79fd31d2012-08-02 17:16:40 +03001344 edesc->dst_nents + 2 +
1345 edesc->assoc_nents];
Kim Phillipse938e462009-03-29 15:53:23 +08001346 else
1347 icvdata = &edesc->link_tbl[0];
1348
1349 sg = sg_last(req->src, edesc->src_nents ? : 1);
1350
1351 memcpy(icvdata, (char *)sg_virt(sg) + sg->length - ctx->authsize,
1352 ctx->authsize);
1353
Horia Geanta79fd31d2012-08-02 17:16:40 +03001354 return ipsec_esp(edesc, req, 0, ipsec_esp_decrypt_swauth_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001355}
1356
Lee Nipper56af8cd2009-03-29 15:50:50 +08001357static int aead_givencrypt(struct aead_givcrypt_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001358{
1359 struct aead_request *areq = &req->areq;
1360 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
1361 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001362 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001363
1364 /* allocate extended descriptor */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001365 edesc = aead_edesc_alloc(areq, req->giv, 0);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001366 if (IS_ERR(edesc))
1367 return PTR_ERR(edesc);
1368
1369 /* set encrypt */
Lee Nipper70bcaca2008-07-03 19:08:46 +08001370 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001371
1372 memcpy(req->giv, ctx->iv, crypto_aead_ivsize(authenc));
Kim Phillipsba954872008-09-14 13:41:19 -07001373 /* avoid consecutive packets going out with same IV */
1374 *(__be64 *)req->giv ^= cpu_to_be64(req->seq);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001375
Horia Geanta79fd31d2012-08-02 17:16:40 +03001376 return ipsec_esp(edesc, areq, req->seq, ipsec_esp_encrypt_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001377}
1378
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001379static int ablkcipher_setkey(struct crypto_ablkcipher *cipher,
1380 const u8 *key, unsigned int keylen)
1381{
1382 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001383
1384 memcpy(&ctx->key, key, keylen);
1385 ctx->keylen = keylen;
1386
1387 return 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001388}
1389
1390static void common_nonsnoop_unmap(struct device *dev,
1391 struct talitos_edesc *edesc,
1392 struct ablkcipher_request *areq)
1393{
1394 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
1395 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
1396 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1], DMA_TO_DEVICE);
1397
1398 talitos_sg_unmap(dev, edesc, areq->src, areq->dst);
1399
1400 if (edesc->dma_len)
1401 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
1402 DMA_BIDIRECTIONAL);
1403}
1404
1405static void ablkcipher_done(struct device *dev,
1406 struct talitos_desc *desc, void *context,
1407 int err)
1408{
1409 struct ablkcipher_request *areq = context;
Kim Phillips19bbbc62009-03-29 15:53:59 +08001410 struct talitos_edesc *edesc;
1411
1412 edesc = container_of(desc, struct talitos_edesc, desc);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001413
1414 common_nonsnoop_unmap(dev, edesc, areq);
1415
1416 kfree(edesc);
1417
1418 areq->base.complete(&areq->base, err);
1419}
1420
1421static int common_nonsnoop(struct talitos_edesc *edesc,
1422 struct ablkcipher_request *areq,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001423 void (*callback) (struct device *dev,
1424 struct talitos_desc *desc,
1425 void *context, int error))
1426{
1427 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1428 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1429 struct device *dev = ctx->dev;
1430 struct talitos_desc *desc = &edesc->desc;
1431 unsigned int cryptlen = areq->nbytes;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001432 unsigned int ivsize = crypto_ablkcipher_ivsize(cipher);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001433 int sg_count, ret;
1434
1435 /* first DWORD empty */
1436 desc->ptr[0].len = 0;
Kim Phillips81eb0242009-08-13 11:51:51 +10001437 to_talitos_ptr(&desc->ptr[0], 0);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001438 desc->ptr[0].j_extent = 0;
1439
1440 /* cipher iv */
Horia Geanta79fd31d2012-08-02 17:16:40 +03001441 to_talitos_ptr(&desc->ptr[1], edesc->iv_dma);
1442 desc->ptr[1].len = cpu_to_be16(ivsize);
1443 desc->ptr[1].j_extent = 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001444
1445 /* cipher key */
1446 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
1447 (char *)&ctx->key, 0, DMA_TO_DEVICE);
1448
1449 /*
1450 * cipher in
1451 */
1452 desc->ptr[3].len = cpu_to_be16(cryptlen);
1453 desc->ptr[3].j_extent = 0;
1454
1455 sg_count = talitos_map_sg(dev, areq->src, edesc->src_nents ? : 1,
1456 (areq->src == areq->dst) ? DMA_BIDIRECTIONAL
1457 : DMA_TO_DEVICE,
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001458 edesc->src_chained);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001459
1460 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001461 to_talitos_ptr(&desc->ptr[3], sg_dma_address(areq->src));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001462 } else {
1463 sg_count = sg_to_link_tbl(areq->src, sg_count, cryptlen,
1464 &edesc->link_tbl[0]);
1465 if (sg_count > 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001466 to_talitos_ptr(&desc->ptr[3], edesc->dma_link_tbl);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001467 desc->ptr[3].j_extent |= DESC_PTR_LNKTBL_JUMP;
Kim Phillipse938e462009-03-29 15:53:23 +08001468 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
1469 edesc->dma_len,
1470 DMA_BIDIRECTIONAL);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001471 } else {
1472 /* Only one segment now, so no link tbl needed */
Kim Phillips81eb0242009-08-13 11:51:51 +10001473 to_talitos_ptr(&desc->ptr[3],
1474 sg_dma_address(areq->src));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001475 }
1476 }
1477
1478 /* cipher out */
1479 desc->ptr[4].len = cpu_to_be16(cryptlen);
1480 desc->ptr[4].j_extent = 0;
1481
1482 if (areq->src != areq->dst)
1483 sg_count = talitos_map_sg(dev, areq->dst,
1484 edesc->dst_nents ? : 1,
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001485 DMA_FROM_DEVICE, edesc->dst_chained);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001486
1487 if (sg_count == 1) {
Kim Phillips81eb0242009-08-13 11:51:51 +10001488 to_talitos_ptr(&desc->ptr[4], sg_dma_address(areq->dst));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001489 } else {
1490 struct talitos_ptr *link_tbl_ptr =
1491 &edesc->link_tbl[edesc->src_nents + 1];
1492
Kim Phillips81eb0242009-08-13 11:51:51 +10001493 to_talitos_ptr(&desc->ptr[4], edesc->dma_link_tbl +
1494 (edesc->src_nents + 1) *
1495 sizeof(struct talitos_ptr));
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001496 desc->ptr[4].j_extent |= DESC_PTR_LNKTBL_JUMP;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001497 sg_count = sg_to_link_tbl(areq->dst, sg_count, cryptlen,
1498 link_tbl_ptr);
1499 dma_sync_single_for_device(ctx->dev, edesc->dma_link_tbl,
1500 edesc->dma_len, DMA_BIDIRECTIONAL);
1501 }
1502
1503 /* iv out */
1504 map_single_talitos_ptr(dev, &desc->ptr[5], ivsize, ctx->iv, 0,
1505 DMA_FROM_DEVICE);
1506
1507 /* last DWORD empty */
1508 desc->ptr[6].len = 0;
Kim Phillips81eb0242009-08-13 11:51:51 +10001509 to_talitos_ptr(&desc->ptr[6], 0);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001510 desc->ptr[6].j_extent = 0;
1511
Kim Phillips5228f0f2011-07-15 11:21:38 +08001512 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001513 if (ret != -EINPROGRESS) {
1514 common_nonsnoop_unmap(dev, edesc, areq);
1515 kfree(edesc);
1516 }
1517 return ret;
1518}
1519
Kim Phillipse938e462009-03-29 15:53:23 +08001520static struct talitos_edesc *ablkcipher_edesc_alloc(struct ablkcipher_request *
1521 areq)
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001522{
1523 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1524 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001525 unsigned int ivsize = crypto_ablkcipher_ivsize(cipher);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001526
Horia Geanta79fd31d2012-08-02 17:16:40 +03001527 return talitos_edesc_alloc(ctx->dev, NULL, areq->src, areq->dst,
1528 areq->info, 0, areq->nbytes, 0, ivsize, 0,
1529 areq->base.flags);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001530}
1531
1532static int ablkcipher_encrypt(struct ablkcipher_request *areq)
1533{
1534 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1535 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1536 struct talitos_edesc *edesc;
1537
1538 /* allocate extended descriptor */
1539 edesc = ablkcipher_edesc_alloc(areq);
1540 if (IS_ERR(edesc))
1541 return PTR_ERR(edesc);
1542
1543 /* set encrypt */
1544 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
1545
Kim Phillipsfebec542011-07-15 11:21:39 +08001546 return common_nonsnoop(edesc, areq, ablkcipher_done);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001547}
1548
1549static int ablkcipher_decrypt(struct ablkcipher_request *areq)
1550{
1551 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1552 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1553 struct talitos_edesc *edesc;
1554
1555 /* allocate extended descriptor */
1556 edesc = ablkcipher_edesc_alloc(areq);
1557 if (IS_ERR(edesc))
1558 return PTR_ERR(edesc);
1559
1560 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1561
Kim Phillipsfebec542011-07-15 11:21:39 +08001562 return common_nonsnoop(edesc, areq, ablkcipher_done);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001563}
1564
Lee Nipper497f2e62010-05-19 19:20:36 +10001565static void common_nonsnoop_hash_unmap(struct device *dev,
1566 struct talitos_edesc *edesc,
1567 struct ahash_request *areq)
1568{
1569 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1570
1571 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
1572
1573 /* When using hashctx-in, must unmap it. */
1574 if (edesc->desc.ptr[1].len)
1575 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1],
1576 DMA_TO_DEVICE);
1577
1578 if (edesc->desc.ptr[2].len)
1579 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2],
1580 DMA_TO_DEVICE);
1581
1582 talitos_sg_unmap(dev, edesc, req_ctx->psrc, NULL);
1583
1584 if (edesc->dma_len)
1585 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
1586 DMA_BIDIRECTIONAL);
1587
1588}
1589
1590static void ahash_done(struct device *dev,
1591 struct talitos_desc *desc, void *context,
1592 int err)
1593{
1594 struct ahash_request *areq = context;
1595 struct talitos_edesc *edesc =
1596 container_of(desc, struct talitos_edesc, desc);
1597 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1598
1599 if (!req_ctx->last && req_ctx->to_hash_later) {
1600 /* Position any partial block for next update/final/finup */
1601 memcpy(req_ctx->buf, req_ctx->bufnext, req_ctx->to_hash_later);
Lee Nipper5e833bc2010-06-16 15:29:15 +10001602 req_ctx->nbuf = req_ctx->to_hash_later;
Lee Nipper497f2e62010-05-19 19:20:36 +10001603 }
1604 common_nonsnoop_hash_unmap(dev, edesc, areq);
1605
1606 kfree(edesc);
1607
1608 areq->base.complete(&areq->base, err);
1609}
1610
1611static int common_nonsnoop_hash(struct talitos_edesc *edesc,
1612 struct ahash_request *areq, unsigned int length,
1613 void (*callback) (struct device *dev,
1614 struct talitos_desc *desc,
1615 void *context, int error))
1616{
1617 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1618 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1619 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1620 struct device *dev = ctx->dev;
1621 struct talitos_desc *desc = &edesc->desc;
1622 int sg_count, ret;
1623
1624 /* first DWORD empty */
1625 desc->ptr[0] = zero_entry;
1626
Kim Phillips60f208d2010-05-19 19:21:53 +10001627 /* hash context in */
1628 if (!req_ctx->first || req_ctx->swinit) {
Lee Nipper497f2e62010-05-19 19:20:36 +10001629 map_single_talitos_ptr(dev, &desc->ptr[1],
1630 req_ctx->hw_context_size,
1631 (char *)req_ctx->hw_context, 0,
1632 DMA_TO_DEVICE);
Kim Phillips60f208d2010-05-19 19:21:53 +10001633 req_ctx->swinit = 0;
Lee Nipper497f2e62010-05-19 19:20:36 +10001634 } else {
1635 desc->ptr[1] = zero_entry;
1636 /* Indicate next op is not the first. */
1637 req_ctx->first = 0;
1638 }
1639
1640 /* HMAC key */
1641 if (ctx->keylen)
1642 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
1643 (char *)&ctx->key, 0, DMA_TO_DEVICE);
1644 else
1645 desc->ptr[2] = zero_entry;
1646
1647 /*
1648 * data in
1649 */
1650 desc->ptr[3].len = cpu_to_be16(length);
1651 desc->ptr[3].j_extent = 0;
1652
1653 sg_count = talitos_map_sg(dev, req_ctx->psrc,
1654 edesc->src_nents ? : 1,
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001655 DMA_TO_DEVICE, edesc->src_chained);
Lee Nipper497f2e62010-05-19 19:20:36 +10001656
1657 if (sg_count == 1) {
1658 to_talitos_ptr(&desc->ptr[3], sg_dma_address(req_ctx->psrc));
1659 } else {
1660 sg_count = sg_to_link_tbl(req_ctx->psrc, sg_count, length,
1661 &edesc->link_tbl[0]);
1662 if (sg_count > 1) {
1663 desc->ptr[3].j_extent |= DESC_PTR_LNKTBL_JUMP;
1664 to_talitos_ptr(&desc->ptr[3], edesc->dma_link_tbl);
1665 dma_sync_single_for_device(ctx->dev,
1666 edesc->dma_link_tbl,
1667 edesc->dma_len,
1668 DMA_BIDIRECTIONAL);
1669 } else {
1670 /* Only one segment now, so no link tbl needed */
1671 to_talitos_ptr(&desc->ptr[3],
1672 sg_dma_address(req_ctx->psrc));
1673 }
1674 }
1675
1676 /* fifth DWORD empty */
1677 desc->ptr[4] = zero_entry;
1678
1679 /* hash/HMAC out -or- hash context out */
1680 if (req_ctx->last)
1681 map_single_talitos_ptr(dev, &desc->ptr[5],
1682 crypto_ahash_digestsize(tfm),
1683 areq->result, 0, DMA_FROM_DEVICE);
1684 else
1685 map_single_talitos_ptr(dev, &desc->ptr[5],
1686 req_ctx->hw_context_size,
1687 req_ctx->hw_context, 0, DMA_FROM_DEVICE);
1688
1689 /* last DWORD empty */
1690 desc->ptr[6] = zero_entry;
1691
Kim Phillips5228f0f2011-07-15 11:21:38 +08001692 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001693 if (ret != -EINPROGRESS) {
1694 common_nonsnoop_hash_unmap(dev, edesc, areq);
1695 kfree(edesc);
1696 }
1697 return ret;
1698}
1699
1700static struct talitos_edesc *ahash_edesc_alloc(struct ahash_request *areq,
1701 unsigned int nbytes)
1702{
1703 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1704 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1705 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1706
Horia Geanta79fd31d2012-08-02 17:16:40 +03001707 return talitos_edesc_alloc(ctx->dev, NULL, req_ctx->psrc, NULL, NULL, 0,
1708 nbytes, 0, 0, 0, areq->base.flags);
Lee Nipper497f2e62010-05-19 19:20:36 +10001709}
1710
1711static int ahash_init(struct ahash_request *areq)
1712{
1713 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1714 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1715
1716 /* Initialize the context */
Lee Nipper5e833bc2010-06-16 15:29:15 +10001717 req_ctx->nbuf = 0;
Kim Phillips60f208d2010-05-19 19:21:53 +10001718 req_ctx->first = 1; /* first indicates h/w must init its context */
1719 req_ctx->swinit = 0; /* assume h/w init of context */
Lee Nipper497f2e62010-05-19 19:20:36 +10001720 req_ctx->hw_context_size =
1721 (crypto_ahash_digestsize(tfm) <= SHA256_DIGEST_SIZE)
1722 ? TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256
1723 : TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512;
1724
1725 return 0;
1726}
1727
Kim Phillips60f208d2010-05-19 19:21:53 +10001728/*
1729 * on h/w without explicit sha224 support, we initialize h/w context
1730 * manually with sha224 constants, and tell it to run sha256.
1731 */
1732static int ahash_init_sha224_swinit(struct ahash_request *areq)
1733{
1734 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1735
1736 ahash_init(areq);
1737 req_ctx->swinit = 1;/* prevent h/w initting context with sha256 values*/
1738
Kim Phillipsa7524472010-09-23 15:56:38 +08001739 req_ctx->hw_context[0] = SHA224_H0;
1740 req_ctx->hw_context[1] = SHA224_H1;
1741 req_ctx->hw_context[2] = SHA224_H2;
1742 req_ctx->hw_context[3] = SHA224_H3;
1743 req_ctx->hw_context[4] = SHA224_H4;
1744 req_ctx->hw_context[5] = SHA224_H5;
1745 req_ctx->hw_context[6] = SHA224_H6;
1746 req_ctx->hw_context[7] = SHA224_H7;
Kim Phillips60f208d2010-05-19 19:21:53 +10001747
1748 /* init 64-bit count */
1749 req_ctx->hw_context[8] = 0;
1750 req_ctx->hw_context[9] = 0;
1751
1752 return 0;
1753}
1754
Lee Nipper497f2e62010-05-19 19:20:36 +10001755static int ahash_process_req(struct ahash_request *areq, unsigned int nbytes)
1756{
1757 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1758 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1759 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1760 struct talitos_edesc *edesc;
1761 unsigned int blocksize =
1762 crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
1763 unsigned int nbytes_to_hash;
1764 unsigned int to_hash_later;
Lee Nipper5e833bc2010-06-16 15:29:15 +10001765 unsigned int nsg;
Horia Geanta2a1cfe42012-08-02 17:16:39 +03001766 bool chained;
Lee Nipper497f2e62010-05-19 19:20:36 +10001767
Lee Nipper5e833bc2010-06-16 15:29:15 +10001768 if (!req_ctx->last && (nbytes + req_ctx->nbuf <= blocksize)) {
1769 /* Buffer up to one whole block */
Lee Nipper497f2e62010-05-19 19:20:36 +10001770 sg_copy_to_buffer(areq->src,
1771 sg_count(areq->src, nbytes, &chained),
Lee Nipper5e833bc2010-06-16 15:29:15 +10001772 req_ctx->buf + req_ctx->nbuf, nbytes);
1773 req_ctx->nbuf += nbytes;
Lee Nipper497f2e62010-05-19 19:20:36 +10001774 return 0;
1775 }
1776
Lee Nipper5e833bc2010-06-16 15:29:15 +10001777 /* At least (blocksize + 1) bytes are available to hash */
1778 nbytes_to_hash = nbytes + req_ctx->nbuf;
1779 to_hash_later = nbytes_to_hash & (blocksize - 1);
1780
1781 if (req_ctx->last)
1782 to_hash_later = 0;
1783 else if (to_hash_later)
1784 /* There is a partial block. Hash the full block(s) now */
1785 nbytes_to_hash -= to_hash_later;
1786 else {
1787 /* Keep one block buffered */
1788 nbytes_to_hash -= blocksize;
1789 to_hash_later = blocksize;
1790 }
1791
1792 /* Chain in any previously buffered data */
1793 if (req_ctx->nbuf) {
1794 nsg = (req_ctx->nbuf < nbytes_to_hash) ? 2 : 1;
1795 sg_init_table(req_ctx->bufsl, nsg);
1796 sg_set_buf(req_ctx->bufsl, req_ctx->buf, req_ctx->nbuf);
1797 if (nsg > 1)
1798 scatterwalk_sg_chain(req_ctx->bufsl, 2, areq->src);
Lee Nipper497f2e62010-05-19 19:20:36 +10001799 req_ctx->psrc = req_ctx->bufsl;
Lee Nipper5e833bc2010-06-16 15:29:15 +10001800 } else
Lee Nipper497f2e62010-05-19 19:20:36 +10001801 req_ctx->psrc = areq->src;
Lee Nipper497f2e62010-05-19 19:20:36 +10001802
Lee Nipper5e833bc2010-06-16 15:29:15 +10001803 if (to_hash_later) {
1804 int nents = sg_count(areq->src, nbytes, &chained);
1805 sg_copy_end_to_buffer(areq->src, nents,
1806 req_ctx->bufnext,
1807 to_hash_later,
1808 nbytes - to_hash_later);
Lee Nipper497f2e62010-05-19 19:20:36 +10001809 }
Lee Nipper5e833bc2010-06-16 15:29:15 +10001810 req_ctx->to_hash_later = to_hash_later;
Lee Nipper497f2e62010-05-19 19:20:36 +10001811
Lee Nipper5e833bc2010-06-16 15:29:15 +10001812 /* Allocate extended descriptor */
Lee Nipper497f2e62010-05-19 19:20:36 +10001813 edesc = ahash_edesc_alloc(areq, nbytes_to_hash);
1814 if (IS_ERR(edesc))
1815 return PTR_ERR(edesc);
1816
1817 edesc->desc.hdr = ctx->desc_hdr_template;
1818
1819 /* On last one, request SEC to pad; otherwise continue */
1820 if (req_ctx->last)
1821 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_PAD;
1822 else
1823 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_CONT;
1824
Kim Phillips60f208d2010-05-19 19:21:53 +10001825 /* request SEC to INIT hash. */
1826 if (req_ctx->first && !req_ctx->swinit)
Lee Nipper497f2e62010-05-19 19:20:36 +10001827 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_INIT;
1828
1829 /* When the tfm context has a keylen, it's an HMAC.
1830 * A first or last (ie. not middle) descriptor must request HMAC.
1831 */
1832 if (ctx->keylen && (req_ctx->first || req_ctx->last))
1833 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_HMAC;
1834
1835 return common_nonsnoop_hash(edesc, areq, nbytes_to_hash,
1836 ahash_done);
1837}
1838
1839static int ahash_update(struct ahash_request *areq)
1840{
1841 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1842
1843 req_ctx->last = 0;
1844
1845 return ahash_process_req(areq, areq->nbytes);
1846}
1847
1848static int ahash_final(struct ahash_request *areq)
1849{
1850 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1851
1852 req_ctx->last = 1;
1853
1854 return ahash_process_req(areq, 0);
1855}
1856
1857static int ahash_finup(struct ahash_request *areq)
1858{
1859 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1860
1861 req_ctx->last = 1;
1862
1863 return ahash_process_req(areq, areq->nbytes);
1864}
1865
1866static int ahash_digest(struct ahash_request *areq)
1867{
1868 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
Kim Phillips60f208d2010-05-19 19:21:53 +10001869 struct crypto_ahash *ahash = crypto_ahash_reqtfm(areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001870
Kim Phillips60f208d2010-05-19 19:21:53 +10001871 ahash->init(areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001872 req_ctx->last = 1;
1873
1874 return ahash_process_req(areq, areq->nbytes);
1875}
1876
Lee Nipper79b3a412011-11-21 16:13:25 +08001877struct keyhash_result {
1878 struct completion completion;
1879 int err;
1880};
1881
1882static void keyhash_complete(struct crypto_async_request *req, int err)
1883{
1884 struct keyhash_result *res = req->data;
1885
1886 if (err == -EINPROGRESS)
1887 return;
1888
1889 res->err = err;
1890 complete(&res->completion);
1891}
1892
1893static int keyhash(struct crypto_ahash *tfm, const u8 *key, unsigned int keylen,
1894 u8 *hash)
1895{
1896 struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
1897
1898 struct scatterlist sg[1];
1899 struct ahash_request *req;
1900 struct keyhash_result hresult;
1901 int ret;
1902
1903 init_completion(&hresult.completion);
1904
1905 req = ahash_request_alloc(tfm, GFP_KERNEL);
1906 if (!req)
1907 return -ENOMEM;
1908
1909 /* Keep tfm keylen == 0 during hash of the long key */
1910 ctx->keylen = 0;
1911 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1912 keyhash_complete, &hresult);
1913
1914 sg_init_one(&sg[0], key, keylen);
1915
1916 ahash_request_set_crypt(req, sg, hash, keylen);
1917 ret = crypto_ahash_digest(req);
1918 switch (ret) {
1919 case 0:
1920 break;
1921 case -EINPROGRESS:
1922 case -EBUSY:
1923 ret = wait_for_completion_interruptible(
1924 &hresult.completion);
1925 if (!ret)
1926 ret = hresult.err;
1927 break;
1928 default:
1929 break;
1930 }
1931 ahash_request_free(req);
1932
1933 return ret;
1934}
1935
1936static int ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
1937 unsigned int keylen)
1938{
1939 struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
1940 unsigned int blocksize =
1941 crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
1942 unsigned int digestsize = crypto_ahash_digestsize(tfm);
1943 unsigned int keysize = keylen;
1944 u8 hash[SHA512_DIGEST_SIZE];
1945 int ret;
1946
1947 if (keylen <= blocksize)
1948 memcpy(ctx->key, key, keysize);
1949 else {
1950 /* Must get the hash of the long key */
1951 ret = keyhash(tfm, key, keylen, hash);
1952
1953 if (ret) {
1954 crypto_ahash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
1955 return -EINVAL;
1956 }
1957
1958 keysize = digestsize;
1959 memcpy(ctx->key, hash, digestsize);
1960 }
1961
1962 ctx->keylen = keysize;
1963
1964 return 0;
1965}
1966
1967
Kim Phillips9c4a7962008-06-23 19:50:15 +08001968struct talitos_alg_template {
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001969 u32 type;
1970 union {
1971 struct crypto_alg crypto;
Lee Nipperacbf7c622010-05-19 19:19:33 +10001972 struct ahash_alg hash;
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001973 } alg;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001974 __be32 desc_hdr_template;
1975};
1976
1977static struct talitos_alg_template driver_algs[] = {
Horia Geantae763eb62012-08-08 18:46:45 +03001978 /*
1979 * AEAD algorithms. These use a single-pass ipsec_esp descriptor.
1980 * authencesn(*,*) is also registered, although not present
1981 * explicitly here.
1982 */
Lee Nipperd5e4aae2010-05-19 19:18:38 +10001983 { .type = CRYPTO_ALG_TYPE_AEAD,
1984 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001985 .cra_name = "authenc(hmac(sha1),cbc(aes))",
1986 .cra_driver_name = "authenc-hmac-sha1-cbc-aes-talitos",
1987 .cra_blocksize = AES_BLOCK_SIZE,
1988 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08001989 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08001990 .ivsize = AES_BLOCK_SIZE,
1991 .maxauthsize = SHA1_DIGEST_SIZE,
1992 }
1993 },
Kim Phillips9c4a7962008-06-23 19:50:15 +08001994 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
1995 DESC_HDR_SEL0_AESU |
1996 DESC_HDR_MODE0_AESU_CBC |
1997 DESC_HDR_SEL1_MDEUA |
1998 DESC_HDR_MODE1_MDEU_INIT |
1999 DESC_HDR_MODE1_MDEU_PAD |
2000 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
Lee Nipper70bcaca2008-07-03 19:08:46 +08002001 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002002 { .type = CRYPTO_ALG_TYPE_AEAD,
2003 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002004 .cra_name = "authenc(hmac(sha1),cbc(des3_ede))",
2005 .cra_driver_name = "authenc-hmac-sha1-cbc-3des-talitos",
2006 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2007 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002008 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002009 .ivsize = DES3_EDE_BLOCK_SIZE,
2010 .maxauthsize = SHA1_DIGEST_SIZE,
2011 }
2012 },
Lee Nipper70bcaca2008-07-03 19:08:46 +08002013 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2014 DESC_HDR_SEL0_DEU |
2015 DESC_HDR_MODE0_DEU_CBC |
2016 DESC_HDR_MODE0_DEU_3DES |
2017 DESC_HDR_SEL1_MDEUA |
2018 DESC_HDR_MODE1_MDEU_INIT |
2019 DESC_HDR_MODE1_MDEU_PAD |
2020 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
Lee Nipper3952f172008-07-10 18:29:18 +08002021 },
Horia Geanta357fb602012-07-03 19:16:53 +03002022 { .type = CRYPTO_ALG_TYPE_AEAD,
2023 .alg.crypto = {
2024 .cra_name = "authenc(hmac(sha224),cbc(aes))",
2025 .cra_driver_name = "authenc-hmac-sha224-cbc-aes-talitos",
2026 .cra_blocksize = AES_BLOCK_SIZE,
2027 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002028 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002029 .ivsize = AES_BLOCK_SIZE,
2030 .maxauthsize = SHA224_DIGEST_SIZE,
2031 }
2032 },
2033 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2034 DESC_HDR_SEL0_AESU |
2035 DESC_HDR_MODE0_AESU_CBC |
2036 DESC_HDR_SEL1_MDEUA |
2037 DESC_HDR_MODE1_MDEU_INIT |
2038 DESC_HDR_MODE1_MDEU_PAD |
2039 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
2040 },
2041 { .type = CRYPTO_ALG_TYPE_AEAD,
2042 .alg.crypto = {
2043 .cra_name = "authenc(hmac(sha224),cbc(des3_ede))",
2044 .cra_driver_name = "authenc-hmac-sha224-cbc-3des-talitos",
2045 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2046 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002047 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002048 .ivsize = DES3_EDE_BLOCK_SIZE,
2049 .maxauthsize = SHA224_DIGEST_SIZE,
2050 }
2051 },
2052 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2053 DESC_HDR_SEL0_DEU |
2054 DESC_HDR_MODE0_DEU_CBC |
2055 DESC_HDR_MODE0_DEU_3DES |
2056 DESC_HDR_SEL1_MDEUA |
2057 DESC_HDR_MODE1_MDEU_INIT |
2058 DESC_HDR_MODE1_MDEU_PAD |
2059 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
2060 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002061 { .type = CRYPTO_ALG_TYPE_AEAD,
2062 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002063 .cra_name = "authenc(hmac(sha256),cbc(aes))",
2064 .cra_driver_name = "authenc-hmac-sha256-cbc-aes-talitos",
2065 .cra_blocksize = AES_BLOCK_SIZE,
2066 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002067 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002068 .ivsize = AES_BLOCK_SIZE,
2069 .maxauthsize = SHA256_DIGEST_SIZE,
2070 }
2071 },
Lee Nipper3952f172008-07-10 18:29:18 +08002072 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2073 DESC_HDR_SEL0_AESU |
2074 DESC_HDR_MODE0_AESU_CBC |
2075 DESC_HDR_SEL1_MDEUA |
2076 DESC_HDR_MODE1_MDEU_INIT |
2077 DESC_HDR_MODE1_MDEU_PAD |
2078 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2079 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002080 { .type = CRYPTO_ALG_TYPE_AEAD,
2081 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002082 .cra_name = "authenc(hmac(sha256),cbc(des3_ede))",
2083 .cra_driver_name = "authenc-hmac-sha256-cbc-3des-talitos",
2084 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2085 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002086 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002087 .ivsize = DES3_EDE_BLOCK_SIZE,
2088 .maxauthsize = SHA256_DIGEST_SIZE,
2089 }
2090 },
Lee Nipper3952f172008-07-10 18:29:18 +08002091 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2092 DESC_HDR_SEL0_DEU |
2093 DESC_HDR_MODE0_DEU_CBC |
2094 DESC_HDR_MODE0_DEU_3DES |
2095 DESC_HDR_SEL1_MDEUA |
2096 DESC_HDR_MODE1_MDEU_INIT |
2097 DESC_HDR_MODE1_MDEU_PAD |
2098 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2099 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002100 { .type = CRYPTO_ALG_TYPE_AEAD,
2101 .alg.crypto = {
Horia Geanta357fb602012-07-03 19:16:53 +03002102 .cra_name = "authenc(hmac(sha384),cbc(aes))",
2103 .cra_driver_name = "authenc-hmac-sha384-cbc-aes-talitos",
2104 .cra_blocksize = AES_BLOCK_SIZE,
2105 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002106 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002107 .ivsize = AES_BLOCK_SIZE,
2108 .maxauthsize = SHA384_DIGEST_SIZE,
2109 }
2110 },
2111 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2112 DESC_HDR_SEL0_AESU |
2113 DESC_HDR_MODE0_AESU_CBC |
2114 DESC_HDR_SEL1_MDEUB |
2115 DESC_HDR_MODE1_MDEU_INIT |
2116 DESC_HDR_MODE1_MDEU_PAD |
2117 DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
2118 },
2119 { .type = CRYPTO_ALG_TYPE_AEAD,
2120 .alg.crypto = {
2121 .cra_name = "authenc(hmac(sha384),cbc(des3_ede))",
2122 .cra_driver_name = "authenc-hmac-sha384-cbc-3des-talitos",
2123 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2124 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002125 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002126 .ivsize = DES3_EDE_BLOCK_SIZE,
2127 .maxauthsize = SHA384_DIGEST_SIZE,
2128 }
2129 },
2130 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2131 DESC_HDR_SEL0_DEU |
2132 DESC_HDR_MODE0_DEU_CBC |
2133 DESC_HDR_MODE0_DEU_3DES |
2134 DESC_HDR_SEL1_MDEUB |
2135 DESC_HDR_MODE1_MDEU_INIT |
2136 DESC_HDR_MODE1_MDEU_PAD |
2137 DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
2138 },
2139 { .type = CRYPTO_ALG_TYPE_AEAD,
2140 .alg.crypto = {
2141 .cra_name = "authenc(hmac(sha512),cbc(aes))",
2142 .cra_driver_name = "authenc-hmac-sha512-cbc-aes-talitos",
2143 .cra_blocksize = AES_BLOCK_SIZE,
2144 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002145 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002146 .ivsize = AES_BLOCK_SIZE,
2147 .maxauthsize = SHA512_DIGEST_SIZE,
2148 }
2149 },
2150 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2151 DESC_HDR_SEL0_AESU |
2152 DESC_HDR_MODE0_AESU_CBC |
2153 DESC_HDR_SEL1_MDEUB |
2154 DESC_HDR_MODE1_MDEU_INIT |
2155 DESC_HDR_MODE1_MDEU_PAD |
2156 DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
2157 },
2158 { .type = CRYPTO_ALG_TYPE_AEAD,
2159 .alg.crypto = {
2160 .cra_name = "authenc(hmac(sha512),cbc(des3_ede))",
2161 .cra_driver_name = "authenc-hmac-sha512-cbc-3des-talitos",
2162 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2163 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Horia Geanta357fb602012-07-03 19:16:53 +03002164 .cra_aead = {
Horia Geanta357fb602012-07-03 19:16:53 +03002165 .ivsize = DES3_EDE_BLOCK_SIZE,
2166 .maxauthsize = SHA512_DIGEST_SIZE,
2167 }
2168 },
2169 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2170 DESC_HDR_SEL0_DEU |
2171 DESC_HDR_MODE0_DEU_CBC |
2172 DESC_HDR_MODE0_DEU_3DES |
2173 DESC_HDR_SEL1_MDEUB |
2174 DESC_HDR_MODE1_MDEU_INIT |
2175 DESC_HDR_MODE1_MDEU_PAD |
2176 DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
2177 },
2178 { .type = CRYPTO_ALG_TYPE_AEAD,
2179 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002180 .cra_name = "authenc(hmac(md5),cbc(aes))",
2181 .cra_driver_name = "authenc-hmac-md5-cbc-aes-talitos",
2182 .cra_blocksize = AES_BLOCK_SIZE,
2183 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002184 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002185 .ivsize = AES_BLOCK_SIZE,
2186 .maxauthsize = MD5_DIGEST_SIZE,
2187 }
2188 },
Lee Nipper3952f172008-07-10 18:29:18 +08002189 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2190 DESC_HDR_SEL0_AESU |
2191 DESC_HDR_MODE0_AESU_CBC |
2192 DESC_HDR_SEL1_MDEUA |
2193 DESC_HDR_MODE1_MDEU_INIT |
2194 DESC_HDR_MODE1_MDEU_PAD |
2195 DESC_HDR_MODE1_MDEU_MD5_HMAC,
2196 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002197 { .type = CRYPTO_ALG_TYPE_AEAD,
2198 .alg.crypto = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002199 .cra_name = "authenc(hmac(md5),cbc(des3_ede))",
2200 .cra_driver_name = "authenc-hmac-md5-cbc-3des-talitos",
2201 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2202 .cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_ASYNC,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002203 .cra_aead = {
Lee Nipper56af8cd2009-03-29 15:50:50 +08002204 .ivsize = DES3_EDE_BLOCK_SIZE,
2205 .maxauthsize = MD5_DIGEST_SIZE,
2206 }
2207 },
Lee Nipper3952f172008-07-10 18:29:18 +08002208 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2209 DESC_HDR_SEL0_DEU |
2210 DESC_HDR_MODE0_DEU_CBC |
2211 DESC_HDR_MODE0_DEU_3DES |
2212 DESC_HDR_SEL1_MDEUA |
2213 DESC_HDR_MODE1_MDEU_INIT |
2214 DESC_HDR_MODE1_MDEU_PAD |
2215 DESC_HDR_MODE1_MDEU_MD5_HMAC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002216 },
2217 /* ABLKCIPHER algorithms. */
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002218 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2219 .alg.crypto = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002220 .cra_name = "cbc(aes)",
2221 .cra_driver_name = "cbc-aes-talitos",
2222 .cra_blocksize = AES_BLOCK_SIZE,
2223 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2224 CRYPTO_ALG_ASYNC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002225 .cra_ablkcipher = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002226 .min_keysize = AES_MIN_KEY_SIZE,
2227 .max_keysize = AES_MAX_KEY_SIZE,
2228 .ivsize = AES_BLOCK_SIZE,
2229 }
2230 },
2231 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2232 DESC_HDR_SEL0_AESU |
2233 DESC_HDR_MODE0_AESU_CBC,
2234 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002235 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2236 .alg.crypto = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002237 .cra_name = "cbc(des3_ede)",
2238 .cra_driver_name = "cbc-3des-talitos",
2239 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2240 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2241 CRYPTO_ALG_ASYNC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002242 .cra_ablkcipher = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002243 .min_keysize = DES3_EDE_KEY_SIZE,
2244 .max_keysize = DES3_EDE_KEY_SIZE,
2245 .ivsize = DES3_EDE_BLOCK_SIZE,
2246 }
2247 },
2248 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2249 DESC_HDR_SEL0_DEU |
2250 DESC_HDR_MODE0_DEU_CBC |
2251 DESC_HDR_MODE0_DEU_3DES,
Lee Nipper497f2e62010-05-19 19:20:36 +10002252 },
2253 /* AHASH algorithms. */
2254 { .type = CRYPTO_ALG_TYPE_AHASH,
2255 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002256 .halg.digestsize = MD5_DIGEST_SIZE,
2257 .halg.base = {
2258 .cra_name = "md5",
2259 .cra_driver_name = "md5-talitos",
2260 .cra_blocksize = MD5_BLOCK_SIZE,
2261 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2262 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002263 }
2264 },
2265 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2266 DESC_HDR_SEL0_MDEUA |
2267 DESC_HDR_MODE0_MDEU_MD5,
2268 },
2269 { .type = CRYPTO_ALG_TYPE_AHASH,
2270 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002271 .halg.digestsize = SHA1_DIGEST_SIZE,
2272 .halg.base = {
2273 .cra_name = "sha1",
2274 .cra_driver_name = "sha1-talitos",
2275 .cra_blocksize = SHA1_BLOCK_SIZE,
2276 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2277 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002278 }
2279 },
2280 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2281 DESC_HDR_SEL0_MDEUA |
2282 DESC_HDR_MODE0_MDEU_SHA1,
2283 },
2284 { .type = CRYPTO_ALG_TYPE_AHASH,
2285 .alg.hash = {
Kim Phillips60f208d2010-05-19 19:21:53 +10002286 .halg.digestsize = SHA224_DIGEST_SIZE,
2287 .halg.base = {
2288 .cra_name = "sha224",
2289 .cra_driver_name = "sha224-talitos",
2290 .cra_blocksize = SHA224_BLOCK_SIZE,
2291 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2292 CRYPTO_ALG_ASYNC,
Kim Phillips60f208d2010-05-19 19:21:53 +10002293 }
2294 },
2295 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2296 DESC_HDR_SEL0_MDEUA |
2297 DESC_HDR_MODE0_MDEU_SHA224,
2298 },
2299 { .type = CRYPTO_ALG_TYPE_AHASH,
2300 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002301 .halg.digestsize = SHA256_DIGEST_SIZE,
2302 .halg.base = {
2303 .cra_name = "sha256",
2304 .cra_driver_name = "sha256-talitos",
2305 .cra_blocksize = SHA256_BLOCK_SIZE,
2306 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2307 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002308 }
2309 },
2310 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2311 DESC_HDR_SEL0_MDEUA |
2312 DESC_HDR_MODE0_MDEU_SHA256,
2313 },
2314 { .type = CRYPTO_ALG_TYPE_AHASH,
2315 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002316 .halg.digestsize = SHA384_DIGEST_SIZE,
2317 .halg.base = {
2318 .cra_name = "sha384",
2319 .cra_driver_name = "sha384-talitos",
2320 .cra_blocksize = SHA384_BLOCK_SIZE,
2321 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2322 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002323 }
2324 },
2325 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2326 DESC_HDR_SEL0_MDEUB |
2327 DESC_HDR_MODE0_MDEUB_SHA384,
2328 },
2329 { .type = CRYPTO_ALG_TYPE_AHASH,
2330 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002331 .halg.digestsize = SHA512_DIGEST_SIZE,
2332 .halg.base = {
2333 .cra_name = "sha512",
2334 .cra_driver_name = "sha512-talitos",
2335 .cra_blocksize = SHA512_BLOCK_SIZE,
2336 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2337 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002338 }
2339 },
2340 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2341 DESC_HDR_SEL0_MDEUB |
2342 DESC_HDR_MODE0_MDEUB_SHA512,
2343 },
Lee Nipper79b3a412011-11-21 16:13:25 +08002344 { .type = CRYPTO_ALG_TYPE_AHASH,
2345 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002346 .halg.digestsize = MD5_DIGEST_SIZE,
2347 .halg.base = {
2348 .cra_name = "hmac(md5)",
2349 .cra_driver_name = "hmac-md5-talitos",
2350 .cra_blocksize = MD5_BLOCK_SIZE,
2351 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2352 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002353 }
2354 },
2355 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2356 DESC_HDR_SEL0_MDEUA |
2357 DESC_HDR_MODE0_MDEU_MD5,
2358 },
2359 { .type = CRYPTO_ALG_TYPE_AHASH,
2360 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002361 .halg.digestsize = SHA1_DIGEST_SIZE,
2362 .halg.base = {
2363 .cra_name = "hmac(sha1)",
2364 .cra_driver_name = "hmac-sha1-talitos",
2365 .cra_blocksize = SHA1_BLOCK_SIZE,
2366 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2367 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002368 }
2369 },
2370 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2371 DESC_HDR_SEL0_MDEUA |
2372 DESC_HDR_MODE0_MDEU_SHA1,
2373 },
2374 { .type = CRYPTO_ALG_TYPE_AHASH,
2375 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002376 .halg.digestsize = SHA224_DIGEST_SIZE,
2377 .halg.base = {
2378 .cra_name = "hmac(sha224)",
2379 .cra_driver_name = "hmac-sha224-talitos",
2380 .cra_blocksize = SHA224_BLOCK_SIZE,
2381 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2382 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002383 }
2384 },
2385 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2386 DESC_HDR_SEL0_MDEUA |
2387 DESC_HDR_MODE0_MDEU_SHA224,
2388 },
2389 { .type = CRYPTO_ALG_TYPE_AHASH,
2390 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002391 .halg.digestsize = SHA256_DIGEST_SIZE,
2392 .halg.base = {
2393 .cra_name = "hmac(sha256)",
2394 .cra_driver_name = "hmac-sha256-talitos",
2395 .cra_blocksize = SHA256_BLOCK_SIZE,
2396 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2397 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002398 }
2399 },
2400 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2401 DESC_HDR_SEL0_MDEUA |
2402 DESC_HDR_MODE0_MDEU_SHA256,
2403 },
2404 { .type = CRYPTO_ALG_TYPE_AHASH,
2405 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002406 .halg.digestsize = SHA384_DIGEST_SIZE,
2407 .halg.base = {
2408 .cra_name = "hmac(sha384)",
2409 .cra_driver_name = "hmac-sha384-talitos",
2410 .cra_blocksize = SHA384_BLOCK_SIZE,
2411 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2412 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002413 }
2414 },
2415 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2416 DESC_HDR_SEL0_MDEUB |
2417 DESC_HDR_MODE0_MDEUB_SHA384,
2418 },
2419 { .type = CRYPTO_ALG_TYPE_AHASH,
2420 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002421 .halg.digestsize = SHA512_DIGEST_SIZE,
2422 .halg.base = {
2423 .cra_name = "hmac(sha512)",
2424 .cra_driver_name = "hmac-sha512-talitos",
2425 .cra_blocksize = SHA512_BLOCK_SIZE,
2426 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2427 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002428 }
2429 },
2430 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2431 DESC_HDR_SEL0_MDEUB |
2432 DESC_HDR_MODE0_MDEUB_SHA512,
2433 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002434};
2435
2436struct talitos_crypto_alg {
2437 struct list_head entry;
2438 struct device *dev;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002439 struct talitos_alg_template algt;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002440};
2441
2442static int talitos_cra_init(struct crypto_tfm *tfm)
2443{
2444 struct crypto_alg *alg = tfm->__crt_alg;
Kim Phillips19bbbc62009-03-29 15:53:59 +08002445 struct talitos_crypto_alg *talitos_alg;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002446 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
Kim Phillips5228f0f2011-07-15 11:21:38 +08002447 struct talitos_private *priv;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002448
Lee Nipper497f2e62010-05-19 19:20:36 +10002449 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_AHASH)
2450 talitos_alg = container_of(__crypto_ahash_alg(alg),
2451 struct talitos_crypto_alg,
2452 algt.alg.hash);
2453 else
2454 talitos_alg = container_of(alg, struct talitos_crypto_alg,
2455 algt.alg.crypto);
Kim Phillips19bbbc62009-03-29 15:53:59 +08002456
Kim Phillips9c4a7962008-06-23 19:50:15 +08002457 /* update context with ptr to dev */
2458 ctx->dev = talitos_alg->dev;
Kim Phillips19bbbc62009-03-29 15:53:59 +08002459
Kim Phillips5228f0f2011-07-15 11:21:38 +08002460 /* assign SEC channel to tfm in round-robin fashion */
2461 priv = dev_get_drvdata(ctx->dev);
2462 ctx->ch = atomic_inc_return(&priv->last_chan) &
2463 (priv->num_channels - 1);
2464
Kim Phillips9c4a7962008-06-23 19:50:15 +08002465 /* copy descriptor header template value */
Lee Nipperacbf7c622010-05-19 19:19:33 +10002466 ctx->desc_hdr_template = talitos_alg->algt.desc_hdr_template;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002467
Kim Phillips602dba52011-07-15 11:21:39 +08002468 /* select done notification */
2469 ctx->desc_hdr_template |= DESC_HDR_DONE_NOTIFY;
2470
Lee Nipper497f2e62010-05-19 19:20:36 +10002471 return 0;
2472}
2473
2474static int talitos_cra_init_aead(struct crypto_tfm *tfm)
2475{
2476 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
2477
2478 talitos_cra_init(tfm);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002479
2480 /* random first IV */
Lee Nipper70bcaca2008-07-03 19:08:46 +08002481 get_random_bytes(ctx->iv, TALITOS_MAX_IV_LENGTH);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002482
2483 return 0;
2484}
2485
Lee Nipper497f2e62010-05-19 19:20:36 +10002486static int talitos_cra_init_ahash(struct crypto_tfm *tfm)
2487{
2488 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
2489
2490 talitos_cra_init(tfm);
2491
2492 ctx->keylen = 0;
2493 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
2494 sizeof(struct talitos_ahash_req_ctx));
2495
2496 return 0;
2497}
2498
Kim Phillips9c4a7962008-06-23 19:50:15 +08002499/*
2500 * given the alg's descriptor header template, determine whether descriptor
2501 * type and primary/secondary execution units required match the hw
2502 * capabilities description provided in the device tree node.
2503 */
2504static int hw_supports(struct device *dev, __be32 desc_hdr_template)
2505{
2506 struct talitos_private *priv = dev_get_drvdata(dev);
2507 int ret;
2508
2509 ret = (1 << DESC_TYPE(desc_hdr_template) & priv->desc_types) &&
2510 (1 << PRIMARY_EU(desc_hdr_template) & priv->exec_units);
2511
2512 if (SECONDARY_EU(desc_hdr_template))
2513 ret = ret && (1 << SECONDARY_EU(desc_hdr_template)
2514 & priv->exec_units);
2515
2516 return ret;
2517}
2518
Grant Likely2dc11582010-08-06 09:25:50 -06002519static int talitos_remove(struct platform_device *ofdev)
Kim Phillips9c4a7962008-06-23 19:50:15 +08002520{
2521 struct device *dev = &ofdev->dev;
2522 struct talitos_private *priv = dev_get_drvdata(dev);
2523 struct talitos_crypto_alg *t_alg, *n;
2524 int i;
2525
2526 list_for_each_entry_safe(t_alg, n, &priv->alg_list, entry) {
Lee Nipperacbf7c622010-05-19 19:19:33 +10002527 switch (t_alg->algt.type) {
2528 case CRYPTO_ALG_TYPE_ABLKCIPHER:
2529 case CRYPTO_ALG_TYPE_AEAD:
2530 crypto_unregister_alg(&t_alg->algt.alg.crypto);
2531 break;
2532 case CRYPTO_ALG_TYPE_AHASH:
2533 crypto_unregister_ahash(&t_alg->algt.alg.hash);
2534 break;
2535 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002536 list_del(&t_alg->entry);
2537 kfree(t_alg);
2538 }
2539
2540 if (hw_supports(dev, DESC_HDR_SEL0_RNG))
2541 talitos_unregister_rng(dev);
2542
Kim Phillips4b9926282009-08-13 11:50:38 +10002543 for (i = 0; i < priv->num_channels; i++)
Kim Phillips0b798242010-09-23 15:56:08 +08002544 kfree(priv->chan[i].fifo);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002545
Kim Phillips4b9926282009-08-13 11:50:38 +10002546 kfree(priv->chan);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002547
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002548 for (i = 0; i < 2; i++)
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002549 if (priv->irq[i]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002550 free_irq(priv->irq[i], dev);
2551 irq_dispose_mapping(priv->irq[i]);
2552 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002553
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002554 tasklet_kill(&priv->done_task[0]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002555 if (priv->irq[1])
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002556 tasklet_kill(&priv->done_task[1]);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002557
2558 iounmap(priv->reg);
2559
2560 dev_set_drvdata(dev, NULL);
2561
2562 kfree(priv);
2563
2564 return 0;
2565}
2566
2567static struct talitos_crypto_alg *talitos_alg_alloc(struct device *dev,
2568 struct talitos_alg_template
2569 *template)
2570{
Kim Phillips60f208d2010-05-19 19:21:53 +10002571 struct talitos_private *priv = dev_get_drvdata(dev);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002572 struct talitos_crypto_alg *t_alg;
2573 struct crypto_alg *alg;
2574
2575 t_alg = kzalloc(sizeof(struct talitos_crypto_alg), GFP_KERNEL);
2576 if (!t_alg)
2577 return ERR_PTR(-ENOMEM);
2578
Lee Nipperacbf7c622010-05-19 19:19:33 +10002579 t_alg->algt = *template;
2580
2581 switch (t_alg->algt.type) {
2582 case CRYPTO_ALG_TYPE_ABLKCIPHER:
Lee Nipper497f2e62010-05-19 19:20:36 +10002583 alg = &t_alg->algt.alg.crypto;
2584 alg->cra_init = talitos_cra_init;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05002585 alg->cra_type = &crypto_ablkcipher_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05002586 alg->cra_ablkcipher.setkey = ablkcipher_setkey;
2587 alg->cra_ablkcipher.encrypt = ablkcipher_encrypt;
2588 alg->cra_ablkcipher.decrypt = ablkcipher_decrypt;
2589 alg->cra_ablkcipher.geniv = "eseqiv";
Lee Nipper497f2e62010-05-19 19:20:36 +10002590 break;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002591 case CRYPTO_ALG_TYPE_AEAD:
2592 alg = &t_alg->algt.alg.crypto;
Lee Nipper497f2e62010-05-19 19:20:36 +10002593 alg->cra_init = talitos_cra_init_aead;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05002594 alg->cra_type = &crypto_aead_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05002595 alg->cra_aead.setkey = aead_setkey;
2596 alg->cra_aead.setauthsize = aead_setauthsize;
2597 alg->cra_aead.encrypt = aead_encrypt;
2598 alg->cra_aead.decrypt = aead_decrypt;
2599 alg->cra_aead.givencrypt = aead_givencrypt;
2600 alg->cra_aead.geniv = "<built-in>";
Lee Nipperacbf7c622010-05-19 19:19:33 +10002601 break;
2602 case CRYPTO_ALG_TYPE_AHASH:
2603 alg = &t_alg->algt.alg.hash.halg.base;
Lee Nipper497f2e62010-05-19 19:20:36 +10002604 alg->cra_init = talitos_cra_init_ahash;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05002605 alg->cra_type = &crypto_ahash_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05002606 t_alg->algt.alg.hash.init = ahash_init;
2607 t_alg->algt.alg.hash.update = ahash_update;
2608 t_alg->algt.alg.hash.final = ahash_final;
2609 t_alg->algt.alg.hash.finup = ahash_finup;
2610 t_alg->algt.alg.hash.digest = ahash_digest;
2611 t_alg->algt.alg.hash.setkey = ahash_setkey;
2612
Lee Nipper79b3a412011-11-21 16:13:25 +08002613 if (!(priv->features & TALITOS_FTR_HMAC_OK) &&
Kim Phillips0b2730d2011-12-12 14:59:10 -06002614 !strncmp(alg->cra_name, "hmac", 4)) {
2615 kfree(t_alg);
Lee Nipper79b3a412011-11-21 16:13:25 +08002616 return ERR_PTR(-ENOTSUPP);
Kim Phillips0b2730d2011-12-12 14:59:10 -06002617 }
Kim Phillips60f208d2010-05-19 19:21:53 +10002618 if (!(priv->features & TALITOS_FTR_SHA224_HWINIT) &&
Lee Nipper79b3a412011-11-21 16:13:25 +08002619 (!strcmp(alg->cra_name, "sha224") ||
2620 !strcmp(alg->cra_name, "hmac(sha224)"))) {
Kim Phillips60f208d2010-05-19 19:21:53 +10002621 t_alg->algt.alg.hash.init = ahash_init_sha224_swinit;
2622 t_alg->algt.desc_hdr_template =
2623 DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2624 DESC_HDR_SEL0_MDEUA |
2625 DESC_HDR_MODE0_MDEU_SHA256;
2626 }
Lee Nipper497f2e62010-05-19 19:20:36 +10002627 break;
Kim Phillips1d119112010-09-23 15:55:27 +08002628 default:
2629 dev_err(dev, "unknown algorithm type %d\n", t_alg->algt.type);
2630 return ERR_PTR(-EINVAL);
Lee Nipperacbf7c622010-05-19 19:19:33 +10002631 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002632
Kim Phillips9c4a7962008-06-23 19:50:15 +08002633 alg->cra_module = THIS_MODULE;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002634 alg->cra_priority = TALITOS_CRA_PRIORITY;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002635 alg->cra_alignmask = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002636 alg->cra_ctxsize = sizeof(struct talitos_ctx);
Nikos Mavrogiannopoulosd912bb72011-11-01 13:39:56 +01002637 alg->cra_flags |= CRYPTO_ALG_KERN_DRIVER_ONLY;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002638
Kim Phillips9c4a7962008-06-23 19:50:15 +08002639 t_alg->dev = dev;
2640
2641 return t_alg;
2642}
2643
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002644static int talitos_probe_irq(struct platform_device *ofdev)
2645{
2646 struct device *dev = &ofdev->dev;
2647 struct device_node *np = ofdev->dev.of_node;
2648 struct talitos_private *priv = dev_get_drvdata(dev);
2649 int err;
2650
2651 priv->irq[0] = irq_of_parse_and_map(np, 0);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002652 if (!priv->irq[0]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002653 dev_err(dev, "failed to map irq\n");
2654 return -EINVAL;
2655 }
2656
2657 priv->irq[1] = irq_of_parse_and_map(np, 1);
2658
2659 /* get the primary irq line */
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002660 if (!priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002661 err = request_irq(priv->irq[0], talitos_interrupt_4ch, 0,
2662 dev_driver_string(dev), dev);
2663 goto primary_out;
2664 }
2665
2666 err = request_irq(priv->irq[0], talitos_interrupt_ch0_2, 0,
2667 dev_driver_string(dev), dev);
2668 if (err)
2669 goto primary_out;
2670
2671 /* get the secondary irq line */
2672 err = request_irq(priv->irq[1], talitos_interrupt_ch1_3, 0,
2673 dev_driver_string(dev), dev);
2674 if (err) {
2675 dev_err(dev, "failed to request secondary irq\n");
2676 irq_dispose_mapping(priv->irq[1]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002677 priv->irq[1] = 0;
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002678 }
2679
2680 return err;
2681
2682primary_out:
2683 if (err) {
2684 dev_err(dev, "failed to request primary irq\n");
2685 irq_dispose_mapping(priv->irq[0]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002686 priv->irq[0] = 0;
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002687 }
2688
2689 return err;
2690}
2691
Grant Likely1c48a5c2011-02-17 02:43:24 -07002692static int talitos_probe(struct platform_device *ofdev)
Kim Phillips9c4a7962008-06-23 19:50:15 +08002693{
2694 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -07002695 struct device_node *np = ofdev->dev.of_node;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002696 struct talitos_private *priv;
2697 const unsigned int *prop;
2698 int i, err;
2699
2700 priv = kzalloc(sizeof(struct talitos_private), GFP_KERNEL);
2701 if (!priv)
2702 return -ENOMEM;
2703
2704 dev_set_drvdata(dev, priv);
2705
2706 priv->ofdev = ofdev;
2707
Horia Geanta511d63c2012-03-30 17:49:53 +03002708 spin_lock_init(&priv->reg_lock);
2709
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002710 err = talitos_probe_irq(ofdev);
2711 if (err)
2712 goto err_out;
2713
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002714 if (!priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002715 tasklet_init(&priv->done_task[0], talitos_done_4ch,
2716 (unsigned long)dev);
2717 } else {
2718 tasklet_init(&priv->done_task[0], talitos_done_ch0_2,
2719 (unsigned long)dev);
2720 tasklet_init(&priv->done_task[1], talitos_done_ch1_3,
2721 (unsigned long)dev);
2722 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002723
Kim Phillipsfe5720e2008-10-12 20:33:14 +08002724 INIT_LIST_HEAD(&priv->alg_list);
2725
Kim Phillips9c4a7962008-06-23 19:50:15 +08002726 priv->reg = of_iomap(np, 0);
2727 if (!priv->reg) {
2728 dev_err(dev, "failed to of_iomap\n");
2729 err = -ENOMEM;
2730 goto err_out;
2731 }
2732
2733 /* get SEC version capabilities from device tree */
2734 prop = of_get_property(np, "fsl,num-channels", NULL);
2735 if (prop)
2736 priv->num_channels = *prop;
2737
2738 prop = of_get_property(np, "fsl,channel-fifo-len", NULL);
2739 if (prop)
2740 priv->chfifo_len = *prop;
2741
2742 prop = of_get_property(np, "fsl,exec-units-mask", NULL);
2743 if (prop)
2744 priv->exec_units = *prop;
2745
2746 prop = of_get_property(np, "fsl,descriptor-types-mask", NULL);
2747 if (prop)
2748 priv->desc_types = *prop;
2749
2750 if (!is_power_of_2(priv->num_channels) || !priv->chfifo_len ||
2751 !priv->exec_units || !priv->desc_types) {
2752 dev_err(dev, "invalid property data in device tree node\n");
2753 err = -EINVAL;
2754 goto err_out;
2755 }
2756
Lee Nipperf3c85bc2008-07-30 16:26:57 +08002757 if (of_device_is_compatible(np, "fsl,sec3.0"))
2758 priv->features |= TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT;
2759
Kim Phillipsfe5720e2008-10-12 20:33:14 +08002760 if (of_device_is_compatible(np, "fsl,sec2.1"))
Kim Phillips60f208d2010-05-19 19:21:53 +10002761 priv->features |= TALITOS_FTR_HW_AUTH_CHECK |
Lee Nipper79b3a412011-11-21 16:13:25 +08002762 TALITOS_FTR_SHA224_HWINIT |
2763 TALITOS_FTR_HMAC_OK;
Kim Phillipsfe5720e2008-10-12 20:33:14 +08002764
Kim Phillips4b9926282009-08-13 11:50:38 +10002765 priv->chan = kzalloc(sizeof(struct talitos_channel) *
2766 priv->num_channels, GFP_KERNEL);
2767 if (!priv->chan) {
2768 dev_err(dev, "failed to allocate channel management space\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08002769 err = -ENOMEM;
2770 goto err_out;
2771 }
2772
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002773 for (i = 0; i < priv->num_channels; i++) {
2774 priv->chan[i].reg = priv->reg + TALITOS_CH_STRIDE * (i + 1);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06002775 if (!priv->irq[1] || !(i & 1))
Kim Phillipsc3e337f2011-11-21 16:13:27 +08002776 priv->chan[i].reg += TALITOS_CH_BASE_OFFSET;
2777 }
Kim Phillipsad42d5f2011-11-21 16:13:27 +08002778
Kim Phillips9c4a7962008-06-23 19:50:15 +08002779 for (i = 0; i < priv->num_channels; i++) {
Kim Phillips4b9926282009-08-13 11:50:38 +10002780 spin_lock_init(&priv->chan[i].head_lock);
2781 spin_lock_init(&priv->chan[i].tail_lock);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002782 }
2783
2784 priv->fifo_len = roundup_pow_of_two(priv->chfifo_len);
2785
2786 for (i = 0; i < priv->num_channels; i++) {
Kim Phillips4b9926282009-08-13 11:50:38 +10002787 priv->chan[i].fifo = kzalloc(sizeof(struct talitos_request) *
2788 priv->fifo_len, GFP_KERNEL);
2789 if (!priv->chan[i].fifo) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08002790 dev_err(dev, "failed to allocate request fifo %d\n", i);
2791 err = -ENOMEM;
2792 goto err_out;
2793 }
2794 }
2795
Kim Phillipsec6644d2008-07-17 20:16:40 +08002796 for (i = 0; i < priv->num_channels; i++)
Kim Phillips4b9926282009-08-13 11:50:38 +10002797 atomic_set(&priv->chan[i].submit_count,
2798 -(priv->chfifo_len - 1));
Kim Phillips9c4a7962008-06-23 19:50:15 +08002799
Kim Phillips81eb0242009-08-13 11:51:51 +10002800 dma_set_mask(dev, DMA_BIT_MASK(36));
2801
Kim Phillips9c4a7962008-06-23 19:50:15 +08002802 /* reset and initialize the h/w */
2803 err = init_device(dev);
2804 if (err) {
2805 dev_err(dev, "failed to initialize device\n");
2806 goto err_out;
2807 }
2808
2809 /* register the RNG, if available */
2810 if (hw_supports(dev, DESC_HDR_SEL0_RNG)) {
2811 err = talitos_register_rng(dev);
2812 if (err) {
2813 dev_err(dev, "failed to register hwrng: %d\n", err);
2814 goto err_out;
2815 } else
2816 dev_info(dev, "hwrng\n");
2817 }
2818
2819 /* register crypto algorithms the device supports */
Kim Phillips9c4a7962008-06-23 19:50:15 +08002820 for (i = 0; i < ARRAY_SIZE(driver_algs); i++) {
2821 if (hw_supports(dev, driver_algs[i].desc_hdr_template)) {
2822 struct talitos_crypto_alg *t_alg;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002823 char *name = NULL;
Horia Geantae763eb62012-08-08 18:46:45 +03002824 bool authenc = false;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002825
Horia Geantae763eb62012-08-08 18:46:45 +03002826authencesn:
Kim Phillips9c4a7962008-06-23 19:50:15 +08002827 t_alg = talitos_alg_alloc(dev, &driver_algs[i]);
2828 if (IS_ERR(t_alg)) {
2829 err = PTR_ERR(t_alg);
Kim Phillips0b2730d2011-12-12 14:59:10 -06002830 if (err == -ENOTSUPP)
Lee Nipper79b3a412011-11-21 16:13:25 +08002831 continue;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002832 goto err_out;
2833 }
2834
Lee Nipperacbf7c622010-05-19 19:19:33 +10002835 switch (t_alg->algt.type) {
2836 case CRYPTO_ALG_TYPE_ABLKCIPHER:
2837 case CRYPTO_ALG_TYPE_AEAD:
2838 err = crypto_register_alg(
2839 &t_alg->algt.alg.crypto);
2840 name = t_alg->algt.alg.crypto.cra_driver_name;
Horia Geantae763eb62012-08-08 18:46:45 +03002841 authenc = authenc ? !authenc :
2842 !(bool)memcmp(name, "authenc", 7);
Lee Nipperacbf7c622010-05-19 19:19:33 +10002843 break;
2844 case CRYPTO_ALG_TYPE_AHASH:
2845 err = crypto_register_ahash(
2846 &t_alg->algt.alg.hash);
2847 name =
2848 t_alg->algt.alg.hash.halg.base.cra_driver_name;
2849 break;
2850 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002851 if (err) {
2852 dev_err(dev, "%s alg registration failed\n",
Lee Nipperacbf7c622010-05-19 19:19:33 +10002853 name);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002854 kfree(t_alg);
Horia Geantae763eb62012-08-08 18:46:45 +03002855 } else {
Kim Phillips9c4a7962008-06-23 19:50:15 +08002856 list_add_tail(&t_alg->entry, &priv->alg_list);
Horia Geantae763eb62012-08-08 18:46:45 +03002857 if (authenc) {
2858 struct crypto_alg *alg =
2859 &driver_algs[i].alg.crypto;
2860
2861 name = alg->cra_name;
2862 memmove(name + 10, name + 7,
2863 strlen(name) - 7);
2864 memcpy(name + 7, "esn", 3);
2865
2866 name = alg->cra_driver_name;
2867 memmove(name + 10, name + 7,
2868 strlen(name) - 7);
2869 memcpy(name + 7, "esn", 3);
2870
2871 goto authencesn;
2872 }
2873 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002874 }
2875 }
Kim Phillips5b859b6e2011-11-21 16:13:26 +08002876 if (!list_empty(&priv->alg_list))
2877 dev_info(dev, "%s algorithms registered in /proc/crypto\n",
2878 (char *)of_get_property(np, "compatible", NULL));
Kim Phillips9c4a7962008-06-23 19:50:15 +08002879
2880 return 0;
2881
2882err_out:
2883 talitos_remove(ofdev);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002884
2885 return err;
2886}
2887
Márton Németh6c3f9752010-01-17 21:54:01 +11002888static const struct of_device_id talitos_match[] = {
Kim Phillips9c4a7962008-06-23 19:50:15 +08002889 {
2890 .compatible = "fsl,sec2.0",
2891 },
2892 {},
2893};
2894MODULE_DEVICE_TABLE(of, talitos_match);
2895
Grant Likely1c48a5c2011-02-17 02:43:24 -07002896static struct platform_driver talitos_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002897 .driver = {
2898 .name = "talitos",
2899 .owner = THIS_MODULE,
2900 .of_match_table = talitos_match,
2901 },
Kim Phillips9c4a7962008-06-23 19:50:15 +08002902 .probe = talitos_probe,
Al Viro596f1032008-11-22 17:34:24 +00002903 .remove = talitos_remove,
Kim Phillips9c4a7962008-06-23 19:50:15 +08002904};
2905
Axel Lin741e8c22011-11-26 21:26:19 +08002906module_platform_driver(talitos_driver);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002907
2908MODULE_LICENSE("GPL");
2909MODULE_AUTHOR("Kim Phillips <kim.phillips@freescale.com>");
2910MODULE_DESCRIPTION("Freescale integrated security engine (SEC) driver");