sh4 fmov et al instructions (amatus)
[qemu] / target-sh4 / cpu.h
1 /*
2  *  SH4 emulation
3  * 
4  *  Copyright (c) 2005 Samuel Tardieu
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 #ifndef _CPU_SH4_H
21 #define _CPU_SH4_H
22
23 #include "config.h"
24
25 #define TARGET_LONG_BITS 32
26 #define TARGET_HAS_ICE 1
27
28 #include "cpu-defs.h"
29
30 #include "softfloat.h"
31
32 #define TARGET_PAGE_BITS 12     /* 4k XXXXX */
33
34 #define SR_MD (1 << 30)
35 #define SR_RB (1 << 29)
36 #define SR_BL (1 << 28)
37 #define SR_FD (1 << 15)
38 #define SR_M  (1 << 9)
39 #define SR_Q  (1 << 8)
40 #define SR_S  (1 << 1)
41 #define SR_T  (1 << 0)
42
43 #define FPSCR_FR (1 << 21)
44 #define FPSCR_SZ (1 << 20)
45 #define FPSCR_PR (1 << 19)
46 #define FPSCR_DN (1 << 18)
47
48 #define DELAY_SLOT             (1 << 0)
49 #define DELAY_SLOT_CONDITIONAL (1 << 1)
50 /* Those are used in contexts only */
51 #define BRANCH                 (1 << 2)
52 #define BRANCH_CONDITIONAL     (1 << 3)
53 #define MODE_CHANGE            (1 << 4) /* Potential MD|RB change */
54 #define BRANCH_EXCEPTION       (1 << 5) /* Branch after exception */
55
56 /* XXXXX The structure could be made more compact */
57 typedef struct tlb_t {
58     uint8_t asid;               /* address space identifier */
59     uint32_t vpn;               /* virtual page number */
60     uint8_t v;                  /* validity */
61     uint32_t ppn;               /* physical page number */
62     uint8_t sz;                 /* page size */
63     uint32_t size;              /* cached page size in bytes */
64     uint8_t sh;                 /* share status */
65     uint8_t c;                  /* cacheability */
66     uint8_t pr;                 /* protection key */
67     uint8_t d;                  /* dirty */
68     uint8_t wt;                 /* write through */
69     uint8_t sa;                 /* space attribute (PCMCIA) */
70     uint8_t tc;                 /* timing control */
71 } tlb_t;
72
73 #define UTLB_SIZE 64
74 #define ITLB_SIZE 4
75
76 typedef struct CPUSH4State {
77     uint32_t flags;             /* general execution flags */
78     uint32_t gregs[24];         /* general registers */
79     uint32_t fregs[32];         /* floating point registers */
80     uint32_t sr;                /* status register */
81     uint32_t ssr;               /* saved status register */
82     uint32_t spc;               /* saved program counter */
83     uint32_t gbr;               /* global base register */
84     uint32_t vbr;               /* vector base register */
85     uint32_t sgr;               /* saved global register 15 */
86     uint32_t dbr;               /* debug base register */
87     uint32_t pc;                /* program counter */
88     uint32_t delayed_pc;        /* target of delayed jump */
89     uint32_t mach;              /* multiply and accumulate high */
90     uint32_t macl;              /* multiply and accumulate low */
91     uint32_t pr;                /* procedure register */
92     uint32_t fpscr;             /* floating point status/control register */
93     uint32_t fpul;              /* floating point communication register */
94
95     /* temporary float registers */
96     float32 ft0, ft1;
97     float64 dt0, dt1;
98
99     /* Those belong to the specific unit (SH7750) but are handled here */
100     uint32_t mmucr;             /* MMU control register */
101     uint32_t pteh;              /* page table entry high register */
102     uint32_t ptel;              /* page table entry low register */
103     uint32_t ptea;              /* page table entry assistance register */
104     uint32_t ttb;               /* tranlation table base register */
105     uint32_t tea;               /* TLB exception address register */
106     uint32_t tra;               /* TRAPA exception register */
107     uint32_t expevt;            /* exception event register */
108     uint32_t intevt;            /* interrupt event register */
109
110     jmp_buf jmp_env;
111     int user_mode_only;
112     int interrupt_request;
113     int exception_index;
114      CPU_COMMON tlb_t utlb[UTLB_SIZE];  /* unified translation table */
115     tlb_t itlb[ITLB_SIZE];      /* instruction translation table */
116 } CPUSH4State;
117
118 CPUSH4State *cpu_sh4_init(void);
119 int cpu_sh4_exec(CPUSH4State * s);
120 struct siginfo;
121 int cpu_sh4_signal_handler(int hostsignum, struct siginfo *info,
122                            void *puc);
123
124 #include "softfloat.h"
125
126 #include "cpu-all.h"
127
128 /* Memory access type */
129 enum {
130     /* Privilege */
131     ACCESS_PRIV = 0x01,
132     /* Direction */
133     ACCESS_WRITE = 0x02,
134     /* Type of instruction */
135     ACCESS_CODE = 0x10,
136     ACCESS_INT = 0x20
137 };
138
139 /* MMU control register */
140 #define MMUCR    0x1F000010
141 #define MMUCR_AT (1<<0)
142 #define MMUCR_SV (1<<8)
143
144 #endif                          /* _CPU_SH4_H */