blob: 4f7e6dc974bc97e3cf87f2dbf8e59ce0f1e2f204 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Anil S Keshavamurthy7213b252005-06-23 00:09:27 -07002#ifndef _IA64_KDEBUG_H
3#define _IA64_KDEBUG_H 1
4/*
Anil S Keshavamurthy7213b252005-06-23 00:09:27 -07005 *
6 * Copyright (C) Intel Corporation, 2005
7 *
8 * 2005-Apr Rusty Lynch <rusty.lynch@intel.com> and Anil S Keshavamurthy
9 * <anil.s.keshavamurthy@intel.com> adopted from
10 * include/asm-x86_64/kdebug.h
Keith Owens9138d582005-11-07 11:27:13 -080011 *
12 * 2005-Oct Keith Owens <kaos@sgi.com>. Expand notify_die to cover more
13 * events.
Anil S Keshavamurthy7213b252005-06-23 00:09:27 -070014 */
Anil S Keshavamurthy7213b252005-06-23 00:09:27 -070015
16enum die_val {
17 DIE_BREAK = 1,
Keith Owens9138d582005-11-07 11:27:13 -080018 DIE_FAULT,
19 DIE_OOPS,
Keith Owens9138d582005-11-07 11:27:13 -080020 DIE_MACHINE_HALT,
21 DIE_MACHINE_RESTART,
22 DIE_MCA_MONARCH_ENTER,
23 DIE_MCA_MONARCH_PROCESS,
24 DIE_MCA_MONARCH_LEAVE,
25 DIE_MCA_SLAVE_ENTER,
26 DIE_MCA_SLAVE_PROCESS,
27 DIE_MCA_SLAVE_LEAVE,
28 DIE_MCA_RENDZVOUS_ENTER,
29 DIE_MCA_RENDZVOUS_PROCESS,
30 DIE_MCA_RENDZVOUS_LEAVE,
Keith Owens958b1662006-04-03 15:26:12 +100031 DIE_MCA_NEW_TIMEOUT,
32 DIE_INIT_ENTER,
Keith Owens9138d582005-11-07 11:27:13 -080033 DIE_INIT_MONARCH_ENTER,
34 DIE_INIT_MONARCH_PROCESS,
35 DIE_INIT_MONARCH_LEAVE,
36 DIE_INIT_SLAVE_ENTER,
37 DIE_INIT_SLAVE_PROCESS,
38 DIE_INIT_SLAVE_LEAVE,
39 DIE_KDEBUG_ENTER,
40 DIE_KDEBUG_LEAVE,
41 DIE_KDUMP_ENTER,
42 DIE_KDUMP_LEAVE,
Anil S Keshavamurthy7213b252005-06-23 00:09:27 -070043};
44
Anil S Keshavamurthy7213b252005-06-23 00:09:27 -070045#endif