diff options
author | Zain Wang <zain.wang@rock-chips.com> | 2015-11-25 13:43:32 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-11-27 21:19:32 +0800 |
commit | 433cd2c617bfbac27a02e40fbcce1713c84ce441 (patch) | |
tree | 85707d62dbcbf060eaa26d9034c65cef5bd25fa2 /drivers/crypto/rockchip/Makefile | |
parent | e81c1b4646149c1e67610c83e8770a7217491a13 (diff) | |
download | linux-433cd2c617bfbac27a02e40fbcce1713c84ce441.tar.bz2 |
crypto: rockchip - add crypto driver for rk3288
Crypto driver support:
ecb(aes) cbc(aes) ecb(des) cbc(des) ecb(des3_ede) cbc(des3_ede)
You can alloc tags above in your case.
And other algorithms and platforms will be added later on.
Signed-off-by: Zain Wang <zain.wang@rock-chips.com>
Tested-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/rockchip/Makefile')
-rw-r--r-- | drivers/crypto/rockchip/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/crypto/rockchip/Makefile b/drivers/crypto/rockchip/Makefile new file mode 100644 index 000000000000..7051c6c715f3 --- /dev/null +++ b/drivers/crypto/rockchip/Makefile @@ -0,0 +1,3 @@ +obj-$(CONFIG_CRYPTO_DEV_ROCKCHIP) += rk_crypto.o +rk_crypto-objs := rk3288_crypto.o \ + rk3288_crypto_ablkcipher.o \ |