Merge branches 'topic/sc18is602' and 'topic/rspi' of git://git.kernel.org/pub/scm...
[linux-block.git] / arch / arm / mach-omap2 / powerdomain.c
CommitLineData
ad67ef68
PW
1/*
2 * OMAP powerdomain control
3 *
129c65ee 4 * Copyright (C) 2007-2008, 2011 Texas Instruments, Inc.
694606c4 5 * Copyright (C) 2007-2011 Nokia Corporation
ad67ef68
PW
6 *
7 * Written by Paul Walmsley
3a759f09 8 * Added OMAP4 specific support by Abhijit Pagare <abhijitpagare@ti.com>
4788da26 9 * State counting code by Tero Kristo <tero.kristo@nokia.com>
3a759f09 10 *
ad67ef68
PW
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.
14 */
33903eb5 15#undef DEBUG
ad67ef68
PW
16
17#include <linux/kernel.h>
ad67ef68 18#include <linux/types.h>
ad67ef68
PW
19#include <linux/list.h>
20#include <linux/errno.h>
9b7fc907 21#include <linux/string.h>
3a090284 22#include <linux/spinlock.h>
5e7c58dc
JP
23#include <trace/events/power.h>
24
59fb659b 25#include "cm2xxx_3xxx.h"
a64bb9cd 26#include "prcm44xx.h"
59fb659b
PW
27#include "cm44xx.h"
28#include "prm2xxx_3xxx.h"
d198b514 29#include "prm44xx.h"
ad67ef68 30
5e7c58dc 31#include <asm/cpu.h>
dbc04161 32
72e06d08 33#include "powerdomain.h"
1540f214 34#include "clockdomain.h"
ad67ef68 35
dbc04161 36#include "soc.h"
6199ab26
PDS
37#include "pm.h"
38
5e7c58dc
JP
39#define PWRDM_TRACE_STATES_FLAG (1<<31)
40
ba20bb12
PDS
41enum {
42 PWRDM_STATE_NOW = 0,
43 PWRDM_STATE_PREV,
44};
45
c4978fba
PW
46/*
47 * Types of sleep_switch used internally in omap_set_pwrdm_state()
48 * and its associated static functions
49 *
50 * XXX Better documentation is needed here
51 */
52#define ALREADYACTIVE_SWITCH 0
53#define FORCEWAKEUP_SWITCH 1
54#define LOWPOWERSTATE_SWITCH 2
3a759f09 55
ad67ef68
PW
56/* pwrdm_list contains all registered struct powerdomains */
57static LIST_HEAD(pwrdm_list);
58
3b1e8b21
RN
59static struct pwrdm_ops *arch_pwrdm;
60
ad67ef68
PW
61/* Private functions */
62
ad67ef68
PW
63static struct powerdomain *_pwrdm_lookup(const char *name)
64{
65 struct powerdomain *pwrdm, *temp_pwrdm;
66
67 pwrdm = NULL;
68
69 list_for_each_entry(temp_pwrdm, &pwrdm_list, node) {
70 if (!strcmp(name, temp_pwrdm->name)) {
71 pwrdm = temp_pwrdm;
72 break;
73 }
74 }
75
76 return pwrdm;
77}
78
e909d62a
PW
79/**
80 * _pwrdm_register - register a powerdomain
81 * @pwrdm: struct powerdomain * to register
82 *
83 * Adds a powerdomain to the internal powerdomain list. Returns
84 * -EINVAL if given a null pointer, -EEXIST if a powerdomain is
85 * already registered by the provided name, or 0 upon success.
86 */
87static int _pwrdm_register(struct powerdomain *pwrdm)
88{
89 int i;
048a7034 90 struct voltagedomain *voltdm;
e909d62a 91
a64bb9cd 92 if (!pwrdm || !pwrdm->name)
e909d62a
PW
93 return -EINVAL;
94
a64bb9cd
PW
95 if (cpu_is_omap44xx() &&
96 pwrdm->prcm_partition == OMAP4430_INVALID_PRCM_PARTITION) {
97 pr_err("powerdomain: %s: missing OMAP4 PRCM partition ID\n",
98 pwrdm->name);
99 return -EINVAL;
100 }
101
e909d62a
PW
102 if (_pwrdm_lookup(pwrdm->name))
103 return -EEXIST;
104
cd8abed1
RN
105 if (arch_pwrdm && arch_pwrdm->pwrdm_has_voltdm)
106 if (!arch_pwrdm->pwrdm_has_voltdm())
107 goto skip_voltdm;
108
048a7034
KH
109 voltdm = voltdm_lookup(pwrdm->voltdm.name);
110 if (!voltdm) {
111 pr_err("powerdomain: %s: voltagedomain %s does not exist\n",
112 pwrdm->name, pwrdm->voltdm.name);
113 return -EINVAL;
114 }
115 pwrdm->voltdm.ptr = voltdm;
e69c22b1
KH
116 INIT_LIST_HEAD(&pwrdm->voltdm_node);
117 voltdm_add_pwrdm(voltdm, pwrdm);
cd8abed1 118skip_voltdm:
3a090284 119 spin_lock_init(&pwrdm->_lock);
048a7034 120
e909d62a
PW
121 list_add(&pwrdm->node, &pwrdm_list);
122
123 /* Initialize the powerdomain's state counter */
cf57aa7c 124 for (i = 0; i < PWRDM_MAX_PWRSTS; i++)
e909d62a
PW
125 pwrdm->state_counter[i] = 0;
126
cde08f81
TG
127 pwrdm->ret_logic_off_counter = 0;
128 for (i = 0; i < pwrdm->banks; i++)
129 pwrdm->ret_mem_off_counter[i] = 0;
130
1cfc4bdd
RN
131 if (arch_pwrdm && arch_pwrdm->pwrdm_wait_transition)
132 arch_pwrdm->pwrdm_wait_transition(pwrdm);
e909d62a
PW
133 pwrdm->state = pwrdm_read_pwrst(pwrdm);
134 pwrdm->state_counter[pwrdm->state] = 1;
135
136 pr_debug("powerdomain: registered %s\n", pwrdm->name);
137
138 return 0;
139}
140
cde08f81
TG
141static void _update_logic_membank_counters(struct powerdomain *pwrdm)
142{
143 int i;
144 u8 prev_logic_pwrst, prev_mem_pwrst;
145
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++;
150
151 for (i = 0; i < pwrdm->banks; i++) {
152 prev_mem_pwrst = pwrdm_read_prev_mem_pwrst(pwrdm, i);
153
154 if ((pwrdm->pwrsts_mem_ret[i] == PWRSTS_OFF_RET) &&
155 (prev_mem_pwrst == PWRDM_POWER_OFF))
156 pwrdm->ret_mem_off_counter[i]++;
157 }
158}
159
ba20bb12
PDS
160static int _pwrdm_state_switch(struct powerdomain *pwrdm, int flag)
161{
162
c165a140 163 int prev, next, state, trace_state = 0;
ba20bb12
PDS
164
165 if (pwrdm == NULL)
166 return -EINVAL;
167
168 state = pwrdm_read_pwrst(pwrdm);
169
170 switch (flag) {
171 case PWRDM_STATE_NOW:
172 prev = pwrdm->state;
173 break;
174 case PWRDM_STATE_PREV:
175 prev = pwrdm_read_prev_pwrst(pwrdm);
176 if (pwrdm->state != prev)
177 pwrdm->state_counter[prev]++;
cde08f81
TG
178 if (prev == PWRDM_POWER_RET)
179 _update_logic_membank_counters(pwrdm);
5e7c58dc
JP
180 /*
181 * If the power domain did not hit the desired state,
182 * generate a trace event with both the desired and hit states
183 */
c165a140
JP
184 next = pwrdm_read_next_pwrst(pwrdm);
185 if (next != prev) {
5e7c58dc 186 trace_state = (PWRDM_TRACE_STATES_FLAG |
c165a140 187 ((next & OMAP_POWERSTATE_MASK) << 8) |
5e7c58dc
JP
188 ((prev & OMAP_POWERSTATE_MASK) << 0));
189 trace_power_domain_target(pwrdm->name, trace_state,
190 smp_processor_id());
191 }
ba20bb12
PDS
192 break;
193 default:
194 return -EINVAL;
195 }
196
197 if (state != prev)
198 pwrdm->state_counter[state]++;
199
6199ab26
PDS
200 pm_dbg_update_time(pwrdm, prev);
201
ba20bb12
PDS
202 pwrdm->state = state;
203
204 return 0;
205}
206
6199ab26 207static int _pwrdm_pre_transition_cb(struct powerdomain *pwrdm, void *unused)
ba20bb12
PDS
208{
209 pwrdm_clear_all_prev_pwrst(pwrdm);
210 _pwrdm_state_switch(pwrdm, PWRDM_STATE_NOW);
211 return 0;
212}
213
6199ab26 214static int _pwrdm_post_transition_cb(struct powerdomain *pwrdm, void *unused)
ba20bb12
PDS
215{
216 _pwrdm_state_switch(pwrdm, PWRDM_STATE_PREV);
217 return 0;
218}
219
c4978fba
PW
220/**
221 * _pwrdm_save_clkdm_state_and_activate - prepare for power state change
222 * @pwrdm: struct powerdomain * to operate on
223 * @curr_pwrst: current power state of @pwrdm
224 * @pwrst: power state to switch to
225 * @hwsup: ptr to a bool to return whether the clkdm is hardware-supervised
226 *
227 * Determine whether the powerdomain needs to be turned on before
228 * attempting to switch power states. Called by
229 * omap_set_pwrdm_state(). NOTE that if the powerdomain contains
230 * multiple clockdomains, this code assumes that the first clockdomain
231 * supports software-supervised wakeup mode - potentially a problem.
232 * Returns the power state switch mode currently in use (see the
233 * "Types of sleep_switch" comment above).
234 */
235static u8 _pwrdm_save_clkdm_state_and_activate(struct powerdomain *pwrdm,
236 u8 curr_pwrst, u8 pwrst,
237 bool *hwsup)
238{
239 u8 sleep_switch;
240
bd70f6eb 241 if (curr_pwrst < PWRDM_POWER_ON) {
c4978fba
PW
242 if (curr_pwrst > pwrst &&
243 pwrdm->flags & PWRDM_HAS_LOWPOWERSTATECHANGE &&
244 arch_pwrdm->pwrdm_set_lowpwrstchange) {
245 sleep_switch = LOWPOWERSTATE_SWITCH;
246 } else {
247 *hwsup = clkdm_in_hwsup(pwrdm->pwrdm_clkdms[0]);
3a090284 248 clkdm_wakeup_nolock(pwrdm->pwrdm_clkdms[0]);
c4978fba
PW
249 sleep_switch = FORCEWAKEUP_SWITCH;
250 }
251 } else {
252 sleep_switch = ALREADYACTIVE_SWITCH;
253 }
254
255 return sleep_switch;
256}
257
258/**
259 * _pwrdm_restore_clkdm_state - restore the clkdm hwsup state after pwrst change
260 * @pwrdm: struct powerdomain * to operate on
261 * @sleep_switch: return value from _pwrdm_save_clkdm_state_and_activate()
262 * @hwsup: should @pwrdm's first clockdomain be set to hardware-supervised mode?
263 *
264 * Restore the clockdomain state perturbed by
265 * _pwrdm_save_clkdm_state_and_activate(), and call the power state
266 * bookkeeping code. Called by omap_set_pwrdm_state(). NOTE that if
267 * the powerdomain contains multiple clockdomains, this assumes that
268 * the first associated clockdomain supports either
269 * hardware-supervised idle control in the register, or
270 * software-supervised sleep. No return value.
271 */
272static void _pwrdm_restore_clkdm_state(struct powerdomain *pwrdm,
273 u8 sleep_switch, bool hwsup)
274{
275 switch (sleep_switch) {
276 case FORCEWAKEUP_SWITCH:
277 if (hwsup)
3a090284 278 clkdm_allow_idle_nolock(pwrdm->pwrdm_clkdms[0]);
c4978fba 279 else
3a090284 280 clkdm_sleep_nolock(pwrdm->pwrdm_clkdms[0]);
c4978fba
PW
281 break;
282 case LOWPOWERSTATE_SWITCH:
283 if (pwrdm->flags & PWRDM_HAS_LOWPOWERSTATECHANGE &&
284 arch_pwrdm->pwrdm_set_lowpwrstchange)
285 arch_pwrdm->pwrdm_set_lowpwrstchange(pwrdm);
3a090284 286 pwrdm_state_switch_nolock(pwrdm);
c4978fba
PW
287 break;
288 }
289}
290
ad67ef68
PW
291/* Public functions */
292
293/**
129c65ee
PW
294 * pwrdm_register_platform_funcs - register powerdomain implementation fns
295 * @po: func pointers for arch specific implementations
ad67ef68 296 *
129c65ee
PW
297 * Register the list of function pointers used to implement the
298 * powerdomain functions on different OMAP SoCs. Should be called
299 * before any other pwrdm_register*() function. Returns -EINVAL if
300 * @po is null, -EEXIST if platform functions have already been
301 * registered, or 0 upon success.
ad67ef68 302 */
129c65ee
PW
303int pwrdm_register_platform_funcs(struct pwrdm_ops *po)
304{
305 if (!po)
306 return -EINVAL;
307
308 if (arch_pwrdm)
309 return -EEXIST;
310
311 arch_pwrdm = po;
312
313 return 0;
314}
315
316/**
317 * pwrdm_register_pwrdms - register SoC powerdomains
318 * @ps: pointer to an array of struct powerdomain to register
319 *
320 * Register the powerdomains available on a particular OMAP SoC. Must
321 * be called after pwrdm_register_platform_funcs(). May be called
322 * multiple times. Returns -EACCES if called before
323 * pwrdm_register_platform_funcs(); -EINVAL if the argument @ps is
324 * null; or 0 upon success.
325 */
326int pwrdm_register_pwrdms(struct powerdomain **ps)
ad67ef68
PW
327{
328 struct powerdomain **p = NULL;
329
129c65ee
PW
330 if (!arch_pwrdm)
331 return -EEXIST;
3b1e8b21 332
129c65ee
PW
333 if (!ps)
334 return -EINVAL;
335
336 for (p = ps; *p; p++)
337 _pwrdm_register(*p);
338
339 return 0;
340}
341
342/**
343 * pwrdm_complete_init - set up the powerdomain layer
344 *
345 * Do whatever is necessary to initialize registered powerdomains and
346 * powerdomain code. Currently, this programs the next power state
347 * for each powerdomain to ON. This prevents powerdomains from
348 * unexpectedly losing context or entering high wakeup latency modes
349 * with non-power-management-enabled kernels. Must be called after
350 * pwrdm_register_pwrdms(). Returns -EACCES if called before
351 * pwrdm_register_pwrdms(), or 0 upon success.
352 */
353int pwrdm_complete_init(void)
354{
355 struct powerdomain *temp_p;
356
357 if (list_empty(&pwrdm_list))
358 return -EACCES;
c956b753
RN
359
360 list_for_each_entry(temp_p, &pwrdm_list, node)
361 pwrdm_set_next_pwrst(temp_p, PWRDM_POWER_ON);
129c65ee
PW
362
363 return 0;
ad67ef68
PW
364}
365
3a090284
PW
366/**
367 * pwrdm_lock - acquire a Linux spinlock on a powerdomain
368 * @pwrdm: struct powerdomain * to lock
369 *
370 * Acquire the powerdomain spinlock on @pwrdm. No return value.
371 */
372void pwrdm_lock(struct powerdomain *pwrdm)
373 __acquires(&pwrdm->_lock)
374{
375 spin_lock_irqsave(&pwrdm->_lock, pwrdm->_lock_flags);
376}
377
378/**
379 * pwrdm_unlock - release a Linux spinlock on a powerdomain
380 * @pwrdm: struct powerdomain * to unlock
381 *
382 * Release the powerdomain spinlock on @pwrdm. No return value.
383 */
384void pwrdm_unlock(struct powerdomain *pwrdm)
385 __releases(&pwrdm->_lock)
386{
387 spin_unlock_irqrestore(&pwrdm->_lock, pwrdm->_lock_flags);
388}
389
ad67ef68
PW
390/**
391 * pwrdm_lookup - look up a powerdomain by name, return a pointer
392 * @name: name of powerdomain
393 *
f0271d65
PW
394 * Find a registered powerdomain by its name @name. Returns a pointer
395 * to the struct powerdomain if found, or NULL otherwise.
ad67ef68
PW
396 */
397struct powerdomain *pwrdm_lookup(const char *name)
398{
399 struct powerdomain *pwrdm;
ad67ef68
PW
400
401 if (!name)
402 return NULL;
403
ad67ef68 404 pwrdm = _pwrdm_lookup(name);
ad67ef68
PW
405
406 return pwrdm;
407}
408
409/**
e909d62a 410 * pwrdm_for_each - call function on each registered clockdomain
ad67ef68
PW
411 * @fn: callback function *
412 *
f0271d65
PW
413 * Call the supplied function @fn for each registered powerdomain.
414 * The callback function @fn can return anything but 0 to bail out
415 * early from the iterator. Returns the last return value of the
416 * callback function, which should be 0 for success or anything else
417 * to indicate failure; or -EINVAL if the function pointer is null.
ad67ef68 418 */
e909d62a
PW
419int pwrdm_for_each(int (*fn)(struct powerdomain *pwrdm, void *user),
420 void *user)
ad67ef68
PW
421{
422 struct powerdomain *temp_pwrdm;
ad67ef68
PW
423 int ret = 0;
424
425 if (!fn)
426 return -EINVAL;
427
ad67ef68 428 list_for_each_entry(temp_pwrdm, &pwrdm_list, node) {
6199ab26 429 ret = (*fn)(temp_pwrdm, user);
ad67ef68
PW
430 if (ret)
431 break;
432 }
ee894b18
AB
433
434 return ret;
435}
436
8420bb13
PW
437/**
438 * pwrdm_add_clkdm - add a clockdomain to a powerdomain
439 * @pwrdm: struct powerdomain * to add the clockdomain to
440 * @clkdm: struct clockdomain * to associate with a powerdomain
441 *
f0271d65 442 * Associate the clockdomain @clkdm with a powerdomain @pwrdm. This
8420bb13
PW
443 * enables the use of pwrdm_for_each_clkdm(). Returns -EINVAL if
444 * presented with invalid pointers; -ENOMEM if memory could not be allocated;
445 * or 0 upon success.
446 */
447int pwrdm_add_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm)
448{
8420bb13
PW
449 int i;
450 int ret = -EINVAL;
451
452 if (!pwrdm || !clkdm)
453 return -EINVAL;
454
7852ec05
PW
455 pr_debug("powerdomain: %s: associating clockdomain %s\n",
456 pwrdm->name, clkdm->name);
8420bb13 457
8420bb13
PW
458 for (i = 0; i < PWRDM_MAX_CLKDMS; i++) {
459 if (!pwrdm->pwrdm_clkdms[i])
460 break;
461#ifdef DEBUG
462 if (pwrdm->pwrdm_clkdms[i] == clkdm) {
463 ret = -EINVAL;
464 goto pac_exit;
465 }
466#endif
467 }
468
469 if (i == PWRDM_MAX_CLKDMS) {
7852ec05
PW
470 pr_debug("powerdomain: %s: increase PWRDM_MAX_CLKDMS for clkdm %s\n",
471 pwrdm->name, clkdm->name);
8420bb13
PW
472 WARN_ON(1);
473 ret = -ENOMEM;
474 goto pac_exit;
475 }
476
477 pwrdm->pwrdm_clkdms[i] = clkdm;
478
479 ret = 0;
480
481pac_exit:
8420bb13
PW
482 return ret;
483}
484
485/**
486 * pwrdm_del_clkdm - remove a clockdomain from a powerdomain
487 * @pwrdm: struct powerdomain * to add the clockdomain to
488 * @clkdm: struct clockdomain * to associate with a powerdomain
489 *
f0271d65
PW
490 * Dissociate the clockdomain @clkdm from the powerdomain
491 * @pwrdm. Returns -EINVAL if presented with invalid pointers; -ENOENT
492 * if @clkdm was not associated with the powerdomain, or 0 upon
493 * success.
8420bb13
PW
494 */
495int pwrdm_del_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm)
496{
8420bb13
PW
497 int ret = -EINVAL;
498 int i;
499
500 if (!pwrdm || !clkdm)
501 return -EINVAL;
502
7852ec05
PW
503 pr_debug("powerdomain: %s: dissociating clockdomain %s\n",
504 pwrdm->name, clkdm->name);
8420bb13 505
8420bb13
PW
506 for (i = 0; i < PWRDM_MAX_CLKDMS; i++)
507 if (pwrdm->pwrdm_clkdms[i] == clkdm)
508 break;
509
510 if (i == PWRDM_MAX_CLKDMS) {
7852ec05
PW
511 pr_debug("powerdomain: %s: clkdm %s not associated?!\n",
512 pwrdm->name, clkdm->name);
8420bb13
PW
513 ret = -ENOENT;
514 goto pdc_exit;
515 }
516
517 pwrdm->pwrdm_clkdms[i] = NULL;
518
519 ret = 0;
520
521pdc_exit:
8420bb13
PW
522 return ret;
523}
524
525/**
526 * pwrdm_for_each_clkdm - call function on each clkdm in a pwrdm
527 * @pwrdm: struct powerdomain * to iterate over
528 * @fn: callback function *
529 *
f0271d65
PW
530 * Call the supplied function @fn for each clockdomain in the powerdomain
531 * @pwrdm. The callback function can return anything but 0 to bail
e909d62a
PW
532 * out early from the iterator. Returns -EINVAL if presented with
533 * invalid pointers; or passes along the last return value of the
534 * callback function, which should be 0 for success or anything else
535 * to indicate failure.
8420bb13
PW
536 */
537int pwrdm_for_each_clkdm(struct powerdomain *pwrdm,
538 int (*fn)(struct powerdomain *pwrdm,
539 struct clockdomain *clkdm))
540{
8420bb13
PW
541 int ret = 0;
542 int i;
543
544 if (!fn)
545 return -EINVAL;
546
8420bb13
PW
547 for (i = 0; i < PWRDM_MAX_CLKDMS && !ret; i++)
548 ret = (*fn)(pwrdm, pwrdm->pwrdm_clkdms[i]);
549
8420bb13
PW
550 return ret;
551}
552
048a7034
KH
553/**
554 * pwrdm_get_voltdm - return a ptr to the voltdm that this pwrdm resides in
555 * @pwrdm: struct powerdomain *
556 *
557 * Return a pointer to the struct voltageomain that the specified powerdomain
558 * @pwrdm exists in.
559 */
560struct voltagedomain *pwrdm_get_voltdm(struct powerdomain *pwrdm)
561{
562 return pwrdm->voltdm.ptr;
563}
564
ad67ef68
PW
565/**
566 * pwrdm_get_mem_bank_count - get number of memory banks in this powerdomain
567 * @pwrdm: struct powerdomain *
568 *
f0271d65 569 * Return the number of controllable memory banks in powerdomain @pwrdm,
ad67ef68
PW
570 * starting with 1. Returns -EINVAL if the powerdomain pointer is null.
571 */
572int pwrdm_get_mem_bank_count(struct powerdomain *pwrdm)
573{
574 if (!pwrdm)
575 return -EINVAL;
576
577 return pwrdm->banks;
578}
579
580/**
581 * pwrdm_set_next_pwrst - set next powerdomain power state
582 * @pwrdm: struct powerdomain * to set
583 * @pwrst: one of the PWRDM_POWER_* macros
584 *
f0271d65 585 * Set the powerdomain @pwrdm's next power state to @pwrst. The powerdomain
ad67ef68
PW
586 * may not enter this state immediately if the preconditions for this state
587 * have not been satisfied. Returns -EINVAL if the powerdomain pointer is
588 * null or if the power state is invalid for the powerdomin, or returns 0
589 * upon success.
590 */
591int pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst)
592{
f327e07b
RN
593 int ret = -EINVAL;
594
ad67ef68
PW
595 if (!pwrdm)
596 return -EINVAL;
597
598 if (!(pwrdm->pwrsts & (1 << pwrst)))
599 return -EINVAL;
600
7852ec05 601 pr_debug("powerdomain: %s: setting next powerstate to %0x\n",
ad67ef68
PW
602 pwrdm->name, pwrst);
603
5e7c58dc
JP
604 if (arch_pwrdm && arch_pwrdm->pwrdm_set_next_pwrst) {
605 /* Trace the pwrdm desired target state */
606 trace_power_domain_target(pwrdm->name, pwrst,
607 smp_processor_id());
608 /* Program the pwrdm desired target state */
f327e07b 609 ret = arch_pwrdm->pwrdm_set_next_pwrst(pwrdm, pwrst);
5e7c58dc 610 }
ad67ef68 611
f327e07b 612 return ret;
ad67ef68
PW
613}
614
615/**
616 * pwrdm_read_next_pwrst - get next powerdomain power state
617 * @pwrdm: struct powerdomain * to get power state
618 *
f0271d65 619 * Return the powerdomain @pwrdm's next power state. Returns -EINVAL
ad67ef68
PW
620 * if the powerdomain pointer is null or returns the next power state
621 * upon success.
622 */
623int pwrdm_read_next_pwrst(struct powerdomain *pwrdm)
624{
f327e07b
RN
625 int ret = -EINVAL;
626
ad67ef68
PW
627 if (!pwrdm)
628 return -EINVAL;
629
f327e07b
RN
630 if (arch_pwrdm && arch_pwrdm->pwrdm_read_next_pwrst)
631 ret = arch_pwrdm->pwrdm_read_next_pwrst(pwrdm);
632
633 return ret;
ad67ef68
PW
634}
635
636/**
637 * pwrdm_read_pwrst - get current powerdomain power state
638 * @pwrdm: struct powerdomain * to get power state
639 *
f0271d65 640 * Return the powerdomain @pwrdm's current power state. Returns -EINVAL
ad67ef68 641 * if the powerdomain pointer is null or returns the current power state
d49cae92
JH
642 * upon success. Note that if the power domain only supports the ON state
643 * then just return ON as the current state.
ad67ef68
PW
644 */
645int pwrdm_read_pwrst(struct powerdomain *pwrdm)
646{
f327e07b
RN
647 int ret = -EINVAL;
648
ad67ef68
PW
649 if (!pwrdm)
650 return -EINVAL;
651
d49cae92
JH
652 if (pwrdm->pwrsts == PWRSTS_ON)
653 return PWRDM_POWER_ON;
654
f327e07b
RN
655 if (arch_pwrdm && arch_pwrdm->pwrdm_read_pwrst)
656 ret = arch_pwrdm->pwrdm_read_pwrst(pwrdm);
657
658 return ret;
ad67ef68
PW
659}
660
661/**
662 * pwrdm_read_prev_pwrst - get previous powerdomain power state
663 * @pwrdm: struct powerdomain * to get previous power state
664 *
f0271d65 665 * Return the powerdomain @pwrdm's previous power state. Returns -EINVAL
ad67ef68
PW
666 * if the powerdomain pointer is null or returns the previous power state
667 * upon success.
668 */
669int pwrdm_read_prev_pwrst(struct powerdomain *pwrdm)
670{
f327e07b
RN
671 int ret = -EINVAL;
672
ad67ef68
PW
673 if (!pwrdm)
674 return -EINVAL;
675
f327e07b
RN
676 if (arch_pwrdm && arch_pwrdm->pwrdm_read_prev_pwrst)
677 ret = arch_pwrdm->pwrdm_read_prev_pwrst(pwrdm);
678
679 return ret;
ad67ef68
PW
680}
681
682/**
683 * pwrdm_set_logic_retst - set powerdomain logic power state upon retention
684 * @pwrdm: struct powerdomain * to set
685 * @pwrst: one of the PWRDM_POWER_* macros
686 *
f0271d65
PW
687 * Set the next power state @pwrst that the logic portion of the
688 * powerdomain @pwrdm will enter when the powerdomain enters retention.
689 * This will be either RETENTION or OFF, if supported. Returns
690 * -EINVAL if the powerdomain pointer is null or the target power
691 * state is not not supported, or returns 0 upon success.
ad67ef68
PW
692 */
693int pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst)
694{
12627578 695 int ret = -EINVAL;
2bc4ef71 696
ad67ef68
PW
697 if (!pwrdm)
698 return -EINVAL;
699
700 if (!(pwrdm->pwrsts_logic_ret & (1 << pwrst)))
701 return -EINVAL;
702
7852ec05 703 pr_debug("powerdomain: %s: setting next logic powerstate to %0x\n",
ad67ef68
PW
704 pwrdm->name, pwrst);
705
12627578
RN
706 if (arch_pwrdm && arch_pwrdm->pwrdm_set_logic_retst)
707 ret = arch_pwrdm->pwrdm_set_logic_retst(pwrdm, pwrst);
ad67ef68 708
12627578 709 return ret;
ad67ef68
PW
710}
711
712/**
713 * pwrdm_set_mem_onst - set memory power state while powerdomain ON
714 * @pwrdm: struct powerdomain * to set
715 * @bank: memory bank number to set (0-3)
716 * @pwrst: one of the PWRDM_POWER_* macros
717 *
f0271d65
PW
718 * Set the next power state @pwrst that memory bank @bank of the
719 * powerdomain @pwrdm will enter when the powerdomain enters the ON
720 * state. @bank will be a number from 0 to 3, and represents different
721 * types of memory, depending on the powerdomain. Returns -EINVAL if
722 * the powerdomain pointer is null or the target power state is not
723 * not supported for this memory bank, -EEXIST if the target memory
724 * bank does not exist or is not controllable, or returns 0 upon
725 * success.
ad67ef68
PW
726 */
727int pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, u8 pwrst)
728{
9b7fc907 729 int ret = -EINVAL;
ad67ef68
PW
730
731 if (!pwrdm)
732 return -EINVAL;
733
734 if (pwrdm->banks < (bank + 1))
735 return -EEXIST;
736
737 if (!(pwrdm->pwrsts_mem_on[bank] & (1 << pwrst)))
738 return -EINVAL;
739
7852ec05
PW
740 pr_debug("powerdomain: %s: setting next memory powerstate for bank %0x while pwrdm-ON to %0x\n",
741 pwrdm->name, bank, pwrst);
ad67ef68 742
9b7fc907
RN
743 if (arch_pwrdm && arch_pwrdm->pwrdm_set_mem_onst)
744 ret = arch_pwrdm->pwrdm_set_mem_onst(pwrdm, bank, pwrst);
ad67ef68 745
9b7fc907 746 return ret;
ad67ef68
PW
747}
748
749/**
750 * pwrdm_set_mem_retst - set memory power state while powerdomain in RET
751 * @pwrdm: struct powerdomain * to set
752 * @bank: memory bank number to set (0-3)
753 * @pwrst: one of the PWRDM_POWER_* macros
754 *
f0271d65
PW
755 * Set the next power state @pwrst that memory bank @bank of the
756 * powerdomain @pwrdm will enter when the powerdomain enters the
757 * RETENTION state. Bank will be a number from 0 to 3, and represents
758 * different types of memory, depending on the powerdomain. @pwrst
759 * will be either RETENTION or OFF, if supported. Returns -EINVAL if
760 * the powerdomain pointer is null or the target power state is not
761 * not supported for this memory bank, -EEXIST if the target memory
762 * bank does not exist or is not controllable, or returns 0 upon
763 * success.
ad67ef68
PW
764 */
765int pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, u8 pwrst)
766{
9b7fc907 767 int ret = -EINVAL;
ad67ef68
PW
768
769 if (!pwrdm)
770 return -EINVAL;
771
772 if (pwrdm->banks < (bank + 1))
773 return -EEXIST;
774
775 if (!(pwrdm->pwrsts_mem_ret[bank] & (1 << pwrst)))
776 return -EINVAL;
777
7852ec05
PW
778 pr_debug("powerdomain: %s: setting next memory powerstate for bank %0x while pwrdm-RET to %0x\n",
779 pwrdm->name, bank, pwrst);
ad67ef68 780
9b7fc907
RN
781 if (arch_pwrdm && arch_pwrdm->pwrdm_set_mem_retst)
782 ret = arch_pwrdm->pwrdm_set_mem_retst(pwrdm, bank, pwrst);
ad67ef68 783
9b7fc907 784 return ret;
ad67ef68
PW
785}
786
787/**
788 * pwrdm_read_logic_pwrst - get current powerdomain logic retention power state
789 * @pwrdm: struct powerdomain * to get current logic retention power state
790 *
f0271d65
PW
791 * Return the power state that the logic portion of powerdomain @pwrdm
792 * will enter when the powerdomain enters retention. Returns -EINVAL
793 * if the powerdomain pointer is null or returns the logic retention
794 * power state upon success.
ad67ef68
PW
795 */
796int pwrdm_read_logic_pwrst(struct powerdomain *pwrdm)
797{
12627578
RN
798 int ret = -EINVAL;
799
ad67ef68
PW
800 if (!pwrdm)
801 return -EINVAL;
802
12627578
RN
803 if (arch_pwrdm && arch_pwrdm->pwrdm_read_logic_pwrst)
804 ret = arch_pwrdm->pwrdm_read_logic_pwrst(pwrdm);
805
806 return ret;
ad67ef68
PW
807}
808
809/**
810 * pwrdm_read_prev_logic_pwrst - get previous powerdomain logic power state
811 * @pwrdm: struct powerdomain * to get previous logic power state
812 *
f0271d65
PW
813 * Return the powerdomain @pwrdm's previous logic power state. Returns
814 * -EINVAL if the powerdomain pointer is null or returns the previous
815 * logic power state upon success.
ad67ef68
PW
816 */
817int pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm)
818{
12627578
RN
819 int ret = -EINVAL;
820
ad67ef68
PW
821 if (!pwrdm)
822 return -EINVAL;
823
12627578
RN
824 if (arch_pwrdm && arch_pwrdm->pwrdm_read_prev_logic_pwrst)
825 ret = arch_pwrdm->pwrdm_read_prev_logic_pwrst(pwrdm);
826
827 return ret;
ad67ef68
PW
828}
829
1e3d0d2b
TG
830/**
831 * pwrdm_read_logic_retst - get next powerdomain logic power state
832 * @pwrdm: struct powerdomain * to get next logic power state
833 *
834 * Return the powerdomain pwrdm's logic power state. Returns -EINVAL
835 * if the powerdomain pointer is null or returns the next logic
836 * power state upon success.
837 */
838int pwrdm_read_logic_retst(struct powerdomain *pwrdm)
839{
12627578
RN
840 int ret = -EINVAL;
841
1e3d0d2b
TG
842 if (!pwrdm)
843 return -EINVAL;
844
12627578
RN
845 if (arch_pwrdm && arch_pwrdm->pwrdm_read_logic_retst)
846 ret = arch_pwrdm->pwrdm_read_logic_retst(pwrdm);
847
848 return ret;
1e3d0d2b
TG
849}
850
ad67ef68
PW
851/**
852 * pwrdm_read_mem_pwrst - get current memory bank power state
853 * @pwrdm: struct powerdomain * to get current memory bank power state
854 * @bank: memory bank number (0-3)
855 *
f0271d65
PW
856 * Return the powerdomain @pwrdm's current memory power state for bank
857 * @bank. Returns -EINVAL if the powerdomain pointer is null, -EEXIST if
ad67ef68
PW
858 * the target memory bank does not exist or is not controllable, or
859 * returns the current memory power state upon success.
860 */
861int pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank)
862{
9b7fc907 863 int ret = -EINVAL;
ad67ef68
PW
864
865 if (!pwrdm)
9b7fc907 866 return ret;
ad67ef68
PW
867
868 if (pwrdm->banks < (bank + 1))
9b7fc907 869 return ret;
ad67ef68 870
3863c74b
TG
871 if (pwrdm->flags & PWRDM_HAS_MPU_QUIRK)
872 bank = 1;
873
9b7fc907
RN
874 if (arch_pwrdm && arch_pwrdm->pwrdm_read_mem_pwrst)
875 ret = arch_pwrdm->pwrdm_read_mem_pwrst(pwrdm, bank);
ad67ef68 876
9b7fc907 877 return ret;
ad67ef68
PW
878}
879
880/**
881 * pwrdm_read_prev_mem_pwrst - get previous memory bank power state
882 * @pwrdm: struct powerdomain * to get previous memory bank power state
883 * @bank: memory bank number (0-3)
884 *
f0271d65
PW
885 * Return the powerdomain @pwrdm's previous memory power state for
886 * bank @bank. Returns -EINVAL if the powerdomain pointer is null,
887 * -EEXIST if the target memory bank does not exist or is not
888 * controllable, or returns the previous memory power state upon
889 * success.
ad67ef68
PW
890 */
891int pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank)
892{
9b7fc907 893 int ret = -EINVAL;
ad67ef68
PW
894
895 if (!pwrdm)
9b7fc907 896 return ret;
ad67ef68
PW
897
898 if (pwrdm->banks < (bank + 1))
9b7fc907 899 return ret;
ad67ef68 900
3863c74b
TG
901 if (pwrdm->flags & PWRDM_HAS_MPU_QUIRK)
902 bank = 1;
903
9b7fc907
RN
904 if (arch_pwrdm && arch_pwrdm->pwrdm_read_prev_mem_pwrst)
905 ret = arch_pwrdm->pwrdm_read_prev_mem_pwrst(pwrdm, bank);
ad67ef68 906
9b7fc907 907 return ret;
ad67ef68
PW
908}
909
1e3d0d2b
TG
910/**
911 * pwrdm_read_mem_retst - get next memory bank power state
912 * @pwrdm: struct powerdomain * to get mext memory bank power state
913 * @bank: memory bank number (0-3)
914 *
915 * Return the powerdomain pwrdm's next memory power state for bank
916 * x. Returns -EINVAL if the powerdomain pointer is null, -EEXIST if
917 * the target memory bank does not exist or is not controllable, or
918 * returns the next memory power state upon success.
919 */
920int pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank)
921{
9b7fc907 922 int ret = -EINVAL;
1e3d0d2b
TG
923
924 if (!pwrdm)
9b7fc907 925 return ret;
1e3d0d2b
TG
926
927 if (pwrdm->banks < (bank + 1))
9b7fc907 928 return ret;
1e3d0d2b 929
9b7fc907
RN
930 if (arch_pwrdm && arch_pwrdm->pwrdm_read_mem_retst)
931 ret = arch_pwrdm->pwrdm_read_mem_retst(pwrdm, bank);
1e3d0d2b 932
9b7fc907 933 return ret;
1e3d0d2b
TG
934}
935
ad67ef68
PW
936/**
937 * pwrdm_clear_all_prev_pwrst - clear previous powerstate register for a pwrdm
938 * @pwrdm: struct powerdomain * to clear
939 *
f0271d65
PW
940 * Clear the powerdomain's previous power state register @pwrdm.
941 * Clears the entire register, including logic and memory bank
942 * previous power states. Returns -EINVAL if the powerdomain pointer
943 * is null, or returns 0 upon success.
ad67ef68
PW
944 */
945int pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm)
946{
9b7fc907
RN
947 int ret = -EINVAL;
948
ad67ef68 949 if (!pwrdm)
9b7fc907 950 return ret;
ad67ef68
PW
951
952 /*
953 * XXX should get the powerdomain's current state here;
954 * warn & fail if it is not ON.
955 */
956
7852ec05 957 pr_debug("powerdomain: %s: clearing previous power state reg\n",
ad67ef68
PW
958 pwrdm->name);
959
9b7fc907
RN
960 if (arch_pwrdm && arch_pwrdm->pwrdm_clear_all_prev_pwrst)
961 ret = arch_pwrdm->pwrdm_clear_all_prev_pwrst(pwrdm);
ad67ef68 962
9b7fc907 963 return ret;
ad67ef68
PW
964}
965
0b7cbfb5
PW
966/**
967 * pwrdm_enable_hdwr_sar - enable automatic hardware SAR for a pwrdm
968 * @pwrdm: struct powerdomain *
969 *
970 * Enable automatic context save-and-restore upon power state change
f0271d65
PW
971 * for some devices in the powerdomain @pwrdm. Warning: this only
972 * affects a subset of devices in a powerdomain; check the TRM
973 * closely. Returns -EINVAL if the powerdomain pointer is null or if
974 * the powerdomain does not support automatic save-and-restore, or
975 * returns 0 upon success.
0b7cbfb5
PW
976 */
977int pwrdm_enable_hdwr_sar(struct powerdomain *pwrdm)
978{
9b7fc907
RN
979 int ret = -EINVAL;
980
0b7cbfb5 981 if (!pwrdm)
9b7fc907 982 return ret;
0b7cbfb5
PW
983
984 if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR))
9b7fc907 985 return ret;
0b7cbfb5 986
7852ec05 987 pr_debug("powerdomain: %s: setting SAVEANDRESTORE bit\n", pwrdm->name);
0b7cbfb5 988
9b7fc907
RN
989 if (arch_pwrdm && arch_pwrdm->pwrdm_enable_hdwr_sar)
990 ret = arch_pwrdm->pwrdm_enable_hdwr_sar(pwrdm);
0b7cbfb5 991
9b7fc907 992 return ret;
0b7cbfb5
PW
993}
994
995/**
996 * pwrdm_disable_hdwr_sar - disable automatic hardware SAR for a pwrdm
997 * @pwrdm: struct powerdomain *
998 *
999 * Disable automatic context save-and-restore upon power state change
f0271d65
PW
1000 * for some devices in the powerdomain @pwrdm. Warning: this only
1001 * affects a subset of devices in a powerdomain; check the TRM
1002 * closely. Returns -EINVAL if the powerdomain pointer is null or if
1003 * the powerdomain does not support automatic save-and-restore, or
1004 * returns 0 upon success.
0b7cbfb5
PW
1005 */
1006int pwrdm_disable_hdwr_sar(struct powerdomain *pwrdm)
1007{
9b7fc907
RN
1008 int ret = -EINVAL;
1009
0b7cbfb5 1010 if (!pwrdm)
9b7fc907 1011 return ret;
0b7cbfb5
PW
1012
1013 if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR))
9b7fc907 1014 return ret;
0b7cbfb5 1015
7852ec05 1016 pr_debug("powerdomain: %s: clearing SAVEANDRESTORE bit\n", pwrdm->name);
0b7cbfb5 1017
9b7fc907
RN
1018 if (arch_pwrdm && arch_pwrdm->pwrdm_disable_hdwr_sar)
1019 ret = arch_pwrdm->pwrdm_disable_hdwr_sar(pwrdm);
0b7cbfb5 1020
9b7fc907 1021 return ret;
0b7cbfb5
PW
1022}
1023
1024/**
1025 * pwrdm_has_hdwr_sar - test whether powerdomain supports hardware SAR
1026 * @pwrdm: struct powerdomain *
1027 *
f0271d65 1028 * Returns 1 if powerdomain @pwrdm supports hardware save-and-restore
0b7cbfb5
PW
1029 * for some devices, or 0 if it does not.
1030 */
1031bool pwrdm_has_hdwr_sar(struct powerdomain *pwrdm)
1032{
1033 return (pwrdm && pwrdm->flags & PWRDM_HAS_HDWR_SAR) ? 1 : 0;
1034}
1035
3a090284 1036int pwrdm_state_switch_nolock(struct powerdomain *pwrdm)
ba20bb12 1037{
8b8c3c78
SS
1038 int ret;
1039
f8457c2d
PW
1040 if (!pwrdm || !arch_pwrdm)
1041 return -EINVAL;
1042
1043 ret = arch_pwrdm->pwrdm_wait_transition(pwrdm);
8b8c3c78
SS
1044 if (!ret)
1045 ret = _pwrdm_state_switch(pwrdm, PWRDM_STATE_NOW);
1046
1047 return ret;
ba20bb12
PDS
1048}
1049
3a090284
PW
1050int __deprecated pwrdm_state_switch(struct powerdomain *pwrdm)
1051{
1052 int ret;
1053
1054 pwrdm_lock(pwrdm);
1055 ret = pwrdm_state_switch_nolock(pwrdm);
1056 pwrdm_unlock(pwrdm);
1057
1058 return ret;
1059}
1060
e0555489 1061int pwrdm_pre_transition(struct powerdomain *pwrdm)
ba20bb12 1062{
e0555489
KH
1063 if (pwrdm)
1064 _pwrdm_pre_transition_cb(pwrdm, NULL);
1065 else
1066 pwrdm_for_each(_pwrdm_pre_transition_cb, NULL);
1067
ba20bb12
PDS
1068 return 0;
1069}
1070
e0555489 1071int pwrdm_post_transition(struct powerdomain *pwrdm)
ba20bb12 1072{
e0555489
KH
1073 if (pwrdm)
1074 _pwrdm_post_transition_cb(pwrdm, NULL);
1075 else
1076 pwrdm_for_each(_pwrdm_post_transition_cb, NULL);
1077
ba20bb12
PDS
1078 return 0;
1079}
7f595674 1080
c4978fba
PW
1081/**
1082 * omap_set_pwrdm_state - change a powerdomain's current power state
1083 * @pwrdm: struct powerdomain * to change the power state of
1084 * @pwrst: power state to change to
1085 *
1086 * Change the current hardware power state of the powerdomain
1087 * represented by @pwrdm to the power state represented by @pwrst.
1088 * Returns -EINVAL if @pwrdm is null or invalid or if the
1089 * powerdomain's current power state could not be read, or returns 0
1090 * upon success or if @pwrdm does not support @pwrst or any
1091 * lower-power state. XXX Should not return 0 if the @pwrdm does not
1092 * support @pwrst or any lower-power state: this should be an error.
1093 */
1094int omap_set_pwrdm_state(struct powerdomain *pwrdm, u8 pwrst)
1095{
bd70f6eb
PW
1096 u8 next_pwrst, sleep_switch;
1097 int curr_pwrst;
c4978fba
PW
1098 int ret = 0;
1099 bool hwsup = false;
1100
1101 if (!pwrdm || IS_ERR(pwrdm))
1102 return -EINVAL;
1103
1104 while (!(pwrdm->pwrsts & (1 << pwrst))) {
1105 if (pwrst == PWRDM_POWER_OFF)
1106 return ret;
1107 pwrst--;
1108 }
1109
3a090284
PW
1110 pwrdm_lock(pwrdm);
1111
c4978fba 1112 curr_pwrst = pwrdm_read_pwrst(pwrdm);
bd70f6eb
PW
1113 if (curr_pwrst < 0) {
1114 ret = -EINVAL;
1115 goto osps_out;
1116 }
1117
c4978fba
PW
1118 next_pwrst = pwrdm_read_next_pwrst(pwrdm);
1119 if (curr_pwrst == pwrst && next_pwrst == pwrst)
3a090284 1120 goto osps_out;
c4978fba
PW
1121
1122 sleep_switch = _pwrdm_save_clkdm_state_and_activate(pwrdm, curr_pwrst,
1123 pwrst, &hwsup);
c4978fba
PW
1124
1125 ret = pwrdm_set_next_pwrst(pwrdm, pwrst);
1126 if (ret)
1127 pr_err("%s: unable to set power state of powerdomain: %s\n",
1128 __func__, pwrdm->name);
1129
1130 _pwrdm_restore_clkdm_state(pwrdm, sleep_switch, hwsup);
1131
3a090284
PW
1132osps_out:
1133 pwrdm_unlock(pwrdm);
1134
c4978fba
PW
1135 return ret;
1136}
1137
7f595674
KH
1138/**
1139 * pwrdm_get_context_loss_count - get powerdomain's context loss count
1140 * @pwrdm: struct powerdomain * to wait for
1141 *
1142 * Context loss count is the sum of powerdomain off-mode counter, the
fc013873 1143 * logic off counter and the per-bank memory off counter. Returns negative
7f595674
KH
1144 * (and WARNs) upon error, otherwise, returns the context loss count.
1145 */
fc013873 1146int pwrdm_get_context_loss_count(struct powerdomain *pwrdm)
7f595674
KH
1147{
1148 int i, count;
1149
1150 if (!pwrdm) {
1151 WARN(1, "powerdomain: %s: pwrdm is null\n", __func__);
fc013873 1152 return -ENODEV;
7f595674
KH
1153 }
1154
1155 count = pwrdm->state_counter[PWRDM_POWER_OFF];
1156 count += pwrdm->ret_logic_off_counter;
1157
1158 for (i = 0; i < pwrdm->banks; i++)
1159 count += pwrdm->ret_mem_off_counter[i];
1160
fc013873
TV
1161 /*
1162 * Context loss count has to be a non-negative value. Clear the sign
1163 * bit to get a value range from 0 to INT_MAX.
1164 */
1165 count &= INT_MAX;
1166
1167 pr_debug("powerdomain: %s: context loss count = %d\n",
7f595674
KH
1168 pwrdm->name, count);
1169
1170 return count;
1171}
694606c4
PW
1172
1173/**
1174 * pwrdm_can_ever_lose_context - can this powerdomain ever lose context?
1175 * @pwrdm: struct powerdomain *
1176 *
1177 * Given a struct powerdomain * @pwrdm, returns 1 if the powerdomain
1178 * can lose either memory or logic context or if @pwrdm is invalid, or
1179 * returns 0 otherwise. This function is not concerned with how the
1180 * powerdomain registers are programmed (i.e., to go off or not); it's
1181 * concerned with whether it's ever possible for this powerdomain to
1182 * go off while some other part of the chip is active. This function
1183 * assumes that every powerdomain can go to either ON or INACTIVE.
1184 */
1185bool pwrdm_can_ever_lose_context(struct powerdomain *pwrdm)
1186{
1187 int i;
1188
62f0f39b 1189 if (!pwrdm) {
694606c4
PW
1190 pr_debug("powerdomain: %s: invalid powerdomain pointer\n",
1191 __func__);
1192 return 1;
1193 }
1194
1195 if (pwrdm->pwrsts & PWRSTS_OFF)
1196 return 1;
1197
1198 if (pwrdm->pwrsts & PWRSTS_RET) {
1199 if (pwrdm->pwrsts_logic_ret & PWRSTS_OFF)
1200 return 1;
1201
1202 for (i = 0; i < pwrdm->banks; i++)
1203 if (pwrdm->pwrsts_mem_ret[i] & PWRSTS_OFF)
1204 return 1;
1205 }
1206
1207 for (i = 0; i < pwrdm->banks; i++)
1208 if (pwrdm->pwrsts_mem_on[i] & PWRSTS_OFF)
1209 return 1;
1210
1211 return 0;
1212}