linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Herbert Xu <herbert@gondor.apana.org.au>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	"David S. Miller" <davem@davemloft.net>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Crypto Mailing List <linux-crypto@vger.kernel.org>
Subject: [GIT PULL] Crypto Update for 5.16
Date: Tue, 2 Nov 2021 11:52:02 +0800	[thread overview]
Message-ID: <20211102035201.GA23331@gondor.apana.org.au> (raw)
In-Reply-To: <20210830082818.GA30921@gondor.apana.org.au>

Hi Linus:

API:

- Delay boot-up self-test for built-in algorithms.

Algorithms:

- Remove fallback path on arm64 as SIMD now runs with softirq off.

Drivers:

- Add Keem Bay OCS ECC Driver.

The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:

  Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git linus 

for you to fetch changes up to 39ef08517082a424b5b65c3dbaa6c0fa9d3303b9:

  crypto: testmgr - fix wrong key length for pkcs1pad (2021-10-29 21:04:04 +0800)

----------------------------------------------------------------
Ard Biesheuvel (7):
      crypto: arm64/gcm-aes-ce - remove non-SIMD fallback path
      crypto: arm64/aes-neonbs - stop using SIMD helper for skciphers
      crypto: arm64/aes-ce - stop using SIMD helper for skciphers
      crypto: arm64/aes-ccm - yield NEON when processing auth-only data
      crypto: arm64/aes-ccm - remove non-SIMD fallback path
      crypto: arm64/aes-ccm - reduce NEON begin/end calls for common case
      crypto: arm64/aes-ccm - avoid by-ref argument for ce_aes_ccm_auth_data

Arnd Bergmann (2):
      crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency
      crypto: ccree - avoid out-of-range warnings from clang

Cai Huoqing (3):
      hwrng: Kconfig - Add helper dependency on COMPILE_TEST
      hwrng: ixp4xx - Make use of the helper function devm_platform_ioremap_resource()
      crypto: ccp - Make use of the helper macro kthread_run()

Colin Ian King (2):
      crypto: img-hash - remove need for error return variable ret
      crypto: hisilicon/zip - Fix spelling mistake "COMSUMED" -> "CONSUMED"

Daniel Jordan (1):
      crypto: pcrypt - Delay write to padata->info

Daniele Alessandrelli (2):
      crypto: ecc - Move ecc.h to include/crypto/internal
      crypto: ecc - Export additional helper functions

Giovanni Cabiddu (5):
      crypto: qat - remove unneeded packed attribute
      crypto: qat - power up 4xxx device
      crypto: qat - detect PFVF collision after ACK
      crypto: qat - disregard spurious PFVF interrupts
      crypto: qat - use hweight for bit counting

Herbert Xu (4):
      crypto: hisilicon - Fix sscanf format signedness
      crypto: api - Fix built-in testing dependency failures
      crypto: api - Export crypto_boot_test_finished
      crypto: api - Do not create test larvals if manager is disabled

Horia Geantă (1):
      crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks

Kai Ye (3):
      crypto: hisilicon/qm - fix the uacce mmap failed
      crypto: hisilicon/qm - support the userspace task resetting
      crypto: hisilicon/qm - modify the uacce mode check

Krzysztof Kozlowski (1):
      crypto: marvell/cesa - drop unneeded MODULE_ALIAS

Lei He (1):
      crypto: testmgr - fix wrong key length for pkcs1pad

Maksim Lukoshkov (1):
      crypto: qat - free irqs only if allocated

Marco Chiappero (9):
      crypto: qat - remove unnecessary collision prevention step in PFVF
      crypto: qat - fix handling of VF to PF interrupts
      crypto: qat - remove duplicated logic across GEN2 drivers
      crypto: qat - make pfvf send message direction agnostic
      crypto: qat - move pfvf collision detection values
      crypto: qat - rename pfvf collision constants
      crypto: qat - add VF and PF wrappers to common send function
      crypto: qat - extract send and wait from adf_vf2pf_request_version()
      crypto: qat - share adf_enable_pf2vf_comms() from adf_pf2vf_msg.c

Markus Schneider-Pargmann (1):
      hwrng: mtk - Force runtime pm ops for sleep ops

Michael Walle (1):
      crypto: caam - disable pkc for non-E SoCs

Nathan Chancellor (1):
      crypto: sm4 - Do not change section of ck and sbox

Ovidiu Panait (1):
      crypto: octeontx2 - set assoclen in aead_do_fallback()

Peter Gonda (1):
      crypto: ccp - Fix whitespace in sev_cmd_buffer_len()

Prabhjot Khurana (3):
      crypto: engine - Add KPP Support to Crypto Engine
      dt-bindings: crypto: Add Keem Bay ECC bindings
      crypto: keembay-ocs-ecc - Add Keem Bay OCS ECC Driver

Qing Wang (1):
      hwrng: s390 - replace snprintf in show functions with sysfs_emit

Randy Dunlap (1):
      crypto: jitter - drop kernel-doc notation

Sebastian Andrzej Siewior (1):
      crypto: testmgr - Only disable migration in crypto_disable_simd_for_test()

Shreyansh Chouhan (1):
      crypto: aesni - check walk.nbytes instead of err

Tang Bin (2):
      crypto: s5p-sss - Add error handling in s5p_aes_probe()
      crypto: sa2ul - Use the defined variable to clean code

Tim Gardner (1):
      crypto: drbg - Fix unused value warning in drbg_healthcheck_sanity()

Uwe Kleine-König (1):
      hwrng: meson - Improve error handling for core clock

Wojciech Ziemba (3):
      crypto: qat - replace deprecated MSI API
      crypto: qat - remove unmatched CPU affinity to cluster IRQ
      crypto: qat - free irq in case of failure

 Documentation/crypto/crypto_engine.rst             |    4 +
 .../bindings/crypto/intel,keembay-ocs-ecc.yaml     |   47 +
 MAINTAINERS                                        |   11 +
 arch/arm64/crypto/Kconfig                          |    6 -
 arch/arm64/crypto/aes-ce-ccm-core.S                |   24 +-
 arch/arm64/crypto/aes-ce-ccm-glue.c                |  203 ++--
 arch/arm64/crypto/aes-glue.c                       |  102 +-
 arch/arm64/crypto/aes-neonbs-glue.c                |  122 +--
 arch/arm64/crypto/ghash-ce-glue.c                  |  209 +---
 arch/x86/crypto/aesni-intel_glue.c                 |    2 +-
 crypto/Kconfig                                     |    2 +-
 crypto/algapi.c                                    |  123 ++-
 crypto/api.c                                       |   50 +-
 crypto/crypto_engine.c                             |   26 +
 crypto/drbg.c                                      |    2 +-
 crypto/ecc.c                                       |   14 +-
 crypto/ecdh.c                                      |    2 +-
 crypto/ecdsa.c                                     |    2 +-
 crypto/ecrdsa.c                                    |    2 +-
 crypto/ecrdsa_defs.h                               |    2 +-
 crypto/internal.h                                  |   10 +
 crypto/jitterentropy.c                             |   24 +-
 crypto/pcrypt.c                                    |   12 +-
 crypto/tcrypt.c                                    |    5 +-
 crypto/testmgr.c                                   |    4 +-
 crypto/testmgr.h                                   |    2 +-
 drivers/char/hw_random/Kconfig                     |   12 +-
 drivers/char/hw_random/ixp4xx-rng.c                |    4 +-
 drivers/char/hw_random/meson-rng.c                 |    5 +-
 drivers/char/hw_random/mtk-rng.c                   |    9 +-
 drivers/char/hw_random/s390-trng.c                 |    4 +-
 drivers/crypto/caam/caampkc.c                      |   19 +-
 drivers/crypto/caam/regs.h                         |    3 +
 drivers/crypto/ccp/ccp-dev-v3.c                    |    5 +-
 drivers/crypto/ccp/ccp-dev-v5.c                    |    5 +-
 drivers/crypto/ccp/sev-dev.c                       |    2 +-
 drivers/crypto/ccree/cc_driver.c                   |    3 +-
 drivers/crypto/hisilicon/qm.c                      |   74 +-
 drivers/crypto/hisilicon/zip/zip_main.c            |    2 +-
 drivers/crypto/img-hash.c                          |    7 +-
 drivers/crypto/keembay/Kconfig                     |   19 +
 drivers/crypto/keembay/Makefile                    |    2 +
 drivers/crypto/keembay/keembay-ocs-ecc.c           | 1017 ++++++++++++++++++++
 drivers/crypto/marvell/cesa/cesa.c                 |    1 -
 drivers/crypto/marvell/octeontx2/otx2_cptvf_algs.c |    1 +
 drivers/crypto/qat/qat_4xxx/adf_4xxx_hw_data.c     |   35 +-
 drivers/crypto/qat/qat_4xxx/adf_4xxx_hw_data.h     |   10 +
 drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.c   |   89 +-
 drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.h   |   13 +-
 drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.c     |   87 +-
 drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.h     |   12 -
 drivers/crypto/qat/qat_common/adf_accel_devices.h  |   29 +-
 drivers/crypto/qat/qat_common/adf_common_drv.h     |    9 +-
 drivers/crypto/qat/qat_common/adf_gen2_hw_data.c   |   98 ++
 drivers/crypto/qat/qat_common/adf_gen2_hw_data.h   |   27 +
 drivers/crypto/qat/qat_common/adf_init.c           |    5 +
 drivers/crypto/qat/qat_common/adf_isr.c            |  190 ++--
 drivers/crypto/qat/qat_common/adf_pf2vf_msg.c      |  238 +++--
 drivers/crypto/qat/qat_common/adf_pf2vf_msg.h      |    9 -
 drivers/crypto/qat/qat_common/adf_vf2pf_msg.c      |    4 +-
 drivers/crypto/qat/qat_common/adf_vf_isr.c         |   30 +-
 .../crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.c |  123 +--
 .../crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.h |   14 +-
 drivers/crypto/s5p-sss.c                           |    2 +
 drivers/crypto/sa2ul.c                             |   13 +-
 include/crypto/engine.h                            |    5 +
 {crypto => include/crypto/internal}/ecc.h          |   36 +
 lib/crypto/sm4.c                                   |    4 +-
 68 files changed, 2130 insertions(+), 1158 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
 create mode 100644 drivers/crypto/keembay/keembay-ocs-ecc.c
 rename {crypto => include/crypto/internal}/ecc.h (90%)

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

  parent reply	other threads:[~2021-11-02  3:52 UTC|newest]

Thread overview: 134+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-03  4:40 [GIT PULL] Crypto Update for 5.9 Herbert Xu
2020-08-03 17:55 ` pr-tracker-bot
2020-08-30 22:33 ` [GIT PULL] Crypto Fixes " Herbert Xu
2020-08-30 23:02   ` pr-tracker-bot
2020-09-10  0:34   ` Herbert Xu
2020-09-10  2:48     ` pr-tracker-bot
2020-10-26  1:11   ` [GIT PULL] Crypto Fixes for 5.10 Herbert Xu
2020-10-26 17:52     ` pr-tracker-bot
2020-12-27 11:32     ` [GIT PULL] Crypto Fixes for 5.11 Herbert Xu
2020-12-27 17:27       ` pr-tracker-bot
2021-01-08  3:54       ` Herbert Xu
2021-01-08 20:36         ` pr-tracker-bot
2021-01-18  5:13         ` Herbert Xu
2021-01-18 21:16           ` pr-tracker-bot
2021-01-25 22:36           ` Herbert Xu
2021-01-26  0:01             ` pr-tracker-bot
2021-07-08  3:09         ` [GIT PULL] Crypto Fixes for 5.14 Herbert Xu
2021-07-09 19:20           ` pr-tracker-bot
2021-08-17  1:36           ` Herbert Xu
2021-08-17  2:27             ` pr-tracker-bot
2021-09-29  2:38             ` [GIT PULL] Crypto Fixes for 5.15 Herbert Xu
2021-09-29 14:51               ` pr-tracker-bot
2021-10-29  4:14               ` Herbert Xu
2021-10-29 17:39                 ` Linus Torvalds
2021-11-02  4:01                   ` Herbert Xu
2021-10-29 18:49                 ` pr-tracker-bot
2021-11-12 10:48                 ` [GIT PULL] Crypto Fixes for 5.16 Herbert Xu
2021-11-12 20:42                   ` pr-tracker-bot
2021-12-22  5:13                   ` Herbert Xu
2021-12-22 19:02                     ` pr-tracker-bot
2022-02-09  2:33                     ` [GIT PULL] Crypto Fixes for 5.17 Herbert Xu
2022-02-09 18:01                       ` pr-tracker-bot
2022-03-16  1:13                       ` Herbert Xu
2022-03-17 20:40                         ` pr-tracker-bot
2022-03-31  3:16                         ` [GIT PULL] Crypto Fixes for 5.18 Herbert Xu
2022-03-31 19:12                           ` pr-tracker-bot
2022-05-20  5:41                           ` Herbert Xu
2022-05-20  6:10                             ` pr-tracker-bot
2022-05-27 11:29                           ` [GIT PULL] Crypto Fixes for 5.19 Herbert Xu
2022-05-28  1:21                             ` pr-tracker-bot
2022-06-17  8:29                             ` Herbert Xu
2022-06-17 15:29                               ` pr-tracker-bot
2022-06-30  7:56                               ` Herbert Xu
2022-06-30 17:28                                 ` pr-tracker-bot
2022-08-31  8:55                                 ` [GIT PULL] Crypto Fixes for 6.0 Herbert Xu
2022-08-31 17:20                                   ` pr-tracker-bot
2022-10-17  4:38                                 ` [GIT PULL] Crypto Fixes for 6.1 Herbert Xu
2022-10-17 17:51                                   ` pr-tracker-bot
2022-10-28  4:58                                   ` Herbert Xu
2022-10-28 17:00                                     ` Linus Torvalds
2022-11-02  9:49                                       ` Herbert Xu
2022-10-28 17:02                                     ` pr-tracker-bot
2023-01-06  9:15                                     ` [GIT PULL] Crypto Fixes for 6.2 Herbert Xu
2023-01-06 21:19                                       ` pr-tracker-bot
2023-03-05 10:15                                       ` [GIT PULL] Crypto Fixes for 6.3 Herbert Xu
2023-03-05 19:37                                         ` pr-tracker-bot
2023-05-07 13:19                                         ` [GIT PULL] Crypto Fixes for 6.4 Herbert Xu
2023-05-07 18:12                                           ` pr-tracker-bot
2023-05-29  3:41                                           ` Herbert Xu
2023-05-29 11:39                                             ` pr-tracker-bot
2023-07-09 23:51                                             ` [GIT PULL] Crypto Fixes for 6.5 Herbert Xu
2023-07-10 17:20                                               ` pr-tracker-bot
2023-08-21  3:37                                               ` Herbert Xu
2023-08-21  5:09                                                 ` pr-tracker-bot
2023-08-31  5:16                                                 ` [GIT PULL] Crypto Fixes for 6.6 Herbert Xu
2023-09-01 23:19                                                   ` pr-tracker-bot
2023-09-22  2:10                                                   ` Herbert Xu
2023-09-22 16:43                                                     ` pr-tracker-bot
2023-10-10  8:46                                                     ` Herbert Xu
2023-10-10 18:54                                                       ` pr-tracker-bot
2023-10-21  9:23                                                       ` Herbert Xu
2023-10-21 17:57                                                         ` pr-tracker-bot
2023-11-09  4:30                                                   ` [GIT PULL] Crypto Fixes for 6.7 Herbert Xu
2023-11-10  1:30                                                     ` pr-tracker-bot
2022-08-02  6:05                             ` [GIT PULL] Crypto Update for 5.20 Herbert Xu
2022-08-03  0:57                               ` pr-tracker-bot
2022-10-04  8:54                               ` [GIT PULL] Crypto Update for 6.1 Herbert Xu
2022-10-10 20:56                                 ` pr-tracker-bot
2022-12-14  8:15                                 ` [GIT PULL] Crypto Update for 6.2 Herbert Xu
2022-12-14 22:25                                   ` pr-tracker-bot
2023-02-20  5:22                                   ` [GIT PULL] Crypto Update for 6.3 Herbert Xu
2023-02-22  2:50                                     ` pr-tracker-bot
2023-04-24  4:52                                     ` [GIT PULL] Crypto Update for 6.4 Herbert Xu
2023-04-26 17:06                                       ` pr-tracker-bot
2023-06-29  5:06                                       ` [GIT PULL] Crypto Update for 6.5 Herbert Xu
2023-07-01  5:04                                         ` pr-tracker-bot
2023-08-28  9:22                                         ` [GIT PULL] Crypto Update for 6.6 Herbert Xu
2023-08-29 19:00                                           ` pr-tracker-bot
2023-11-02  6:56                                           ` [GIT PULL] Crypto Update for 6.7 Herbert Xu
2023-11-03  2:34                                             ` Linus Torvalds
2023-11-03  5:52                                               ` Herbert Xu
2023-11-03  6:32                                                 ` Linus Torvalds
2023-11-06 10:00                                                   ` [PATCH] crypto: jitterentropy - Hide esoteric Kconfig options under FIPS and EXPERT Herbert Xu
2023-11-06 15:25                                                     ` Stephan Mueller
2023-11-10  9:04                                                     ` Geert Uytterhoeven
2023-11-03  2:37                                             ` [GIT PULL] Crypto Update for 6.7 pr-tracker-bot
2024-01-09 22:17                                             ` [GIT PULL] Crypto Update for 6.8 Herbert Xu
2024-01-10 20:38                                               ` pr-tracker-bot
2024-02-01  5:32                                               ` [GIT PULL] Crypto Fixes " Herbert Xu
2024-02-01 18:23                                                 ` pr-tracker-bot
2024-02-08  4:29                                                 ` Herbert Xu
2024-02-08  6:24                                                   ` pr-tracker-bot
2024-02-21  9:10                                                   ` Herbert Xu
2024-02-21 17:17                                                     ` pr-tracker-bot
2024-02-28  8:07                                                     ` Herbert Xu
2024-02-28 17:48                                                       ` pr-tracker-bot
2024-03-06  9:47                                                       ` Herbert Xu
2024-03-06 16:33                                                         ` pr-tracker-bot
2024-03-25  9:47                                                 ` [GIT PULL] Crypto Fixes for 6.9 Herbert Xu
2024-03-25 18:18                                                   ` pr-tracker-bot
2024-03-15  3:04                                               ` [GIT PULL] Crypto Update " Herbert Xu
2024-03-15 21:51                                                 ` Linus Torvalds
2024-03-16  4:39                                                   ` Herbert Xu
2024-03-15 21:59                                                 ` pr-tracker-bot
2020-10-12  3:32 ` [GIT PULL] Crypto Update for 5.10 Herbert Xu
2020-10-13 16:24   ` pr-tracker-bot
2020-12-14  5:55   ` [GIT PULL] Crypto Update for 5.11 Herbert Xu
2020-12-14 20:56     ` pr-tracker-bot
2021-02-15  2:47     ` [GIT PULL] Crypto Update for 5.12 Herbert Xu
2021-02-22  1:28       ` pr-tracker-bot
2021-04-26 12:32       ` [GIT PULL] Crypto Update for 5.13 Herbert Xu
2021-04-26 15:59         ` pr-tracker-bot
2021-06-28 11:00         ` [GIT PULL] Crypto Update for 5.14 Herbert Xu
2021-06-28 23:36           ` pr-tracker-bot
2021-08-30  8:28           ` [GIT PULL] Crypto Update for 5.15 Herbert Xu
2021-08-30 20:17             ` pr-tracker-bot
2021-11-02  3:52             ` Herbert Xu [this message]
2021-11-02  4:27               ` [GIT PULL] Crypto Update for 5.16 pr-tracker-bot
2022-01-11  2:04               ` [GIT PULL] Crypto Update for 5.17 Herbert Xu
2022-01-11 20:53                 ` pr-tracker-bot
2022-03-20 23:42                 ` [GIT PULL] Crypto Update for 5.18 Herbert Xu
2022-03-21 23:14                   ` Linus Torvalds
2022-03-22  5:49                     ` Herbert Xu
2022-03-21 23:18                   ` pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211102035201.GA23331@gondor.apana.org.au \
    --to=herbert@gondor.apana.org.au \
    --cc=davem@davemloft.net \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).