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: "Here is the crypto update for 4.12: API: - Add batch registration for acomp/scomp - Change acomp testing to non-unique compressed result - Extend algorithm name limit to 128 bytes - Require setkey before accept(2) in algif_aead Algorithms: - Add support for deflate rfc1950 (zlib) Drivers: - Add accelerated crct10dif for powerpc - Add crc32 in stm32 - Add sha384/sha512 in ccp - Add 3des/gcm(aes) for v5 devices in ccp - Add Queue Interface (QI) backend support in caam - Add new Exynos RNG driver - Add ThunderX ZIP driver - Add driver for hardware random generator on MT7623 SoC" * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (101 commits) crypto: stm32 - Fix OF module alias information crypto: algif_aead - Require setkey before accept(2) crypto: scomp - add support for deflate rfc1950 (zlib) crypto: scomp - allow registration of multiple scomps crypto: ccp - Change ISR handler method for a v5 CCP crypto: ccp - Change ISR handler method for a v3 CCP crypto: crypto4xx - rename ce_ring_contol to ce_ring_control crypto: testmgr - Allow ecb(cipher_null) in FIPS mode Revert "crypto: arm64/sha - Add constant operand modifier to ASM_EXPORT" crypto: ccp - Disable interrupts early on unload crypto: ccp - Use only the relevant interrupt bits hwrng: mtk - Add driver for hardware random generator on MT7623 SoC dt-bindings: hwrng: Add Mediatek hardware random generator bindings crypto: crct10dif-vpmsum - Fix missing preempt_disable() crypto: testmgr - replace compression known answer test crypto: acomp - allow registration of multiple acomps hwrng: n2 - Use devm_kcalloc() in n2rng_probe() crypto: chcr - Fix error handling related to 'chcr_alloc_shash' padata: get_next is never NULL crypto: exynos - Add new Exynos RNG driver ...
- Loading branch information
Showing
137 changed files
with
13,710 additions
and
2,480 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
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,16 @@ | ||
* STMicroelectronics STM32 CRC | ||
|
||
Required properties: | ||
- compatible: Should be "st,stm32f7-crc". | ||
- reg: The address and length of the peripheral registers space | ||
- clocks: The input clock of the CRC instance | ||
|
||
Optional properties: none | ||
|
||
Example: | ||
|
||
crc: crc@40023000 { | ||
compatible = "st,stm32f7-crc"; | ||
reg = <0x40023000 0x400>; | ||
clocks = <&rcc 0 12>; | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Device-Tree bindings for Mediatek random number generator | ||
found in Mediatek SoC family | ||
|
||
Required properties: | ||
- compatible : Should be "mediatek,mt7623-rng" | ||
- clocks : list of clock specifiers, corresponding to | ||
entries in clock-names property; | ||
- clock-names : Should contain "rng" entries; | ||
- reg : Specifies base physical address and size of the registers | ||
|
||
Example: | ||
|
||
rng: rng@1020f000 { | ||
compatible = "mediatek,mt7623-rng"; | ||
reg = <0 0x1020f000 0 0x1000>; | ||
clocks = <&infracfg CLK_INFRA_TRNG>; | ||
clock-names = "rng"; | ||
}; |
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 |
---|---|---|
|
@@ -6242,7 +6242,7 @@ F: drivers/crypto/nx/nx_csbcpb.h | |
F: drivers/crypto/nx/nx_debugfs.h | ||
|
||
IBM Power 842 compression accelerator | ||
M: Dan Streetman <[email protected]> | ||
M: Haren Myneni <[email protected]> | ||
S: Supported | ||
F: drivers/crypto/nx/Makefile | ||
F: drivers/crypto/nx/Kconfig | ||
|
@@ -10954,6 +10954,14 @@ L: [email protected] (moderated for non-subscribers) | |
S: Supported | ||
F: sound/soc/samsung/ | ||
|
||
SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER | ||
M: Krzysztof Kozlowski <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/crypto/exynos-rng.c | ||
F: Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt | ||
|
||
SAMSUNG FRAMEBUFFER DRIVER | ||
M: Jingoo Han <[email protected]> | ||
L: [email protected] | ||
|
@@ -10978,6 +10986,14 @@ F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt | ||
F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt | ||
|
||
SAMSUNG S5P Security SubSystem (SSS) DRIVER | ||
M: Krzysztof Kozlowski <[email protected]> | ||
M: Vladimir Zapolskiy <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/crypto/s5p-sss.c | ||
|
||
SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS | ||
M: Kyungmin Park <[email protected]> | ||
M: Sylwester Nawrocki <[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
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
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
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
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.