xref: /rk3399_ARM-atf/plat/rockchip/rk3399/drivers/m0/src/suspend.c (revision 1830f7901e110a6407d449506a0fc93146af6833)
1977001aaSXing Zheng /*
2977001aaSXing Zheng  * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3977001aaSXing Zheng  *
4977001aaSXing Zheng  * Redistribution and use in source and binary forms, with or without
5977001aaSXing Zheng  * modification, are permitted provided that the following conditions are met:
6977001aaSXing Zheng  *
7977001aaSXing Zheng  * Redistributions of source code must retain the above copyright notice, this
8977001aaSXing Zheng  * list of conditions and the following disclaimer.
9977001aaSXing Zheng  *
10977001aaSXing Zheng  * Redistributions in binary form must reproduce the above copyright notice,
11977001aaSXing Zheng  * this list of conditions and the following disclaimer in the documentation
12977001aaSXing Zheng  * and/or other materials provided with the distribution.
13977001aaSXing Zheng  *
14977001aaSXing Zheng  * Neither the name of ARM nor the names of its contributors may be used
15977001aaSXing Zheng  * to endorse or promote products derived from this software without specific
16977001aaSXing Zheng  * prior written permission.
17977001aaSXing Zheng  *
18977001aaSXing Zheng  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19977001aaSXing Zheng  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20977001aaSXing Zheng  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21977001aaSXing Zheng  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22977001aaSXing Zheng  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23977001aaSXing Zheng  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24977001aaSXing Zheng  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25977001aaSXing Zheng  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26977001aaSXing Zheng  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27977001aaSXing Zheng  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28977001aaSXing Zheng  * POSSIBILITY OF SUCH DAMAGE.
29977001aaSXing Zheng  */
30977001aaSXing Zheng 
31*1830f790SXing Zheng #include <pmu_regs.h>
32977001aaSXing Zheng #include "rk3399_mcu.h"
33977001aaSXing Zheng 
34977001aaSXing Zheng #define M0_SCR			0xe000ed10  /* System Control Register (SCR) */
35977001aaSXing Zheng 
36977001aaSXing Zheng #define SCR_SLEEPDEEP_SHIFT	(1 << 2)
37977001aaSXing Zheng 
38977001aaSXing Zheng void handle_suspend(void)
39977001aaSXing Zheng {
40977001aaSXing Zheng 	unsigned int status_value;
41977001aaSXing Zheng 
42977001aaSXing Zheng 	while (1) {
43977001aaSXing Zheng 		status_value = mmio_read_32(PMU_BASE + PMU_POWER_ST);
44977001aaSXing Zheng 		if (status_value) {
45977001aaSXing Zheng 			mmio_clrbits_32(PMU_BASE + PMU_PWRMODE_CON, 0x01);
46977001aaSXing Zheng 			return;
47977001aaSXing Zheng 		}
48977001aaSXing Zheng 	}
49977001aaSXing Zheng 
50977001aaSXing Zheng 	/* m0 enter deep sleep mode */
51977001aaSXing Zheng 	mmio_setbits_32(M0_SCR, SCR_SLEEPDEEP_SHIFT);
52977001aaSXing Zheng }
53