forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git…
…/herbert/crypto-2.6 Pull crypto updates from Herbert Xu: "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" * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (61 commits) crypto: testmgr - fix wrong key length for pkcs1pad crypto: pcrypt - Delay write to padata->info crypto: ccp - Make use of the helper macro kthread_run() crypto: sa2ul - Use the defined variable to clean code crypto: s5p-sss - Add error handling in s5p_aes_probe() crypto: keembay-ocs-ecc - Add Keem Bay OCS ECC Driver dt-bindings: crypto: Add Keem Bay ECC bindings crypto: ecc - Export additional helper functions crypto: ecc - Move ecc.h to include/crypto/internal crypto: engine - Add KPP Support to Crypto Engine crypto: api - Do not create test larvals if manager is disabled crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks hwrng: s390 - replace snprintf in show functions with sysfs_emit crypto: octeontx2 - set assoclen in aead_do_fallback() crypto: ccp - Fix whitespace in sev_cmd_buffer_len() hwrng: mtk - Force runtime pm ops for sleep ops crypto: testmgr - Only disable migration in crypto_disable_simd_for_test() crypto: qat - share adf_enable_pf2vf_comms() from adf_pf2vf_msg.c crypto: qat - extract send and wait from adf_vf2pf_request_version() crypto: qat - add VF and PF wrappers to common send function ...
- Loading branch information
Showing
68 changed files
with
2,130 additions
and
1,158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/crypto/intel,keembay-ocs-ecc.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Intel Keem Bay OCS ECC Device Tree Bindings | ||
|
||
maintainers: | ||
- Daniele Alessandrelli <[email protected]> | ||
- Prabhjot Khurana <[email protected]> | ||
|
||
description: | ||
The Intel Keem Bay Offload and Crypto Subsystem (OCS) Elliptic Curve | ||
Cryptography (ECC) device provides hardware acceleration for elliptic curve | ||
cryptography using the NIST P-256 and NIST P-384 elliptic curves. | ||
|
||
properties: | ||
compatible: | ||
const: intel,keembay-ocs-ecc | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- clocks | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/arm-gic.h> | ||
crypto@30001000 { | ||
compatible = "intel,keembay-ocs-ecc"; | ||
reg = <0x30001000 0x1000>; | ||
interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>; | ||
clocks = <&scmi_clk 95>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9556,6 +9556,17 @@ F: drivers/crypto/keembay/keembay-ocs-aes-core.c | |
F: drivers/crypto/keembay/ocs-aes.c | ||
F: drivers/crypto/keembay/ocs-aes.h | ||
|
||
INTEL KEEM BAY OCS ECC CRYPTO DRIVER | ||
M: Daniele Alessandrelli <[email protected]> | ||
M: Prabhjot Khurana <[email protected]> | ||
M: Mark Gross <[email protected]> | ||
S: Maintained | ||
F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml | ||
F: drivers/crypto/keembay/Kconfig | ||
F: drivers/crypto/keembay/Makefile | ||
F: drivers/crypto/keembay/keembay-ocs-ecc.c | ||
F: drivers/crypto/keembay/ocs-ecc-curve-defs.h | ||
|
||
INTEL KEEM BAY OCS HCU CRYPTO DRIVER | ||
M: Daniele Alessandrelli <[email protected]> | ||
M: Declan Murphy <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.