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