|
@@ -16,12 +16,12 @@
|
|
|
#include <linux/smp.h>
|
|
|
#include <linux/mfd/dbx500-prcmu.h>
|
|
|
#include <linux/platform_data/arm-ux500-pm.h>
|
|
|
+#include <linux/platform_device.h>
|
|
|
|
|
|
#include <asm/cpuidle.h>
|
|
|
#include <asm/proc-fns.h>
|
|
|
|
|
|
#include "db8500-regs.h"
|
|
|
-#include "id.h"
|
|
|
|
|
|
static atomic_t master = ATOMIC_INIT(0);
|
|
|
static DEFINE_SPINLOCK(master_lock);
|
|
@@ -113,11 +113,8 @@ static struct cpuidle_driver ux500_idle_driver = {
|
|
|
.state_count = 2,
|
|
|
};
|
|
|
|
|
|
-int __init ux500_idle_init(void)
|
|
|
+static int __init dbx500_cpuidle_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
- if (!(cpu_is_u8500_family() || cpu_is_ux540_family()))
|
|
|
- return -ENODEV;
|
|
|
-
|
|
|
/* Configure wake up reasons */
|
|
|
prcmu_enable_wakeups(PRCMU_WAKEUP(ARM) | PRCMU_WAKEUP(RTC) |
|
|
|
PRCMU_WAKEUP(ABB));
|
|
@@ -125,4 +122,12 @@ int __init ux500_idle_init(void)
|
|
|
return cpuidle_register(&ux500_idle_driver, NULL);
|
|
|
}
|
|
|
|
|
|
-device_initcall(ux500_idle_init);
|
|
|
+static struct platform_driver dbx500_cpuidle_plat_driver = {
|
|
|
+ .driver = {
|
|
|
+ .name = "cpuidle-dbx500",
|
|
|
+ .owner = THIS_MODULE,
|
|
|
+ },
|
|
|
+ .probe = dbx500_cpuidle_probe,
|
|
|
+};
|
|
|
+
|
|
|
+module_platform_driver(dbx500_cpuidle_plat_driver);
|