source: soft/giet_vm/giet_kernel/exc_handler.c @ 538

Last change on this file since 538 was 528, checked in by alain, 9 years ago

1) Introducing support for external IRQs dynamic routing.
2) Simplifying the _v2p_translate() function.
3) Removing the generic IOC driver (integrated in the FAT library).

  • Property svn:executable set to *
File size: 3.9 KB
Line 
1///////////////////////////////////////////////////////////////////////////////////
2// File     : exc_handler.c
3// Date     : 01/04/2012
4// Author   : alain greiner and joel porquet
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7
8#include <exc_handler.h>
9#include <ctx_handler.h>
10#include <sys_handler.h>
11#include <utils.h>
12#include <tty0.h>
13
14///////////////////////////////////////////////////////////////////////////////////
15// Prototypes of exception handlers.
16///////////////////////////////////////////////////////////////////////////////////
17
18static void _cause_ukn();
19static void _cause_adel();
20static void _cause_ades();
21static void _cause_ibe();
22static void _cause_dbe();
23static void _cause_bp();
24static void _cause_ri();
25static void _cause_cpu();
26static void _cause_ovf();
27
28extern void _int_handler();
29extern void _sys_handler();
30
31///////////////////////////////////////////////////////////////////////////////////
32// Initialize the exception vector indexed by the CR XCODE field
33///////////////////////////////////////////////////////////////////////////////////
34const _exc_func_t _cause_vector[16] = 
35{
36    &_int_handler,  /* 0000 : external interrupt */
37    &_cause_ukn,    /* 0001 : undefined exception */
38    &_cause_ukn,    /* 0010 : undefined exception */
39    &_cause_ukn,    /* 0011 : undefined exception */
40    &_cause_adel,   /* 0100 : illegal address read exception */
41    &_cause_ades,   /* 0101 : illegal address write exception */
42    &_cause_ibe,    /* 0110 : instruction bus error exception */
43    &_cause_dbe,    /* 0111 : data bus error exception */
44    &_sys_handler,  /* 1000 : system call */
45    &_cause_bp,     /* 1001 : breakpoint exception */
46    &_cause_ri,     /* 1010 : illegal codop exception */
47    &_cause_cpu,    /* 1011 : illegal coprocessor access */
48    &_cause_ovf,    /* 1100 : arithmetic overflow exception */
49    &_cause_ukn,    /* 1101 : undefined exception */
50    &_cause_ukn,    /* 1110 : undefined exception */
51    &_cause_ukn,    /* 1111 : undefined exception */
52};
53
54static const char * exc_type[] = 
55{
56    "strange unknown cause",
57    "illegal read address",
58    "illegal write address",
59    "inst bus error",
60    "data bus error",
61    "breakpoint",
62    "reserved instruction",
63    "illegal coproc access",
64    "arithmetic overflow",
65};
66
67///////////////////////////////////////////////
68static void _display_cause( unsigned int type ) 
69{
70    unsigned int gpid       = _get_procid();
71    unsigned int cluster_xy = gpid >> P_WIDTH;
72    unsigned int x          = cluster_xy >> Y_WIDTH;
73    unsigned int y          = cluster_xy & ((1<<Y_WIDTH)-1);
74    unsigned int lpid       = gpid & ((1<<P_WIDTH)-1);
75
76    unsigned int task       = _get_context_slot(CTX_LTID_ID);
77
78
79    _printf("\n[GIET] Exception for task %d on processor[%d,%d,%d] at cycle %d\n"
80            " - type      : %s\n"
81            " - EPC       : %x\n"
82            " - BVAR      : %x\n"
83            "...Task desactivated\n",
84            task, x, y, lpid, _get_proctime(),
85            exc_type[type], _get_epc(), _get_bvar() );
86
87    // goes to sleeping state
88    _set_context_slot(CTX_RUN_ID, 0);
89
90    // deschedule (suicide)
91    unsigned int save_sr;  // unused
92    _it_disable( &save_sr );
93    _ctx_switch();
94
95}  // end display_cause()
96
97static void _cause_ukn()  { _display_cause(0); }
98static void _cause_adel() { _display_cause(1); }
99static void _cause_ades() { _display_cause(2); }
100static void _cause_ibe()  { _display_cause(3); }
101static void _cause_dbe()  { _display_cause(4); }
102static void _cause_bp()   { _display_cause(5); }
103static void _cause_ri()   { _display_cause(6); }
104static void _cause_cpu()  { _display_cause(7); }
105static void _cause_ovf()  { _display_cause(8); }
106
107// Local Variables:
108// tab-width: 4
109// c-basic-offset: 4
110// c-file-offsets:((innamespace . 0)(inline-open . 0))
111// indent-tabs-mode: nil
112// End:
113// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
114
Note: See TracBrowser for help on using the repository browser.