Linux 3.5-rc5
[deliverable/linux.git] / arch / arm / mach-omap2 / powerdomains3xxx_data.c
CommitLineData
ecb24aa1 1/*
98fa3d8a 2 * OMAP3 powerdomain definitions
ecb24aa1 3 *
8179488a 4 * Copyright (C) 2007-2008, 2011 Texas Instruments, Inc.
4cb49fec 5 * Copyright (C) 2007-2011 Nokia Corporation
ecb24aa1 6 *
6e01478a 7 * Paul Walmsley, Jouni Högander
ecb24aa1
PW
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
6e01478a
PW
14#include <linux/kernel.h>
15#include <linux/init.h>
d9a5f4dd 16#include <linux/bug.h>
ecb24aa1 17
8179488a
PW
18#include <plat/cpu.h>
19
72e06d08 20#include "powerdomain.h"
6e01478a 21#include "powerdomains2xxx_3xxx_data.h"
ecb24aa1
PW
22
23#include "prcm-common.h"
59fb659b 24#include "prm2xxx_3xxx.h"
ecb24aa1 25#include "prm-regbits-34xx.h"
59fb659b 26#include "cm2xxx_3xxx.h"
ecb24aa1
PW
27#include "cm-regbits-34xx.h"
28
29/*
30 * 34XX-specific powerdomains, dependencies
31 */
32
ecb24aa1
PW
33/*
34 * Powerdomains
35 */
36
37static struct powerdomain iva2_pwrdm = {
38 .name = "iva2_pwrdm",
39 .prcm_offs = OMAP3430_IVA2_MOD,
ecb24aa1
PW
40 .pwrsts = PWRSTS_OFF_RET_ON,
41 .pwrsts_logic_ret = PWRSTS_OFF_RET,
42 .banks = 4,
43 .pwrsts_mem_ret = {
44 [0] = PWRSTS_OFF_RET,
45 [1] = PWRSTS_OFF_RET,
46 [2] = PWRSTS_OFF_RET,
47 [3] = PWRSTS_OFF_RET,
48 },
49 .pwrsts_mem_on = {
4cb49fec
PW
50 [0] = PWRSTS_ON,
51 [1] = PWRSTS_ON,
ecb24aa1 52 [2] = PWRSTS_OFF_ON,
4cb49fec 53 [3] = PWRSTS_ON,
ecb24aa1 54 },
da03ce65 55 .voltdm = { .name = "mpu_iva" },
ecb24aa1
PW
56};
57
98fa3d8a 58static struct powerdomain mpu_3xxx_pwrdm = {
ecb24aa1
PW
59 .name = "mpu_pwrdm",
60 .prcm_offs = MPU_MOD,
ecb24aa1
PW
61 .pwrsts = PWRSTS_OFF_RET_ON,
62 .pwrsts_logic_ret = PWRSTS_OFF_RET,
3863c74b 63 .flags = PWRDM_HAS_MPU_QUIRK,
ecb24aa1
PW
64 .banks = 1,
65 .pwrsts_mem_ret = {
66 [0] = PWRSTS_OFF_RET,
67 },
68 .pwrsts_mem_on = {
69 [0] = PWRSTS_OFF_ON,
70 },
da03ce65 71 .voltdm = { .name = "mpu_iva" },
ecb24aa1
PW
72};
73
58dcfb3a
AG
74/*
75 * The USBTLL Save-and-Restore mechanism is broken on
25985edc 76 * 3430s up to ES3.0 and 3630ES1.0. Hence this feature
58dcfb3a
AG
77 * needs to be disabled on these chips.
78 * Refer: 3430 errata ID i459 and 3630 errata ID i579
447b8da5
JP
79 *
80 * Note: setting the SAR flag could help for errata ID i478
81 * which applies to 3430 <= ES3.1, but since the SAR feature
82 * is broken, do not use it.
58dcfb3a 83 */
98fa3d8a 84static struct powerdomain core_3xxx_pre_es3_1_pwrdm = {
ecb24aa1
PW
85 .name = "core_pwrdm",
86 .prcm_offs = CORE_MOD,
7eb1afc9 87 .pwrsts = PWRSTS_OFF_RET_ON,
4133a44e 88 .pwrsts_logic_ret = PWRSTS_OFF_RET,
7eb1afc9
PW
89 .banks = 2,
90 .pwrsts_mem_ret = {
91 [0] = PWRSTS_OFF_RET, /* MEM1RETSTATE */
92 [1] = PWRSTS_OFF_RET, /* MEM2RETSTATE */
93 },
94 .pwrsts_mem_on = {
95 [0] = PWRSTS_OFF_RET_ON, /* MEM1ONSTATE */
96 [1] = PWRSTS_OFF_RET_ON, /* MEM2ONSTATE */
97 },
da03ce65 98 .voltdm = { .name = "core" },
7eb1afc9
PW
99};
100
98fa3d8a 101static struct powerdomain core_3xxx_es3_1_pwrdm = {
7eb1afc9
PW
102 .name = "core_pwrdm",
103 .prcm_offs = CORE_MOD,
ecb24aa1 104 .pwrsts = PWRSTS_OFF_RET_ON,
4133a44e 105 .pwrsts_logic_ret = PWRSTS_OFF_RET,
447b8da5
JP
106 /*
107 * Setting the SAR flag for errata ID i478 which applies
108 * to 3430 <= ES3.1
109 */
7eb1afc9 110 .flags = PWRDM_HAS_HDWR_SAR, /* for USBTLL only */
ecb24aa1
PW
111 .banks = 2,
112 .pwrsts_mem_ret = {
113 [0] = PWRSTS_OFF_RET, /* MEM1RETSTATE */
114 [1] = PWRSTS_OFF_RET, /* MEM2RETSTATE */
115 },
116 .pwrsts_mem_on = {
117 [0] = PWRSTS_OFF_RET_ON, /* MEM1ONSTATE */
118 [1] = PWRSTS_OFF_RET_ON, /* MEM2ONSTATE */
119 },
da03ce65 120 .voltdm = { .name = "core" },
ecb24aa1
PW
121};
122
ecb24aa1
PW
123static struct powerdomain dss_pwrdm = {
124 .name = "dss_pwrdm",
ecb24aa1 125 .prcm_offs = OMAP3430_DSS_MOD,
ecb24aa1 126 .pwrsts = PWRSTS_OFF_RET_ON,
4cb49fec 127 .pwrsts_logic_ret = PWRSTS_RET,
ecb24aa1
PW
128 .banks = 1,
129 .pwrsts_mem_ret = {
4cb49fec 130 [0] = PWRSTS_RET, /* MEMRETSTATE */
ecb24aa1
PW
131 },
132 .pwrsts_mem_on = {
4cb49fec 133 [0] = PWRSTS_ON, /* MEMONSTATE */
ecb24aa1 134 },
da03ce65 135 .voltdm = { .name = "core" },
ecb24aa1
PW
136};
137
be48ea74
PW
138/*
139 * Although the 34XX TRM Rev K Table 4-371 notes that retention is a
140 * possible SGX powerstate, the SGX device itself does not support
141 * retention.
142 */
ecb24aa1
PW
143static struct powerdomain sgx_pwrdm = {
144 .name = "sgx_pwrdm",
145 .prcm_offs = OMAP3430ES2_SGX_MOD,
ecb24aa1 146 /* XXX This is accurate for 3430 SGX, but what about GFX? */
be48ea74 147 .pwrsts = PWRSTS_OFF_ON,
4cb49fec 148 .pwrsts_logic_ret = PWRSTS_RET,
ecb24aa1
PW
149 .banks = 1,
150 .pwrsts_mem_ret = {
4cb49fec 151 [0] = PWRSTS_RET, /* MEMRETSTATE */
ecb24aa1
PW
152 },
153 .pwrsts_mem_on = {
4cb49fec 154 [0] = PWRSTS_ON, /* MEMONSTATE */
ecb24aa1 155 },
da03ce65 156 .voltdm = { .name = "core" },
ecb24aa1
PW
157};
158
159static struct powerdomain cam_pwrdm = {
160 .name = "cam_pwrdm",
ecb24aa1 161 .prcm_offs = OMAP3430_CAM_MOD,
ecb24aa1 162 .pwrsts = PWRSTS_OFF_RET_ON,
4cb49fec 163 .pwrsts_logic_ret = PWRSTS_RET,
ecb24aa1
PW
164 .banks = 1,
165 .pwrsts_mem_ret = {
4cb49fec 166 [0] = PWRSTS_RET, /* MEMRETSTATE */
ecb24aa1
PW
167 },
168 .pwrsts_mem_on = {
4cb49fec 169 [0] = PWRSTS_ON, /* MEMONSTATE */
ecb24aa1 170 },
da03ce65 171 .voltdm = { .name = "core" },
ecb24aa1
PW
172};
173
174static struct powerdomain per_pwrdm = {
175 .name = "per_pwrdm",
176 .prcm_offs = OMAP3430_PER_MOD,
ecb24aa1
PW
177 .pwrsts = PWRSTS_OFF_RET_ON,
178 .pwrsts_logic_ret = PWRSTS_OFF_RET,
179 .banks = 1,
180 .pwrsts_mem_ret = {
4cb49fec 181 [0] = PWRSTS_RET, /* MEMRETSTATE */
ecb24aa1
PW
182 },
183 .pwrsts_mem_on = {
4cb49fec 184 [0] = PWRSTS_ON, /* MEMONSTATE */
ecb24aa1 185 },
da03ce65 186 .voltdm = { .name = "core" },
ecb24aa1
PW
187};
188
189static struct powerdomain emu_pwrdm = {
190 .name = "emu_pwrdm",
191 .prcm_offs = OMAP3430_EMU_MOD,
da03ce65 192 .voltdm = { .name = "core" },
ecb24aa1
PW
193};
194
195static struct powerdomain neon_pwrdm = {
196 .name = "neon_pwrdm",
197 .prcm_offs = OMAP3430_NEON_MOD,
ecb24aa1 198 .pwrsts = PWRSTS_OFF_RET_ON,
4cb49fec 199 .pwrsts_logic_ret = PWRSTS_RET,
da03ce65 200 .voltdm = { .name = "mpu_iva" },
ecb24aa1
PW
201};
202
203static struct powerdomain usbhost_pwrdm = {
204 .name = "usbhost_pwrdm",
205 .prcm_offs = OMAP3430ES2_USBHOST_MOD,
ecb24aa1 206 .pwrsts = PWRSTS_OFF_RET_ON,
4cb49fec 207 .pwrsts_logic_ret = PWRSTS_RET,
867d320b
KJ
208 /*
209 * REVISIT: Enabling usb host save and restore mechanism seems to
210 * leave the usb host domain permanently in ACTIVE mode after
211 * changing the usb host power domain state from OFF to active once.
212 * Disabling for now.
213 */
214 /*.flags = PWRDM_HAS_HDWR_SAR,*/ /* for USBHOST ctrlr only */
ecb24aa1
PW
215 .banks = 1,
216 .pwrsts_mem_ret = {
4cb49fec 217 [0] = PWRSTS_RET, /* MEMRETSTATE */
ecb24aa1
PW
218 },
219 .pwrsts_mem_on = {
4cb49fec 220 [0] = PWRSTS_ON, /* MEMONSTATE */
ecb24aa1 221 },
da03ce65 222 .voltdm = { .name = "core" },
ecb24aa1
PW
223};
224
46e0ccf8
PW
225static struct powerdomain dpll1_pwrdm = {
226 .name = "dpll1_pwrdm",
227 .prcm_offs = MPU_MOD,
da03ce65 228 .voltdm = { .name = "mpu_iva" },
46e0ccf8
PW
229};
230
231static struct powerdomain dpll2_pwrdm = {
232 .name = "dpll2_pwrdm",
233 .prcm_offs = OMAP3430_IVA2_MOD,
da03ce65 234 .voltdm = { .name = "mpu_iva" },
46e0ccf8
PW
235};
236
237static struct powerdomain dpll3_pwrdm = {
238 .name = "dpll3_pwrdm",
239 .prcm_offs = PLL_MOD,
da03ce65 240 .voltdm = { .name = "core" },
46e0ccf8
PW
241};
242
243static struct powerdomain dpll4_pwrdm = {
244 .name = "dpll4_pwrdm",
245 .prcm_offs = PLL_MOD,
da03ce65 246 .voltdm = { .name = "core" },
46e0ccf8
PW
247};
248
249static struct powerdomain dpll5_pwrdm = {
250 .name = "dpll5_pwrdm",
251 .prcm_offs = PLL_MOD,
da03ce65 252 .voltdm = { .name = "core" },
46e0ccf8
PW
253};
254
6e01478a 255/* As powerdomains are added or removed above, this list must also be changed */
8179488a 256static struct powerdomain *powerdomains_omap3430_common[] __initdata = {
6e01478a 257 &wkup_omap2_pwrdm,
6e01478a
PW
258 &iva2_pwrdm,
259 &mpu_3xxx_pwrdm,
260 &neon_pwrdm,
6e01478a
PW
261 &cam_pwrdm,
262 &dss_pwrdm,
263 &per_pwrdm,
264 &emu_pwrdm,
6e01478a
PW
265 &dpll1_pwrdm,
266 &dpll2_pwrdm,
267 &dpll3_pwrdm,
268 &dpll4_pwrdm,
8179488a
PW
269 NULL
270};
271
272static struct powerdomain *powerdomains_omap3430es1[] __initdata = {
273 &gfx_omap2_pwrdm,
274 &core_3xxx_pre_es3_1_pwrdm,
275 NULL
276};
277
278/* also includes 3630ES1.0 */
279static struct powerdomain *powerdomains_omap3430es2_es3_0[] __initdata = {
280 &core_3xxx_pre_es3_1_pwrdm,
281 &sgx_pwrdm,
282 &usbhost_pwrdm,
6e01478a 283 &dpll5_pwrdm,
6e01478a
PW
284 NULL
285};
ecb24aa1 286
8179488a
PW
287/* also includes 3630ES1.1+ */
288static struct powerdomain *powerdomains_omap3430es3_1plus[] __initdata = {
289 &core_3xxx_es3_1_pwrdm,
290 &sgx_pwrdm,
291 &usbhost_pwrdm,
292 &dpll5_pwrdm,
293 NULL
294};
ecb24aa1 295
6e01478a
PW
296void __init omap3xxx_powerdomains_init(void)
297{
8179488a
PW
298 unsigned int rev;
299
300 if (!cpu_is_omap34xx())
301 return;
302
129c65ee 303 pwrdm_register_platform_funcs(&omap3_pwrdm_operations);
8179488a
PW
304 pwrdm_register_pwrdms(powerdomains_omap3430_common);
305
306 rev = omap_rev();
307
308 if (rev == OMAP3430_REV_ES1_0)
309 pwrdm_register_pwrdms(powerdomains_omap3430es1);
310 else if (rev == OMAP3430_REV_ES2_0 || rev == OMAP3430_REV_ES2_1 ||
311 rev == OMAP3430_REV_ES3_0 || rev == OMAP3630_REV_ES1_0)
312 pwrdm_register_pwrdms(powerdomains_omap3430es2_es3_0);
313 else if (rev == OMAP3430_REV_ES3_1 || rev == OMAP3430_REV_ES3_1_2 ||
68a88b98 314 rev == AM35XX_REV_ES1_0 || rev == AM35XX_REV_ES1_1 ||
8179488a
PW
315 rev == OMAP3630_REV_ES1_1 || rev == OMAP3630_REV_ES1_2)
316 pwrdm_register_pwrdms(powerdomains_omap3430es3_1plus);
317 else
318 WARN(1, "OMAP3 powerdomain init: unknown chip type\n");
319
129c65ee 320 pwrdm_complete_init();
6e01478a 321}
This page took 0.313929 seconds and 5 git commands to generate.