Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / arm / mach-imx / cpuidle-imx5.c
blob5ad9f2f533cd630e2242cf9cf5c1475dcaa7b511
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2012 Freescale Semiconductor, Inc.
4 */
6 #include <linux/cpuidle.h>
7 #include <linux/module.h>
8 #include <asm/system_misc.h>
9 #include "cpuidle.h"
11 static __cpuidle int imx5_cpuidle_enter(struct cpuidle_device *dev,
12 struct cpuidle_driver *drv, int index)
14 arm_pm_idle();
15 return index;
18 static struct cpuidle_driver imx5_cpuidle_driver = {
19 .name = "imx5_cpuidle",
20 .owner = THIS_MODULE,
21 .states[0] = {
22 .enter = imx5_cpuidle_enter,
23 .exit_latency = 2,
24 .target_residency = 1,
25 .name = "IMX5 SRPG",
26 .desc = "CPU state retained,powered off",
28 .state_count = 1,
31 int __init imx5_cpuidle_init(void)
33 return cpuidle_register(&imx5_cpuidle_driver, NULL);