Search
lxdream.org :: lxdream/src/sh4/sh4core.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4core.h
changeset 422:61a0598e07ff
prev401:f79327f39818
next527:14c9489f647e
author nkeynes
date Thu Nov 08 11:54:16 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Add sh4ptr_t type, start converting bare pointer refs to it
view annotate diff log raw
     1 /**
     2  * $Id: sh4core.h,v 1.26 2007-10-06 09:03:24 nkeynes Exp $
     3  * 
     4  * This file defines the internal functions exported/used by the SH4 core, 
     5  * except for disassembly functions defined in sh4dasm.h
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     8  *
     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.
    13  *
    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.
    18  */
    20 #ifndef sh4core_H
    21 #define sh4core_H 1
    23 #include <glib/gtypes.h>
    24 #include <stdint.h>
    25 #include <stdio.h>
    26 #include "mem.h"
    28 #ifdef __cplusplus
    29 extern "C" {
    30 #if 0
    31 }
    32 #endif
    33 #endif
    36 /**
    37  * SH4 is running normally 
    38  */
    39 #define SH4_STATE_RUNNING 1
    40 /**
    41  * SH4 is not executing instructions but all peripheral modules are still
    42  * running
    43  */
    44 #define SH4_STATE_SLEEP 2
    45 /**
    46  * SH4 is not executing instructions, DMAC is halted, but all other peripheral
    47  * modules are still running
    48  */
    49 #define SH4_STATE_DEEP_SLEEP 3
    50 /**
    51  * SH4 is not executing instructions and all peripheral modules are also
    52  * stopped. As close as you can get to powered-off without actually being
    53  * off.
    54  */
    55 #define SH4_STATE_STANDBY 4
    57 #define PENDING_IRQ 1
    58 #define PENDING_EVENT 2
    60 struct sh4_registers {
    61     uint32_t r[16];
    62     uint32_t sr, pr, pc, fpscr;
    63     uint32_t t, m, q, s; /* really boolean - 0 or 1 */
    64     int32_t fpul;
    65     float *fr_bank;
    66     float fr[2][16];
    67     uint64_t mac;
    68     uint32_t gbr, ssr, spc, sgr, dbr, vbr;
    70     uint32_t r_bank[8]; /* hidden banked registers */
    71     int32_t store_queue[16]; /* technically 2 banks of 32 bytes */
    73     uint32_t new_pc; /* Not a real register, but used to handle delay slots */
    74     uint32_t event_pending; /* slice cycle time of the next pending event, or FFFFFFFF
    75                              when no events are pending */
    76     uint32_t event_types; /* bit 0 = IRQ pending, bit 1 = general event pending */
    77     int in_delay_slot; /* flag to indicate the current instruction is in
    78                              * a delay slot (certain rules apply) */
    79     uint32_t slice_cycle; /* Current nanosecond within the timeslice */
    80     int sh4_state; /* Current power-on state (one of the SH4_STATE_* values ) */
    81 };
    83 extern struct sh4_registers sh4r;
    84 extern struct breakpoint_struct sh4_breakpoints[MAX_BREAKPOINTS];
    85 extern int sh4_breakpoint_count;
    88 /* Public functions */
    89 void sh4_set_use_xlat( gboolean use );
    90 void sh4_init( void );
    91 void sh4_reset( void );
    92 void sh4_run( void );
    93 void sh4_runto( uint32_t pc, uint32_t count );
    94 void sh4_runfor( uint32_t count );
    95 int sh4_isrunning( void );
    96 void sh4_stop( void );
    97 void sh4_set_pc( int );
    98 void sh4_sleep( void );
    99 void sh4_fsca( uint32_t angle, float *fr );
   100 void sh4_ftrv( float *fv, float *xmtrx );
   101 void signsat48(void);
   103 gboolean sh4_execute_instruction( void );
   104 gboolean sh4_raise_exception( int );
   105 gboolean sh4_raise_trap( int );
   106 gboolean sh4_raise_slot_exception( int, int );
   107 gboolean sh4_raise_tlb_exception( int );
   108 void sh4_set_breakpoint( uint32_t pc, int type );
   109 gboolean sh4_clear_breakpoint( uint32_t pc, int type );
   110 int sh4_get_breakpoint( uint32_t pc );
   111 void sh4_accept_interrupt( void );
   113 #define BREAK_ONESHOT 1
   114 #define BREAK_PERM 2
   116 /* SH4 Memory */
   117 int32_t sh4_read_long( uint32_t addr );
   118 int32_t sh4_read_word( uint32_t addr );
   119 int32_t sh4_read_byte( uint32_t addr );
   120 void sh4_write_long( uint32_t addr, uint32_t val );
   121 void sh4_write_word( uint32_t addr, uint32_t val );
   122 void sh4_write_byte( uint32_t addr, uint32_t val );
   123 int32_t sh4_read_phys_word( uint32_t addr );
   124 void sh4_flush_store_queue( uint32_t addr );
   126 /* SH4 Support methods */
   127 uint32_t sh4_read_sr(void);
   128 void sh4_write_sr(uint32_t val);
   130 /* Peripheral functions */
   131 void CPG_reset( void );
   132 void TMU_run_slice( uint32_t );
   133 void TMU_update_clocks( void );
   134 void TMU_reset( void );
   135 void TMU_save_state( FILE * );
   136 int TMU_load_state( FILE * );
   137 void DMAC_reset( void );
   138 void DMAC_run_slice( uint32_t );
   139 void DMAC_save_state( FILE * );
   140 int DMAC_load_state( FILE * );
   141 void SCIF_reset( void );
   142 void SCIF_run_slice( uint32_t );
   143 void SCIF_save_state( FILE *f );
   144 int SCIF_load_state( FILE *f );
   145 void INTC_reset( void );
   146 void INTC_save_state( FILE *f );
   147 int INTC_load_state( FILE *f );
   148 void MMU_init( void );
   149 void MMU_reset( void );
   150 void MMU_save_state( FILE *f );
   151 int MMU_load_state( FILE *f );
   152 void SCIF_update_line_speed(void);
   154 #define SIGNEXT4(n) ((((int32_t)(n))<<28)>>28)
   155 #define SIGNEXT8(n) ((int32_t)((int8_t)(n)))
   156 #define SIGNEXT12(n) ((((int32_t)(n))<<20)>>20)
   157 #define SIGNEXT16(n) ((int32_t)((int16_t)(n)))
   158 #define SIGNEXT32(n) ((int64_t)((int32_t)(n)))
   159 #define SIGNEXT48(n) ((((int64_t)(n))<<16)>>16)
   161 /* Status Register (SR) bits */
   162 #define SR_MD    0x40000000 /* Processor mode ( User=0, Privileged=1 ) */ 
   163 #define SR_RB    0x20000000 /* Register bank (priviledged mode only) */
   164 #define SR_BL    0x10000000 /* Exception/interupt block (1 = masked) */
   165 #define SR_FD    0x00008000 /* FPU disable */
   166 #define SR_M     0x00000200
   167 #define SR_Q     0x00000100
   168 #define SR_IMASK 0x000000F0 /* Interrupt mask level */
   169 #define SR_S     0x00000002 /* Saturation operation for MAC instructions */
   170 #define SR_T     0x00000001 /* True/false or carry/borrow */
   171 #define SR_MASK  0x700083F3
   172 #define SR_MQSTMASK 0xFFFFFCFC /* Mask to clear the flags we're keeping separately */
   174 #define IS_SH4_PRIVMODE() (sh4r.sr&SR_MD)
   175 #define SH4_INTMASK() ((sh4r.sr&SR_IMASK)>>4)
   176 #define SH4_EVENT_PENDING() (sh4r.event_pending <= sh4r.slice_cycle && !sh4r.in_delay_slot)
   178 #define FPSCR_FR     0x00200000 /* FPU register bank */
   179 #define FPSCR_SZ     0x00100000 /* FPU transfer size (0=32 bits, 1=64 bits) */
   180 #define FPSCR_PR     0x00080000 /* Precision (0=32 bites, 1=64 bits) */
   181 #define FPSCR_DN     0x00040000 /* Denormalization mode (1 = treat as 0) */
   182 #define FPSCR_CAUSE  0x0003F000
   183 #define FPSCR_ENABLE 0x00000F80
   184 #define FPSCR_FLAG   0x0000007C
   185 #define FPSCR_RM     0x00000003 /* Rounding mode (0=nearest, 1=to zero) */
   187 #define IS_FPU_DOUBLEPREC() (sh4r.fpscr&FPSCR_PR)
   188 #define IS_FPU_DOUBLESIZE() (sh4r.fpscr&FPSCR_SZ)
   189 #define IS_FPU_ENABLED() ((sh4r.sr&SR_FD)==0)
   191 #define FR(x) sh4r.fr_bank[(x)^1]
   192 #define DRF(x) ((double *)sh4r.fr_bank)[x]
   193 #define XF(x) sh4r.fr[((~sh4r.fpscr)&FPSCR_FR)>>21][(x)^1]
   194 #define XDR(x) ((double *)(sh4r.fr[((~sh4r.fpscr)&FPSCR_FR)>>21]))[x]
   195 #define DRb(x,b) ((double *)(sh4r.fr[((b ? (~sh4r.fpscr) : sh4r.fpscr)&FPSCR_FR)>>21]))[x]
   196 #define DR(x) DRb((x>>1), (x&1))
   197 #define FPULf   *((float *)&sh4r.fpul)
   198 #define FPULi    (sh4r.fpul)
   200 /* CPU-generated exception code/vector pairs */
   201 #define EXC_POWER_RESET    0x000 /* vector special */
   202 #define EXC_MANUAL_RESET   0x020
   203 #define EXC_DATA_ADDR_READ 0x0E0
   204 #define EXC_DATA_ADDR_WRITE 0x100
   205 #define EXC_SLOT_ILLEGAL   0x1A0
   206 #define EXC_ILLEGAL        0x180
   207 #define EXC_TRAP           0x160
   208 #define EXC_FPU_DISABLED   0x800
   209 #define EXC_SLOT_FPU_DISABLED 0x820
   211 /* Exceptions (for use with sh4_raise_exception) */
   213 #define EX_ILLEGAL_INSTRUCTION 0x180, 0x100
   214 #define EX_SLOT_ILLEGAL        0x1A0, 0x100
   215 #define EX_TLB_MISS_READ       0x040, 0x400
   216 #define EX_TLB_MISS_WRITE      0x060, 0x400
   217 #define EX_INIT_PAGE_WRITE     0x080, 0x100
   218 #define EX_TLB_PROT_READ       0x0A0, 0x100
   219 #define EX_TLB_PROT_WRITE      0x0C0, 0x100
   220 #define EX_DATA_ADDR_READ      0x0E0, 0x100
   221 #define EX_DATA_ADDR_WRITE     0x100, 0x100
   222 #define EX_FPU_EXCEPTION       0x120, 0x100
   223 #define EX_TRAPA               0x160, 0x100
   224 #define EX_BREAKPOINT          0x1E0, 0x100
   225 #define EX_FPU_DISABLED        0x800, 0x100
   226 #define EX_SLOT_FPU_DISABLED   0x820, 0x100
   228 #define SH4_WRITE_STORE_QUEUE(addr,val) sh4r.store_queue[(addr>>2)&0xF] = val;
   230 #ifdef __cplusplus
   231 }
   232 #endif
   233 #endif
.