1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_ARM_CPUIDLE_H
3 #define __ASM_ARM_CPUIDLE_H
5 #include <asm/proc-fns.h>
8 extern int arm_cpuidle_simple_enter(struct cpuidle_device
*dev
,
9 struct cpuidle_driver
*drv
, int index
);
11 static inline int arm_cpuidle_simple_enter(struct cpuidle_device
*dev
,
12 struct cpuidle_driver
*drv
, int index
) { return -ENODEV
; }
15 /* Common ARM WFI state */
16 #define ARM_CPUIDLE_WFI_STATE_PWR(p) {\
17 .enter = arm_cpuidle_simple_enter,\
19 .target_residency = 1,\
26 * in case power_specified == 1, give a default WFI power value needed
29 #define ARM_CPUIDLE_WFI_STATE ARM_CPUIDLE_WFI_STATE_PWR(UINT_MAX)
34 int (*suspend
)(unsigned long arg
);
35 int (*init
)(struct device_node
*, int cpu
);
38 struct of_cpuidle_method
{
40 const struct cpuidle_ops
*ops
;
43 #define CPUIDLE_METHOD_OF_DECLARE(name, _method, _ops) \
44 static const struct of_cpuidle_method __cpuidle_method_of_table_##name \
45 __used __section(__cpuidle_method_of_table) \
46 = { .method = _method, .ops = _ops }
48 extern int arm_cpuidle_suspend(int index
);
50 extern int arm_cpuidle_init(int cpu
);