summaryrefslogtreecommitdiff
path: root/sos-code-article6.5/hwcore/exception.h
blob: c58bbb257275ffaf7f5bb10f2841519a79c0d333 (plain) (blame)
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
/* Copyright (C) 2004  David Decotigny

   This program 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.
   
   This program 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 this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
   USA. 
*/
#ifndef _SOS_HWEXCEPT_H_
#define _SOS_HWEXCEPT_H_

/**
 * @file exception.c
 *
 * Hardware exception routines management.
 */

#ifndef ASM_SOURCE
#  include <sos/errno.h>
#  include "cpu_context.h"
#endif

/**
 * Standard Intel x86 exceptions.
 *
 * @see Intel x86 doc vol 3, section 5.12.
 */
#define SOS_EXCEPT_DIVIDE_ERROR                  0         // No error code
#define SOS_EXCEPT_DEBUG                         1         // No error code
#define SOS_EXCEPT_NMI_INTERRUPT                 2         // No error code
#define SOS_EXCEPT_BREAKPOINT                    3         // No error code
#define SOS_EXCEPT_OVERFLOW                      4         // No error code
#define SOS_EXCEPT_BOUND_RANGE_EXCEDEED          5         // No error code
#define SOS_EXCEPT_INVALID_OPCODE                6         // No error code
#define SOS_EXCEPT_DEVICE_NOT_AVAILABLE          7         // No error code
#define SOS_EXCEPT_DOUBLE_FAULT                  8         // Yes (Zero)
#define SOS_EXCEPT_COPROCESSOR_SEGMENT_OVERRUN   9         // No error code
#define SOS_EXCEPT_INVALID_TSS                  10         // Yes
#define SOS_EXCEPT_SEGMENT_NOT_PRESENT          11         // Yes
#define SOS_EXCEPT_STACK_SEGMENT_FAULT          12         // Yes
#define SOS_EXCEPT_GENERAL_PROTECTION           13         // Yes
#define SOS_EXCEPT_PAGE_FAULT                   14         // Yes
#define SOS_EXCEPT_INTEL_RESERVED_1             15         // No
#define SOS_EXCEPT_FLOATING_POINT_ERROR         16         // No
#define SOS_EXCEPT_ALIGNEMENT_CHECK             17         // Yes (Zero)
#define SOS_EXCEPT_MACHINE_CHECK                18         // No
#define SOS_EXCEPT_INTEL_RESERVED_2             19         // No
#define SOS_EXCEPT_INTEL_RESERVED_3             20         // No
#define SOS_EXCEPT_INTEL_RESERVED_4             21         // No
#define SOS_EXCEPT_INTEL_RESERVED_5             22         // No
#define SOS_EXCEPT_INTEL_RESERVED_6             23         // No
#define SOS_EXCEPT_INTEL_RESERVED_7             24         // No
#define SOS_EXCEPT_INTEL_RESERVED_8             25         // No
#define SOS_EXCEPT_INTEL_RESERVED_9             26         // No
#define SOS_EXCEPT_INTEL_RESERVED_10            27         // No
#define SOS_EXCEPT_INTEL_RESERVED_11            28         // No
#define SOS_EXCEPT_INTEL_RESERVED_12            29         // No
#define SOS_EXCEPT_INTEL_RESERVED_13            30         // No
#define SOS_EXCEPT_INTEL_RESERVED_14            31         // No

#ifndef ASM_SOURCE

typedef void (*sos_exception_handler_t)(int exception_number,
					const struct sos_cpu_state *cpu_kstate);

sos_ret_t sos_exception_subsystem_setup(void);
sos_ret_t sos_exception_set_routine(int exception_number,
				    sos_exception_handler_t routine);
sos_exception_handler_t sos_exception_get_routine(int exception_number);

const char * sos_exception_get_name(int exception_number);
#endif /* ! ASM_SOURCE */

#endif /* _SOS_HWEXCEPT_H_ */