* [PATCH 02/06] ARM: shmobile: Install CPUIdle reset vector
@ 2014-03-16 21:35 Magnus Damm
0 siblings, 0 replies; only message in thread
From: Magnus Damm @ 2014-03-16 21:35 UTC (permalink / raw)
To: linux-sh
From: Magnus Damm <damm@opensource.se>
Install CPU reset vector for CPUIdle operation.
Not-Yet-Signed-off-by: Magnus Damm <damm@opensource.se>
---
arch/arm/mach-shmobile/cpuidle.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
--- 0001/arch/arm/mach-shmobile/cpuidle.c
+++ work/arch/arm/mach-shmobile/cpuidle.c
@@ -8,6 +8,7 @@
* for more details.
*/
+#include <linux/cpu.h>
#include <linux/pm.h>
#include <linux/cpuidle.h>
#include <linux/suspend.h>
@@ -15,6 +16,26 @@
#include <linux/err.h>
#include <asm/cpuidle.h>
#include <asm/io.h>
+#include <mach/common.h>
+
+static int shmobile_cpuidle_notifier_call(struct notifier_block *nfb,
+ unsigned long action, void *hcpu)
+{
+ unsigned int cpu = (long)hcpu;
+
+ switch (action) {
+ case CPU_ONLINE:
+ /* For this particular CPU register CPUIdle boot vector */
+ shmobile_smp_hook(cpu, virt_to_phys(cpu_resume), 0);
+ break;
+ };
+
+ return NOTIFY_OK;
+}
+
+static struct notifier_block shmobile_cpuidle_notifier = {
+ .notifier_call = shmobile_cpuidle_notifier_call,
+};
static struct cpuidle_driver shmobile_cpuidle_default_driver = {
.name = "shmobile_cpuidle",
@@ -33,5 +54,11 @@ void __init shmobile_cpuidle_set_driver(
int __init shmobile_cpuidle_init(void)
{
+ /* Use CPU notifier for reset vector control */
+ register_cpu_notifier(&shmobile_cpuidle_notifier);
+
+ /* Make sure boot CPU also gets CPUIdle initialized */
+ shmobile_cpuidle_notifier_call(NULL, CPU_ONLINE, 0);
+
return cpuidle_register(cpuidle_drv, NULL);
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-16 21:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-16 21:35 [PATCH 02/06] ARM: shmobile: Install CPUIdle reset vector Magnus Damm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox