OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [sparclite/] [arch/] [v2_0/] [include/] [vectors.h] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
#ifndef CYGONCE_HAL_VECTORS_H
2
#define CYGONCE_HAL_VECTORS_H
3
 
4
//=============================================================================
5
//
6
//      vectors.h
7
//
8
//      SPARClite Architecture specific vector numbers &c
9
//
10
//=============================================================================
11
//####ECOSGPLCOPYRIGHTBEGIN####
12
// -------------------------------------------
13
// This file is part of eCos, the Embedded Configurable Operating System.
14
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
15
//
16
// eCos is free software; you can redistribute it and/or modify it under
17
// the terms of the GNU General Public License as published by the Free
18
// Software Foundation; either version 2 or (at your option) any later version.
19
//
20
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
21
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
22
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23
// for more details.
24
//
25
// You should have received a copy of the GNU General Public License along
26
// with eCos; if not, write to the Free Software Foundation, Inc.,
27
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
28
//
29
// As a special exception, if other files instantiate templates or use macros
30
// or inline functions from this file, or you compile this file and link it
31
// with other works to produce a work based on this file, this file does not
32
// by itself cause the resulting work to be covered by the GNU General Public
33
// License. However the source code for this file must still be made available
34
// in accordance with section (3) of the GNU General Public License.
35
//
36
// This exception does not invalidate any other reasons why a work based on
37
// this file might be covered by the GNU General Public License.
38
//
39
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
40
// at http://sources.redhat.com/ecos/ecos-license/
41
// -------------------------------------------
42
//####ECOSGPLCOPYRIGHTEND####
43
//=============================================================================
44
//#####DESCRIPTIONBEGIN####
45
//
46
// Author(s):   hmt
47
// Contributors:hmt
48
// Date:        1998-12-10
49
// Purpose:     Define architecture abstractions and some shared info;
50
//              this file is included by assembler files as well as C/C++.
51
// Usage:       #include <cyg/hal/vectors.h>
52
 
53
//              
54
//####DESCRIPTIONEND####
55
//
56
//=============================================================================
57
 
58
#define __WINSIZE 8
59
 
60
#if __WINSIZE <= 8
61
# define __WINBITS 7
62
#else
63
# error __WINSIZE window size probably not supported
64
#endif
65
 
66
// These should be generic to all SPARCs:
67
 
68
#define __WINBITS_MAXIMAL 0x1f
69
 
70
#define __WIN_INIT (__WINSIZE - 1)
71
#define __WIM_INIT (1 << __WIN_INIT)
72
 
73
// ------------------------------------------------------------------------
74
 
75
#define TRAP_WUNDER     6       // Window Underflow trap number
76
#define TRAP_WOVER      5       // Window Overflow trap number
77
 
78
#define TRAP_INTR_MIN   17      // smallest interrupt trap number
79
#define TRAP_INTR_MAX   31      // largest interrupt trap number
80
 
81
#define TT_MASK         0xff0   // trap type mask from tbr
82
#define TT_SHL          4       // shift to get a tbr value
83
 
84
// Alternatively, detect an interrupt by testing tbr for being in the range
85
// 16-31 by masking &c:
86
#define TT_IS_INTR_MASK         0xf00
87
#define TT_IS_INTR_VALUE        0x100
88
 
89
#if TT_IS_INTR_VALUE != ((TRAP_INTR_MIN << TT_SHL) & TT_IS_INTR_MASK)
90
#error "Bad *_INTR_* symbol definition (1)"
91
#endif
92
 
93
#if TT_IS_INTR_VALUE != ((TRAP_INTR_MAX << TT_SHL) & TT_IS_INTR_MASK)
94
#error "Bad *_INTR_* symbol definition (2)"
95
#endif
96
 
97
#if TT_IS_INTR_VALUE != (((TRAP_INTR_MIN+1) << TT_SHL) & TT_IS_INTR_MASK)
98
#error "Bad *_INTR_* symbol definition (3)"
99
#endif
100
 
101
#if TT_IS_INTR_VALUE != (((TRAP_INTR_MAX-1) << TT_SHL) & TT_IS_INTR_MASK)
102
#error "Bad *_INTR_* symbol definition (4)"
103
#endif
104
 
105
 
106
 
107
//#define SCHED_LOCK_MANGLED_NAME _18Cyg_Scheduler_Base.sched_lock
108
#define SCHED_LOCK_MANGLED_NAME cyg_scheduler_sched_lock
109
 
110
 
111
 
112
#define SAVE_REGS_SIZE (4 * 32) // 32 words of 4 bytes each
113
 
114
 
115
 
116
 
117
#endif // CYGONCE_HAL_VECTORS_H
118
// EOF vectors.h

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.