1 /*
2  * Copyright (c) 2022, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <sunxi_private.h>
8 
9 const struct psci_cpu_idle_state sunxi_idle_states[] = {
10 	{
11 		.name			= "cpu-sleep",
12 		.power_state		= 0x00010003,
13 		.local_timer_stop	= true,
14 		.entry_latency_us	= 800,
15 		.exit_latency_us	= 1500,
16 		.min_residency_us	= 25000
17 	},
18 	{
19 		.name			= "cluster-sleep",
20 		.power_state		= 0x01010013,
21 		.local_timer_stop	= true,
22 		.entry_latency_us	= 850,
23 		.exit_latency_us	= 1500,
24 		.min_residency_us	= 50000
25 	},
26 	{}
27 };
28