1 /* Copyright (C) 2004-2006, Advanced Micro Devices, Inc.
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <linux/pci.h>
12 #include <linux/pci_ids.h>
13 #include <linux/crypto.h>
14 #include <linux/spinlock.h>
15 #include <crypto/algapi.h>
16 #include <crypto/aes.h>
19 #include <linux/delay.h>
21 #include "geode-aes.h"
23 /* Static structures */
25 static void __iomem *_iobase;
26 static spinlock_t lock;
28 /* Write a 128 bit field (either a writable key or IV) */
30 _writefield(u32 offset, void *value)
33 for (i = 0; i < 4; i++)
34 iowrite32(((u32 *) value)[i], _iobase + offset + (i * 4));
37 /* Read a 128 bit field (either a writable key or IV) */
39 _readfield(u32 offset, void *value)
42 for (i = 0; i < 4; i++)
43 ((u32 *) value)[i] = ioread32(_iobase + offset + (i * 4));
47 do_crypt(void *src, void *dst, int len, u32 flags)
50 u32 counter = AES_OP_TIMEOUT;
52 iowrite32(virt_to_phys(src), _iobase + AES_SOURCEA_REG);
53 iowrite32(virt_to_phys(dst), _iobase + AES_DSTA_REG);
54 iowrite32(len, _iobase + AES_LENA_REG);
56 /* Start the operation */
57 iowrite32(AES_CTRL_START | flags, _iobase + AES_CTRLA_REG);
60 status = ioread32(_iobase + AES_INTR_REG);
62 } while (!(status & AES_INTRA_PENDING) && --counter);
65 iowrite32((status & 0xFF) | AES_INTRA_PENDING, _iobase + AES_INTR_REG);
66 return counter ? 0 : 1;
70 geode_aes_crypt(struct geode_aes_op *op)
79 /* If the source and destination is the same, then
80 * we need to turn on the coherent flags, otherwise
81 * we don't need to worry
84 flags |= (AES_CTRL_DCA | AES_CTRL_SCA);
86 if (op->dir == AES_DIR_ENCRYPT)
87 flags |= AES_CTRL_ENCRYPT;
89 /* Start the critical section */
91 spin_lock_irqsave(&lock, iflags);
93 if (op->mode == AES_MODE_CBC) {
94 flags |= AES_CTRL_CBC;
95 _writefield(AES_WRITEIV0_REG, op->iv);
98 if (!(op->flags & AES_FLAGS_HIDDENKEY)) {
99 flags |= AES_CTRL_WRKEY;
100 _writefield(AES_WRITEKEY0_REG, op->key);
103 ret = do_crypt(op->src, op->dst, op->len, flags);
106 if (op->mode == AES_MODE_CBC)
107 _readfield(AES_WRITEIV0_REG, op->iv);
109 spin_unlock_irqrestore(&lock, iflags);
114 /* CRYPTO-API Functions */
116 static int geode_setkey_cip(struct crypto_tfm *tfm, const u8 *key,
119 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
124 if (len == AES_KEYSIZE_128) {
125 memcpy(op->key, key, len);
129 if (len != AES_KEYSIZE_192 && len != AES_KEYSIZE_256) {
130 /* not supported at all */
131 tfm->crt_flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
136 * The requested key size is not supported by HW, do a fallback
138 op->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
139 op->fallback.cip->base.crt_flags |= (tfm->crt_flags & CRYPTO_TFM_REQ_MASK);
141 ret = crypto_cipher_setkey(op->fallback.cip, key, len);
143 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
144 tfm->crt_flags |= (op->fallback.cip->base.crt_flags & CRYPTO_TFM_RES_MASK);
149 static int geode_setkey_blk(struct crypto_tfm *tfm, const u8 *key,
152 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
157 if (len == AES_KEYSIZE_128) {
158 memcpy(op->key, key, len);
162 if (len != AES_KEYSIZE_192 && len != AES_KEYSIZE_256) {
163 /* not supported at all */
164 tfm->crt_flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
169 * The requested key size is not supported by HW, do a fallback
171 op->fallback.blk->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
172 op->fallback.blk->base.crt_flags |= (tfm->crt_flags & CRYPTO_TFM_REQ_MASK);
174 ret = crypto_blkcipher_setkey(op->fallback.blk, key, len);
176 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
177 tfm->crt_flags |= (op->fallback.blk->base.crt_flags & CRYPTO_TFM_RES_MASK);
182 static int fallback_blk_dec(struct blkcipher_desc *desc,
183 struct scatterlist *dst, struct scatterlist *src,
187 struct crypto_blkcipher *tfm;
188 struct geode_aes_op *op = crypto_blkcipher_ctx(desc->tfm);
191 desc->tfm = op->fallback.blk;
193 ret = crypto_blkcipher_decrypt_iv(desc, dst, src, nbytes);
198 static int fallback_blk_enc(struct blkcipher_desc *desc,
199 struct scatterlist *dst, struct scatterlist *src,
203 struct crypto_blkcipher *tfm;
204 struct geode_aes_op *op = crypto_blkcipher_ctx(desc->tfm);
207 desc->tfm = op->fallback.blk;
209 ret = crypto_blkcipher_encrypt_iv(desc, dst, src, nbytes);
216 geode_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
218 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
220 if (unlikely(op->keylen != AES_KEYSIZE_128)) {
221 crypto_cipher_encrypt_one(op->fallback.cip, out, in);
225 op->src = (void *) in;
226 op->dst = (void *) out;
227 op->mode = AES_MODE_ECB;
229 op->len = AES_MIN_BLOCK_SIZE;
230 op->dir = AES_DIR_ENCRYPT;
237 geode_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
239 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
241 if (unlikely(op->keylen != AES_KEYSIZE_128)) {
242 crypto_cipher_decrypt_one(op->fallback.cip, out, in);
246 op->src = (void *) in;
247 op->dst = (void *) out;
248 op->mode = AES_MODE_ECB;
250 op->len = AES_MIN_BLOCK_SIZE;
251 op->dir = AES_DIR_DECRYPT;
256 static int fallback_init_cip(struct crypto_tfm *tfm)
258 const char *name = tfm->__crt_alg->cra_name;
259 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
261 op->fallback.cip = crypto_alloc_cipher(name, 0,
262 CRYPTO_ALG_ASYNC | CRYPTO_ALG_NEED_FALLBACK);
264 if (IS_ERR(op->fallback.cip)) {
265 printk(KERN_ERR "Error allocating fallback algo %s\n", name);
266 return PTR_ERR(op->fallback.cip);
272 static void fallback_exit_cip(struct crypto_tfm *tfm)
274 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
276 crypto_free_cipher(op->fallback.cip);
277 op->fallback.cip = NULL;
280 static struct crypto_alg geode_alg = {
282 .cra_driver_name = "geode-aes",
285 .cra_flags = CRYPTO_ALG_TYPE_CIPHER |
286 CRYPTO_ALG_NEED_FALLBACK,
287 .cra_init = fallback_init_cip,
288 .cra_exit = fallback_exit_cip,
289 .cra_blocksize = AES_MIN_BLOCK_SIZE,
290 .cra_ctxsize = sizeof(struct geode_aes_op),
291 .cra_module = THIS_MODULE,
294 .cia_min_keysize = AES_MIN_KEY_SIZE,
295 .cia_max_keysize = AES_MAX_KEY_SIZE,
296 .cia_setkey = geode_setkey_cip,
297 .cia_encrypt = geode_encrypt,
298 .cia_decrypt = geode_decrypt
304 geode_cbc_decrypt(struct blkcipher_desc *desc,
305 struct scatterlist *dst, struct scatterlist *src,
308 struct geode_aes_op *op = crypto_blkcipher_ctx(desc->tfm);
309 struct blkcipher_walk walk;
312 if (unlikely(op->keylen != AES_KEYSIZE_128))
313 return fallback_blk_dec(desc, dst, src, nbytes);
315 blkcipher_walk_init(&walk, dst, src, nbytes);
316 err = blkcipher_walk_virt(desc, &walk);
319 while ((nbytes = walk.nbytes)) {
320 op->src = walk.src.virt.addr,
321 op->dst = walk.dst.virt.addr;
322 op->mode = AES_MODE_CBC;
323 op->len = nbytes - (nbytes % AES_MIN_BLOCK_SIZE);
324 op->dir = AES_DIR_DECRYPT;
326 ret = geode_aes_crypt(op);
329 err = blkcipher_walk_done(desc, &walk, nbytes);
336 geode_cbc_encrypt(struct blkcipher_desc *desc,
337 struct scatterlist *dst, struct scatterlist *src,
340 struct geode_aes_op *op = crypto_blkcipher_ctx(desc->tfm);
341 struct blkcipher_walk walk;
344 if (unlikely(op->keylen != AES_KEYSIZE_128))
345 return fallback_blk_enc(desc, dst, src, nbytes);
347 blkcipher_walk_init(&walk, dst, src, nbytes);
348 err = blkcipher_walk_virt(desc, &walk);
351 while ((nbytes = walk.nbytes)) {
352 op->src = walk.src.virt.addr,
353 op->dst = walk.dst.virt.addr;
354 op->mode = AES_MODE_CBC;
355 op->len = nbytes - (nbytes % AES_MIN_BLOCK_SIZE);
356 op->dir = AES_DIR_ENCRYPT;
358 ret = geode_aes_crypt(op);
360 err = blkcipher_walk_done(desc, &walk, nbytes);
366 static int fallback_init_blk(struct crypto_tfm *tfm)
368 const char *name = tfm->__crt_alg->cra_name;
369 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
371 op->fallback.blk = crypto_alloc_blkcipher(name, 0,
372 CRYPTO_ALG_ASYNC | CRYPTO_ALG_NEED_FALLBACK);
374 if (IS_ERR(op->fallback.blk)) {
375 printk(KERN_ERR "Error allocating fallback algo %s\n", name);
376 return PTR_ERR(op->fallback.blk);
382 static void fallback_exit_blk(struct crypto_tfm *tfm)
384 struct geode_aes_op *op = crypto_tfm_ctx(tfm);
386 crypto_free_blkcipher(op->fallback.blk);
387 op->fallback.blk = NULL;
390 static struct crypto_alg geode_cbc_alg = {
391 .cra_name = "cbc(aes)",
392 .cra_driver_name = "cbc-aes-geode",
394 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
395 CRYPTO_ALG_KERN_DRIVER_ONLY |
396 CRYPTO_ALG_NEED_FALLBACK,
397 .cra_init = fallback_init_blk,
398 .cra_exit = fallback_exit_blk,
399 .cra_blocksize = AES_MIN_BLOCK_SIZE,
400 .cra_ctxsize = sizeof(struct geode_aes_op),
402 .cra_type = &crypto_blkcipher_type,
403 .cra_module = THIS_MODULE,
406 .min_keysize = AES_MIN_KEY_SIZE,
407 .max_keysize = AES_MAX_KEY_SIZE,
408 .setkey = geode_setkey_blk,
409 .encrypt = geode_cbc_encrypt,
410 .decrypt = geode_cbc_decrypt,
411 .ivsize = AES_IV_LENGTH,
417 geode_ecb_decrypt(struct blkcipher_desc *desc,
418 struct scatterlist *dst, struct scatterlist *src,
421 struct geode_aes_op *op = crypto_blkcipher_ctx(desc->tfm);
422 struct blkcipher_walk walk;
425 if (unlikely(op->keylen != AES_KEYSIZE_128))
426 return fallback_blk_dec(desc, dst, src, nbytes);
428 blkcipher_walk_init(&walk, dst, src, nbytes);
429 err = blkcipher_walk_virt(desc, &walk);
431 while ((nbytes = walk.nbytes)) {
432 op->src = walk.src.virt.addr,
433 op->dst = walk.dst.virt.addr;
434 op->mode = AES_MODE_ECB;
435 op->len = nbytes - (nbytes % AES_MIN_BLOCK_SIZE);
436 op->dir = AES_DIR_DECRYPT;
438 ret = geode_aes_crypt(op);
440 err = blkcipher_walk_done(desc, &walk, nbytes);
447 geode_ecb_encrypt(struct blkcipher_desc *desc,
448 struct scatterlist *dst, struct scatterlist *src,
451 struct geode_aes_op *op = crypto_blkcipher_ctx(desc->tfm);
452 struct blkcipher_walk walk;
455 if (unlikely(op->keylen != AES_KEYSIZE_128))
456 return fallback_blk_enc(desc, dst, src, nbytes);
458 blkcipher_walk_init(&walk, dst, src, nbytes);
459 err = blkcipher_walk_virt(desc, &walk);
461 while ((nbytes = walk.nbytes)) {
462 op->src = walk.src.virt.addr,
463 op->dst = walk.dst.virt.addr;
464 op->mode = AES_MODE_ECB;
465 op->len = nbytes - (nbytes % AES_MIN_BLOCK_SIZE);
466 op->dir = AES_DIR_ENCRYPT;
468 ret = geode_aes_crypt(op);
470 ret = blkcipher_walk_done(desc, &walk, nbytes);
476 static struct crypto_alg geode_ecb_alg = {
477 .cra_name = "ecb(aes)",
478 .cra_driver_name = "ecb-aes-geode",
480 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
481 CRYPTO_ALG_KERN_DRIVER_ONLY |
482 CRYPTO_ALG_NEED_FALLBACK,
483 .cra_init = fallback_init_blk,
484 .cra_exit = fallback_exit_blk,
485 .cra_blocksize = AES_MIN_BLOCK_SIZE,
486 .cra_ctxsize = sizeof(struct geode_aes_op),
488 .cra_type = &crypto_blkcipher_type,
489 .cra_module = THIS_MODULE,
492 .min_keysize = AES_MIN_KEY_SIZE,
493 .max_keysize = AES_MAX_KEY_SIZE,
494 .setkey = geode_setkey_blk,
495 .encrypt = geode_ecb_encrypt,
496 .decrypt = geode_ecb_decrypt,
501 static void geode_aes_remove(struct pci_dev *dev)
503 crypto_unregister_alg(&geode_alg);
504 crypto_unregister_alg(&geode_ecb_alg);
505 crypto_unregister_alg(&geode_cbc_alg);
507 pci_iounmap(dev, _iobase);
510 pci_release_regions(dev);
511 pci_disable_device(dev);
515 static int geode_aes_probe(struct pci_dev *dev, const struct pci_device_id *id)
518 ret = pci_enable_device(dev);
522 ret = pci_request_regions(dev, "geode-aes");
526 _iobase = pci_iomap(dev, 0, 0);
528 if (_iobase == NULL) {
533 spin_lock_init(&lock);
535 /* Clear any pending activity */
536 iowrite32(AES_INTR_PENDING | AES_INTR_MASK, _iobase + AES_INTR_REG);
538 ret = crypto_register_alg(&geode_alg);
542 ret = crypto_register_alg(&geode_ecb_alg);
546 ret = crypto_register_alg(&geode_cbc_alg);
550 printk(KERN_NOTICE "geode-aes: GEODE AES engine enabled.\n");
554 crypto_unregister_alg(&geode_ecb_alg);
557 crypto_unregister_alg(&geode_alg);
560 pci_iounmap(dev, _iobase);
563 pci_release_regions(dev);
566 pci_disable_device(dev);
568 printk(KERN_ERR "geode-aes: GEODE AES initialization failed.\n");
572 static struct pci_device_id geode_aes_tbl[] = {
573 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_LX_AES), } ,
577 MODULE_DEVICE_TABLE(pci, geode_aes_tbl);
579 static struct pci_driver geode_aes_driver = {
580 .name = "Geode LX AES",
581 .id_table = geode_aes_tbl,
582 .probe = geode_aes_probe,
583 .remove = geode_aes_remove,
586 module_pci_driver(geode_aes_driver);
588 MODULE_AUTHOR("Advanced Micro Devices, Inc.");
589 MODULE_DESCRIPTION("Geode LX Hardware AES driver");
590 MODULE_LICENSE("GPL");