blob: 463033b4db1dacb51959d6cb05606f52864bdf2e [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>
Rob Herring5af50732013-09-17 14:28:33 -050035#include <linux/of_address.h>
36#include <linux/of_irq.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080037#include <linux/of_platform.h>
38#include <linux/dma-mapping.h>
39#include <linux/io.h>
40#include <linux/spinlock.h>
41#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080043
44#include <crypto/algapi.h>
45#include <crypto/aes.h>
Lee Nipper3952f172008-07-10 18:29:18 +080046#include <crypto/des.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080047#include <crypto/sha.h>
Lee Nipper497f2e62010-05-19 19:20:36 +100048#include <crypto/md5.h>
Herbert Xue98014a2015-05-11 17:47:48 +080049#include <crypto/internal/aead.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080050#include <crypto/authenc.h>
Lee Nipper4de9d0b2009-03-29 15:52:32 +080051#include <crypto/skcipher.h>
Lee Nipperacbf7c622010-05-19 19:19:33 +100052#include <crypto/hash.h>
53#include <crypto/internal/hash.h>
Lee Nipper4de9d0b2009-03-29 15:52:32 +080054#include <crypto/scatterwalk.h>
Kim Phillips9c4a7962008-06-23 19:50:15 +080055
56#include "talitos.h"
57
LEROY Christophe922f9dc2015-04-17 16:32:07 +020058static void to_talitos_ptr(struct talitos_ptr *ptr, dma_addr_t dma_addr,
59 bool is_sec1)
Kim Phillips81eb0242009-08-13 11:51:51 +100060{
LEROY Christopheedc6bd62015-04-17 16:31:53 +020061 ptr->ptr = cpu_to_be32(lower_32_bits(dma_addr));
LEROY Christophe922f9dc2015-04-17 16:32:07 +020062 if (!is_sec1)
63 ptr->eptr = upper_32_bits(dma_addr);
Kim Phillips81eb0242009-08-13 11:51:51 +100064}
65
Horia Geant?340ff602016-04-19 20:33:48 +030066static void copy_talitos_ptr(struct talitos_ptr *dst_ptr,
67 struct talitos_ptr *src_ptr, bool is_sec1)
68{
69 dst_ptr->ptr = src_ptr->ptr;
70 if (!is_sec1)
71 dst_ptr->eptr = src_ptr->eptr;
72}
73
Horia Geant?42e8b0d2015-05-11 20:04:56 +030074static void to_talitos_ptr_len(struct talitos_ptr *ptr, unsigned int len,
LEROY Christophe922f9dc2015-04-17 16:32:07 +020075 bool is_sec1)
LEROY Christophe538caf82015-04-17 16:31:59 +020076{
LEROY Christophe922f9dc2015-04-17 16:32:07 +020077 if (is_sec1) {
78 ptr->res = 0;
79 ptr->len1 = cpu_to_be16(len);
80 } else {
81 ptr->len = cpu_to_be16(len);
82 }
LEROY Christophe538caf82015-04-17 16:31:59 +020083}
84
LEROY Christophe922f9dc2015-04-17 16:32:07 +020085static unsigned short from_talitos_ptr_len(struct talitos_ptr *ptr,
86 bool is_sec1)
LEROY Christophe538caf82015-04-17 16:31:59 +020087{
LEROY Christophe922f9dc2015-04-17 16:32:07 +020088 if (is_sec1)
89 return be16_to_cpu(ptr->len1);
90 else
91 return be16_to_cpu(ptr->len);
LEROY Christophe538caf82015-04-17 16:31:59 +020092}
93
LEROY Christopheb096b542016-06-06 13:20:34 +020094static void to_talitos_ptr_ext_set(struct talitos_ptr *ptr, u8 val,
95 bool is_sec1)
LEROY Christophe185eb792015-04-17 16:31:55 +020096{
LEROY Christophe922f9dc2015-04-17 16:32:07 +020097 if (!is_sec1)
LEROY Christopheb096b542016-06-06 13:20:34 +020098 ptr->j_extent = val;
99}
100
101static void to_talitos_ptr_ext_or(struct talitos_ptr *ptr, u8 val, bool is_sec1)
102{
103 if (!is_sec1)
104 ptr->j_extent |= val;
LEROY Christophe185eb792015-04-17 16:31:55 +0200105}
106
Kim Phillips9c4a7962008-06-23 19:50:15 +0800107/*
108 * map virtual single (contiguous) pointer to h/w descriptor pointer
109 */
110static void map_single_talitos_ptr(struct device *dev,
LEROY Christopheedc6bd62015-04-17 16:31:53 +0200111 struct talitos_ptr *ptr,
Horia Geant?42e8b0d2015-05-11 20:04:56 +0300112 unsigned int len, void *data,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800113 enum dma_data_direction dir)
114{
Kim Phillips81eb0242009-08-13 11:51:51 +1000115 dma_addr_t dma_addr = dma_map_single(dev, data, len, dir);
LEROY Christophe922f9dc2015-04-17 16:32:07 +0200116 struct talitos_private *priv = dev_get_drvdata(dev);
117 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips81eb0242009-08-13 11:51:51 +1000118
LEROY Christophe922f9dc2015-04-17 16:32:07 +0200119 to_talitos_ptr_len(ptr, len, is_sec1);
120 to_talitos_ptr(ptr, dma_addr, is_sec1);
LEROY Christopheb096b542016-06-06 13:20:34 +0200121 to_talitos_ptr_ext_set(ptr, 0, is_sec1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800122}
123
124/*
125 * unmap bus single (contiguous) h/w descriptor pointer
126 */
127static void unmap_single_talitos_ptr(struct device *dev,
LEROY Christopheedc6bd62015-04-17 16:31:53 +0200128 struct talitos_ptr *ptr,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800129 enum dma_data_direction dir)
130{
LEROY Christophe922f9dc2015-04-17 16:32:07 +0200131 struct talitos_private *priv = dev_get_drvdata(dev);
132 bool is_sec1 = has_ftr_sec1(priv);
133
LEROY Christopheedc6bd62015-04-17 16:31:53 +0200134 dma_unmap_single(dev, be32_to_cpu(ptr->ptr),
LEROY Christophe922f9dc2015-04-17 16:32:07 +0200135 from_talitos_ptr_len(ptr, is_sec1), dir);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800136}
137
138static int reset_channel(struct device *dev, int ch)
139{
140 struct talitos_private *priv = dev_get_drvdata(dev);
141 unsigned int timeout = TALITOS_TIMEOUT;
LEROY Christophedd3c0982015-04-17 16:32:13 +0200142 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800143
LEROY Christophedd3c0982015-04-17 16:32:13 +0200144 if (is_sec1) {
145 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO,
146 TALITOS1_CCCR_LO_RESET);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800147
LEROY Christophedd3c0982015-04-17 16:32:13 +0200148 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR_LO) &
149 TALITOS1_CCCR_LO_RESET) && --timeout)
150 cpu_relax();
151 } else {
152 setbits32(priv->chan[ch].reg + TALITOS_CCCR,
153 TALITOS2_CCCR_RESET);
154
155 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) &
156 TALITOS2_CCCR_RESET) && --timeout)
157 cpu_relax();
158 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800159
160 if (timeout == 0) {
161 dev_err(dev, "failed to reset channel %d\n", ch);
162 return -EIO;
163 }
164
Kim Phillips81eb0242009-08-13 11:51:51 +1000165 /* set 36-bit addressing, done writeback enable and done IRQ enable */
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800166 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, TALITOS_CCCR_LO_EAE |
Kim Phillips81eb0242009-08-13 11:51:51 +1000167 TALITOS_CCCR_LO_CDWE | TALITOS_CCCR_LO_CDIE);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800168
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800169 /* and ICCR writeback, if available */
170 if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800171 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO,
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800172 TALITOS_CCCR_LO_IWSE);
173
Kim Phillips9c4a7962008-06-23 19:50:15 +0800174 return 0;
175}
176
177static int reset_device(struct device *dev)
178{
179 struct talitos_private *priv = dev_get_drvdata(dev);
180 unsigned int timeout = TALITOS_TIMEOUT;
LEROY Christophedd3c0982015-04-17 16:32:13 +0200181 bool is_sec1 = has_ftr_sec1(priv);
182 u32 mcr = is_sec1 ? TALITOS1_MCR_SWR : TALITOS2_MCR_SWR;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800183
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800184 setbits32(priv->reg + TALITOS_MCR, mcr);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800185
LEROY Christophedd3c0982015-04-17 16:32:13 +0200186 while ((in_be32(priv->reg + TALITOS_MCR) & mcr)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800187 && --timeout)
188 cpu_relax();
189
Kim Phillips2cdba3c2011-12-12 14:59:11 -0600190 if (priv->irq[1]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800191 mcr = TALITOS_MCR_RCA1 | TALITOS_MCR_RCA3;
192 setbits32(priv->reg + TALITOS_MCR, mcr);
193 }
194
Kim Phillips9c4a7962008-06-23 19:50:15 +0800195 if (timeout == 0) {
196 dev_err(dev, "failed to reset device\n");
197 return -EIO;
198 }
199
200 return 0;
201}
202
203/*
204 * Reset and initialize the device
205 */
206static int init_device(struct device *dev)
207{
208 struct talitos_private *priv = dev_get_drvdata(dev);
209 int ch, err;
LEROY Christophedd3c0982015-04-17 16:32:13 +0200210 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800211
212 /*
213 * Master reset
214 * errata documentation: warning: certain SEC interrupts
215 * are not fully cleared by writing the MCR:SWR bit,
216 * set bit twice to completely reset
217 */
218 err = reset_device(dev);
219 if (err)
220 return err;
221
222 err = reset_device(dev);
223 if (err)
224 return err;
225
226 /* reset channels */
227 for (ch = 0; ch < priv->num_channels; ch++) {
228 err = reset_channel(dev, ch);
229 if (err)
230 return err;
231 }
232
233 /* enable channel done and error interrupts */
LEROY Christophedd3c0982015-04-17 16:32:13 +0200234 if (is_sec1) {
235 clrbits32(priv->reg + TALITOS_IMR, TALITOS1_IMR_INIT);
236 clrbits32(priv->reg + TALITOS_IMR_LO, TALITOS1_IMR_LO_INIT);
237 /* disable parity error check in DEU (erroneous? test vect.) */
238 setbits32(priv->reg_deu + TALITOS_EUICR, TALITOS1_DEUICR_KPE);
239 } else {
240 setbits32(priv->reg + TALITOS_IMR, TALITOS2_IMR_INIT);
241 setbits32(priv->reg + TALITOS_IMR_LO, TALITOS2_IMR_LO_INIT);
242 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800243
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800244 /* disable integrity check error interrupts (use writeback instead) */
245 if (priv->features & TALITOS_FTR_HW_AUTH_CHECK)
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200246 setbits32(priv->reg_mdeu + TALITOS_EUICR_LO,
Kim Phillipsfe5720e2008-10-12 20:33:14 +0800247 TALITOS_MDEUICR_LO_ICE);
248
Kim Phillips9c4a7962008-06-23 19:50:15 +0800249 return 0;
250}
251
252/**
253 * talitos_submit - submits a descriptor to the device for processing
254 * @dev: the SEC device to be used
Kim Phillips5228f0f2011-07-15 11:21:38 +0800255 * @ch: the SEC device channel to be used
Kim Phillips9c4a7962008-06-23 19:50:15 +0800256 * @desc: the descriptor to be processed by the device
257 * @callback: whom to call when processing is complete
258 * @context: a handle for use by caller (optional)
259 *
260 * desc must contain valid dma-mapped (bus physical) address pointers.
261 * callback must check err and feedback in descriptor header
262 * for device processing status.
263 */
Horia Geanta865d5062012-07-03 19:16:52 +0300264int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc,
265 void (*callback)(struct device *dev,
266 struct talitos_desc *desc,
267 void *context, int error),
268 void *context)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800269{
270 struct talitos_private *priv = dev_get_drvdata(dev);
271 struct talitos_request *request;
Kim Phillips5228f0f2011-07-15 11:21:38 +0800272 unsigned long flags;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800273 int head;
LEROY Christophe7d607c6a2015-04-17 16:32:09 +0200274 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800275
Kim Phillips4b9926282009-08-13 11:50:38 +1000276 spin_lock_irqsave(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800277
Kim Phillips4b9926282009-08-13 11:50:38 +1000278 if (!atomic_inc_not_zero(&priv->chan[ch].submit_count)) {
Kim Phillipsec6644d2008-07-17 20:16:40 +0800279 /* h/w fifo is full */
Kim Phillips4b9926282009-08-13 11:50:38 +1000280 spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800281 return -EAGAIN;
282 }
283
Kim Phillips4b9926282009-08-13 11:50:38 +1000284 head = priv->chan[ch].head;
285 request = &priv->chan[ch].fifo[head];
Kim Phillipsec6644d2008-07-17 20:16:40 +0800286
Kim Phillips9c4a7962008-06-23 19:50:15 +0800287 /* map descriptor and save caller data */
LEROY Christophe7d607c6a2015-04-17 16:32:09 +0200288 if (is_sec1) {
289 desc->hdr1 = desc->hdr;
290 desc->next_desc = 0;
291 request->dma_desc = dma_map_single(dev, &desc->hdr1,
292 TALITOS_DESC_SIZE,
293 DMA_BIDIRECTIONAL);
294 } else {
295 request->dma_desc = dma_map_single(dev, desc,
296 TALITOS_DESC_SIZE,
297 DMA_BIDIRECTIONAL);
298 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800299 request->callback = callback;
300 request->context = context;
301
302 /* increment fifo head */
Kim Phillips4b9926282009-08-13 11:50:38 +1000303 priv->chan[ch].head = (priv->chan[ch].head + 1) & (priv->fifo_len - 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800304
305 smp_wmb();
306 request->desc = desc;
307
308 /* GO! */
309 wmb();
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800310 out_be32(priv->chan[ch].reg + TALITOS_FF,
311 upper_32_bits(request->dma_desc));
312 out_be32(priv->chan[ch].reg + TALITOS_FF_LO,
Kim Phillipsa7524472010-09-23 15:56:38 +0800313 lower_32_bits(request->dma_desc));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800314
Kim Phillips4b9926282009-08-13 11:50:38 +1000315 spin_unlock_irqrestore(&priv->chan[ch].head_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800316
317 return -EINPROGRESS;
318}
Horia Geanta865d5062012-07-03 19:16:52 +0300319EXPORT_SYMBOL(talitos_submit);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800320
321/*
322 * process what was done, notify callback of error if not
323 */
324static void flush_channel(struct device *dev, int ch, int error, int reset_ch)
325{
326 struct talitos_private *priv = dev_get_drvdata(dev);
327 struct talitos_request *request, saved_req;
328 unsigned long flags;
329 int tail, status;
LEROY Christophe7d607c6a2015-04-17 16:32:09 +0200330 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800331
Kim Phillips4b9926282009-08-13 11:50:38 +1000332 spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800333
Kim Phillips4b9926282009-08-13 11:50:38 +1000334 tail = priv->chan[ch].tail;
335 while (priv->chan[ch].fifo[tail].desc) {
LEROY Christophe7d607c6a2015-04-17 16:32:09 +0200336 __be32 hdr;
337
Kim Phillips4b9926282009-08-13 11:50:38 +1000338 request = &priv->chan[ch].fifo[tail];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800339
340 /* descriptors with their done bits set don't get the error */
341 rmb();
LEROY Christophe7d607c6a2015-04-17 16:32:09 +0200342 hdr = is_sec1 ? request->desc->hdr1 : request->desc->hdr;
343
344 if ((hdr & DESC_HDR_DONE) == DESC_HDR_DONE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800345 status = 0;
Lee Nipperca38a812008-12-20 17:09:25 +1100346 else
Kim Phillips9c4a7962008-06-23 19:50:15 +0800347 if (!error)
348 break;
349 else
350 status = error;
351
352 dma_unmap_single(dev, request->dma_desc,
LEROY Christophe7d607c6a2015-04-17 16:32:09 +0200353 TALITOS_DESC_SIZE,
Kim Phillipse938e462009-03-29 15:53:23 +0800354 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800355
356 /* copy entries so we can call callback outside lock */
357 saved_req.desc = request->desc;
358 saved_req.callback = request->callback;
359 saved_req.context = request->context;
360
361 /* release request entry in fifo */
362 smp_wmb();
363 request->desc = NULL;
364
365 /* increment fifo tail */
Kim Phillips4b9926282009-08-13 11:50:38 +1000366 priv->chan[ch].tail = (tail + 1) & (priv->fifo_len - 1);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800367
Kim Phillips4b9926282009-08-13 11:50:38 +1000368 spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
Kim Phillipsec6644d2008-07-17 20:16:40 +0800369
Kim Phillips4b9926282009-08-13 11:50:38 +1000370 atomic_dec(&priv->chan[ch].submit_count);
Kim Phillipsec6644d2008-07-17 20:16:40 +0800371
Kim Phillips9c4a7962008-06-23 19:50:15 +0800372 saved_req.callback(dev, saved_req.desc, saved_req.context,
373 status);
374 /* channel may resume processing in single desc error case */
375 if (error && !reset_ch && status == error)
376 return;
Kim Phillips4b9926282009-08-13 11:50:38 +1000377 spin_lock_irqsave(&priv->chan[ch].tail_lock, flags);
378 tail = priv->chan[ch].tail;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800379 }
380
Kim Phillips4b9926282009-08-13 11:50:38 +1000381 spin_unlock_irqrestore(&priv->chan[ch].tail_lock, flags);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800382}
383
384/*
385 * process completed requests for channels that have done status
386 */
LEROY Christophedd3c0982015-04-17 16:32:13 +0200387#define DEF_TALITOS1_DONE(name, ch_done_mask) \
388static void talitos1_done_##name(unsigned long data) \
389{ \
390 struct device *dev = (struct device *)data; \
391 struct talitos_private *priv = dev_get_drvdata(dev); \
392 unsigned long flags; \
393 \
394 if (ch_done_mask & 0x10000000) \
395 flush_channel(dev, 0, 0, 0); \
396 if (priv->num_channels == 1) \
397 goto out; \
398 if (ch_done_mask & 0x40000000) \
399 flush_channel(dev, 1, 0, 0); \
400 if (ch_done_mask & 0x00010000) \
401 flush_channel(dev, 2, 0, 0); \
402 if (ch_done_mask & 0x00040000) \
403 flush_channel(dev, 3, 0, 0); \
404 \
405out: \
406 /* At this point, all completed channels have been processed */ \
407 /* Unmask done interrupts for channels completed later on. */ \
408 spin_lock_irqsave(&priv->reg_lock, flags); \
409 clrbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
410 clrbits32(priv->reg + TALITOS_IMR_LO, TALITOS1_IMR_LO_INIT); \
411 spin_unlock_irqrestore(&priv->reg_lock, flags); \
412}
413
414DEF_TALITOS1_DONE(4ch, TALITOS1_ISR_4CHDONE)
415
416#define DEF_TALITOS2_DONE(name, ch_done_mask) \
417static void talitos2_done_##name(unsigned long data) \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800418{ \
419 struct device *dev = (struct device *)data; \
420 struct talitos_private *priv = dev_get_drvdata(dev); \
Horia Geanta511d63c2012-03-30 17:49:53 +0300421 unsigned long flags; \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800422 \
423 if (ch_done_mask & 1) \
424 flush_channel(dev, 0, 0, 0); \
425 if (priv->num_channels == 1) \
426 goto out; \
427 if (ch_done_mask & (1 << 2)) \
428 flush_channel(dev, 1, 0, 0); \
429 if (ch_done_mask & (1 << 4)) \
430 flush_channel(dev, 2, 0, 0); \
431 if (ch_done_mask & (1 << 6)) \
432 flush_channel(dev, 3, 0, 0); \
433 \
434out: \
435 /* At this point, all completed channels have been processed */ \
436 /* Unmask done interrupts for channels completed later on. */ \
Horia Geanta511d63c2012-03-30 17:49:53 +0300437 spin_lock_irqsave(&priv->reg_lock, flags); \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800438 setbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
LEROY Christophedd3c0982015-04-17 16:32:13 +0200439 setbits32(priv->reg + TALITOS_IMR_LO, TALITOS2_IMR_LO_INIT); \
Horia Geanta511d63c2012-03-30 17:49:53 +0300440 spin_unlock_irqrestore(&priv->reg_lock, flags); \
Kim Phillips9c4a7962008-06-23 19:50:15 +0800441}
LEROY Christophedd3c0982015-04-17 16:32:13 +0200442
443DEF_TALITOS2_DONE(4ch, TALITOS2_ISR_4CHDONE)
444DEF_TALITOS2_DONE(ch0_2, TALITOS2_ISR_CH_0_2_DONE)
445DEF_TALITOS2_DONE(ch1_3, TALITOS2_ISR_CH_1_3_DONE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800446
447/*
448 * locate current (offending) descriptor
449 */
Kim Phillips3e721ae2011-10-21 15:20:28 +0200450static u32 current_desc_hdr(struct device *dev, int ch)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800451{
452 struct talitos_private *priv = dev_get_drvdata(dev);
Horia Geantab62ffd82013-11-13 12:20:37 +0200453 int tail, iter;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800454 dma_addr_t cur_desc;
455
Horia Geantab62ffd82013-11-13 12:20:37 +0200456 cur_desc = ((u64)in_be32(priv->chan[ch].reg + TALITOS_CDPR)) << 32;
457 cur_desc |= in_be32(priv->chan[ch].reg + TALITOS_CDPR_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800458
Horia Geantab62ffd82013-11-13 12:20:37 +0200459 if (!cur_desc) {
460 dev_err(dev, "CDPR is NULL, giving up search for offending descriptor\n");
461 return 0;
462 }
463
464 tail = priv->chan[ch].tail;
465
466 iter = tail;
467 while (priv->chan[ch].fifo[iter].dma_desc != cur_desc) {
468 iter = (iter + 1) & (priv->fifo_len - 1);
469 if (iter == tail) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800470 dev_err(dev, "couldn't locate current descriptor\n");
Kim Phillips3e721ae2011-10-21 15:20:28 +0200471 return 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800472 }
473 }
474
Horia Geantab62ffd82013-11-13 12:20:37 +0200475 return priv->chan[ch].fifo[iter].desc->hdr;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800476}
477
478/*
479 * user diagnostics; report root cause of error based on execution unit status
480 */
Kim Phillips3e721ae2011-10-21 15:20:28 +0200481static void report_eu_error(struct device *dev, int ch, u32 desc_hdr)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800482{
483 struct talitos_private *priv = dev_get_drvdata(dev);
484 int i;
485
Kim Phillips3e721ae2011-10-21 15:20:28 +0200486 if (!desc_hdr)
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800487 desc_hdr = in_be32(priv->chan[ch].reg + TALITOS_DESCBUF);
Kim Phillips3e721ae2011-10-21 15:20:28 +0200488
489 switch (desc_hdr & DESC_HDR_SEL0_MASK) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800490 case DESC_HDR_SEL0_AFEU:
491 dev_err(dev, "AFEUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200492 in_be32(priv->reg_afeu + TALITOS_EUISR),
493 in_be32(priv->reg_afeu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800494 break;
495 case DESC_HDR_SEL0_DEU:
496 dev_err(dev, "DEUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200497 in_be32(priv->reg_deu + TALITOS_EUISR),
498 in_be32(priv->reg_deu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800499 break;
500 case DESC_HDR_SEL0_MDEUA:
501 case DESC_HDR_SEL0_MDEUB:
502 dev_err(dev, "MDEUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200503 in_be32(priv->reg_mdeu + TALITOS_EUISR),
504 in_be32(priv->reg_mdeu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800505 break;
506 case DESC_HDR_SEL0_RNG:
507 dev_err(dev, "RNGUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200508 in_be32(priv->reg_rngu + TALITOS_ISR),
509 in_be32(priv->reg_rngu + TALITOS_ISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800510 break;
511 case DESC_HDR_SEL0_PKEU:
512 dev_err(dev, "PKEUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200513 in_be32(priv->reg_pkeu + TALITOS_EUISR),
514 in_be32(priv->reg_pkeu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800515 break;
516 case DESC_HDR_SEL0_AESU:
517 dev_err(dev, "AESUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200518 in_be32(priv->reg_aesu + TALITOS_EUISR),
519 in_be32(priv->reg_aesu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800520 break;
521 case DESC_HDR_SEL0_CRCU:
522 dev_err(dev, "CRCUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200523 in_be32(priv->reg_crcu + TALITOS_EUISR),
524 in_be32(priv->reg_crcu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800525 break;
526 case DESC_HDR_SEL0_KEU:
527 dev_err(dev, "KEUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200528 in_be32(priv->reg_pkeu + TALITOS_EUISR),
529 in_be32(priv->reg_pkeu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800530 break;
531 }
532
Kim Phillips3e721ae2011-10-21 15:20:28 +0200533 switch (desc_hdr & DESC_HDR_SEL1_MASK) {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800534 case DESC_HDR_SEL1_MDEUA:
535 case DESC_HDR_SEL1_MDEUB:
536 dev_err(dev, "MDEUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200537 in_be32(priv->reg_mdeu + TALITOS_EUISR),
538 in_be32(priv->reg_mdeu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800539 break;
540 case DESC_HDR_SEL1_CRCU:
541 dev_err(dev, "CRCUISR 0x%08x_%08x\n",
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200542 in_be32(priv->reg_crcu + TALITOS_EUISR),
543 in_be32(priv->reg_crcu + TALITOS_EUISR_LO));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800544 break;
545 }
546
547 for (i = 0; i < 8; i++)
548 dev_err(dev, "DESCBUF 0x%08x_%08x\n",
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800549 in_be32(priv->chan[ch].reg + TALITOS_DESCBUF + 8*i),
550 in_be32(priv->chan[ch].reg + TALITOS_DESCBUF_LO + 8*i));
Kim Phillips9c4a7962008-06-23 19:50:15 +0800551}
552
553/*
554 * recover from error interrupts
555 */
Kim Phillips5e718a02011-12-12 14:59:12 -0600556static void talitos_error(struct device *dev, u32 isr, u32 isr_lo)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800557{
Kim Phillips9c4a7962008-06-23 19:50:15 +0800558 struct talitos_private *priv = dev_get_drvdata(dev);
559 unsigned int timeout = TALITOS_TIMEOUT;
LEROY Christophedd3c0982015-04-17 16:32:13 +0200560 int ch, error, reset_dev = 0;
Horia Geant?42e8b0d2015-05-11 20:04:56 +0300561 u32 v_lo;
LEROY Christophedd3c0982015-04-17 16:32:13 +0200562 bool is_sec1 = has_ftr_sec1(priv);
563 int reset_ch = is_sec1 ? 1 : 0; /* only SEC2 supports continuation */
Kim Phillips9c4a7962008-06-23 19:50:15 +0800564
565 for (ch = 0; ch < priv->num_channels; ch++) {
566 /* skip channels without errors */
LEROY Christophedd3c0982015-04-17 16:32:13 +0200567 if (is_sec1) {
568 /* bits 29, 31, 17, 19 */
569 if (!(isr & (1 << (29 + (ch & 1) * 2 - (ch & 2) * 6))))
570 continue;
571 } else {
572 if (!(isr & (1 << (ch * 2 + 1))))
573 continue;
574 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800575
576 error = -EINVAL;
577
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800578 v_lo = in_be32(priv->chan[ch].reg + TALITOS_CCPSR_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800579
580 if (v_lo & TALITOS_CCPSR_LO_DOF) {
581 dev_err(dev, "double fetch fifo overflow error\n");
582 error = -EAGAIN;
583 reset_ch = 1;
584 }
585 if (v_lo & TALITOS_CCPSR_LO_SOF) {
586 /* h/w dropped descriptor */
587 dev_err(dev, "single fetch fifo overflow error\n");
588 error = -EAGAIN;
589 }
590 if (v_lo & TALITOS_CCPSR_LO_MDTE)
591 dev_err(dev, "master data transfer error\n");
592 if (v_lo & TALITOS_CCPSR_LO_SGDLZ)
LEROY Christophedd3c0982015-04-17 16:32:13 +0200593 dev_err(dev, is_sec1 ? "pointeur not complete error\n"
594 : "s/g data length zero error\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +0800595 if (v_lo & TALITOS_CCPSR_LO_FPZ)
LEROY Christophedd3c0982015-04-17 16:32:13 +0200596 dev_err(dev, is_sec1 ? "parity error\n"
597 : "fetch pointer zero error\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +0800598 if (v_lo & TALITOS_CCPSR_LO_IDH)
599 dev_err(dev, "illegal descriptor header error\n");
600 if (v_lo & TALITOS_CCPSR_LO_IEU)
LEROY Christophedd3c0982015-04-17 16:32:13 +0200601 dev_err(dev, is_sec1 ? "static assignment error\n"
602 : "invalid exec unit error\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +0800603 if (v_lo & TALITOS_CCPSR_LO_EU)
Kim Phillips3e721ae2011-10-21 15:20:28 +0200604 report_eu_error(dev, ch, current_desc_hdr(dev, ch));
LEROY Christophedd3c0982015-04-17 16:32:13 +0200605 if (!is_sec1) {
606 if (v_lo & TALITOS_CCPSR_LO_GB)
607 dev_err(dev, "gather boundary error\n");
608 if (v_lo & TALITOS_CCPSR_LO_GRL)
609 dev_err(dev, "gather return/length error\n");
610 if (v_lo & TALITOS_CCPSR_LO_SB)
611 dev_err(dev, "scatter boundary error\n");
612 if (v_lo & TALITOS_CCPSR_LO_SRL)
613 dev_err(dev, "scatter return/length error\n");
614 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800615
616 flush_channel(dev, ch, error, reset_ch);
617
618 if (reset_ch) {
619 reset_channel(dev, ch);
620 } else {
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800621 setbits32(priv->chan[ch].reg + TALITOS_CCCR,
LEROY Christophedd3c0982015-04-17 16:32:13 +0200622 TALITOS2_CCCR_CONT);
Kim Phillipsad42d5f2011-11-21 16:13:27 +0800623 setbits32(priv->chan[ch].reg + TALITOS_CCCR_LO, 0);
624 while ((in_be32(priv->chan[ch].reg + TALITOS_CCCR) &
LEROY Christophedd3c0982015-04-17 16:32:13 +0200625 TALITOS2_CCCR_CONT) && --timeout)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800626 cpu_relax();
627 if (timeout == 0) {
628 dev_err(dev, "failed to restart channel %d\n",
629 ch);
630 reset_dev = 1;
631 }
632 }
633 }
LEROY Christophedd3c0982015-04-17 16:32:13 +0200634 if (reset_dev || (is_sec1 && isr & ~TALITOS1_ISR_4CHERR) ||
635 (!is_sec1 && isr & ~TALITOS2_ISR_4CHERR) || isr_lo) {
636 if (is_sec1 && (isr_lo & TALITOS1_ISR_TEA_ERR))
637 dev_err(dev, "TEA error: ISR 0x%08x_%08x\n",
638 isr, isr_lo);
639 else
640 dev_err(dev, "done overflow, internal time out, or "
641 "rngu error: ISR 0x%08x_%08x\n", isr, isr_lo);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800642
643 /* purge request queues */
644 for (ch = 0; ch < priv->num_channels; ch++)
645 flush_channel(dev, ch, -EIO, 1);
646
647 /* reset and reinitialize the device */
648 init_device(dev);
649 }
650}
651
LEROY Christophedd3c0982015-04-17 16:32:13 +0200652#define DEF_TALITOS1_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet) \
653static irqreturn_t talitos1_interrupt_##name(int irq, void *data) \
654{ \
655 struct device *dev = data; \
656 struct talitos_private *priv = dev_get_drvdata(dev); \
657 u32 isr, isr_lo; \
658 unsigned long flags; \
659 \
660 spin_lock_irqsave(&priv->reg_lock, flags); \
661 isr = in_be32(priv->reg + TALITOS_ISR); \
662 isr_lo = in_be32(priv->reg + TALITOS_ISR_LO); \
663 /* Acknowledge interrupt */ \
664 out_be32(priv->reg + TALITOS_ICR, isr & (ch_done_mask | ch_err_mask)); \
665 out_be32(priv->reg + TALITOS_ICR_LO, isr_lo); \
666 \
667 if (unlikely(isr & ch_err_mask || isr_lo & TALITOS1_IMR_LO_INIT)) { \
668 spin_unlock_irqrestore(&priv->reg_lock, flags); \
669 talitos_error(dev, isr & ch_err_mask, isr_lo); \
670 } \
671 else { \
672 if (likely(isr & ch_done_mask)) { \
673 /* mask further done interrupts. */ \
674 setbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
675 /* done_task will unmask done interrupts at exit */ \
676 tasklet_schedule(&priv->done_task[tlet]); \
677 } \
678 spin_unlock_irqrestore(&priv->reg_lock, flags); \
679 } \
680 \
681 return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED : \
682 IRQ_NONE; \
683}
684
685DEF_TALITOS1_INTERRUPT(4ch, TALITOS1_ISR_4CHDONE, TALITOS1_ISR_4CHERR, 0)
686
687#define DEF_TALITOS2_INTERRUPT(name, ch_done_mask, ch_err_mask, tlet) \
688static irqreturn_t talitos2_interrupt_##name(int irq, void *data) \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800689{ \
690 struct device *dev = data; \
691 struct talitos_private *priv = dev_get_drvdata(dev); \
692 u32 isr, isr_lo; \
Horia Geanta511d63c2012-03-30 17:49:53 +0300693 unsigned long flags; \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800694 \
Horia Geanta511d63c2012-03-30 17:49:53 +0300695 spin_lock_irqsave(&priv->reg_lock, flags); \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800696 isr = in_be32(priv->reg + TALITOS_ISR); \
697 isr_lo = in_be32(priv->reg + TALITOS_ISR_LO); \
698 /* Acknowledge interrupt */ \
699 out_be32(priv->reg + TALITOS_ICR, isr & (ch_done_mask | ch_err_mask)); \
700 out_be32(priv->reg + TALITOS_ICR_LO, isr_lo); \
701 \
Horia Geanta511d63c2012-03-30 17:49:53 +0300702 if (unlikely(isr & ch_err_mask || isr_lo)) { \
703 spin_unlock_irqrestore(&priv->reg_lock, flags); \
704 talitos_error(dev, isr & ch_err_mask, isr_lo); \
705 } \
706 else { \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800707 if (likely(isr & ch_done_mask)) { \
708 /* mask further done interrupts. */ \
709 clrbits32(priv->reg + TALITOS_IMR, ch_done_mask); \
710 /* done_task will unmask done interrupts at exit */ \
711 tasklet_schedule(&priv->done_task[tlet]); \
712 } \
Horia Geanta511d63c2012-03-30 17:49:53 +0300713 spin_unlock_irqrestore(&priv->reg_lock, flags); \
714 } \
Kim Phillipsc3e337f2011-11-21 16:13:27 +0800715 \
716 return (isr & (ch_done_mask | ch_err_mask) || isr_lo) ? IRQ_HANDLED : \
717 IRQ_NONE; \
Kim Phillips9c4a7962008-06-23 19:50:15 +0800718}
LEROY Christophedd3c0982015-04-17 16:32:13 +0200719
720DEF_TALITOS2_INTERRUPT(4ch, TALITOS2_ISR_4CHDONE, TALITOS2_ISR_4CHERR, 0)
721DEF_TALITOS2_INTERRUPT(ch0_2, TALITOS2_ISR_CH_0_2_DONE, TALITOS2_ISR_CH_0_2_ERR,
722 0)
723DEF_TALITOS2_INTERRUPT(ch1_3, TALITOS2_ISR_CH_1_3_DONE, TALITOS2_ISR_CH_1_3_ERR,
724 1)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800725
726/*
727 * hwrng
728 */
729static int talitos_rng_data_present(struct hwrng *rng, int wait)
730{
731 struct device *dev = (struct device *)rng->priv;
732 struct talitos_private *priv = dev_get_drvdata(dev);
733 u32 ofl;
734 int i;
735
736 for (i = 0; i < 20; i++) {
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200737 ofl = in_be32(priv->reg_rngu + TALITOS_EUSR_LO) &
Kim Phillips9c4a7962008-06-23 19:50:15 +0800738 TALITOS_RNGUSR_LO_OFL;
739 if (ofl || !wait)
740 break;
741 udelay(10);
742 }
743
744 return !!ofl;
745}
746
747static int talitos_rng_data_read(struct hwrng *rng, u32 *data)
748{
749 struct device *dev = (struct device *)rng->priv;
750 struct talitos_private *priv = dev_get_drvdata(dev);
751
752 /* rng fifo requires 64-bit accesses */
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200753 *data = in_be32(priv->reg_rngu + TALITOS_EU_FIFO);
754 *data = in_be32(priv->reg_rngu + TALITOS_EU_FIFO_LO);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800755
756 return sizeof(u32);
757}
758
759static int talitos_rng_init(struct hwrng *rng)
760{
761 struct device *dev = (struct device *)rng->priv;
762 struct talitos_private *priv = dev_get_drvdata(dev);
763 unsigned int timeout = TALITOS_TIMEOUT;
764
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200765 setbits32(priv->reg_rngu + TALITOS_EURCR_LO, TALITOS_RNGURCR_LO_SR);
766 while (!(in_be32(priv->reg_rngu + TALITOS_EUSR_LO)
767 & TALITOS_RNGUSR_LO_RD)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800768 && --timeout)
769 cpu_relax();
770 if (timeout == 0) {
771 dev_err(dev, "failed to reset rng hw\n");
772 return -ENODEV;
773 }
774
775 /* start generating */
LEROY Christophe5fa7fa12015-04-17 16:32:11 +0200776 setbits32(priv->reg_rngu + TALITOS_EUDSR_LO, 0);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800777
778 return 0;
779}
780
781static int talitos_register_rng(struct device *dev)
782{
783 struct talitos_private *priv = dev_get_drvdata(dev);
Aaron Sierra35a3bb32015-08-05 16:52:08 -0500784 int err;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800785
786 priv->rng.name = dev_driver_string(dev),
787 priv->rng.init = talitos_rng_init,
788 priv->rng.data_present = talitos_rng_data_present,
789 priv->rng.data_read = talitos_rng_data_read,
790 priv->rng.priv = (unsigned long)dev;
791
Aaron Sierra35a3bb32015-08-05 16:52:08 -0500792 err = hwrng_register(&priv->rng);
793 if (!err)
794 priv->rng_registered = true;
795
796 return err;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800797}
798
799static void talitos_unregister_rng(struct device *dev)
800{
801 struct talitos_private *priv = dev_get_drvdata(dev);
802
Aaron Sierra35a3bb32015-08-05 16:52:08 -0500803 if (!priv->rng_registered)
804 return;
805
Kim Phillips9c4a7962008-06-23 19:50:15 +0800806 hwrng_unregister(&priv->rng);
Aaron Sierra35a3bb32015-08-05 16:52:08 -0500807 priv->rng_registered = false;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800808}
809
810/*
811 * crypto alg
812 */
813#define TALITOS_CRA_PRIORITY 3000
LEROY Christophe7405c8d2016-06-06 13:20:46 +0200814/*
815 * Defines a priority for doing AEAD with descriptors type
816 * HMAC_SNOOP_NO_AFEA (HSNA) instead of type IPSEC_ESP
817 */
818#define TALITOS_CRA_PRIORITY_AEAD_HSNA (TALITOS_CRA_PRIORITY - 1)
Martin Hicks2ff2cc72017-05-02 09:38:35 -0400819#define TALITOS_MAX_KEY_SIZE (AES_MAX_KEY_SIZE + SHA512_BLOCK_SIZE)
Lee Nipper3952f172008-07-10 18:29:18 +0800820#define TALITOS_MAX_IV_LENGTH 16 /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */
Lee Nipper70bcaca2008-07-03 19:08:46 +0800821
Kim Phillips9c4a7962008-06-23 19:50:15 +0800822struct talitos_ctx {
823 struct device *dev;
Kim Phillips5228f0f2011-07-15 11:21:38 +0800824 int ch;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800825 __be32 desc_hdr_template;
826 u8 key[TALITOS_MAX_KEY_SIZE];
Lee Nipper70bcaca2008-07-03 19:08:46 +0800827 u8 iv[TALITOS_MAX_IV_LENGTH];
Kim Phillips9c4a7962008-06-23 19:50:15 +0800828 unsigned int keylen;
829 unsigned int enckeylen;
830 unsigned int authkeylen;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800831};
832
Lee Nipper497f2e62010-05-19 19:20:36 +1000833#define HASH_MAX_BLOCK_SIZE SHA512_BLOCK_SIZE
834#define TALITOS_MDEU_MAX_CONTEXT_SIZE TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512
835
836struct talitos_ahash_req_ctx {
Kim Phillips60f208d2010-05-19 19:21:53 +1000837 u32 hw_context[TALITOS_MDEU_MAX_CONTEXT_SIZE / sizeof(u32)];
Lee Nipper497f2e62010-05-19 19:20:36 +1000838 unsigned int hw_context_size;
839 u8 buf[HASH_MAX_BLOCK_SIZE];
840 u8 bufnext[HASH_MAX_BLOCK_SIZE];
Kim Phillips60f208d2010-05-19 19:21:53 +1000841 unsigned int swinit;
Lee Nipper497f2e62010-05-19 19:20:36 +1000842 unsigned int first;
843 unsigned int last;
844 unsigned int to_hash_later;
Horia Geant?42e8b0d2015-05-11 20:04:56 +0300845 unsigned int nbuf;
Lee Nipper497f2e62010-05-19 19:20:36 +1000846 struct scatterlist bufsl[2];
847 struct scatterlist *psrc;
848};
849
Horia Geant?3639ca82016-04-21 19:24:55 +0300850struct talitos_export_state {
851 u32 hw_context[TALITOS_MDEU_MAX_CONTEXT_SIZE / sizeof(u32)];
852 u8 buf[HASH_MAX_BLOCK_SIZE];
853 unsigned int swinit;
854 unsigned int first;
855 unsigned int last;
856 unsigned int to_hash_later;
857 unsigned int nbuf;
858};
859
Lee Nipper56af8cd2009-03-29 15:50:50 +0800860static int aead_setkey(struct crypto_aead *authenc,
861 const u8 *key, unsigned int keylen)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800862{
863 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Mathias Krausec306a982013-10-15 13:49:34 +0200864 struct crypto_authenc_keys keys;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800865
Mathias Krausec306a982013-10-15 13:49:34 +0200866 if (crypto_authenc_extractkeys(&keys, key, keylen) != 0)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800867 goto badkey;
868
Mathias Krausec306a982013-10-15 13:49:34 +0200869 if (keys.authkeylen + keys.enckeylen > TALITOS_MAX_KEY_SIZE)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800870 goto badkey;
871
Mathias Krausec306a982013-10-15 13:49:34 +0200872 memcpy(ctx->key, keys.authkey, keys.authkeylen);
873 memcpy(&ctx->key[keys.authkeylen], keys.enckey, keys.enckeylen);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800874
Mathias Krausec306a982013-10-15 13:49:34 +0200875 ctx->keylen = keys.authkeylen + keys.enckeylen;
876 ctx->enckeylen = keys.enckeylen;
877 ctx->authkeylen = keys.authkeylen;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800878
879 return 0;
880
881badkey:
882 crypto_aead_set_flags(authenc, CRYPTO_TFM_RES_BAD_KEY_LEN);
883 return -EINVAL;
884}
885
886/*
Lee Nipper56af8cd2009-03-29 15:50:50 +0800887 * talitos_edesc - s/w-extended descriptor
Kim Phillips9c4a7962008-06-23 19:50:15 +0800888 * @src_nents: number of segments in input scatterlist
889 * @dst_nents: number of segments in output scatterlist
Herbert Xuaeb4c132015-07-30 17:53:22 +0800890 * @icv_ool: whether ICV is out-of-line
Horia Geanta79fd31d2012-08-02 17:16:40 +0300891 * @iv_dma: dma address of iv for checking continuity and link table
Kim Phillips9c4a7962008-06-23 19:50:15 +0800892 * @dma_len: length of dma mapped link_tbl space
LEROY Christophe6f65f6a2015-04-17 16:32:15 +0200893 * @dma_link_tbl: bus physical address of link_tbl/buf
Kim Phillips9c4a7962008-06-23 19:50:15 +0800894 * @desc: h/w descriptor
LEROY Christophe6f65f6a2015-04-17 16:32:15 +0200895 * @link_tbl: input and output h/w link tables (if {src,dst}_nents > 1) (SEC2)
896 * @buf: input and output buffeur (if {src,dst}_nents > 1) (SEC1)
Kim Phillips9c4a7962008-06-23 19:50:15 +0800897 *
898 * if decrypting (with authcheck), or either one of src_nents or dst_nents
899 * is greater than 1, an integrity check value is concatenated to the end
900 * of link_tbl data
901 */
Lee Nipper56af8cd2009-03-29 15:50:50 +0800902struct talitos_edesc {
Kim Phillips9c4a7962008-06-23 19:50:15 +0800903 int src_nents;
904 int dst_nents;
Herbert Xuaeb4c132015-07-30 17:53:22 +0800905 bool icv_ool;
Horia Geanta79fd31d2012-08-02 17:16:40 +0300906 dma_addr_t iv_dma;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800907 int dma_len;
908 dma_addr_t dma_link_tbl;
909 struct talitos_desc desc;
LEROY Christophe6f65f6a2015-04-17 16:32:15 +0200910 union {
911 struct talitos_ptr link_tbl[0];
912 u8 buf[0];
913 };
Kim Phillips9c4a7962008-06-23 19:50:15 +0800914};
915
Lee Nipper4de9d0b2009-03-29 15:52:32 +0800916static void talitos_sg_unmap(struct device *dev,
917 struct talitos_edesc *edesc,
918 struct scatterlist *src,
LEROY Christophe6a1e8d12016-06-06 13:20:38 +0200919 struct scatterlist *dst,
920 unsigned int len, unsigned int offset)
LEROY Christophe246a87c2016-06-06 13:20:36 +0200921{
922 struct talitos_private *priv = dev_get_drvdata(dev);
923 bool is_sec1 = has_ftr_sec1(priv);
LEROY Christophe6a1e8d12016-06-06 13:20:38 +0200924 unsigned int src_nents = edesc->src_nents ? : 1;
925 unsigned int dst_nents = edesc->dst_nents ? : 1;
LEROY Christophe246a87c2016-06-06 13:20:36 +0200926
LEROY Christophe6a1e8d12016-06-06 13:20:38 +0200927 if (is_sec1 && dst && dst_nents > 1) {
928 dma_sync_single_for_device(dev, edesc->dma_link_tbl + offset,
929 len, DMA_FROM_DEVICE);
930 sg_pcopy_from_buffer(dst, dst_nents, edesc->buf + offset, len,
931 offset);
932 }
933 if (src != dst) {
934 if (src_nents == 1 || !is_sec1)
935 dma_unmap_sg(dev, src, src_nents, DMA_TO_DEVICE);
936
937 if (dst && (dst_nents == 1 || !is_sec1))
938 dma_unmap_sg(dev, dst, dst_nents, DMA_FROM_DEVICE);
939 } else if (src_nents == 1 || !is_sec1) {
940 dma_unmap_sg(dev, src, src_nents, DMA_BIDIRECTIONAL);
LEROY Christophe246a87c2016-06-06 13:20:36 +0200941 }
942}
943
Kim Phillips9c4a7962008-06-23 19:50:15 +0800944static void ipsec_esp_unmap(struct device *dev,
Lee Nipper56af8cd2009-03-29 15:50:50 +0800945 struct talitos_edesc *edesc,
Kim Phillips9c4a7962008-06-23 19:50:15 +0800946 struct aead_request *areq)
947{
LEROY Christophe549bd8b2016-06-06 13:20:40 +0200948 struct crypto_aead *aead = crypto_aead_reqtfm(areq);
949 struct talitos_ctx *ctx = crypto_aead_ctx(aead);
950 unsigned int ivsize = crypto_aead_ivsize(aead);
951
952 if (edesc->desc.hdr & DESC_HDR_TYPE_IPSEC_ESP)
953 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[6],
954 DMA_FROM_DEVICE);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800955 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[3], DMA_TO_DEVICE);
956 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
957 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[0], DMA_TO_DEVICE);
958
LEROY Christophe6a1e8d12016-06-06 13:20:38 +0200959 talitos_sg_unmap(dev, edesc, areq->src, areq->dst, areq->cryptlen,
960 areq->assoclen);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800961
962 if (edesc->dma_len)
963 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
964 DMA_BIDIRECTIONAL);
LEROY Christophe549bd8b2016-06-06 13:20:40 +0200965
966 if (!(edesc->desc.hdr & DESC_HDR_TYPE_IPSEC_ESP)) {
967 unsigned int dst_nents = edesc->dst_nents ? : 1;
968
969 sg_pcopy_to_buffer(areq->dst, dst_nents, ctx->iv, ivsize,
970 areq->assoclen + areq->cryptlen - ivsize);
971 }
Kim Phillips9c4a7962008-06-23 19:50:15 +0800972}
973
974/*
975 * ipsec_esp descriptor callbacks
976 */
977static void ipsec_esp_encrypt_done(struct device *dev,
978 struct talitos_desc *desc, void *context,
979 int err)
980{
LEROY Christophe549bd8b2016-06-06 13:20:40 +0200981 struct talitos_private *priv = dev_get_drvdata(dev);
982 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +0800983 struct aead_request *areq = context;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800984 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
Herbert Xuaeb4c132015-07-30 17:53:22 +0800985 unsigned int authsize = crypto_aead_authsize(authenc);
Kim Phillips19bbbc62009-03-29 15:53:59 +0800986 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +0800987 struct scatterlist *sg;
988 void *icvdata;
989
Kim Phillips19bbbc62009-03-29 15:53:59 +0800990 edesc = container_of(desc, struct talitos_edesc, desc);
991
Kim Phillips9c4a7962008-06-23 19:50:15 +0800992 ipsec_esp_unmap(dev, edesc, areq);
993
994 /* copy the generated ICV to dst */
Herbert Xuaeb4c132015-07-30 17:53:22 +0800995 if (edesc->icv_ool) {
LEROY Christophe549bd8b2016-06-06 13:20:40 +0200996 if (is_sec1)
997 icvdata = edesc->buf + areq->assoclen + areq->cryptlen;
998 else
999 icvdata = &edesc->link_tbl[edesc->src_nents +
1000 edesc->dst_nents + 2];
Kim Phillips9c4a7962008-06-23 19:50:15 +08001001 sg = sg_last(areq->dst, edesc->dst_nents);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001002 memcpy((char *)sg_virt(sg) + sg->length - authsize,
1003 icvdata, authsize);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001004 }
1005
1006 kfree(edesc);
1007
1008 aead_request_complete(areq, err);
1009}
1010
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001011static void ipsec_esp_decrypt_swauth_done(struct device *dev,
Kim Phillipse938e462009-03-29 15:53:23 +08001012 struct talitos_desc *desc,
1013 void *context, int err)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001014{
1015 struct aead_request *req = context;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001016 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001017 unsigned int authsize = crypto_aead_authsize(authenc);
Kim Phillips19bbbc62009-03-29 15:53:59 +08001018 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001019 struct scatterlist *sg;
Herbert Xuaeb4c132015-07-30 17:53:22 +08001020 char *oicv, *icv;
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001021 struct talitos_private *priv = dev_get_drvdata(dev);
1022 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001023
Kim Phillips19bbbc62009-03-29 15:53:59 +08001024 edesc = container_of(desc, struct talitos_edesc, desc);
1025
Kim Phillips9c4a7962008-06-23 19:50:15 +08001026 ipsec_esp_unmap(dev, edesc, req);
1027
1028 if (!err) {
1029 /* auth check */
Kim Phillips9c4a7962008-06-23 19:50:15 +08001030 sg = sg_last(req->dst, edesc->dst_nents ? : 1);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001031 icv = (char *)sg_virt(sg) + sg->length - authsize;
1032
1033 if (edesc->dma_len) {
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001034 if (is_sec1)
1035 oicv = (char *)&edesc->dma_link_tbl +
1036 req->assoclen + req->cryptlen;
1037 else
1038 oicv = (char *)
1039 &edesc->link_tbl[edesc->src_nents +
Herbert Xuaeb4c132015-07-30 17:53:22 +08001040 edesc->dst_nents + 2];
1041 if (edesc->icv_ool)
1042 icv = oicv + authsize;
1043 } else
1044 oicv = (char *)&edesc->link_tbl[0];
1045
David Gstir79960942015-11-15 17:14:42 +01001046 err = crypto_memneq(oicv, icv, authsize) ? -EBADMSG : 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001047 }
1048
1049 kfree(edesc);
1050
1051 aead_request_complete(req, err);
1052}
1053
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001054static void ipsec_esp_decrypt_hwauth_done(struct device *dev,
Kim Phillipse938e462009-03-29 15:53:23 +08001055 struct talitos_desc *desc,
1056 void *context, int err)
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001057{
1058 struct aead_request *req = context;
Kim Phillips19bbbc62009-03-29 15:53:59 +08001059 struct talitos_edesc *edesc;
1060
1061 edesc = container_of(desc, struct talitos_edesc, desc);
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001062
1063 ipsec_esp_unmap(dev, edesc, req);
1064
1065 /* check ICV auth status */
Kim Phillipse938e462009-03-29 15:53:23 +08001066 if (!err && ((desc->hdr_lo & DESC_HDR_LO_ICCR1_MASK) !=
1067 DESC_HDR_LO_ICCR1_PASS))
1068 err = -EBADMSG;
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001069
1070 kfree(edesc);
1071
1072 aead_request_complete(req, err);
1073}
1074
Kim Phillips9c4a7962008-06-23 19:50:15 +08001075/*
1076 * convert scatterlist to SEC h/w link table format
1077 * stop at cryptlen bytes
1078 */
Herbert Xuaeb4c132015-07-30 17:53:22 +08001079static int sg_to_link_tbl_offset(struct scatterlist *sg, int sg_count,
1080 unsigned int offset, int cryptlen,
1081 struct talitos_ptr *link_tbl_ptr)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001082{
Lee Nipper70bcaca2008-07-03 19:08:46 +08001083 int n_sg = sg_count;
Herbert Xuaeb4c132015-07-30 17:53:22 +08001084 int count = 0;
Lee Nipper70bcaca2008-07-03 19:08:46 +08001085
Herbert Xuaeb4c132015-07-30 17:53:22 +08001086 while (cryptlen && sg && n_sg--) {
1087 unsigned int len = sg_dma_len(sg);
1088
1089 if (offset >= len) {
1090 offset -= len;
1091 goto next;
1092 }
1093
1094 len -= offset;
1095
1096 if (len > cryptlen)
1097 len = cryptlen;
1098
1099 to_talitos_ptr(link_tbl_ptr + count,
1100 sg_dma_address(sg) + offset, 0);
LEROY Christopheb096b542016-06-06 13:20:34 +02001101 to_talitos_ptr_len(link_tbl_ptr + count, len, 0);
1102 to_talitos_ptr_ext_set(link_tbl_ptr + count, 0, 0);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001103 count++;
1104 cryptlen -= len;
1105 offset = 0;
1106
1107next:
Cristian Stoica5be4d4c2015-01-20 10:06:16 +02001108 sg = sg_next(sg);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001109 }
1110
Kim Phillips9c4a7962008-06-23 19:50:15 +08001111 /* tag end of link table */
Herbert Xuaeb4c132015-07-30 17:53:22 +08001112 if (count > 0)
LEROY Christopheb096b542016-06-06 13:20:34 +02001113 to_talitos_ptr_ext_set(link_tbl_ptr + count - 1,
1114 DESC_PTR_LNKTBL_RETURN, 0);
Lee Nipper70bcaca2008-07-03 19:08:46 +08001115
Herbert Xuaeb4c132015-07-30 17:53:22 +08001116 return count;
1117}
1118
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001119static int talitos_sg_map_ext(struct device *dev, struct scatterlist *src,
1120 unsigned int len, struct talitos_edesc *edesc,
1121 struct talitos_ptr *ptr, int sg_count,
1122 unsigned int offset, int tbl_off, int elen)
LEROY Christophe246a87c2016-06-06 13:20:36 +02001123{
LEROY Christophe246a87c2016-06-06 13:20:36 +02001124 struct talitos_private *priv = dev_get_drvdata(dev);
1125 bool is_sec1 = has_ftr_sec1(priv);
1126
LEROY Christophec4cef782018-01-26 17:09:59 +01001127 if (!src) {
1128 *ptr = zero_entry;
1129 return 1;
1130 }
1131
LEROY Christophe246a87c2016-06-06 13:20:36 +02001132 to_talitos_ptr_len(ptr, len, is_sec1);
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001133 to_talitos_ptr_ext_set(ptr, elen, is_sec1);
LEROY Christophe246a87c2016-06-06 13:20:36 +02001134
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001135 if (sg_count == 1) {
1136 to_talitos_ptr(ptr, sg_dma_address(src) + offset, is_sec1);
1137 return sg_count;
LEROY Christophe246a87c2016-06-06 13:20:36 +02001138 }
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001139 if (is_sec1) {
1140 to_talitos_ptr(ptr, edesc->dma_link_tbl + offset, is_sec1);
1141 return sg_count;
1142 }
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001143 sg_count = sg_to_link_tbl_offset(src, sg_count, offset, len + elen,
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001144 &edesc->link_tbl[tbl_off]);
1145 if (sg_count == 1) {
1146 /* Only one segment now, so no link tbl needed*/
1147 copy_talitos_ptr(ptr, &edesc->link_tbl[tbl_off], is_sec1);
1148 return sg_count;
1149 }
1150 to_talitos_ptr(ptr, edesc->dma_link_tbl +
1151 tbl_off * sizeof(struct talitos_ptr), is_sec1);
1152 to_talitos_ptr_ext_or(ptr, DESC_PTR_LNKTBL_JUMP, is_sec1);
1153
LEROY Christophe246a87c2016-06-06 13:20:36 +02001154 return sg_count;
1155}
1156
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001157static int talitos_sg_map(struct device *dev, struct scatterlist *src,
1158 unsigned int len, struct talitos_edesc *edesc,
1159 struct talitos_ptr *ptr, int sg_count,
1160 unsigned int offset, int tbl_off)
1161{
1162 return talitos_sg_map_ext(dev, src, len, edesc, ptr, sg_count, offset,
1163 tbl_off, 0);
1164}
1165
Kim Phillips9c4a7962008-06-23 19:50:15 +08001166/*
1167 * fill in and submit ipsec_esp descriptor
1168 */
Lee Nipper56af8cd2009-03-29 15:50:50 +08001169static int ipsec_esp(struct talitos_edesc *edesc, struct aead_request *areq,
Herbert Xuaeb4c132015-07-30 17:53:22 +08001170 void (*callback)(struct device *dev,
1171 struct talitos_desc *desc,
1172 void *context, int error))
Kim Phillips9c4a7962008-06-23 19:50:15 +08001173{
1174 struct crypto_aead *aead = crypto_aead_reqtfm(areq);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001175 unsigned int authsize = crypto_aead_authsize(aead);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001176 struct talitos_ctx *ctx = crypto_aead_ctx(aead);
1177 struct device *dev = ctx->dev;
1178 struct talitos_desc *desc = &edesc->desc;
1179 unsigned int cryptlen = areq->cryptlen;
Kim Phillipse41256f2009-08-13 11:49:06 +10001180 unsigned int ivsize = crypto_aead_ivsize(aead);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001181 int tbl_off = 0;
Kim Phillipsfa86a262008-07-17 20:20:06 +08001182 int sg_count, ret;
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001183 int elen = 0;
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001184 bool sync_needed = false;
1185 struct talitos_private *priv = dev_get_drvdata(dev);
1186 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001187
1188 /* hmac key */
1189 map_single_talitos_ptr(dev, &desc->ptr[0], ctx->authkeylen, &ctx->key,
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001190 DMA_TO_DEVICE);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001191
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001192 sg_count = edesc->src_nents ?: 1;
1193 if (is_sec1 && sg_count > 1)
1194 sg_copy_to_buffer(areq->src, sg_count, edesc->buf,
1195 areq->assoclen + cryptlen);
1196 else
1197 sg_count = dma_map_sg(dev, areq->src, sg_count,
1198 (areq->src == areq->dst) ?
1199 DMA_BIDIRECTIONAL : DMA_TO_DEVICE);
1200
Kim Phillips9c4a7962008-06-23 19:50:15 +08001201 /* hmac data */
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001202 ret = talitos_sg_map(dev, areq->src, areq->assoclen, edesc,
1203 &desc->ptr[1], sg_count, 0, tbl_off);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001204
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001205 if (ret > 1) {
Horia Geant?340ff602016-04-19 20:33:48 +03001206 tbl_off += ret;
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001207 sync_needed = true;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001208 }
1209
Kim Phillips9c4a7962008-06-23 19:50:15 +08001210 /* cipher iv */
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001211 if (desc->hdr & DESC_HDR_TYPE_IPSEC_ESP) {
1212 to_talitos_ptr(&desc->ptr[2], edesc->iv_dma, is_sec1);
1213 to_talitos_ptr_len(&desc->ptr[2], ivsize, is_sec1);
1214 to_talitos_ptr_ext_set(&desc->ptr[2], 0, is_sec1);
1215 } else {
1216 to_talitos_ptr(&desc->ptr[3], edesc->iv_dma, is_sec1);
1217 to_talitos_ptr_len(&desc->ptr[3], ivsize, is_sec1);
1218 to_talitos_ptr_ext_set(&desc->ptr[3], 0, is_sec1);
1219 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001220
1221 /* cipher key */
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001222 if (desc->hdr & DESC_HDR_TYPE_IPSEC_ESP)
1223 map_single_talitos_ptr(dev, &desc->ptr[3], ctx->enckeylen,
1224 (char *)&ctx->key + ctx->authkeylen,
1225 DMA_TO_DEVICE);
1226 else
1227 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->enckeylen,
1228 (char *)&ctx->key + ctx->authkeylen,
1229 DMA_TO_DEVICE);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001230
1231 /*
1232 * cipher in
1233 * map and adjust cipher len to aead request cryptlen.
1234 * extent is bytes of HMAC postpended to ciphertext,
1235 * typically 12 for ipsec
1236 */
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001237 if ((desc->hdr & DESC_HDR_TYPE_IPSEC_ESP) &&
1238 (desc->hdr & DESC_HDR_MODE1_MDEU_CICV))
1239 elen = authsize;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001240
LEROY Christophe23fb8f72018-03-22 10:57:01 +01001241 ret = talitos_sg_map_ext(dev, areq->src, cryptlen, edesc, &desc->ptr[4],
1242 sg_count, areq->assoclen, tbl_off, elen);
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001243
LEROY Christophebde66672017-10-06 15:04:33 +02001244 if (ret > 1) {
1245 tbl_off += ret;
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001246 sync_needed = true;
Horia Geant?340ff602016-04-19 20:33:48 +03001247 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001248
1249 /* cipher out */
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001250 if (areq->src != areq->dst) {
1251 sg_count = edesc->dst_nents ? : 1;
1252 if (!is_sec1 || sg_count == 1)
1253 dma_map_sg(dev, areq->dst, sg_count, DMA_FROM_DEVICE);
1254 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001255
LEROY Christophe5272b0e2017-10-06 15:04:35 +02001256 ret = talitos_sg_map(dev, areq->dst, cryptlen, edesc, &desc->ptr[5],
1257 sg_count, areq->assoclen, tbl_off);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001258
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001259 if (desc->hdr & DESC_HDR_TYPE_IPSEC_ESP)
1260 to_talitos_ptr_ext_or(&desc->ptr[5], authsize, is_sec1);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001261
LEROY Christophe5272b0e2017-10-06 15:04:35 +02001262 /* ICV data */
1263 if (ret > 1) {
1264 tbl_off += ret;
Herbert Xuaeb4c132015-07-30 17:53:22 +08001265 edesc->icv_ool = true;
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001266 sync_needed = true;
1267
1268 if (desc->hdr & DESC_HDR_TYPE_IPSEC_ESP) {
1269 struct talitos_ptr *tbl_ptr = &edesc->link_tbl[tbl_off];
1270 int offset = (edesc->src_nents + edesc->dst_nents + 2) *
1271 sizeof(struct talitos_ptr) + authsize;
1272
1273 /* Add an entry to the link table for ICV data */
LEROY Christophe5272b0e2017-10-06 15:04:35 +02001274 to_talitos_ptr_ext_set(tbl_ptr - 1, 0, is_sec1);
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001275 to_talitos_ptr_ext_set(tbl_ptr, DESC_PTR_LNKTBL_RETURN,
1276 is_sec1);
1277 to_talitos_ptr_len(tbl_ptr, authsize, is_sec1);
1278
1279 /* icv data follows link tables */
1280 to_talitos_ptr(tbl_ptr, edesc->dma_link_tbl + offset,
1281 is_sec1);
LEROY Christophe5272b0e2017-10-06 15:04:35 +02001282 } else {
1283 dma_addr_t addr = edesc->dma_link_tbl;
1284
1285 if (is_sec1)
1286 addr += areq->assoclen + cryptlen;
1287 else
1288 addr += sizeof(struct talitos_ptr) * tbl_off;
1289
1290 to_talitos_ptr(&desc->ptr[6], addr, is_sec1);
1291 to_talitos_ptr_len(&desc->ptr[6], authsize, is_sec1);
1292 }
1293 } else if (!(desc->hdr & DESC_HDR_TYPE_IPSEC_ESP)) {
1294 ret = talitos_sg_map(dev, areq->dst, authsize, edesc,
1295 &desc->ptr[6], sg_count, areq->assoclen +
1296 cryptlen,
1297 tbl_off);
1298 if (ret > 1) {
1299 tbl_off += ret;
1300 edesc->icv_ool = true;
1301 sync_needed = true;
1302 } else {
1303 edesc->icv_ool = false;
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001304 }
Horia Geant?340ff602016-04-19 20:33:48 +03001305 } else {
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001306 edesc->icv_ool = false;
1307 }
1308
Kim Phillips9c4a7962008-06-23 19:50:15 +08001309 /* iv out */
LEROY Christophe549bd8b2016-06-06 13:20:40 +02001310 if (desc->hdr & DESC_HDR_TYPE_IPSEC_ESP)
1311 map_single_talitos_ptr(dev, &desc->ptr[6], ivsize, ctx->iv,
1312 DMA_FROM_DEVICE);
1313
1314 if (sync_needed)
1315 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
1316 edesc->dma_len,
1317 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001318
Kim Phillips5228f0f2011-07-15 11:21:38 +08001319 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Kim Phillipsfa86a262008-07-17 20:20:06 +08001320 if (ret != -EINPROGRESS) {
1321 ipsec_esp_unmap(dev, edesc, areq);
1322 kfree(edesc);
1323 }
1324 return ret;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001325}
1326
Kim Phillips9c4a7962008-06-23 19:50:15 +08001327/*
Lee Nipper56af8cd2009-03-29 15:50:50 +08001328 * allocate and map the extended descriptor
Kim Phillips9c4a7962008-06-23 19:50:15 +08001329 */
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001330static struct talitos_edesc *talitos_edesc_alloc(struct device *dev,
1331 struct scatterlist *src,
1332 struct scatterlist *dst,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001333 u8 *iv,
1334 unsigned int assoclen,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001335 unsigned int cryptlen,
1336 unsigned int authsize,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001337 unsigned int ivsize,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001338 int icv_stashing,
Horia Geanta62293a32013-11-28 15:11:17 +02001339 u32 cryptoflags,
1340 bool encrypt)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001341{
Lee Nipper56af8cd2009-03-29 15:50:50 +08001342 struct talitos_edesc *edesc;
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001343 int src_nents, dst_nents, alloc_len, dma_len, src_len, dst_len;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001344 dma_addr_t iv_dma = 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001345 gfp_t flags = cryptoflags & CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL :
Kim Phillips586725f2008-07-17 20:19:18 +08001346 GFP_ATOMIC;
LEROY Christophe6f65f6a2015-04-17 16:32:15 +02001347 struct talitos_private *priv = dev_get_drvdata(dev);
1348 bool is_sec1 = has_ftr_sec1(priv);
1349 int max_len = is_sec1 ? TALITOS1_MAX_DATA_LEN : TALITOS2_MAX_DATA_LEN;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001350
LEROY Christophe6f65f6a2015-04-17 16:32:15 +02001351 if (cryptlen + authsize > max_len) {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001352 dev_err(dev, "length exceeds h/w max limit\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08001353 return ERR_PTR(-EINVAL);
1354 }
1355
Horia Geanta62293a32013-11-28 15:11:17 +02001356 if (!dst || dst == src) {
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001357 src_len = assoclen + cryptlen + authsize;
1358 src_nents = sg_nents_for_len(src, src_len);
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001359 if (src_nents < 0) {
1360 dev_err(dev, "Invalid number of src SG.\n");
Christophe Leroy47fbc542019-01-08 06:56:46 +00001361 return ERR_PTR(-EINVAL);
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001362 }
Horia Geanta62293a32013-11-28 15:11:17 +02001363 src_nents = (src_nents == 1) ? 0 : src_nents;
1364 dst_nents = dst ? src_nents : 0;
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001365 dst_len = 0;
Horia Geanta62293a32013-11-28 15:11:17 +02001366 } else { /* dst && dst != src*/
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001367 src_len = assoclen + cryptlen + (encrypt ? 0 : authsize);
1368 src_nents = sg_nents_for_len(src, src_len);
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001369 if (src_nents < 0) {
1370 dev_err(dev, "Invalid number of src SG.\n");
Christophe Leroy47fbc542019-01-08 06:56:46 +00001371 return ERR_PTR(-EINVAL);
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001372 }
Horia Geanta62293a32013-11-28 15:11:17 +02001373 src_nents = (src_nents == 1) ? 0 : src_nents;
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001374 dst_len = assoclen + cryptlen + (encrypt ? authsize : 0);
1375 dst_nents = sg_nents_for_len(dst, dst_len);
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001376 if (dst_nents < 0) {
1377 dev_err(dev, "Invalid number of dst SG.\n");
Christophe Leroy47fbc542019-01-08 06:56:46 +00001378 return ERR_PTR(-EINVAL);
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001379 }
Horia Geanta62293a32013-11-28 15:11:17 +02001380 dst_nents = (dst_nents == 1) ? 0 : dst_nents;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001381 }
1382
1383 /*
1384 * allocate space for base edesc plus the link tables,
Herbert Xuaeb4c132015-07-30 17:53:22 +08001385 * allowing for two separate entries for AD and generated ICV (+ 2),
1386 * and space for two sets of ICVs (stashed and generated)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001387 */
Lee Nipper56af8cd2009-03-29 15:50:50 +08001388 alloc_len = sizeof(struct talitos_edesc);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001389 if (src_nents || dst_nents) {
LEROY Christophe6f65f6a2015-04-17 16:32:15 +02001390 if (is_sec1)
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001391 dma_len = (src_nents ? src_len : 0) +
1392 (dst_nents ? dst_len : 0);
LEROY Christophe6f65f6a2015-04-17 16:32:15 +02001393 else
Herbert Xuaeb4c132015-07-30 17:53:22 +08001394 dma_len = (src_nents + dst_nents + 2) *
1395 sizeof(struct talitos_ptr) + authsize * 2;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001396 alloc_len += dma_len;
1397 } else {
1398 dma_len = 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001399 alloc_len += icv_stashing ? authsize : 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001400 }
Christophe Leroyadcbf712019-01-08 06:56:48 +00001401 alloc_len += ivsize;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001402
Kim Phillips586725f2008-07-17 20:19:18 +08001403 edesc = kmalloc(alloc_len, GFP_DMA | flags);
Christophe Leroy47fbc542019-01-08 06:56:46 +00001404 if (!edesc)
1405 return ERR_PTR(-ENOMEM);
Christophe Leroyadcbf712019-01-08 06:56:48 +00001406 if (ivsize) {
1407 iv = memcpy(((u8 *)edesc) + alloc_len - ivsize, iv, ivsize);
Christophe Leroy47fbc542019-01-08 06:56:46 +00001408 iv_dma = dma_map_single(dev, iv, ivsize, DMA_TO_DEVICE);
Christophe Leroyadcbf712019-01-08 06:56:48 +00001409 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08001410
1411 edesc->src_nents = src_nents;
1412 edesc->dst_nents = dst_nents;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001413 edesc->iv_dma = iv_dma;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001414 edesc->dma_len = dma_len;
Lee Nipper497f2e62010-05-19 19:20:36 +10001415 if (dma_len)
1416 edesc->dma_link_tbl = dma_map_single(dev, &edesc->link_tbl[0],
1417 edesc->dma_len,
1418 DMA_BIDIRECTIONAL);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001419
1420 return edesc;
1421}
1422
Horia Geanta79fd31d2012-08-02 17:16:40 +03001423static struct talitos_edesc *aead_edesc_alloc(struct aead_request *areq, u8 *iv,
Horia Geanta62293a32013-11-28 15:11:17 +02001424 int icv_stashing, bool encrypt)
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001425{
1426 struct crypto_aead *authenc = crypto_aead_reqtfm(areq);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001427 unsigned int authsize = crypto_aead_authsize(authenc);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001428 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001429 unsigned int ivsize = crypto_aead_ivsize(authenc);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001430
Herbert Xuaeb4c132015-07-30 17:53:22 +08001431 return talitos_edesc_alloc(ctx->dev, areq->src, areq->dst,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001432 iv, areq->assoclen, areq->cryptlen,
Herbert Xuaeb4c132015-07-30 17:53:22 +08001433 authsize, ivsize, icv_stashing,
Horia Geanta62293a32013-11-28 15:11:17 +02001434 areq->base.flags, encrypt);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001435}
1436
Lee Nipper56af8cd2009-03-29 15:50:50 +08001437static int aead_encrypt(struct aead_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001438{
1439 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
1440 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001441 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001442
1443 /* allocate extended descriptor */
Horia Geanta62293a32013-11-28 15:11:17 +02001444 edesc = aead_edesc_alloc(req, req->iv, 0, true);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001445 if (IS_ERR(edesc))
1446 return PTR_ERR(edesc);
1447
1448 /* set encrypt */
Lee Nipper70bcaca2008-07-03 19:08:46 +08001449 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001450
Herbert Xuaeb4c132015-07-30 17:53:22 +08001451 return ipsec_esp(edesc, req, ipsec_esp_encrypt_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001452}
1453
Lee Nipper56af8cd2009-03-29 15:50:50 +08001454static int aead_decrypt(struct aead_request *req)
Kim Phillips9c4a7962008-06-23 19:50:15 +08001455{
1456 struct crypto_aead *authenc = crypto_aead_reqtfm(req);
Herbert Xuaeb4c132015-07-30 17:53:22 +08001457 unsigned int authsize = crypto_aead_authsize(authenc);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001458 struct talitos_ctx *ctx = crypto_aead_ctx(authenc);
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001459 struct talitos_private *priv = dev_get_drvdata(ctx->dev);
Lee Nipper56af8cd2009-03-29 15:50:50 +08001460 struct talitos_edesc *edesc;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001461 struct scatterlist *sg;
1462 void *icvdata;
1463
1464 req->cryptlen -= authsize;
1465
1466 /* allocate extended descriptor */
Horia Geanta62293a32013-11-28 15:11:17 +02001467 edesc = aead_edesc_alloc(req, req->iv, 1, false);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001468 if (IS_ERR(edesc))
1469 return PTR_ERR(edesc);
1470
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001471 if ((priv->features & TALITOS_FTR_HW_AUTH_CHECK) &&
Kim Phillipse938e462009-03-29 15:53:23 +08001472 ((!edesc->src_nents && !edesc->dst_nents) ||
1473 priv->features & TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT)) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08001474
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001475 /* decrypt and check the ICV */
Kim Phillipse938e462009-03-29 15:53:23 +08001476 edesc->desc.hdr = ctx->desc_hdr_template |
1477 DESC_HDR_DIR_INBOUND |
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001478 DESC_HDR_MODE1_MDEU_CICV;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001479
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001480 /* reset integrity check result bits */
1481 edesc->desc.hdr_lo = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08001482
Herbert Xuaeb4c132015-07-30 17:53:22 +08001483 return ipsec_esp(edesc, req, ipsec_esp_decrypt_hwauth_done);
Kim Phillipsfe5720e2008-10-12 20:33:14 +08001484 }
Kim Phillipse938e462009-03-29 15:53:23 +08001485
1486 /* Have to check the ICV with software */
1487 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1488
1489 /* stash incoming ICV for later cmp with ICV generated by the h/w */
1490 if (edesc->dma_len)
Herbert Xuaeb4c132015-07-30 17:53:22 +08001491 icvdata = (char *)&edesc->link_tbl[edesc->src_nents +
1492 edesc->dst_nents + 2];
Kim Phillipse938e462009-03-29 15:53:23 +08001493 else
1494 icvdata = &edesc->link_tbl[0];
1495
1496 sg = sg_last(req->src, edesc->src_nents ? : 1);
1497
Herbert Xuaeb4c132015-07-30 17:53:22 +08001498 memcpy(icvdata, (char *)sg_virt(sg) + sg->length - authsize, authsize);
Kim Phillipse938e462009-03-29 15:53:23 +08001499
Herbert Xuaeb4c132015-07-30 17:53:22 +08001500 return ipsec_esp(edesc, req, ipsec_esp_decrypt_swauth_done);
Kim Phillips9c4a7962008-06-23 19:50:15 +08001501}
1502
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001503static int ablkcipher_setkey(struct crypto_ablkcipher *cipher,
1504 const u8 *key, unsigned int keylen)
1505{
1506 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
LEROY Christophe552f74c2017-10-06 15:04:37 +02001507 u32 tmp[DES_EXPKEY_WORDS];
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001508
Martin Hicks2ff2cc72017-05-02 09:38:35 -04001509 if (keylen > TALITOS_MAX_KEY_SIZE) {
1510 crypto_ablkcipher_set_flags(cipher, CRYPTO_TFM_RES_BAD_KEY_LEN);
1511 return -EINVAL;
1512 }
1513
LEROY Christophe552f74c2017-10-06 15:04:37 +02001514 if (unlikely(crypto_ablkcipher_get_flags(cipher) &
1515 CRYPTO_TFM_REQ_WEAK_KEY) &&
1516 !des_ekey(tmp, key)) {
1517 crypto_ablkcipher_set_flags(cipher, CRYPTO_TFM_RES_WEAK_KEY);
1518 return -EINVAL;
1519 }
1520
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001521 memcpy(&ctx->key, key, keylen);
1522 ctx->keylen = keylen;
1523
1524 return 0;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001525}
1526
1527static void common_nonsnoop_unmap(struct device *dev,
1528 struct talitos_edesc *edesc,
1529 struct ablkcipher_request *areq)
1530{
1531 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
LEROY Christophe032d1972015-04-17 16:31:51 +02001532
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001533 talitos_sg_unmap(dev, edesc, areq->src, areq->dst, areq->nbytes, 0);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001534 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2], DMA_TO_DEVICE);
1535 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1], DMA_TO_DEVICE);
1536
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001537 if (edesc->dma_len)
1538 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
1539 DMA_BIDIRECTIONAL);
1540}
1541
1542static void ablkcipher_done(struct device *dev,
1543 struct talitos_desc *desc, void *context,
1544 int err)
1545{
1546 struct ablkcipher_request *areq = context;
Kim Phillips19bbbc62009-03-29 15:53:59 +08001547 struct talitos_edesc *edesc;
1548
1549 edesc = container_of(desc, struct talitos_edesc, desc);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001550
1551 common_nonsnoop_unmap(dev, edesc, areq);
1552
1553 kfree(edesc);
1554
1555 areq->base.complete(&areq->base, err);
1556}
1557
1558static int common_nonsnoop(struct talitos_edesc *edesc,
1559 struct ablkcipher_request *areq,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001560 void (*callback) (struct device *dev,
1561 struct talitos_desc *desc,
1562 void *context, int error))
1563{
1564 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1565 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1566 struct device *dev = ctx->dev;
1567 struct talitos_desc *desc = &edesc->desc;
1568 unsigned int cryptlen = areq->nbytes;
Horia Geanta79fd31d2012-08-02 17:16:40 +03001569 unsigned int ivsize = crypto_ablkcipher_ivsize(cipher);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001570 int sg_count, ret;
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001571 bool sync_needed = false;
LEROY Christophe922f9dc2015-04-17 16:32:07 +02001572 struct talitos_private *priv = dev_get_drvdata(dev);
1573 bool is_sec1 = has_ftr_sec1(priv);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001574
1575 /* first DWORD empty */
LEROY Christophe2529bc32015-04-17 16:31:49 +02001576 desc->ptr[0] = zero_entry;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001577
1578 /* cipher iv */
LEROY Christophe922f9dc2015-04-17 16:32:07 +02001579 to_talitos_ptr(&desc->ptr[1], edesc->iv_dma, is_sec1);
1580 to_talitos_ptr_len(&desc->ptr[1], ivsize, is_sec1);
LEROY Christopheb096b542016-06-06 13:20:34 +02001581 to_talitos_ptr_ext_set(&desc->ptr[1], 0, is_sec1);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001582
1583 /* cipher key */
1584 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001585 (char *)&ctx->key, DMA_TO_DEVICE);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001586
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001587 sg_count = edesc->src_nents ?: 1;
1588 if (is_sec1 && sg_count > 1)
1589 sg_copy_to_buffer(areq->src, sg_count, edesc->buf,
1590 cryptlen);
1591 else
1592 sg_count = dma_map_sg(dev, areq->src, sg_count,
1593 (areq->src == areq->dst) ?
1594 DMA_BIDIRECTIONAL : DMA_TO_DEVICE);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001595 /*
1596 * cipher in
1597 */
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001598 sg_count = talitos_sg_map(dev, areq->src, cryptlen, edesc,
1599 &desc->ptr[3], sg_count, 0, 0);
1600 if (sg_count > 1)
1601 sync_needed = true;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001602
1603 /* cipher out */
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001604 if (areq->src != areq->dst) {
1605 sg_count = edesc->dst_nents ? : 1;
1606 if (!is_sec1 || sg_count == 1)
1607 dma_map_sg(dev, areq->dst, sg_count, DMA_FROM_DEVICE);
1608 }
1609
1610 ret = talitos_sg_map(dev, areq->dst, cryptlen, edesc, &desc->ptr[4],
1611 sg_count, 0, (edesc->src_nents + 1));
1612 if (ret > 1)
1613 sync_needed = true;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001614
1615 /* iv out */
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001616 map_single_talitos_ptr(dev, &desc->ptr[5], ivsize, ctx->iv,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001617 DMA_FROM_DEVICE);
1618
1619 /* last DWORD empty */
LEROY Christophe2529bc32015-04-17 16:31:49 +02001620 desc->ptr[6] = zero_entry;
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001621
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001622 if (sync_needed)
1623 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
1624 edesc->dma_len, DMA_BIDIRECTIONAL);
1625
Kim Phillips5228f0f2011-07-15 11:21:38 +08001626 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001627 if (ret != -EINPROGRESS) {
1628 common_nonsnoop_unmap(dev, edesc, areq);
1629 kfree(edesc);
1630 }
1631 return ret;
1632}
1633
Kim Phillipse938e462009-03-29 15:53:23 +08001634static struct talitos_edesc *ablkcipher_edesc_alloc(struct ablkcipher_request *
Horia Geanta62293a32013-11-28 15:11:17 +02001635 areq, bool encrypt)
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001636{
1637 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1638 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
Horia Geanta79fd31d2012-08-02 17:16:40 +03001639 unsigned int ivsize = crypto_ablkcipher_ivsize(cipher);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001640
Herbert Xuaeb4c132015-07-30 17:53:22 +08001641 return talitos_edesc_alloc(ctx->dev, areq->src, areq->dst,
Horia Geanta79fd31d2012-08-02 17:16:40 +03001642 areq->info, 0, areq->nbytes, 0, ivsize, 0,
Horia Geanta62293a32013-11-28 15:11:17 +02001643 areq->base.flags, encrypt);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001644}
1645
1646static int ablkcipher_encrypt(struct ablkcipher_request *areq)
1647{
1648 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1649 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1650 struct talitos_edesc *edesc;
1651
1652 /* allocate extended descriptor */
Horia Geanta62293a32013-11-28 15:11:17 +02001653 edesc = ablkcipher_edesc_alloc(areq, true);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001654 if (IS_ERR(edesc))
1655 return PTR_ERR(edesc);
1656
1657 /* set encrypt */
1658 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_MODE0_ENCRYPT;
1659
Kim Phillipsfebec542011-07-15 11:21:39 +08001660 return common_nonsnoop(edesc, areq, ablkcipher_done);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001661}
1662
1663static int ablkcipher_decrypt(struct ablkcipher_request *areq)
1664{
1665 struct crypto_ablkcipher *cipher = crypto_ablkcipher_reqtfm(areq);
1666 struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher);
1667 struct talitos_edesc *edesc;
1668
1669 /* allocate extended descriptor */
Horia Geanta62293a32013-11-28 15:11:17 +02001670 edesc = ablkcipher_edesc_alloc(areq, false);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001671 if (IS_ERR(edesc))
1672 return PTR_ERR(edesc);
1673
1674 edesc->desc.hdr = ctx->desc_hdr_template | DESC_HDR_DIR_INBOUND;
1675
Kim Phillipsfebec542011-07-15 11:21:39 +08001676 return common_nonsnoop(edesc, areq, ablkcipher_done);
Lee Nipper4de9d0b2009-03-29 15:52:32 +08001677}
1678
Lee Nipper497f2e62010-05-19 19:20:36 +10001679static void common_nonsnoop_hash_unmap(struct device *dev,
1680 struct talitos_edesc *edesc,
1681 struct ahash_request *areq)
1682{
1683 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
LEROY Christophe922f9dc2015-04-17 16:32:07 +02001684 struct talitos_private *priv = dev_get_drvdata(dev);
1685 bool is_sec1 = has_ftr_sec1(priv);
Lee Nipper497f2e62010-05-19 19:20:36 +10001686
1687 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[5], DMA_FROM_DEVICE);
1688
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001689 talitos_sg_unmap(dev, edesc, req_ctx->psrc, NULL, 0, 0);
LEROY Christophe032d1972015-04-17 16:31:51 +02001690
Lee Nipper497f2e62010-05-19 19:20:36 +10001691 /* When using hashctx-in, must unmap it. */
LEROY Christophe922f9dc2015-04-17 16:32:07 +02001692 if (from_talitos_ptr_len(&edesc->desc.ptr[1], is_sec1))
Lee Nipper497f2e62010-05-19 19:20:36 +10001693 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[1],
1694 DMA_TO_DEVICE);
1695
LEROY Christophe922f9dc2015-04-17 16:32:07 +02001696 if (from_talitos_ptr_len(&edesc->desc.ptr[2], is_sec1))
Lee Nipper497f2e62010-05-19 19:20:36 +10001697 unmap_single_talitos_ptr(dev, &edesc->desc.ptr[2],
1698 DMA_TO_DEVICE);
1699
Lee Nipper497f2e62010-05-19 19:20:36 +10001700 if (edesc->dma_len)
1701 dma_unmap_single(dev, edesc->dma_link_tbl, edesc->dma_len,
1702 DMA_BIDIRECTIONAL);
1703
1704}
1705
1706static void ahash_done(struct device *dev,
1707 struct talitos_desc *desc, void *context,
1708 int err)
1709{
1710 struct ahash_request *areq = context;
1711 struct talitos_edesc *edesc =
1712 container_of(desc, struct talitos_edesc, desc);
1713 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1714
1715 if (!req_ctx->last && req_ctx->to_hash_later) {
1716 /* Position any partial block for next update/final/finup */
1717 memcpy(req_ctx->buf, req_ctx->bufnext, req_ctx->to_hash_later);
Lee Nipper5e833bc2010-06-16 15:29:15 +10001718 req_ctx->nbuf = req_ctx->to_hash_later;
Lee Nipper497f2e62010-05-19 19:20:36 +10001719 }
1720 common_nonsnoop_hash_unmap(dev, edesc, areq);
1721
1722 kfree(edesc);
1723
1724 areq->base.complete(&areq->base, err);
1725}
1726
LEROY Christophe2d029052015-04-17 16:32:18 +02001727/*
1728 * SEC1 doesn't like hashing of 0 sized message, so we do the padding
1729 * ourself and submit a padded block
1730 */
1731void talitos_handle_buggy_hash(struct talitos_ctx *ctx,
1732 struct talitos_edesc *edesc,
1733 struct talitos_ptr *ptr)
1734{
1735 static u8 padded_hash[64] = {
1736 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1737 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1738 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1739 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1740 };
1741
1742 pr_err_once("Bug in SEC1, padding ourself\n");
1743 edesc->desc.hdr &= ~DESC_HDR_MODE0_MDEU_PAD;
1744 map_single_talitos_ptr(ctx->dev, ptr, sizeof(padded_hash),
1745 (char *)padded_hash, DMA_TO_DEVICE);
1746}
1747
Lee Nipper497f2e62010-05-19 19:20:36 +10001748static int common_nonsnoop_hash(struct talitos_edesc *edesc,
1749 struct ahash_request *areq, unsigned int length,
1750 void (*callback) (struct device *dev,
1751 struct talitos_desc *desc,
1752 void *context, int error))
1753{
1754 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1755 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1756 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1757 struct device *dev = ctx->dev;
1758 struct talitos_desc *desc = &edesc->desc;
LEROY Christophe032d1972015-04-17 16:31:51 +02001759 int ret;
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001760 bool sync_needed = false;
LEROY Christophe922f9dc2015-04-17 16:32:07 +02001761 struct talitos_private *priv = dev_get_drvdata(dev);
1762 bool is_sec1 = has_ftr_sec1(priv);
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001763 int sg_count;
Lee Nipper497f2e62010-05-19 19:20:36 +10001764
1765 /* first DWORD empty */
1766 desc->ptr[0] = zero_entry;
1767
Kim Phillips60f208d2010-05-19 19:21:53 +10001768 /* hash context in */
1769 if (!req_ctx->first || req_ctx->swinit) {
Lee Nipper497f2e62010-05-19 19:20:36 +10001770 map_single_talitos_ptr(dev, &desc->ptr[1],
1771 req_ctx->hw_context_size,
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001772 (char *)req_ctx->hw_context,
Lee Nipper497f2e62010-05-19 19:20:36 +10001773 DMA_TO_DEVICE);
Kim Phillips60f208d2010-05-19 19:21:53 +10001774 req_ctx->swinit = 0;
Lee Nipper497f2e62010-05-19 19:20:36 +10001775 } else {
1776 desc->ptr[1] = zero_entry;
Lee Nipper497f2e62010-05-19 19:20:36 +10001777 }
LEROY Christophe14922592017-09-13 12:44:51 +02001778 /* Indicate next op is not the first. */
1779 req_ctx->first = 0;
Lee Nipper497f2e62010-05-19 19:20:36 +10001780
1781 /* HMAC key */
1782 if (ctx->keylen)
1783 map_single_talitos_ptr(dev, &desc->ptr[2], ctx->keylen,
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001784 (char *)&ctx->key, DMA_TO_DEVICE);
Lee Nipper497f2e62010-05-19 19:20:36 +10001785 else
1786 desc->ptr[2] = zero_entry;
1787
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001788 sg_count = edesc->src_nents ?: 1;
1789 if (is_sec1 && sg_count > 1)
LEROY Christopheb60f7912017-09-13 12:44:57 +02001790 sg_copy_to_buffer(req_ctx->psrc, sg_count, edesc->buf, length);
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001791 else
1792 sg_count = dma_map_sg(dev, req_ctx->psrc, sg_count,
1793 DMA_TO_DEVICE);
Lee Nipper497f2e62010-05-19 19:20:36 +10001794 /*
1795 * data in
1796 */
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001797 sg_count = talitos_sg_map(dev, req_ctx->psrc, length, edesc,
1798 &desc->ptr[3], sg_count, 0, 0);
1799 if (sg_count > 1)
1800 sync_needed = true;
Lee Nipper497f2e62010-05-19 19:20:36 +10001801
1802 /* fifth DWORD empty */
1803 desc->ptr[4] = zero_entry;
1804
1805 /* hash/HMAC out -or- hash context out */
1806 if (req_ctx->last)
1807 map_single_talitos_ptr(dev, &desc->ptr[5],
1808 crypto_ahash_digestsize(tfm),
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001809 areq->result, DMA_FROM_DEVICE);
Lee Nipper497f2e62010-05-19 19:20:36 +10001810 else
1811 map_single_talitos_ptr(dev, &desc->ptr[5],
1812 req_ctx->hw_context_size,
LEROY Christophea2b35aa2015-04-17 16:31:57 +02001813 req_ctx->hw_context, DMA_FROM_DEVICE);
Lee Nipper497f2e62010-05-19 19:20:36 +10001814
1815 /* last DWORD empty */
1816 desc->ptr[6] = zero_entry;
1817
LEROY Christophe2d029052015-04-17 16:32:18 +02001818 if (is_sec1 && from_talitos_ptr_len(&desc->ptr[3], true) == 0)
1819 talitos_handle_buggy_hash(ctx, edesc, &desc->ptr[3]);
1820
LEROY Christophe6a1e8d12016-06-06 13:20:38 +02001821 if (sync_needed)
1822 dma_sync_single_for_device(dev, edesc->dma_link_tbl,
1823 edesc->dma_len, DMA_BIDIRECTIONAL);
1824
Kim Phillips5228f0f2011-07-15 11:21:38 +08001825 ret = talitos_submit(dev, ctx->ch, desc, callback, areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10001826 if (ret != -EINPROGRESS) {
1827 common_nonsnoop_hash_unmap(dev, edesc, areq);
1828 kfree(edesc);
1829 }
1830 return ret;
1831}
1832
1833static struct talitos_edesc *ahash_edesc_alloc(struct ahash_request *areq,
1834 unsigned int nbytes)
1835{
1836 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1837 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1838 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1839
Herbert Xuaeb4c132015-07-30 17:53:22 +08001840 return talitos_edesc_alloc(ctx->dev, req_ctx->psrc, NULL, NULL, 0,
Horia Geanta62293a32013-11-28 15:11:17 +02001841 nbytes, 0, 0, 0, areq->base.flags, false);
Lee Nipper497f2e62010-05-19 19:20:36 +10001842}
1843
1844static int ahash_init(struct ahash_request *areq)
1845{
1846 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1847 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1848
1849 /* Initialize the context */
Lee Nipper5e833bc2010-06-16 15:29:15 +10001850 req_ctx->nbuf = 0;
Kim Phillips60f208d2010-05-19 19:21:53 +10001851 req_ctx->first = 1; /* first indicates h/w must init its context */
1852 req_ctx->swinit = 0; /* assume h/w init of context */
Lee Nipper497f2e62010-05-19 19:20:36 +10001853 req_ctx->hw_context_size =
1854 (crypto_ahash_digestsize(tfm) <= SHA256_DIGEST_SIZE)
1855 ? TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256
1856 : TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512;
1857
1858 return 0;
1859}
1860
Kim Phillips60f208d2010-05-19 19:21:53 +10001861/*
1862 * on h/w without explicit sha224 support, we initialize h/w context
1863 * manually with sha224 constants, and tell it to run sha256.
1864 */
1865static int ahash_init_sha224_swinit(struct ahash_request *areq)
1866{
1867 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1868
1869 ahash_init(areq);
1870 req_ctx->swinit = 1;/* prevent h/w initting context with sha256 values*/
1871
Kim Phillipsa7524472010-09-23 15:56:38 +08001872 req_ctx->hw_context[0] = SHA224_H0;
1873 req_ctx->hw_context[1] = SHA224_H1;
1874 req_ctx->hw_context[2] = SHA224_H2;
1875 req_ctx->hw_context[3] = SHA224_H3;
1876 req_ctx->hw_context[4] = SHA224_H4;
1877 req_ctx->hw_context[5] = SHA224_H5;
1878 req_ctx->hw_context[6] = SHA224_H6;
1879 req_ctx->hw_context[7] = SHA224_H7;
Kim Phillips60f208d2010-05-19 19:21:53 +10001880
1881 /* init 64-bit count */
1882 req_ctx->hw_context[8] = 0;
1883 req_ctx->hw_context[9] = 0;
1884
1885 return 0;
1886}
1887
Lee Nipper497f2e62010-05-19 19:20:36 +10001888static int ahash_process_req(struct ahash_request *areq, unsigned int nbytes)
1889{
1890 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
1891 struct talitos_ctx *ctx = crypto_ahash_ctx(tfm);
1892 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1893 struct talitos_edesc *edesc;
1894 unsigned int blocksize =
1895 crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
1896 unsigned int nbytes_to_hash;
1897 unsigned int to_hash_later;
Lee Nipper5e833bc2010-06-16 15:29:15 +10001898 unsigned int nsg;
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001899 int nents;
Lee Nipper497f2e62010-05-19 19:20:36 +10001900
Lee Nipper5e833bc2010-06-16 15:29:15 +10001901 if (!req_ctx->last && (nbytes + req_ctx->nbuf <= blocksize)) {
1902 /* Buffer up to one whole block */
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001903 nents = sg_nents_for_len(areq->src, nbytes);
1904 if (nents < 0) {
1905 dev_err(ctx->dev, "Invalid number of src SG.\n");
1906 return nents;
1907 }
1908 sg_copy_to_buffer(areq->src, nents,
Lee Nipper5e833bc2010-06-16 15:29:15 +10001909 req_ctx->buf + req_ctx->nbuf, nbytes);
1910 req_ctx->nbuf += nbytes;
Lee Nipper497f2e62010-05-19 19:20:36 +10001911 return 0;
1912 }
1913
Lee Nipper5e833bc2010-06-16 15:29:15 +10001914 /* At least (blocksize + 1) bytes are available to hash */
1915 nbytes_to_hash = nbytes + req_ctx->nbuf;
1916 to_hash_later = nbytes_to_hash & (blocksize - 1);
1917
1918 if (req_ctx->last)
1919 to_hash_later = 0;
1920 else if (to_hash_later)
1921 /* There is a partial block. Hash the full block(s) now */
1922 nbytes_to_hash -= to_hash_later;
1923 else {
1924 /* Keep one block buffered */
1925 nbytes_to_hash -= blocksize;
1926 to_hash_later = blocksize;
1927 }
1928
1929 /* Chain in any previously buffered data */
1930 if (req_ctx->nbuf) {
1931 nsg = (req_ctx->nbuf < nbytes_to_hash) ? 2 : 1;
1932 sg_init_table(req_ctx->bufsl, nsg);
1933 sg_set_buf(req_ctx->bufsl, req_ctx->buf, req_ctx->nbuf);
1934 if (nsg > 1)
Dan Williamsc56f6d12015-08-07 18:15:13 +02001935 sg_chain(req_ctx->bufsl, 2, areq->src);
Lee Nipper497f2e62010-05-19 19:20:36 +10001936 req_ctx->psrc = req_ctx->bufsl;
Lee Nipper5e833bc2010-06-16 15:29:15 +10001937 } else
Lee Nipper497f2e62010-05-19 19:20:36 +10001938 req_ctx->psrc = areq->src;
Lee Nipper497f2e62010-05-19 19:20:36 +10001939
Lee Nipper5e833bc2010-06-16 15:29:15 +10001940 if (to_hash_later) {
LABBE Corentin8e409fe2015-11-04 21:13:34 +01001941 nents = sg_nents_for_len(areq->src, nbytes);
1942 if (nents < 0) {
1943 dev_err(ctx->dev, "Invalid number of src SG.\n");
1944 return nents;
1945 }
Akinobu Mitad0525722013-07-08 16:01:55 -07001946 sg_pcopy_to_buffer(areq->src, nents,
Lee Nipper5e833bc2010-06-16 15:29:15 +10001947 req_ctx->bufnext,
1948 to_hash_later,
1949 nbytes - to_hash_later);
Lee Nipper497f2e62010-05-19 19:20:36 +10001950 }
Lee Nipper5e833bc2010-06-16 15:29:15 +10001951 req_ctx->to_hash_later = to_hash_later;
Lee Nipper497f2e62010-05-19 19:20:36 +10001952
Lee Nipper5e833bc2010-06-16 15:29:15 +10001953 /* Allocate extended descriptor */
Lee Nipper497f2e62010-05-19 19:20:36 +10001954 edesc = ahash_edesc_alloc(areq, nbytes_to_hash);
1955 if (IS_ERR(edesc))
1956 return PTR_ERR(edesc);
1957
1958 edesc->desc.hdr = ctx->desc_hdr_template;
1959
1960 /* On last one, request SEC to pad; otherwise continue */
1961 if (req_ctx->last)
1962 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_PAD;
1963 else
1964 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_CONT;
1965
Kim Phillips60f208d2010-05-19 19:21:53 +10001966 /* request SEC to INIT hash. */
1967 if (req_ctx->first && !req_ctx->swinit)
Lee Nipper497f2e62010-05-19 19:20:36 +10001968 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_INIT;
1969
1970 /* When the tfm context has a keylen, it's an HMAC.
1971 * A first or last (ie. not middle) descriptor must request HMAC.
1972 */
1973 if (ctx->keylen && (req_ctx->first || req_ctx->last))
1974 edesc->desc.hdr |= DESC_HDR_MODE0_MDEU_HMAC;
1975
1976 return common_nonsnoop_hash(edesc, areq, nbytes_to_hash,
1977 ahash_done);
1978}
1979
1980static int ahash_update(struct ahash_request *areq)
1981{
1982 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1983
1984 req_ctx->last = 0;
1985
1986 return ahash_process_req(areq, areq->nbytes);
1987}
1988
1989static int ahash_final(struct ahash_request *areq)
1990{
1991 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
1992
1993 req_ctx->last = 1;
1994
1995 return ahash_process_req(areq, 0);
1996}
1997
1998static int ahash_finup(struct ahash_request *areq)
1999{
2000 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
2001
2002 req_ctx->last = 1;
2003
2004 return ahash_process_req(areq, areq->nbytes);
2005}
2006
2007static int ahash_digest(struct ahash_request *areq)
2008{
2009 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
Kim Phillips60f208d2010-05-19 19:21:53 +10002010 struct crypto_ahash *ahash = crypto_ahash_reqtfm(areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10002011
Kim Phillips60f208d2010-05-19 19:21:53 +10002012 ahash->init(areq);
Lee Nipper497f2e62010-05-19 19:20:36 +10002013 req_ctx->last = 1;
2014
2015 return ahash_process_req(areq, areq->nbytes);
2016}
2017
Horia Geant?3639ca82016-04-21 19:24:55 +03002018static int ahash_export(struct ahash_request *areq, void *out)
2019{
2020 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
2021 struct talitos_export_state *export = out;
2022
2023 memcpy(export->hw_context, req_ctx->hw_context,
2024 req_ctx->hw_context_size);
2025 memcpy(export->buf, req_ctx->buf, req_ctx->nbuf);
2026 export->swinit = req_ctx->swinit;
2027 export->first = req_ctx->first;
2028 export->last = req_ctx->last;
2029 export->to_hash_later = req_ctx->to_hash_later;
2030 export->nbuf = req_ctx->nbuf;
2031
2032 return 0;
2033}
2034
2035static int ahash_import(struct ahash_request *areq, const void *in)
2036{
2037 struct talitos_ahash_req_ctx *req_ctx = ahash_request_ctx(areq);
2038 struct crypto_ahash *tfm = crypto_ahash_reqtfm(areq);
2039 const struct talitos_export_state *export = in;
2040
2041 memset(req_ctx, 0, sizeof(*req_ctx));
2042 req_ctx->hw_context_size =
2043 (crypto_ahash_digestsize(tfm) <= SHA256_DIGEST_SIZE)
2044 ? TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256
2045 : TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512;
2046 memcpy(req_ctx->hw_context, export->hw_context,
2047 req_ctx->hw_context_size);
2048 memcpy(req_ctx->buf, export->buf, export->nbuf);
2049 req_ctx->swinit = export->swinit;
2050 req_ctx->first = export->first;
2051 req_ctx->last = export->last;
2052 req_ctx->to_hash_later = export->to_hash_later;
2053 req_ctx->nbuf = export->nbuf;
2054
2055 return 0;
2056}
2057
Lee Nipper79b3a412011-11-21 16:13:25 +08002058struct keyhash_result {
2059 struct completion completion;
2060 int err;
2061};
2062
2063static void keyhash_complete(struct crypto_async_request *req, int err)
2064{
2065 struct keyhash_result *res = req->data;
2066
2067 if (err == -EINPROGRESS)
2068 return;
2069
2070 res->err = err;
2071 complete(&res->completion);
2072}
2073
2074static int keyhash(struct crypto_ahash *tfm, const u8 *key, unsigned int keylen,
2075 u8 *hash)
2076{
2077 struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
2078
2079 struct scatterlist sg[1];
2080 struct ahash_request *req;
2081 struct keyhash_result hresult;
2082 int ret;
2083
2084 init_completion(&hresult.completion);
2085
2086 req = ahash_request_alloc(tfm, GFP_KERNEL);
2087 if (!req)
2088 return -ENOMEM;
2089
2090 /* Keep tfm keylen == 0 during hash of the long key */
2091 ctx->keylen = 0;
2092 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2093 keyhash_complete, &hresult);
2094
2095 sg_init_one(&sg[0], key, keylen);
2096
2097 ahash_request_set_crypt(req, sg, hash, keylen);
2098 ret = crypto_ahash_digest(req);
2099 switch (ret) {
2100 case 0:
2101 break;
2102 case -EINPROGRESS:
2103 case -EBUSY:
2104 ret = wait_for_completion_interruptible(
2105 &hresult.completion);
2106 if (!ret)
2107 ret = hresult.err;
2108 break;
2109 default:
2110 break;
2111 }
2112 ahash_request_free(req);
2113
2114 return ret;
2115}
2116
2117static int ahash_setkey(struct crypto_ahash *tfm, const u8 *key,
2118 unsigned int keylen)
2119{
2120 struct talitos_ctx *ctx = crypto_tfm_ctx(crypto_ahash_tfm(tfm));
2121 unsigned int blocksize =
2122 crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm));
2123 unsigned int digestsize = crypto_ahash_digestsize(tfm);
2124 unsigned int keysize = keylen;
2125 u8 hash[SHA512_DIGEST_SIZE];
2126 int ret;
2127
2128 if (keylen <= blocksize)
2129 memcpy(ctx->key, key, keysize);
2130 else {
2131 /* Must get the hash of the long key */
2132 ret = keyhash(tfm, key, keylen, hash);
2133
2134 if (ret) {
2135 crypto_ahash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
2136 return -EINVAL;
2137 }
2138
2139 keysize = digestsize;
2140 memcpy(ctx->key, hash, digestsize);
2141 }
2142
2143 ctx->keylen = keysize;
2144
2145 return 0;
2146}
2147
2148
Kim Phillips9c4a7962008-06-23 19:50:15 +08002149struct talitos_alg_template {
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002150 u32 type;
LEROY Christopheb0057762016-06-06 13:20:44 +02002151 u32 priority;
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002152 union {
2153 struct crypto_alg crypto;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002154 struct ahash_alg hash;
Herbert Xuaeb4c132015-07-30 17:53:22 +08002155 struct aead_alg aead;
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002156 } alg;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002157 __be32 desc_hdr_template;
2158};
2159
2160static struct talitos_alg_template driver_algs[] = {
Horia Geanta991155b2013-03-20 16:31:38 +02002161 /* AEAD algorithms. These use a single-pass ipsec_esp descriptor */
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002162 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002163 .alg.aead = {
2164 .base = {
2165 .cra_name = "authenc(hmac(sha1),cbc(aes))",
2166 .cra_driver_name = "authenc-hmac-sha1-"
2167 "cbc-aes-talitos",
2168 .cra_blocksize = AES_BLOCK_SIZE,
2169 .cra_flags = CRYPTO_ALG_ASYNC,
2170 },
2171 .ivsize = AES_BLOCK_SIZE,
2172 .maxauthsize = SHA1_DIGEST_SIZE,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002173 },
Kim Phillips9c4a7962008-06-23 19:50:15 +08002174 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2175 DESC_HDR_SEL0_AESU |
2176 DESC_HDR_MODE0_AESU_CBC |
2177 DESC_HDR_SEL1_MDEUA |
2178 DESC_HDR_MODE1_MDEU_INIT |
2179 DESC_HDR_MODE1_MDEU_PAD |
2180 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
Lee Nipper70bcaca2008-07-03 19:08:46 +08002181 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002182 { .type = CRYPTO_ALG_TYPE_AEAD,
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002183 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2184 .alg.aead = {
2185 .base = {
2186 .cra_name = "authenc(hmac(sha1),cbc(aes))",
2187 .cra_driver_name = "authenc-hmac-sha1-"
2188 "cbc-aes-talitos",
2189 .cra_blocksize = AES_BLOCK_SIZE,
2190 .cra_flags = CRYPTO_ALG_ASYNC,
2191 },
2192 .ivsize = AES_BLOCK_SIZE,
2193 .maxauthsize = SHA1_DIGEST_SIZE,
2194 },
2195 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2196 DESC_HDR_SEL0_AESU |
2197 DESC_HDR_MODE0_AESU_CBC |
2198 DESC_HDR_SEL1_MDEUA |
2199 DESC_HDR_MODE1_MDEU_INIT |
2200 DESC_HDR_MODE1_MDEU_PAD |
2201 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
2202 },
2203 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002204 .alg.aead = {
2205 .base = {
2206 .cra_name = "authenc(hmac(sha1),"
2207 "cbc(des3_ede))",
2208 .cra_driver_name = "authenc-hmac-sha1-"
2209 "cbc-3des-talitos",
2210 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2211 .cra_flags = CRYPTO_ALG_ASYNC,
2212 },
2213 .ivsize = DES3_EDE_BLOCK_SIZE,
2214 .maxauthsize = SHA1_DIGEST_SIZE,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002215 },
Lee Nipper70bcaca2008-07-03 19:08:46 +08002216 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2217 DESC_HDR_SEL0_DEU |
2218 DESC_HDR_MODE0_DEU_CBC |
2219 DESC_HDR_MODE0_DEU_3DES |
2220 DESC_HDR_SEL1_MDEUA |
2221 DESC_HDR_MODE1_MDEU_INIT |
2222 DESC_HDR_MODE1_MDEU_PAD |
2223 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
Lee Nipper3952f172008-07-10 18:29:18 +08002224 },
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002225 { .type = CRYPTO_ALG_TYPE_AEAD,
2226 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2227 .alg.aead = {
2228 .base = {
2229 .cra_name = "authenc(hmac(sha1),"
2230 "cbc(des3_ede))",
2231 .cra_driver_name = "authenc-hmac-sha1-"
2232 "cbc-3des-talitos",
2233 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2234 .cra_flags = CRYPTO_ALG_ASYNC,
2235 },
2236 .ivsize = DES3_EDE_BLOCK_SIZE,
2237 .maxauthsize = SHA1_DIGEST_SIZE,
2238 },
2239 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2240 DESC_HDR_SEL0_DEU |
2241 DESC_HDR_MODE0_DEU_CBC |
2242 DESC_HDR_MODE0_DEU_3DES |
2243 DESC_HDR_SEL1_MDEUA |
2244 DESC_HDR_MODE1_MDEU_INIT |
2245 DESC_HDR_MODE1_MDEU_PAD |
2246 DESC_HDR_MODE1_MDEU_SHA1_HMAC,
2247 },
Horia Geanta357fb602012-07-03 19:16:53 +03002248 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002249 .alg.aead = {
2250 .base = {
2251 .cra_name = "authenc(hmac(sha224),cbc(aes))",
2252 .cra_driver_name = "authenc-hmac-sha224-"
2253 "cbc-aes-talitos",
2254 .cra_blocksize = AES_BLOCK_SIZE,
2255 .cra_flags = CRYPTO_ALG_ASYNC,
2256 },
2257 .ivsize = AES_BLOCK_SIZE,
2258 .maxauthsize = SHA224_DIGEST_SIZE,
Horia Geanta357fb602012-07-03 19:16:53 +03002259 },
2260 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2261 DESC_HDR_SEL0_AESU |
2262 DESC_HDR_MODE0_AESU_CBC |
2263 DESC_HDR_SEL1_MDEUA |
2264 DESC_HDR_MODE1_MDEU_INIT |
2265 DESC_HDR_MODE1_MDEU_PAD |
2266 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
2267 },
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002268 { .type = CRYPTO_ALG_TYPE_AEAD,
2269 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2270 .alg.aead = {
2271 .base = {
2272 .cra_name = "authenc(hmac(sha224),cbc(aes))",
2273 .cra_driver_name = "authenc-hmac-sha224-"
2274 "cbc-aes-talitos",
2275 .cra_blocksize = AES_BLOCK_SIZE,
2276 .cra_flags = CRYPTO_ALG_ASYNC,
2277 },
2278 .ivsize = AES_BLOCK_SIZE,
2279 .maxauthsize = SHA224_DIGEST_SIZE,
2280 },
2281 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2282 DESC_HDR_SEL0_AESU |
2283 DESC_HDR_MODE0_AESU_CBC |
2284 DESC_HDR_SEL1_MDEUA |
2285 DESC_HDR_MODE1_MDEU_INIT |
2286 DESC_HDR_MODE1_MDEU_PAD |
2287 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
2288 },
Horia Geanta357fb602012-07-03 19:16:53 +03002289 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002290 .alg.aead = {
2291 .base = {
2292 .cra_name = "authenc(hmac(sha224),"
2293 "cbc(des3_ede))",
2294 .cra_driver_name = "authenc-hmac-sha224-"
2295 "cbc-3des-talitos",
2296 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2297 .cra_flags = CRYPTO_ALG_ASYNC,
2298 },
2299 .ivsize = DES3_EDE_BLOCK_SIZE,
2300 .maxauthsize = SHA224_DIGEST_SIZE,
Horia Geanta357fb602012-07-03 19:16:53 +03002301 },
2302 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2303 DESC_HDR_SEL0_DEU |
2304 DESC_HDR_MODE0_DEU_CBC |
2305 DESC_HDR_MODE0_DEU_3DES |
2306 DESC_HDR_SEL1_MDEUA |
2307 DESC_HDR_MODE1_MDEU_INIT |
2308 DESC_HDR_MODE1_MDEU_PAD |
2309 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
2310 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002311 { .type = CRYPTO_ALG_TYPE_AEAD,
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002312 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2313 .alg.aead = {
2314 .base = {
2315 .cra_name = "authenc(hmac(sha224),"
2316 "cbc(des3_ede))",
2317 .cra_driver_name = "authenc-hmac-sha224-"
2318 "cbc-3des-talitos",
2319 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2320 .cra_flags = CRYPTO_ALG_ASYNC,
2321 },
2322 .ivsize = DES3_EDE_BLOCK_SIZE,
2323 .maxauthsize = SHA224_DIGEST_SIZE,
2324 },
2325 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2326 DESC_HDR_SEL0_DEU |
2327 DESC_HDR_MODE0_DEU_CBC |
2328 DESC_HDR_MODE0_DEU_3DES |
2329 DESC_HDR_SEL1_MDEUA |
2330 DESC_HDR_MODE1_MDEU_INIT |
2331 DESC_HDR_MODE1_MDEU_PAD |
2332 DESC_HDR_MODE1_MDEU_SHA224_HMAC,
2333 },
2334 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002335 .alg.aead = {
2336 .base = {
2337 .cra_name = "authenc(hmac(sha256),cbc(aes))",
2338 .cra_driver_name = "authenc-hmac-sha256-"
2339 "cbc-aes-talitos",
2340 .cra_blocksize = AES_BLOCK_SIZE,
2341 .cra_flags = CRYPTO_ALG_ASYNC,
2342 },
2343 .ivsize = AES_BLOCK_SIZE,
2344 .maxauthsize = SHA256_DIGEST_SIZE,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002345 },
Lee Nipper3952f172008-07-10 18:29:18 +08002346 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2347 DESC_HDR_SEL0_AESU |
2348 DESC_HDR_MODE0_AESU_CBC |
2349 DESC_HDR_SEL1_MDEUA |
2350 DESC_HDR_MODE1_MDEU_INIT |
2351 DESC_HDR_MODE1_MDEU_PAD |
2352 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2353 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002354 { .type = CRYPTO_ALG_TYPE_AEAD,
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002355 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2356 .alg.aead = {
2357 .base = {
2358 .cra_name = "authenc(hmac(sha256),cbc(aes))",
2359 .cra_driver_name = "authenc-hmac-sha256-"
2360 "cbc-aes-talitos",
2361 .cra_blocksize = AES_BLOCK_SIZE,
2362 .cra_flags = CRYPTO_ALG_ASYNC,
2363 },
2364 .ivsize = AES_BLOCK_SIZE,
2365 .maxauthsize = SHA256_DIGEST_SIZE,
2366 },
2367 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2368 DESC_HDR_SEL0_AESU |
2369 DESC_HDR_MODE0_AESU_CBC |
2370 DESC_HDR_SEL1_MDEUA |
2371 DESC_HDR_MODE1_MDEU_INIT |
2372 DESC_HDR_MODE1_MDEU_PAD |
2373 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2374 },
2375 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002376 .alg.aead = {
2377 .base = {
2378 .cra_name = "authenc(hmac(sha256),"
2379 "cbc(des3_ede))",
2380 .cra_driver_name = "authenc-hmac-sha256-"
2381 "cbc-3des-talitos",
2382 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2383 .cra_flags = CRYPTO_ALG_ASYNC,
2384 },
2385 .ivsize = DES3_EDE_BLOCK_SIZE,
2386 .maxauthsize = SHA256_DIGEST_SIZE,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002387 },
Lee Nipper3952f172008-07-10 18:29:18 +08002388 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2389 DESC_HDR_SEL0_DEU |
2390 DESC_HDR_MODE0_DEU_CBC |
2391 DESC_HDR_MODE0_DEU_3DES |
2392 DESC_HDR_SEL1_MDEUA |
2393 DESC_HDR_MODE1_MDEU_INIT |
2394 DESC_HDR_MODE1_MDEU_PAD |
2395 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2396 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002397 { .type = CRYPTO_ALG_TYPE_AEAD,
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002398 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2399 .alg.aead = {
2400 .base = {
2401 .cra_name = "authenc(hmac(sha256),"
2402 "cbc(des3_ede))",
2403 .cra_driver_name = "authenc-hmac-sha256-"
2404 "cbc-3des-talitos",
2405 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2406 .cra_flags = CRYPTO_ALG_ASYNC,
2407 },
2408 .ivsize = DES3_EDE_BLOCK_SIZE,
2409 .maxauthsize = SHA256_DIGEST_SIZE,
2410 },
2411 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2412 DESC_HDR_SEL0_DEU |
2413 DESC_HDR_MODE0_DEU_CBC |
2414 DESC_HDR_MODE0_DEU_3DES |
2415 DESC_HDR_SEL1_MDEUA |
2416 DESC_HDR_MODE1_MDEU_INIT |
2417 DESC_HDR_MODE1_MDEU_PAD |
2418 DESC_HDR_MODE1_MDEU_SHA256_HMAC,
2419 },
2420 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002421 .alg.aead = {
2422 .base = {
2423 .cra_name = "authenc(hmac(sha384),cbc(aes))",
2424 .cra_driver_name = "authenc-hmac-sha384-"
2425 "cbc-aes-talitos",
2426 .cra_blocksize = AES_BLOCK_SIZE,
2427 .cra_flags = CRYPTO_ALG_ASYNC,
2428 },
2429 .ivsize = AES_BLOCK_SIZE,
2430 .maxauthsize = SHA384_DIGEST_SIZE,
Horia Geanta357fb602012-07-03 19:16:53 +03002431 },
2432 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2433 DESC_HDR_SEL0_AESU |
2434 DESC_HDR_MODE0_AESU_CBC |
2435 DESC_HDR_SEL1_MDEUB |
2436 DESC_HDR_MODE1_MDEU_INIT |
2437 DESC_HDR_MODE1_MDEU_PAD |
2438 DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
2439 },
2440 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002441 .alg.aead = {
2442 .base = {
2443 .cra_name = "authenc(hmac(sha384),"
2444 "cbc(des3_ede))",
2445 .cra_driver_name = "authenc-hmac-sha384-"
2446 "cbc-3des-talitos",
2447 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2448 .cra_flags = CRYPTO_ALG_ASYNC,
2449 },
2450 .ivsize = DES3_EDE_BLOCK_SIZE,
2451 .maxauthsize = SHA384_DIGEST_SIZE,
Horia Geanta357fb602012-07-03 19:16:53 +03002452 },
2453 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2454 DESC_HDR_SEL0_DEU |
2455 DESC_HDR_MODE0_DEU_CBC |
2456 DESC_HDR_MODE0_DEU_3DES |
2457 DESC_HDR_SEL1_MDEUB |
2458 DESC_HDR_MODE1_MDEU_INIT |
2459 DESC_HDR_MODE1_MDEU_PAD |
2460 DESC_HDR_MODE1_MDEUB_SHA384_HMAC,
2461 },
2462 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002463 .alg.aead = {
2464 .base = {
2465 .cra_name = "authenc(hmac(sha512),cbc(aes))",
2466 .cra_driver_name = "authenc-hmac-sha512-"
2467 "cbc-aes-talitos",
2468 .cra_blocksize = AES_BLOCK_SIZE,
2469 .cra_flags = CRYPTO_ALG_ASYNC,
2470 },
2471 .ivsize = AES_BLOCK_SIZE,
2472 .maxauthsize = SHA512_DIGEST_SIZE,
Horia Geanta357fb602012-07-03 19:16:53 +03002473 },
2474 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2475 DESC_HDR_SEL0_AESU |
2476 DESC_HDR_MODE0_AESU_CBC |
2477 DESC_HDR_SEL1_MDEUB |
2478 DESC_HDR_MODE1_MDEU_INIT |
2479 DESC_HDR_MODE1_MDEU_PAD |
2480 DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
2481 },
2482 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002483 .alg.aead = {
2484 .base = {
2485 .cra_name = "authenc(hmac(sha512),"
2486 "cbc(des3_ede))",
2487 .cra_driver_name = "authenc-hmac-sha512-"
2488 "cbc-3des-talitos",
2489 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2490 .cra_flags = CRYPTO_ALG_ASYNC,
2491 },
2492 .ivsize = DES3_EDE_BLOCK_SIZE,
2493 .maxauthsize = SHA512_DIGEST_SIZE,
Horia Geanta357fb602012-07-03 19:16:53 +03002494 },
2495 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2496 DESC_HDR_SEL0_DEU |
2497 DESC_HDR_MODE0_DEU_CBC |
2498 DESC_HDR_MODE0_DEU_3DES |
2499 DESC_HDR_SEL1_MDEUB |
2500 DESC_HDR_MODE1_MDEU_INIT |
2501 DESC_HDR_MODE1_MDEU_PAD |
2502 DESC_HDR_MODE1_MDEUB_SHA512_HMAC,
2503 },
2504 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002505 .alg.aead = {
2506 .base = {
2507 .cra_name = "authenc(hmac(md5),cbc(aes))",
2508 .cra_driver_name = "authenc-hmac-md5-"
2509 "cbc-aes-talitos",
2510 .cra_blocksize = AES_BLOCK_SIZE,
2511 .cra_flags = CRYPTO_ALG_ASYNC,
2512 },
2513 .ivsize = AES_BLOCK_SIZE,
2514 .maxauthsize = MD5_DIGEST_SIZE,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002515 },
Lee Nipper3952f172008-07-10 18:29:18 +08002516 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2517 DESC_HDR_SEL0_AESU |
2518 DESC_HDR_MODE0_AESU_CBC |
2519 DESC_HDR_SEL1_MDEUA |
2520 DESC_HDR_MODE1_MDEU_INIT |
2521 DESC_HDR_MODE1_MDEU_PAD |
2522 DESC_HDR_MODE1_MDEU_MD5_HMAC,
2523 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002524 { .type = CRYPTO_ALG_TYPE_AEAD,
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002525 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2526 .alg.aead = {
2527 .base = {
2528 .cra_name = "authenc(hmac(md5),cbc(aes))",
2529 .cra_driver_name = "authenc-hmac-md5-"
2530 "cbc-aes-talitos",
2531 .cra_blocksize = AES_BLOCK_SIZE,
2532 .cra_flags = CRYPTO_ALG_ASYNC,
2533 },
2534 .ivsize = AES_BLOCK_SIZE,
2535 .maxauthsize = MD5_DIGEST_SIZE,
2536 },
2537 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2538 DESC_HDR_SEL0_AESU |
2539 DESC_HDR_MODE0_AESU_CBC |
2540 DESC_HDR_SEL1_MDEUA |
2541 DESC_HDR_MODE1_MDEU_INIT |
2542 DESC_HDR_MODE1_MDEU_PAD |
2543 DESC_HDR_MODE1_MDEU_MD5_HMAC,
2544 },
2545 { .type = CRYPTO_ALG_TYPE_AEAD,
Herbert Xuaeb4c132015-07-30 17:53:22 +08002546 .alg.aead = {
2547 .base = {
2548 .cra_name = "authenc(hmac(md5),cbc(des3_ede))",
2549 .cra_driver_name = "authenc-hmac-md5-"
2550 "cbc-3des-talitos",
2551 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2552 .cra_flags = CRYPTO_ALG_ASYNC,
2553 },
2554 .ivsize = DES3_EDE_BLOCK_SIZE,
2555 .maxauthsize = MD5_DIGEST_SIZE,
Lee Nipper56af8cd2009-03-29 15:50:50 +08002556 },
Lee Nipper3952f172008-07-10 18:29:18 +08002557 .desc_hdr_template = DESC_HDR_TYPE_IPSEC_ESP |
2558 DESC_HDR_SEL0_DEU |
2559 DESC_HDR_MODE0_DEU_CBC |
2560 DESC_HDR_MODE0_DEU_3DES |
2561 DESC_HDR_SEL1_MDEUA |
2562 DESC_HDR_MODE1_MDEU_INIT |
2563 DESC_HDR_MODE1_MDEU_PAD |
2564 DESC_HDR_MODE1_MDEU_MD5_HMAC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002565 },
LEROY Christophe7405c8d2016-06-06 13:20:46 +02002566 { .type = CRYPTO_ALG_TYPE_AEAD,
2567 .priority = TALITOS_CRA_PRIORITY_AEAD_HSNA,
2568 .alg.aead = {
2569 .base = {
2570 .cra_name = "authenc(hmac(md5),cbc(des3_ede))",
2571 .cra_driver_name = "authenc-hmac-md5-"
2572 "cbc-3des-talitos",
2573 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2574 .cra_flags = CRYPTO_ALG_ASYNC,
2575 },
2576 .ivsize = DES3_EDE_BLOCK_SIZE,
2577 .maxauthsize = MD5_DIGEST_SIZE,
2578 },
2579 .desc_hdr_template = DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU |
2580 DESC_HDR_SEL0_DEU |
2581 DESC_HDR_MODE0_DEU_CBC |
2582 DESC_HDR_MODE0_DEU_3DES |
2583 DESC_HDR_SEL1_MDEUA |
2584 DESC_HDR_MODE1_MDEU_INIT |
2585 DESC_HDR_MODE1_MDEU_PAD |
2586 DESC_HDR_MODE1_MDEU_MD5_HMAC,
2587 },
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002588 /* ABLKCIPHER algorithms. */
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002589 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2590 .alg.crypto = {
LEROY Christophe5e75ae12015-12-01 12:44:15 +01002591 .cra_name = "ecb(aes)",
2592 .cra_driver_name = "ecb-aes-talitos",
2593 .cra_blocksize = AES_BLOCK_SIZE,
2594 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2595 CRYPTO_ALG_ASYNC,
2596 .cra_ablkcipher = {
2597 .min_keysize = AES_MIN_KEY_SIZE,
2598 .max_keysize = AES_MAX_KEY_SIZE,
2599 .ivsize = AES_BLOCK_SIZE,
2600 }
2601 },
2602 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2603 DESC_HDR_SEL0_AESU,
2604 },
2605 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2606 .alg.crypto = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002607 .cra_name = "cbc(aes)",
2608 .cra_driver_name = "cbc-aes-talitos",
2609 .cra_blocksize = AES_BLOCK_SIZE,
2610 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2611 CRYPTO_ALG_ASYNC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002612 .cra_ablkcipher = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002613 .min_keysize = AES_MIN_KEY_SIZE,
2614 .max_keysize = AES_MAX_KEY_SIZE,
2615 .ivsize = AES_BLOCK_SIZE,
2616 }
2617 },
2618 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2619 DESC_HDR_SEL0_AESU |
2620 DESC_HDR_MODE0_AESU_CBC,
2621 },
Lee Nipperd5e4aae2010-05-19 19:18:38 +10002622 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2623 .alg.crypto = {
LEROY Christophe5e75ae12015-12-01 12:44:15 +01002624 .cra_name = "ctr(aes)",
2625 .cra_driver_name = "ctr-aes-talitos",
2626 .cra_blocksize = AES_BLOCK_SIZE,
2627 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2628 CRYPTO_ALG_ASYNC,
2629 .cra_ablkcipher = {
2630 .min_keysize = AES_MIN_KEY_SIZE,
2631 .max_keysize = AES_MAX_KEY_SIZE,
2632 .ivsize = AES_BLOCK_SIZE,
2633 }
2634 },
LEROY Christophe47ab7202017-10-06 15:04:43 +02002635 .desc_hdr_template = DESC_HDR_TYPE_AESU_CTR_NONSNOOP |
LEROY Christophe5e75ae12015-12-01 12:44:15 +01002636 DESC_HDR_SEL0_AESU |
2637 DESC_HDR_MODE0_AESU_CTR,
2638 },
2639 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2640 .alg.crypto = {
2641 .cra_name = "ecb(des)",
2642 .cra_driver_name = "ecb-des-talitos",
2643 .cra_blocksize = DES_BLOCK_SIZE,
2644 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2645 CRYPTO_ALG_ASYNC,
2646 .cra_ablkcipher = {
2647 .min_keysize = DES_KEY_SIZE,
2648 .max_keysize = DES_KEY_SIZE,
2649 .ivsize = DES_BLOCK_SIZE,
2650 }
2651 },
2652 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2653 DESC_HDR_SEL0_DEU,
2654 },
2655 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2656 .alg.crypto = {
2657 .cra_name = "cbc(des)",
2658 .cra_driver_name = "cbc-des-talitos",
2659 .cra_blocksize = DES_BLOCK_SIZE,
2660 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2661 CRYPTO_ALG_ASYNC,
2662 .cra_ablkcipher = {
2663 .min_keysize = DES_KEY_SIZE,
2664 .max_keysize = DES_KEY_SIZE,
2665 .ivsize = DES_BLOCK_SIZE,
2666 }
2667 },
2668 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2669 DESC_HDR_SEL0_DEU |
2670 DESC_HDR_MODE0_DEU_CBC,
2671 },
2672 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2673 .alg.crypto = {
2674 .cra_name = "ecb(des3_ede)",
2675 .cra_driver_name = "ecb-3des-talitos",
2676 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2677 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2678 CRYPTO_ALG_ASYNC,
2679 .cra_ablkcipher = {
2680 .min_keysize = DES3_EDE_KEY_SIZE,
2681 .max_keysize = DES3_EDE_KEY_SIZE,
2682 .ivsize = DES3_EDE_BLOCK_SIZE,
2683 }
2684 },
2685 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2686 DESC_HDR_SEL0_DEU |
2687 DESC_HDR_MODE0_DEU_3DES,
2688 },
2689 { .type = CRYPTO_ALG_TYPE_ABLKCIPHER,
2690 .alg.crypto = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002691 .cra_name = "cbc(des3_ede)",
2692 .cra_driver_name = "cbc-3des-talitos",
2693 .cra_blocksize = DES3_EDE_BLOCK_SIZE,
2694 .cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER |
2695 CRYPTO_ALG_ASYNC,
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002696 .cra_ablkcipher = {
Lee Nipper4de9d0b2009-03-29 15:52:32 +08002697 .min_keysize = DES3_EDE_KEY_SIZE,
2698 .max_keysize = DES3_EDE_KEY_SIZE,
2699 .ivsize = DES3_EDE_BLOCK_SIZE,
2700 }
2701 },
2702 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2703 DESC_HDR_SEL0_DEU |
2704 DESC_HDR_MODE0_DEU_CBC |
2705 DESC_HDR_MODE0_DEU_3DES,
Lee Nipper497f2e62010-05-19 19:20:36 +10002706 },
2707 /* AHASH algorithms. */
2708 { .type = CRYPTO_ALG_TYPE_AHASH,
2709 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002710 .halg.digestsize = MD5_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002711 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper497f2e62010-05-19 19:20:36 +10002712 .halg.base = {
2713 .cra_name = "md5",
2714 .cra_driver_name = "md5-talitos",
Martin Hicksb3988612015-03-03 08:21:34 -05002715 .cra_blocksize = MD5_HMAC_BLOCK_SIZE,
Lee Nipper497f2e62010-05-19 19:20:36 +10002716 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2717 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002718 }
2719 },
2720 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2721 DESC_HDR_SEL0_MDEUA |
2722 DESC_HDR_MODE0_MDEU_MD5,
2723 },
2724 { .type = CRYPTO_ALG_TYPE_AHASH,
2725 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002726 .halg.digestsize = SHA1_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002727 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper497f2e62010-05-19 19:20:36 +10002728 .halg.base = {
2729 .cra_name = "sha1",
2730 .cra_driver_name = "sha1-talitos",
2731 .cra_blocksize = SHA1_BLOCK_SIZE,
2732 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2733 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002734 }
2735 },
2736 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2737 DESC_HDR_SEL0_MDEUA |
2738 DESC_HDR_MODE0_MDEU_SHA1,
2739 },
2740 { .type = CRYPTO_ALG_TYPE_AHASH,
2741 .alg.hash = {
Kim Phillips60f208d2010-05-19 19:21:53 +10002742 .halg.digestsize = SHA224_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002743 .halg.statesize = sizeof(struct talitos_export_state),
Kim Phillips60f208d2010-05-19 19:21:53 +10002744 .halg.base = {
2745 .cra_name = "sha224",
2746 .cra_driver_name = "sha224-talitos",
2747 .cra_blocksize = SHA224_BLOCK_SIZE,
2748 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2749 CRYPTO_ALG_ASYNC,
Kim Phillips60f208d2010-05-19 19:21:53 +10002750 }
2751 },
2752 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2753 DESC_HDR_SEL0_MDEUA |
2754 DESC_HDR_MODE0_MDEU_SHA224,
2755 },
2756 { .type = CRYPTO_ALG_TYPE_AHASH,
2757 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002758 .halg.digestsize = SHA256_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002759 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper497f2e62010-05-19 19:20:36 +10002760 .halg.base = {
2761 .cra_name = "sha256",
2762 .cra_driver_name = "sha256-talitos",
2763 .cra_blocksize = SHA256_BLOCK_SIZE,
2764 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2765 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002766 }
2767 },
2768 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2769 DESC_HDR_SEL0_MDEUA |
2770 DESC_HDR_MODE0_MDEU_SHA256,
2771 },
2772 { .type = CRYPTO_ALG_TYPE_AHASH,
2773 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002774 .halg.digestsize = SHA384_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002775 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper497f2e62010-05-19 19:20:36 +10002776 .halg.base = {
2777 .cra_name = "sha384",
2778 .cra_driver_name = "sha384-talitos",
2779 .cra_blocksize = SHA384_BLOCK_SIZE,
2780 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2781 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002782 }
2783 },
2784 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2785 DESC_HDR_SEL0_MDEUB |
2786 DESC_HDR_MODE0_MDEUB_SHA384,
2787 },
2788 { .type = CRYPTO_ALG_TYPE_AHASH,
2789 .alg.hash = {
Lee Nipper497f2e62010-05-19 19:20:36 +10002790 .halg.digestsize = SHA512_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002791 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper497f2e62010-05-19 19:20:36 +10002792 .halg.base = {
2793 .cra_name = "sha512",
2794 .cra_driver_name = "sha512-talitos",
2795 .cra_blocksize = SHA512_BLOCK_SIZE,
2796 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2797 CRYPTO_ALG_ASYNC,
Lee Nipper497f2e62010-05-19 19:20:36 +10002798 }
2799 },
2800 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2801 DESC_HDR_SEL0_MDEUB |
2802 DESC_HDR_MODE0_MDEUB_SHA512,
2803 },
Lee Nipper79b3a412011-11-21 16:13:25 +08002804 { .type = CRYPTO_ALG_TYPE_AHASH,
2805 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002806 .halg.digestsize = MD5_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002807 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper79b3a412011-11-21 16:13:25 +08002808 .halg.base = {
2809 .cra_name = "hmac(md5)",
2810 .cra_driver_name = "hmac-md5-talitos",
Martin Hicksb3988612015-03-03 08:21:34 -05002811 .cra_blocksize = MD5_HMAC_BLOCK_SIZE,
Lee Nipper79b3a412011-11-21 16:13:25 +08002812 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2813 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002814 }
2815 },
2816 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2817 DESC_HDR_SEL0_MDEUA |
2818 DESC_HDR_MODE0_MDEU_MD5,
2819 },
2820 { .type = CRYPTO_ALG_TYPE_AHASH,
2821 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002822 .halg.digestsize = SHA1_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002823 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper79b3a412011-11-21 16:13:25 +08002824 .halg.base = {
2825 .cra_name = "hmac(sha1)",
2826 .cra_driver_name = "hmac-sha1-talitos",
2827 .cra_blocksize = SHA1_BLOCK_SIZE,
2828 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2829 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002830 }
2831 },
2832 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2833 DESC_HDR_SEL0_MDEUA |
2834 DESC_HDR_MODE0_MDEU_SHA1,
2835 },
2836 { .type = CRYPTO_ALG_TYPE_AHASH,
2837 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002838 .halg.digestsize = SHA224_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002839 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper79b3a412011-11-21 16:13:25 +08002840 .halg.base = {
2841 .cra_name = "hmac(sha224)",
2842 .cra_driver_name = "hmac-sha224-talitos",
2843 .cra_blocksize = SHA224_BLOCK_SIZE,
2844 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2845 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002846 }
2847 },
2848 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2849 DESC_HDR_SEL0_MDEUA |
2850 DESC_HDR_MODE0_MDEU_SHA224,
2851 },
2852 { .type = CRYPTO_ALG_TYPE_AHASH,
2853 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002854 .halg.digestsize = SHA256_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002855 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper79b3a412011-11-21 16:13:25 +08002856 .halg.base = {
2857 .cra_name = "hmac(sha256)",
2858 .cra_driver_name = "hmac-sha256-talitos",
2859 .cra_blocksize = SHA256_BLOCK_SIZE,
2860 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2861 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002862 }
2863 },
2864 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2865 DESC_HDR_SEL0_MDEUA |
2866 DESC_HDR_MODE0_MDEU_SHA256,
2867 },
2868 { .type = CRYPTO_ALG_TYPE_AHASH,
2869 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002870 .halg.digestsize = SHA384_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002871 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper79b3a412011-11-21 16:13:25 +08002872 .halg.base = {
2873 .cra_name = "hmac(sha384)",
2874 .cra_driver_name = "hmac-sha384-talitos",
2875 .cra_blocksize = SHA384_BLOCK_SIZE,
2876 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2877 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002878 }
2879 },
2880 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2881 DESC_HDR_SEL0_MDEUB |
2882 DESC_HDR_MODE0_MDEUB_SHA384,
2883 },
2884 { .type = CRYPTO_ALG_TYPE_AHASH,
2885 .alg.hash = {
Lee Nipper79b3a412011-11-21 16:13:25 +08002886 .halg.digestsize = SHA512_DIGEST_SIZE,
Horia Geant?3639ca82016-04-21 19:24:55 +03002887 .halg.statesize = sizeof(struct talitos_export_state),
Lee Nipper79b3a412011-11-21 16:13:25 +08002888 .halg.base = {
2889 .cra_name = "hmac(sha512)",
2890 .cra_driver_name = "hmac-sha512-talitos",
2891 .cra_blocksize = SHA512_BLOCK_SIZE,
2892 .cra_flags = CRYPTO_ALG_TYPE_AHASH |
2893 CRYPTO_ALG_ASYNC,
Lee Nipper79b3a412011-11-21 16:13:25 +08002894 }
2895 },
2896 .desc_hdr_template = DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
2897 DESC_HDR_SEL0_MDEUB |
2898 DESC_HDR_MODE0_MDEUB_SHA512,
2899 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08002900};
2901
2902struct talitos_crypto_alg {
2903 struct list_head entry;
2904 struct device *dev;
Lee Nipperacbf7c622010-05-19 19:19:33 +10002905 struct talitos_alg_template algt;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002906};
2907
Jonas Eymann89d124c2016-04-19 20:33:47 +03002908static int talitos_init_common(struct talitos_ctx *ctx,
2909 struct talitos_crypto_alg *talitos_alg)
Kim Phillips9c4a7962008-06-23 19:50:15 +08002910{
Kim Phillips5228f0f2011-07-15 11:21:38 +08002911 struct talitos_private *priv;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002912
2913 /* update context with ptr to dev */
2914 ctx->dev = talitos_alg->dev;
Kim Phillips19bbbc62009-03-29 15:53:59 +08002915
Kim Phillips5228f0f2011-07-15 11:21:38 +08002916 /* assign SEC channel to tfm in round-robin fashion */
2917 priv = dev_get_drvdata(ctx->dev);
2918 ctx->ch = atomic_inc_return(&priv->last_chan) &
2919 (priv->num_channels - 1);
2920
Kim Phillips9c4a7962008-06-23 19:50:15 +08002921 /* copy descriptor header template value */
Lee Nipperacbf7c622010-05-19 19:19:33 +10002922 ctx->desc_hdr_template = talitos_alg->algt.desc_hdr_template;
Kim Phillips9c4a7962008-06-23 19:50:15 +08002923
Kim Phillips602dba52011-07-15 11:21:39 +08002924 /* select done notification */
2925 ctx->desc_hdr_template |= DESC_HDR_DONE_NOTIFY;
2926
Lee Nipper497f2e62010-05-19 19:20:36 +10002927 return 0;
2928}
2929
Jonas Eymann89d124c2016-04-19 20:33:47 +03002930static int talitos_cra_init(struct crypto_tfm *tfm)
2931{
2932 struct crypto_alg *alg = tfm->__crt_alg;
2933 struct talitos_crypto_alg *talitos_alg;
2934 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
2935
2936 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_AHASH)
2937 talitos_alg = container_of(__crypto_ahash_alg(alg),
2938 struct talitos_crypto_alg,
2939 algt.alg.hash);
2940 else
2941 talitos_alg = container_of(alg, struct talitos_crypto_alg,
2942 algt.alg.crypto);
2943
2944 return talitos_init_common(ctx, talitos_alg);
2945}
2946
Herbert Xuaeb4c132015-07-30 17:53:22 +08002947static int talitos_cra_init_aead(struct crypto_aead *tfm)
Lee Nipper497f2e62010-05-19 19:20:36 +10002948{
Jonas Eymann89d124c2016-04-19 20:33:47 +03002949 struct aead_alg *alg = crypto_aead_alg(tfm);
2950 struct talitos_crypto_alg *talitos_alg;
2951 struct talitos_ctx *ctx = crypto_aead_ctx(tfm);
2952
2953 talitos_alg = container_of(alg, struct talitos_crypto_alg,
2954 algt.alg.aead);
2955
2956 return talitos_init_common(ctx, talitos_alg);
Kim Phillips9c4a7962008-06-23 19:50:15 +08002957}
2958
Lee Nipper497f2e62010-05-19 19:20:36 +10002959static int talitos_cra_init_ahash(struct crypto_tfm *tfm)
2960{
2961 struct talitos_ctx *ctx = crypto_tfm_ctx(tfm);
2962
2963 talitos_cra_init(tfm);
2964
2965 ctx->keylen = 0;
2966 crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm),
2967 sizeof(struct talitos_ahash_req_ctx));
2968
2969 return 0;
2970}
2971
Kim Phillips9c4a7962008-06-23 19:50:15 +08002972/*
2973 * given the alg's descriptor header template, determine whether descriptor
2974 * type and primary/secondary execution units required match the hw
2975 * capabilities description provided in the device tree node.
2976 */
2977static int hw_supports(struct device *dev, __be32 desc_hdr_template)
2978{
2979 struct talitos_private *priv = dev_get_drvdata(dev);
2980 int ret;
2981
2982 ret = (1 << DESC_TYPE(desc_hdr_template) & priv->desc_types) &&
2983 (1 << PRIMARY_EU(desc_hdr_template) & priv->exec_units);
2984
2985 if (SECONDARY_EU(desc_hdr_template))
2986 ret = ret && (1 << SECONDARY_EU(desc_hdr_template)
2987 & priv->exec_units);
2988
2989 return ret;
2990}
2991
Grant Likely2dc11582010-08-06 09:25:50 -06002992static int talitos_remove(struct platform_device *ofdev)
Kim Phillips9c4a7962008-06-23 19:50:15 +08002993{
2994 struct device *dev = &ofdev->dev;
2995 struct talitos_private *priv = dev_get_drvdata(dev);
2996 struct talitos_crypto_alg *t_alg, *n;
2997 int i;
2998
2999 list_for_each_entry_safe(t_alg, n, &priv->alg_list, entry) {
Lee Nipperacbf7c622010-05-19 19:19:33 +10003000 switch (t_alg->algt.type) {
3001 case CRYPTO_ALG_TYPE_ABLKCIPHER:
Lee Nipperacbf7c622010-05-19 19:19:33 +10003002 break;
Herbert Xuaeb4c132015-07-30 17:53:22 +08003003 case CRYPTO_ALG_TYPE_AEAD:
3004 crypto_unregister_aead(&t_alg->algt.alg.aead);
Lee Nipperacbf7c622010-05-19 19:19:33 +10003005 case CRYPTO_ALG_TYPE_AHASH:
3006 crypto_unregister_ahash(&t_alg->algt.alg.hash);
3007 break;
3008 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08003009 list_del(&t_alg->entry);
3010 kfree(t_alg);
3011 }
3012
3013 if (hw_supports(dev, DESC_HDR_SEL0_RNG))
3014 talitos_unregister_rng(dev);
3015
Aaron Sierra35a3bb32015-08-05 16:52:08 -05003016 for (i = 0; priv->chan && i < priv->num_channels; i++)
Kim Phillips0b798242010-09-23 15:56:08 +08003017 kfree(priv->chan[i].fifo);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003018
Kim Phillips4b9926282009-08-13 11:50:38 +10003019 kfree(priv->chan);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003020
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003021 for (i = 0; i < 2; i++)
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003022 if (priv->irq[i]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003023 free_irq(priv->irq[i], dev);
3024 irq_dispose_mapping(priv->irq[i]);
3025 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08003026
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003027 tasklet_kill(&priv->done_task[0]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003028 if (priv->irq[1])
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003029 tasklet_kill(&priv->done_task[1]);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003030
3031 iounmap(priv->reg);
3032
Kim Phillips9c4a7962008-06-23 19:50:15 +08003033 kfree(priv);
3034
3035 return 0;
3036}
3037
3038static struct talitos_crypto_alg *talitos_alg_alloc(struct device *dev,
3039 struct talitos_alg_template
3040 *template)
3041{
Kim Phillips60f208d2010-05-19 19:21:53 +10003042 struct talitos_private *priv = dev_get_drvdata(dev);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003043 struct talitos_crypto_alg *t_alg;
3044 struct crypto_alg *alg;
3045
3046 t_alg = kzalloc(sizeof(struct talitos_crypto_alg), GFP_KERNEL);
3047 if (!t_alg)
3048 return ERR_PTR(-ENOMEM);
3049
Lee Nipperacbf7c622010-05-19 19:19:33 +10003050 t_alg->algt = *template;
3051
3052 switch (t_alg->algt.type) {
3053 case CRYPTO_ALG_TYPE_ABLKCIPHER:
Lee Nipper497f2e62010-05-19 19:20:36 +10003054 alg = &t_alg->algt.alg.crypto;
3055 alg->cra_init = talitos_cra_init;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05003056 alg->cra_type = &crypto_ablkcipher_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05003057 alg->cra_ablkcipher.setkey = ablkcipher_setkey;
3058 alg->cra_ablkcipher.encrypt = ablkcipher_encrypt;
3059 alg->cra_ablkcipher.decrypt = ablkcipher_decrypt;
3060 alg->cra_ablkcipher.geniv = "eseqiv";
Lee Nipper497f2e62010-05-19 19:20:36 +10003061 break;
Lee Nipperacbf7c622010-05-19 19:19:33 +10003062 case CRYPTO_ALG_TYPE_AEAD:
Herbert Xuaeb4c132015-07-30 17:53:22 +08003063 alg = &t_alg->algt.alg.aead.base;
Herbert Xuaeb4c132015-07-30 17:53:22 +08003064 t_alg->algt.alg.aead.init = talitos_cra_init_aead;
3065 t_alg->algt.alg.aead.setkey = aead_setkey;
3066 t_alg->algt.alg.aead.encrypt = aead_encrypt;
3067 t_alg->algt.alg.aead.decrypt = aead_decrypt;
LEROY Christophe6bf30e62017-10-06 15:04:39 +02003068 if (!(priv->features & TALITOS_FTR_SHA224_HWINIT) &&
3069 !strncmp(alg->cra_name, "authenc(hmac(sha224)", 20)) {
3070 kfree(t_alg);
3071 return ERR_PTR(-ENOTSUPP);
3072 }
Lee Nipperacbf7c622010-05-19 19:19:33 +10003073 break;
3074 case CRYPTO_ALG_TYPE_AHASH:
3075 alg = &t_alg->algt.alg.hash.halg.base;
Lee Nipper497f2e62010-05-19 19:20:36 +10003076 alg->cra_init = talitos_cra_init_ahash;
Kim Phillipsd4cd3282012-08-08 20:32:00 -05003077 alg->cra_type = &crypto_ahash_type;
Kim Phillipsb286e002012-08-08 20:33:34 -05003078 t_alg->algt.alg.hash.init = ahash_init;
3079 t_alg->algt.alg.hash.update = ahash_update;
3080 t_alg->algt.alg.hash.final = ahash_final;
3081 t_alg->algt.alg.hash.finup = ahash_finup;
3082 t_alg->algt.alg.hash.digest = ahash_digest;
LEROY Christophe70117b72017-09-12 11:03:39 +02003083 if (!strncmp(alg->cra_name, "hmac", 4))
3084 t_alg->algt.alg.hash.setkey = ahash_setkey;
Horia Geant?3639ca82016-04-21 19:24:55 +03003085 t_alg->algt.alg.hash.import = ahash_import;
3086 t_alg->algt.alg.hash.export = ahash_export;
Kim Phillipsb286e002012-08-08 20:33:34 -05003087
Lee Nipper79b3a412011-11-21 16:13:25 +08003088 if (!(priv->features & TALITOS_FTR_HMAC_OK) &&
Kim Phillips0b2730d2011-12-12 14:59:10 -06003089 !strncmp(alg->cra_name, "hmac", 4)) {
3090 kfree(t_alg);
Lee Nipper79b3a412011-11-21 16:13:25 +08003091 return ERR_PTR(-ENOTSUPP);
Kim Phillips0b2730d2011-12-12 14:59:10 -06003092 }
Kim Phillips60f208d2010-05-19 19:21:53 +10003093 if (!(priv->features & TALITOS_FTR_SHA224_HWINIT) &&
Lee Nipper79b3a412011-11-21 16:13:25 +08003094 (!strcmp(alg->cra_name, "sha224") ||
3095 !strcmp(alg->cra_name, "hmac(sha224)"))) {
Kim Phillips60f208d2010-05-19 19:21:53 +10003096 t_alg->algt.alg.hash.init = ahash_init_sha224_swinit;
3097 t_alg->algt.desc_hdr_template =
3098 DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU |
3099 DESC_HDR_SEL0_MDEUA |
3100 DESC_HDR_MODE0_MDEU_SHA256;
3101 }
Lee Nipper497f2e62010-05-19 19:20:36 +10003102 break;
Kim Phillips1d119112010-09-23 15:55:27 +08003103 default:
3104 dev_err(dev, "unknown algorithm type %d\n", t_alg->algt.type);
Horia Geant?5fa7dad2015-05-11 20:03:24 +03003105 kfree(t_alg);
Kim Phillips1d119112010-09-23 15:55:27 +08003106 return ERR_PTR(-EINVAL);
Lee Nipperacbf7c622010-05-19 19:19:33 +10003107 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08003108
Kim Phillips9c4a7962008-06-23 19:50:15 +08003109 alg->cra_module = THIS_MODULE;
LEROY Christopheb0057762016-06-06 13:20:44 +02003110 if (t_alg->algt.priority)
3111 alg->cra_priority = t_alg->algt.priority;
3112 else
3113 alg->cra_priority = TALITOS_CRA_PRIORITY;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003114 alg->cra_alignmask = 0;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003115 alg->cra_ctxsize = sizeof(struct talitos_ctx);
Nikos Mavrogiannopoulosd912bb72011-11-01 13:39:56 +01003116 alg->cra_flags |= CRYPTO_ALG_KERN_DRIVER_ONLY;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003117
Kim Phillips9c4a7962008-06-23 19:50:15 +08003118 t_alg->dev = dev;
3119
3120 return t_alg;
3121}
3122
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003123static int talitos_probe_irq(struct platform_device *ofdev)
3124{
3125 struct device *dev = &ofdev->dev;
3126 struct device_node *np = ofdev->dev.of_node;
3127 struct talitos_private *priv = dev_get_drvdata(dev);
3128 int err;
LEROY Christophedd3c0982015-04-17 16:32:13 +02003129 bool is_sec1 = has_ftr_sec1(priv);
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003130
3131 priv->irq[0] = irq_of_parse_and_map(np, 0);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003132 if (!priv->irq[0]) {
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003133 dev_err(dev, "failed to map irq\n");
3134 return -EINVAL;
3135 }
LEROY Christophedd3c0982015-04-17 16:32:13 +02003136 if (is_sec1) {
3137 err = request_irq(priv->irq[0], talitos1_interrupt_4ch, 0,
3138 dev_driver_string(dev), dev);
3139 goto primary_out;
3140 }
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003141
3142 priv->irq[1] = irq_of_parse_and_map(np, 1);
3143
3144 /* get the primary irq line */
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003145 if (!priv->irq[1]) {
LEROY Christophedd3c0982015-04-17 16:32:13 +02003146 err = request_irq(priv->irq[0], talitos2_interrupt_4ch, 0,
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003147 dev_driver_string(dev), dev);
3148 goto primary_out;
3149 }
3150
LEROY Christophedd3c0982015-04-17 16:32:13 +02003151 err = request_irq(priv->irq[0], talitos2_interrupt_ch0_2, 0,
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003152 dev_driver_string(dev), dev);
3153 if (err)
3154 goto primary_out;
3155
3156 /* get the secondary irq line */
LEROY Christophedd3c0982015-04-17 16:32:13 +02003157 err = request_irq(priv->irq[1], talitos2_interrupt_ch1_3, 0,
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003158 dev_driver_string(dev), dev);
3159 if (err) {
3160 dev_err(dev, "failed to request secondary irq\n");
3161 irq_dispose_mapping(priv->irq[1]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003162 priv->irq[1] = 0;
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003163 }
3164
3165 return err;
3166
3167primary_out:
3168 if (err) {
3169 dev_err(dev, "failed to request primary irq\n");
3170 irq_dispose_mapping(priv->irq[0]);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003171 priv->irq[0] = 0;
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003172 }
3173
3174 return err;
3175}
3176
Grant Likely1c48a5c2011-02-17 02:43:24 -07003177static int talitos_probe(struct platform_device *ofdev)
Kim Phillips9c4a7962008-06-23 19:50:15 +08003178{
3179 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -07003180 struct device_node *np = ofdev->dev.of_node;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003181 struct talitos_private *priv;
3182 const unsigned int *prop;
3183 int i, err;
LEROY Christophe5fa7fa12015-04-17 16:32:11 +02003184 int stride;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003185
3186 priv = kzalloc(sizeof(struct talitos_private), GFP_KERNEL);
3187 if (!priv)
3188 return -ENOMEM;
3189
Kevin Haof3de9cb2014-01-28 20:17:23 +08003190 INIT_LIST_HEAD(&priv->alg_list);
3191
Kim Phillips9c4a7962008-06-23 19:50:15 +08003192 dev_set_drvdata(dev, priv);
3193
3194 priv->ofdev = ofdev;
3195
Horia Geanta511d63c2012-03-30 17:49:53 +03003196 spin_lock_init(&priv->reg_lock);
3197
Kim Phillips9c4a7962008-06-23 19:50:15 +08003198 priv->reg = of_iomap(np, 0);
3199 if (!priv->reg) {
3200 dev_err(dev, "failed to of_iomap\n");
3201 err = -ENOMEM;
3202 goto err_out;
3203 }
3204
3205 /* get SEC version capabilities from device tree */
3206 prop = of_get_property(np, "fsl,num-channels", NULL);
3207 if (prop)
3208 priv->num_channels = *prop;
3209
3210 prop = of_get_property(np, "fsl,channel-fifo-len", NULL);
3211 if (prop)
3212 priv->chfifo_len = *prop;
3213
3214 prop = of_get_property(np, "fsl,exec-units-mask", NULL);
3215 if (prop)
3216 priv->exec_units = *prop;
3217
3218 prop = of_get_property(np, "fsl,descriptor-types-mask", NULL);
3219 if (prop)
3220 priv->desc_types = *prop;
3221
3222 if (!is_power_of_2(priv->num_channels) || !priv->chfifo_len ||
3223 !priv->exec_units || !priv->desc_types) {
3224 dev_err(dev, "invalid property data in device tree node\n");
3225 err = -EINVAL;
3226 goto err_out;
3227 }
3228
Lee Nipperf3c85bc2008-07-30 16:26:57 +08003229 if (of_device_is_compatible(np, "fsl,sec3.0"))
3230 priv->features |= TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT;
3231
Kim Phillipsfe5720e2008-10-12 20:33:14 +08003232 if (of_device_is_compatible(np, "fsl,sec2.1"))
Kim Phillips60f208d2010-05-19 19:21:53 +10003233 priv->features |= TALITOS_FTR_HW_AUTH_CHECK |
Lee Nipper79b3a412011-11-21 16:13:25 +08003234 TALITOS_FTR_SHA224_HWINIT |
3235 TALITOS_FTR_HMAC_OK;
Kim Phillipsfe5720e2008-10-12 20:33:14 +08003236
LEROY Christophe21590882015-04-17 16:32:05 +02003237 if (of_device_is_compatible(np, "fsl,sec1.0"))
3238 priv->features |= TALITOS_FTR_SEC1;
3239
LEROY Christophe5fa7fa12015-04-17 16:32:11 +02003240 if (of_device_is_compatible(np, "fsl,sec1.2")) {
3241 priv->reg_deu = priv->reg + TALITOS12_DEU;
3242 priv->reg_aesu = priv->reg + TALITOS12_AESU;
3243 priv->reg_mdeu = priv->reg + TALITOS12_MDEU;
3244 stride = TALITOS1_CH_STRIDE;
3245 } else if (of_device_is_compatible(np, "fsl,sec1.0")) {
3246 priv->reg_deu = priv->reg + TALITOS10_DEU;
3247 priv->reg_aesu = priv->reg + TALITOS10_AESU;
3248 priv->reg_mdeu = priv->reg + TALITOS10_MDEU;
3249 priv->reg_afeu = priv->reg + TALITOS10_AFEU;
3250 priv->reg_rngu = priv->reg + TALITOS10_RNGU;
3251 priv->reg_pkeu = priv->reg + TALITOS10_PKEU;
3252 stride = TALITOS1_CH_STRIDE;
3253 } else {
3254 priv->reg_deu = priv->reg + TALITOS2_DEU;
3255 priv->reg_aesu = priv->reg + TALITOS2_AESU;
3256 priv->reg_mdeu = priv->reg + TALITOS2_MDEU;
3257 priv->reg_afeu = priv->reg + TALITOS2_AFEU;
3258 priv->reg_rngu = priv->reg + TALITOS2_RNGU;
3259 priv->reg_pkeu = priv->reg + TALITOS2_PKEU;
3260 priv->reg_keu = priv->reg + TALITOS2_KEU;
3261 priv->reg_crcu = priv->reg + TALITOS2_CRCU;
3262 stride = TALITOS2_CH_STRIDE;
3263 }
3264
LEROY Christophedd3c0982015-04-17 16:32:13 +02003265 err = talitos_probe_irq(ofdev);
3266 if (err)
3267 goto err_out;
3268
3269 if (of_device_is_compatible(np, "fsl,sec1.0")) {
3270 tasklet_init(&priv->done_task[0], talitos1_done_4ch,
3271 (unsigned long)dev);
3272 } else {
3273 if (!priv->irq[1]) {
3274 tasklet_init(&priv->done_task[0], talitos2_done_4ch,
3275 (unsigned long)dev);
3276 } else {
3277 tasklet_init(&priv->done_task[0], talitos2_done_ch0_2,
3278 (unsigned long)dev);
3279 tasklet_init(&priv->done_task[1], talitos2_done_ch1_3,
3280 (unsigned long)dev);
3281 }
3282 }
3283
Kim Phillips4b9926282009-08-13 11:50:38 +10003284 priv->chan = kzalloc(sizeof(struct talitos_channel) *
3285 priv->num_channels, GFP_KERNEL);
3286 if (!priv->chan) {
3287 dev_err(dev, "failed to allocate channel management space\n");
Kim Phillips9c4a7962008-06-23 19:50:15 +08003288 err = -ENOMEM;
3289 goto err_out;
3290 }
3291
Martin Hicksf641ddd2015-03-03 08:21:33 -05003292 priv->fifo_len = roundup_pow_of_two(priv->chfifo_len);
3293
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003294 for (i = 0; i < priv->num_channels; i++) {
LEROY Christophe5fa7fa12015-04-17 16:32:11 +02003295 priv->chan[i].reg = priv->reg + stride * (i + 1);
Kim Phillips2cdba3c2011-12-12 14:59:11 -06003296 if (!priv->irq[1] || !(i & 1))
Kim Phillipsc3e337f2011-11-21 16:13:27 +08003297 priv->chan[i].reg += TALITOS_CH_BASE_OFFSET;
Kim Phillipsad42d5f2011-11-21 16:13:27 +08003298
Kim Phillips4b9926282009-08-13 11:50:38 +10003299 spin_lock_init(&priv->chan[i].head_lock);
3300 spin_lock_init(&priv->chan[i].tail_lock);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003301
Kim Phillips4b9926282009-08-13 11:50:38 +10003302 priv->chan[i].fifo = kzalloc(sizeof(struct talitos_request) *
3303 priv->fifo_len, GFP_KERNEL);
3304 if (!priv->chan[i].fifo) {
Kim Phillips9c4a7962008-06-23 19:50:15 +08003305 dev_err(dev, "failed to allocate request fifo %d\n", i);
3306 err = -ENOMEM;
3307 goto err_out;
3308 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08003309
Kim Phillips4b9926282009-08-13 11:50:38 +10003310 atomic_set(&priv->chan[i].submit_count,
3311 -(priv->chfifo_len - 1));
Martin Hicksf641ddd2015-03-03 08:21:33 -05003312 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08003313
Kim Phillips81eb0242009-08-13 11:51:51 +10003314 dma_set_mask(dev, DMA_BIT_MASK(36));
3315
Kim Phillips9c4a7962008-06-23 19:50:15 +08003316 /* reset and initialize the h/w */
3317 err = init_device(dev);
3318 if (err) {
3319 dev_err(dev, "failed to initialize device\n");
3320 goto err_out;
3321 }
3322
3323 /* register the RNG, if available */
3324 if (hw_supports(dev, DESC_HDR_SEL0_RNG)) {
3325 err = talitos_register_rng(dev);
3326 if (err) {
3327 dev_err(dev, "failed to register hwrng: %d\n", err);
3328 goto err_out;
3329 } else
3330 dev_info(dev, "hwrng\n");
3331 }
3332
3333 /* register crypto algorithms the device supports */
Kim Phillips9c4a7962008-06-23 19:50:15 +08003334 for (i = 0; i < ARRAY_SIZE(driver_algs); i++) {
3335 if (hw_supports(dev, driver_algs[i].desc_hdr_template)) {
3336 struct talitos_crypto_alg *t_alg;
Herbert Xuaeb4c132015-07-30 17:53:22 +08003337 struct crypto_alg *alg = NULL;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003338
3339 t_alg = talitos_alg_alloc(dev, &driver_algs[i]);
3340 if (IS_ERR(t_alg)) {
3341 err = PTR_ERR(t_alg);
Kim Phillips0b2730d2011-12-12 14:59:10 -06003342 if (err == -ENOTSUPP)
Lee Nipper79b3a412011-11-21 16:13:25 +08003343 continue;
Kim Phillips9c4a7962008-06-23 19:50:15 +08003344 goto err_out;
3345 }
3346
Lee Nipperacbf7c622010-05-19 19:19:33 +10003347 switch (t_alg->algt.type) {
3348 case CRYPTO_ALG_TYPE_ABLKCIPHER:
Lee Nipperacbf7c622010-05-19 19:19:33 +10003349 err = crypto_register_alg(
3350 &t_alg->algt.alg.crypto);
Herbert Xuaeb4c132015-07-30 17:53:22 +08003351 alg = &t_alg->algt.alg.crypto;
Lee Nipperacbf7c622010-05-19 19:19:33 +10003352 break;
Herbert Xuaeb4c132015-07-30 17:53:22 +08003353
3354 case CRYPTO_ALG_TYPE_AEAD:
3355 err = crypto_register_aead(
3356 &t_alg->algt.alg.aead);
3357 alg = &t_alg->algt.alg.aead.base;
3358 break;
3359
Lee Nipperacbf7c622010-05-19 19:19:33 +10003360 case CRYPTO_ALG_TYPE_AHASH:
3361 err = crypto_register_ahash(
3362 &t_alg->algt.alg.hash);
Herbert Xuaeb4c132015-07-30 17:53:22 +08003363 alg = &t_alg->algt.alg.hash.halg.base;
Lee Nipperacbf7c622010-05-19 19:19:33 +10003364 break;
3365 }
Kim Phillips9c4a7962008-06-23 19:50:15 +08003366 if (err) {
3367 dev_err(dev, "%s alg registration failed\n",
Herbert Xuaeb4c132015-07-30 17:53:22 +08003368 alg->cra_driver_name);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003369 kfree(t_alg);
Horia Geanta991155b2013-03-20 16:31:38 +02003370 } else
Kim Phillips9c4a7962008-06-23 19:50:15 +08003371 list_add_tail(&t_alg->entry, &priv->alg_list);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003372 }
3373 }
Kim Phillips5b859b6e2011-11-21 16:13:26 +08003374 if (!list_empty(&priv->alg_list))
3375 dev_info(dev, "%s algorithms registered in /proc/crypto\n",
3376 (char *)of_get_property(np, "compatible", NULL));
Kim Phillips9c4a7962008-06-23 19:50:15 +08003377
3378 return 0;
3379
3380err_out:
3381 talitos_remove(ofdev);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003382
3383 return err;
3384}
3385
Márton Németh6c3f9752010-01-17 21:54:01 +11003386static const struct of_device_id talitos_match[] = {
LEROY Christophe0635b7d2015-04-17 16:32:20 +02003387#ifdef CONFIG_CRYPTO_DEV_TALITOS1
3388 {
3389 .compatible = "fsl,sec1.0",
3390 },
3391#endif
3392#ifdef CONFIG_CRYPTO_DEV_TALITOS2
Kim Phillips9c4a7962008-06-23 19:50:15 +08003393 {
3394 .compatible = "fsl,sec2.0",
3395 },
LEROY Christophe0635b7d2015-04-17 16:32:20 +02003396#endif
Kim Phillips9c4a7962008-06-23 19:50:15 +08003397 {},
3398};
3399MODULE_DEVICE_TABLE(of, talitos_match);
3400
Grant Likely1c48a5c2011-02-17 02:43:24 -07003401static struct platform_driver talitos_driver = {
Grant Likely40182942010-04-13 16:13:02 -07003402 .driver = {
3403 .name = "talitos",
Grant Likely40182942010-04-13 16:13:02 -07003404 .of_match_table = talitos_match,
3405 },
Kim Phillips9c4a7962008-06-23 19:50:15 +08003406 .probe = talitos_probe,
Al Viro596f1032008-11-22 17:34:24 +00003407 .remove = talitos_remove,
Kim Phillips9c4a7962008-06-23 19:50:15 +08003408};
3409
Axel Lin741e8c22011-11-26 21:26:19 +08003410module_platform_driver(talitos_driver);
Kim Phillips9c4a7962008-06-23 19:50:15 +08003411
3412MODULE_LICENSE("GPL");
3413MODULE_AUTHOR("Kim Phillips <kim.phillips@freescale.com>");
3414MODULE_DESCRIPTION("Freescale integrated security engine (SEC) driver");