All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] ARM: tegra20: cpuidle: add power-down state
@ 2012-12-03  3:00 ` Joseph Lo
  0 siblings, 0 replies; 42+ messages in thread
From: Joseph Lo @ 2012-12-03  3:00 UTC (permalink / raw)
  To: Stephen Warren
  Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Joseph Lo

This adds a "powered-down" state in cpuidle for Tegra20. It requires power
gating both CPU cores. When the CPU1 requests to enter "powered-down"
state, it saves its own state and then enters WFI. When the CPU0 requests
the same state, it attempts to put the CPU1 into reset to prevent it from
waking up. Then power down both CPUs together and turn off the CPU rail.

If the CPU1 be woken up before CPU0 entering powered-down state, then it
needs to restore it's CPU state and waits for next chance.

Please note.
We also fix the potensial deadlock issue for coupled cpuidle framework.
("cpuidle: coupled: fix the potensial race condition and deadlock")
Before the patch be applied, please don't merge the last patch that apply
coupled cpuidle for "powered-down" cpuidle driver.

Verified on Seaboard(Tegra20) and Cardhu(Tegra30).

Joseph Lo (5):
  ARM: tegra20: cpuidle: add powered-down state for secondary CPU
  ARM: tegra20: clocks: add CPU low-power function into
    tegra_cpu_car_ops
  ARM: tegra20: flowctrl: add support for cpu_suspend_enter/exit
  ARM: tegra20: cpuidle: add powered-down state for CPU0
  ARM: tegra20: cpuidle: apply coupled cpuidle for powered-down mode

 arch/arm/mach-tegra/Kconfig           |    1 +
 arch/arm/mach-tegra/cpuidle-tegra20.c |  206 +++++++++++++++++++++++++++++++++
 arch/arm/mach-tegra/flowctrl.c        |   38 +++++-
 arch/arm/mach-tegra/flowctrl.h        |    4 +
 arch/arm/mach-tegra/pm.c              |    2 +
 arch/arm/mach-tegra/sleep-tegra20.S   |  198 +++++++++++++++++++++++++++++++
 arch/arm/mach-tegra/sleep.S           |   19 +++
 arch/arm/mach-tegra/sleep.h           |   26 ++++
 arch/arm/mach-tegra/tegra20_clocks.c  |  102 ++++++++++++++++
 9 files changed, 591 insertions(+), 5 deletions(-)

^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2012-12-05 18:36 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-03  3:00 [PATCH 0/5] ARM: tegra20: cpuidle: add power-down state Joseph Lo
2012-12-03  3:00 ` Joseph Lo
     [not found] ` <1354503607-13707-1-git-send-email-josephl-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-03  3:00   ` [PATCH 1/5] ARM: tegra20: cpuidle: add powered-down state for secondary CPU Joseph Lo
2012-12-03  3:00     ` Joseph Lo
     [not found]     ` <1354503607-13707-2-git-send-email-josephl-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-03 18:18       ` Stephen Warren
2012-12-03 18:18         ` Stephen Warren
     [not found]         ` <50BCED09.4040700-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-12-04  6:47           ` Joseph Lo
2012-12-04  6:47             ` Joseph Lo
2012-12-03 18:31       ` Stephen Warren
2012-12-03 18:31         ` Stephen Warren
     [not found]         ` <50BCF01E.4070504-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-12-04  7:05           ` Joseph Lo
2012-12-04  7:05             ` Joseph Lo
     [not found]             ` <1354604712.30563.31.camel-yx3yKKdKkHfc7b1ADBJPm0n48jw8i0AO@public.gmane.org>
2012-12-05 18:36               ` Stephen Warren
2012-12-05 18:36                 ` Stephen Warren
2012-12-03  3:00   ` [PATCH 2/5] ARM: tegra20: clocks: add CPU low-power function into tegra_cpu_car_ops Joseph Lo
2012-12-03  3:00     ` Joseph Lo
     [not found]     ` <1354503607-13707-3-git-send-email-josephl-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-03 18:20       ` Stephen Warren
2012-12-03 18:20         ` Stephen Warren
     [not found]         ` <50BCED6A.7000702-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-12-04  4:28           ` Joseph Lo
2012-12-04  4:28             ` Joseph Lo
2012-12-04  5:12       ` Prashant Gaikwad
2012-12-04  5:12         ` Prashant Gaikwad
     [not found]         ` <50BD8646.6070608-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-04  5:25           ` Joseph Lo
2012-12-04  5:25             ` Joseph Lo
     [not found]             ` <1354598707.30563.10.camel-yx3yKKdKkHfc7b1ADBJPm0n48jw8i0AO@public.gmane.org>
2012-12-05 18:34               ` Stephen Warren
2012-12-05 18:34                 ` Stephen Warren
2012-12-03  3:00   ` [PATCH 3/5] ARM: tegra20: flowctrl: add support for cpu_suspend_enter/exit Joseph Lo
2012-12-03  3:00     ` Joseph Lo
2012-12-03  3:00   ` [PATCH 4/5] ARM: tegra20: cpuidle: add powered-down state for CPU0 Joseph Lo
2012-12-03  3:00     ` Joseph Lo
     [not found]     ` <1354503607-13707-5-git-send-email-josephl-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-03 18:40       ` Stephen Warren
2012-12-03 18:40         ` Stephen Warren
     [not found]         ` <50BCF226.1080501-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-12-04  7:25           ` Joseph Lo
2012-12-04  7:25             ` Joseph Lo
2012-12-03  3:00   ` [PATCH 5/5] ARM: tegra20: cpuidle: apply coupled cpuidle for powered-down mode Joseph Lo
2012-12-03  3:00     ` Joseph Lo
     [not found]     ` <1354503607-13707-6-git-send-email-josephl-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-03 18:52       ` Stephen Warren
2012-12-03 18:52         ` Stephen Warren
     [not found]         ` <50BCF4F8.60606-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-12-04 10:20           ` Joseph Lo
2012-12-04 10:20             ` Joseph Lo
2012-12-04 12:41           ` Peter De Schrijver
2012-12-04 12:41             ` Peter De Schrijver

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.