]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/hal/h8300/arch/v2_0/include/arch.inc
Initial revision
[karo-tx-redboot.git] / packages / hal / h8300 / arch / v2_0 / include / arch.inc
1 #ifndef CYGONCE_HAL_ARCH_INC
2 #define CYGONCE_HAL_ARCH_INC
3 ##=============================================================================
4 ##
5 ##      arch.inc
6 ##
7 ##      H8/300 assembler header file
8 ##
9 ##=============================================================================
10 #####ECOSGPLCOPYRIGHTBEGIN####
11 ## -------------------------------------------
12 ## This file is part of eCos, the Embedded Configurable Operating System.
13 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
14 ##
15 ## eCos is free software; you can redistribute it and/or modify it under
16 ## the terms of the GNU General Public License as published by the Free
17 ## Software Foundation; either version 2 or (at your option) any later version.
18 ##
19 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
20 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
22 ## for more details.
23 ##
24 ## You should have received a copy of the GNU General Public License along
25 ## with eCos; if not, write to the Free Software Foundation, Inc.,
26 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27 ##
28 ## As a special exception, if other files instantiate templates or use macros
29 ## or inline functions from this file, or you compile this file and link it
30 ## with other works to produce a work based on this file, this file does not
31 ## by itself cause the resulting work to be covered by the GNU General Public
32 ## License. However the source code for this file must still be made available
33 ## in accordance with section (3) of the GNU General Public License.
34 ##
35 ## This exception does not invalidate any other reasons why a work based on
36 ## this file might be covered by the GNU General Public License.
37 ##
38 ## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
39 ## at http://sources.redhat.com/ecos/ecos-license/
40 ## -------------------------------------------
41 #####ECOSGPLCOPYRIGHTEND####
42 ##=============================================================================
43 #######DESCRIPTIONBEGIN####
44 ##
45 ## Author(s):   yoshinori sato
46 ## Contributors:        yoshinori sato
47 ## Date:        2002-02-14
48 ## Purpose:     Architecture definitions.
49 ## Description: This file contains various definitions and macros that are
50 ##              useful for writing assembly code for the H8300 CPU family.
51 ## Usage:
52 ##              #include <cyg/hal/arch.inc>
53 ##              ...
54 ##              
55 ##
56 ######DESCRIPTIONEND####
57 ##
58 ##=============================================================================
59
60 #include <pkgconf/hal.h>
61         
62 #include <cyg/hal/variant.inc>
63
64 ##-----------------------------------------------------------------------------
65 ## CPU specific macros. These provide a common assembler interface to
66 ## operations that may have CPU specific implementations on different
67 ## variants of the architecture.                
68
69 #ifndef CYGPKG_HAL_H8300_CPU_INIT_DEFINED
70         # Initialize CPU
71         .macro  hal_cpu_init
72         # Set up the PSW
73         ldc     #0xc0,ccr
74         .endm
75 #endif
76
77         # Enable further exception processing, and disable
78         # interrupt processing.
79         .macro hal_cpu_except_enable
80         .endm           
81         
82         # Return from exception.
83         .macro  hal_cpu_eret pc,sr
84         .endm
85         
86 ##-----------------------------------------------------------------------------
87 # Default interrupt decoding macros.
88
89 #ifndef CYGPKG_HAL_H8300_INTC_DEFINED
90
91 #ifndef CYGPKG_HAL_H8300_INTC_INIT_DEFINED
92         # initialize all interrupts to disabled
93         .macro  hal_intc_init
94         .endm
95 #endif
96
97         .macro  hal_intc_decode vnum
98         .endm
99
100 #endif
101
102 #------------------------------------------------------------------------------
103 # MMU macros.
104         
105 #ifndef CYGPKG_HAL_H8300_MMU_DEFINED
106
107         .macro  hal_mmu_init
108         .endm
109
110 #endif  
111
112 #------------------------------------------------------------------------------
113 # MEMC macros.
114         
115 #ifndef CYGPKG_HAL_H8300_MEMC_DEFINED
116
117         .macro  hal_memc_init
118         .endm
119
120 #endif  
121         
122 #------------------------------------------------------------------------------
123 # Cache macros.
124         
125 #ifndef CYGPKG_HAL_H8300_CACHE_DEFINED
126
127         .macro  hal_cache_init
128         .endm
129
130 #endif  
131
132 #------------------------------------------------------------------------------
133 # Diagnostics macros.
134         
135 #ifndef CYGPKG_HAL_H8300_DIAG_DEFINED
136
137         .macro  hal_diag_init
138         .endm
139
140         .macro  hal_diag_excpt_start
141         .endm
142
143         .macro  hal_diag_intr_start
144         .endm
145
146         .macro  hal_diag_restore
147         .endm
148
149         .macro  hal_diag_data
150         .endm
151 #endif  
152
153 #------------------------------------------------------------------------------
154 # Timer initialization.
155         
156 #ifndef CYGPKG_HAL_H8300_TIMER_DEFINED
157
158         .macro  hal_timer_init
159         .endm
160
161 #endif  
162
163 #------------------------------------------------------------------------------
164 # Monitor initialization.
165         
166 #ifndef CYGPKG_HAL_H8300_MON_DEFINED
167
168         .macro  hal_mon_init
169         .endm
170
171 #endif  
172
173 #------------------------------------------------------------------------------
174 #endif // ifndef CYGONCE_HAL_ARCH_INC
175 # end of arch.inc