-142736, Sync spacc driver code. -2303c6, add suspend to ram featrue. -d3bff8, support pdm mic using AEC. -203610, support new spinand flash:HYF1GQ4UDACAE. Change-Id: Iec21bccaee43c4a71213b42b88f41a45527fd8a5
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2021 Western Digital Corporation or its affiliates.
|
|
* Copyright (c) 2022 Ventana Micro Systems Inc.
|
|
*/
|
|
|
|
#ifndef _ASM_RISCV_SUSPEND_H
|
|
#define _ASM_RISCV_SUSPEND_H
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
struct suspend_context {
|
|
/* Saved and restored by low-level functions */
|
|
struct pt_regs regs;
|
|
/* Saved and restored by high-level functions */
|
|
unsigned long scratch;
|
|
unsigned long tvec;
|
|
unsigned long ie;
|
|
#ifdef CONFIG_MMU
|
|
unsigned long satp;
|
|
#endif
|
|
};
|
|
|
|
/* Low-level CPU suspend entry function */
|
|
int __cpu_suspend_enter(struct suspend_context *context);
|
|
|
|
/* High-level CPU suspend which will save context and call finish() */
|
|
int cpu_suspend(unsigned long arg,
|
|
int (*finish)(unsigned long arg,
|
|
unsigned long entry,
|
|
unsigned long context));
|
|
|
|
/* Low-level CPU resume entry function */
|
|
int __cpu_resume_enter(unsigned long hartid, unsigned long context);
|
|
|
|
/* Used to save and restore the CSRs */
|
|
void suspend_save_csrs(struct suspend_context *context);
|
|
void suspend_restore_csrs(struct suspend_context *context);
|
|
|
|
#endif
|