xref: /linux/Documentation/devicetree/bindings/clock/lsi,axm5516-clks.yaml (revision 8d2b0853add1d7534dc0794e3c8e0b9e8c4ec640)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2# Copyright 2025 LSI
3%YAML 1.2
4---
5$id: http://devicetree.org/schemas/clock/lsi,axm5516-clks.yaml#
6$schema: http://devicetree.org/meta-schemas/core.yaml#
7
8title: LSI AXM5516 Clock Controller
9
10maintainers:
11  - Anders Berg <anders.berg@lsi.com>
12
13description:
14  See <dt-bindings/clock/lsi,axxia-clock.h> for the list of supported clock IDs.
15
16properties:
17  compatible:
18    const: lsi,axm5516-clks
19
20  reg:
21    maxItems: 1
22
23  '#clock-cells':
24    const: 1
25
26required:
27  - compatible
28  - reg
29  - '#clock-cells'
30
31additionalProperties: false
32
33examples:
34  - |
35    bus {
36        #address-cells = <2>;
37        #size-cells = <1>;
38        clock-controller@2010020000 {
39            compatible = "lsi,axm5516-clks";
40            #clock-cells = <1>;
41            reg = <0x20 0x10020000 0x20000>;
42        };
43    };
44