Searched +full:stm32mp1 +full:- +full:cryp (Results 1 – 3 of 3) sorted by relevance
1 # 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 bindings10 - Lionel Debieve <lionel.debieve@st.com>15 - st,stm32f756-cryp16 - st,stm32mp1-cryp31 - compatible32 - reg[all …]
1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)3 * Copyright (C) STMicroelectronics 2019 - All Rights Reserved9 cryp1: cryp@54001000 {10 compatible = "st,stm32mp1-cryp";
1 // SPDX-License-Identifier: GPL-2.0-only24 #define DRIVER_NAME "stm32-cryp"108 #define _walked_in (cryp->in_walk.offset - cryp->in_sg->offset)109 #define _walked_out (cryp->out_walk.offset - cryp->out_sg->offset)119 struct stm32_cryp *cryp; member180 static inline bool is_aes(struct stm32_cryp *cryp) in is_aes() argument182 return cryp->flags & FLG_AES; in is_aes()185 static inline bool is_des(struct stm32_cryp *cryp) in is_des() argument187 return cryp->flags & FLG_DES; in is_des()190 static inline bool is_tdes(struct stm32_cryp *cryp) in is_tdes() argument[all …]