diff options
author | Tony Lindgren <tony@atomide.com> | 2015-04-01 15:24:29 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-04-01 15:24:29 -0400 |
commit | 21295368367beaa563b310d5492166dba158b884 (patch) | |
tree | c8a7c44beff93c040c76788ce2f6f4916281cbd8 | |
parent | 209431eff8afb928d72200c79153165c7d860ca0 (diff) | |
parent | ca125b5e31f5ada6844f57c5a8e7cd104d26c8fa (diff) |
Merge branch '4.0-rc1-prcm-cleanup-v6' of https://github.com/t-kristo/linux-pm into omap-for-v4.1/prcm-cleanup
Conflicts:
arch/arm/boot/dts/dra7.dtsi
66 files changed, 1612 insertions, 800 deletions
diff --git a/Documentation/devicetree/bindings/arm/omap/ctrl.txt b/Documentation/devicetree/bindings/arm/omap/ctrl.txt new file mode 100644 index 000000000000..3a4e5901ce31 --- /dev/null +++ b/Documentation/devicetree/bindings/arm/omap/ctrl.txt | |||
@@ -0,0 +1,79 @@ | |||
1 | OMAP Control Module bindings | ||
2 | |||
3 | Control Module contains miscellaneous features under it based on SoC type. | ||
4 | Pincontrol is one common feature, and it has a specialized support | ||
5 | described in [1]. Typically some clock nodes are also under control module. | ||
6 | Syscon is used to share register level access to drivers external to | ||
7 | control module driver itself. | ||
8 | |||
9 | See [2] for documentation about clock/clockdomain nodes. | ||
10 | |||
11 | [1] Documentation/devicetree/bindings/pinctrl/pinctrl-single.txt | ||
12 | [2] Documentation/devicetree/bindings/clock/ti/* | ||
13 | |||
14 | Required properties: | ||
15 | - compatible: Must be one of: | ||
16 | "ti,am3-scm" | ||
17 | "ti,am4-scm" | ||
18 | "ti,dm814-scrm" | ||
19 | "ti,dm816-scrm" | ||
20 | "ti,omap2-scm" | ||
21 | "ti,omap3-scm" | ||
22 | "ti,omap4-scm-core" | ||
23 | "ti,omap4-scm-padconf-core" | ||
24 | "ti,omap5-scm-core" | ||
25 | "ti,omap5-scm-padconf-core" | ||
26 | "ti,dra7-scm-core" | ||
27 | - reg: Contains Control Module register address range | ||
28 | (base address and length) | ||
29 | |||
30 | Optional properties: | ||
31 | - clocks: clocks for this module | ||
32 | - clockdomains: clockdomains for this module | ||
33 | |||
34 | Examples: | ||
35 | |||
36 | scm: scm@2000 { | ||
37 | compatible = "ti,omap3-scm", "simple-bus"; | ||
38 | reg = <0x2000 0x2000>; | ||
39 | #address-cells = <1>; | ||
40 | #size-cells = <1>; | ||
41 | ranges = <0 0x2000 0x2000>; | ||
42 | |||
43 | omap3_pmx_core: pinmux@30 { | ||
44 | compatible = "ti,omap3-padconf", | ||
45 | "pinctrl-single"; | ||
46 | reg = <0x30 0x230>; | ||
47 | #address-cells = <1>; | ||
48 | #size-cells = <0>; | ||
49 | #interrupt-cells = <1>; | ||
50 | interrupt-controller; | ||
51 | pinctrl-single,register-width = <16>; | ||
52 | pinctrl-single,function-mask = <0xff1f>; | ||
53 | }; | ||
54 | |||
55 | scm_conf: scm_conf@270 { | ||
56 | compatible = "syscon"; | ||
57 | reg = <0x270 0x330>; | ||
58 | #address-cells = <1>; | ||
59 | #size-cells = <1>; | ||
60 | |||
61 | scm_clocks: clocks { | ||
62 | #address-cells = <1>; | ||
63 | #size-cells = <0>; | ||
64 | }; | ||
65 | }; | ||
66 | |||
67 | scm_clockdomains: clockdomains { | ||
68 | }; | ||
69 | } | ||
70 | |||
71 | &scm_clocks { | ||
72 | mcbsp5_mux_fck: mcbsp5_mux_fck { | ||
73 | #clock-cells = <0>; | ||
74 | compatible = "ti,composite-mux-clock"; | ||
75 | clocks = <&core_96m_fck>, <&mcbsp_clks>; | ||
76 | ti,bit-shift = <4>; | ||
77 | reg = <0x02d8>; | ||
78 | }; | ||
79 | }; | ||
diff --git a/Documentation/devicetree/bindings/arm/omap/l4.txt b/Documentation/devicetree/bindings/arm/omap/l4.txt new file mode 100644 index 000000000000..b4f8a16e7e3b --- /dev/null +++ b/Documentation/devicetree/bindings/arm/omap/l4.txt | |||
@@ -0,0 +1,26 @@ | |||
1 | L4 interconnect bindings | ||
2 | |||
3 | These bindings describe the OMAP SoCs L4 interconnect bus. | ||
4 | |||
5 | Required properties: | ||
6 | - compatible : Should be "ti,omap2-l4" for OMAP2 family l4 core bus | ||
7 | Should be "ti,omap2-l4-wkup" for OMAP2 family l4 wkup bus | ||
8 | Should be "ti,omap3-l4-core" for OMAP3 family l4 core bus | ||
9 | Should be "ti,omap4-l4-cfg" for OMAP4 family l4 cfg bus | ||
10 | Should be "ti,omap4-l4-wkup" for OMAP4 family l4 wkup bus | ||
11 | Should be "ti,omap5-l4-cfg" for OMAP5 family l4 cfg bus | ||
12 | Should be "ti,omap5-l4-wkup" for OMAP5 family l4 wkup bus | ||
13 | Should be "ti,dra7-l4-cfg" for DRA7 family l4 cfg bus | ||
14 | Should be "ti,dra7-l4-wkup" for DRA7 family l4 wkup bus | ||
15 | Should be "ti,am3-l4-wkup" for AM33xx family l4 wkup bus | ||
16 | Should be "ti,am4-l4-wkup" for AM43xx family l4 wkup bus | ||
17 | - ranges : contains the IO map range for the bus | ||
18 | |||
19 | Examples: | ||
20 | |||
21 | l4: l4@48000000 { | ||
22 | compatible "ti,omap2-l4", "simple-bus"; | ||
23 | #address-cells = <1>; | ||
24 | #size-cells = <1>; | ||
25 | ranges = <0 0x48000000 0x100000>; | ||
26 | }; | ||
diff --git a/Documentation/devicetree/bindings/arm/omap/prcm.txt b/Documentation/devicetree/bindings/arm/omap/prcm.txt index 79074dac684a..3eb6d7afff14 100644 --- a/Documentation/devicetree/bindings/arm/omap/prcm.txt +++ b/Documentation/devicetree/bindings/arm/omap/prcm.txt | |||
@@ -10,14 +10,10 @@ documentation about the individual clock/clockdomain nodes. | |||
10 | Required properties: | 10 | Required properties: |
11 | - compatible: Must be one of: | 11 | - compatible: Must be one of: |
12 | "ti,am3-prcm" | 12 | "ti,am3-prcm" |
13 | "ti,am3-scrm" | ||
14 | "ti,am4-prcm" | 13 | "ti,am4-prcm" |
15 | "ti,am4-scrm" | ||
16 | "ti,omap2-prcm" | 14 | "ti,omap2-prcm" |
17 | "ti,omap2-scrm" | ||
18 | "ti,omap3-prm" | 15 | "ti,omap3-prm" |
19 | "ti,omap3-cm" | 16 | "ti,omap3-cm" |
20 | "ti,omap3-scrm" | ||
21 | "ti,omap4-cm1" | 17 | "ti,omap4-cm1" |
22 | "ti,omap4-prm" | 18 | "ti,omap4-prm" |
23 | "ti,omap4-cm2" | 19 | "ti,omap4-cm2" |
@@ -29,6 +25,8 @@ Required properties: | |||
29 | "ti,dra7-prm" | 25 | "ti,dra7-prm" |
30 | "ti,dra7-cm-core-aon" | 26 | "ti,dra7-cm-core-aon" |
31 | "ti,dra7-cm-core" | 27 | "ti,dra7-cm-core" |
28 | "ti,dm814-prcm" | ||
29 | "ti,dm816-prcm" | ||
32 | - reg: Contains PRCM module register address range | 30 | - reg: Contains PRCM module register address range |
33 | (base address and length) | 31 | (base address and length) |
34 | - clocks: clocks for this module | 32 | - clocks: clocks for this module |
diff --git a/arch/arm/boot/dts/am33xx-clocks.dtsi b/arch/arm/boot/dts/am33xx-clocks.dtsi index 712edce7d6fb..236c78a3c6ca 100644 --- a/arch/arm/boot/dts/am33xx-clocks.dtsi +++ b/arch/arm/boot/dts/am33xx-clocks.dtsi | |||
@@ -7,7 +7,7 @@ | |||
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | &scrm_clocks { | 10 | &scm_clocks { |
11 | sys_clkin_ck: sys_clkin_ck { | 11 | sys_clkin_ck: sys_clkin_ck { |
12 | #clock-cells = <0>; | 12 | #clock-cells = <0>; |
13 | compatible = "ti,mux-clock"; | 13 | compatible = "ti,mux-clock"; |
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi index acd37057bca9..21fcc440fc1a 100644 --- a/arch/arm/boot/dts/am33xx.dtsi +++ b/arch/arm/boot/dts/am33xx.dtsi | |||
@@ -83,20 +83,6 @@ | |||
83 | }; | 83 | }; |
84 | }; | 84 | }; |
85 | 85 | ||
86 | am33xx_control_module: control_module@4a002000 { | ||
87 | compatible = "syscon"; | ||
88 | reg = <0x44e10000 0x7fc>; | ||
89 | }; | ||
90 | |||
91 | am33xx_pinmux: pinmux@44e10800 { | ||
92 | compatible = "pinctrl-single"; | ||
93 | reg = <0x44e10800 0x0238>; | ||
94 | #address-cells = <1>; | ||
95 | #size-cells = <0>; | ||
96 | pinctrl-single,register-width = <32>; | ||
97 | pinctrl-single,function-mask = <0x7f>; | ||
98 | }; | ||
99 | |||
100 | /* | 86 | /* |
101 | * XXX: Use a flat representation of the AM33XX interconnect. | 87 | * XXX: Use a flat representation of the AM33XX interconnect. |
102 | * The real AM33XX interconnect network is quite complex. Since | 88 | * The real AM33XX interconnect network is quite complex. Since |
@@ -111,37 +97,58 @@ | |||
111 | ranges; | 97 | ranges; |
112 | ti,hwmods = "l3_main"; | 98 | ti,hwmods = "l3_main"; |
113 | 99 | ||
114 | prcm: prcm@44e00000 { | 100 | l4_wkup: l4_wkup@44c00000 { |
115 | compatible = "ti,am3-prcm"; | 101 | compatible = "ti,am3-l4-wkup", "simple-bus"; |
116 | reg = <0x44e00000 0x4000>; | 102 | #address-cells = <1>; |
117 | 103 | #size-cells = <1>; | |
118 | prcm_clocks: clocks { | 104 | ranges = <0 0x44c00000 0x280000>; |
119 | #address-cells = <1>; | ||
120 | #size-cells = <0>; | ||
121 | }; | ||
122 | 105 | ||
123 | prcm_clockdomains: clockdomains { | 106 | prcm: prcm@200000 { |
124 | }; | 107 | compatible = "ti,am3-prcm"; |
125 | }; | 108 | reg = <0x200000 0x4000>; |
126 | 109 | ||
127 | scrm: scrm@44e10000 { | 110 | prcm_clocks: clocks { |
128 | compatible = "ti,am3-scrm"; | 111 | #address-cells = <1>; |
129 | reg = <0x44e10000 0x2000>; | 112 | #size-cells = <0>; |
113 | }; | ||
130 | 114 | ||
131 | scrm_clocks: clocks { | 115 | prcm_clockdomains: clockdomains { |
132 | #address-cells = <1>; | 116 | }; |
133 | #size-cells = <0>; | ||
134 | }; | 117 | }; |
135 | 118 | ||
136 | scrm_clockdomains: clockdomains { | 119 | scm: scm@210000 { |
120 | compatible = "ti,am3-scm", "simple-bus"; | ||
121 | reg = <0x210000 0x2000>; | ||
122 | #address-cells = <1>; | ||
123 | #size-cells = <1>; | ||
124 | ranges = <0 0x210000 0x2000>; | ||
125 | |||
126 | am33xx_pinmux: pinmux@800 { | ||
127 | compatible = "pinctrl-single"; | ||
128 | reg = <0x800 0x238>; | ||
129 | #address-cells = <1>; | ||
130 | #size-cells = <0>; | ||
131 | pinctrl-single,register-width = <32>; | ||
132 | pinctrl-single,function-mask = <0x7f>; | ||
133 | }; | ||
134 | |||
135 | scm_conf: scm_conf@0 { | ||
136 | compatible = "syscon"; | ||
137 | reg = <0x0 0x800>; | ||
138 | #address-cells = <1>; | ||
139 | #size-cells = <1>; | ||
140 | |||
141 | scm_clocks: clocks { | ||
142 | #address-cells = <1>; | ||
143 | #size-cells = <0>; | ||
144 | }; | ||
145 | }; | ||
146 | |||
147 | scm_clockdomains: clockdomains { | ||
148 | }; | ||
137 | }; | 149 | }; |
138 | }; | 150 | }; |
139 | 151 | ||
140 | cm: syscon@44e10000 { | ||
141 | compatible = "ti,am33xx-controlmodule", "syscon"; | ||
142 | reg = <0x44e10000 0x800>; | ||
143 | }; | ||
144 | |||
145 | intc: interrupt-controller@48200000 { | 152 | intc: interrupt-controller@48200000 { |
146 | compatible = "ti,am33xx-intc"; | 153 | compatible = "ti,am33xx-intc"; |
147 | interrupt-controller; | 154 | interrupt-controller; |
@@ -350,7 +357,7 @@ | |||
350 | reg = <0x481cc000 0x2000>; | 357 | reg = <0x481cc000 0x2000>; |
351 | clocks = <&dcan0_fck>; | 358 | clocks = <&dcan0_fck>; |
352 | clock-names = "fck"; | 359 | clock-names = "fck"; |
353 | syscon-raminit = <&am33xx_control_module 0x644 0>; | 360 | syscon-raminit = <&scm_conf 0x644 0>; |
354 | interrupts = <52>; | 361 | interrupts = <52>; |
355 | status = "disabled"; | 362 | status = "disabled"; |
356 | }; | 363 | }; |
@@ -361,7 +368,7 @@ | |||
361 | reg = <0x481d0000 0x2000>; | 368 | reg = <0x481d0000 0x2000>; |
362 | clocks = <&dcan1_fck>; | 369 | clocks = <&dcan1_fck>; |
363 | clock-names = "fck"; | 370 | clock-names = "fck"; |
364 | syscon-raminit = <&am33xx_control_module 0x644 1>; | 371 | syscon-raminit = <&scm_conf 0x644 1>; |
365 | interrupts = <55>; | 372 | interrupts = <55>; |
366 | status = "disabled"; | 373 | status = "disabled"; |
367 | }; | 374 | }; |
@@ -720,7 +727,7 @@ | |||
720 | */ | 727 | */ |
721 | interrupts = <40 41 42 43>; | 728 | interrupts = <40 41 42 43>; |
722 | ranges; | 729 | ranges; |
723 | syscon = <&cm>; | 730 | syscon = <&scm_conf>; |
724 | status = "disabled"; | 731 | status = "disabled"; |
725 | 732 | ||
726 | davinci_mdio: mdio@4a101000 { | 733 | davinci_mdio: mdio@4a101000 { |
diff --git a/arch/arm/boot/dts/am3517.dtsi b/arch/arm/boot/dts/am3517.dtsi index c90724bded10..f164dce08755 100644 --- a/arch/arm/boot/dts/am3517.dtsi +++ b/arch/arm/boot/dts/am3517.dtsi | |||
@@ -31,7 +31,7 @@ | |||
31 | status = "disabled"; | 31 | status = "disabled"; |
32 | reg = <0x5c000000 0x30000>; | 32 | reg = <0x5c000000 0x30000>; |
33 | interrupts = <67 68 69 70>; | 33 | interrupts = <67 68 69 70>; |
34 | syscon = <&omap3_scm_general>; | 34 | syscon = <&scm_conf>; |
35 | ti,davinci-ctrl-reg-offset = <0x10000>; | 35 | ti,davinci-ctrl-reg-offset = <0x10000>; |
36 | ti,davinci-ctrl-mod-reg-offset = <0>; | 36 | ti,davinci-ctrl-mod-reg-offset = <0>; |
37 | ti,davinci-ctrl-ram-offset = <0x20000>; | 37 | ti,davinci-ctrl-ram-offset = <0x20000>; |
diff --git a/arch/arm/boot/dts/am35xx-clocks.dtsi b/arch/arm/boot/dts/am35xx-clocks.dtsi index df489d310b50..518b8fde88b0 100644 --- a/arch/arm/boot/dts/am35xx-clocks.dtsi +++ b/arch/arm/boot/dts/am35xx-clocks.dtsi | |||
@@ -7,7 +7,7 @@ | |||
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | &scrm_clocks { | 10 | &scm_clocks { |
11 | emac_ick: emac_ick { | 11 | emac_ick: emac_ick { |
12 | #clock-cells = <0>; | 12 | #clock-cells = <0>; |
13 | compatible = "ti,am35xx-gate-clock"; | 13 | compatible = "ti,am35xx-gate-clock"; |
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi index 286e31790e29..2f6f0c2040db 100644 --- a/arch/arm/boot/dts/am4372.dtsi +++ b/arch/arm/boot/dts/am4372.dtsi | |||
@@ -57,22 +57,6 @@ | |||
57 | cache-level = <2>; | 57 | cache-level = <2>; |
58 | }; | 58 | }; |
59 | 59 | ||
60 | am43xx_control_module: control_module@4a002000 { | ||
61 | compatible = "syscon"; | ||
62 | reg = <0x44e10000 0x7f4>; | ||
63 | }; | ||
64 | |||
65 | am43xx_pinmux: pinmux@44e10800 { | ||
66 | compatible = "ti,am437-padconf", "pinctrl-single"; | ||
67 | reg = <0x44e10800 0x31c>; | ||
68 | #address-cells = <1>; | ||
69 | #size-cells = <0>; | ||
70 | #interrupt-cells = <1>; | ||
71 | interrupt-controller; | ||
72 | pinctrl-single,register-width = <32>; | ||
73 | pinctrl-single,function-mask = <0xffffffff>; | ||
74 | }; | ||
75 | |||
76 | ocp { | 60 | ocp { |
77 | compatible = "ti,am4372-l3-noc", "simple-bus"; | 61 | compatible = "ti,am4372-l3-noc", "simple-bus"; |
78 | #address-cells = <1>; | 62 | #address-cells = <1>; |
@@ -84,29 +68,58 @@ | |||
84 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, | 68 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, |
85 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; | 69 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; |
86 | 70 | ||
87 | prcm: prcm@44df0000 { | 71 | l4_wkup: l4_wkup@44c00000 { |
88 | compatible = "ti,am4-prcm"; | 72 | compatible = "ti,am4-l4-wkup", "simple-bus"; |
89 | reg = <0x44df0000 0x11000>; | 73 | #address-cells = <1>; |
90 | 74 | #size-cells = <1>; | |
91 | prcm_clocks: clocks { | 75 | ranges = <0 0x44c00000 0x287000>; |
92 | #address-cells = <1>; | ||
93 | #size-cells = <0>; | ||
94 | }; | ||
95 | 76 | ||
96 | prcm_clockdomains: clockdomains { | 77 | prcm: prcm@1f0000 { |
97 | }; | 78 | compatible = "ti,am4-prcm"; |
98 | }; | 79 | reg = <0x1f0000 0x11000>; |
99 | 80 | ||
100 | scrm: scrm@44e10000 { | 81 | prcm_clocks: clocks { |
101 | compatible = "ti,am4-scrm"; | 82 | #address-cells = <1>; |
102 | reg = <0x44e10000 0x2000>; | 83 | #size-cells = <0>; |
84 | }; | ||
103 | 85 | ||
104 | scrm_clocks: clocks { | 86 | prcm_clockdomains: clockdomains { |
105 | #address-cells = <1>; | 87 | }; |
106 | #size-cells = <0>; | ||
107 | }; | 88 | }; |
108 | 89 | ||
109 | scrm_clockdomains: clockdomains { | 90 | scm: scm@210000 { |
91 | compatible = "ti,am4-scm", "simple-bus"; | ||
92 | reg = <0x210000 0x4000>; | ||
93 | #address-cells = <1>; | ||
94 | #size-cells = <1>; | ||
95 | ranges = <0 0x210000 0x4000>; | ||
96 | |||
97 | am43xx_pinmux: pinmux@800 { | ||
98 | compatible = "ti,am437-padconf", | ||
99 | "pinctrl-single"; | ||
100 | reg = <0x800 0x31c>; | ||
101 | #address-cells = <1>; | ||
102 | #size-cells = <0>; | ||
103 | #interrupt-cells = <1>; | ||
104 | interrupt-controller; | ||
105 | pinctrl-single,register-width = <32>; | ||
106 | pinctrl-single,function-mask = <0xffffffff>; | ||
107 | }; | ||
108 | |||
109 | scm_conf: scm_conf@0 { | ||
110 | compatible = "syscon"; | ||
111 | reg = <0x0 0x800>; | ||
112 | #address-cells = <1>; | ||
113 | #size-cells = <1>; | ||
114 | |||
115 | scm_clocks: clocks { | ||
116 | #address-cells = <1>; | ||
117 | #size-cells = <0>; | ||
118 | }; | ||
119 | }; | ||
120 | |||
121 | scm_clockdomains: clockdomains { | ||
122 | }; | ||
110 | }; | 123 | }; |
111 | }; | 124 | }; |
112 | 125 | ||
@@ -933,7 +946,7 @@ | |||
933 | clocks = <&dcan0_fck>; | 946 | clocks = <&dcan0_fck>; |
934 | clock-names = "fck"; | 947 | clock-names = "fck"; |
935 | reg = <0x481cc000 0x2000>; | 948 | reg = <0x481cc000 0x2000>; |
936 | syscon-raminit = <&am43xx_control_module 0x644 0>; | 949 | syscon-raminit = <&scm_conf 0x644 0>; |
937 | interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; | 950 | interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; |
938 | status = "disabled"; | 951 | status = "disabled"; |
939 | }; | 952 | }; |
@@ -944,7 +957,7 @@ | |||
944 | clocks = <&dcan1_fck>; | 957 | clocks = <&dcan1_fck>; |
945 | clock-names = "fck"; | 958 | clock-names = "fck"; |
946 | reg = <0x481d0000 0x2000>; | 959 | reg = <0x481d0000 0x2000>; |
947 | syscon-raminit = <&am43xx_control_module 0x644 1>; | 960 | syscon-raminit = <&scm_conf 0x644 1>; |
948 | interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; | 961 | interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; |
949 | status = "disabled"; | 962 | status = "disabled"; |
950 | }; | 963 | }; |
diff --git a/arch/arm/boot/dts/am43x-epos-evm.dts b/arch/arm/boot/dts/am43x-epos-evm.dts index 257c099c347e..72f01bb5d61c 100644 --- a/arch/arm/boot/dts/am43x-epos-evm.dts +++ b/arch/arm/boot/dts/am43x-epos-evm.dts | |||
@@ -69,7 +69,48 @@ | |||
69 | }; | 69 | }; |
70 | }; | 70 | }; |
71 | 71 | ||
72 | am43xx_pinmux: pinmux@44e10800 { | 72 | matrix_keypad: matrix_keypad@0 { |
73 | compatible = "gpio-matrix-keypad"; | ||
74 | debounce-delay-ms = <5>; | ||
75 | col-scan-delay-us = <2>; | ||
76 | |||
77 | row-gpios = <&gpio0 12 GPIO_ACTIVE_HIGH /* Bank0, pin12 */ | ||
78 | &gpio0 13 GPIO_ACTIVE_HIGH /* Bank0, pin13 */ | ||
79 | &gpio0 14 GPIO_ACTIVE_HIGH /* Bank0, pin14 */ | ||
80 | &gpio0 15 GPIO_ACTIVE_HIGH>; /* Bank0, pin15 */ | ||
81 | |||
82 | col-gpios = <&gpio3 9 GPIO_ACTIVE_HIGH /* Bank3, pin9 */ | ||
83 | &gpio3 10 GPIO_ACTIVE_HIGH /* Bank3, pin10 */ | ||
84 | &gpio2 18 GPIO_ACTIVE_HIGH /* Bank2, pin18 */ | ||
85 | &gpio2 19 GPIO_ACTIVE_HIGH>; /* Bank2, pin19 */ | ||
86 | |||
87 | linux,keymap = <0x00000201 /* P1 */ | ||
88 | 0x01000204 /* P4 */ | ||
89 | 0x02000207 /* P7 */ | ||
90 | 0x0300020a /* NUMERIC_STAR */ | ||
91 | 0x00010202 /* P2 */ | ||
92 | 0x01010205 /* P5 */ | ||
93 | 0x02010208 /* P8 */ | ||
94 | 0x03010200 /* P0 */ | ||
95 | 0x00020203 /* P3 */ | ||
96 | 0x01020206 /* P6 */ | ||
97 | 0x02020209 /* P9 */ | ||
98 | 0x0302020b /* NUMERIC_POUND */ | ||
99 | 0x00030067 /* UP */ | ||
100 | 0x0103006a /* RIGHT */ | ||
101 | 0x0203006c /* DOWN */ | ||
102 | 0x03030069>; /* LEFT */ | ||
103 | }; | ||
104 | |||
105 | backlight { | ||
106 | compatible = "pwm-backlight"; | ||
107 | pwms = <&ecap0 0 50000 PWM_POLARITY_INVERTED>; | ||
108 | brightness-levels = <0 51 53 56 62 75 101 152 255>; | ||
109 | default-brightness-level = <8>; | ||
110 | }; | ||
111 | }; | ||
112 | |||
113 | &am43xx_pinmux { | ||
73 | cpsw_default: cpsw_default { | 114 | cpsw_default: cpsw_default { |
74 | pinctrl-single,pins = < | 115 | pinctrl-single,pins = < |
75 | /* Slave 1 */ | 116 | /* Slave 1 */ |
@@ -279,47 +320,6 @@ | |||
279 | 0x204 (DS0_PULL_UP_DOWN_EN | INPUT_EN | MUX_MODE7) | 320 | 0x204 (DS0_PULL_UP_DOWN_EN | INPUT_EN | MUX_MODE7) |
280 | >; | 321 | >; |
281 | }; | 322 | }; |
282 | }; | ||
283 | |||
284 | matrix_keypad: matrix_keypad@0 { | ||
285 | compatible = "gpio-matrix-keypad"; | ||
286 | debounce-delay-ms = <5>; | ||
287 | col-scan-delay-us = <2>; | ||
288 | |||
289 | row-gpios = <&gpio0 12 GPIO_ACTIVE_HIGH /* Bank0, pin12 */ | ||
290 | &gpio0 13 GPIO_ACTIVE_HIGH /* Bank0, pin13 */ | ||
291 | &gpio0 14 GPIO_ACTIVE_HIGH /* Bank0, pin14 */ | ||
292 | &gpio0 15 GPIO_ACTIVE_HIGH>; /* Bank0, pin15 */ | ||
293 | |||
294 | col-gpios = <&gpio3 9 GPIO_ACTIVE_HIGH /* Bank3, pin9 */ | ||
295 | &gpio3 10 GPIO_ACTIVE_HIGH /* Bank3, pin10 */ | ||
296 | &gpio2 18 GPIO_ACTIVE_HIGH /* Bank2, pin18 */ | ||
297 | &gpio2 19 GPIO_ACTIVE_HIGH>; /* Bank2, pin19 */ | ||
298 | |||
299 | linux,keymap = <0x00000201 /* P1 */ | ||
300 | 0x01000204 /* P4 */ | ||
301 | 0x02000207 /* P7 */ | ||
302 | 0x0300020a /* NUMERIC_STAR */ | ||
303 | 0x00010202 /* P2 */ | ||
304 | 0x01010205 /* P5 */ | ||
305 | 0x02010208 /* P8 */ | ||
306 | 0x03010200 /* P0 */ | ||
307 | 0x00020203 /* P3 */ | ||
308 | 0x01020206 /* P6 */ | ||
309 | 0x02020209 /* P9 */ | ||
310 | 0x0302020b /* NUMERIC_POUND */ | ||
311 | 0x00030067 /* UP */ | ||
312 | 0x0103006a /* RIGHT */ | ||
313 | 0x0203006c /* DOWN */ | ||
314 | 0x03030069>; /* LEFT */ | ||
315 | }; | ||
316 | |||
317 | backlight { | ||
318 | compatible = "pwm-backlight"; | ||
319 | pwms = <&ecap0 0 50000 PWM_POLARITY_INVERTED>; | ||
320 | brightness-levels = <0 51 53 56 62 75 101 152 255>; | ||
321 | default-brightness-level = <8>; | ||
322 | }; | ||
323 | }; | 323 | }; |
324 | 324 | ||
325 | &mmc1 { | 325 | &mmc1 { |
diff --git a/arch/arm/boot/dts/am43xx-clocks.dtsi b/arch/arm/boot/dts/am43xx-clocks.dtsi index c7dc9dab93a4..44869aa72642 100644 --- a/arch/arm/boot/dts/am43xx-clocks.dtsi +++ b/arch/arm/boot/dts/am43xx-clocks.dtsi | |||
@@ -7,7 +7,7 @@ | |||
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | &scrm_clocks { | 10 | &scm_clocks { |
11 | sys_clkin_ck: sys_clkin_ck { | 11 | sys_clkin_ck: sys_clkin_ck { |
12 | #clock-cells = <0>; | 12 | #clock-cells = <0>; |
13 | compatible = "ti,mux-clock"; | 13 | compatible = "ti,mux-clock"; |
diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi index 098916f93811..a4dec49d0278 100644 --- a/arch/arm/boot/dts/dra7.dtsi +++ b/arch/arm/boot/dts/dra7.dtsi | |||
@@ -94,17 +94,101 @@ | |||
94 | interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, | 94 | interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, |
95 | <GIC_SPI DIRECT_IRQ(10) IRQ_TYPE_LEVEL_HIGH>; | 95 | <GIC_SPI DIRECT_IRQ(10) IRQ_TYPE_LEVEL_HIGH>; |
96 | 96 | ||
97 | prm: prm@4ae06000 { | 97 | l4_cfg: l4@4a000000 { |
98 | compatible = "ti,dra7-prm"; | 98 | compatible = "ti,dra7-l4-cfg", "simple-bus"; |
99 | reg = <0x4ae06000 0x3000>; | 99 | #address-cells = <1>; |
100 | interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>; | 100 | #size-cells = <1>; |
101 | ranges = <0 0x4a000000 0x22c000>; | ||
101 | 102 | ||
102 | prm_clocks: clocks { | 103 | scm: scm@2000 { |
104 | compatible = "ti,dra7-scm-core", "simple-bus"; | ||
105 | reg = <0x2000 0x2000>; | ||
103 | #address-cells = <1>; | 106 | #address-cells = <1>; |
104 | #size-cells = <0>; | 107 | #size-cells = <1>; |
108 | ranges = <0 0x2000 0x2000>; | ||
109 | |||
110 | scm_conf: scm_conf@0 { | ||
111 | compatible = "syscon"; | ||
112 | reg = <0x0 0x1400>; | ||
113 | #address-cells = <1>; | ||
114 | #size-cells = <1>; | ||
115 | |||
116 | pbias_regulator: pbias_regulator { | ||
117 | compatible = "ti,pbias-omap"; | ||
118 | reg = <0xe00 0x4>; | ||
119 | syscon = <&scm_conf>; | ||
120 | pbias_mmc_reg: pbias_mmc_omap5 { | ||
121 | regulator-name = "pbias_mmc_omap5"; | ||
122 | regulator-min-microvolt = <1800000>; | ||
123 | regulator-max-microvolt = <3000000>; | ||
124 | }; | ||
125 | }; | ||
126 | }; | ||
127 | |||
128 | dra7_pmx_core: pinmux@1400 { | ||
129 | compatible = "ti,dra7-padconf", | ||
130 | "pinctrl-single"; | ||
131 | reg = <0x1400 0x0464>; | ||
132 | #address-cells = <1>; | ||
133 | #size-cells = <0>; | ||
134 | #interrupt-cells = <1>; | ||
135 | interrupt-controller; | ||
136 | pinctrl-single,register-width = <32>; | ||
137 | pinctrl-single,function-mask = <0x3fffffff>; | ||
138 | }; | ||
139 | }; | ||
140 | |||
141 | cm_core_aon: cm_core_aon@5000 { | ||
142 | compatible = "ti,dra7-cm-core-aon"; | ||
143 | reg = <0x5000 0x2000>; | ||
144 | |||
145 | cm_core_aon_clocks: clocks { | ||
146 | #address-cells = <1>; | ||
147 | #size-cells = <0>; | ||
148 | }; | ||
149 | |||
150 | cm_core_aon_clockdomains: clockdomains { | ||
151 | }; | ||
105 | }; | 152 | }; |
106 | 153 | ||
107 | prm_clockdomains: clockdomains { | 154 | cm_core: cm_core@8000 { |
155 | compatible = "ti,dra7-cm-core"; | ||
156 | reg = <0x8000 0x3000>; | ||
157 | |||
158 | cm_core_clocks: clocks { | ||
159 | #address-cells = <1>; | ||
160 | #size-cells = <0>; | ||
161 | }; | ||
162 | |||
163 | cm_core_clockdomains: clockdomains { | ||
164 | }; | ||
165 | }; | ||
166 | }; | ||
167 | |||
168 | l4_wkup: l4@4ae00000 { | ||
169 | compatible = "ti,dra7-l4-wkup", "simple-bus"; | ||
170 | #address-cells = <1>; | ||
171 | #size-cells = <1>; | ||
172 | ranges = <0 0x4ae00000 0x3f000>; | ||
173 | |||
174 | counter32k: counter@4000 { | ||
175 | compatible = "ti,omap-counter32k"; | ||
176 | reg = <0x4000 0x40>; | ||
177 | ti,hwmods = "counter_32k"; | ||
178 | }; | ||
179 | |||
180 | prm: prm@6000 { | ||
181 | compatible = "ti,dra7-prm"; | ||
182 | reg = <0x6000 0x3000>; | ||
183 | interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>; | ||
184 | |||
185 | prm_clocks: clocks { | ||
186 | #address-cells = <1>; | ||
187 | #size-cells = <0>; | ||
188 | }; | ||
189 | |||
190 | prm_clockdomains: clockdomains { | ||
191 | }; | ||
108 | }; | 192 | }; |
109 | }; | 193 | }; |
110 | 194 | ||
@@ -189,38 +273,6 @@ | |||
189 | #thermal-sensor-cells = <1>; | 273 | #thermal-sensor-cells = <1>; |
190 | }; | 274 | }; |
191 | 275 | ||
192 | cm_core_aon: cm_core_aon@4a005000 { | ||
193 | compatible = "ti,dra7-cm-core-aon"; | ||
194 | reg = <0x4a005000 0x2000>; | ||
195 | |||
196 | cm_core_aon_clocks: clocks { | ||
197 | #address-cells = <1>; | ||
198 | #size-cells = <0>; | ||
199 | }; | ||
200 | |||
201 | cm_core_aon_clockdomains: clockdomains { | ||
202 | }; | ||
203 | }; | ||
204 | |||
205 | cm_core: cm_core@4a008000 { | ||
206 | compatible = "ti,dra7-cm-core"; | ||
207 | reg = <0x4a008000 0x3000>; | ||
208 | |||
209 | cm_core_clocks: clocks { | ||
210 | #address-cells = <1>; | ||
211 | #size-cells = <0>; | ||
212 | }; | ||
213 | |||
214 | cm_core_clockdomains: clockdomains { | ||
215 | }; | ||
216 | }; | ||
217 | |||
218 | counter32k: counter@4ae04000 { | ||
219 | compatible = "ti,omap-counter32k"; | ||
220 | reg = <0x4ae04000 0x40>; | ||
221 | ti,hwmods = "counter_32k"; | ||
222 | }; | ||
223 | |||
224 | dra7_ctrl_core: ctrl_core@4a002000 { | 276 | dra7_ctrl_core: ctrl_core@4a002000 { |
225 | compatible = "syscon"; | 277 | compatible = "syscon"; |
226 | reg = <0x4a002000 0x6d0>; | 278 | reg = <0x4a002000 0x6d0>; |
@@ -231,28 +283,6 @@ | |||
231 | reg = <0x4a002e00 0x7c>; | 283 | reg = <0x4a002e00 0x7c>; |
232 | }; | 284 | }; |
233 | 285 | ||
234 | pbias_regulator: pbias_regulator { | ||
235 | compatible = "ti,pbias-omap"; | ||
236 | reg = <0 0x4>; | ||
237 | syscon = <&dra7_ctrl_general>; | ||
238 | pbias_mmc_reg: pbias_mmc_omap5 { | ||
239 | regulator-name = "pbias_mmc_omap5"; | ||
240 | regulator-min-microvolt = <1800000>; | ||
241 | regulator-max-microvolt = <3000000>; | ||
242 | }; | ||
243 | }; | ||
244 | |||
245 | dra7_pmx_core: pinmux@4a003400 { | ||
246 | compatible = "ti,dra7-padconf", "pinctrl-single"; | ||
247 | reg = <0x4a003400 0x0464>; | ||
248 | #address-cells = <1>; | ||
249 | #size-cells = <0>; | ||
250 | #interrupt-cells = <1>; | ||
251 | interrupt-controller; | ||
252 | pinctrl-single,register-width = <32>; | ||
253 | pinctrl-single,function-mask = <0x3fffffff>; | ||
254 | }; | ||
255 | |||
256 | sdma: dma-controller@4a056000 { | 286 | sdma: dma-controller@4a056000 { |
257 | compatible = "ti,omap4430-sdma"; | 287 | compatible = "ti,omap4430-sdma"; |
258 | reg = <0x4a056000 0x1000>; | 288 | reg = <0x4a056000 0x1000>; |
@@ -1422,7 +1452,7 @@ | |||
1422 | compatible = "ti,dra7-d_can"; | 1452 | compatible = "ti,dra7-d_can"; |
1423 | ti,hwmods = "dcan1"; | 1453 | ti,hwmods = "dcan1"; |
1424 | reg = <0x4ae3c000 0x2000>; | 1454 | reg = <0x4ae3c000 0x2000>; |
1425 | syscon-raminit = <&dra7_ctrl_core 0x558 0>; | 1455 | syscon-raminit = <&scm_conf 0x558 0>; |
1426 | interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>; | 1456 | interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>; |
1427 | clocks = <&dcan1_sys_clk_mux>; | 1457 | clocks = <&dcan1_sys_clk_mux>; |
1428 | status = "disabled"; | 1458 | status = "disabled"; |
@@ -1432,7 +1462,7 @@ | |||
1432 | compatible = "ti,dra7-d_can"; | 1462 | compatible = "ti,dra7-d_can"; |
1433 | ti,hwmods = "dcan2"; | 1463 | ti,hwmods = "dcan2"; |
1434 | reg = <0x48480000 0x2000>; | 1464 | reg = <0x48480000 0x2000>; |
1435 | syscon-raminit = <&dra7_ctrl_core 0x558 1>; | 1465 | syscon-raminit = <&scm_conf 0x558 1>; |
1436 | interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>; | 1466 | interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>; |
1437 | clocks = <&sys_clkin1>; | 1467 | clocks = <&sys_clkin1>; |
1438 | status = "disabled"; | 1468 | status = "disabled"; |
diff --git a/arch/arm/boot/dts/omap2420.dtsi b/arch/arm/boot/dts/omap2420.dtsi index e2b2e93d7b61..5b9a376cc31e 100644 --- a/arch/arm/boot/dts/omap2420.dtsi +++ b/arch/arm/boot/dts/omap2420.dtsi | |||
@@ -14,47 +14,65 @@ | |||
14 | compatible = "ti,omap2420", "ti,omap2"; | 14 | compatible = "ti,omap2420", "ti,omap2"; |
15 | 15 | ||
16 | ocp { | 16 | ocp { |
17 | prcm: prcm@48008000 { | 17 | l4: l4@48000000 { |
18 | compatible = "ti,omap2-prcm"; | 18 | compatible = "ti,omap2-l4", "simple-bus"; |
19 | reg = <0x48008000 0x1000>; | 19 | #address-cells = <1>; |
20 | #size-cells = <1>; | ||
21 | ranges = <0 0x48000000 0x100000>; | ||
20 | 22 | ||
21 | prcm_clocks: clocks { | 23 | prcm: prcm@8000 { |
22 | #address-cells = <1>; | 24 | compatible = "ti,omap2-prcm"; |
23 | #size-cells = <0>; | 25 | reg = <0x8000 0x1000>; |
24 | }; | ||
25 | 26 | ||
26 | prcm_clockdomains: clockdomains { | 27 | prcm_clocks: clocks { |
27 | }; | 28 | #address-cells = <1>; |
28 | }; | 29 | #size-cells = <0>; |
30 | }; | ||
29 | 31 | ||
30 | scrm: scrm@48000000 { | 32 | prcm_clockdomains: clockdomains { |
31 | compatible = "ti,omap2-scrm"; | 33 | }; |
32 | reg = <0x48000000 0x1000>; | 34 | }; |
33 | 35 | ||
34 | scrm_clocks: clocks { | 36 | scm: scm@0 { |
37 | compatible = "ti,omap2-scm", "simple-bus"; | ||
38 | reg = <0x0 0x1000>; | ||
35 | #address-cells = <1>; | 39 | #address-cells = <1>; |
36 | #size-cells = <0>; | 40 | #size-cells = <1>; |
41 | ranges = <0 0x0 0x1000>; | ||
42 | |||
43 | omap2420_pmx: pinmux@30 { | ||
44 | compatible = "ti,omap2420-padconf", | ||
45 | "pinctrl-single"; | ||
46 | reg = <0x30 0x0113>; | ||
47 | #address-cells = <1>; | ||
48 | #size-cells = <0>; | ||
49 | pinctrl-single,register-width = <8>; | ||
50 | pinctrl-single,function-mask = <0x3f>; | ||
51 | }; | ||
52 | |||
53 | scm_conf: scm_conf@270 { | ||
54 | compatible = "syscon"; | ||
55 | reg = <0x270 0x100>; | ||
56 | #address-cells = <1>; | ||
57 | #size-cells = <1>; | ||
58 | |||
59 | scm_clocks: clocks { | ||
60 | #address-cells = <1>; | ||
61 | #size-cells = <0>; | ||
62 | }; | ||
63 | }; | ||
64 | |||
65 | scm_clockdomains: clockdomains { | ||
66 | }; | ||
37 | }; | 67 | }; |
38 | 68 | ||
39 | scrm_clockdomains: clockdomains { | 69 | counter32k: counter@4000 { |
70 | compatible = "ti,omap-counter32k"; | ||
71 | reg = <0x4000 0x20>; | ||
72 | ti,hwmods = "counter_32k"; | ||
40 | }; | 73 | }; |
41 | }; | 74 | }; |
42 | 75 | ||
43 | counter32k: counter@48004000 { | ||
44 | compatible = "ti,omap-counter32k"; | ||
45 | reg = <0x48004000 0x20>; | ||
46 | ti,hwmods = "counter_32k"; | ||
47 | }; | ||
48 | |||
49 | omap2420_pmx: pinmux@48000030 { | ||
50 | compatible = "ti,omap2420-padconf", "pinctrl-single"; | ||
51 | reg = <0x48000030 0x0113>; | ||
52 | #address-cells = <1>; | ||
53 | #size-cells = <0>; | ||
54 | pinctrl-single,register-width = <8>; | ||
55 | pinctrl-single,function-mask = <0x3f>; | ||
56 | }; | ||
57 | |||
58 | gpio1: gpio@48018000 { | 76 | gpio1: gpio@48018000 { |
59 | compatible = "ti,omap2-gpio"; | 77 | compatible = "ti,omap2-gpio"; |
60 | reg = <0x48018000 0x200>; | 78 | reg = <0x48018000 0x200>; |
diff --git a/arch/arm/boot/dts/omap2430-clocks.dtsi b/arch/arm/boot/dts/omap2430-clocks.dtsi index 805f75df1cf2..93fed68839b9 100644 --- a/arch/arm/boot/dts/omap2430-clocks.dtsi +++ b/arch/arm/boot/dts/omap2430-clocks.dtsi | |||
@@ -8,12 +8,12 @@ | |||
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | &scrm_clocks { | 11 | &scm_clocks { |
12 | mcbsp3_mux_fck: mcbsp3_mux_fck { | 12 | mcbsp3_mux_fck: mcbsp3_mux_fck { |
13 | #clock-cells = <0>; | 13 | #clock-cells = <0>; |
14 | compatible = "ti,composite-mux-clock"; | 14 | compatible = "ti,composite-mux-clock"; |
15 | clocks = <&func_96m_ck>, <&mcbsp_clks>; | 15 | clocks = <&func_96m_ck>, <&mcbsp_clks>; |
16 | reg = <0x02e8>; | 16 | reg = <0x78>; |
17 | }; | 17 | }; |
18 | 18 | ||
19 | mcbsp3_fck: mcbsp3_fck { | 19 | mcbsp3_fck: mcbsp3_fck { |
@@ -27,7 +27,7 @@ | |||
27 | compatible = "ti,composite-mux-clock"; | 27 | compatible = "ti,composite-mux-clock"; |
28 | clocks = <&func_96m_ck>, <&mcbsp_clks>; | 28 | clocks = <&func_96m_ck>, <&mcbsp_clks>; |
29 | ti,bit-shift = <2>; | 29 | ti,bit-shift = <2>; |
30 | reg = <0x02e8>; | 30 | reg = <0x78>; |
31 | }; | 31 | }; |
32 | 32 | ||
33 | mcbsp4_fck: mcbsp4_fck { | 33 | mcbsp4_fck: mcbsp4_fck { |
@@ -41,7 +41,7 @@ | |||
41 | compatible = "ti,composite-mux-clock"; | 41 | compatible = "ti,composite-mux-clock"; |
42 | clocks = <&func_96m_ck>, <&mcbsp_clks>; | 42 | clocks = <&func_96m_ck>, <&mcbsp_clks>; |
43 | ti,bit-shift = <4>; | 43 | ti,bit-shift = <4>; |
44 | reg = <0x02e8>; | 44 | reg = <0x78>; |
45 | }; | 45 | }; |
46 | 46 | ||
47 | mcbsp5_fck: mcbsp5_fck { | 47 | mcbsp5_fck: mcbsp5_fck { |
diff --git a/arch/arm/boot/dts/omap2430.dtsi b/arch/arm/boot/dts/omap2430.dtsi index 0dc8de2782b1..11a7963be003 100644 --- a/arch/arm/boot/dts/omap2430.dtsi +++ b/arch/arm/boot/dts/omap2430.dtsi | |||
@@ -14,60 +14,73 @@ | |||
14 | compatible = "ti,omap2430", "ti,omap2"; | 14 | compatible = "ti,omap2430", "ti,omap2"; |
15 | 15 | ||
16 | ocp { | 16 | ocp { |
17 | prcm: prcm@49006000 { | 17 | l4_wkup: l4_wkup@49000000 { |
18 | compatible = "ti,omap2-prcm"; | 18 | compatible = "ti,omap2-l4-wkup", "simple-bus"; |
19 | reg = <0x49006000 0x1000>; | 19 | #address-cells = <1>; |
20 | #size-cells = <1>; | ||
21 | ranges = <0 0x49000000 0x31000>; | ||
20 | 22 | ||
21 | prcm_clocks: clocks { | 23 | prcm: prcm@6000 { |
22 | #address-cells = <1>; | 24 | compatible = "ti,omap2-prcm"; |
23 | #size-cells = <0>; | 25 | reg = <0x6000 0x1000>; |
24 | }; | ||
25 | 26 | ||
26 | prcm_clockdomains: clockdomains { | 27 | prcm_clocks: clocks { |
27 | }; | 28 | #address-cells = <1>; |
28 | }; | 29 | #size-cells = <0>; |
29 | 30 | }; | |
30 | scrm: scrm@49002000 { | ||
31 | compatible = "ti,omap2-scrm"; | ||
32 | reg = <0x49002000 0x1000>; | ||
33 | 31 | ||
34 | scrm_clocks: clocks { | 32 | prcm_clockdomains: clockdomains { |
35 | #address-cells = <1>; | 33 | }; |
36 | #size-cells = <0>; | ||
37 | }; | 34 | }; |
38 | 35 | ||
39 | scrm_clockdomains: clockdomains { | 36 | scm: scm@2000 { |
37 | compatible = "ti,omap2-scm", "simple-bus"; | ||
38 | reg = <0x2000 0x1000>; | ||
39 | #address-cells = <1>; | ||
40 | #size-cells = <1>; | ||
41 | ranges = <0 0x2000 0x1000>; | ||
42 | |||
43 | omap2430_pmx: pinmux@30 { | ||
44 | compatible = "ti,omap2430-padconf", | ||
45 | "pinctrl-single"; | ||
46 | reg = <0x30 0x0154>; | ||
47 | #address-cells = <1>; | ||
48 | #size-cells = <0>; | ||
49 | pinctrl-single,register-width = <8>; | ||
50 | pinctrl-single,function-mask = <0x3f>; | ||
51 | }; | ||
52 | |||
53 | scm_conf: scm_conf@270 { | ||
54 | compatible = "syscon"; | ||
55 | reg = <0x270 0x240>; | ||
56 | #address-cells = <1>; | ||
57 | #size-cells = <1>; | ||
58 | |||
59 | scm_clocks: clocks { | ||
60 | #address-cells = <1>; | ||
61 | #size-cells = <0>; | ||
62 | }; | ||
63 | |||
64 | pbias_regulator: pbias_regulator { | ||
65 | compatible = "ti,pbias-omap"; | ||
66 | reg = <0x230 0x4>; | ||
67 | syscon = <&scm_conf>; | ||
68 | pbias_mmc_reg: pbias_mmc_omap2430 { | ||
69 | regulator-name = "pbias_mmc_omap2430"; | ||
70 | regulator-min-microvolt = <1800000>; | ||
71 | regulator-max-microvolt = <3000000>; | ||
72 | }; | ||
73 | }; | ||
74 | }; | ||
75 | |||
76 | scm_clockdomains: clockdomains { | ||
77 | }; | ||
40 | }; | 78 | }; |
41 | }; | ||
42 | |||
43 | counter32k: counter@49020000 { | ||
44 | compatible = "ti,omap-counter32k"; | ||
45 | reg = <0x49020000 0x20>; | ||
46 | ti,hwmods = "counter_32k"; | ||
47 | }; | ||
48 | |||
49 | omap2430_pmx: pinmux@49002030 { | ||
50 | compatible = "ti,omap2430-padconf", "pinctrl-single"; | ||
51 | reg = <0x49002030 0x0154>; | ||
52 | #address-cells = <1>; | ||
53 | #size-cells = <0>; | ||
54 | pinctrl-single,register-width = <8>; | ||
55 | pinctrl-single,function-mask = <0x3f>; | ||
56 | }; | ||
57 | |||
58 | omap2_scm_general: tisyscon@49002270 { | ||
59 | compatible = "syscon"; | ||
60 | reg = <0x49002270 0x240>; | ||
61 | }; | ||
62 | 79 | ||
63 | pbias_regulator: pbias_regulator { | 80 | counter32k: counter@20000 { |
64 | compatible = "ti,pbias-omap"; | 81 | compatible = "ti,omap-counter32k"; |
65 | reg = <0x230 0x4>; | 82 | reg = <0x20000 0x20>; |
66 | syscon = <&omap2_scm_general>; | 83 | ti,hwmods = "counter_32k"; |
67 | pbias_mmc_reg: pbias_mmc_omap2430 { | ||
68 | regulator-name = "pbias_mmc_omap2430"; | ||
69 | regulator-min-microvolt = <1800000>; | ||
70 | regulator-max-microvolt = <3000000>; | ||
71 | }; | 84 | }; |
72 | }; | 85 | }; |
73 | 86 | ||
diff --git a/arch/arm/boot/dts/omap24xx-clocks.dtsi b/arch/arm/boot/dts/omap24xx-clocks.dtsi index a1365ca926eb..63965b876973 100644 --- a/arch/arm/boot/dts/omap24xx-clocks.dtsi +++ b/arch/arm/boot/dts/omap24xx-clocks.dtsi | |||
@@ -7,13 +7,13 @@ | |||
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | &scrm_clocks { | 10 | &scm_clocks { |
11 | mcbsp1_mux_fck: mcbsp1_mux_fck { | 11 | mcbsp1_mux_fck: mcbsp1_mux_fck { |
12 | #clock-cells = <0>; | 12 | #clock-cells = <0>; |
13 | compatible = "ti,composite-mux-clock"; | 13 | compatible = "ti,composite-mux-clock"; |
14 | clocks = <&func_96m_ck>, <&mcbsp_clks>; | 14 | clocks = <&func_96m_ck>, <&mcbsp_clks>; |
15 | ti,bit-shift = <2>; | 15 | ti,bit-shift = <2>; |
16 | reg = <0x0274>; | 16 | reg = <0x4>; |
17 | }; | 17 | }; |
18 | 18 | ||
19 | mcbsp1_fck: mcbsp1_fck { | 19 | mcbsp1_fck: mcbsp1_fck { |
@@ -27,7 +27,7 @@ | |||
27 | compatible = "ti,composite-mux-clock"; | 27 | compatible = "ti,composite-mux-clock"; |
28 | clocks = <&func_96m_ck>, <&mcbsp_clks>; | 28 | clocks = <&func_96m_ck>, <&mcbsp_clks>; |
29 | ti,bit-shift = <6>; | 29 | ti,bit-shift = <6>; |
30 | reg = <0x0274>; | 30 | reg = <0x4>; |
31 | }; | 31 | }; |
32 | 32 | ||
33 | mcbsp2_fck: mcbsp2_fck { | 33 | mcbsp2_fck: mcbsp2_fck { |
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index 01b71111bd55..b28791ade27a 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi | |||
@@ -87,6 +87,60 @@ | |||
87 | ranges; | 87 | ranges; |
88 | ti,hwmods = "l3_main"; | 88 | ti,hwmods = "l3_main"; |
89 | 89 | ||
90 | l4_core: l4@48000000 { | ||
91 | compatible = "ti,omap3-l4-core", "simple-bus"; | ||
92 | #address-cells = <1>; | ||
93 | #size-cells = <1>; | ||
94 | ranges = <0 0x48000000 0x1000000>; | ||
95 | |||
96 | scm: scm@2000 { | ||
97 | compatible = "ti,omap3-scm", "simple-bus"; | ||
98 | reg = <0x2000 0x2000>; | ||
99 | #address-cells = <1>; | ||
100 | #size-cells = <1>; | ||
101 | ranges = <0 0x2000 0x2000>; | ||
102 | |||
103 | omap3_pmx_core: pinmux@30 { | ||
104 | compatible = "ti,omap3-padconf", | ||
105 | "pinctrl-single"; | ||
106 | reg = <0x30 0x238>; | ||
107 | #address-cells = <1>; | ||
108 | #size-cells = <0>; | ||
109 | #interrupt-cells = <1>; | ||
110 | interrupt-controller; | ||
111 | pinctrl-single,register-width = <16>; | ||
112 | pinctrl-single,function-mask = <0xff1f>; | ||
113 | }; | ||
114 | |||
115 | scm_conf: scm_conf@270 { | ||
116 | compatible = "syscon"; | ||
117 | reg = <0x270 0x330>; | ||
118 | #address-cells = <1>; | ||
119 | #size-cells = <1>; | ||
120 | |||
121 | scm_clocks: clocks { | ||
122 | #address-cells = <1>; | ||
123 | #size-cells = <0>; | ||
124 | }; | ||
125 | }; | ||
126 | |||
127 | scm_clockdomains: clockdomains { | ||
128 | }; | ||
129 | |||
130 | omap3_pmx_wkup: pinmux@a00 { | ||
131 | compatible = "ti,omap3-padconf", | ||
132 | "pinctrl-single"; | ||
133 | reg = <0xa00 0x5c>; | ||
134 | #address-cells = <1>; | ||
135 | #size-cells = <0>; | ||
136 | #interrupt-cells = <1>; | ||
137 | interrupt-controller; | ||
138 | pinctrl-single,register-width = <16>; | ||
139 | pinctrl-single,function-mask = <0xff1f>; | ||
140 | }; | ||
141 | }; | ||
142 | }; | ||
143 | |||
90 | aes: aes@480c5000 { | 144 | aes: aes@480c5000 { |
91 | compatible = "ti,omap3-aes"; | 145 | compatible = "ti,omap3-aes"; |
92 | ti,hwmods = "aes"; | 146 | ti,hwmods = "aes"; |
@@ -121,19 +175,6 @@ | |||
121 | }; | 175 | }; |
122 | }; | 176 | }; |
123 | 177 | ||
124 | scrm: scrm@48002000 { | ||
125 | compatible = "ti,omap3-scrm"; | ||
126 | reg = <0x48002000 0x2000>; | ||
127 | |||
128 | scrm_clocks: clocks { | ||
129 | #address-cells = <1>; | ||
130 | #size-cells = <0>; | ||
131 | }; | ||
132 | |||
133 | scrm_clockdomains: clockdomains { | ||
134 | }; | ||
135 | }; | ||
136 | |||
137 | counter32k: counter@48320000 { | 178 | counter32k: counter@48320000 { |
138 | compatible = "ti,omap-counter32k"; | 179 | compatible = "ti,omap-counter32k"; |
139 | reg = <0x48320000 0x20>; | 180 | reg = <0x48320000 0x20>; |
@@ -159,37 +200,10 @@ | |||
159 | #dma-requests = <96>; | 200 | #dma-requests = <96>; |
160 | }; | 201 | }; |
161 | 202 | ||
162 | omap3_pmx_core: pinmux@48002030 { | ||
163 | compatible = "ti,omap3-padconf", "pinctrl-single"; | ||
164 | reg = <0x48002030 0x0238>; | ||
165 | #address-cells = <1>; | ||
166 | #size-cells = <0>; | ||
167 | #interrupt-cells = <1>; | ||
168 | interrupt-controller; | ||
169 | pinctrl-single,register-width = <16>; | ||
170 | pinctrl-single,function-mask = <0xff1f>; | ||
171 | }; | ||
172 | |||
173 | omap3_pmx_wkup: pinmux@48002a00 { | ||
174 | compatible = "ti,omap3-padconf", "pinctrl-single"; | ||
175 | reg = <0x48002a00 0x5c>; | ||
176 | #address-cells = <1>; | ||
177 | #size-cells = <0>; | ||
178 | #interrupt-cells = <1>; | ||
179 | interrupt-controller; | ||
180 | pinctrl-single,register-width = <16>; | ||
181 | pinctrl-single,function-mask = <0xff1f>; | ||
182 | }; | ||
183 | |||
184 | omap3_scm_general: tisyscon@48002270 { | ||
185 | compatible = "syscon"; | ||
186 | reg = <0x48002270 0x2f0>; | ||
187 | }; | ||
188 | |||
189 | pbias_regulator: pbias_regulator { | 203 | pbias_regulator: pbias_regulator { |
190 | compatible = "ti,pbias-omap"; | 204 | compatible = "ti,pbias-omap"; |
191 | reg = <0x2b0 0x4>; | 205 | reg = <0x2b0 0x4>; |
192 | syscon = <&omap3_scm_general>; | 206 | syscon = <&scm_conf>; |
193 | pbias_mmc_reg: pbias_mmc_omap2430 { | 207 | pbias_mmc_reg: pbias_mmc_omap2430 { |
194 | regulator-name = "pbias_mmc_omap2430"; | 208 | regulator-name = "pbias_mmc_omap2430"; |
195 | regulator-min-microvolt = <1800000>; | 209 | regulator-min-microvolt = <1800000>; |
diff --git a/arch/arm/boot/dts/omap3xxx-clocks.dtsi b/arch/arm/boot/dts/omap3xxx-clocks.dtsi index 5c375003bad1..bbba5bdc4bc9 100644 --- a/arch/arm/boot/dts/omap3xxx-clocks.dtsi +++ b/arch/arm/boot/dts/omap3xxx-clocks.dtsi | |||
@@ -79,13 +79,14 @@ | |||
79 | clock-div = <1>; | 79 | clock-div = <1>; |
80 | }; | 80 | }; |
81 | }; | 81 | }; |
82 | &scrm_clocks { | 82 | |
83 | &scm_clocks { | ||
83 | mcbsp5_mux_fck: mcbsp5_mux_fck { | 84 | mcbsp5_mux_fck: mcbsp5_mux_fck { |
84 | #clock-cells = <0>; | 85 | #clock-cells = <0>; |
85 | compatible = "ti,composite-mux-clock"; | 86 | compatible = "ti,composite-mux-clock"; |
86 | clocks = <&core_96m_fck>, <&mcbsp_clks>; | 87 | clocks = <&core_96m_fck>, <&mcbsp_clks>; |
87 | ti,bit-shift = <4>; | 88 | ti,bit-shift = <4>; |
88 | reg = <0x02d8>; | 89 | reg = <0x68>; |
89 | }; | 90 | }; |
90 | 91 | ||
91 | mcbsp5_fck: mcbsp5_fck { | 92 | mcbsp5_fck: mcbsp5_fck { |
@@ -99,7 +100,7 @@ | |||
99 | compatible = "ti,composite-mux-clock"; | 100 | compatible = "ti,composite-mux-clock"; |
100 | clocks = <&core_96m_fck>, <&mcbsp_clks>; | 101 | clocks = <&core_96m_fck>, <&mcbsp_clks>; |
101 | ti,bit-shift = <2>; | 102 | ti,bit-shift = <2>; |
102 | reg = <0x0274>; | 103 | reg = <0x04>; |
103 | }; | 104 | }; |
104 | 105 | ||
105 | mcbsp1_fck: mcbsp1_fck { | 106 | mcbsp1_fck: mcbsp1_fck { |
@@ -113,7 +114,7 @@ | |||
113 | compatible = "ti,composite-mux-clock"; | 114 | compatible = "ti,composite-mux-clock"; |
114 | clocks = <&per_96m_fck>, <&mcbsp_clks>; | 115 | clocks = <&per_96m_fck>, <&mcbsp_clks>; |
115 | ti,bit-shift = <6>; | 116 | ti,bit-shift = <6>; |
116 | reg = <0x0274>; | 117 | reg = <0x04>; |
117 | }; | 118 | }; |
118 | 119 | ||
119 | mcbsp2_fck: mcbsp2_fck { | 120 | mcbsp2_fck: mcbsp2_fck { |
@@ -126,7 +127,7 @@ | |||
126 | #clock-cells = <0>; | 127 | #clock-cells = <0>; |
127 | compatible = "ti,composite-mux-clock"; | 128 | compatible = "ti,composite-mux-clock"; |
128 | clocks = <&per_96m_fck>, <&mcbsp_clks>; | 129 | clocks = <&per_96m_fck>, <&mcbsp_clks>; |
129 | reg = <0x02d8>; | 130 | reg = <0x68>; |
130 | }; | 131 | }; |
131 | 132 | ||
132 | mcbsp3_fck: mcbsp3_fck { | 133 | mcbsp3_fck: mcbsp3_fck { |
@@ -140,7 +141,7 @@ | |||
140 | compatible = "ti,composite-mux-clock"; | 141 | compatible = "ti,composite-mux-clock"; |
141 | clocks = <&per_96m_fck>, <&mcbsp_clks>; | 142 | clocks = <&per_96m_fck>, <&mcbsp_clks>; |
142 | ti,bit-shift = <2>; | 143 | ti,bit-shift = <2>; |
143 | reg = <0x02d8>; | 144 | reg = <0x68>; |
144 | }; | 145 | }; |
145 | 146 | ||
146 | mcbsp4_fck: mcbsp4_fck { | 147 | mcbsp4_fck: mcbsp4_fck { |
diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi index 074147cebae4..546681a9cb65 100644 --- a/arch/arm/boot/dts/omap4.dtsi +++ b/arch/arm/boot/dts/omap4.dtsi | |||
@@ -114,99 +114,141 @@ | |||
114 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, | 114 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, |
115 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; | 115 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; |
116 | 116 | ||
117 | cm1: cm1@4a004000 { | 117 | l4_cfg: l4@4a000000 { |
118 | compatible = "ti,omap4-cm1"; | 118 | compatible = "ti,omap4-l4-cfg", "simple-bus"; |
119 | reg = <0x4a004000 0x2000>; | 119 | #address-cells = <1>; |
120 | 120 | #size-cells = <1>; | |
121 | cm1_clocks: clocks { | 121 | ranges = <0 0x4a000000 0x1000000>; |
122 | #address-cells = <1>; | ||
123 | #size-cells = <0>; | ||
124 | }; | ||
125 | 122 | ||
126 | cm1_clockdomains: clockdomains { | 123 | cm1: cm1@4000 { |
127 | }; | 124 | compatible = "ti,omap4-cm1"; |
128 | }; | 125 | reg = <0x4000 0x2000>; |
129 | 126 | ||
130 | prm: prm@4a306000 { | 127 | cm1_clocks: clocks { |
131 | compatible = "ti,omap4-prm"; | 128 | #address-cells = <1>; |
132 | reg = <0x4a306000 0x3000>; | 129 | #size-cells = <0>; |
133 | interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; | 130 | }; |
134 | 131 | ||
135 | prm_clocks: clocks { | 132 | cm1_clockdomains: clockdomains { |
136 | #address-cells = <1>; | 133 | }; |
137 | #size-cells = <0>; | ||
138 | }; | 134 | }; |
139 | 135 | ||
140 | prm_clockdomains: clockdomains { | 136 | cm2: cm2@8000 { |
141 | }; | 137 | compatible = "ti,omap4-cm2"; |
142 | }; | 138 | reg = <0x8000 0x3000>; |
143 | 139 | ||
144 | cm2: cm2@4a008000 { | 140 | cm2_clocks: clocks { |
145 | compatible = "ti,omap4-cm2"; | 141 | #address-cells = <1>; |
146 | reg = <0x4a008000 0x3000>; | 142 | #size-cells = <0>; |
143 | }; | ||
147 | 144 | ||
148 | cm2_clocks: clocks { | 145 | cm2_clockdomains: clockdomains { |
149 | #address-cells = <1>; | 146 | }; |
150 | #size-cells = <0>; | ||
151 | }; | 147 | }; |
152 | 148 | ||
153 | cm2_clockdomains: clockdomains { | 149 | omap4_scm_core: scm@2000 { |
150 | compatible = "ti,omap4-scm-core", "simple-bus"; | ||
151 | reg = <0x2000 0x1000>; | ||
152 | #address-cells = <1>; | ||
153 | #size-cells = <1>; | ||
154 | ranges = <0 0x2000 0x1000>; | ||
155 | |||
156 | scm_conf: scm_conf@0 { | ||
157 | compatible = "syscon"; | ||
158 | reg = <0x0 0x800>; | ||
159 | #address-cells = <1>; | ||
160 | #size-cells = <1>; | ||
161 | }; | ||
154 | }; | 162 | }; |
155 | }; | ||
156 | |||
157 | scrm: scrm@4a30a000 { | ||
158 | compatible = "ti,omap4-scrm"; | ||
159 | reg = <0x4a30a000 0x2000>; | ||
160 | 163 | ||
161 | scrm_clocks: clocks { | 164 | omap4_padconf_core: scm@100000 { |
165 | compatible = "ti,omap4-scm-padconf-core", | ||
166 | "simple-bus"; | ||
162 | #address-cells = <1>; | 167 | #address-cells = <1>; |
163 | #size-cells = <0>; | 168 | #size-cells = <1>; |
169 | ranges = <0 0x100000 0x1000>; | ||
170 | |||
171 | omap4_pmx_core: pinmux@40 { | ||
172 | compatible = "ti,omap4-padconf", | ||
173 | "pinctrl-single"; | ||
174 | reg = <0x40 0x0196>; | ||
175 | #address-cells = <1>; | ||
176 | #size-cells = <0>; | ||
177 | #interrupt-cells = <1>; | ||
178 | interrupt-controller; | ||
179 | pinctrl-single,register-width = <16>; | ||
180 | pinctrl-single,function-mask = <0x7fff>; | ||
181 | }; | ||
182 | |||
183 | omap4_padconf_global: omap4_padconf_global@5a0 { | ||
184 | compatible = "syscon"; | ||
185 | reg = <0x5a0 0x170>; | ||
186 | #address-cells = <1>; | ||
187 | #size-cells = <1>; | ||
188 | |||
189 | pbias_regulator: pbias_regulator { | ||
190 | compatible = "ti,pbias-omap"; | ||
191 | reg = <0x60 0x4>; | ||
192 | syscon = <&omap4_padconf_global>; | ||
193 | pbias_mmc_reg: pbias_mmc_omap4 { | ||
194 | regulator-name = "pbias_mmc_omap4"; | ||
195 | regulator-min-microvolt = <1800000>; | ||
196 | regulator-max-microvolt = <3000000>; | ||
197 | }; | ||
198 | }; | ||
199 | }; | ||
164 | }; | 200 | }; |
165 | 201 | ||
166 | scrm_clockdomains: clockdomains { | 202 | l4_wkup: l4@300000 { |
167 | }; | 203 | compatible = "ti,omap4-l4-wkup", "simple-bus"; |
168 | }; | 204 | #address-cells = <1>; |
169 | 205 | #size-cells = <1>; | |
170 | counter32k: counter@4a304000 { | 206 | ranges = <0 0x300000 0x40000>; |
171 | compatible = "ti,omap-counter32k"; | 207 | |
172 | reg = <0x4a304000 0x20>; | 208 | counter32k: counter@4000 { |
173 | ti,hwmods = "counter_32k"; | 209 | compatible = "ti,omap-counter32k"; |
174 | }; | 210 | reg = <0x4000 0x20>; |
175 | 211 | ti,hwmods = "counter_32k"; | |
176 | omap4_pmx_core: pinmux@4a100040 { | 212 | }; |
177 | compatible = "ti,omap4-padconf", "pinctrl-single"; | 213 | |
178 | reg = <0x4a100040 0x0196>; | 214 | prm: prm@6000 { |
179 | #address-cells = <1>; | 215 | compatible = "ti,omap4-prm"; |
180 | #size-cells = <0>; | 216 | reg = <0x6000 0x3000>; |
181 | #interrupt-cells = <1>; | 217 | interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; |
182 | interrupt-controller; | 218 | |
183 | pinctrl-single,register-width = <16>; | 219 | prm_clocks: clocks { |
184 | pinctrl-single,function-mask = <0x7fff>; | 220 | #address-cells = <1>; |
185 | }; | 221 | #size-cells = <0>; |
186 | omap4_pmx_wkup: pinmux@4a31e040 { | 222 | }; |
187 | compatible = "ti,omap4-padconf", "pinctrl-single"; | 223 | |
188 | reg = <0x4a31e040 0x0038>; | 224 | prm_clockdomains: clockdomains { |
189 | #address-cells = <1>; | 225 | }; |
190 | #size-cells = <0>; | 226 | }; |
191 | #interrupt-cells = <1>; | 227 | |
192 | interrupt-controller; | 228 | scrm: scrm@a000 { |
193 | pinctrl-single,register-width = <16>; | 229 | compatible = "ti,omap4-scrm"; |
194 | pinctrl-single,function-mask = <0x7fff>; | 230 | reg = <0xa000 0x2000>; |
195 | }; | 231 | |
196 | 232 | scrm_clocks: clocks { | |
197 | omap4_padconf_global: tisyscon@4a1005a0 { | 233 | #address-cells = <1>; |
198 | compatible = "syscon"; | 234 | #size-cells = <0>; |
199 | reg = <0x4a1005a0 0x170>; | 235 | }; |
200 | }; | 236 | |
201 | 237 | scrm_clockdomains: clockdomains { | |
202 | pbias_regulator: pbias_regulator { | 238 | }; |
203 | compatible = "ti,pbias-omap"; | 239 | }; |
204 | reg = <0x60 0x4>; | 240 | |
205 | syscon = <&omap4_padconf_global>; | 241 | omap4_pmx_wkup: pinmux@1e040 { |
206 | pbias_mmc_reg: pbias_mmc_omap4 { | 242 | compatible = "ti,omap4-padconf", |
207 | regulator-name = "pbias_mmc_omap4"; | 243 | "pinctrl-single"; |
208 | regulator-min-microvolt = <1800000>; | 244 | reg = <0x1e040 0x0038>; |
209 | regulator-max-microvolt = <3000000>; | 245 | #address-cells = <1>; |
246 | #size-cells = <0>; | ||
247 | #interrupt-cells = <1>; | ||
248 | interrupt-controller; | ||
249 | pinctrl-single,register-width = <16>; | ||
250 | pinctrl-single,function-mask = <0x7fff>; | ||
251 | }; | ||
210 | }; | 252 | }; |
211 | }; | 253 | }; |
212 | 254 | ||
diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi index b321fdf42c9f..326a429dcce4 100644 --- a/arch/arm/boot/dts/omap5.dtsi +++ b/arch/arm/boot/dts/omap5.dtsi | |||
@@ -129,99 +129,141 @@ | |||
129 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, | 129 | interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, |
130 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; | 130 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; |
131 | 131 | ||
132 | prm: prm@4ae06000 { | 132 | l4_cfg: l4@4a000000 { |
133 | compatible = "ti,omap5-prm"; | 133 | compatible = "ti,omap5-l4-cfg", "simple-bus"; |
134 | reg = <0x4ae06000 0x3000>; | 134 | #address-cells = <1>; |
135 | interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; | 135 | #size-cells = <1>; |
136 | ranges = <0 0x4a000000 0x22a000>; | ||
136 | 137 | ||
137 | prm_clocks: clocks { | 138 | scm_core: scm@2000 { |
139 | compatible = "ti,omap5-scm-core", "simple-bus"; | ||
140 | reg = <0x2000 0x1000>; | ||
138 | #address-cells = <1>; | 141 | #address-cells = <1>; |
139 | #size-cells = <0>; | 142 | #size-cells = <1>; |
143 | ranges = <0 0x2000 0x800>; | ||
144 | |||
145 | scm_conf: scm_conf@0 { | ||
146 | compatible = "syscon"; | ||
147 | reg = <0x0 0x800>; | ||
148 | #address-cells = <1>; | ||
149 | #size-cells = <1>; | ||
150 | }; | ||
140 | }; | 151 | }; |
141 | 152 | ||
142 | prm_clockdomains: clockdomains { | 153 | scm_padconf_core: scm@2800 { |
154 | compatible = "ti,omap5-scm-padconf-core", | ||
155 | "simple-bus"; | ||
156 | #address-cells = <1>; | ||
157 | #size-cells = <1>; | ||
158 | ranges = <0 0x2800 0x800>; | ||
159 | |||
160 | omap5_pmx_core: pinmux@40 { | ||
161 | compatible = "ti,omap5-padconf", | ||
162 | "pinctrl-single"; | ||
163 | reg = <0x40 0x01b6>; | ||
164 | #address-cells = <1>; | ||
165 | #size-cells = <0>; | ||
166 | #interrupt-cells = <1>; | ||
167 | interrupt-controller; | ||
168 | pinctrl-single,register-width = <16>; | ||
169 | pinctrl-single,function-mask = <0x7fff>; | ||
170 | }; | ||
171 | |||
172 | omap5_padconf_global: omap5_padconf_global@5a0 { | ||
173 | compatible = "syscon"; | ||
174 | reg = <0x5a0 0xec>; | ||
175 | #address-cells = <1>; | ||
176 | #size-cells = <1>; | ||
177 | |||
178 | pbias_regulator: pbias_regulator { | ||
179 | compatible = "ti,pbias-omap"; | ||
180 | reg = <0x60 0x4>; | ||
181 | syscon = <&omap5_padconf_global>; | ||
182 | pbias_mmc_reg: pbias_mmc_omap5 { | ||
183 | regulator-name = "pbias_mmc_omap5"; | ||
184 | regulator-min-microvolt = <1800000>; | ||
185 | regulator-max-microvolt = <3000000>; | ||
186 | }; | ||
187 | }; | ||
188 | }; | ||
143 | }; | 189 | }; |
144 | }; | ||
145 | 190 | ||
146 | cm_core_aon: cm_core_aon@4a004000 { | 191 | cm_core_aon: cm_core_aon@4000 { |
147 | compatible = "ti,omap5-cm-core-aon"; | 192 | compatible = "ti,omap5-cm-core-aon"; |
148 | reg = <0x4a004000 0x2000>; | 193 | reg = <0x4000 0x2000>; |
149 | 194 | ||
150 | cm_core_aon_clocks: clocks { | 195 | cm_core_aon_clocks: clocks { |
151 | #address-cells = <1>; | 196 | #address-cells = <1>; |
152 | #size-cells = <0>; | 197 | #size-cells = <0>; |
153 | }; | 198 | }; |
154 | 199 | ||
155 | cm_core_aon_clockdomains: clockdomains { | 200 | cm_core_aon_clockdomains: clockdomains { |
201 | }; | ||
156 | }; | 202 | }; |
157 | }; | ||
158 | 203 | ||
159 | scrm: scrm@4ae0a000 { | 204 | cm_core: cm_core@8000 { |
160 | compatible = "ti,omap5-scrm"; | 205 | compatible = "ti,omap5-cm-core"; |
161 | reg = <0x4ae0a000 0x2000>; | 206 | reg = <0x8000 0x3000>; |
162 | 207 | ||
163 | scrm_clocks: clocks { | 208 | cm_core_clocks: clocks { |
164 | #address-cells = <1>; | 209 | #address-cells = <1>; |
165 | #size-cells = <0>; | 210 | #size-cells = <0>; |
166 | }; | 211 | }; |
167 | 212 | ||
168 | scrm_clockdomains: clockdomains { | 213 | cm_core_clockdomains: clockdomains { |
214 | }; | ||
169 | }; | 215 | }; |
170 | }; | 216 | }; |
171 | 217 | ||
172 | cm_core: cm_core@4a008000 { | 218 | l4_wkup: l4@4ae00000 { |
173 | compatible = "ti,omap5-cm-core"; | 219 | compatible = "ti,omap5-l4-wkup", "simple-bus"; |
174 | reg = <0x4a008000 0x3000>; | 220 | #address-cells = <1>; |
221 | #size-cells = <1>; | ||
222 | ranges = <0 0x4ae00000 0x2b000>; | ||
175 | 223 | ||
176 | cm_core_clocks: clocks { | 224 | counter32k: counter@4000 { |
177 | #address-cells = <1>; | 225 | compatible = "ti,omap-counter32k"; |
178 | #size-cells = <0>; | 226 | reg = <0x4000 0x40>; |
227 | ti,hwmods = "counter_32k"; | ||
179 | }; | 228 | }; |
180 | 229 | ||
181 | cm_core_clockdomains: clockdomains { | 230 | prm: prm@6000 { |
231 | compatible = "ti,omap5-prm"; | ||
232 | reg = <0x6000 0x3000>; | ||
233 | interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; | ||
234 | |||
235 | prm_clocks: clocks { | ||
236 | #address-cells = <1>; | ||
237 | #size-cells = <0>; | ||
238 | }; | ||
239 | |||
240 | prm_clockdomains: clockdomains { | ||
241 | }; | ||
182 | }; | 242 | }; |
183 | }; | ||
184 | 243 | ||
185 | counter32k: counter@4ae04000 { | 244 | scrm: scrm@a000 { |
186 | compatible = "ti,omap-counter32k"; | 245 | compatible = "ti,omap5-scrm"; |
187 | reg = <0x4ae04000 0x40>; | 246 | reg = <0xa000 0x2000>; |
188 | ti,hwmods = "counter_32k"; | ||
189 | }; | ||
190 | 247 | ||
191 | omap5_pmx_core: pinmux@4a002840 { | 248 | scrm_clocks: clocks { |
192 | compatible = "ti,omap5-padconf", "pinctrl-single"; | 249 | #address-cells = <1>; |
193 | reg = <0x4a002840 0x01b6>; | 250 | #size-cells = <0>; |
194 | #address-cells = <1>; | 251 | }; |
195 | #size-cells = <0>; | ||
196 | #interrupt-cells = <1>; | ||
197 | interrupt-controller; | ||
198 | pinctrl-single,register-width = <16>; | ||
199 | pinctrl-single,function-mask = <0x7fff>; | ||
200 | }; | ||
201 | omap5_pmx_wkup: pinmux@4ae0c840 { | ||
202 | compatible = "ti,omap5-padconf", "pinctrl-single"; | ||
203 | reg = <0x4ae0c840 0x0038>; | ||
204 | #address-cells = <1>; | ||
205 | #size-cells = <0>; | ||
206 | #interrupt-cells = <1>; | ||
207 | interrupt-controller; | ||
208 | pinctrl-single,register-width = <16>; | ||
209 | pinctrl-single,function-mask = <0x7fff>; | ||
210 | }; | ||
211 | 252 | ||
212 | omap5_padconf_global: tisyscon@4a002da0 { | 253 | scrm_clockdomains: clockdomains { |
213 | compatible = "syscon"; | 254 | }; |
214 | reg = <0x4A002da0 0xec>; | 255 | }; |
215 | }; | ||
216 | 256 | ||
217 | pbias_regulator: pbias_regulator { | 257 | omap5_pmx_wkup: pinmux@c840 { |
218 | compatible = "ti,pbias-omap"; | 258 | compatible = "ti,omap5-padconf", |
219 | reg = <0x60 0x4>; | 259 | "pinctrl-single"; |
220 | syscon = <&omap5_padconf_global>; | 260 | reg = <0xc840 0x0038>; |
221 | pbias_mmc_reg: pbias_mmc_omap5 { | 261 | #address-cells = <1>; |
222 | regulator-name = "pbias_mmc_omap5"; | 262 | #size-cells = <0>; |
223 | regulator-min-microvolt = <1800000>; | 263 | #interrupt-cells = <1>; |
224 | regulator-max-microvolt = <3000000>; | 264 | interrupt-controller; |
265 | pinctrl-single,register-width = <16>; | ||
266 | pinctrl-single,function-mask = <0x7fff>; | ||
225 | }; | 267 | }; |
226 | }; | 268 | }; |
227 | 269 | ||
diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c index 6124db5c37ae..a699d7169307 100644 --- a/arch/arm/mach-omap2/clock.c +++ b/arch/arm/mach-omap2/clock.c | |||
@@ -23,6 +23,9 @@ | |||
23 | #include <linux/clk-provider.h> | 23 | #include <linux/clk-provider.h> |
24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
25 | #include <linux/bitops.h> | 25 | #include <linux/bitops.h> |
26 | #include <linux/regmap.h> | ||
27 | #include <linux/of_address.h> | ||
28 | #include <linux/bootmem.h> | ||
26 | #include <asm/cpu.h> | 29 | #include <asm/cpu.h> |
27 | 30 | ||
28 | #include <trace/events/power.h> | 31 | #include <trace/events/power.h> |
@@ -72,30 +75,110 @@ struct ti_clk_features ti_clk_features; | |||
72 | static bool clkdm_control = true; | 75 | static bool clkdm_control = true; |
73 | 76 | ||
74 | static LIST_HEAD(clk_hw_omap_clocks); | 77 | static LIST_HEAD(clk_hw_omap_clocks); |
75 | void __iomem *clk_memmaps[CLK_MAX_MEMMAPS]; | 78 | |
79 | struct clk_iomap { | ||
80 | struct regmap *regmap; | ||
81 | void __iomem *mem; | ||
82 | }; | ||
83 | |||
84 | static struct clk_iomap *clk_memmaps[CLK_MAX_MEMMAPS]; | ||
85 | |||
86 | static void clk_memmap_writel(u32 val, void __iomem *reg) | ||
87 | { | ||
88 | struct clk_omap_reg *r = (struct clk_omap_reg *)® | ||
89 | struct clk_iomap *io = clk_memmaps[r->index]; | ||
90 | |||
91 | if (io->regmap) | ||
92 | regmap_write(io->regmap, r->offset, val); | ||
93 | else | ||
94 | writel_relaxed(val, io->mem + r->offset); | ||
95 | } | ||
96 | |||
97 | static u32 clk_memmap_readl(void __iomem *reg) | ||
98 | { | ||
99 | u32 val; | ||
100 | struct clk_omap_reg *r = (struct clk_omap_reg *)® | ||
101 | struct clk_iomap *io = clk_memmaps[r->index]; | ||
102 | |||
103 | if (io->regmap) | ||
104 | regmap_read(io->regmap, r->offset, &val); | ||
105 | else | ||
106 | val = readl_relaxed(io->mem + r->offset); | ||
107 | |||
108 | return val; | ||
109 | } | ||
76 | 110 | ||
77 | void omap2_clk_writel(u32 val, struct clk_hw_omap *clk, void __iomem *reg) | 111 | void omap2_clk_writel(u32 val, struct clk_hw_omap *clk, void __iomem *reg) |
78 | { | 112 | { |
79 | if (clk->flags & MEMMAP_ADDRESSING) { | 113 | if (WARN_ON_ONCE(!(clk->flags & MEMMAP_ADDRESSING))) |
80 | struct clk_omap_reg *r = (struct clk_omap_reg *)® | ||
81 | writel_relaxed(val, clk_memmaps[r->index] + r->offset); | ||
82 | } else { | ||
83 | writel_relaxed(val, reg); | 114 | writel_relaxed(val, reg); |
84 | } | 115 | else |
116 | clk_memmap_writel(val, reg); | ||
85 | } | 117 | } |
86 | 118 | ||
87 | u32 omap2_clk_readl(struct clk_hw_omap *clk, void __iomem *reg) | 119 | u32 omap2_clk_readl(struct clk_hw_omap *clk, void __iomem *reg) |
88 | { | 120 | { |
89 | u32 val; | 121 | if (WARN_ON_ONCE(!(clk->flags & MEMMAP_ADDRESSING))) |
122 | return readl_relaxed(reg); | ||
123 | else | ||
124 | return clk_memmap_readl(reg); | ||
125 | } | ||
90 | 126 | ||
91 | if (clk->flags & MEMMAP_ADDRESSING) { | 127 | static struct ti_clk_ll_ops omap_clk_ll_ops = { |
92 | struct clk_omap_reg *r = (struct clk_omap_reg *)® | 128 | .clk_readl = clk_memmap_readl, |
93 | val = readl_relaxed(clk_memmaps[r->index] + r->offset); | 129 | .clk_writel = clk_memmap_writel, |
94 | } else { | 130 | }; |
95 | val = readl_relaxed(reg); | ||
96 | } | ||
97 | 131 | ||
98 | return val; | 132 | /** |
133 | * omap2_clk_provider_init - initialize a clock provider | ||
134 | * @match_table: DT device table to match for devices to init | ||
135 | * @np: device node pointer for the this clock provider | ||
136 | * @index: index for the clock provider | ||
137 | + @syscon: syscon regmap pointer | ||
138 | * @mem: iomem pointer for the clock provider memory area, only used if | ||
139 | * syscon is not provided | ||
140 | * | ||
141 | * Initializes a clock provider module (CM/PRM etc.), registering | ||
142 | * the memory mapping at specified index and initializing the | ||
143 | * low level driver infrastructure. Returns 0 in success. | ||
144 | */ | ||
145 | int __init omap2_clk_provider_init(struct device_node *np, int index, | ||
146 | struct regmap *syscon, void __iomem *mem) | ||
147 | { | ||
148 | struct clk_iomap *io; | ||
149 | |||
150 | ti_clk_ll_ops = &omap_clk_ll_ops; | ||
151 | |||
152 | io = kzalloc(sizeof(*io), GFP_KERNEL); | ||
153 | |||
154 | io->regmap = syscon; | ||
155 | io->mem = mem; | ||
156 | |||
157 | clk_memmaps[index] = io; | ||
158 | |||
159 | ti_dt_clk_init_provider(np, index); | ||
160 | |||
161 | return 0; | ||
162 | } | ||
163 | |||
164 | /** | ||
165 | * omap2_clk_legacy_provider_init - initialize a legacy clock provider | ||
166 | * @index: index for the clock provider | ||
167 | * @mem: iomem pointer for the clock provider memory area | ||
168 | * | ||
169 | * Initializes a legacy clock provider memory mapping. | ||
170 | */ | ||
171 | void __init omap2_clk_legacy_provider_init(int index, void __iomem *mem) | ||
172 | { | ||
173 | struct clk_iomap *io; | ||
174 | |||
175 | ti_clk_ll_ops = &omap_clk_ll_ops; | ||
176 | |||
177 | io = memblock_virt_alloc(sizeof(*io), 0); | ||
178 | |||
179 | io->mem = mem; | ||
180 | |||
181 | clk_memmaps[index] = io; | ||
99 | } | 182 | } |
100 | 183 | ||
101 | /* | 184 | /* |
diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index a56742f96000..652ed0ab86ec 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h | |||
@@ -271,10 +271,14 @@ extern const struct clksel_rate div_1_3_rates[]; | |||
271 | extern const struct clksel_rate div_1_4_rates[]; | 271 | extern const struct clksel_rate div_1_4_rates[]; |
272 | extern const struct clksel_rate div31_1to31_rates[]; | 272 | extern const struct clksel_rate div31_1to31_rates[]; |
273 | 273 | ||
274 | extern void __iomem *clk_memmaps[]; | ||
275 | |||
276 | extern int omap2_clkops_enable_clkdm(struct clk_hw *hw); | 274 | extern int omap2_clkops_enable_clkdm(struct clk_hw *hw); |
277 | extern void omap2_clkops_disable_clkdm(struct clk_hw *hw); | 275 | extern void omap2_clkops_disable_clkdm(struct clk_hw *hw); |
278 | 276 | ||
277 | struct regmap; | ||
278 | |||
279 | int __init omap2_clk_provider_init(struct device_node *np, int index, | ||
280 | struct regmap *syscon, void __iomem *mem); | ||
281 | void __init omap2_clk_legacy_provider_init(int index, void __iomem *mem); | ||
282 | |||
279 | void __init ti_clk_init_features(void); | 283 | void __init ti_clk_init_features(void); |
280 | #endif | 284 | #endif |
diff --git a/arch/arm/mach-omap2/cm.h b/arch/arm/mach-omap2/cm.h index 6222e87a79b6..1fe3e6b833d2 100644 --- a/arch/arm/mach-omap2/cm.h +++ b/arch/arm/mach-omap2/cm.h | |||
@@ -70,6 +70,8 @@ int omap_cm_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs); | |||
70 | int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs); | 70 | int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs); |
71 | extern int cm_register(struct cm_ll_data *cld); | 71 | extern int cm_register(struct cm_ll_data *cld); |
72 | extern int cm_unregister(struct cm_ll_data *cld); | 72 | extern int cm_unregister(struct cm_ll_data *cld); |
73 | int omap_cm_init(void); | ||
74 | int omap2_cm_base_init(void); | ||
73 | 75 | ||
74 | # endif | 76 | # endif |
75 | 77 | ||
diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c index ef62ac9dcd05..3e5fd3587eb1 100644 --- a/arch/arm/mach-omap2/cm2xxx.c +++ b/arch/arm/mach-omap2/cm2xxx.c | |||
@@ -393,7 +393,7 @@ static struct cm_ll_data omap2xxx_cm_ll_data = { | |||
393 | .wait_module_ready = &omap2xxx_cm_wait_module_ready, | 393 | .wait_module_ready = &omap2xxx_cm_wait_module_ready, |
394 | }; | 394 | }; |
395 | 395 | ||
396 | int __init omap2xxx_cm_init(void) | 396 | int __init omap2xxx_cm_init(const struct omap_prcm_init_data *data) |
397 | { | 397 | { |
398 | return cm_register(&omap2xxx_cm_ll_data); | 398 | return cm_register(&omap2xxx_cm_ll_data); |
399 | } | 399 | } |
diff --git a/arch/arm/mach-omap2/cm2xxx.h b/arch/arm/mach-omap2/cm2xxx.h index 83b6c597b0e1..7b8c79c0ce27 100644 --- a/arch/arm/mach-omap2/cm2xxx.h +++ b/arch/arm/mach-omap2/cm2xxx.h | |||
@@ -63,7 +63,7 @@ extern u32 omap2xxx_cm_get_core_pll_config(void); | |||
63 | extern void omap2xxx_cm_set_mod_dividers(u32 mpu, u32 dsp, u32 gfx, u32 core, | 63 | extern void omap2xxx_cm_set_mod_dividers(u32 mpu, u32 dsp, u32 gfx, u32 core, |
64 | u32 mdm); | 64 | u32 mdm); |
65 | 65 | ||
66 | extern int __init omap2xxx_cm_init(void); | 66 | int __init omap2xxx_cm_init(const struct omap_prcm_init_data *data); |
67 | 67 | ||
68 | #endif | 68 | #endif |
69 | 69 | ||
diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c index cc5aac784278..7b181f929525 100644 --- a/arch/arm/mach-omap2/cm33xx.c +++ b/arch/arm/mach-omap2/cm33xx.c | |||
@@ -352,7 +352,7 @@ static struct cm_ll_data am33xx_cm_ll_data = { | |||
352 | .module_disable = &am33xx_cm_module_disable, | 352 | .module_disable = &am33xx_cm_module_disable, |
353 | }; | 353 | }; |
354 | 354 | ||
355 | int __init am33xx_cm_init(void) | 355 | int __init am33xx_cm_init(const struct omap_prcm_init_data *data) |
356 | { | 356 | { |
357 | return cm_register(&am33xx_cm_ll_data); | 357 | return cm_register(&am33xx_cm_ll_data); |
358 | } | 358 | } |
diff --git a/arch/arm/mach-omap2/cm33xx.h b/arch/arm/mach-omap2/cm33xx.h index 046b4b2bc9d9..a91f7d282455 100644 --- a/arch/arm/mach-omap2/cm33xx.h +++ b/arch/arm/mach-omap2/cm33xx.h | |||
@@ -19,6 +19,7 @@ | |||
19 | 19 | ||
20 | #include "cm.h" | 20 | #include "cm.h" |
21 | #include "cm-regbits-33xx.h" | 21 | #include "cm-regbits-33xx.h" |
22 | #include "prcm-common.h" | ||
22 | 23 | ||
23 | /* CM base address */ | 24 | /* CM base address */ |
24 | #define AM33XX_CM_BASE 0x44e00000 | 25 | #define AM33XX_CM_BASE 0x44e00000 |
@@ -374,6 +375,6 @@ | |||
374 | 375 | ||
375 | 376 | ||
376 | #ifndef __ASSEMBLER__ | 377 | #ifndef __ASSEMBLER__ |
377 | int am33xx_cm_init(void); | 378 | int am33xx_cm_init(const struct omap_prcm_init_data *data); |
378 | #endif /* ASSEMBLER */ | 379 | #endif /* ASSEMBLER */ |
379 | #endif | 380 | #endif |
diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c index ebead8f035f9..187fa4386718 100644 --- a/arch/arm/mach-omap2/cm3xxx.c +++ b/arch/arm/mach-omap2/cm3xxx.c | |||
@@ -671,8 +671,9 @@ static struct cm_ll_data omap3xxx_cm_ll_data = { | |||
671 | .wait_module_ready = &omap3xxx_cm_wait_module_ready, | 671 | .wait_module_ready = &omap3xxx_cm_wait_module_ready, |
672 | }; | 672 | }; |
673 | 673 | ||
674 | int __init omap3xxx_cm_init(void) | 674 | int __init omap3xxx_cm_init(const struct omap_prcm_init_data *data) |
675 | { | 675 | { |
676 | omap2_clk_legacy_provider_init(TI_CLKM_CM, cm_base + OMAP3430_IVA2_MOD); | ||
676 | return cm_register(&omap3xxx_cm_ll_data); | 677 | return cm_register(&omap3xxx_cm_ll_data); |
677 | } | 678 | } |
678 | 679 | ||
diff --git a/arch/arm/mach-omap2/cm3xxx.h b/arch/arm/mach-omap2/cm3xxx.h index 734a8581c0c4..bc444e2080a1 100644 --- a/arch/arm/mach-omap2/cm3xxx.h +++ b/arch/arm/mach-omap2/cm3xxx.h | |||
@@ -72,7 +72,7 @@ extern void omap3_cm_save_context(void); | |||
72 | extern void omap3_cm_restore_context(void); | 72 | extern void omap3_cm_restore_context(void); |
73 | extern void omap3_cm_save_scratchpad_contents(u32 *ptr); | 73 | extern void omap3_cm_save_scratchpad_contents(u32 *ptr); |
74 | 74 | ||
75 | extern int __init omap3xxx_cm_init(void); | 75 | int __init omap3xxx_cm_init(const struct omap_prcm_init_data *data); |
76 | 76 | ||
77 | #endif | 77 | #endif |
78 | 78 | ||
diff --git a/arch/arm/mach-omap2/cm44xx.h b/arch/arm/mach-omap2/cm44xx.h index 728d06a4af19..309a4c913448 100644 --- a/arch/arm/mach-omap2/cm44xx.h +++ b/arch/arm/mach-omap2/cm44xx.h | |||
@@ -23,7 +23,6 @@ | |||
23 | #define OMAP4_CM_CLKSTCTRL 0x0000 | 23 | #define OMAP4_CM_CLKSTCTRL 0x0000 |
24 | #define OMAP4_CM_STATICDEP 0x0004 | 24 | #define OMAP4_CM_STATICDEP 0x0004 |
25 | 25 | ||
26 | void omap_cm_base_init(void); | 26 | int omap4_cm_init(const struct omap_prcm_init_data *data); |
27 | int omap4_cm_init(void); | ||
28 | 27 | ||
29 | #endif | 28 | #endif |
diff --git a/arch/arm/mach-omap2/cm_common.c b/arch/arm/mach-omap2/cm_common.c index 8fe02fcedc48..23e8bcec34e3 100644 --- a/arch/arm/mach-omap2/cm_common.c +++ b/arch/arm/mach-omap2/cm_common.c | |||
@@ -15,10 +15,14 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
17 | #include <linux/bug.h> | 17 | #include <linux/bug.h> |
18 | #include <linux/of.h> | ||
19 | #include <linux/of_address.h> | ||
18 | 20 | ||
19 | #include "cm2xxx.h" | 21 | #include "cm2xxx.h" |
20 | #include "cm3xxx.h" | 22 | #include "cm3xxx.h" |
23 | #include "cm33xx.h" | ||
21 | #include "cm44xx.h" | 24 | #include "cm44xx.h" |
25 | #include "clock.h" | ||
22 | 26 | ||
23 | /* | 27 | /* |
24 | * cm_ll_data: function pointers to SoC-specific implementations of | 28 | * cm_ll_data: function pointers to SoC-specific implementations of |
@@ -33,6 +37,9 @@ void __iomem *cm_base; | |||
33 | /* cm2_base: base virtual address of the CM2 IP block (OMAP44xx only) */ | 37 | /* cm2_base: base virtual address of the CM2 IP block (OMAP44xx only) */ |
34 | void __iomem *cm2_base; | 38 | void __iomem *cm2_base; |
35 | 39 | ||
40 | #define CM_NO_CLOCKS 0x1 | ||
41 | #define CM_SINGLE_INSTANCE 0x2 | ||
42 | |||
36 | /** | 43 | /** |
37 | * omap2_set_globals_cm - set the CM/CM2 base addresses (for early use) | 44 | * omap2_set_globals_cm - set the CM/CM2 base addresses (for early use) |
38 | * @cm: CM base virtual address | 45 | * @cm: CM base virtual address |
@@ -212,3 +219,152 @@ int cm_unregister(struct cm_ll_data *cld) | |||
212 | 219 | ||
213 | return 0; | 220 | return 0; |
214 | } | 221 | } |
222 | |||
223 | #if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5) || \ | ||
224 | defined(CONFIG_SOC_DRA7XX) | ||
225 | static struct omap_prcm_init_data cm_data __initdata = { | ||
226 | .index = TI_CLKM_CM, | ||
227 | .init = omap4_cm_init, | ||
228 | }; | ||
229 | |||
230 | static struct omap_prcm_init_data cm2_data __initdata = { | ||
231 | .index = TI_CLKM_CM2, | ||
232 | .init = omap4_cm_init, | ||
233 | }; | ||
234 | #endif | ||
235 | |||
236 | #ifdef CONFIG_ARCH_OMAP2 | ||
237 | static struct omap_prcm_init_data omap2_prcm_data __initdata = { | ||
238 | .index = TI_CLKM_CM, | ||
239 | .init = omap2xxx_cm_init, | ||
240 | .flags = CM_NO_CLOCKS | CM_SINGLE_INSTANCE, | ||
241 | }; | ||
242 | #endif | ||
243 | |||
244 | #ifdef CONFIG_ARCH_OMAP3 | ||
245 | static struct omap_prcm_init_data omap3_cm_data __initdata = { | ||
246 | .index = TI_CLKM_CM, | ||
247 | .init = omap3xxx_cm_init, | ||
248 | .flags = CM_SINGLE_INSTANCE, | ||
249 | |||
250 | /* | ||
251 | * IVA2 offset is a negative value, must offset the cm_base address | ||
252 | * by this to get it to positive side on the iomap | ||
253 | */ | ||
254 | .offset = -OMAP3430_IVA2_MOD, | ||
255 | }; | ||
256 | #endif | ||
257 | |||
258 | #if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_TI81XX) | ||
259 | static struct omap_prcm_init_data am3_prcm_data __initdata = { | ||
260 | .index = TI_CLKM_CM, | ||
261 | .flags = CM_NO_CLOCKS | CM_SINGLE_INSTANCE, | ||
262 | .init = am33xx_cm_init, | ||
263 | }; | ||
264 | #endif | ||
265 | |||
266 | #ifdef CONFIG_SOC_AM43XX | ||
267 | static struct omap_prcm_init_data am4_prcm_data __initdata = { | ||
268 | .index = TI_CLKM_CM, | ||
269 | .flags = CM_NO_CLOCKS | CM_SINGLE_INSTANCE, | ||
270 | .init = omap4_cm_init, | ||
271 | }; | ||
272 | #endif | ||
273 | |||
274 | static const struct of_device_id omap_cm_dt_match_table[] __initconst = { | ||
275 | #ifdef CONFIG_ARCH_OMAP2 | ||
276 | { .compatible = "ti,omap2-prcm", .data = &omap2_prcm_data }, | ||
277 | #endif | ||
278 | #ifdef CONFIG_ARCH_OMAP3 | ||
279 | { .compatible = "ti,omap3-cm", .data = &omap3_cm_data }, | ||
280 | #endif | ||
281 | #ifdef CONFIG_ARCH_OMAP4 | ||
282 | { .compatible = "ti,omap4-cm1", .data = &cm_data }, | ||
283 | { .compatible = "ti,omap4-cm2", .data = &cm2_data }, | ||
284 | #endif | ||
285 | #ifdef CONFIG_SOC_OMAP5 | ||
286 | { .compatible = "ti,omap5-cm-core-aon", .data = &cm_data }, | ||
287 | { .compatible = "ti,omap5-cm-core", .data = &cm2_data }, | ||
288 | #endif | ||
289 | #ifdef CONFIG_SOC_DRA7XX | ||
290 | { .compatible = "ti,dra7-cm-core-aon", .data = &cm_data }, | ||
291 | { .compatible = "ti,dra7-cm-core", .data = &cm2_data }, | ||
292 | #endif | ||
293 | #ifdef CONFIG_SOC_AM33XX | ||
294 | { .compatible = "ti,am3-prcm", .data = &am3_prcm_data }, | ||
295 | #endif | ||
296 | #ifdef CONFIG_SOC_AM43XX | ||
297 | { .compatible = "ti,am4-prcm", .data = &am4_prcm_data }, | ||
298 | #endif | ||
299 | #ifdef CONFIG_SOC_TI81XX | ||
300 | { .compatible = "ti,dm814-prcm", .data = &am3_prcm_data }, | ||
301 | { .compatible = "ti,dm816-prcm", .data = &am3_prcm_data }, | ||
302 | #endif | ||
303 | { } | ||
304 | }; | ||
305 | |||
306 | /** | ||
307 | * omap2_cm_base_init - initialize iomappings for the CM drivers | ||
308 | * | ||
309 | * Detects and initializes the iomappings for the CM driver, based | ||
310 | * on the DT data. Returns 0 in success, negative error value | ||
311 | * otherwise. | ||
312 | */ | ||
313 | int __init omap2_cm_base_init(void) | ||
314 | { | ||
315 | struct device_node *np; | ||
316 | const struct of_device_id *match; | ||
317 | struct omap_prcm_init_data *data; | ||
318 | void __iomem *mem; | ||
319 | |||
320 | for_each_matching_node_and_match(np, omap_cm_dt_match_table, &match) { | ||
321 | data = (struct omap_prcm_init_data *)match->data; | ||
322 | |||
323 | mem = of_iomap(np, 0); | ||
324 | if (!mem) | ||
325 | return -ENOMEM; | ||
326 | |||
327 | if (data->index == TI_CLKM_CM) | ||
328 | cm_base = mem + data->offset; | ||
329 | |||
330 | if (data->index == TI_CLKM_CM2) | ||
331 | cm2_base = mem + data->offset; | ||
332 | |||
333 | data->mem = mem; | ||
334 | |||
335 | data->np = np; | ||
336 | |||
337 | if (data->init && (data->flags & CM_SINGLE_INSTANCE || | ||
338 | (cm_base && cm2_base))) | ||
339 | data->init(data); | ||
340 | } | ||
341 | |||
342 | return 0; | ||
343 | } | ||
344 | |||
345 | /** | ||
346 | * omap_cm_init - low level init for the CM drivers | ||
347 | * | ||
348 | * Initializes the low level clock infrastructure for CM drivers. | ||
349 | * Returns 0 in success, negative error value in failure. | ||
350 | */ | ||
351 | int __init omap_cm_init(void) | ||
352 | { | ||
353 | struct device_node *np; | ||
354 | const struct of_device_id *match; | ||
355 | const struct omap_prcm_init_data *data; | ||
356 | int ret; | ||
357 | |||
358 | for_each_matching_node_and_match(np, omap_cm_dt_match_table, &match) { | ||
359 | data = match->data; | ||
360 | |||
361 | if (data->flags & CM_NO_CLOCKS) | ||
362 | continue; | ||
363 | |||
364 | ret = omap2_clk_provider_init(np, data->index, NULL, data->mem); | ||
365 | if (ret) | ||
366 | return ret; | ||
367 | } | ||
368 | |||
369 | return 0; | ||
370 | } | ||
diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c index 95a8cff66aff..2c0e07ed6b99 100644 --- a/arch/arm/mach-omap2/cminst44xx.c +++ b/arch/arm/mach-omap2/cminst44xx.c | |||
@@ -63,7 +63,7 @@ static void __iomem *_cm_bases[OMAP4_MAX_PRCM_PARTITIONS]; | |||
63 | * Populates the base addresses of the _cm_bases | 63 | * Populates the base addresses of the _cm_bases |
64 | * array used for read/write of cm module registers. | 64 | * array used for read/write of cm module registers. |
65 | */ | 65 | */ |
66 | void omap_cm_base_init(void) | 66 | static void omap_cm_base_init(void) |
67 | { | 67 | { |
68 | _cm_bases[OMAP4430_PRM_PARTITION] = prm_base; | 68 | _cm_bases[OMAP4430_PRM_PARTITION] = prm_base; |
69 | _cm_bases[OMAP4430_CM1_PARTITION] = cm_base; | 69 | _cm_bases[OMAP4430_CM1_PARTITION] = cm_base; |
@@ -514,8 +514,10 @@ static struct cm_ll_data omap4xxx_cm_ll_data = { | |||
514 | .module_disable = &omap4_cminst_module_disable, | 514 | .module_disable = &omap4_cminst_module_disable, |
515 | }; | 515 | }; |
516 | 516 | ||
517 | int __init omap4_cm_init(void) | 517 | int __init omap4_cm_init(const struct omap_prcm_init_data *data) |
518 | { | 518 | { |
519 | omap_cm_base_init(); | ||
520 | |||
519 | return cm_register(&omap4xxx_cm_ll_data); | 521 | return cm_register(&omap4xxx_cm_ll_data); |
520 | } | 522 | } |
521 | 523 | ||
diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c index da041b4ab29c..af95a624fe71 100644 --- a/arch/arm/mach-omap2/control.c +++ b/arch/arm/mach-omap2/control.c | |||
@@ -14,6 +14,9 @@ | |||
14 | 14 | ||
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | #include <linux/of_address.h> | ||
18 | #include <linux/regmap.h> | ||
19 | #include <linux/mfd/syscon.h> | ||
17 | 20 | ||
18 | #include "soc.h" | 21 | #include "soc.h" |
19 | #include "iomap.h" | 22 | #include "iomap.h" |
@@ -25,13 +28,15 @@ | |||
25 | #include "sdrc.h" | 28 | #include "sdrc.h" |
26 | #include "pm.h" | 29 | #include "pm.h" |
27 | #include "control.h" | 30 | #include "control.h" |
31 | #include "clock.h" | ||
28 | 32 | ||
29 | /* Used by omap3_ctrl_save_padconf() */ | 33 | /* Used by omap3_ctrl_save_padconf() */ |
30 | #define START_PADCONF_SAVE 0x2 | 34 | #define START_PADCONF_SAVE 0x2 |
31 | #define PADCONF_SAVE_DONE 0x1 | 35 | #define PADCONF_SAVE_DONE 0x1 |
32 | 36 | ||
33 | static void __iomem *omap2_ctrl_base; | 37 | static void __iomem *omap2_ctrl_base; |
34 | static void __iomem *omap4_ctrl_pad_base; | 38 | static s16 omap2_ctrl_offset; |
39 | static struct regmap *omap2_ctrl_syscon; | ||
35 | 40 | ||
36 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) | 41 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) |
37 | struct omap3_scratchpad { | 42 | struct omap3_scratchpad { |
@@ -133,66 +138,79 @@ struct omap3_control_regs { | |||
133 | static struct omap3_control_regs control_context; | 138 | static struct omap3_control_regs control_context; |
134 | #endif /* CONFIG_ARCH_OMAP3 && CONFIG_PM */ | 139 | #endif /* CONFIG_ARCH_OMAP3 && CONFIG_PM */ |
135 | 140 | ||
136 | #define OMAP_CTRL_REGADDR(reg) (omap2_ctrl_base + (reg)) | 141 | void __init omap2_set_globals_control(void __iomem *ctrl) |
137 | #define OMAP4_CTRL_PAD_REGADDR(reg) (omap4_ctrl_pad_base + (reg)) | ||
138 | |||
139 | void __init omap2_set_globals_control(void __iomem *ctrl, | ||
140 | void __iomem *ctrl_pad) | ||
141 | { | 142 | { |
142 | omap2_ctrl_base = ctrl; | 143 | omap2_ctrl_base = ctrl; |
143 | omap4_ctrl_pad_base = ctrl_pad; | ||
144 | } | ||
145 | |||
146 | void __iomem *omap_ctrl_base_get(void) | ||
147 | { | ||
148 | return omap2_ctrl_base; | ||
149 | } | 144 | } |
150 | 145 | ||
151 | u8 omap_ctrl_readb(u16 offset) | 146 | u8 omap_ctrl_readb(u16 offset) |
152 | { | 147 | { |
153 | return readb_relaxed(OMAP_CTRL_REGADDR(offset)); | 148 | u32 val; |
149 | u8 byte_offset = offset & 0x3; | ||
150 | |||
151 | val = omap_ctrl_readl(offset); | ||
152 | |||
153 | return (val >> (byte_offset * 8)) & 0xff; | ||
154 | } | 154 | } |
155 | 155 | ||
156 | u16 omap_ctrl_readw(u16 offset) | 156 | u16 omap_ctrl_readw(u16 offset) |
157 | { | 157 | { |
158 | return readw_relaxed(OMAP_CTRL_REGADDR(offset)); | 158 | u32 val; |
159 | u16 byte_offset = offset & 0x2; | ||
160 | |||
161 | val = omap_ctrl_readl(offset); | ||
162 | |||
163 | return (val >> (byte_offset * 8)) & 0xffff; | ||
159 | } | 164 | } |
160 | 165 | ||
161 | u32 omap_ctrl_readl(u16 offset) | 166 | u32 omap_ctrl_readl(u16 offset) |
162 | { | 167 | { |
163 | return readl_relaxed(OMAP_CTRL_REGADDR(offset)); | 168 | u32 val; |
169 | |||
170 | offset &= 0xfffc; | ||
171 | if (!omap2_ctrl_syscon) | ||
172 | val = readl_relaxed(omap2_ctrl_base + offset); | ||
173 | else | ||
174 | regmap_read(omap2_ctrl_syscon, omap2_ctrl_offset + offset, | ||
175 | &val); | ||
176 | |||
177 | return val; | ||
164 | } | 178 | } |
165 | 179 | ||
166 | void omap_ctrl_writeb(u8 val, u16 offset) | 180 | void omap_ctrl_writeb(u8 val, u16 offset) |
167 | { | 181 | { |
168 | writeb_relaxed(val, OMAP_CTRL_REGADDR(offset)); | 182 | u32 tmp; |
183 | u8 byte_offset = offset & 0x3; | ||
184 | |||
185 | tmp = omap_ctrl_readl(offset); | ||
186 | |||
187 | tmp &= 0xffffffff ^ (0xff << (byte_offset * 8)); | ||
188 | tmp |= val << (byte_offset * 8); | ||
189 | |||
190 | omap_ctrl_writel(tmp, offset); | ||
169 | } | 191 | } |
170 | 192 | ||
171 | void omap_ctrl_writew(u16 val, u16 offset) | 193 | void omap_ctrl_writew(u16 val, u16 offset) |
172 | { | 194 | { |
173 | writew_relaxed(val, OMAP_CTRL_REGADDR(offset)); | 195 | u32 tmp; |
174 | } | 196 | u8 byte_offset = offset & 0x2; |
175 | 197 | ||
176 | void omap_ctrl_writel(u32 val, u16 offset) | 198 | tmp = omap_ctrl_readl(offset); |
177 | { | ||
178 | writel_relaxed(val, OMAP_CTRL_REGADDR(offset)); | ||
179 | } | ||
180 | 199 | ||
181 | /* | 200 | tmp &= 0xffffffff ^ (0xffff << (byte_offset * 8)); |
182 | * On OMAP4 control pad are not addressable from control | 201 | tmp |= val << (byte_offset * 8); |
183 | * core base. So the common omap_ctrl_read/write APIs breaks | ||
184 | * Hence export separate APIs to manage the omap4 pad control | ||
185 | * registers. This APIs will work only for OMAP4 | ||
186 | */ | ||
187 | 202 | ||
188 | u32 omap4_ctrl_pad_readl(u16 offset) | 203 | omap_ctrl_writel(tmp, offset); |
189 | { | ||
190 | return readl_relaxed(OMAP4_CTRL_PAD_REGADDR(offset)); | ||
191 | } | 204 | } |
192 | 205 | ||
193 | void omap4_ctrl_pad_writel(u32 val, u16 offset) | 206 | void omap_ctrl_writel(u32 val, u16 offset) |
194 | { | 207 | { |
195 | writel_relaxed(val, OMAP4_CTRL_PAD_REGADDR(offset)); | 208 | offset &= 0xfffc; |
209 | if (!omap2_ctrl_syscon) | ||
210 | writel_relaxed(val, omap2_ctrl_base + offset); | ||
211 | else | ||
212 | regmap_write(omap2_ctrl_syscon, omap2_ctrl_offset + offset, | ||
213 | val); | ||
196 | } | 214 | } |
197 | 215 | ||
198 | #ifdef CONFIG_ARCH_OMAP3 | 216 | #ifdef CONFIG_ARCH_OMAP3 |
@@ -611,3 +629,120 @@ void __init omap3_ctrl_init(void) | |||
611 | omap3_ctrl_setup_d2d_padconf(); | 629 | omap3_ctrl_setup_d2d_padconf(); |
612 | } | 630 | } |
613 | #endif /* CONFIG_ARCH_OMAP3 && CONFIG_PM */ | 631 | #endif /* CONFIG_ARCH_OMAP3 && CONFIG_PM */ |
632 | |||
633 | struct control_init_data { | ||
634 | int index; | ||
635 | s16 offset; | ||
636 | }; | ||
637 | |||
638 | static struct control_init_data ctrl_data = { | ||
639 | .index = TI_CLKM_CTRL, | ||
640 | }; | ||
641 | |||
642 | static const struct control_init_data omap2_ctrl_data = { | ||
643 | .index = TI_CLKM_CTRL, | ||
644 | .offset = -OMAP2_CONTROL_GENERAL, | ||
645 | }; | ||
646 | |||
647 | static const struct of_device_id omap_scrm_dt_match_table[] = { | ||
648 | { .compatible = "ti,am3-scm", .data = &ctrl_data }, | ||
649 | { .compatible = "ti,am4-scm", .data = &ctrl_data }, | ||
650 | { .compatible = "ti,omap2-scm", .data = &omap2_ctrl_data }, | ||
651 | { .compatible = "ti,omap3-scm", .data = &omap2_ctrl_data }, | ||
652 | { .compatible = "ti,dm816-scrm", .data = &ctrl_data }, | ||
653 | { .compatible = "ti,omap4-scm-core", .data = &ctrl_data }, | ||
654 | { .compatible = "ti,omap5-scm-core", .data = &ctrl_data }, | ||
655 | { .compatible = "ti,dra7-scm-core", .data = &ctrl_data }, | ||
656 | { } | ||
657 | }; | ||
658 | |||
659 | /** | ||
660 | * omap2_control_base_init - initialize iomappings for the control driver | ||
661 | * | ||
662 | * Detects and initializes the iomappings for the control driver, based | ||
663 | * on the DT data. Returns 0 in success, negative error value | ||
664 | * otherwise. | ||
665 | */ | ||
666 | int __init omap2_control_base_init(void) | ||
667 | { | ||
668 | struct device_node *np; | ||
669 | const struct of_device_id *match; | ||
670 | struct control_init_data *data; | ||
671 | |||
672 | for_each_matching_node_and_match(np, omap_scrm_dt_match_table, &match) { | ||
673 | data = (struct control_init_data *)match->data; | ||
674 | |||
675 | omap2_ctrl_base = of_iomap(np, 0); | ||
676 | if (!omap2_ctrl_base) | ||
677 | return -ENOMEM; | ||
678 | |||
679 | omap2_ctrl_offset = data->offset; | ||
680 | } | ||
681 | |||
682 | return 0; | ||
683 | } | ||
684 | |||
685 | /** | ||
686 | * omap_control_init - low level init for the control driver | ||
687 | * | ||
688 | * Initializes the low level clock infrastructure for control driver. | ||
689 | * Returns 0 in success, negative error value in failure. | ||
690 | */ | ||
691 | int __init omap_control_init(void) | ||
692 | { | ||
693 | struct device_node *np, *scm_conf; | ||
694 | const struct of_device_id *match; | ||
695 | const struct omap_prcm_init_data *data; | ||
696 | int ret; | ||
697 | struct regmap *syscon; | ||
698 | |||
699 | for_each_matching_node_and_match(np, omap_scrm_dt_match_table, &match) { | ||
700 | data = match->data; | ||
701 | |||
702 | /* | ||
703 | * Check if we have scm_conf node, if yes, use this to | ||
704 | * access clock registers. | ||
705 | */ | ||
706 | scm_conf = of_get_child_by_name(np, "scm_conf"); | ||
707 | |||
708 | if (scm_conf) { | ||
709 | syscon = syscon_node_to_regmap(scm_conf); | ||
710 | |||
711 | if (IS_ERR(syscon)) | ||
712 | return PTR_ERR(syscon); | ||
713 | |||
714 | omap2_ctrl_syscon = syscon; | ||
715 | |||
716 | if (of_get_child_by_name(scm_conf, "clocks")) { | ||
717 | ret = omap2_clk_provider_init(scm_conf, | ||
718 | data->index, | ||
719 | syscon, NULL); | ||
720 | if (ret) | ||
721 | return ret; | ||
722 | } | ||
723 | |||
724 | iounmap(omap2_ctrl_base); | ||
725 | omap2_ctrl_base = NULL; | ||
726 | } else { | ||
727 | /* No scm_conf found, direct access */ | ||
728 | ret = omap2_clk_provider_init(np, data->index, NULL, | ||
729 | omap2_ctrl_base); | ||
730 | if (ret) | ||
731 | return ret; | ||
732 | } | ||
733 | } | ||
734 | |||
735 | return 0; | ||
736 | } | ||
737 | |||
738 | /** | ||
739 | * omap3_control_legacy_iomap_init - legacy iomap init for clock providers | ||
740 | * | ||
741 | * Legacy iomap init for clock provider. Needed only by legacy boot mode, | ||
742 | * where the base addresses are not parsed from DT, but still required | ||
743 | * by the clock driver to be setup properly. | ||
744 | */ | ||
745 | void __init omap3_control_legacy_iomap_init(void) | ||
746 | { | ||
747 | omap2_clk_legacy_provider_init(TI_CLKM_SCRM, omap2_ctrl_base); | ||
748 | } | ||
diff --git a/arch/arm/mach-omap2/control.h b/arch/arm/mach-omap2/control.h index b8a487181210..80d2b7d8e36e 100644 --- a/arch/arm/mach-omap2/control.h +++ b/arch/arm/mach-omap2/control.h | |||
@@ -440,15 +440,12 @@ | |||
440 | 440 | ||
441 | #ifndef __ASSEMBLY__ | 441 | #ifndef __ASSEMBLY__ |
442 | #ifdef CONFIG_ARCH_OMAP2PLUS | 442 | #ifdef CONFIG_ARCH_OMAP2PLUS |
443 | extern void __iomem *omap_ctrl_base_get(void); | ||
444 | extern u8 omap_ctrl_readb(u16 offset); | 443 | extern u8 omap_ctrl_readb(u16 offset); |
445 | extern u16 omap_ctrl_readw(u16 offset); | 444 | extern u16 omap_ctrl_readw(u16 offset); |
446 | extern u32 omap_ctrl_readl(u16 offset); | 445 | extern u32 omap_ctrl_readl(u16 offset); |
447 | extern u32 omap4_ctrl_pad_readl(u16 offset); | ||
448 | extern void omap_ctrl_writeb(u8 val, u16 offset); | 446 | extern void omap_ctrl_writeb(u8 val, u16 offset); |
449 | extern void omap_ctrl_writew(u16 val, u16 offset); | 447 | extern void omap_ctrl_writew(u16 val, u16 offset); |
450 | extern void omap_ctrl_writel(u32 val, u16 offset); | 448 | extern void omap_ctrl_writel(u32 val, u16 offset); |
451 | extern void omap4_ctrl_pad_writel(u32 val, u16 offset); | ||
452 | 449 | ||
453 | extern void omap3_save_scratchpad_contents(void); | 450 | extern void omap3_save_scratchpad_contents(void); |
454 | extern void omap3_clear_scratchpad_contents(void); | 451 | extern void omap3_clear_scratchpad_contents(void); |
@@ -464,10 +461,11 @@ extern void omap_ctrl_write_dsp_boot_mode(u8 bootmode); | |||
464 | extern void omap3630_ctrl_disable_rta(void); | 461 | extern void omap3630_ctrl_disable_rta(void); |
465 | extern int omap3_ctrl_save_padconf(void); | 462 | extern int omap3_ctrl_save_padconf(void); |
466 | void omap3_ctrl_init(void); | 463 | void omap3_ctrl_init(void); |
467 | extern void omap2_set_globals_control(void __iomem *ctrl, | 464 | int omap2_control_base_init(void); |
468 | void __iomem *ctrl_pad); | 465 | int omap_control_init(void); |
466 | void omap2_set_globals_control(void __iomem *ctrl); | ||
467 | void __init omap3_control_legacy_iomap_init(void); | ||
469 | #else | 468 | #else |
470 | #define omap_ctrl_base_get() 0 | ||
471 | #define omap_ctrl_readb(x) 0 | 469 | #define omap_ctrl_readb(x) 0 |
472 | #define omap_ctrl_readw(x) 0 | 470 | #define omap_ctrl_readw(x) 0 |
473 | #define omap_ctrl_readl(x) 0 | 471 | #define omap_ctrl_readl(x) 0 |
diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c index 7a050f9c37ff..f492ae147c6a 100644 --- a/arch/arm/mach-omap2/display.c +++ b/arch/arm/mach-omap2/display.c | |||
@@ -26,6 +26,8 @@ | |||
26 | #include <linux/of.h> | 26 | #include <linux/of.h> |
27 | #include <linux/of_platform.h> | 27 | #include <linux/of_platform.h> |
28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
29 | #include <linux/mfd/syscon.h> | ||
30 | #include <linux/regmap.h> | ||
29 | 31 | ||
30 | #include <video/omapdss.h> | 32 | #include <video/omapdss.h> |
31 | #include "omap_hwmod.h" | 33 | #include "omap_hwmod.h" |
@@ -104,6 +106,10 @@ static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initconst = { | |||
104 | { "dss_hdmi", "omapdss_hdmi", -1 }, | 106 | { "dss_hdmi", "omapdss_hdmi", -1 }, |
105 | }; | 107 | }; |
106 | 108 | ||
109 | #define OMAP4_DSIPHY_SYSCON_OFFSET 0x78 | ||
110 | |||
111 | static struct regmap *omap4_dsi_mux_syscon; | ||
112 | |||
107 | static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes) | 113 | static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes) |
108 | { | 114 | { |
109 | u32 enable_mask, enable_shift; | 115 | u32 enable_mask, enable_shift; |
@@ -124,7 +130,7 @@ static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes) | |||
124 | return -ENODEV; | 130 | return -ENODEV; |
125 | } | 131 | } |
126 | 132 | ||
127 | reg = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY); | 133 | regmap_read(omap4_dsi_mux_syscon, OMAP4_DSIPHY_SYSCON_OFFSET, ®); |
128 | 134 | ||
129 | reg &= ~enable_mask; | 135 | reg &= ~enable_mask; |
130 | reg &= ~pipd_mask; | 136 | reg &= ~pipd_mask; |
@@ -132,7 +138,7 @@ static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes) | |||
132 | reg |= (lanes << enable_shift) & enable_mask; | 138 | reg |= (lanes << enable_shift) & enable_mask; |
133 | reg |= (lanes << pipd_shift) & pipd_mask; | 139 | reg |= (lanes << pipd_shift) & pipd_mask; |
134 | 140 | ||
135 | omap4_ctrl_pad_writel(reg, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY); | 141 | regmap_write(omap4_dsi_mux_syscon, OMAP4_DSIPHY_SYSCON_OFFSET, reg); |
136 | 142 | ||
137 | return 0; | 143 | return 0; |
138 | } | 144 | } |
@@ -665,5 +671,10 @@ int __init omapdss_init_of(void) | |||
665 | return r; | 671 | return r; |
666 | } | 672 | } |
667 | 673 | ||
674 | /* add DSI info for omap4 */ | ||
675 | node = of_find_node_by_name(NULL, "omap4_padconf_global"); | ||
676 | if (node) | ||
677 | omap4_dsi_mux_syscon = syscon_node_to_regmap(node); | ||
678 | |||
668 | return 0; | 679 | return 0; |
669 | } | 680 | } |
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 2a2f4d56e4c8..f8121dbc9d48 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c | |||
@@ -52,7 +52,10 @@ EXPORT_SYMBOL(omap_rev); | |||
52 | 52 | ||
53 | int omap_type(void) | 53 | int omap_type(void) |
54 | { | 54 | { |
55 | u32 val = 0; | 55 | static u32 val = OMAP2_DEVICETYPE_MASK; |
56 | |||
57 | if (val < OMAP2_DEVICETYPE_MASK) | ||
58 | return val; | ||
56 | 59 | ||
57 | if (cpu_is_omap24xx()) { | 60 | if (cpu_is_omap24xx()) { |
58 | val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS); | 61 | val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS); |
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index 1eeff6be260d..820dde8b5b04 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
@@ -382,13 +382,9 @@ void __init omap2420_init_early(void) | |||
382 | omap2_set_globals_tap(OMAP242X_CLASS, OMAP2_L4_IO_ADDRESS(0x48014000)); | 382 | omap2_set_globals_tap(OMAP242X_CLASS, OMAP2_L4_IO_ADDRESS(0x48014000)); |
383 | omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP2420_SDRC_BASE), | 383 | omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP2420_SDRC_BASE), |
384 | OMAP2_L3_IO_ADDRESS(OMAP2420_SMS_BASE)); | 384 | OMAP2_L3_IO_ADDRESS(OMAP2420_SMS_BASE)); |
385 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP242X_CTRL_BASE), | 385 | omap2_control_base_init(); |
386 | NULL); | ||
387 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP2420_PRM_BASE)); | ||
388 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP2420_CM_BASE), NULL); | ||
389 | omap2xxx_check_revision(); | 386 | omap2xxx_check_revision(); |
390 | omap2xxx_prm_init(); | 387 | omap2_prcm_base_init(); |
391 | omap2xxx_cm_init(); | ||
392 | omap2xxx_voltagedomains_init(); | 388 | omap2xxx_voltagedomains_init(); |
393 | omap242x_powerdomains_init(); | 389 | omap242x_powerdomains_init(); |
394 | omap242x_clockdomains_init(); | 390 | omap242x_clockdomains_init(); |
@@ -412,13 +408,9 @@ void __init omap2430_init_early(void) | |||
412 | omap2_set_globals_tap(OMAP243X_CLASS, OMAP2_L4_IO_ADDRESS(0x4900a000)); | 408 | omap2_set_globals_tap(OMAP243X_CLASS, OMAP2_L4_IO_ADDRESS(0x4900a000)); |
413 | omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP243X_SDRC_BASE), | 409 | omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP243X_SDRC_BASE), |
414 | OMAP2_L3_IO_ADDRESS(OMAP243X_SMS_BASE)); | 410 | OMAP2_L3_IO_ADDRESS(OMAP243X_SMS_BASE)); |
415 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP243X_CTRL_BASE), | 411 | omap2_control_base_init(); |
416 | NULL); | ||
417 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP2430_PRM_BASE)); | ||
418 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP2430_CM_BASE), NULL); | ||
419 | omap2xxx_check_revision(); | 412 | omap2xxx_check_revision(); |
420 | omap2xxx_prm_init(); | 413 | omap2_prcm_base_init(); |
421 | omap2xxx_cm_init(); | ||
422 | omap2xxx_voltagedomains_init(); | 414 | omap2xxx_voltagedomains_init(); |
423 | omap243x_powerdomains_init(); | 415 | omap243x_powerdomains_init(); |
424 | omap243x_clockdomains_init(); | 416 | omap243x_clockdomains_init(); |
@@ -446,21 +438,30 @@ void __init omap3_init_early(void) | |||
446 | omap2_set_globals_tap(OMAP343X_CLASS, OMAP2_L4_IO_ADDRESS(0x4830A000)); | 438 | omap2_set_globals_tap(OMAP343X_CLASS, OMAP2_L4_IO_ADDRESS(0x4830A000)); |
447 | omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP343X_SDRC_BASE), | 439 | omap2_set_globals_sdrc(OMAP2_L3_IO_ADDRESS(OMAP343X_SDRC_BASE), |
448 | OMAP2_L3_IO_ADDRESS(OMAP343X_SMS_BASE)); | 440 | OMAP2_L3_IO_ADDRESS(OMAP343X_SMS_BASE)); |
449 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP343X_CTRL_BASE), | 441 | /* XXX: remove these once OMAP3 is DT only */ |
450 | NULL); | 442 | if (!of_have_populated_dt()) { |
451 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE)); | 443 | omap2_set_globals_control( |
452 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP3430_CM_BASE), NULL); | 444 | OMAP2_L4_IO_ADDRESS(OMAP343X_CTRL_BASE)); |
445 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE)); | ||
446 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP3430_CM_BASE), | ||
447 | NULL); | ||
448 | } | ||
449 | omap2_control_base_init(); | ||
453 | omap3xxx_check_revision(); | 450 | omap3xxx_check_revision(); |
454 | omap3xxx_check_features(); | 451 | omap3xxx_check_features(); |
455 | omap3xxx_prm_init(); | 452 | omap2_prcm_base_init(); |
456 | omap3xxx_cm_init(); | 453 | /* XXX: remove these once OMAP3 is DT only */ |
454 | if (!of_have_populated_dt()) { | ||
455 | omap3xxx_prm_init(NULL); | ||
456 | omap3xxx_cm_init(NULL); | ||
457 | } | ||
457 | omap3xxx_voltagedomains_init(); | 458 | omap3xxx_voltagedomains_init(); |
458 | omap3xxx_powerdomains_init(); | 459 | omap3xxx_powerdomains_init(); |
459 | omap3xxx_clockdomains_init(); | 460 | omap3xxx_clockdomains_init(); |
460 | omap3xxx_hwmod_init(); | 461 | omap3xxx_hwmod_init(); |
461 | omap_hwmod_init_postsetup(); | 462 | omap_hwmod_init_postsetup(); |
462 | if (!of_have_populated_dt()) { | 463 | if (!of_have_populated_dt()) { |
463 | omap3_prcm_legacy_iomaps_init(); | 464 | omap3_control_legacy_iomap_init(); |
464 | if (soc_is_am35xx()) | 465 | if (soc_is_am35xx()) |
465 | omap_clk_soc_init = am35xx_clk_legacy_init; | 466 | omap_clk_soc_init = am35xx_clk_legacy_init; |
466 | else if (cpu_is_omap3630()) | 467 | else if (cpu_is_omap3630()) |
@@ -547,14 +548,10 @@ void __init ti814x_init_early(void) | |||
547 | { | 548 | { |
548 | omap2_set_globals_tap(TI814X_CLASS, | 549 | omap2_set_globals_tap(TI814X_CLASS, |
549 | OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE)); | 550 | OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE)); |
550 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(TI81XX_CTRL_BASE), | 551 | omap2_control_base_init(); |
551 | NULL); | ||
552 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE)); | ||
553 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE), NULL); | ||
554 | omap3xxx_check_revision(); | 552 | omap3xxx_check_revision(); |
555 | ti81xx_check_features(); | 553 | ti81xx_check_features(); |
556 | am33xx_prm_init(); | 554 | omap2_prcm_base_init(); |
557 | am33xx_cm_init(); | ||
558 | omap3xxx_voltagedomains_init(); | 555 | omap3xxx_voltagedomains_init(); |
559 | omap3xxx_powerdomains_init(); | 556 | omap3xxx_powerdomains_init(); |
560 | ti81xx_clockdomains_init(); | 557 | ti81xx_clockdomains_init(); |
@@ -568,14 +565,10 @@ void __init ti816x_init_early(void) | |||
568 | { | 565 | { |
569 | omap2_set_globals_tap(TI816X_CLASS, | 566 | omap2_set_globals_tap(TI816X_CLASS, |
570 | OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE)); | 567 | OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE)); |
571 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(TI81XX_CTRL_BASE), | 568 | omap2_control_base_init(); |
572 | NULL); | ||
573 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE)); | ||
574 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE), NULL); | ||
575 | omap3xxx_check_revision(); | 569 | omap3xxx_check_revision(); |
576 | ti81xx_check_features(); | 570 | ti81xx_check_features(); |
577 | am33xx_prm_init(); | 571 | omap2_prcm_base_init(); |
578 | am33xx_cm_init(); | ||
579 | omap3xxx_voltagedomains_init(); | 572 | omap3xxx_voltagedomains_init(); |
580 | omap3xxx_powerdomains_init(); | 573 | omap3xxx_powerdomains_init(); |
581 | ti81xx_clockdomains_init(); | 574 | ti81xx_clockdomains_init(); |
@@ -591,14 +584,10 @@ void __init am33xx_init_early(void) | |||
591 | { | 584 | { |
592 | omap2_set_globals_tap(AM335X_CLASS, | 585 | omap2_set_globals_tap(AM335X_CLASS, |
593 | AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE)); | 586 | AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE)); |
594 | omap2_set_globals_control(AM33XX_L4_WK_IO_ADDRESS(AM33XX_CTRL_BASE), | 587 | omap2_control_base_init(); |
595 | NULL); | ||
596 | omap2_set_globals_prm(AM33XX_L4_WK_IO_ADDRESS(AM33XX_PRCM_BASE)); | ||
597 | omap2_set_globals_cm(AM33XX_L4_WK_IO_ADDRESS(AM33XX_PRCM_BASE), NULL); | ||
598 | omap3xxx_check_revision(); | 588 | omap3xxx_check_revision(); |
599 | am33xx_check_features(); | 589 | am33xx_check_features(); |
600 | am33xx_prm_init(); | 590 | omap2_prcm_base_init(); |
601 | am33xx_cm_init(); | ||
602 | am33xx_powerdomains_init(); | 591 | am33xx_powerdomains_init(); |
603 | am33xx_clockdomains_init(); | 592 | am33xx_clockdomains_init(); |
604 | am33xx_hwmod_init(); | 593 | am33xx_hwmod_init(); |
@@ -617,16 +606,10 @@ void __init am43xx_init_early(void) | |||
617 | { | 606 | { |
618 | omap2_set_globals_tap(AM335X_CLASS, | 607 | omap2_set_globals_tap(AM335X_CLASS, |
619 | AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE)); | 608 | AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE)); |
620 | omap2_set_globals_control(AM33XX_L4_WK_IO_ADDRESS(AM33XX_CTRL_BASE), | 609 | omap2_control_base_init(); |
621 | NULL); | ||
622 | omap2_set_globals_prm(AM33XX_L4_WK_IO_ADDRESS(AM43XX_PRCM_BASE)); | ||
623 | omap2_set_globals_cm(AM33XX_L4_WK_IO_ADDRESS(AM43XX_PRCM_BASE), NULL); | ||
624 | omap_prm_base_init(); | ||
625 | omap_cm_base_init(); | ||
626 | omap3xxx_check_revision(); | 610 | omap3xxx_check_revision(); |
627 | am33xx_check_features(); | 611 | am33xx_check_features(); |
628 | omap44xx_prm_init(); | 612 | omap2_prcm_base_init(); |
629 | omap4_cm_init(); | ||
630 | am43xx_powerdomains_init(); | 613 | am43xx_powerdomains_init(); |
631 | am43xx_clockdomains_init(); | 614 | am43xx_clockdomains_init(); |
632 | am43xx_hwmod_init(); | 615 | am43xx_hwmod_init(); |
@@ -646,19 +629,12 @@ void __init omap4430_init_early(void) | |||
646 | { | 629 | { |
647 | omap2_set_globals_tap(OMAP443X_CLASS, | 630 | omap2_set_globals_tap(OMAP443X_CLASS, |
648 | OMAP2_L4_IO_ADDRESS(OMAP443X_SCM_BASE)); | 631 | OMAP2_L4_IO_ADDRESS(OMAP443X_SCM_BASE)); |
649 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP443X_SCM_BASE), | ||
650 | OMAP2_L4_IO_ADDRESS(OMAP443X_CTRL_BASE)); | ||
651 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP4430_PRM_BASE)); | ||
652 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP4430_CM_BASE), | ||
653 | OMAP2_L4_IO_ADDRESS(OMAP4430_CM2_BASE)); | ||
654 | omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP4430_PRCM_MPU_BASE)); | 632 | omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP4430_PRCM_MPU_BASE)); |
655 | omap_prm_base_init(); | 633 | omap2_control_base_init(); |
656 | omap_cm_base_init(); | ||
657 | omap4xxx_check_revision(); | 634 | omap4xxx_check_revision(); |
658 | omap4xxx_check_features(); | 635 | omap4xxx_check_features(); |
659 | omap4_cm_init(); | 636 | omap2_prcm_base_init(); |
660 | omap4_pm_init_early(); | 637 | omap4_pm_init_early(); |
661 | omap44xx_prm_init(); | ||
662 | omap44xx_voltagedomains_init(); | 638 | omap44xx_voltagedomains_init(); |
663 | omap44xx_powerdomains_init(); | 639 | omap44xx_powerdomains_init(); |
664 | omap44xx_clockdomains_init(); | 640 | omap44xx_clockdomains_init(); |
@@ -681,18 +657,11 @@ void __init omap5_init_early(void) | |||
681 | { | 657 | { |
682 | omap2_set_globals_tap(OMAP54XX_CLASS, | 658 | omap2_set_globals_tap(OMAP54XX_CLASS, |
683 | OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE)); | 659 | OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE)); |
684 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE), | ||
685 | OMAP2_L4_IO_ADDRESS(OMAP54XX_CTRL_BASE)); | ||
686 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRM_BASE)); | ||
687 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(OMAP54XX_CM_CORE_AON_BASE), | ||
688 | OMAP2_L4_IO_ADDRESS(OMAP54XX_CM_CORE_BASE)); | ||
689 | omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE)); | 660 | omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE)); |
661 | omap2_control_base_init(); | ||
690 | omap4_pm_init_early(); | 662 | omap4_pm_init_early(); |
691 | omap_prm_base_init(); | 663 | omap2_prcm_base_init(); |
692 | omap_cm_base_init(); | ||
693 | omap44xx_prm_init(); | ||
694 | omap5xxx_check_revision(); | 664 | omap5xxx_check_revision(); |
695 | omap4_cm_init(); | ||
696 | omap54xx_voltagedomains_init(); | 665 | omap54xx_voltagedomains_init(); |
697 | omap54xx_powerdomains_init(); | 666 | omap54xx_powerdomains_init(); |
698 | omap54xx_clockdomains_init(); | 667 | omap54xx_clockdomains_init(); |
@@ -713,18 +682,11 @@ void __init omap5_init_late(void) | |||
713 | void __init dra7xx_init_early(void) | 682 | void __init dra7xx_init_early(void) |
714 | { | 683 | { |
715 | omap2_set_globals_tap(-1, OMAP2_L4_IO_ADDRESS(DRA7XX_TAP_BASE)); | 684 | omap2_set_globals_tap(-1, OMAP2_L4_IO_ADDRESS(DRA7XX_TAP_BASE)); |
716 | omap2_set_globals_control(OMAP2_L4_IO_ADDRESS(OMAP54XX_SCM_BASE), | ||
717 | OMAP2_L4_IO_ADDRESS(DRA7XX_CTRL_BASE)); | ||
718 | omap2_set_globals_prm(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRM_BASE)); | ||
719 | omap2_set_globals_cm(OMAP2_L4_IO_ADDRESS(DRA7XX_CM_CORE_AON_BASE), | ||
720 | OMAP2_L4_IO_ADDRESS(OMAP54XX_CM_CORE_BASE)); | ||
721 | omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE)); | 685 | omap2_set_globals_prcm_mpu(OMAP2_L4_IO_ADDRESS(OMAP54XX_PRCM_MPU_BASE)); |
686 | omap2_control_base_init(); | ||
722 | omap4_pm_init_early(); | 687 | omap4_pm_init_early(); |
723 | omap_prm_base_init(); | 688 | omap2_prcm_base_init(); |
724 | omap_cm_base_init(); | ||
725 | omap44xx_prm_init(); | ||
726 | dra7xxx_check_revision(); | 689 | dra7xxx_check_revision(); |
727 | omap4_cm_init(); | ||
728 | dra7xx_powerdomains_init(); | 690 | dra7xx_powerdomains_init(); |
729 | dra7xx_clockdomains_init(); | 691 | dra7xx_clockdomains_init(); |
730 | dra7xx_hwmod_init(); | 692 | dra7xx_hwmod_init(); |
@@ -762,7 +724,11 @@ int __init omap_clk_init(void) | |||
762 | ti_clk_init_features(); | 724 | ti_clk_init_features(); |
763 | 725 | ||
764 | if (of_have_populated_dt()) { | 726 | if (of_have_populated_dt()) { |
765 | ret = of_prcm_init(); | 727 | ret = omap_control_init(); |
728 | if (ret) | ||
729 | return ret; | ||
730 | |||
731 | ret = omap_prcm_init(); | ||
766 | if (ret) | 732 | if (ret) |
767 | return ret; | 733 | return ret; |
768 | 734 | ||
diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c index fe01c5a03aa2..b1aad7e1426c 100644 --- a/arch/arm/mach-omap2/pm24xx.c +++ b/arch/arm/mach-omap2/pm24xx.c | |||
@@ -75,9 +75,9 @@ static int omap2_enter_full_retention(void) | |||
75 | 75 | ||
76 | /* Clear old wake-up events */ | 76 | /* Clear old wake-up events */ |
77 | /* REVISIT: These write to reserved bits? */ | 77 | /* REVISIT: These write to reserved bits? */ |
78 | omap2xxx_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0); | 78 | omap_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0); |
79 | omap2xxx_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0); | 79 | omap_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0); |
80 | omap2xxx_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, ~0); | 80 | omap_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, ~0); |
81 | 81 | ||
82 | pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET); | 82 | pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET); |
83 | pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET); | 83 | pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET); |
@@ -104,18 +104,16 @@ no_sleep: | |||
104 | clk_enable(osc_ck); | 104 | clk_enable(osc_ck); |
105 | 105 | ||
106 | /* clear CORE wake-up events */ | 106 | /* clear CORE wake-up events */ |
107 | omap2xxx_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0); | 107 | omap_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0); |
108 | omap2xxx_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0); | 108 | omap_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0); |
109 | 109 | ||
110 | /* wakeup domain events - bit 1: GPT1, bit5 GPIO */ | 110 | /* wakeup domain events - bit 1: GPT1, bit5 GPIO */ |
111 | omap2xxx_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, 0x4 | 0x1); | 111 | omap_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, 0x4 | 0x1); |
112 | 112 | ||
113 | /* MPU domain wake events */ | 113 | /* MPU domain wake events */ |
114 | omap2xxx_prm_clear_mod_irqs(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET, | 114 | omap_prm_clear_mod_irqs(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET, 0x1); |
115 | 0x1); | ||
116 | 115 | ||
117 | omap2xxx_prm_clear_mod_irqs(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET, | 116 | omap_prm_clear_mod_irqs(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET, 0x20); |
118 | 0x20); | ||
119 | 117 | ||
120 | pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON); | 118 | pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON); |
121 | pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_ON); | 119 | pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_ON); |
@@ -143,9 +141,9 @@ static void omap2_enter_mpu_retention(void) | |||
143 | * it is in retention mode. */ | 141 | * it is in retention mode. */ |
144 | if (omap2_allow_mpu_retention()) { | 142 | if (omap2_allow_mpu_retention()) { |
145 | /* REVISIT: These write to reserved bits? */ | 143 | /* REVISIT: These write to reserved bits? */ |
146 | omap2xxx_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0); | 144 | omap_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0); |
147 | omap2xxx_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0); | 145 | omap_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0); |
148 | omap2xxx_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, ~0); | 146 | omap_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, ~0); |
149 | 147 | ||
150 | /* Try to enter MPU retention */ | 148 | /* Try to enter MPU retention */ |
151 | pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET); | 149 | pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET); |
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index 88721df6001d..87b98bf92366 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c | |||
@@ -137,9 +137,8 @@ static irqreturn_t _prcm_int_handle_io(int irq, void *unused) | |||
137 | { | 137 | { |
138 | int c; | 138 | int c; |
139 | 139 | ||
140 | c = omap3xxx_prm_clear_mod_irqs(WKUP_MOD, 1, | 140 | c = omap_prm_clear_mod_irqs(WKUP_MOD, 1, OMAP3430_ST_IO_MASK | |
141 | ~(OMAP3430_ST_IO_MASK | | 141 | OMAP3430_ST_IO_CHAIN_MASK); |
142 | OMAP3430_ST_IO_CHAIN_MASK)); | ||
143 | 142 | ||
144 | return c ? IRQ_HANDLED : IRQ_NONE; | 143 | return c ? IRQ_HANDLED : IRQ_NONE; |
145 | } | 144 | } |
@@ -153,14 +152,13 @@ static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused) | |||
153 | * these are handled in a separate handler to avoid acking | 152 | * these are handled in a separate handler to avoid acking |
154 | * IO events before parsing in mux code | 153 | * IO events before parsing in mux code |
155 | */ | 154 | */ |
156 | c = omap3xxx_prm_clear_mod_irqs(WKUP_MOD, 1, | 155 | c = omap_prm_clear_mod_irqs(WKUP_MOD, 1, ~(OMAP3430_ST_IO_MASK | |
157 | OMAP3430_ST_IO_MASK | | 156 | OMAP3430_ST_IO_CHAIN_MASK)); |
158 | OMAP3430_ST_IO_CHAIN_MASK); | 157 | c += omap_prm_clear_mod_irqs(CORE_MOD, 1, ~0); |
159 | c += omap3xxx_prm_clear_mod_irqs(CORE_MOD, 1, 0); | 158 | c += omap_prm_clear_mod_irqs(OMAP3430_PER_MOD, 1, ~0); |
160 | c += omap3xxx_prm_clear_mod_irqs(OMAP3430_PER_MOD, 1, 0); | ||
161 | if (omap_rev() > OMAP3430_REV_ES1_0) { | 159 | if (omap_rev() > OMAP3430_REV_ES1_0) { |
162 | c += omap3xxx_prm_clear_mod_irqs(CORE_MOD, 3, 0); | 160 | c += omap_prm_clear_mod_irqs(CORE_MOD, 3, ~0); |
163 | c += omap3xxx_prm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, 0); | 161 | c += omap_prm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, ~0); |
164 | } | 162 | } |
165 | 163 | ||
166 | return c ? IRQ_HANDLED : IRQ_NONE; | 164 | return c ? IRQ_HANDLED : IRQ_NONE; |
diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h index 6163d66102a3..6ae0b3a1781e 100644 --- a/arch/arm/mach-omap2/prcm-common.h +++ b/arch/arm/mach-omap2/prcm-common.h | |||
@@ -518,6 +518,26 @@ struct omap_prcm_irq_setup { | |||
518 | .priority = _priority \ | 518 | .priority = _priority \ |
519 | } | 519 | } |
520 | 520 | ||
521 | /** | ||
522 | * struct omap_prcm_init_data - PRCM driver init data | ||
523 | * @index: clock memory mapping index to be used | ||
524 | * @mem: IO mem pointer for this module | ||
525 | * @offset: module base address offset from the IO base | ||
526 | * @flags: PRCM module init flags | ||
527 | * @device_inst_offset: device instance offset within the module address space | ||
528 | * @init: low level PRCM init function for this module | ||
529 | * @np: device node for this PRCM module | ||
530 | */ | ||
531 | struct omap_prcm_init_data { | ||
532 | int index; | ||
533 | void __iomem *mem; | ||
534 | s16 offset; | ||
535 | u16 flags; | ||
536 | s32 device_inst_offset; | ||
537 | int (*init)(const struct omap_prcm_init_data *data); | ||
538 | struct device_node *np; | ||
539 | }; | ||
540 | |||
521 | extern void omap_prcm_irq_cleanup(void); | 541 | extern void omap_prcm_irq_cleanup(void); |
522 | extern int omap_prcm_register_chain_handler( | 542 | extern int omap_prcm_register_chain_handler( |
523 | struct omap_prcm_irq_setup *irq_setup); | 543 | struct omap_prcm_irq_setup *irq_setup); |
diff --git a/arch/arm/mach-omap2/prm.h b/arch/arm/mach-omap2/prm.h index b9061a6a2db8..233bc84fbc0e 100644 --- a/arch/arm/mach-omap2/prm.h +++ b/arch/arm/mach-omap2/prm.h | |||
@@ -19,8 +19,9 @@ | |||
19 | extern void __iomem *prm_base; | 19 | extern void __iomem *prm_base; |
20 | extern u16 prm_features; | 20 | extern u16 prm_features; |
21 | extern void omap2_set_globals_prm(void __iomem *prm); | 21 | extern void omap2_set_globals_prm(void __iomem *prm); |
22 | int of_prcm_init(void); | 22 | int omap_prcm_init(void); |
23 | void omap3_prcm_legacy_iomaps_init(void); | 23 | int omap2_prm_base_init(void); |
24 | int omap2_prcm_base_init(void); | ||
24 | # endif | 25 | # endif |
25 | 26 | ||
26 | /* | 27 | /* |
@@ -28,9 +29,11 @@ void omap3_prcm_legacy_iomaps_init(void); | |||
28 | * | 29 | * |
29 | * PRM_HAS_IO_WAKEUP: has IO wakeup capability | 30 | * PRM_HAS_IO_WAKEUP: has IO wakeup capability |
30 | * PRM_HAS_VOLTAGE: has voltage domains | 31 | * PRM_HAS_VOLTAGE: has voltage domains |
32 | * PRM_IRQ_DEFAULT: use default irq number for PRM irq | ||
31 | */ | 33 | */ |
32 | #define PRM_HAS_IO_WAKEUP (1 << 0) | 34 | #define PRM_HAS_IO_WAKEUP BIT(0) |
33 | #define PRM_HAS_VOLTAGE (1 << 1) | 35 | #define PRM_HAS_VOLTAGE BIT(1) |
36 | #define PRM_IRQ_DEFAULT BIT(2) | ||
34 | 37 | ||
35 | /* | 38 | /* |
36 | * MAX_MODULE_SOFTRESET_WAIT: Maximum microseconds to wait for OMAP | 39 | * MAX_MODULE_SOFTRESET_WAIT: Maximum microseconds to wait for OMAP |
@@ -146,6 +149,9 @@ struct prm_ll_data { | |||
146 | int (*is_hardreset_asserted)(u8 shift, u8 part, s16 prm_mod, | 149 | int (*is_hardreset_asserted)(u8 shift, u8 part, s16 prm_mod, |
147 | u16 offset); | 150 | u16 offset); |
148 | void (*reset_system)(void); | 151 | void (*reset_system)(void); |
152 | int (*clear_mod_irqs)(s16 module, u8 regs, u32 wkst_mask); | ||
153 | u32 (*vp_check_txdone)(u8 vp_id); | ||
154 | void (*vp_clear_txdone)(u8 vp_id); | ||
149 | }; | 155 | }; |
150 | 156 | ||
151 | extern int prm_register(struct prm_ll_data *pld); | 157 | extern int prm_register(struct prm_ll_data *pld); |
@@ -161,6 +167,19 @@ extern void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx); | |||
161 | void omap_prm_reset_system(void); | 167 | void omap_prm_reset_system(void); |
162 | 168 | ||
163 | void omap_prm_reconfigure_io_chain(void); | 169 | void omap_prm_reconfigure_io_chain(void); |
170 | int omap_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask); | ||
171 | |||
172 | /* | ||
173 | * Voltage Processor (VP) identifiers | ||
174 | */ | ||
175 | #define OMAP3_VP_VDD_MPU_ID 0 | ||
176 | #define OMAP3_VP_VDD_CORE_ID 1 | ||
177 | #define OMAP4_VP_VDD_CORE_ID 0 | ||
178 | #define OMAP4_VP_VDD_IVA_ID 1 | ||
179 | #define OMAP4_VP_VDD_MPU_ID 2 | ||
180 | |||
181 | u32 omap_prm_vp_check_txdone(u8 vp_id); | ||
182 | void omap_prm_vp_clear_txdone(u8 vp_id); | ||
164 | 183 | ||
165 | #endif | 184 | #endif |
166 | 185 | ||
diff --git a/arch/arm/mach-omap2/prm2xxx.c b/arch/arm/mach-omap2/prm2xxx.c index af0f15278fc2..752018ce129c 100644 --- a/arch/arm/mach-omap2/prm2xxx.c +++ b/arch/arm/mach-omap2/prm2xxx.c | |||
@@ -123,13 +123,14 @@ static void omap2xxx_prm_dpll_reset(void) | |||
123 | * Clears wakeup status bits for a given module, so that the device can | 123 | * Clears wakeup status bits for a given module, so that the device can |
124 | * re-enter idle. | 124 | * re-enter idle. |
125 | */ | 125 | */ |
126 | void omap2xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask) | 126 | static int omap2xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask) |
127 | { | 127 | { |
128 | u32 wkst; | 128 | u32 wkst; |
129 | 129 | ||
130 | wkst = omap2_prm_read_mod_reg(module, regs); | 130 | wkst = omap2_prm_read_mod_reg(module, regs); |
131 | wkst &= wkst_mask; | 131 | wkst &= wkst_mask; |
132 | omap2_prm_write_mod_reg(wkst, module, regs); | 132 | omap2_prm_write_mod_reg(wkst, module, regs); |
133 | return 0; | ||
133 | } | 134 | } |
134 | 135 | ||
135 | int omap2xxx_clkdm_sleep(struct clockdomain *clkdm) | 136 | int omap2xxx_clkdm_sleep(struct clockdomain *clkdm) |
@@ -216,9 +217,10 @@ static struct prm_ll_data omap2xxx_prm_ll_data = { | |||
216 | .deassert_hardreset = &omap2_prm_deassert_hardreset, | 217 | .deassert_hardreset = &omap2_prm_deassert_hardreset, |
217 | .is_hardreset_asserted = &omap2_prm_is_hardreset_asserted, | 218 | .is_hardreset_asserted = &omap2_prm_is_hardreset_asserted, |
218 | .reset_system = &omap2xxx_prm_dpll_reset, | 219 | .reset_system = &omap2xxx_prm_dpll_reset, |
220 | .clear_mod_irqs = &omap2xxx_prm_clear_mod_irqs, | ||
219 | }; | 221 | }; |
220 | 222 | ||
221 | int __init omap2xxx_prm_init(void) | 223 | int __init omap2xxx_prm_init(const struct omap_prcm_init_data *data) |
222 | { | 224 | { |
223 | return prm_register(&omap2xxx_prm_ll_data); | 225 | return prm_register(&omap2xxx_prm_ll_data); |
224 | } | 226 | } |
diff --git a/arch/arm/mach-omap2/prm2xxx.h b/arch/arm/mach-omap2/prm2xxx.h index 1d51643062f7..9008a9e55a1a 100644 --- a/arch/arm/mach-omap2/prm2xxx.h +++ b/arch/arm/mach-omap2/prm2xxx.h | |||
@@ -124,9 +124,7 @@ | |||
124 | extern int omap2xxx_clkdm_sleep(struct clockdomain *clkdm); | 124 | extern int omap2xxx_clkdm_sleep(struct clockdomain *clkdm); |
125 | extern int omap2xxx_clkdm_wakeup(struct clockdomain *clkdm); | 125 | extern int omap2xxx_clkdm_wakeup(struct clockdomain *clkdm); |
126 | 126 | ||
127 | void omap2xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask); | 127 | int __init omap2xxx_prm_init(const struct omap_prcm_init_data *data); |
128 | |||
129 | extern int __init omap2xxx_prm_init(void); | ||
130 | 128 | ||
131 | #endif | 129 | #endif |
132 | 130 | ||
diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c index 02f628601b09..dcb5001d77da 100644 --- a/arch/arm/mach-omap2/prm33xx.c +++ b/arch/arm/mach-omap2/prm33xx.c | |||
@@ -378,7 +378,7 @@ static struct prm_ll_data am33xx_prm_ll_data = { | |||
378 | .reset_system = am33xx_prm_global_warm_sw_reset, | 378 | .reset_system = am33xx_prm_global_warm_sw_reset, |
379 | }; | 379 | }; |
380 | 380 | ||
381 | int __init am33xx_prm_init(void) | 381 | int __init am33xx_prm_init(const struct omap_prcm_init_data *data) |
382 | { | 382 | { |
383 | return prm_register(&am33xx_prm_ll_data); | 383 | return prm_register(&am33xx_prm_ll_data); |
384 | } | 384 | } |
diff --git a/arch/arm/mach-omap2/prm33xx.h b/arch/arm/mach-omap2/prm33xx.h index 98ac41f271da..2bc4ec52ba78 100644 --- a/arch/arm/mach-omap2/prm33xx.h +++ b/arch/arm/mach-omap2/prm33xx.h | |||
@@ -118,7 +118,7 @@ | |||
118 | #define AM33XX_PM_CEFUSE_PWRSTST AM33XX_PRM_REGADDR(AM33XX_PRM_CEFUSE_MOD, 0x0004) | 118 | #define AM33XX_PM_CEFUSE_PWRSTST AM33XX_PRM_REGADDR(AM33XX_PRM_CEFUSE_MOD, 0x0004) |
119 | 119 | ||
120 | #ifndef __ASSEMBLER__ | 120 | #ifndef __ASSEMBLER__ |
121 | int am33xx_prm_init(void); | 121 | int am33xx_prm_init(const struct omap_prcm_init_data *data); |
122 | 122 | ||
123 | #endif /* ASSEMBLER */ | 123 | #endif /* ASSEMBLER */ |
124 | #endif | 124 | #endif |
diff --git a/arch/arm/mach-omap2/prm3xxx.c b/arch/arm/mach-omap2/prm3xxx.c index 5713bbdf83bc..62680aad2126 100644 --- a/arch/arm/mach-omap2/prm3xxx.c +++ b/arch/arm/mach-omap2/prm3xxx.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include "prm-regbits-34xx.h" | 29 | #include "prm-regbits-34xx.h" |
30 | #include "cm3xxx.h" | 30 | #include "cm3xxx.h" |
31 | #include "cm-regbits-34xx.h" | 31 | #include "cm-regbits-34xx.h" |
32 | #include "clock.h" | ||
32 | 33 | ||
33 | static void omap3xxx_prm_read_pending_irqs(unsigned long *events); | 34 | static void omap3xxx_prm_read_pending_irqs(unsigned long *events); |
34 | static void omap3xxx_prm_ocp_barrier(void); | 35 | static void omap3xxx_prm_ocp_barrier(void); |
@@ -96,7 +97,7 @@ static struct omap3_vp omap3_vp[] = { | |||
96 | 97 | ||
97 | #define MAX_VP_ID ARRAY_SIZE(omap3_vp); | 98 | #define MAX_VP_ID ARRAY_SIZE(omap3_vp); |
98 | 99 | ||
99 | u32 omap3_prm_vp_check_txdone(u8 vp_id) | 100 | static u32 omap3_prm_vp_check_txdone(u8 vp_id) |
100 | { | 101 | { |
101 | struct omap3_vp *vp = &omap3_vp[vp_id]; | 102 | struct omap3_vp *vp = &omap3_vp[vp_id]; |
102 | u32 irqstatus; | 103 | u32 irqstatus; |
@@ -106,7 +107,7 @@ u32 omap3_prm_vp_check_txdone(u8 vp_id) | |||
106 | return irqstatus & vp->tranxdone_status; | 107 | return irqstatus & vp->tranxdone_status; |
107 | } | 108 | } |
108 | 109 | ||
109 | void omap3_prm_vp_clear_txdone(u8 vp_id) | 110 | static void omap3_prm_vp_clear_txdone(u8 vp_id) |
110 | { | 111 | { |
111 | struct omap3_vp *vp = &omap3_vp[vp_id]; | 112 | struct omap3_vp *vp = &omap3_vp[vp_id]; |
112 | 113 | ||
@@ -217,7 +218,7 @@ static void omap3xxx_prm_restore_irqen(u32 *saved_mask) | |||
217 | * omap3xxx_prm_clear_mod_irqs - clear wake-up events from PRCM interrupt | 218 | * omap3xxx_prm_clear_mod_irqs - clear wake-up events from PRCM interrupt |
218 | * @module: PRM module to clear wakeups from | 219 | * @module: PRM module to clear wakeups from |
219 | * @regs: register set to clear, 1 or 3 | 220 | * @regs: register set to clear, 1 or 3 |
220 | * @ignore_bits: wakeup status bits to ignore | 221 | * @wkst_mask: wkst bits to clear |
221 | * | 222 | * |
222 | * The purpose of this function is to clear any wake-up events latched | 223 | * The purpose of this function is to clear any wake-up events latched |
223 | * in the PRCM PM_WKST_x registers. It is possible that a wake-up event | 224 | * in the PRCM PM_WKST_x registers. It is possible that a wake-up event |
@@ -226,7 +227,7 @@ static void omap3xxx_prm_restore_irqen(u32 *saved_mask) | |||
226 | * that any peripheral wake-up events occurring while attempting to | 227 | * that any peripheral wake-up events occurring while attempting to |
227 | * clear the PM_WKST_x are detected and cleared. | 228 | * clear the PM_WKST_x are detected and cleared. |
228 | */ | 229 | */ |
229 | int omap3xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits) | 230 | static int omap3xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask) |
230 | { | 231 | { |
231 | u32 wkst, fclk, iclk, clken; | 232 | u32 wkst, fclk, iclk, clken; |
232 | u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1; | 233 | u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1; |
@@ -238,7 +239,7 @@ int omap3xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits) | |||
238 | 239 | ||
239 | wkst = omap2_prm_read_mod_reg(module, wkst_off); | 240 | wkst = omap2_prm_read_mod_reg(module, wkst_off); |
240 | wkst &= omap2_prm_read_mod_reg(module, grpsel_off); | 241 | wkst &= omap2_prm_read_mod_reg(module, grpsel_off); |
241 | wkst &= ~ignore_bits; | 242 | wkst &= wkst_mask; |
242 | if (wkst) { | 243 | if (wkst) { |
243 | iclk = omap2_cm_read_mod_reg(module, iclk_off); | 244 | iclk = omap2_cm_read_mod_reg(module, iclk_off); |
244 | fclk = omap2_cm_read_mod_reg(module, fclk_off); | 245 | fclk = omap2_cm_read_mod_reg(module, fclk_off); |
@@ -254,7 +255,7 @@ int omap3xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits) | |||
254 | omap2_cm_set_mod_reg_bits(clken, module, fclk_off); | 255 | omap2_cm_set_mod_reg_bits(clken, module, fclk_off); |
255 | omap2_prm_write_mod_reg(wkst, module, wkst_off); | 256 | omap2_prm_write_mod_reg(wkst, module, wkst_off); |
256 | wkst = omap2_prm_read_mod_reg(module, wkst_off); | 257 | wkst = omap2_prm_read_mod_reg(module, wkst_off); |
257 | wkst &= ~ignore_bits; | 258 | wkst &= wkst_mask; |
258 | c++; | 259 | c++; |
259 | } | 260 | } |
260 | omap2_cm_write_mod_reg(iclk, module, iclk_off); | 261 | omap2_cm_write_mod_reg(iclk, module, iclk_off); |
@@ -664,10 +665,15 @@ static struct prm_ll_data omap3xxx_prm_ll_data = { | |||
664 | .deassert_hardreset = &omap2_prm_deassert_hardreset, | 665 | .deassert_hardreset = &omap2_prm_deassert_hardreset, |
665 | .is_hardreset_asserted = &omap2_prm_is_hardreset_asserted, | 666 | .is_hardreset_asserted = &omap2_prm_is_hardreset_asserted, |
666 | .reset_system = &omap3xxx_prm_dpll3_reset, | 667 | .reset_system = &omap3xxx_prm_dpll3_reset, |
668 | .clear_mod_irqs = &omap3xxx_prm_clear_mod_irqs, | ||
669 | .vp_check_txdone = &omap3_prm_vp_check_txdone, | ||
670 | .vp_clear_txdone = &omap3_prm_vp_clear_txdone, | ||
667 | }; | 671 | }; |
668 | 672 | ||
669 | int __init omap3xxx_prm_init(void) | 673 | int __init omap3xxx_prm_init(const struct omap_prcm_init_data *data) |
670 | { | 674 | { |
675 | omap2_clk_legacy_provider_init(TI_CLKM_PRM, | ||
676 | prm_base + OMAP3430_IVA2_MOD); | ||
671 | if (omap3_has_io_wakeup()) | 677 | if (omap3_has_io_wakeup()) |
672 | prm_features |= PRM_HAS_IO_WAKEUP; | 678 | prm_features |= PRM_HAS_IO_WAKEUP; |
673 | 679 | ||
diff --git a/arch/arm/mach-omap2/prm3xxx.h b/arch/arm/mach-omap2/prm3xxx.h index ed8a3d8b739a..5f095eec339c 100644 --- a/arch/arm/mach-omap2/prm3xxx.h +++ b/arch/arm/mach-omap2/prm3xxx.h | |||
@@ -132,10 +132,6 @@ | |||
132 | 132 | ||
133 | #ifndef __ASSEMBLER__ | 133 | #ifndef __ASSEMBLER__ |
134 | 134 | ||
135 | /* OMAP3-specific VP functions */ | ||
136 | u32 omap3_prm_vp_check_txdone(u8 vp_id); | ||
137 | void omap3_prm_vp_clear_txdone(u8 vp_id); | ||
138 | |||
139 | /* | 135 | /* |
140 | * OMAP3 access functions for voltage controller (VC) and | 136 | * OMAP3 access functions for voltage controller (VC) and |
141 | * voltage proccessor (VP) in the PRM. | 137 | * voltage proccessor (VP) in the PRM. |
@@ -144,8 +140,7 @@ extern u32 omap3_prm_vcvp_read(u8 offset); | |||
144 | extern void omap3_prm_vcvp_write(u32 val, u8 offset); | 140 | extern void omap3_prm_vcvp_write(u32 val, u8 offset); |
145 | extern u32 omap3_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset); | 141 | extern u32 omap3_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset); |
146 | 142 | ||
147 | extern int __init omap3xxx_prm_init(void); | 143 | int __init omap3xxx_prm_init(const struct omap_prcm_init_data *data); |
148 | int omap3xxx_prm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits); | ||
149 | void omap3xxx_prm_iva_idle(void); | 144 | void omap3xxx_prm_iva_idle(void); |
150 | void omap3_prm_reset_modem(void); | 145 | void omap3_prm_reset_modem(void); |
151 | int omap3xxx_prm_clear_global_cold_reset(void); | 146 | int omap3xxx_prm_clear_global_cold_reset(void); |
diff --git a/arch/arm/mach-omap2/prm44xx.c b/arch/arm/mach-omap2/prm44xx.c index a08a617a6c11..c35ad0bedf81 100644 --- a/arch/arm/mach-omap2/prm44xx.c +++ b/arch/arm/mach-omap2/prm44xx.c | |||
@@ -138,7 +138,7 @@ static struct omap4_vp omap4_vp[] = { | |||
138 | }, | 138 | }, |
139 | }; | 139 | }; |
140 | 140 | ||
141 | u32 omap4_prm_vp_check_txdone(u8 vp_id) | 141 | static u32 omap4_prm_vp_check_txdone(u8 vp_id) |
142 | { | 142 | { |
143 | struct omap4_vp *vp = &omap4_vp[vp_id]; | 143 | struct omap4_vp *vp = &omap4_vp[vp_id]; |
144 | u32 irqstatus; | 144 | u32 irqstatus; |
@@ -149,7 +149,7 @@ u32 omap4_prm_vp_check_txdone(u8 vp_id) | |||
149 | return irqstatus & vp->tranxdone_status; | 149 | return irqstatus & vp->tranxdone_status; |
150 | } | 150 | } |
151 | 151 | ||
152 | void omap4_prm_vp_clear_txdone(u8 vp_id) | 152 | static void omap4_prm_vp_clear_txdone(u8 vp_id) |
153 | { | 153 | { |
154 | struct omap4_vp *vp = &omap4_vp[vp_id]; | 154 | struct omap4_vp *vp = &omap4_vp[vp_id]; |
155 | 155 | ||
@@ -699,29 +699,31 @@ static struct prm_ll_data omap44xx_prm_ll_data = { | |||
699 | .deassert_hardreset = omap4_prminst_deassert_hardreset, | 699 | .deassert_hardreset = omap4_prminst_deassert_hardreset, |
700 | .is_hardreset_asserted = omap4_prminst_is_hardreset_asserted, | 700 | .is_hardreset_asserted = omap4_prminst_is_hardreset_asserted, |
701 | .reset_system = omap4_prminst_global_warm_sw_reset, | 701 | .reset_system = omap4_prminst_global_warm_sw_reset, |
702 | .vp_check_txdone = omap4_prm_vp_check_txdone, | ||
703 | .vp_clear_txdone = omap4_prm_vp_clear_txdone, | ||
702 | }; | 704 | }; |
703 | 705 | ||
704 | int __init omap44xx_prm_init(void) | 706 | static const struct omap_prcm_init_data *prm_init_data; |
707 | |||
708 | int __init omap44xx_prm_init(const struct omap_prcm_init_data *data) | ||
705 | { | 709 | { |
706 | if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) | 710 | omap_prm_base_init(); |
711 | |||
712 | prm_init_data = data; | ||
713 | |||
714 | if (data->flags & PRM_HAS_IO_WAKEUP) | ||
707 | prm_features |= PRM_HAS_IO_WAKEUP; | 715 | prm_features |= PRM_HAS_IO_WAKEUP; |
708 | 716 | ||
709 | if (!soc_is_dra7xx()) | 717 | if (data->flags & PRM_HAS_VOLTAGE) |
710 | prm_features |= PRM_HAS_VOLTAGE; | 718 | prm_features |= PRM_HAS_VOLTAGE; |
711 | 719 | ||
720 | omap4_prminst_set_prm_dev_inst(data->device_inst_offset); | ||
721 | |||
712 | return prm_register(&omap44xx_prm_ll_data); | 722 | return prm_register(&omap44xx_prm_ll_data); |
713 | } | 723 | } |
714 | 724 | ||
715 | static const struct of_device_id omap_prm_dt_match_table[] = { | ||
716 | { .compatible = "ti,omap4-prm" }, | ||
717 | { .compatible = "ti,omap5-prm" }, | ||
718 | { .compatible = "ti,dra7-prm" }, | ||
719 | { } | ||
720 | }; | ||
721 | |||
722 | static int omap44xx_prm_late_init(void) | 725 | static int omap44xx_prm_late_init(void) |
723 | { | 726 | { |
724 | struct device_node *np; | ||
725 | int irq_num; | 727 | int irq_num; |
726 | 728 | ||
727 | if (!(prm_features & PRM_HAS_IO_WAKEUP)) | 729 | if (!(prm_features & PRM_HAS_IO_WAKEUP)) |
@@ -731,31 +733,23 @@ static int omap44xx_prm_late_init(void) | |||
731 | if (!of_have_populated_dt()) | 733 | if (!of_have_populated_dt()) |
732 | return 0; | 734 | return 0; |
733 | 735 | ||
734 | np = of_find_matching_node(NULL, omap_prm_dt_match_table); | 736 | irq_num = of_irq_get(prm_init_data->np, 0); |
735 | 737 | /* | |
736 | if (!np) { | 738 | * Already have OMAP4 IRQ num. For all other platforms, we need |
737 | /* Default loaded up with OMAP4 values */ | 739 | * IRQ numbers from DT |
738 | if (!cpu_is_omap44xx()) | 740 | */ |
739 | return 0; | 741 | if (irq_num < 0 && !(prm_init_data->flags & PRM_IRQ_DEFAULT)) { |
740 | } else { | 742 | if (irq_num == -EPROBE_DEFER) |
741 | irq_num = of_irq_get(np, 0); | 743 | return irq_num; |
742 | /* | 744 | |
743 | * Already have OMAP4 IRQ num. For all other platforms, we need | 745 | /* Have nothing to do */ |
744 | * IRQ numbers from DT | 746 | return 0; |
745 | */ | 747 | } |
746 | if (irq_num < 0 && !cpu_is_omap44xx()) { | 748 | |
747 | if (irq_num == -EPROBE_DEFER) | 749 | /* Once OMAP4 DT is filled as well */ |
748 | return irq_num; | 750 | if (irq_num >= 0) { |
749 | 751 | omap4_prcm_irq_setup.irq = irq_num; | |
750 | /* Have nothing to do */ | 752 | omap4_prcm_irq_setup.xlate_irq = NULL; |
751 | return 0; | ||
752 | } | ||
753 | |||
754 | /* Once OMAP4 DT is filled as well */ | ||
755 | if (irq_num >= 0) { | ||
756 | omap4_prcm_irq_setup.irq = irq_num; | ||
757 | omap4_prcm_irq_setup.xlate_irq = NULL; | ||
758 | } | ||
759 | } | 753 | } |
760 | 754 | ||
761 | omap44xx_prm_enable_io_wakeup(); | 755 | omap44xx_prm_enable_io_wakeup(); |
diff --git a/arch/arm/mach-omap2/prm44xx.h b/arch/arm/mach-omap2/prm44xx.h index 7db2422faa16..efd6035d0871 100644 --- a/arch/arm/mach-omap2/prm44xx.h +++ b/arch/arm/mach-omap2/prm44xx.h | |||
@@ -26,7 +26,6 @@ | |||
26 | #define __ARCH_ARM_MACH_OMAP2_PRM44XX_H | 26 | #define __ARCH_ARM_MACH_OMAP2_PRM44XX_H |
27 | 27 | ||
28 | #include "prm44xx_54xx.h" | 28 | #include "prm44xx_54xx.h" |
29 | #include "prcm-common.h" | ||
30 | #include "prm.h" | 29 | #include "prm.h" |
31 | 30 | ||
32 | #define OMAP4430_PRM_BASE 0x4a306000 | 31 | #define OMAP4430_PRM_BASE 0x4a306000 |
diff --git a/arch/arm/mach-omap2/prm44xx_54xx.h b/arch/arm/mach-omap2/prm44xx_54xx.h index 714329565b90..3f139ebc8398 100644 --- a/arch/arm/mach-omap2/prm44xx_54xx.h +++ b/arch/arm/mach-omap2/prm44xx_54xx.h | |||
@@ -23,13 +23,11 @@ | |||
23 | #ifndef __ARCH_ARM_MACH_OMAP2_PRM44XX_54XX_H | 23 | #ifndef __ARCH_ARM_MACH_OMAP2_PRM44XX_54XX_H |
24 | #define __ARCH_ARM_MACH_OMAP2_PRM44XX_54XX_H | 24 | #define __ARCH_ARM_MACH_OMAP2_PRM44XX_54XX_H |
25 | 25 | ||
26 | #include "prcm-common.h" | ||
27 | |||
26 | /* Function prototypes */ | 28 | /* Function prototypes */ |
27 | #ifndef __ASSEMBLER__ | 29 | #ifndef __ASSEMBLER__ |
28 | 30 | ||
29 | /* OMAP4/OMAP5-specific VP functions */ | ||
30 | u32 omap4_prm_vp_check_txdone(u8 vp_id); | ||
31 | void omap4_prm_vp_clear_txdone(u8 vp_id); | ||
32 | |||
33 | /* | 31 | /* |
34 | * OMAP4/OMAP5 access functions for voltage controller (VC) and | 32 | * OMAP4/OMAP5 access functions for voltage controller (VC) and |
35 | * voltage proccessor (VP) in the PRM. | 33 | * voltage proccessor (VP) in the PRM. |
@@ -38,7 +36,7 @@ extern u32 omap4_prm_vcvp_read(u8 offset); | |||
38 | extern void omap4_prm_vcvp_write(u32 val, u8 offset); | 36 | extern void omap4_prm_vcvp_write(u32 val, u8 offset); |
39 | extern u32 omap4_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset); | 37 | extern u32 omap4_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset); |
40 | 38 | ||
41 | extern int __init omap44xx_prm_init(void); | 39 | int __init omap44xx_prm_init(const struct omap_prcm_init_data *data); |
42 | 40 | ||
43 | #endif | 41 | #endif |
44 | 42 | ||
diff --git a/arch/arm/mach-omap2/prm54xx.h b/arch/arm/mach-omap2/prm54xx.h index e4411010309c..1eb22ff087dc 100644 --- a/arch/arm/mach-omap2/prm54xx.h +++ b/arch/arm/mach-omap2/prm54xx.h | |||
@@ -22,7 +22,6 @@ | |||
22 | #define __ARCH_ARM_MACH_OMAP2_PRM54XX_H | 22 | #define __ARCH_ARM_MACH_OMAP2_PRM54XX_H |
23 | 23 | ||
24 | #include "prm44xx_54xx.h" | 24 | #include "prm44xx_54xx.h" |
25 | #include "prcm-common.h" | ||
26 | #include "prm.h" | 25 | #include "prm.h" |
27 | 26 | ||
28 | #define OMAP54XX_PRM_BASE 0x4ae06000 | 27 | #define OMAP54XX_PRM_BASE 0x4ae06000 |
diff --git a/arch/arm/mach-omap2/prm7xx.h b/arch/arm/mach-omap2/prm7xx.h index 4bb50fbf29be..cc1e6a2b97f6 100644 --- a/arch/arm/mach-omap2/prm7xx.h +++ b/arch/arm/mach-omap2/prm7xx.h | |||
@@ -22,8 +22,8 @@ | |||
22 | #ifndef __ARCH_ARM_MACH_OMAP2_PRM7XX_H | 22 | #ifndef __ARCH_ARM_MACH_OMAP2_PRM7XX_H |
23 | #define __ARCH_ARM_MACH_OMAP2_PRM7XX_H | 23 | #define __ARCH_ARM_MACH_OMAP2_PRM7XX_H |
24 | 24 | ||
25 | #include "prm44xx_54xx.h" | ||
26 | #include "prcm-common.h" | 25 | #include "prcm-common.h" |
26 | #include "prm44xx_54xx.h" | ||
27 | #include "prm.h" | 27 | #include "prm.h" |
28 | 28 | ||
29 | #define DRA7XX_PRM_BASE 0x4ae06000 | 29 | #define DRA7XX_PRM_BASE 0x4ae06000 |
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index bfaa7ba595cc..7add7994dbfc 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
@@ -32,7 +32,11 @@ | |||
32 | #include "prm2xxx_3xxx.h" | 32 | #include "prm2xxx_3xxx.h" |
33 | #include "prm2xxx.h" | 33 | #include "prm2xxx.h" |
34 | #include "prm3xxx.h" | 34 | #include "prm3xxx.h" |
35 | #include "prm33xx.h" | ||
35 | #include "prm44xx.h" | 36 | #include "prm44xx.h" |
37 | #include "prm54xx.h" | ||
38 | #include "prm7xx.h" | ||
39 | #include "prcm43xx.h" | ||
36 | #include "common.h" | 40 | #include "common.h" |
37 | #include "clock.h" | 41 | #include "clock.h" |
38 | #include "cm.h" | 42 | #include "cm.h" |
@@ -534,6 +538,61 @@ void omap_prm_reset_system(void) | |||
534 | } | 538 | } |
535 | 539 | ||
536 | /** | 540 | /** |
541 | * omap_prm_clear_mod_irqs - clear wake-up events from PRCM interrupt | ||
542 | * @module: PRM module to clear wakeups from | ||
543 | * @regs: register to clear | ||
544 | * @wkst_mask: wkst bits to clear | ||
545 | * | ||
546 | * Clears any wakeup events for the module and register set defined. | ||
547 | * Uses SoC specific implementation to do the actual wakeup status | ||
548 | * clearing. | ||
549 | */ | ||
550 | int omap_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask) | ||
551 | { | ||
552 | if (!prm_ll_data->clear_mod_irqs) { | ||
553 | WARN_ONCE(1, "prm: %s: no mapping function defined\n", | ||
554 | __func__); | ||
555 | return -EINVAL; | ||
556 | } | ||
557 | |||
558 | return prm_ll_data->clear_mod_irqs(module, regs, wkst_mask); | ||
559 | } | ||
560 | |||
561 | /** | ||
562 | * omap_prm_vp_check_txdone - check voltage processor TX done status | ||
563 | * | ||
564 | * Checks if voltage processor transmission has been completed. | ||
565 | * Returns non-zero if a transmission has completed, 0 otherwise. | ||
566 | */ | ||
567 | u32 omap_prm_vp_check_txdone(u8 vp_id) | ||
568 | { | ||
569 | if (!prm_ll_data->vp_check_txdone) { | ||
570 | WARN_ONCE(1, "prm: %s: no mapping function defined\n", | ||
571 | __func__); | ||
572 | return 0; | ||
573 | } | ||
574 | |||
575 | return prm_ll_data->vp_check_txdone(vp_id); | ||
576 | } | ||
577 | |||
578 | /** | ||
579 | * omap_prm_vp_clear_txdone - clears voltage processor TX done status | ||
580 | * | ||
581 | * Clears the status bit for completed voltage processor transmission | ||
582 | * returned by prm_vp_check_txdone. | ||
583 | */ | ||
584 | void omap_prm_vp_clear_txdone(u8 vp_id) | ||
585 | { | ||
586 | if (!prm_ll_data->vp_clear_txdone) { | ||
587 | WARN_ONCE(1, "prm: %s: no mapping function defined\n", | ||
588 | __func__); | ||
589 | return; | ||
590 | } | ||
591 | |||
592 | prm_ll_data->vp_clear_txdone(vp_id); | ||
593 | } | ||
594 | |||
595 | /** | ||
537 | * prm_register - register per-SoC low-level data with the PRM | 596 | * prm_register - register per-SoC low-level data with the PRM |
538 | * @pld: low-level per-SoC OMAP PRM data & function pointers to register | 597 | * @pld: low-level per-SoC OMAP PRM data & function pointers to register |
539 | * | 598 | * |
@@ -578,78 +637,175 @@ int prm_unregister(struct prm_ll_data *pld) | |||
578 | return 0; | 637 | return 0; |
579 | } | 638 | } |
580 | 639 | ||
581 | static const struct of_device_id omap_prcm_dt_match_table[] = { | 640 | #ifdef CONFIG_ARCH_OMAP2 |
582 | { .compatible = "ti,am3-prcm" }, | 641 | static struct omap_prcm_init_data omap2_prm_data __initdata = { |
583 | { .compatible = "ti,am3-scrm" }, | 642 | .index = TI_CLKM_PRM, |
584 | { .compatible = "ti,am4-prcm" }, | 643 | .init = omap2xxx_prm_init, |
585 | { .compatible = "ti,am4-scrm" }, | ||
586 | { .compatible = "ti,dm814-prcm" }, | ||
587 | { .compatible = "ti,dm814-scrm" }, | ||
588 | { .compatible = "ti,dm816-prcm" }, | ||
589 | { .compatible = "ti,dm816-scrm" }, | ||
590 | { .compatible = "ti,omap2-prcm" }, | ||
591 | { .compatible = "ti,omap2-scrm" }, | ||
592 | { .compatible = "ti,omap3-prm" }, | ||
593 | { .compatible = "ti,omap3-cm" }, | ||
594 | { .compatible = "ti,omap3-scrm" }, | ||
595 | { .compatible = "ti,omap4-cm1" }, | ||
596 | { .compatible = "ti,omap4-prm" }, | ||
597 | { .compatible = "ti,omap4-cm2" }, | ||
598 | { .compatible = "ti,omap4-scrm" }, | ||
599 | { .compatible = "ti,omap5-prm" }, | ||
600 | { .compatible = "ti,omap5-cm-core-aon" }, | ||
601 | { .compatible = "ti,omap5-scrm" }, | ||
602 | { .compatible = "ti,omap5-cm-core" }, | ||
603 | { .compatible = "ti,dra7-prm" }, | ||
604 | { .compatible = "ti,dra7-cm-core-aon" }, | ||
605 | { .compatible = "ti,dra7-cm-core" }, | ||
606 | { } | ||
607 | }; | 644 | }; |
645 | #endif | ||
646 | |||
647 | #ifdef CONFIG_ARCH_OMAP3 | ||
648 | static struct omap_prcm_init_data omap3_prm_data __initdata = { | ||
649 | .index = TI_CLKM_PRM, | ||
650 | .init = omap3xxx_prm_init, | ||
608 | 651 | ||
609 | static struct clk_hw_omap memmap_dummy_ck = { | 652 | /* |
610 | .flags = MEMMAP_ADDRESSING, | 653 | * IVA2 offset is a negative value, must offset the prm_base |
654 | * address by this to get it to positive | ||
655 | */ | ||
656 | .offset = -OMAP3430_IVA2_MOD, | ||
611 | }; | 657 | }; |
658 | #endif | ||
612 | 659 | ||
613 | static u32 prm_clk_readl(void __iomem *reg) | 660 | #if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_TI81XX) |
614 | { | 661 | static struct omap_prcm_init_data am3_prm_data __initdata = { |
615 | return omap2_clk_readl(&memmap_dummy_ck, reg); | 662 | .index = TI_CLKM_PRM, |
616 | } | 663 | .init = am33xx_prm_init, |
664 | }; | ||
665 | #endif | ||
666 | |||
667 | #ifdef CONFIG_ARCH_OMAP4 | ||
668 | static struct omap_prcm_init_data omap4_prm_data __initdata = { | ||
669 | .index = TI_CLKM_PRM, | ||
670 | .init = omap44xx_prm_init, | ||
671 | .device_inst_offset = OMAP4430_PRM_DEVICE_INST, | ||
672 | .flags = PRM_HAS_IO_WAKEUP | PRM_HAS_VOLTAGE | PRM_IRQ_DEFAULT, | ||
673 | }; | ||
674 | #endif | ||
675 | |||
676 | #ifdef CONFIG_SOC_OMAP5 | ||
677 | static struct omap_prcm_init_data omap5_prm_data __initdata = { | ||
678 | .index = TI_CLKM_PRM, | ||
679 | .init = omap44xx_prm_init, | ||
680 | .device_inst_offset = OMAP54XX_PRM_DEVICE_INST, | ||
681 | .flags = PRM_HAS_IO_WAKEUP | PRM_HAS_VOLTAGE, | ||
682 | }; | ||
683 | #endif | ||
684 | |||
685 | #ifdef CONFIG_SOC_DRA7XX | ||
686 | static struct omap_prcm_init_data dra7_prm_data __initdata = { | ||
687 | .index = TI_CLKM_PRM, | ||
688 | .init = omap44xx_prm_init, | ||
689 | .device_inst_offset = DRA7XX_PRM_DEVICE_INST, | ||
690 | .flags = PRM_HAS_IO_WAKEUP, | ||
691 | }; | ||
692 | #endif | ||
617 | 693 | ||
618 | static void prm_clk_writel(u32 val, void __iomem *reg) | 694 | #ifdef CONFIG_SOC_AM43XX |
619 | { | 695 | static struct omap_prcm_init_data am4_prm_data __initdata = { |
620 | omap2_clk_writel(val, &memmap_dummy_ck, reg); | 696 | .index = TI_CLKM_PRM, |
621 | } | 697 | .init = omap44xx_prm_init, |
698 | .device_inst_offset = AM43XX_PRM_DEVICE_INST, | ||
699 | }; | ||
700 | #endif | ||
622 | 701 | ||
623 | static struct ti_clk_ll_ops omap_clk_ll_ops = { | 702 | #if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5) |
624 | .clk_readl = prm_clk_readl, | 703 | static struct omap_prcm_init_data scrm_data __initdata = { |
625 | .clk_writel = prm_clk_writel, | 704 | .index = TI_CLKM_SCRM, |
705 | }; | ||
706 | #endif | ||
707 | |||
708 | static const struct of_device_id omap_prcm_dt_match_table[] __initconst = { | ||
709 | #ifdef CONFIG_SOC_AM33XX | ||
710 | { .compatible = "ti,am3-prcm", .data = &am3_prm_data }, | ||
711 | #endif | ||
712 | #ifdef CONFIG_SOC_AM43XX | ||
713 | { .compatible = "ti,am4-prcm", .data = &am4_prm_data }, | ||
714 | #endif | ||
715 | #ifdef CONFIG_SOC_TI81XX | ||
716 | { .compatible = "ti,dm814-prcm", .data = &am3_prm_data }, | ||
717 | { .compatible = "ti,dm816-prcm", .data = &am3_prm_data }, | ||
718 | #endif | ||
719 | #ifdef CONFIG_ARCH_OMAP2 | ||
720 | { .compatible = "ti,omap2-prcm", .data = &omap2_prm_data }, | ||
721 | #endif | ||
722 | #ifdef CONFIG_ARCH_OMAP3 | ||
723 | { .compatible = "ti,omap3-prm", .data = &omap3_prm_data }, | ||
724 | #endif | ||
725 | #ifdef CONFIG_ARCH_OMAP4 | ||
726 | { .compatible = "ti,omap4-prm", .data = &omap4_prm_data }, | ||
727 | { .compatible = "ti,omap4-scrm", .data = &scrm_data }, | ||
728 | #endif | ||
729 | #ifdef CONFIG_SOC_OMAP5 | ||
730 | { .compatible = "ti,omap5-prm", .data = &omap5_prm_data }, | ||
731 | { .compatible = "ti,omap5-scrm", .data = &scrm_data }, | ||
732 | #endif | ||
733 | #ifdef CONFIG_SOC_DRA7XX | ||
734 | { .compatible = "ti,dra7-prm", .data = &dra7_prm_data }, | ||
735 | #endif | ||
736 | { } | ||
626 | }; | 737 | }; |
627 | 738 | ||
628 | int __init of_prcm_init(void) | 739 | /** |
740 | * omap2_prm_base_init - initialize iomappings for the PRM driver | ||
741 | * | ||
742 | * Detects and initializes the iomappings for the PRM driver, based | ||
743 | * on the DT data. Returns 0 in success, negative error value | ||
744 | * otherwise. | ||
745 | */ | ||
746 | int __init omap2_prm_base_init(void) | ||
629 | { | 747 | { |
630 | struct device_node *np; | 748 | struct device_node *np; |
749 | const struct of_device_id *match; | ||
750 | struct omap_prcm_init_data *data; | ||
631 | void __iomem *mem; | 751 | void __iomem *mem; |
632 | int memmap_index = 0; | ||
633 | 752 | ||
634 | ti_clk_ll_ops = &omap_clk_ll_ops; | 753 | for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) { |
754 | data = (struct omap_prcm_init_data *)match->data; | ||
635 | 755 | ||
636 | for_each_matching_node(np, omap_prcm_dt_match_table) { | ||
637 | mem = of_iomap(np, 0); | 756 | mem = of_iomap(np, 0); |
638 | clk_memmaps[memmap_index] = mem; | 757 | if (!mem) |
639 | ti_dt_clk_init_provider(np, memmap_index); | 758 | return -ENOMEM; |
640 | memmap_index++; | 759 | |
760 | if (data->index == TI_CLKM_PRM) | ||
761 | prm_base = mem + data->offset; | ||
762 | |||
763 | data->mem = mem; | ||
764 | |||
765 | data->np = np; | ||
766 | |||
767 | if (data->init) | ||
768 | data->init(data); | ||
641 | } | 769 | } |
642 | 770 | ||
643 | return 0; | 771 | return 0; |
644 | } | 772 | } |
645 | 773 | ||
646 | void __init omap3_prcm_legacy_iomaps_init(void) | 774 | int __init omap2_prcm_base_init(void) |
647 | { | 775 | { |
648 | ti_clk_ll_ops = &omap_clk_ll_ops; | 776 | int ret; |
649 | 777 | ||
650 | clk_memmaps[TI_CLKM_CM] = cm_base + OMAP3430_IVA2_MOD; | 778 | ret = omap2_prm_base_init(); |
651 | clk_memmaps[TI_CLKM_PRM] = prm_base + OMAP3430_IVA2_MOD; | 779 | if (ret) |
652 | clk_memmaps[TI_CLKM_SCRM] = omap_ctrl_base_get(); | 780 | return ret; |
781 | |||
782 | return omap2_cm_base_init(); | ||
783 | } | ||
784 | |||
785 | /** | ||
786 | * omap_prcm_init - low level init for the PRCM drivers | ||
787 | * | ||
788 | * Initializes the low level clock infrastructure for PRCM drivers. | ||
789 | * Returns 0 in success, negative error value in failure. | ||
790 | */ | ||
791 | int __init omap_prcm_init(void) | ||
792 | { | ||
793 | struct device_node *np; | ||
794 | const struct of_device_id *match; | ||
795 | const struct omap_prcm_init_data *data; | ||
796 | int ret; | ||
797 | |||
798 | for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) { | ||
799 | data = match->data; | ||
800 | |||
801 | ret = omap2_clk_provider_init(np, data->index, NULL, data->mem); | ||
802 | if (ret) | ||
803 | return ret; | ||
804 | } | ||
805 | |||
806 | omap_cm_init(); | ||
807 | |||
808 | return 0; | ||
653 | } | 809 | } |
654 | 810 | ||
655 | static int __init prm_late_init(void) | 811 | static int __init prm_late_init(void) |
diff --git a/arch/arm/mach-omap2/prminst44xx.c b/arch/arm/mach-omap2/prminst44xx.c index 8adf7b1a1dce..c4859c4d3646 100644 --- a/arch/arm/mach-omap2/prminst44xx.c +++ b/arch/arm/mach-omap2/prminst44xx.c | |||
@@ -47,22 +47,14 @@ void omap_prm_base_init(void) | |||
47 | 47 | ||
48 | s32 omap4_prmst_get_prm_dev_inst(void) | 48 | s32 omap4_prmst_get_prm_dev_inst(void) |
49 | { | 49 | { |
50 | if (prm_dev_inst != PRM_INSTANCE_UNKNOWN) | ||
51 | return prm_dev_inst; | ||
52 | |||
53 | /* This cannot be done way early at boot.. as things are not setup */ | ||
54 | if (cpu_is_omap44xx()) | ||
55 | prm_dev_inst = OMAP4430_PRM_DEVICE_INST; | ||
56 | else if (soc_is_omap54xx()) | ||
57 | prm_dev_inst = OMAP54XX_PRM_DEVICE_INST; | ||
58 | else if (soc_is_dra7xx()) | ||
59 | prm_dev_inst = DRA7XX_PRM_DEVICE_INST; | ||
60 | else if (soc_is_am43xx()) | ||
61 | prm_dev_inst = AM43XX_PRM_DEVICE_INST; | ||
62 | |||
63 | return prm_dev_inst; | 50 | return prm_dev_inst; |
64 | } | 51 | } |
65 | 52 | ||
53 | void omap4_prminst_set_prm_dev_inst(s32 dev_inst) | ||
54 | { | ||
55 | prm_dev_inst = dev_inst; | ||
56 | } | ||
57 | |||
66 | /* Read a register in a PRM instance */ | 58 | /* Read a register in a PRM instance */ |
67 | u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx) | 59 | u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx) |
68 | { | 60 | { |
diff --git a/arch/arm/mach-omap2/prminst44xx.h b/arch/arm/mach-omap2/prminst44xx.h index fb1c9d7a2f9d..0c03d0731d7f 100644 --- a/arch/arm/mach-omap2/prminst44xx.h +++ b/arch/arm/mach-omap2/prminst44xx.h | |||
@@ -14,6 +14,7 @@ | |||
14 | 14 | ||
15 | #define PRM_INSTANCE_UNKNOWN -1 | 15 | #define PRM_INSTANCE_UNKNOWN -1 |
16 | extern s32 omap4_prmst_get_prm_dev_inst(void); | 16 | extern s32 omap4_prmst_get_prm_dev_inst(void); |
17 | void omap4_prminst_set_prm_dev_inst(s32 dev_inst); | ||
17 | 18 | ||
18 | /* | 19 | /* |
19 | * In an ideal world, we would not export these low-level functions, | 20 | * In an ideal world, we would not export these low-level functions, |
diff --git a/arch/arm/mach-omap2/vp.h b/arch/arm/mach-omap2/vp.h index 0fdf7080e4a6..7e0829682bd0 100644 --- a/arch/arm/mach-omap2/vp.h +++ b/arch/arm/mach-omap2/vp.h | |||
@@ -21,15 +21,6 @@ | |||
21 | 21 | ||
22 | struct voltagedomain; | 22 | struct voltagedomain; |
23 | 23 | ||
24 | /* | ||
25 | * Voltage Processor (VP) identifiers | ||
26 | */ | ||
27 | #define OMAP3_VP_VDD_MPU_ID 0 | ||
28 | #define OMAP3_VP_VDD_CORE_ID 1 | ||
29 | #define OMAP4_VP_VDD_CORE_ID 0 | ||
30 | #define OMAP4_VP_VDD_IVA_ID 1 | ||
31 | #define OMAP4_VP_VDD_MPU_ID 2 | ||
32 | |||
33 | /* XXX document */ | 24 | /* XXX document */ |
34 | #define VP_IDLE_TIMEOUT 200 | 25 | #define VP_IDLE_TIMEOUT 200 |
35 | #define VP_TRANXDONE_TIMEOUT 300 | 26 | #define VP_TRANXDONE_TIMEOUT 300 |
diff --git a/arch/arm/mach-omap2/vp3xxx_data.c b/arch/arm/mach-omap2/vp3xxx_data.c index 1914e026245e..b0590fe6ab01 100644 --- a/arch/arm/mach-omap2/vp3xxx_data.c +++ b/arch/arm/mach-omap2/vp3xxx_data.c | |||
@@ -28,8 +28,8 @@ | |||
28 | #include "prm2xxx_3xxx.h" | 28 | #include "prm2xxx_3xxx.h" |
29 | 29 | ||
30 | static const struct omap_vp_ops omap3_vp_ops = { | 30 | static const struct omap_vp_ops omap3_vp_ops = { |
31 | .check_txdone = omap3_prm_vp_check_txdone, | 31 | .check_txdone = omap_prm_vp_check_txdone, |
32 | .clear_txdone = omap3_prm_vp_clear_txdone, | 32 | .clear_txdone = omap_prm_vp_clear_txdone, |
33 | }; | 33 | }; |
34 | 34 | ||
35 | /* | 35 | /* |
diff --git a/arch/arm/mach-omap2/vp44xx_data.c b/arch/arm/mach-omap2/vp44xx_data.c index e62f6b018beb..2448bb9a8716 100644 --- a/arch/arm/mach-omap2/vp44xx_data.c +++ b/arch/arm/mach-omap2/vp44xx_data.c | |||
@@ -28,8 +28,8 @@ | |||
28 | #include "vp.h" | 28 | #include "vp.h" |
29 | 29 | ||
30 | static const struct omap_vp_ops omap4_vp_ops = { | 30 | static const struct omap_vp_ops omap4_vp_ops = { |
31 | .check_txdone = omap4_prm_vp_check_txdone, | 31 | .check_txdone = omap_prm_vp_check_txdone, |
32 | .clear_txdone = omap4_prm_vp_clear_txdone, | 32 | .clear_txdone = omap_prm_vp_clear_txdone, |
33 | }; | 33 | }; |
34 | 34 | ||
35 | /* | 35 | /* |
diff --git a/drivers/clk/ti/apll.c b/drivers/clk/ti/apll.c index 72d97279eae1..49baf3831546 100644 --- a/drivers/clk/ti/apll.c +++ b/drivers/clk/ti/apll.c | |||
@@ -203,7 +203,7 @@ static void __init of_dra7_apll_setup(struct device_node *node) | |||
203 | ad->control_reg = ti_clk_get_reg_addr(node, 0); | 203 | ad->control_reg = ti_clk_get_reg_addr(node, 0); |
204 | ad->idlest_reg = ti_clk_get_reg_addr(node, 1); | 204 | ad->idlest_reg = ti_clk_get_reg_addr(node, 1); |
205 | 205 | ||
206 | if (!ad->control_reg || !ad->idlest_reg) | 206 | if (IS_ERR(ad->control_reg) || IS_ERR(ad->idlest_reg)) |
207 | goto cleanup; | 207 | goto cleanup; |
208 | 208 | ||
209 | ad->idlest_mask = 0x1; | 209 | ad->idlest_mask = 0x1; |
@@ -384,7 +384,8 @@ static void __init of_omap2_apll_setup(struct device_node *node) | |||
384 | ad->autoidle_reg = ti_clk_get_reg_addr(node, 1); | 384 | ad->autoidle_reg = ti_clk_get_reg_addr(node, 1); |
385 | ad->idlest_reg = ti_clk_get_reg_addr(node, 2); | 385 | ad->idlest_reg = ti_clk_get_reg_addr(node, 2); |
386 | 386 | ||
387 | if (!ad->control_reg || !ad->autoidle_reg || !ad->idlest_reg) | 387 | if (IS_ERR(ad->control_reg) || IS_ERR(ad->autoidle_reg) || |
388 | IS_ERR(ad->idlest_reg)) | ||
388 | goto cleanup; | 389 | goto cleanup; |
389 | 390 | ||
390 | clk = clk_register(NULL, &clk_hw->hw); | 391 | clk = clk_register(NULL, &clk_hw->hw); |
diff --git a/drivers/clk/ti/autoidle.c b/drivers/clk/ti/autoidle.c index 8912ff80af34..e75c64c9e81c 100644 --- a/drivers/clk/ti/autoidle.c +++ b/drivers/clk/ti/autoidle.c | |||
@@ -119,7 +119,7 @@ int __init of_ti_clk_autoidle_setup(struct device_node *node) | |||
119 | clk->name = node->name; | 119 | clk->name = node->name; |
120 | clk->reg = ti_clk_get_reg_addr(node, 0); | 120 | clk->reg = ti_clk_get_reg_addr(node, 0); |
121 | 121 | ||
122 | if (!clk->reg) { | 122 | if (IS_ERR(clk->reg)) { |
123 | kfree(clk); | 123 | kfree(clk); |
124 | return -EINVAL; | 124 | return -EINVAL; |
125 | } | 125 | } |
diff --git a/drivers/clk/ti/clk.c b/drivers/clk/ti/clk.c index e22b95646e09..0ebe5c51062b 100644 --- a/drivers/clk/ti/clk.c +++ b/drivers/clk/ti/clk.c | |||
@@ -103,7 +103,8 @@ int __init ti_clk_retry_init(struct device_node *node, struct clk_hw *hw, | |||
103 | * @index: register index from the clock node | 103 | * @index: register index from the clock node |
104 | * | 104 | * |
105 | * Builds clock register address from device tree information. This | 105 | * Builds clock register address from device tree information. This |
106 | * is a struct of type clk_omap_reg. | 106 | * is a struct of type clk_omap_reg. Returns a pointer to the register |
107 | * address, or a pointer error value in failure. | ||
107 | */ | 108 | */ |
108 | void __iomem *ti_clk_get_reg_addr(struct device_node *node, int index) | 109 | void __iomem *ti_clk_get_reg_addr(struct device_node *node, int index) |
109 | { | 110 | { |
@@ -121,14 +122,14 @@ void __iomem *ti_clk_get_reg_addr(struct device_node *node, int index) | |||
121 | 122 | ||
122 | if (i == CLK_MAX_MEMMAPS) { | 123 | if (i == CLK_MAX_MEMMAPS) { |
123 | pr_err("clk-provider not found for %s!\n", node->name); | 124 | pr_err("clk-provider not found for %s!\n", node->name); |
124 | return NULL; | 125 | return ERR_PTR(-ENOENT); |
125 | } | 126 | } |
126 | 127 | ||
127 | reg->index = i; | 128 | reg->index = i; |
128 | 129 | ||
129 | if (of_property_read_u32_index(node, "reg", index, &val)) { | 130 | if (of_property_read_u32_index(node, "reg", index, &val)) { |
130 | pr_err("%s must have reg[%d]!\n", node->name, index); | 131 | pr_err("%s must have reg[%d]!\n", node->name, index); |
131 | return NULL; | 132 | return ERR_PTR(-EINVAL); |
132 | } | 133 | } |
133 | 134 | ||
134 | reg->offset = val; | 135 | reg->offset = val; |
diff --git a/drivers/clk/ti/divider.c b/drivers/clk/ti/divider.c index 6211893c0980..ff5f117950a9 100644 --- a/drivers/clk/ti/divider.c +++ b/drivers/clk/ti/divider.c | |||
@@ -530,8 +530,8 @@ static int __init ti_clk_divider_populate(struct device_node *node, | |||
530 | u32 val; | 530 | u32 val; |
531 | 531 | ||
532 | *reg = ti_clk_get_reg_addr(node, 0); | 532 | *reg = ti_clk_get_reg_addr(node, 0); |
533 | if (!*reg) | 533 | if (IS_ERR(*reg)) |
534 | return -EINVAL; | 534 | return PTR_ERR(*reg); |
535 | 535 | ||
536 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) | 536 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) |
537 | *shift = val; | 537 | *shift = val; |
diff --git a/drivers/clk/ti/dpll.c b/drivers/clk/ti/dpll.c index 81dc4698dc41..11478a501c30 100644 --- a/drivers/clk/ti/dpll.c +++ b/drivers/clk/ti/dpll.c | |||
@@ -390,18 +390,18 @@ static void __init of_ti_dpll_setup(struct device_node *node, | |||
390 | #endif | 390 | #endif |
391 | } else { | 391 | } else { |
392 | dd->idlest_reg = ti_clk_get_reg_addr(node, 1); | 392 | dd->idlest_reg = ti_clk_get_reg_addr(node, 1); |
393 | if (!dd->idlest_reg) | 393 | if (IS_ERR(dd->idlest_reg)) |
394 | goto cleanup; | 394 | goto cleanup; |
395 | 395 | ||
396 | dd->mult_div1_reg = ti_clk_get_reg_addr(node, 2); | 396 | dd->mult_div1_reg = ti_clk_get_reg_addr(node, 2); |
397 | } | 397 | } |
398 | 398 | ||
399 | if (!dd->control_reg || !dd->mult_div1_reg) | 399 | if (IS_ERR(dd->control_reg) || IS_ERR(dd->mult_div1_reg)) |
400 | goto cleanup; | 400 | goto cleanup; |
401 | 401 | ||
402 | if (dd->autoidle_mask) { | 402 | if (dd->autoidle_mask) { |
403 | dd->autoidle_reg = ti_clk_get_reg_addr(node, 3); | 403 | dd->autoidle_reg = ti_clk_get_reg_addr(node, 3); |
404 | if (!dd->autoidle_reg) | 404 | if (IS_ERR(dd->autoidle_reg)) |
405 | goto cleanup; | 405 | goto cleanup; |
406 | } | 406 | } |
407 | 407 | ||
diff --git a/drivers/clk/ti/gate.c b/drivers/clk/ti/gate.c index d493307b73f4..0c6fdfcd5f93 100644 --- a/drivers/clk/ti/gate.c +++ b/drivers/clk/ti/gate.c | |||
@@ -225,7 +225,7 @@ static void __init _of_ti_gate_clk_setup(struct device_node *node, | |||
225 | 225 | ||
226 | if (ops != &omap_gate_clkdm_clk_ops) { | 226 | if (ops != &omap_gate_clkdm_clk_ops) { |
227 | reg = ti_clk_get_reg_addr(node, 0); | 227 | reg = ti_clk_get_reg_addr(node, 0); |
228 | if (!reg) | 228 | if (IS_ERR(reg)) |
229 | return; | 229 | return; |
230 | 230 | ||
231 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) | 231 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) |
@@ -264,7 +264,7 @@ _of_ti_composite_gate_clk_setup(struct device_node *node, | |||
264 | return; | 264 | return; |
265 | 265 | ||
266 | gate->enable_reg = ti_clk_get_reg_addr(node, 0); | 266 | gate->enable_reg = ti_clk_get_reg_addr(node, 0); |
267 | if (!gate->enable_reg) | 267 | if (IS_ERR(gate->enable_reg)) |
268 | goto cleanup; | 268 | goto cleanup; |
269 | 269 | ||
270 | of_property_read_u32(node, "ti,bit-shift", &val); | 270 | of_property_read_u32(node, "ti,bit-shift", &val); |
diff --git a/drivers/clk/ti/interface.c b/drivers/clk/ti/interface.c index 265d91f071c5..c76230d8dd04 100644 --- a/drivers/clk/ti/interface.c +++ b/drivers/clk/ti/interface.c | |||
@@ -111,7 +111,7 @@ static void __init _of_ti_interface_clk_setup(struct device_node *node, | |||
111 | u32 val; | 111 | u32 val; |
112 | 112 | ||
113 | reg = ti_clk_get_reg_addr(node, 0); | 113 | reg = ti_clk_get_reg_addr(node, 0); |
114 | if (!reg) | 114 | if (IS_ERR(reg)) |
115 | return; | 115 | return; |
116 | 116 | ||
117 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) | 117 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) |
diff --git a/drivers/clk/ti/mux.c b/drivers/clk/ti/mux.c index 728e253606bc..5cdeed538b08 100644 --- a/drivers/clk/ti/mux.c +++ b/drivers/clk/ti/mux.c | |||
@@ -210,7 +210,7 @@ static void of_mux_clk_setup(struct device_node *node) | |||
210 | 210 | ||
211 | reg = ti_clk_get_reg_addr(node, 0); | 211 | reg = ti_clk_get_reg_addr(node, 0); |
212 | 212 | ||
213 | if (!reg) | 213 | if (IS_ERR(reg)) |
214 | goto cleanup; | 214 | goto cleanup; |
215 | 215 | ||
216 | of_property_read_u32(node, "ti,bit-shift", &shift); | 216 | of_property_read_u32(node, "ti,bit-shift", &shift); |
@@ -283,7 +283,7 @@ static void __init of_ti_composite_mux_clk_setup(struct device_node *node) | |||
283 | 283 | ||
284 | mux->reg = ti_clk_get_reg_addr(node, 0); | 284 | mux->reg = ti_clk_get_reg_addr(node, 0); |
285 | 285 | ||
286 | if (!mux->reg) | 286 | if (IS_ERR(mux->reg)) |
287 | goto cleanup; | 287 | goto cleanup; |
288 | 288 | ||
289 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) | 289 | if (!of_property_read_u32(node, "ti,bit-shift", &val)) |
diff --git a/include/linux/clk/ti.h b/include/linux/clk/ti.h index 67844003493d..79b76e13d904 100644 --- a/include/linux/clk/ti.h +++ b/include/linux/clk/ti.h | |||
@@ -215,14 +215,14 @@ struct ti_dt_clk { | |||
215 | .node_name = name, \ | 215 | .node_name = name, \ |
216 | } | 216 | } |
217 | 217 | ||
218 | /* Maximum number of clock memmaps */ | ||
219 | #define CLK_MAX_MEMMAPS 4 | ||
220 | |||
221 | /* Static memmap indices */ | 218 | /* Static memmap indices */ |
222 | enum { | 219 | enum { |
223 | TI_CLKM_CM = 0, | 220 | TI_CLKM_CM = 0, |
221 | TI_CLKM_CM2, | ||
224 | TI_CLKM_PRM, | 222 | TI_CLKM_PRM, |
225 | TI_CLKM_SCRM, | 223 | TI_CLKM_SCRM, |
224 | TI_CLKM_CTRL, | ||
225 | CLK_MAX_MEMMAPS | ||
226 | }; | 226 | }; |
227 | 227 | ||
228 | typedef void (*ti_of_clk_init_cb_t)(struct clk_hw *, struct device_node *); | 228 | typedef void (*ti_of_clk_init_cb_t)(struct clk_hw *, struct device_node *); |