blob: d5d051f727a8be75326cb15992426551c7595de1 [file] [log] [blame]
Colin Crosscffbe782014-04-02 18:42:13 -07001/*
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
Arve Hjønnevåge073df62014-05-02 19:52:54 -070022struct fiq_debugger_output {
23 void (*printf)(struct fiq_debugger_output *output, const char *fmt, ...);
24};
25
Colin Crosscffbe782014-04-02 18:42:13 -070026struct pt_regs;
27
Arve Hjønnevåge073df62014-05-02 19:52:54 -070028void fiq_debugger_dump_pc(struct fiq_debugger_output *output,
Colin Crosscffbe782014-04-02 18:42:13 -070029 const struct pt_regs *regs);
Arve Hjønnevåge073df62014-05-02 19:52:54 -070030void fiq_debugger_dump_regs(struct fiq_debugger_output *output,
Colin Crosscffbe782014-04-02 18:42:13 -070031 const struct pt_regs *regs);
Arve Hjønnevåge073df62014-05-02 19:52:54 -070032void fiq_debugger_dump_allregs(struct fiq_debugger_output *output,
Colin Crosscffbe782014-04-02 18:42:13 -070033 const struct pt_regs *regs);
Arve Hjønnevåge073df62014-05-02 19:52:54 -070034void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output,
Colin Crosscffbe782014-04-02 18:42:13 -070035 const struct pt_regs *regs, unsigned int depth, void *ssp);
36
37#endif