[RAMEN9610-20876][MODAP-53888][COMMON] chub: change resume from complete to resume
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / drivers / staging / android / fiq_debugger / fiq_debugger_priv.h
CommitLineData
efffceb1
CC
1/*
2 * Copyright (C) 2014 Google, Inc.
3 * Author: Colin Cross <ccross@android.com>
4 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
16#ifndef _FIQ_DEBUGGER_PRIV_H_
17#define _FIQ_DEBUGGER_PRIV_H_
18
19#define THREAD_INFO(sp) ((struct thread_info *) \
20 ((unsigned long)(sp) & ~(THREAD_SIZE - 1)))
21
9200a45d
AH
22struct fiq_debugger_output {
23 void (*printf)(struct fiq_debugger_output *output, const char *fmt, ...);
24};
efffceb1 25
9200a45d 26struct pt_regs;
efffceb1 27
9200a45d 28void fiq_debugger_dump_pc(struct fiq_debugger_output *output,
efffceb1 29 const struct pt_regs *regs);
9200a45d 30void fiq_debugger_dump_regs(struct fiq_debugger_output *output,
efffceb1 31 const struct pt_regs *regs);
9200a45d 32void fiq_debugger_dump_allregs(struct fiq_debugger_output *output,
efffceb1 33 const struct pt_regs *regs);
9200a45d 34void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output,
efffceb1
CC
35 const struct pt_regs *regs, unsigned int depth, void *ssp);
36
37#endif