aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ubicom32/files/arch/ubicom32/include/asm/bug.h
blob: b6a000dacaf76c339a87bc7e78f86ea9bce58396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * arch/ubicom32/include/asm/bug.h
 *   Generic bug.h for Ubicom32 architecture.
 *
 * (C) Copyright 2009, Ubicom, Inc.
 *
 * This file is part of the Ubicom32 Linux Kernel Port.
 *
 * The Ubicom32 Linux Kernel Port is free software: you can redistribute
 * it and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation, either version 2 of the
 * License, or (at your option) any later version.
 *
 * The Ubicom32 Linux Kernel Port is distributed in the hope that it
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the Ubicom32 Linux Kernel Port.  If not,
 * see <http://www.gnu.org/licenses/>.
 *
 * Ubicom32 implementation derived from (with many thanks):
 *   arch/m68knommu
 *   arch/blackfin
 *   arch/parisc
 */
#ifndef _ASM_UBICOM32_BUG_H
#define _ASM_UBICOM32_BUG_H

#include <linux/kernel.h>
#include <asm/thread.h>

#if defined(CONFIG_BUG) && defined(CONFIG_STOP_ON_BUG)

/*
 * BUG()
 *	Ubicom specific version of the BUG() macro.
 *
 * This implementation performs a THREAD_STALL stopping all threads before
 * calling panic.  This enables a developer to see the "real" state of the
 * machine (since panic alters the system state).  We do the printf first
 * because while it is slow, it does not alter system state (like
 * interrupts).
 *
 * TODO: Implement the trap sequence used by other architectures.
 */
#define BUG() do { \
	printk("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
	THREAD_STALL; \
	panic("BUG!"); \
} while (0)


/*
 * __WARN()
 *	WARN() using printk() for now.
 *
 * TODO: Implement the trap sequence used by other architectures.
 */
#define __WARN()							\
	do {								\
		printk("WARN: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
	} while(0)

/*
 * WARN_ON()
 *	Ubicom specific version of the WARN_ON macro.
 *
 * This implementation performs a printk for the WARN_ON() instead
 * of faulting into the kernel and using report_bug().
 *
 * TODO: Implement the trap sequence used by other architectures.
 */
#define WARN_ON(x) ({						\
	int __ret_warn_on = !!(x);				\
	if (__builtin_constant_p(__ret_warn_on)) {		\
		if (__ret_warn_on)				\
			__WARN();				\
	} else {						\
		if (unlikely(__ret_warn_on))			\
			__WARN();				\
	}							\
	unlikely(__ret_warn_on);				\
})


#define HAVE_ARCH_BUG
#define HAVE_ARCH_WARN_ON

#endif

#include <asm-generic/bug.h>

#endif /* _ASM_UBICOM32_BUG_H */