Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) |
| 2 | %YAML 1.2 |
| 3 | --- |
| 4 | $id: http://devicetree.org/schemas/crypto/qcom,inline-crypto-engine.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: Qualcomm Technologies, Inc. (QTI) Inline Crypto Engine |
| 8 | |
| 9 | maintainers: |
| 10 | - Bjorn Andersson <andersson@kernel.org> |
| 11 | |
| 12 | properties: |
| 13 | compatible: |
| 14 | items: |
| 15 | - enum: |
| 16 | - qcom,sa8775p-inline-crypto-engine |
Tom Rini | 6bb92fc | 2024-05-20 09:54:58 -0600 | [diff] [blame] | 17 | - qcom,sc7180-inline-crypto-engine |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 18 | - qcom,sm8450-inline-crypto-engine |
| 19 | - qcom,sm8550-inline-crypto-engine |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 20 | - qcom,sm8650-inline-crypto-engine |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 21 | - const: qcom,inline-crypto-engine |
| 22 | |
| 23 | reg: |
| 24 | maxItems: 1 |
| 25 | |
| 26 | clocks: |
| 27 | maxItems: 1 |
| 28 | |
| 29 | required: |
| 30 | - compatible |
| 31 | - reg |
| 32 | - clocks |
| 33 | |
| 34 | additionalProperties: false |
| 35 | |
| 36 | examples: |
| 37 | - | |
| 38 | #include <dt-bindings/clock/qcom,sm8550-gcc.h> |
| 39 | |
| 40 | crypto@1d88000 { |
| 41 | compatible = "qcom,sm8550-inline-crypto-engine", |
| 42 | "qcom,inline-crypto-engine"; |
| 43 | reg = <0x01d88000 0x8000>; |
| 44 | clocks = <&gcc GCC_UFS_PHY_ICE_CORE_CLK>; |
| 45 | }; |
| 46 | ... |