OMAP4: prcm: Use logical OR instead of bitwise OR
[linux-2.6/x86.git] / arch / arm / mach-omap2 / powerdomain.c
blobebfce7d1a5d37a2e151d93062a5ea427da715233
1 /*
2 * OMAP powerdomain control
4 * Copyright (C) 2007-2008 Texas Instruments, Inc.
5 * Copyright (C) 2007-2009 Nokia Corporation
7 * Written by Paul Walmsley
9 * Added OMAP4 specific support by Abhijit Pagare <abhijitpagare@ti.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 #undef DEBUG
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/types.h>
20 #include <linux/delay.h>
21 #include <linux/spinlock.h>
22 #include <linux/list.h>
23 #include <linux/errno.h>
24 #include <linux/err.h>
25 #include <linux/io.h>
27 #include <asm/atomic.h>
29 #include "cm.h"
30 #include "cm-regbits-34xx.h"
31 #include "cm-regbits-44xx.h"
32 #include "prm.h"
33 #include "prm-regbits-34xx.h"
34 #include "prm-regbits-44xx.h"
36 #include <plat/cpu.h>
37 #include <plat/powerdomain.h>
38 #include <plat/clockdomain.h>
39 #include <plat/prcm.h>
41 #include "pm.h"
43 enum {
44 PWRDM_STATE_NOW = 0,
45 PWRDM_STATE_PREV,
48 /* Variable holding value of the CPU dependent PWRSTCTRL Register Offset */
49 static u16 pwrstctrl_reg_offs;
51 /* Variable holding value of the CPU dependent PWRSTST Register Offset */
52 static u16 pwrstst_reg_offs;
54 /* OMAP3 and OMAP4 specific register bit initialisations
55 * Notice that the names here are not according to each power
56 * domain but the bit mapping used applies to all of them
59 /* OMAP3 and OMAP4 Memory Onstate Masks (common across all power domains) */
60 #define OMAP_MEM0_ONSTATE_MASK OMAP3430_SHAREDL1CACHEFLATONSTATE_MASK
61 #define OMAP_MEM1_ONSTATE_MASK OMAP3430_L1FLATMEMONSTATE_MASK
62 #define OMAP_MEM2_ONSTATE_MASK OMAP3430_SHAREDL2CACHEFLATONSTATE_MASK
63 #define OMAP_MEM3_ONSTATE_MASK OMAP3430_L2FLATMEMONSTATE_MASK
64 #define OMAP_MEM4_ONSTATE_MASK OMAP4430_OCP_NRET_BANK_ONSTATE_MASK
66 /* OMAP3 and OMAP4 Memory Retstate Masks (common across all power domains) */
67 #define OMAP_MEM0_RETSTATE_MASK OMAP3430_SHAREDL1CACHEFLATRETSTATE
68 #define OMAP_MEM1_RETSTATE_MASK OMAP3430_L1FLATMEMRETSTATE
69 #define OMAP_MEM2_RETSTATE_MASK OMAP3430_SHAREDL2CACHEFLATRETSTATE
70 #define OMAP_MEM3_RETSTATE_MASK OMAP3430_L2FLATMEMRETSTATE
71 #define OMAP_MEM4_RETSTATE_MASK OMAP4430_OCP_NRET_BANK_RETSTATE_MASK
73 /* OMAP3 and OMAP4 Memory Status bits */
74 #define OMAP_MEM0_STATEST_MASK OMAP3430_SHAREDL1CACHEFLATSTATEST_MASK
75 #define OMAP_MEM1_STATEST_MASK OMAP3430_L1FLATMEMSTATEST_MASK
76 #define OMAP_MEM2_STATEST_MASK OMAP3430_SHAREDL2CACHEFLATSTATEST_MASK
77 #define OMAP_MEM3_STATEST_MASK OMAP3430_L2FLATMEMSTATEST_MASK
78 #define OMAP_MEM4_STATEST_MASK OMAP4430_OCP_NRET_BANK_STATEST_MASK
80 /* pwrdm_list contains all registered struct powerdomains */
81 static LIST_HEAD(pwrdm_list);
83 /* Private functions */
85 static struct powerdomain *_pwrdm_lookup(const char *name)
87 struct powerdomain *pwrdm, *temp_pwrdm;
89 pwrdm = NULL;
91 list_for_each_entry(temp_pwrdm, &pwrdm_list, node) {
92 if (!strcmp(name, temp_pwrdm->name)) {
93 pwrdm = temp_pwrdm;
94 break;
98 return pwrdm;
102 * _pwrdm_register - register a powerdomain
103 * @pwrdm: struct powerdomain * to register
105 * Adds a powerdomain to the internal powerdomain list. Returns
106 * -EINVAL if given a null pointer, -EEXIST if a powerdomain is
107 * already registered by the provided name, or 0 upon success.
109 static int _pwrdm_register(struct powerdomain *pwrdm)
111 int i;
113 if (!pwrdm)
114 return -EINVAL;
116 if (!omap_chip_is(pwrdm->omap_chip))
117 return -EINVAL;
119 if (_pwrdm_lookup(pwrdm->name))
120 return -EEXIST;
122 list_add(&pwrdm->node, &pwrdm_list);
124 /* Initialize the powerdomain's state counter */
125 for (i = 0; i < PWRDM_MAX_PWRSTS; i++)
126 pwrdm->state_counter[i] = 0;
128 pwrdm->ret_logic_off_counter = 0;
129 for (i = 0; i < pwrdm->banks; i++)
130 pwrdm->ret_mem_off_counter[i] = 0;
132 pwrdm_wait_transition(pwrdm);
133 pwrdm->state = pwrdm_read_pwrst(pwrdm);
134 pwrdm->state_counter[pwrdm->state] = 1;
136 pr_debug("powerdomain: registered %s\n", pwrdm->name);
138 return 0;
141 static void _update_logic_membank_counters(struct powerdomain *pwrdm)
143 int i;
144 u8 prev_logic_pwrst, prev_mem_pwrst;
146 prev_logic_pwrst = pwrdm_read_prev_logic_pwrst(pwrdm);
147 if ((pwrdm->pwrsts_logic_ret == PWRSTS_OFF_RET) &&
148 (prev_logic_pwrst == PWRDM_POWER_OFF))
149 pwrdm->ret_logic_off_counter++;
151 for (i = 0; i < pwrdm->banks; i++) {
152 prev_mem_pwrst = pwrdm_read_prev_mem_pwrst(pwrdm, i);
154 if ((pwrdm->pwrsts_mem_ret[i] == PWRSTS_OFF_RET) &&
155 (prev_mem_pwrst == PWRDM_POWER_OFF))
156 pwrdm->ret_mem_off_counter[i]++;
160 static int _pwrdm_state_switch(struct powerdomain *pwrdm, int flag)
163 int prev;
164 int state;
166 if (pwrdm == NULL)
167 return -EINVAL;
169 state = pwrdm_read_pwrst(pwrdm);
171 switch (flag) {
172 case PWRDM_STATE_NOW:
173 prev = pwrdm->state;
174 break;
175 case PWRDM_STATE_PREV:
176 prev = pwrdm_read_prev_pwrst(pwrdm);
177 if (pwrdm->state != prev)
178 pwrdm->state_counter[prev]++;
179 if (prev == PWRDM_POWER_RET)
180 _update_logic_membank_counters(pwrdm);
181 break;
182 default:
183 return -EINVAL;
186 if (state != prev)
187 pwrdm->state_counter[state]++;
189 pm_dbg_update_time(pwrdm, prev);
191 pwrdm->state = state;
193 return 0;
196 static int _pwrdm_pre_transition_cb(struct powerdomain *pwrdm, void *unused)
198 pwrdm_clear_all_prev_pwrst(pwrdm);
199 _pwrdm_state_switch(pwrdm, PWRDM_STATE_NOW);
200 return 0;
203 static int _pwrdm_post_transition_cb(struct powerdomain *pwrdm, void *unused)
205 _pwrdm_state_switch(pwrdm, PWRDM_STATE_PREV);
206 return 0;
209 /* Public functions */
212 * pwrdm_init - set up the powerdomain layer
213 * @pwrdm_list: array of struct powerdomain pointers to register
215 * Loop through the array of powerdomains @pwrdm_list, registering all
216 * that are available on the current CPU. If pwrdm_list is supplied
217 * and not null, all of the referenced powerdomains will be
218 * registered. No return value. XXX pwrdm_list is not really a
219 * "list"; it is an array. Rename appropriately.
221 void pwrdm_init(struct powerdomain **pwrdm_list)
223 struct powerdomain **p = NULL;
225 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
226 pwrstctrl_reg_offs = OMAP2_PM_PWSTCTRL;
227 pwrstst_reg_offs = OMAP2_PM_PWSTST;
228 } else if (cpu_is_omap44xx()) {
229 pwrstctrl_reg_offs = OMAP4_PM_PWSTCTRL;
230 pwrstst_reg_offs = OMAP4_PM_PWSTST;
231 } else {
232 printk(KERN_ERR "Power Domain struct not supported for " \
233 "this CPU\n");
234 return;
237 if (pwrdm_list) {
238 for (p = pwrdm_list; *p; p++)
239 _pwrdm_register(*p);
244 * pwrdm_lookup - look up a powerdomain by name, return a pointer
245 * @name: name of powerdomain
247 * Find a registered powerdomain by its name @name. Returns a pointer
248 * to the struct powerdomain if found, or NULL otherwise.
250 struct powerdomain *pwrdm_lookup(const char *name)
252 struct powerdomain *pwrdm;
254 if (!name)
255 return NULL;
257 pwrdm = _pwrdm_lookup(name);
259 return pwrdm;
263 * pwrdm_for_each - call function on each registered clockdomain
264 * @fn: callback function *
266 * Call the supplied function @fn for each registered powerdomain.
267 * The callback function @fn can return anything but 0 to bail out
268 * early from the iterator. Returns the last return value of the
269 * callback function, which should be 0 for success or anything else
270 * to indicate failure; or -EINVAL if the function pointer is null.
272 int pwrdm_for_each(int (*fn)(struct powerdomain *pwrdm, void *user),
273 void *user)
275 struct powerdomain *temp_pwrdm;
276 int ret = 0;
278 if (!fn)
279 return -EINVAL;
281 list_for_each_entry(temp_pwrdm, &pwrdm_list, node) {
282 ret = (*fn)(temp_pwrdm, user);
283 if (ret)
284 break;
287 return ret;
291 * pwrdm_add_clkdm - add a clockdomain to a powerdomain
292 * @pwrdm: struct powerdomain * to add the clockdomain to
293 * @clkdm: struct clockdomain * to associate with a powerdomain
295 * Associate the clockdomain @clkdm with a powerdomain @pwrdm. This
296 * enables the use of pwrdm_for_each_clkdm(). Returns -EINVAL if
297 * presented with invalid pointers; -ENOMEM if memory could not be allocated;
298 * or 0 upon success.
300 int pwrdm_add_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm)
302 int i;
303 int ret = -EINVAL;
305 if (!pwrdm || !clkdm)
306 return -EINVAL;
308 pr_debug("powerdomain: associating clockdomain %s with powerdomain "
309 "%s\n", clkdm->name, pwrdm->name);
311 for (i = 0; i < PWRDM_MAX_CLKDMS; i++) {
312 if (!pwrdm->pwrdm_clkdms[i])
313 break;
314 #ifdef DEBUG
315 if (pwrdm->pwrdm_clkdms[i] == clkdm) {
316 ret = -EINVAL;
317 goto pac_exit;
319 #endif
322 if (i == PWRDM_MAX_CLKDMS) {
323 pr_debug("powerdomain: increase PWRDM_MAX_CLKDMS for "
324 "pwrdm %s clkdm %s\n", pwrdm->name, clkdm->name);
325 WARN_ON(1);
326 ret = -ENOMEM;
327 goto pac_exit;
330 pwrdm->pwrdm_clkdms[i] = clkdm;
332 ret = 0;
334 pac_exit:
335 return ret;
339 * pwrdm_del_clkdm - remove a clockdomain from a powerdomain
340 * @pwrdm: struct powerdomain * to add the clockdomain to
341 * @clkdm: struct clockdomain * to associate with a powerdomain
343 * Dissociate the clockdomain @clkdm from the powerdomain
344 * @pwrdm. Returns -EINVAL if presented with invalid pointers; -ENOENT
345 * if @clkdm was not associated with the powerdomain, or 0 upon
346 * success.
348 int pwrdm_del_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm)
350 int ret = -EINVAL;
351 int i;
353 if (!pwrdm || !clkdm)
354 return -EINVAL;
356 pr_debug("powerdomain: dissociating clockdomain %s from powerdomain "
357 "%s\n", clkdm->name, pwrdm->name);
359 for (i = 0; i < PWRDM_MAX_CLKDMS; i++)
360 if (pwrdm->pwrdm_clkdms[i] == clkdm)
361 break;
363 if (i == PWRDM_MAX_CLKDMS) {
364 pr_debug("powerdomain: clkdm %s not associated with pwrdm "
365 "%s ?!\n", clkdm->name, pwrdm->name);
366 ret = -ENOENT;
367 goto pdc_exit;
370 pwrdm->pwrdm_clkdms[i] = NULL;
372 ret = 0;
374 pdc_exit:
375 return ret;
379 * pwrdm_for_each_clkdm - call function on each clkdm in a pwrdm
380 * @pwrdm: struct powerdomain * to iterate over
381 * @fn: callback function *
383 * Call the supplied function @fn for each clockdomain in the powerdomain
384 * @pwrdm. The callback function can return anything but 0 to bail
385 * out early from the iterator. Returns -EINVAL if presented with
386 * invalid pointers; or passes along the last return value of the
387 * callback function, which should be 0 for success or anything else
388 * to indicate failure.
390 int pwrdm_for_each_clkdm(struct powerdomain *pwrdm,
391 int (*fn)(struct powerdomain *pwrdm,
392 struct clockdomain *clkdm))
394 int ret = 0;
395 int i;
397 if (!fn)
398 return -EINVAL;
400 for (i = 0; i < PWRDM_MAX_CLKDMS && !ret; i++)
401 ret = (*fn)(pwrdm, pwrdm->pwrdm_clkdms[i]);
403 return ret;
407 * pwrdm_get_mem_bank_count - get number of memory banks in this powerdomain
408 * @pwrdm: struct powerdomain *
410 * Return the number of controllable memory banks in powerdomain @pwrdm,
411 * starting with 1. Returns -EINVAL if the powerdomain pointer is null.
413 int pwrdm_get_mem_bank_count(struct powerdomain *pwrdm)
415 if (!pwrdm)
416 return -EINVAL;
418 return pwrdm->banks;
422 * pwrdm_set_next_pwrst - set next powerdomain power state
423 * @pwrdm: struct powerdomain * to set
424 * @pwrst: one of the PWRDM_POWER_* macros
426 * Set the powerdomain @pwrdm's next power state to @pwrst. The powerdomain
427 * may not enter this state immediately if the preconditions for this state
428 * have not been satisfied. Returns -EINVAL if the powerdomain pointer is
429 * null or if the power state is invalid for the powerdomin, or returns 0
430 * upon success.
432 int pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst)
434 if (!pwrdm)
435 return -EINVAL;
437 if (!(pwrdm->pwrsts & (1 << pwrst)))
438 return -EINVAL;
440 pr_debug("powerdomain: setting next powerstate for %s to %0x\n",
441 pwrdm->name, pwrst);
443 prm_rmw_mod_reg_bits(OMAP_POWERSTATE_MASK,
444 (pwrst << OMAP_POWERSTATE_SHIFT),
445 pwrdm->prcm_offs, pwrstctrl_reg_offs);
447 return 0;
451 * pwrdm_read_next_pwrst - get next powerdomain power state
452 * @pwrdm: struct powerdomain * to get power state
454 * Return the powerdomain @pwrdm's next power state. Returns -EINVAL
455 * if the powerdomain pointer is null or returns the next power state
456 * upon success.
458 int pwrdm_read_next_pwrst(struct powerdomain *pwrdm)
460 if (!pwrdm)
461 return -EINVAL;
463 return prm_read_mod_bits_shift(pwrdm->prcm_offs,
464 pwrstctrl_reg_offs, OMAP_POWERSTATE_MASK);
468 * pwrdm_read_pwrst - get current powerdomain power state
469 * @pwrdm: struct powerdomain * to get power state
471 * Return the powerdomain @pwrdm's current power state. Returns -EINVAL
472 * if the powerdomain pointer is null or returns the current power state
473 * upon success.
475 int pwrdm_read_pwrst(struct powerdomain *pwrdm)
477 if (!pwrdm)
478 return -EINVAL;
480 return prm_read_mod_bits_shift(pwrdm->prcm_offs,
481 pwrstst_reg_offs, OMAP_POWERSTATEST_MASK);
485 * pwrdm_read_prev_pwrst - get previous powerdomain power state
486 * @pwrdm: struct powerdomain * to get previous power state
488 * Return the powerdomain @pwrdm's previous power state. Returns -EINVAL
489 * if the powerdomain pointer is null or returns the previous power state
490 * upon success.
492 int pwrdm_read_prev_pwrst(struct powerdomain *pwrdm)
494 if (!pwrdm)
495 return -EINVAL;
497 return prm_read_mod_bits_shift(pwrdm->prcm_offs, OMAP3430_PM_PREPWSTST,
498 OMAP3430_LASTPOWERSTATEENTERED_MASK);
502 * pwrdm_set_logic_retst - set powerdomain logic power state upon retention
503 * @pwrdm: struct powerdomain * to set
504 * @pwrst: one of the PWRDM_POWER_* macros
506 * Set the next power state @pwrst that the logic portion of the
507 * powerdomain @pwrdm will enter when the powerdomain enters retention.
508 * This will be either RETENTION or OFF, if supported. Returns
509 * -EINVAL if the powerdomain pointer is null or the target power
510 * state is not not supported, or returns 0 upon success.
512 int pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst)
514 if (!pwrdm)
515 return -EINVAL;
517 if (!(pwrdm->pwrsts_logic_ret & (1 << pwrst)))
518 return -EINVAL;
520 pr_debug("powerdomain: setting next logic powerstate for %s to %0x\n",
521 pwrdm->name, pwrst);
524 * The register bit names below may not correspond to the
525 * actual names of the bits in each powerdomain's register,
526 * but the type of value returned is the same for each
527 * powerdomain.
529 prm_rmw_mod_reg_bits(OMAP3430_LOGICL1CACHERETSTATE,
530 (pwrst << __ffs(OMAP3430_LOGICL1CACHERETSTATE)),
531 pwrdm->prcm_offs, pwrstctrl_reg_offs);
533 return 0;
537 * pwrdm_set_mem_onst - set memory power state while powerdomain ON
538 * @pwrdm: struct powerdomain * to set
539 * @bank: memory bank number to set (0-3)
540 * @pwrst: one of the PWRDM_POWER_* macros
542 * Set the next power state @pwrst that memory bank @bank of the
543 * powerdomain @pwrdm will enter when the powerdomain enters the ON
544 * state. @bank will be a number from 0 to 3, and represents different
545 * types of memory, depending on the powerdomain. Returns -EINVAL if
546 * the powerdomain pointer is null or the target power state is not
547 * not supported for this memory bank, -EEXIST if the target memory
548 * bank does not exist or is not controllable, or returns 0 upon
549 * success.
551 int pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, u8 pwrst)
553 u32 m;
555 if (!pwrdm)
556 return -EINVAL;
558 if (pwrdm->banks < (bank + 1))
559 return -EEXIST;
561 if (!(pwrdm->pwrsts_mem_on[bank] & (1 << pwrst)))
562 return -EINVAL;
564 pr_debug("powerdomain: setting next memory powerstate for domain %s "
565 "bank %0x while pwrdm-ON to %0x\n", pwrdm->name, bank, pwrst);
568 * The register bit names below may not correspond to the
569 * actual names of the bits in each powerdomain's register,
570 * but the type of value returned is the same for each
571 * powerdomain.
573 switch (bank) {
574 case 0:
575 m = OMAP_MEM0_ONSTATE_MASK;
576 break;
577 case 1:
578 m = OMAP_MEM1_ONSTATE_MASK;
579 break;
580 case 2:
581 m = OMAP_MEM2_ONSTATE_MASK;
582 break;
583 case 3:
584 m = OMAP_MEM3_ONSTATE_MASK;
585 break;
586 case 4:
587 m = OMAP_MEM4_ONSTATE_MASK;
588 break;
589 default:
590 WARN_ON(1); /* should never happen */
591 return -EEXIST;
594 prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)),
595 pwrdm->prcm_offs, pwrstctrl_reg_offs);
597 return 0;
601 * pwrdm_set_mem_retst - set memory power state while powerdomain in RET
602 * @pwrdm: struct powerdomain * to set
603 * @bank: memory bank number to set (0-3)
604 * @pwrst: one of the PWRDM_POWER_* macros
606 * Set the next power state @pwrst that memory bank @bank of the
607 * powerdomain @pwrdm will enter when the powerdomain enters the
608 * RETENTION state. Bank will be a number from 0 to 3, and represents
609 * different types of memory, depending on the powerdomain. @pwrst
610 * will be either RETENTION or OFF, if supported. Returns -EINVAL if
611 * the powerdomain pointer is null or the target power state is not
612 * not supported for this memory bank, -EEXIST if the target memory
613 * bank does not exist or is not controllable, or returns 0 upon
614 * success.
616 int pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, u8 pwrst)
618 u32 m;
620 if (!pwrdm)
621 return -EINVAL;
623 if (pwrdm->banks < (bank + 1))
624 return -EEXIST;
626 if (!(pwrdm->pwrsts_mem_ret[bank] & (1 << pwrst)))
627 return -EINVAL;
629 pr_debug("powerdomain: setting next memory powerstate for domain %s "
630 "bank %0x while pwrdm-RET to %0x\n", pwrdm->name, bank, pwrst);
633 * The register bit names below may not correspond to the
634 * actual names of the bits in each powerdomain's register,
635 * but the type of value returned is the same for each
636 * powerdomain.
638 switch (bank) {
639 case 0:
640 m = OMAP_MEM0_RETSTATE_MASK;
641 break;
642 case 1:
643 m = OMAP_MEM1_RETSTATE_MASK;
644 break;
645 case 2:
646 m = OMAP_MEM2_RETSTATE_MASK;
647 break;
648 case 3:
649 m = OMAP_MEM3_RETSTATE_MASK;
650 break;
651 case 4:
652 m = OMAP_MEM4_RETSTATE_MASK;
653 break;
654 default:
655 WARN_ON(1); /* should never happen */
656 return -EEXIST;
659 prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs,
660 pwrstctrl_reg_offs);
662 return 0;
666 * pwrdm_read_logic_pwrst - get current powerdomain logic retention power state
667 * @pwrdm: struct powerdomain * to get current logic retention power state
669 * Return the power state that the logic portion of powerdomain @pwrdm
670 * will enter when the powerdomain enters retention. Returns -EINVAL
671 * if the powerdomain pointer is null or returns the logic retention
672 * power state upon success.
674 int pwrdm_read_logic_pwrst(struct powerdomain *pwrdm)
676 if (!pwrdm)
677 return -EINVAL;
679 return prm_read_mod_bits_shift(pwrdm->prcm_offs,
680 pwrstst_reg_offs, OMAP3430_LOGICSTATEST);
684 * pwrdm_read_prev_logic_pwrst - get previous powerdomain logic power state
685 * @pwrdm: struct powerdomain * to get previous logic power state
687 * Return the powerdomain @pwrdm's previous logic power state. Returns
688 * -EINVAL if the powerdomain pointer is null or returns the previous
689 * logic power state upon success.
691 int pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm)
693 if (!pwrdm)
694 return -EINVAL;
697 * The register bit names below may not correspond to the
698 * actual names of the bits in each powerdomain's register,
699 * but the type of value returned is the same for each
700 * powerdomain.
702 return prm_read_mod_bits_shift(pwrdm->prcm_offs, OMAP3430_PM_PREPWSTST,
703 OMAP3430_LASTLOGICSTATEENTERED);
707 * pwrdm_read_logic_retst - get next powerdomain logic power state
708 * @pwrdm: struct powerdomain * to get next logic power state
710 * Return the powerdomain pwrdm's logic power state. Returns -EINVAL
711 * if the powerdomain pointer is null or returns the next logic
712 * power state upon success.
714 int pwrdm_read_logic_retst(struct powerdomain *pwrdm)
716 if (!pwrdm)
717 return -EINVAL;
720 * The register bit names below may not correspond to the
721 * actual names of the bits in each powerdomain's register,
722 * but the type of value returned is the same for each
723 * powerdomain.
725 return prm_read_mod_bits_shift(pwrdm->prcm_offs, pwrstctrl_reg_offs,
726 OMAP3430_LOGICSTATEST);
730 * pwrdm_read_mem_pwrst - get current memory bank power state
731 * @pwrdm: struct powerdomain * to get current memory bank power state
732 * @bank: memory bank number (0-3)
734 * Return the powerdomain @pwrdm's current memory power state for bank
735 * @bank. Returns -EINVAL if the powerdomain pointer is null, -EEXIST if
736 * the target memory bank does not exist or is not controllable, or
737 * returns the current memory power state upon success.
739 int pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank)
741 u32 m;
743 if (!pwrdm)
744 return -EINVAL;
746 if (pwrdm->banks < (bank + 1))
747 return -EEXIST;
749 if (pwrdm->flags & PWRDM_HAS_MPU_QUIRK)
750 bank = 1;
753 * The register bit names below may not correspond to the
754 * actual names of the bits in each powerdomain's register,
755 * but the type of value returned is the same for each
756 * powerdomain.
758 switch (bank) {
759 case 0:
760 m = OMAP_MEM0_STATEST_MASK;
761 break;
762 case 1:
763 m = OMAP_MEM1_STATEST_MASK;
764 break;
765 case 2:
766 m = OMAP_MEM2_STATEST_MASK;
767 break;
768 case 3:
769 m = OMAP_MEM3_STATEST_MASK;
770 break;
771 case 4:
772 m = OMAP_MEM4_STATEST_MASK;
773 break;
774 default:
775 WARN_ON(1); /* should never happen */
776 return -EEXIST;
779 return prm_read_mod_bits_shift(pwrdm->prcm_offs,
780 pwrstst_reg_offs, m);
784 * pwrdm_read_prev_mem_pwrst - get previous memory bank power state
785 * @pwrdm: struct powerdomain * to get previous memory bank power state
786 * @bank: memory bank number (0-3)
788 * Return the powerdomain @pwrdm's previous memory power state for
789 * bank @bank. Returns -EINVAL if the powerdomain pointer is null,
790 * -EEXIST if the target memory bank does not exist or is not
791 * controllable, or returns the previous memory power state upon
792 * success.
794 int pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank)
796 u32 m;
798 if (!pwrdm)
799 return -EINVAL;
801 if (pwrdm->banks < (bank + 1))
802 return -EEXIST;
804 if (pwrdm->flags & PWRDM_HAS_MPU_QUIRK)
805 bank = 1;
808 * The register bit names below may not correspond to the
809 * actual names of the bits in each powerdomain's register,
810 * but the type of value returned is the same for each
811 * powerdomain.
813 switch (bank) {
814 case 0:
815 m = OMAP3430_LASTMEM1STATEENTERED_MASK;
816 break;
817 case 1:
818 m = OMAP3430_LASTMEM2STATEENTERED_MASK;
819 break;
820 case 2:
821 m = OMAP3430_LASTSHAREDL2CACHEFLATSTATEENTERED_MASK;
822 break;
823 case 3:
824 m = OMAP3430_LASTL2FLATMEMSTATEENTERED_MASK;
825 break;
826 default:
827 WARN_ON(1); /* should never happen */
828 return -EEXIST;
831 return prm_read_mod_bits_shift(pwrdm->prcm_offs,
832 OMAP3430_PM_PREPWSTST, m);
836 * pwrdm_read_mem_retst - get next memory bank power state
837 * @pwrdm: struct powerdomain * to get mext memory bank power state
838 * @bank: memory bank number (0-3)
840 * Return the powerdomain pwrdm's next memory power state for bank
841 * x. Returns -EINVAL if the powerdomain pointer is null, -EEXIST if
842 * the target memory bank does not exist or is not controllable, or
843 * returns the next memory power state upon success.
845 int pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank)
847 u32 m;
849 if (!pwrdm)
850 return -EINVAL;
852 if (pwrdm->banks < (bank + 1))
853 return -EEXIST;
856 * The register bit names below may not correspond to the
857 * actual names of the bits in each powerdomain's register,
858 * but the type of value returned is the same for each
859 * powerdomain.
861 switch (bank) {
862 case 0:
863 m = OMAP_MEM0_RETSTATE_MASK;
864 break;
865 case 1:
866 m = OMAP_MEM1_RETSTATE_MASK;
867 break;
868 case 2:
869 m = OMAP_MEM2_RETSTATE_MASK;
870 break;
871 case 3:
872 m = OMAP_MEM3_RETSTATE_MASK;
873 break;
874 case 4:
875 m = OMAP_MEM4_RETSTATE_MASK;
876 default:
877 WARN_ON(1); /* should never happen */
878 return -EEXIST;
881 return prm_read_mod_bits_shift(pwrdm->prcm_offs,
882 pwrstctrl_reg_offs, m);
886 * pwrdm_clear_all_prev_pwrst - clear previous powerstate register for a pwrdm
887 * @pwrdm: struct powerdomain * to clear
889 * Clear the powerdomain's previous power state register @pwrdm.
890 * Clears the entire register, including logic and memory bank
891 * previous power states. Returns -EINVAL if the powerdomain pointer
892 * is null, or returns 0 upon success.
894 int pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm)
896 if (!pwrdm)
897 return -EINVAL;
900 * XXX should get the powerdomain's current state here;
901 * warn & fail if it is not ON.
904 pr_debug("powerdomain: clearing previous power state reg for %s\n",
905 pwrdm->name);
907 prm_write_mod_reg(0, pwrdm->prcm_offs, OMAP3430_PM_PREPWSTST);
909 return 0;
913 * pwrdm_enable_hdwr_sar - enable automatic hardware SAR for a pwrdm
914 * @pwrdm: struct powerdomain *
916 * Enable automatic context save-and-restore upon power state change
917 * for some devices in the powerdomain @pwrdm. Warning: this only
918 * affects a subset of devices in a powerdomain; check the TRM
919 * closely. Returns -EINVAL if the powerdomain pointer is null or if
920 * the powerdomain does not support automatic save-and-restore, or
921 * returns 0 upon success.
923 int pwrdm_enable_hdwr_sar(struct powerdomain *pwrdm)
925 if (!pwrdm)
926 return -EINVAL;
928 if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR))
929 return -EINVAL;
931 pr_debug("powerdomain: %s: setting SAVEANDRESTORE bit\n",
932 pwrdm->name);
934 prm_rmw_mod_reg_bits(0, 1 << OMAP3430ES2_SAVEANDRESTORE_SHIFT,
935 pwrdm->prcm_offs, pwrstctrl_reg_offs);
937 return 0;
941 * pwrdm_disable_hdwr_sar - disable automatic hardware SAR for a pwrdm
942 * @pwrdm: struct powerdomain *
944 * Disable automatic context save-and-restore upon power state change
945 * for some devices in the powerdomain @pwrdm. Warning: this only
946 * affects a subset of devices in a powerdomain; check the TRM
947 * closely. Returns -EINVAL if the powerdomain pointer is null or if
948 * the powerdomain does not support automatic save-and-restore, or
949 * returns 0 upon success.
951 int pwrdm_disable_hdwr_sar(struct powerdomain *pwrdm)
953 if (!pwrdm)
954 return -EINVAL;
956 if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR))
957 return -EINVAL;
959 pr_debug("powerdomain: %s: clearing SAVEANDRESTORE bit\n",
960 pwrdm->name);
962 prm_rmw_mod_reg_bits(1 << OMAP3430ES2_SAVEANDRESTORE_SHIFT, 0,
963 pwrdm->prcm_offs, pwrstctrl_reg_offs);
965 return 0;
969 * pwrdm_has_hdwr_sar - test whether powerdomain supports hardware SAR
970 * @pwrdm: struct powerdomain *
972 * Returns 1 if powerdomain @pwrdm supports hardware save-and-restore
973 * for some devices, or 0 if it does not.
975 bool pwrdm_has_hdwr_sar(struct powerdomain *pwrdm)
977 return (pwrdm && pwrdm->flags & PWRDM_HAS_HDWR_SAR) ? 1 : 0;
981 * pwrdm_wait_transition - wait for powerdomain power transition to finish
982 * @pwrdm: struct powerdomain * to wait for
984 * If the powerdomain @pwrdm is in the process of a state transition,
985 * spin until it completes the power transition, or until an iteration
986 * bailout value is reached. Returns -EINVAL if the powerdomain
987 * pointer is null, -EAGAIN if the bailout value was reached, or
988 * returns 0 upon success.
990 int pwrdm_wait_transition(struct powerdomain *pwrdm)
992 u32 c = 0;
994 if (!pwrdm)
995 return -EINVAL;
998 * REVISIT: pwrdm_wait_transition() may be better implemented
999 * via a callback and a periodic timer check -- how long do we expect
1000 * powerdomain transitions to take?
1003 /* XXX Is this udelay() value meaningful? */
1004 while ((prm_read_mod_reg(pwrdm->prcm_offs, pwrstst_reg_offs) &
1005 OMAP_INTRANSITION) &&
1006 (c++ < PWRDM_TRANSITION_BAILOUT))
1007 udelay(1);
1009 if (c > PWRDM_TRANSITION_BAILOUT) {
1010 printk(KERN_ERR "powerdomain: waited too long for "
1011 "powerdomain %s to complete transition\n", pwrdm->name);
1012 return -EAGAIN;
1015 pr_debug("powerdomain: completed transition in %d loops\n", c);
1017 return 0;
1020 int pwrdm_state_switch(struct powerdomain *pwrdm)
1022 return _pwrdm_state_switch(pwrdm, PWRDM_STATE_NOW);
1025 int pwrdm_clkdm_state_switch(struct clockdomain *clkdm)
1027 if (clkdm != NULL && clkdm->pwrdm.ptr != NULL) {
1028 pwrdm_wait_transition(clkdm->pwrdm.ptr);
1029 return pwrdm_state_switch(clkdm->pwrdm.ptr);
1032 return -EINVAL;
1035 int pwrdm_pre_transition(void)
1037 pwrdm_for_each(_pwrdm_pre_transition_cb, NULL);
1038 return 0;
1041 int pwrdm_post_transition(void)
1043 pwrdm_for_each(_pwrdm_post_transition_cb, NULL);
1044 return 0;