hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/Documentation/devicetree/bindings/clock/ti-clkctrl.txt
....@@ -16,18 +16,23 @@
1616 Documentation/devicetree/bindings/clock/clock-bindings.txt.
1717
1818 Required properties :
19
-- compatible : shall be "ti,clkctrl"
19
+- compatible : shall be "ti,clkctrl" or a clock domain specific name:
20
+ "ti,clkctrl-l4-cfg"
21
+ "ti,clkctrl-l4-per"
22
+ "ti,clkctrl-l4-secure"
23
+ "ti,clkctrl-l4-wkup"
2024 - #clock-cells : shall contain 2 with the first entry being the instance
2125 offset from the clock domain base and the second being the
2226 clock index
27
+- reg : clock registers
2328
2429 Example: Clock controller node on omap 4430:
2530
2631 &cm2 {
2732 l4per: cm@1400 {
2833 cm_l4per@0 {
29
- cm_l4per_clkctrl: clk@20 {
30
- compatible = "ti,clkctrl";
34
+ cm_l4per_clkctrl: clock@20 {
35
+ compatible = "ti,clkctrl-l4-per", "ti,clkctrl";
3136 reg = <0x20 0x1b0>;
3237 #clock-cells = <2>;
3338 };