Quoting Peter Harliman Liem (2022-09-06 04:51:50) > CRYPTO_AES is needed for aes-related algo (e.g. > safexcel-gcm-aes, safexcel-xcbc-aes, safexcel-cmac-aes). > Without it, we observe failures when allocating transform > for those algo. > > Fixes: 363a90c2d517 ("crypto: safexcel/aes - switch to library version of key expansion routine") The above commit explicitly switched crypto drivers to use the AES library instead of the generic AES cipher one, which seems like a good move. What are the issues you're encountering and why the AES lib makes the driver to fail? > Signed-off-by: Peter Harliman Liem <pliem@xxxxxxxxxxxxx> > --- > v2: > Add fixes tag > > drivers/crypto/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig > index 3e6aa319920b..b12d222e49a1 100644 > --- a/drivers/crypto/Kconfig > +++ b/drivers/crypto/Kconfig > @@ -740,6 +740,7 @@ config CRYPTO_DEV_SAFEXCEL > select CRYPTO_SHA512 > select CRYPTO_CHACHA20POLY1305 > select CRYPTO_SHA3 > + select CRYPTO_AES > help > This driver interfaces with the SafeXcel EIP-97 and EIP-197 cryptographic > engines designed by Inside Secure. It currently accelerates DES, 3DES and > -- > 2.17.1 >