1. update cv182x/cv183x configuration file 2. update cv181x/cv180x configuration file 3. update clk driver for cvitek 4. update dma driver for cvitek 5. update soc driver for cvitek 6. porting cvitek ion driver from kernel-4.19 7. compatible with riscv Change-Id: Icff9fafe0ebe7d6bab824bbadb952e08bdc66c19
20 lines
496 B
C
20 lines
496 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _ASM_RISCV_STACKTRACE_H
|
|
#define _ASM_RISCV_STACKTRACE_H
|
|
|
|
#include <linux/sched.h>
|
|
#include <asm/ptrace.h>
|
|
|
|
struct stackframe {
|
|
unsigned long fp;
|
|
unsigned long ra;
|
|
};
|
|
|
|
extern void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs,
|
|
bool (*fn)(void *, unsigned long), void *arg);
|
|
extern void dump_backtrace(struct pt_regs *regs, struct task_struct *task,
|
|
const char *loglvl);
|
|
|
|
#endif /* _ASM_RISCV_STACKTRACE_H */
|