blob: ea022d47896cef2761bbb8a147844c506f358621 [file] [log] [blame]
Vineet Gupta3be80aa2013-01-18 15:12:17 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef _ASM_ARC_BUG_H
10#define _ASM_ARC_BUG_H
11
12#ifndef __ASSEMBLY__
13
14#include <asm/ptrace.h>
15
16struct task_struct;
17
18void show_regs(struct pt_regs *regs);
19void show_stacktrace(struct task_struct *tsk, struct pt_regs *regs);
20void show_kernel_fault_diag(const char *str, struct pt_regs *regs,
Vineet Gupta38a9ff62013-06-12 15:13:40 +053021 unsigned long address);
22void die(const char *str, struct pt_regs *regs, unsigned long address);
Vineet Gupta3be80aa2013-01-18 15:12:17 +053023
Vineet Gupta3872d052014-09-24 16:36:48 +053024#define BUG() do { \
25 pr_warn("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
26 dump_stack(); \
Vineet Gupta3be80aa2013-01-18 15:12:17 +053027} while (0)
28
29#define HAVE_ARCH_BUG
30
31#include <asm-generic/bug.h>
32
33#endif /* !__ASSEMBLY__ */
34
35#endif