Home
last modified time | relevance | path

Searched +full:stm32mp1 +full:- +full:cryp (Results 1 – 8 of 8) sorted by relevance

/kernel/linux/linux-6.6/Documentation/devicetree/bindings/crypto/
Dst,stm32-cryp.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/crypto/st,stm32-cryp.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: STMicroelectronics STM32 CRYP
9 description: The STM32 CRYP block is built on the CRYP block found in
14 - Lionel Debieve <lionel.debieve@foss.st.com>
19 - st,stn8820-cryp
20 - stericsson,ux500-cryp
21 - st,stm32f756-cryp
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/crypto/
Dst,stm32-cryp.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/crypto/st,stm32-cryp.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: STMicroelectronics STM32 CRYP bindings
10 - Lionel Debieve <lionel.debieve@st.com>
15 - st,stm32f756-cryp
16 - st,stm32mp1-cryp
31 - compatible
32 - reg
[all …]
/kernel/linux/linux-6.6/arch/arm/boot/dts/st/
Dstm32mp13xc.dtsi1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * Copyright (C) STMicroelectronics 2021 - All Rights Reserved
9 cryp: crypto@54002000 { label
10 compatible = "st,stm32mp1-cryp";
Dstm32mp15xc.dtsi1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * Copyright (C) STMicroelectronics 2019 - All Rights Reserved
9 cryp1: cryp@54001000 {
10 compatible = "st,stm32mp1-cryp";
Dstm32mp13xf.dtsi1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * Copyright (C) STMicroelectronics 2021 - All Rights Reserved
9 cryp: crypto@54002000 { label
10 compatible = "st,stm32mp1-cryp";
/kernel/linux/linux-5.10/arch/arm/boot/dts/
Dstm32mp15xc.dtsi1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * Copyright (C) STMicroelectronics 2019 - All Rights Reserved
9 cryp1: cryp@54001000 {
10 compatible = "st,stm32mp1-cryp";
/kernel/linux/linux-5.10/drivers/crypto/stm32/
Dstm32-cryp.c1 // SPDX-License-Identifier: GPL-2.0-only
24 #define DRIVER_NAME "stm32-cryp"
116 struct stm32_cryp *cryp; member
167 static inline bool is_aes(struct stm32_cryp *cryp) in is_aes() argument
169 return cryp->flags & FLG_AES; in is_aes()
172 static inline bool is_des(struct stm32_cryp *cryp) in is_des() argument
174 return cryp->flags & FLG_DES; in is_des()
177 static inline bool is_tdes(struct stm32_cryp *cryp) in is_tdes() argument
179 return cryp->flags & FLG_TDES; in is_tdes()
182 static inline bool is_ecb(struct stm32_cryp *cryp) in is_ecb() argument
[all …]
/kernel/linux/linux-6.6/drivers/crypto/stm32/
Dstm32-cryp.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Ux500 support taken from snippets in the old Ux500 cryp driver
28 #define DRIVER_NAME "stm32-cryp"
162 struct stm32_cryp *cryp; member
213 static inline bool is_aes(struct stm32_cryp *cryp) in is_aes() argument
215 return cryp->flags & FLG_AES; in is_aes()
218 static inline bool is_des(struct stm32_cryp *cryp) in is_des() argument
220 return cryp->flags & FLG_DES; in is_des()
223 static inline bool is_tdes(struct stm32_cryp *cryp) in is_tdes() argument
225 return cryp->flags & FLG_TDES; in is_tdes()
[all …]