All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/16] Support the ASPEED HACE crypto command
@ 2026-08-11  3:10 Jamin Lin
  2026-08-11  3:10 ` [PATCH v3 01/16] hw/misc/aspeed_hace: Support the crypto command in direct access mode Jamin Lin
                   ` (15 more replies)
  0 siblings, 16 replies; 22+ messages in thread
From: Jamin Lin @ 2026-08-11  3:10 UTC (permalink / raw)
  To: Daniel P. Berrangé, Cédric Le Goater, Peter Maydell,
	Steven Lee, Troy Lee, Kane Chen, Andrew Jeffery, Joel Stanley,
	Eric Blake, Markus Armbruster, Fabiano Rosas, Laurent Vivier,
	Paolo Bonzini, open list:All patches CC here,
	open list:ASPEED BMCs
  Cc: Jamin Lin, Troy Lee

The ASPEED HACE model only emulated the hash command; the crypto (cipher)
command was stubbed out. On the AST2700 the kernel runs the crypto driver
self-tests at boot, so without crypto emulation booting floods the log
with failures:

  root@ast2700-default:~# dmesg | grep "self"
[    6.078446] alg: self-tests for ctr(des) using aspeed-ctr-des failed (rc=-22)
[    6.079295] alg: self-tests for ctr(des) using aspeed-ctr-des failed (rc=-22)
[    6.089924] alg: self-tests for ctr(des3_ede) using aspeed-ctr-tdes failed (rc=-22)
[    6.090629] alg: self-tests for ctr(des3_ede) using aspeed-ctr-tdes failed (rc=-22)
[    6.100134] alg: self-tests for cbc(des3_ede) using aspeed-cbc-tdes failed (rc=-22)
[    6.100416] alg: self-tests for ecb(des3_ede) using aspeed-ecb-tdes failed (rc=-22)
[    6.100576] alg: self-tests for cbc(des3_ede) using aspeed-cbc-tdes failed (rc=-22)
[    6.101411] alg: self-tests for ecb(des3_ede) using aspeed-ecb-tdes failed (rc=-22)
[    6.152954] alg: self-tests for ecb(des) using aspeed-ecb-des failed (rc=-22)
[    6.153701] alg: self-tests for ecb(des) using aspeed-ecb-des failed (rc=-22)
[    6.180101] alg: self-tests for cbc(des) using aspeed-cbc-des failed (rc=-22)
[    6.180747] alg: self-tests for cbc(des) using aspeed-cbc-des failed (rc=-22)
[    6.206437] alg: self-tests for ctr(aes) using aspeed-ctr-aes failed (rc=-22)
[    6.206910] alg: self-tests for ctr(aes) using aspeed-ctr-aes failed (rc=-22)
[    6.215313] alg: self-tests for cbc(aes) using aspeed-cbc-aes failed (rc=-22)
[    6.215698] alg: self-tests for cbc(aes) using aspeed-cbc-aes failed (rc=-22)
[    6.227173] alg: self-tests for ecb(aes) using aspeed-ecb-aes failed (rc=-22)
[    6.228027] alg: self-tests for ecb(aes) using aspeed-ecb-aes failed (rc=-22)
[    6.276878] alg: self-tests for gcm(aes) using aspeed-gcm-aes failed (rc=-22)
[    6.277541] alg: self-tests for gcm(aes) using aspeed-gcm-aes failed (rc=-22)

This series implements the HACE crypto command: AES/DES/3DES in ECB/CBC/CTR
over direct and scatter-gather DMA, and AES-GCM with 64-bit DMA on the
AST2700. It also adds GCM to the qcrypto cipher API (gcrypt backend) that
the AST2700 path needs, plus qtest and unit-test coverage.

With crypto emulated the self-tests pass, the warnings above disappear, and
the temporary 'cryptomgr.notests=1' boot workaround in the AST2700
functional tests is dropped.

Note: the GNUTLS crypto backend does not support AES-CTR mode.

v1:
  1. Support the crypto command in direct access mode
  2. Support scatter-gather mode for the crypto command
  3. Support the AES-GCM mode for the crypto command
  4. Support 64-bit DMA for the crypto command
  5. Test the crypto command
  6. Drop the AST2700 crypto self-test/model workaround

v2:
  1. Add AES-GCM to the nettle and gnutls crypto backends
  2. Skip crypto tests for cipher modes the
    compiled backend does not support, via qcrypto_cipher_supports()
  3.  Check qcrypto_cipher_supports() before running a
    crypt command and report the mode as unimplemented when the backend lacks it

v3:
  1. remove the duplicate CRYPT_IRQ_EN definition.
  2. remove the unuse CRYPT_CMD_DST_SG_CTRL definition.
  3. Drop "Drop the AST2700 crypto self-test workaround" patch because GNUTLS
     backend does not support AES-CTR mode.

Jamin Lin (16):
  hw/misc/aspeed_hace: Support the crypto command in direct access mode
  tests/qtest/aspeed-hace: Test the crypto command on the AST2500
  hw/misc/aspeed_hace: Support scatter-gather mode for the crypto
    command
  hw/misc/aspeed_hace: Support the CTR mode for the crypto command
  tests/qtest/aspeed-hace: Test the crypto command on the AST2600
  tests/qtest/aspeed-hace: Test the crypto command on the AST1030
  crypto/cipher: Add GCM to QCryptoCipherMode
  crypto/cipher: Add setaad/gettag for AEAD modes
  crypto/cipher-gcrypt: Implement AES-GCM
  crypto/cipher-nettle: Implement AES-GCM
  crypto/cipher-gnutls: Implement AES-GCM
  tests/unit/test-crypto-cipher: Test AES-GCM mode
  hw/misc/aspeed_hace: Support 64-bit DMA for the crypto command
  hw/misc/aspeed_hace: Support the AES-GCM mode for the crypto command
  hw/misc/aspeed_hace: Enable the crypto command on the AST2700
  tests/qtest/aspeed-hace: Test the crypto command on the AST2700

 qapi/crypto.json                |   4 +-
 crypto/cipherpriv.h             |   8 +
 include/crypto/cipher.h         |  36 ++
 include/hw/misc/aspeed_hace.h   |   1 -
 tests/qtest/aspeed-hace-utils.h |  20 +
 crypto/cipher.c                 |  32 ++
 hw/misc/aspeed_hace.c           | 461 ++++++++++++++++++++-
 tests/qtest/aspeed-hace-utils.c | 693 ++++++++++++++++++++++++++++++++
 tests/qtest/aspeed_hace-test.c  |  18 +
 tests/qtest/ast2700-hace-test.c |   9 +
 tests/unit/test-crypto-cipher.c | 240 +++++++++++
 crypto/cipher-gcrypt.c.inc      | 101 +++++
 crypto/cipher-gnutls.c.inc      | 154 +++++++
 crypto/cipher-nettle.c.inc      | 128 ++++++
 tests/qtest/meson.build         |   6 +-
 15 files changed, 1886 insertions(+), 25 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2026-08-11  5:23 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-11  3:10 [PATCH v3 00/16] Support the ASPEED HACE crypto command Jamin Lin
2026-08-11  3:10 ` [PATCH v3 01/16] hw/misc/aspeed_hace: Support the crypto command in direct access mode Jamin Lin
2026-08-11  3:13   ` Kane Chen
2026-08-11  3:10 ` [PATCH v3 02/16] tests/qtest/aspeed-hace: Test the crypto command on the AST2500 Jamin Lin
2026-08-11  3:10 ` [PATCH v3 03/16] hw/misc/aspeed_hace: Support scatter-gather mode for the crypto command Jamin Lin
2026-08-11  3:16   ` Kane Chen
2026-08-11  3:10 ` [PATCH v3 04/16] hw/misc/aspeed_hace: Support the CTR " Jamin Lin
2026-08-11  3:10 ` [PATCH v3 05/16] tests/qtest/aspeed-hace: Test the crypto command on the AST2600 Jamin Lin
2026-08-11  3:15   ` Kane Chen
2026-08-11  3:10 ` [PATCH v3 06/16] tests/qtest/aspeed-hace: Test the crypto command on the AST1030 Jamin Lin
2026-08-11  3:10 ` [PATCH v3 07/16] crypto/cipher: Add GCM to QCryptoCipherMode Jamin Lin
2026-08-11  3:10 ` [PATCH v3 08/16] crypto/cipher: Add setaad/gettag for AEAD modes Jamin Lin
2026-08-11  3:10 ` [PATCH v3 09/16] crypto/cipher-gcrypt: Implement AES-GCM Jamin Lin
2026-08-11  3:10 ` [PATCH v3 10/16] crypto/cipher-nettle: " Jamin Lin
2026-08-11  3:10 ` [PATCH v3 11/16] crypto/cipher-gnutls: " Jamin Lin
2026-08-11  3:10 ` [PATCH v3 12/16] tests/unit/test-crypto-cipher: Test AES-GCM mode Jamin Lin
2026-08-11  3:10 ` [PATCH v3 13/16] hw/misc/aspeed_hace: Support 64-bit DMA for the crypto command Jamin Lin
2026-08-11  3:10 ` [PATCH v3 14/16] hw/misc/aspeed_hace: Support the AES-GCM mode " Jamin Lin
2026-08-11  4:26   ` Cédric Le Goater
2026-08-11  5:22     ` Jamin Lin
2026-08-11  3:10 ` [PATCH v3 15/16] hw/misc/aspeed_hace: Enable the crypto command on the AST2700 Jamin Lin
2026-08-11  3:10 ` [PATCH v3 16/16] tests/qtest/aspeed-hace: Test " Jamin Lin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.