diff options
author | Tero Kristo <t-kristo@ti.com> | 2013-07-18 05:42:02 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-01-17 15:35:57 -0500 |
commit | 2488ff6cfcedc26b635eddf5a2997352da0098f8 (patch) | |
tree | 87611e4df0dab12a2238b54f88c0cce07ff78124 /arch/arm/boot/dts/omap4.dtsi | |
parent | ffab239956613be7b81d00999128fd05fd096762 (diff) |
ARM: dts: omap4 clock data
This patch creates a unique node for each clock in the OMAP4 power,
reset and clock manager (PRCM). OMAP443x and OMAP446x have slightly
different clock tree which is taken into account in the data.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'arch/arm/boot/dts/omap4.dtsi')
-rw-r--r-- | arch/arm/boot/dts/omap4.dtsi | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi index a1e05853afcd..d3f8a6e8ca20 100644 --- a/arch/arm/boot/dts/omap4.dtsi +++ b/arch/arm/boot/dts/omap4.dtsi | |||
@@ -107,6 +107,58 @@ | |||
107 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, | 107 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, |
108 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; | 108 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; |
109 | 109 | ||
110 | cm1: cm1@4a004000 { | ||
111 | compatible = "ti,omap4-cm1"; | ||
112 | reg = <0x4a004000 0x2000>; | ||
113 | |||
114 | cm1_clocks: clocks { | ||
115 | #address-cells = <1>; | ||
116 | #size-cells = <0>; | ||
117 | }; | ||
118 | |||
119 | cm1_clockdomains: clockdomains { | ||
120 | }; | ||
121 | }; | ||
122 | |||
123 | prm: prm@4a306000 { | ||
124 | compatible = "ti,omap4-prm"; | ||
125 | reg = <0x4a306000 0x3000>; | ||
126 | |||
127 | prm_clocks: clocks { | ||
128 | #address-cells = <1>; | ||
129 | #size-cells = <0>; | ||
130 | }; | ||
131 | |||
132 | prm_clockdomains: clockdomains { | ||
133 | }; | ||
134 | }; | ||
135 | |||
136 | cm2: cm2@4a008000 { | ||
137 | compatible = "ti,omap4-cm2"; | ||
138 | reg = <0x4a008000 0x3000>; | ||
139 | |||
140 | cm2_clocks: clocks { | ||
141 | #address-cells = <1>; | ||
142 | #size-cells = <0>; | ||
143 | }; | ||
144 | |||
145 | cm2_clockdomains: clockdomains { | ||
146 | }; | ||
147 | }; | ||
148 | |||
149 | scrm: scrm@4a30a000 { | ||
150 | compatible = "ti,omap4-scrm"; | ||
151 | reg = <0x4a30a000 0x2000>; | ||
152 | |||
153 | scrm_clocks: clocks { | ||
154 | #address-cells = <1>; | ||
155 | #size-cells = <0>; | ||
156 | }; | ||
157 | |||
158 | scrm_clockdomains: clockdomains { | ||
159 | }; | ||
160 | }; | ||
161 | |||
110 | counter32k: counter@4a304000 { | 162 | counter32k: counter@4a304000 { |
111 | compatible = "ti,omap-counter32k"; | 163 | compatible = "ti,omap-counter32k"; |
112 | reg = <0x4a304000 0x20>; | 164 | reg = <0x4a304000 0x20>; |
@@ -707,3 +759,5 @@ | |||
707 | }; | 759 | }; |
708 | }; | 760 | }; |
709 | }; | 761 | }; |
762 | |||
763 | /include/ "omap44xx-clocks.dtsi" | ||