summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/crypto/ti,mcrc.yaml
blob: 60e5db60bf32555733df7439ba62efaf95bf5c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/crypto/ti,mcrc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Texas Instruments MCRC bindings

maintainers:
  - Kamlesh Gurudasani  <kamlesh@ti.com>

properties:
  compatible:
    const: ti,mcrc

  reg:
    maxItems: 1

  clocks:
    maxItems: 1

  power-domains:
    maxItems: 1

required:
  - compatible
  - reg
  - clocks
  - power-domains

additionalProperties: false

examples:
  - |
    mcrc: mcrc@30300000 {
      compatible = "ti,mcrc";
      reg = <0x00 0x30300000 0x00 0x1000>;
      clocks = <&k3_clks 116 0>;
      power-domains = <&k3_pds 116 TI_SCI_PD_EXCLUSIVE>;
      };

...