mm: update get_user_pages_longterm to migrate pages allocated from CMA region
[linux-2.6-block.git] / drivers / crypto / padlock-aes.c
CommitLineData
1da177e4
LT
1/*
2 * Cryptographic API.
3 *
4 * Support for VIA PadLock hardware crypto engine.
5 *
6 * Copyright (c) 2004 Michal Ludvig <michal@logix.cz>
7 *
1da177e4
LT
8 */
9
28ce728a 10#include <crypto/algapi.h>
89e12654 11#include <crypto/aes.h>
21493088 12#include <crypto/padlock.h>
1da177e4
LT
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/types.h>
16#include <linux/errno.h>
1da177e4 17#include <linux/interrupt.h>
6789b2dc 18#include <linux/kernel.h>
420a4b20
HX
19#include <linux/percpu.h>
20#include <linux/smp.h>
5a0e3ad6 21#include <linux/slab.h>
3bd391f0 22#include <asm/cpu_device_id.h>
1da177e4 23#include <asm/byteorder.h>
a76c1c23 24#include <asm/processor.h>
df6b35f4 25#include <asm/fpu/api.h>
1da177e4 26
8d8409f7
CE
27/*
28 * Number of data blocks actually fetched for each xcrypt insn.
29 * Processors with prefetch errata will fetch extra blocks.
30 */
a76c1c23 31static unsigned int ecb_fetch_blocks = 2;
8d8409f7 32#define MAX_ECB_FETCH_BLOCKS (8)
a76c1c23 33#define ecb_fetch_bytes (ecb_fetch_blocks * AES_BLOCK_SIZE)
8d8409f7
CE
34
35static unsigned int cbc_fetch_blocks = 1;
36#define MAX_CBC_FETCH_BLOCKS (4)
a76c1c23
CE
37#define cbc_fetch_bytes (cbc_fetch_blocks * AES_BLOCK_SIZE)
38
ccc17c34
ML
39/* Control word. */
40struct cword {
41 unsigned int __attribute__ ((__packed__))
42 rounds:4,
43 algo:3,
44 keygen:1,
45 interm:1,
46 encdec:1,
47 ksize:2;
48} __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
49
cc08632f
ML
50/* Whenever making any changes to the following
51 * structure *make sure* you keep E, d_data
7dc748e4
SS
52 * and cword aligned on 16 Bytes boundaries and
53 * the Hardware can access 16 * 16 bytes of E and d_data
54 * (only the first 15 * 16 bytes matter but the HW reads
55 * more).
56 */
1da177e4 57struct aes_ctx {
7dc748e4
SS
58 u32 E[AES_MAX_KEYLENGTH_U32]
59 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
60 u32 d_data[AES_MAX_KEYLENGTH_U32]
61 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
6789b2dc
HX
62 struct {
63 struct cword encrypt;
64 struct cword decrypt;
65 } cword;
82062c72 66 u32 *D;
1da177e4
LT
67};
68
390dfd95 69static DEFINE_PER_CPU(struct cword *, paes_last_cword);
420a4b20 70
1da177e4
LT
71/* Tells whether the ACE is capable to generate
72 the extended key for a given key_len. */
73static inline int
74aes_hw_extkey_available(uint8_t key_len)
75{
76 /* TODO: We should check the actual CPU model/stepping
77 as it's possible that the capability will be
78 added in the next CPU revisions. */
79 if (key_len == 16)
80 return 1;
81 return 0;
82}
83
28ce728a 84static inline struct aes_ctx *aes_ctx_common(void *ctx)
6789b2dc 85{
28ce728a 86 unsigned long addr = (unsigned long)ctx;
f10b7897
HX
87 unsigned long align = PADLOCK_ALIGNMENT;
88
89 if (align <= crypto_tfm_ctx_alignment())
90 align = 1;
6c2bb98b 91 return (struct aes_ctx *)ALIGN(addr, align);
6789b2dc
HX
92}
93
28ce728a
HX
94static inline struct aes_ctx *aes_ctx(struct crypto_tfm *tfm)
95{
96 return aes_ctx_common(crypto_tfm_ctx(tfm));
97}
98
99static inline struct aes_ctx *blk_aes_ctx(struct crypto_blkcipher *tfm)
100{
101 return aes_ctx_common(crypto_blkcipher_ctx(tfm));
102}
103
6c2bb98b 104static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
560c06ae 105 unsigned int key_len)
1da177e4 106{
6c2bb98b 107 struct aes_ctx *ctx = aes_ctx(tfm);
06ace7a9 108 const __le32 *key = (const __le32 *)in_key;
560c06ae 109 u32 *flags = &tfm->crt_flags;
7dc748e4 110 struct crypto_aes_ctx gen_aes;
420a4b20 111 int cpu;
1da177e4 112
560c06ae 113 if (key_len % 8) {
1da177e4
LT
114 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
115 return -EINVAL;
116 }
117
6789b2dc
HX
118 /*
119 * If the hardware is capable of generating the extended key
120 * itself we must supply the plain key for both encryption
121 * and decryption.
122 */
82062c72 123 ctx->D = ctx->E;
1da177e4 124
7dc748e4
SS
125 ctx->E[0] = le32_to_cpu(key[0]);
126 ctx->E[1] = le32_to_cpu(key[1]);
127 ctx->E[2] = le32_to_cpu(key[2]);
128 ctx->E[3] = le32_to_cpu(key[3]);
1da177e4 129
6789b2dc
HX
130 /* Prepare control words. */
131 memset(&ctx->cword, 0, sizeof(ctx->cword));
132
133 ctx->cword.decrypt.encdec = 1;
134 ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4;
135 ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds;
136 ctx->cword.encrypt.ksize = (key_len - 16) / 8;
137 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
138
1da177e4
LT
139 /* Don't generate extended keys if the hardware can do it. */
140 if (aes_hw_extkey_available(key_len))
420a4b20 141 goto ok;
1da177e4 142
6789b2dc
HX
143 ctx->D = ctx->d_data;
144 ctx->cword.encrypt.keygen = 1;
145 ctx->cword.decrypt.keygen = 1;
146
7dc748e4
SS
147 if (crypto_aes_expand_key(&gen_aes, in_key, key_len)) {
148 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
149 return -EINVAL;
1da177e4
LT
150 }
151
7dc748e4
SS
152 memcpy(ctx->E, gen_aes.key_enc, AES_MAX_KEYLENGTH);
153 memcpy(ctx->D, gen_aes.key_dec, AES_MAX_KEYLENGTH);
420a4b20
HX
154
155ok:
156 for_each_online_cpu(cpu)
390dfd95
TH
157 if (&ctx->cword.encrypt == per_cpu(paes_last_cword, cpu) ||
158 &ctx->cword.decrypt == per_cpu(paes_last_cword, cpu))
159 per_cpu(paes_last_cword, cpu) = NULL;
420a4b20 160
1da177e4
LT
161 return 0;
162}
163
164/* ====== Encryption/decryption routines ====== */
165
28e8c3ad 166/* These are the real call to PadLock. */
420a4b20
HX
167static inline void padlock_reset_key(struct cword *cword)
168{
169 int cpu = raw_smp_processor_id();
170
390dfd95 171 if (cword != per_cpu(paes_last_cword, cpu))
d1c8b0a7 172#ifndef CONFIG_X86_64
420a4b20 173 asm volatile ("pushfl; popfl");
d1c8b0a7
SAS
174#else
175 asm volatile ("pushfq; popfq");
176#endif
420a4b20
HX
177}
178
179static inline void padlock_store_cword(struct cword *cword)
866cd902 180{
390dfd95 181 per_cpu(paes_last_cword, raw_smp_processor_id()) = cword;
866cd902
HX
182}
183
e4914012
SS
184/*
185 * While the padlock instructions don't use FP/SSE registers, they
5a83d60c
AL
186 * generate a spurious DNA fault when CR0.TS is '1'. Fortunately,
187 * the kernel doesn't use CR0.TS.
e4914012
SS
188 */
189
8d8409f7 190static inline void rep_xcrypt_ecb(const u8 *input, u8 *output, void *key,
a76c1c23 191 struct cword *control_word, int count)
d4a7dd8e
HX
192{
193 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
194 : "+S"(input), "+D"(output)
a76c1c23 195 : "d"(control_word), "b"(key), "c"(count));
d4a7dd8e
HX
196}
197
8d8409f7
CE
198static inline u8 *rep_xcrypt_cbc(const u8 *input, u8 *output, void *key,
199 u8 *iv, struct cword *control_word, int count)
200{
201 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
202 : "+S" (input), "+D" (output), "+a" (iv)
203 : "d" (control_word), "b" (key), "c" (count));
204 return iv;
205}
206
207static void ecb_crypt_copy(const u8 *in, u8 *out, u32 *key,
a76c1c23 208 struct cword *cword, int count)
d4a7dd8e 209{
a76c1c23
CE
210 /*
211 * Padlock prefetches extra data so we must provide mapped input buffers.
212 * Assume there are at least 16 bytes of stack already in use.
213 */
8d8409f7 214 u8 buf[AES_BLOCK_SIZE * (MAX_ECB_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1];
490fe3f0 215 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
d4a7dd8e 216
a76c1c23 217 memcpy(tmp, in, count * AES_BLOCK_SIZE);
8d8409f7 218 rep_xcrypt_ecb(tmp, out, key, cword, count);
d4a7dd8e
HX
219}
220
8d8409f7
CE
221static u8 *cbc_crypt_copy(const u8 *in, u8 *out, u32 *key,
222 u8 *iv, struct cword *cword, int count)
223{
224 /*
225 * Padlock prefetches extra data so we must provide mapped input buffers.
226 * Assume there are at least 16 bytes of stack already in use.
227 */
228 u8 buf[AES_BLOCK_SIZE * (MAX_CBC_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1];
229 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
230
231 memcpy(tmp, in, count * AES_BLOCK_SIZE);
232 return rep_xcrypt_cbc(tmp, out, key, iv, cword, count);
233}
234
235static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key,
a76c1c23 236 struct cword *cword, int count)
d4a7dd8e 237{
a76c1c23
CE
238 /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data.
239 * We could avoid some copying here but it's probably not worth it.
240 */
1d4bbc5a 241 if (unlikely(offset_in_page(in) + ecb_fetch_bytes > PAGE_SIZE)) {
8d8409f7 242 ecb_crypt_copy(in, out, key, cword, count);
d4a7dd8e
HX
243 return;
244 }
245
8d8409f7
CE
246 rep_xcrypt_ecb(in, out, key, cword, count);
247}
248
249static inline u8 *cbc_crypt(const u8 *in, u8 *out, u32 *key,
250 u8 *iv, struct cword *cword, int count)
251{
252 /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */
1d4bbc5a 253 if (unlikely(offset_in_page(in) + cbc_fetch_bytes > PAGE_SIZE))
8d8409f7
CE
254 return cbc_crypt_copy(in, out, key, iv, cword, count);
255
256 return rep_xcrypt_cbc(in, out, key, iv, cword, count);
d4a7dd8e
HX
257}
258
6789b2dc
HX
259static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key,
260 void *control_word, u32 count)
1da177e4 261{
a76c1c23
CE
262 u32 initial = count & (ecb_fetch_blocks - 1);
263
264 if (count < ecb_fetch_blocks) {
8d8409f7 265 ecb_crypt(input, output, key, control_word, count);
d4a7dd8e
HX
266 return;
267 }
268
46d8c4b2
HX
269 count -= initial;
270
a76c1c23
CE
271 if (initial)
272 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
273 : "+S"(input), "+D"(output)
274 : "d"(control_word), "b"(key), "c"(initial));
275
276 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
1da177e4 277 : "+S"(input), "+D"(output)
46d8c4b2 278 : "d"(control_word), "b"(key), "c"(count));
1da177e4
LT
279}
280
476df259
HX
281static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key,
282 u8 *iv, void *control_word, u32 count)
28e8c3ad 283{
8d8409f7
CE
284 u32 initial = count & (cbc_fetch_blocks - 1);
285
286 if (count < cbc_fetch_blocks)
287 return cbc_crypt(input, output, key, iv, control_word, count);
288
46d8c4b2
HX
289 count -= initial;
290
8d8409f7
CE
291 if (initial)
292 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
293 : "+S" (input), "+D" (output), "+a" (iv)
c054a076 294 : "d" (control_word), "b" (key), "c" (initial));
8d8409f7
CE
295
296 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
28e8c3ad 297 : "+S" (input), "+D" (output), "+a" (iv)
46d8c4b2 298 : "d" (control_word), "b" (key), "c" (count));
476df259 299 return iv;
28e8c3ad
HX
300}
301
6c2bb98b 302static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
1da177e4 303{
6c2bb98b 304 struct aes_ctx *ctx = aes_ctx(tfm);
e4914012 305
420a4b20 306 padlock_reset_key(&ctx->cword.encrypt);
8d8409f7 307 ecb_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1);
420a4b20 308 padlock_store_cword(&ctx->cword.encrypt);
1da177e4
LT
309}
310
6c2bb98b 311static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
1da177e4 312{
6c2bb98b 313 struct aes_ctx *ctx = aes_ctx(tfm);
e4914012 314
420a4b20 315 padlock_reset_key(&ctx->cword.encrypt);
8d8409f7 316 ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1);
420a4b20 317 padlock_store_cword(&ctx->cword.encrypt);
1da177e4
LT
318}
319
320static struct crypto_alg aes_alg = {
321 .cra_name = "aes",
c8a19c91 322 .cra_driver_name = "aes-padlock",
ccc17c34 323 .cra_priority = PADLOCK_CRA_PRIORITY,
1da177e4
LT
324 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
325 .cra_blocksize = AES_BLOCK_SIZE,
fbdae9f3 326 .cra_ctxsize = sizeof(struct aes_ctx),
6789b2dc 327 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
1da177e4 328 .cra_module = THIS_MODULE,
1da177e4
LT
329 .cra_u = {
330 .cipher = {
331 .cia_min_keysize = AES_MIN_KEY_SIZE,
332 .cia_max_keysize = AES_MAX_KEY_SIZE,
333 .cia_setkey = aes_set_key,
334 .cia_encrypt = aes_encrypt,
28e8c3ad 335 .cia_decrypt = aes_decrypt,
1da177e4
LT
336 }
337 }
338};
339
28ce728a
HX
340static int ecb_aes_encrypt(struct blkcipher_desc *desc,
341 struct scatterlist *dst, struct scatterlist *src,
342 unsigned int nbytes)
343{
344 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
345 struct blkcipher_walk walk;
346 int err;
347
420a4b20 348 padlock_reset_key(&ctx->cword.encrypt);
866cd902 349
28ce728a
HX
350 blkcipher_walk_init(&walk, dst, src, nbytes);
351 err = blkcipher_walk_virt(desc, &walk);
352
353 while ((nbytes = walk.nbytes)) {
354 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
355 ctx->E, &ctx->cword.encrypt,
356 nbytes / AES_BLOCK_SIZE);
357 nbytes &= AES_BLOCK_SIZE - 1;
358 err = blkcipher_walk_done(desc, &walk, nbytes);
359 }
360
420a4b20
HX
361 padlock_store_cword(&ctx->cword.encrypt);
362
28ce728a
HX
363 return err;
364}
365
366static int ecb_aes_decrypt(struct blkcipher_desc *desc,
367 struct scatterlist *dst, struct scatterlist *src,
368 unsigned int nbytes)
369{
370 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
371 struct blkcipher_walk walk;
372 int err;
373
420a4b20 374 padlock_reset_key(&ctx->cword.decrypt);
866cd902 375
28ce728a
HX
376 blkcipher_walk_init(&walk, dst, src, nbytes);
377 err = blkcipher_walk_virt(desc, &walk);
378
379 while ((nbytes = walk.nbytes)) {
380 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
381 ctx->D, &ctx->cword.decrypt,
382 nbytes / AES_BLOCK_SIZE);
383 nbytes &= AES_BLOCK_SIZE - 1;
384 err = blkcipher_walk_done(desc, &walk, nbytes);
385 }
420a4b20
HX
386
387 padlock_store_cword(&ctx->cword.encrypt);
388
28ce728a
HX
389 return err;
390}
391
392static struct crypto_alg ecb_aes_alg = {
393 .cra_name = "ecb(aes)",
394 .cra_driver_name = "ecb-aes-padlock",
395 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
396 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
397 .cra_blocksize = AES_BLOCK_SIZE,
398 .cra_ctxsize = sizeof(struct aes_ctx),
399 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
400 .cra_type = &crypto_blkcipher_type,
401 .cra_module = THIS_MODULE,
28ce728a
HX
402 .cra_u = {
403 .blkcipher = {
404 .min_keysize = AES_MIN_KEY_SIZE,
405 .max_keysize = AES_MAX_KEY_SIZE,
406 .setkey = aes_set_key,
407 .encrypt = ecb_aes_encrypt,
408 .decrypt = ecb_aes_decrypt,
409 }
410 }
411};
412
413static int cbc_aes_encrypt(struct blkcipher_desc *desc,
414 struct scatterlist *dst, struct scatterlist *src,
415 unsigned int nbytes)
416{
417 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
418 struct blkcipher_walk walk;
419 int err;
420
420a4b20 421 padlock_reset_key(&ctx->cword.encrypt);
866cd902 422
28ce728a
HX
423 blkcipher_walk_init(&walk, dst, src, nbytes);
424 err = blkcipher_walk_virt(desc, &walk);
425
426 while ((nbytes = walk.nbytes)) {
427 u8 *iv = padlock_xcrypt_cbc(walk.src.virt.addr,
428 walk.dst.virt.addr, ctx->E,
429 walk.iv, &ctx->cword.encrypt,
430 nbytes / AES_BLOCK_SIZE);
431 memcpy(walk.iv, iv, AES_BLOCK_SIZE);
432 nbytes &= AES_BLOCK_SIZE - 1;
433 err = blkcipher_walk_done(desc, &walk, nbytes);
434 }
435
420a4b20
HX
436 padlock_store_cword(&ctx->cword.decrypt);
437
28ce728a
HX
438 return err;
439}
440
441static int cbc_aes_decrypt(struct blkcipher_desc *desc,
442 struct scatterlist *dst, struct scatterlist *src,
443 unsigned int nbytes)
444{
445 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
446 struct blkcipher_walk walk;
447 int err;
448
420a4b20 449 padlock_reset_key(&ctx->cword.encrypt);
866cd902 450
28ce728a
HX
451 blkcipher_walk_init(&walk, dst, src, nbytes);
452 err = blkcipher_walk_virt(desc, &walk);
453
454 while ((nbytes = walk.nbytes)) {
455 padlock_xcrypt_cbc(walk.src.virt.addr, walk.dst.virt.addr,
456 ctx->D, walk.iv, &ctx->cword.decrypt,
457 nbytes / AES_BLOCK_SIZE);
458 nbytes &= AES_BLOCK_SIZE - 1;
459 err = blkcipher_walk_done(desc, &walk, nbytes);
460 }
461
420a4b20
HX
462 padlock_store_cword(&ctx->cword.encrypt);
463
28ce728a
HX
464 return err;
465}
466
467static struct crypto_alg cbc_aes_alg = {
468 .cra_name = "cbc(aes)",
469 .cra_driver_name = "cbc-aes-padlock",
470 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
471 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
472 .cra_blocksize = AES_BLOCK_SIZE,
473 .cra_ctxsize = sizeof(struct aes_ctx),
474 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
475 .cra_type = &crypto_blkcipher_type,
476 .cra_module = THIS_MODULE,
28ce728a
HX
477 .cra_u = {
478 .blkcipher = {
479 .min_keysize = AES_MIN_KEY_SIZE,
480 .max_keysize = AES_MAX_KEY_SIZE,
481 .ivsize = AES_BLOCK_SIZE,
482 .setkey = aes_set_key,
483 .encrypt = cbc_aes_encrypt,
484 .decrypt = cbc_aes_decrypt,
485 }
486 }
487};
488
d9893645 489static const struct x86_cpu_id padlock_cpu_id[] = {
3bd391f0
AK
490 X86_FEATURE_MATCH(X86_FEATURE_XCRYPT),
491 {}
492};
493MODULE_DEVICE_TABLE(x86cpu, padlock_cpu_id);
494
1191f0a4 495static int __init padlock_init(void)
1da177e4 496{
1191f0a4 497 int ret;
a76c1c23 498 struct cpuinfo_x86 *c = &cpu_data(0);
1191f0a4 499
3bd391f0 500 if (!x86_match_cpu(padlock_cpu_id))
1191f0a4 501 return -ENODEV;
1191f0a4 502
362f924b 503 if (!boot_cpu_has(X86_FEATURE_XCRYPT_EN)) {
b43e726b 504 printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
1191f0a4
ML
505 return -ENODEV;
506 }
1da177e4 507
28ce728a
HX
508 if ((ret = crypto_register_alg(&aes_alg)))
509 goto aes_err;
510
511 if ((ret = crypto_register_alg(&ecb_aes_alg)))
512 goto ecb_aes_err;
513
514 if ((ret = crypto_register_alg(&cbc_aes_alg)))
515 goto cbc_aes_err;
1191f0a4
ML
516
517 printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n");
518
b399151c 519 if (c->x86 == 6 && c->x86_model == 15 && c->x86_stepping == 2) {
8d8409f7
CE
520 ecb_fetch_blocks = MAX_ECB_FETCH_BLOCKS;
521 cbc_fetch_blocks = MAX_CBC_FETCH_BLOCKS;
a76c1c23
CE
522 printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n");
523 }
524
28ce728a 525out:
1191f0a4 526 return ret;
28ce728a
HX
527
528cbc_aes_err:
529 crypto_unregister_alg(&ecb_aes_alg);
530ecb_aes_err:
531 crypto_unregister_alg(&aes_alg);
532aes_err:
533 printk(KERN_ERR PFX "VIA PadLock AES initialization failed.\n");
534 goto out;
1da177e4
LT
535}
536
1191f0a4 537static void __exit padlock_fini(void)
1da177e4 538{
28ce728a
HX
539 crypto_unregister_alg(&cbc_aes_alg);
540 crypto_unregister_alg(&ecb_aes_alg);
1da177e4
LT
541 crypto_unregister_alg(&aes_alg);
542}
1191f0a4
ML
543
544module_init(padlock_init);
545module_exit(padlock_fini);
546
547MODULE_DESCRIPTION("VIA PadLock AES algorithm support");
548MODULE_LICENSE("GPL");
549MODULE_AUTHOR("Michal Ludvig");
550
5d26a105 551MODULE_ALIAS_CRYPTO("aes");