smb: client: Fix minor whitespace errors and warnings
[linux-modified.git] / Documentation / devicetree / bindings / crypto / qcom,inline-crypto-engine.yaml
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
17           - qcom,sm8450-inline-crypto-engine
18           - qcom,sm8550-inline-crypto-engine
19       - const: qcom,inline-crypto-engine
20
21   reg:
22     maxItems: 1
23
24   clocks:
25     maxItems: 1
26
27 required:
28   - compatible
29   - reg
30   - clocks
31
32 additionalProperties: false
33
34 examples:
35   - |
36     #include <dt-bindings/clock/qcom,sm8550-gcc.h>
37
38     crypto@1d88000 {
39       compatible = "qcom,sm8550-inline-crypto-engine",
40                    "qcom,inline-crypto-engine";
41       reg = <0x01d88000 0x8000>;
42       clocks = <&gcc GCC_UFS_PHY_ICE_CORE_CLK>;
43     };
44 ...