1OMAP PRCM bindings 2 3Power Reset and Clock Manager lists the device clocks and clockdomains under 4a DT hierarchy. Each TI SoC can have multiple PRCM entities listed for it, 5each describing one module and the clock hierarchy under it. see [1] for 6documentation about the individual clock/clockdomain nodes. 7 8[1] Documentation/devicetree/bindings/clock/ti/* 9 10Required properties: 11- compatible: Must be one of: 12 "ti,am3-prcm" 13 "ti,am3-scrm" 14 "ti,am4-prcm" 15 "ti,am4-scrm" 16 "ti,omap2-prcm" 17 "ti,omap2-scrm" 18 "ti,omap3-prm" 19 "ti,omap3-cm" 20 "ti,omap3-scrm" 21 "ti,omap4-cm1" 22 "ti,omap4-prm" 23 "ti,omap4-cm2" 24 "ti,omap4-scrm" 25 "ti,omap5-prm" 26 "ti,omap5-cm-core-aon" 27 "ti,omap5-scrm" 28 "ti,omap5-cm-core" 29 "ti,dra7-prm" 30 "ti,dra7-cm-core-aon" 31 "ti,dra7-cm-core" 32- reg: Contains PRCM module register address range 33 (base address and length) 34- clocks: clocks for this module 35- clockdomains: clockdomains for this module 36 37Example: 38 39cm: cm@48004000 { 40 compatible = "ti,omap3-cm"; 41 reg = <0x48004000 0x4000>; 42 43 cm_clocks: clocks { 44 #address-cells = <1>; 45 #size-cells = <0>; 46 }; 47 48 cm_clockdomains: clockdomains { 49 }; 50} 51 52&cm_clocks { 53 omap2_32k_fck: omap_32k_fck { 54 #clock-cells = <0>; 55 compatible = "fixed-clock"; 56 clock-frequency = <32768>; 57 }; 58}; 59 60&cm_clockdomains { 61 core_l3_clkdm: core_l3_clkdm { 62 compatible = "ti,clockdomain"; 63 clocks = <&sdrc_ick>; 64 }; 65}; 66