126 lines
3.3 KiB
C
126 lines
3.3 KiB
C
|
/*
|
||
|
* Copyright (C) 2017 XRADIO TECHNOLOGY CO., LTD. All rights reserved.
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without
|
||
|
* modification, are permitted provided that the following conditions
|
||
|
* are met:
|
||
|
* 1. Redistributions of source code must retain the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer.
|
||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer in the
|
||
|
* documentation and/or other materials provided with the
|
||
|
* distribution.
|
||
|
* 3. Neither the name of XRADIO TECHNOLOGY CO., LTD. nor the names of
|
||
|
* its contributors may be used to endorse or promote products derived
|
||
|
* from this software without specific prior written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
*/
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "sys/io.h"
|
||
|
#include "errno.h"
|
||
|
#include "sys/list.h"
|
||
|
|
||
|
#include "driver/chip/chip.h"
|
||
|
#include "driver/chip/hal_wakeup.h"
|
||
|
#include "driver/chip/hal_prcm.h"
|
||
|
#include "driver/chip/hal_nvic.h"
|
||
|
#include "driver/chip/hal_mbox.h"
|
||
|
#include "driver/hal_board.h"
|
||
|
#include "driver/hal_dev.h"
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
#include "trustzone/nsc_table.h"
|
||
|
#endif
|
||
|
|
||
|
#include "pm/pm.h"
|
||
|
#include "pm/pm_idle_suspend.h"
|
||
|
#include "pm_i.h"
|
||
|
#include "port.h"
|
||
|
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
#include "trustzone/nsc_table.h"
|
||
|
#endif
|
||
|
|
||
|
#ifdef CONFIG_PM
|
||
|
|
||
|
int platform_prepare(enum suspend_state_t state)
|
||
|
{
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
PM_IrqSuspend_NSC(state);
|
||
|
#endif
|
||
|
#ifdef CONFIG_PM_IDLE_SUSPEND
|
||
|
int ret = 0;
|
||
|
|
||
|
if(state == PM_MODE_STANDBY) {
|
||
|
ret = pm_idle_suspend_start_compensate();
|
||
|
}
|
||
|
return ret;
|
||
|
#else
|
||
|
return 0;
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
int platform_prepare_late(enum suspend_state_t state)
|
||
|
{
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
/* when resume from TEE, the secure_psp will reduce, so it is necessary to
|
||
|
* save and restore the secure psp.
|
||
|
*/
|
||
|
PM_SaveSecurePSP();
|
||
|
PM_NoIrqSuspend_NSC(state);
|
||
|
#endif
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void platform_wake(enum suspend_state_t state)
|
||
|
{
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
PM_NoirqResume_NSC(state);
|
||
|
PM_RestoreSecurePSP();
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void platform_finish(enum suspend_state_t state)
|
||
|
{
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
PM_IrqResume_NSC(state);
|
||
|
#endif
|
||
|
#ifdef CONFIG_PM_IDLE_SUSPEND
|
||
|
if(state == PM_MODE_STANDBY) {
|
||
|
pm_idle_suspend_finish_compensate();
|
||
|
}
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void cpu_suspend_cb(void)
|
||
|
{
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
PM_CPUSuspend_NSC();
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void cpu_tz_hibernation(void)
|
||
|
{
|
||
|
#ifdef CONFIG_TRUSTZONE
|
||
|
PM_CPUHibernation_NSC();
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
#endif
|