mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
4d2fa8b44b
Pull crypto updates from Herbert Xu: "Here is the crypto update for 5.3: API: - Test shash interface directly in testmgr - cra_driver_name is now mandatory Algorithms: - Replace arc4 crypto_cipher with library helper - Implement 5 way interleave for ECB, CBC and CTR on arm64 - Add xxhash - Add continuous self-test on noise source to drbg - Update jitter RNG Drivers: - Add support for SHA204A random number generator - Add support for 7211 in iproc-rng200 - Fix fuzz test failures in inside-secure - Fix fuzz test failures in talitos - Fix fuzz test failures in qat" * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (143 commits) crypto: stm32/hash - remove interruptible condition for dma crypto: stm32/hash - Fix hmac issue more than 256 bytes crypto: stm32/crc32 - rename driver file crypto: amcc - remove memset after dma_alloc_coherent crypto: ccp - Switch to SPDX license identifiers crypto: ccp - Validate the the error value used to index error messages crypto: doc - Fix formatting of new crypto engine content crypto: doc - Add parameter documentation crypto: arm64/aes-ce - implement 5 way interleave for ECB, CBC and CTR crypto: arm64/aes-ce - add 5 way interleave routines crypto: talitos - drop icv_ool crypto: talitos - fix hash on SEC1. crypto: talitos - move struct talitos_edesc into talitos.h lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE crypto/NX: Set receive window credits to max number of CRBs in RxFIFO crypto: asymmetric_keys - select CRYPTO_HASH where needed crypto: serpent - mark __serpent_setkey_sbox noinline crypto: testmgr - dynamically allocate crypto_shash crypto: testmgr - dynamically allocate testvec_config crypto: talitos - eliminate unneeded 'done' functions at build time ...
81 lines
1.9 KiB
C
81 lines
1.9 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/**
|
|
* Routines supporting VMX instructions on the Power 8
|
|
*
|
|
* Copyright (C) 2015 International Business Machines Inc.
|
|
*
|
|
* Author: Marcelo Henrique Cerri <mhcerri@br.ibm.com>
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/types.h>
|
|
#include <linux/err.h>
|
|
#include <linux/cpufeature.h>
|
|
#include <linux/crypto.h>
|
|
#include <asm/cputable.h>
|
|
#include <crypto/internal/hash.h>
|
|
#include <crypto/internal/skcipher.h>
|
|
|
|
extern struct shash_alg p8_ghash_alg;
|
|
extern struct crypto_alg p8_aes_alg;
|
|
extern struct skcipher_alg p8_aes_cbc_alg;
|
|
extern struct skcipher_alg p8_aes_ctr_alg;
|
|
extern struct skcipher_alg p8_aes_xts_alg;
|
|
|
|
static int __init p8_init(void)
|
|
{
|
|
int ret;
|
|
|
|
ret = crypto_register_shash(&p8_ghash_alg);
|
|
if (ret)
|
|
goto err;
|
|
|
|
ret = crypto_register_alg(&p8_aes_alg);
|
|
if (ret)
|
|
goto err_unregister_ghash;
|
|
|
|
ret = crypto_register_skcipher(&p8_aes_cbc_alg);
|
|
if (ret)
|
|
goto err_unregister_aes;
|
|
|
|
ret = crypto_register_skcipher(&p8_aes_ctr_alg);
|
|
if (ret)
|
|
goto err_unregister_aes_cbc;
|
|
|
|
ret = crypto_register_skcipher(&p8_aes_xts_alg);
|
|
if (ret)
|
|
goto err_unregister_aes_ctr;
|
|
|
|
return 0;
|
|
|
|
err_unregister_aes_ctr:
|
|
crypto_unregister_skcipher(&p8_aes_ctr_alg);
|
|
err_unregister_aes_cbc:
|
|
crypto_unregister_skcipher(&p8_aes_cbc_alg);
|
|
err_unregister_aes:
|
|
crypto_unregister_alg(&p8_aes_alg);
|
|
err_unregister_ghash:
|
|
crypto_unregister_shash(&p8_ghash_alg);
|
|
err:
|
|
return ret;
|
|
}
|
|
|
|
static void __exit p8_exit(void)
|
|
{
|
|
crypto_unregister_skcipher(&p8_aes_xts_alg);
|
|
crypto_unregister_skcipher(&p8_aes_ctr_alg);
|
|
crypto_unregister_skcipher(&p8_aes_cbc_alg);
|
|
crypto_unregister_alg(&p8_aes_alg);
|
|
crypto_unregister_shash(&p8_ghash_alg);
|
|
}
|
|
|
|
module_cpu_feature_match(PPC_MODULE_FEATURE_VEC_CRYPTO, p8_init);
|
|
module_exit(p8_exit);
|
|
|
|
MODULE_AUTHOR("Marcelo Cerri<mhcerri@br.ibm.com>");
|
|
MODULE_DESCRIPTION("IBM VMX cryptographic acceleration instructions "
|
|
"support on Power 8");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_VERSION("1.0.0");
|