4 * SH4 parent module for all CPU modes and SH4 peripheral
7 * Copyright (c) 2005 Nathan Keynes.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #define MODULE sh4_module
23 #include "dreamcast.h"
24 #include "sh4/sh4core.h"
25 #include "sh4/sh4mmio.h"
27 #include "sh4/xltcache.h"
28 #include "sh4/sh4stat.h"
33 void sh4_init( void );
34 void sh4_xlat_init( void );
35 void sh4_reset( void );
36 void sh4_start( void );
37 void sh4_stop( void );
38 void sh4_save_state( FILE *f );
39 int sh4_load_state( FILE *f );
41 uint32_t sh4_run_slice( uint32_t );
42 uint32_t sh4_xlat_run_slice( uint32_t );
44 struct dreamcast_module sh4_module = { "SH4", sh4_init, sh4_reset,
45 NULL, sh4_run_slice, sh4_stop,
46 sh4_save_state, sh4_load_state };
48 struct sh4_registers sh4r;
49 struct breakpoint_struct sh4_breakpoints[MAX_BREAKPOINTS];
50 int sh4_breakpoint_count = 0;
51 extern sh4ptr_t sh4_main_ram;
52 static gboolean sh4_use_translator = FALSE;
54 void sh4_set_use_xlat( gboolean use )
56 // No-op if the translator was not built
61 sh4_module.run_time_slice = sh4_xlat_run_slice;
63 sh4_module.run_time_slice = sh4_run_slice;
65 sh4_use_translator = use;
71 register_io_regions( mmio_list_sh4mmio );
72 sh4_main_ram = mem_get_region_by_name(MEM_REGION_MAIN);
79 if( sh4_use_translator ) {
83 /* zero everything out, for the sake of having a consistent state. */
84 memset( &sh4r, 0, sizeof(sh4r) );
86 /* Resume running if we were halted */
87 sh4r.sh4_state = SH4_STATE_RUNNING;
90 sh4r.new_pc= 0xA0000002;
91 sh4r.vbr = 0x00000000;
92 sh4r.fpscr = 0x00040001;
94 sh4r.fr_bank = &sh4r.fr[0][0];
96 /* Mem reset will do this, but if we want to reset _just_ the SH4... */
97 MMIO_WRITE( MMU, EXPEVT, EXC_POWER_RESET );
99 /* Peripheral modules */
110 if( sh4_use_translator ) {
111 /* If we were running with the translator, update new_pc and in_delay_slot */
112 sh4r.new_pc = sh4r.pc+2;
113 sh4r.in_delay_slot = FALSE;
118 void sh4_save_state( FILE *f )
120 if( sh4_use_translator ) {
121 /* If we were running with the translator, update new_pc and in_delay_slot */
122 sh4r.new_pc = sh4r.pc+2;
123 sh4r.in_delay_slot = FALSE;
126 fwrite( &sh4r, sizeof(sh4r), 1, f );
128 INTC_save_state( f );
130 SCIF_save_state( f );
133 int sh4_load_state( FILE * f )
135 if( sh4_use_translator ) {
138 fread( &sh4r, sizeof(sh4r), 1, f );
139 sh4r.fr_bank = &sh4r.fr[(sh4r.fpscr&FPSCR_FR)>>21][0]; // Fixup internal FR pointer
141 INTC_load_state( f );
143 return SCIF_load_state( f );
147 void sh4_set_breakpoint( uint32_t pc, int type )
149 sh4_breakpoints[sh4_breakpoint_count].address = pc;
150 sh4_breakpoints[sh4_breakpoint_count].type = type;
151 sh4_breakpoint_count++;
154 gboolean sh4_clear_breakpoint( uint32_t pc, int type )
158 for( i=0; i<sh4_breakpoint_count; i++ ) {
159 if( sh4_breakpoints[i].address == pc &&
160 sh4_breakpoints[i].type == type ) {
161 while( ++i < sh4_breakpoint_count ) {
162 sh4_breakpoints[i-1].address = sh4_breakpoints[i].address;
163 sh4_breakpoints[i-1].type = sh4_breakpoints[i].type;
165 sh4_breakpoint_count--;
172 int sh4_get_breakpoint( uint32_t pc )
175 for( i=0; i<sh4_breakpoint_count; i++ ) {
176 if( sh4_breakpoints[i].address == pc )
177 return sh4_breakpoints[i].type;
182 void sh4_set_pc( int pc )
189 /******************************* Support methods ***************************/
191 static void sh4_switch_banks( )
195 memcpy( tmp, sh4r.r, sizeof(uint32_t)*8 );
196 memcpy( sh4r.r, sh4r.r_bank, sizeof(uint32_t)*8 );
197 memcpy( sh4r.r_bank, tmp, sizeof(uint32_t)*8 );
200 void sh4_write_sr( uint32_t newval )
202 if( (newval ^ sh4r.sr) & SR_RB )
205 sh4r.t = (newval&SR_T) ? 1 : 0;
206 sh4r.s = (newval&SR_S) ? 1 : 0;
207 sh4r.m = (newval&SR_M) ? 1 : 0;
208 sh4r.q = (newval&SR_Q) ? 1 : 0;
212 uint32_t sh4_read_sr( void )
214 /* synchronize sh4r.sr with the various bitflags */
215 sh4r.sr &= SR_MQSTMASK;
216 if( sh4r.t ) sh4r.sr |= SR_T;
217 if( sh4r.s ) sh4r.sr |= SR_S;
218 if( sh4r.m ) sh4r.sr |= SR_M;
219 if( sh4r.q ) sh4r.sr |= SR_Q;
225 #define RAISE( x, v ) do{ \
226 if( sh4r.vbr == 0 ) { \
227 ERROR( "%08X: VBR not initialized while raising exception %03X, halting", sh4r.pc, x ); \
228 dreamcast_stop(); return FALSE; \
230 sh4r.spc = sh4r.pc; \
231 sh4r.ssr = sh4_read_sr(); \
232 sh4r.sgr = sh4r.r[15]; \
233 MMIO_WRITE(MMU,EXPEVT,x); \
234 sh4r.pc = sh4r.vbr + v; \
235 sh4r.new_pc = sh4r.pc + 2; \
236 sh4_write_sr( sh4r.ssr |SR_MD|SR_BL|SR_RB ); \
237 if( sh4r.in_delay_slot ) { \
238 sh4r.in_delay_slot = 0; \
242 return TRUE; } while(0)
245 * Raise a general CPU exception for the specified exception code.
246 * (NOT for TRAPA or TLB exceptions)
248 gboolean sh4_raise_exception( int code )
250 RAISE( code, EXV_EXCEPTION );
254 * Raise a CPU reset exception with the specified exception code.
256 gboolean sh4_raise_reset( int code )
258 // FIXME: reset modules as per "manual reset"
260 MMIO_WRITE(MMU,EXPEVT,code);
262 sh4r.pc = 0xA0000000;
263 sh4r.new_pc = sh4r.pc + 2;
264 sh4_write_sr( (sh4r.sr|SR_MD|SR_BL|SR_RB|SR_IMASK)
268 gboolean sh4_raise_trap( int trap )
270 MMIO_WRITE( MMU, TRA, trap<<2 );
271 return sh4_raise_exception( EXC_TRAP );
274 gboolean sh4_raise_slot_exception( int normal_code, int slot_code ) {
275 if( sh4r.in_delay_slot ) {
276 return sh4_raise_exception(slot_code);
278 return sh4_raise_exception(normal_code);
282 gboolean sh4_raise_tlb_exception( int code )
284 RAISE( code, EXV_TLBMISS );
287 void sh4_accept_interrupt( void )
289 uint32_t code = intc_accept_interrupt();
290 sh4r.ssr = sh4_read_sr();
292 sh4r.sgr = sh4r.r[15];
293 sh4_write_sr( sh4r.ssr|SR_BL|SR_MD|SR_RB );
294 MMIO_WRITE( MMU, INTEVT, code );
295 sh4r.pc = sh4r.vbr + 0x600;
296 sh4r.new_pc = sh4r.pc + 2;
297 // WARN( "Accepting interrupt %03X, from %08X => %08X", code, sh4r.spc, sh4r.pc );
300 void signsat48( void )
302 if( ((int64_t)sh4r.mac) < (int64_t)0xFFFF800000000000LL )
303 sh4r.mac = 0xFFFF800000000000LL;
304 else if( ((int64_t)sh4r.mac) > (int64_t)0x00007FFFFFFFFFFFLL )
305 sh4r.mac = 0x00007FFFFFFFFFFFLL;
308 void sh4_fsca( uint32_t anglei, float *fr )
310 float angle = (((float)(anglei&0xFFFF))/65536.0) * 2 * M_PI;
317 if( MMIO_READ( CPG, STBCR ) & 0x80 ) {
318 sh4r.sh4_state = SH4_STATE_STANDBY;
320 sh4r.sh4_state = SH4_STATE_SLEEP;
325 * Compute the matrix tranform of fv given the matrix xf.
326 * Both fv and xf are word-swapped as per the sh4r.fr banks
328 void sh4_ftrv( float *target, float *xf )
330 float fv[4] = { target[1], target[0], target[3], target[2] };
331 target[1] = xf[1] * fv[0] + xf[5]*fv[1] +
332 xf[9]*fv[2] + xf[13]*fv[3];
333 target[0] = xf[0] * fv[0] + xf[4]*fv[1] +
334 xf[8]*fv[2] + xf[12]*fv[3];
335 target[3] = xf[3] * fv[0] + xf[7]*fv[1] +
336 xf[11]*fv[2] + xf[15]*fv[3];
337 target[2] = xf[2] * fv[0] + xf[6]*fv[1] +
338 xf[10]*fv[2] + xf[14]*fv[3];
.