xref: /qemu/include/exec/cpu-defs.h (revision 1de29aef17a7d70dbc04a7fe51e18942e3ebe313)
1ab93bbe2Sbellard /*
2ab93bbe2Sbellard  * common defines for all CPUs
3ab93bbe2Sbellard  *
4ab93bbe2Sbellard  * Copyright (c) 2003 Fabrice Bellard
5ab93bbe2Sbellard  *
6ab93bbe2Sbellard  * This library is free software; you can redistribute it and/or
7ab93bbe2Sbellard  * modify it under the terms of the GNU Lesser General Public
8ab93bbe2Sbellard  * License as published by the Free Software Foundation; either
9ab93bbe2Sbellard  * version 2 of the License, or (at your option) any later version.
10ab93bbe2Sbellard  *
11ab93bbe2Sbellard  * This library is distributed in the hope that it will be useful,
12ab93bbe2Sbellard  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13ab93bbe2Sbellard  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14ab93bbe2Sbellard  * Lesser General Public License for more details.
15ab93bbe2Sbellard  *
16ab93bbe2Sbellard  * You should have received a copy of the GNU Lesser General Public
178167ee88SBlue Swirl  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18ab93bbe2Sbellard  */
19ab93bbe2Sbellard #ifndef CPU_DEFS_H
20ab93bbe2Sbellard #define CPU_DEFS_H
21ab93bbe2Sbellard 
2287ecb68bSpbrook #ifndef NEED_CPU_H
2387ecb68bSpbrook #error cpu.h included from common code
2487ecb68bSpbrook #endif
2587ecb68bSpbrook 
26ab93bbe2Sbellard #include "config.h"
27ed1c0bcbSbellard #include <inttypes.h>
281de7afc9SPaolo Bonzini #include "qemu/osdep.h"
291de7afc9SPaolo Bonzini #include "qemu/queue.h"
30*1de29aefSPaolo Bonzini #include "tcg-target.h"
31ce927ed9SAndreas Färber #ifndef CONFIG_USER_ONLY
32022c62cbSPaolo Bonzini #include "exec/hwaddr.h"
33ce927ed9SAndreas Färber #endif
34fadc1cbeSPeter Maydell #include "exec/memattrs.h"
35ab93bbe2Sbellard 
3635b66fc4Sbellard #ifndef TARGET_LONG_BITS
3735b66fc4Sbellard #error TARGET_LONG_BITS must be defined before including this header
3835b66fc4Sbellard #endif
3935b66fc4Sbellard 
4035b66fc4Sbellard #define TARGET_LONG_SIZE (TARGET_LONG_BITS / 8)
4135b66fc4Sbellard 
42ab6d960fSbellard /* target_ulong is the type of a virtual address */
4335b66fc4Sbellard #if TARGET_LONG_SIZE == 4
446cfd9b52SPaolo Bonzini typedef int32_t target_long;
456cfd9b52SPaolo Bonzini typedef uint32_t target_ulong;
46c27004ecSbellard #define TARGET_FMT_lx "%08x"
47b62b461bSj_mayer #define TARGET_FMT_ld "%d"
4871c8b8fdSj_mayer #define TARGET_FMT_lu "%u"
4935b66fc4Sbellard #elif TARGET_LONG_SIZE == 8
506cfd9b52SPaolo Bonzini typedef int64_t target_long;
516cfd9b52SPaolo Bonzini typedef uint64_t target_ulong;
5226a76461Sbellard #define TARGET_FMT_lx "%016" PRIx64
53b62b461bSj_mayer #define TARGET_FMT_ld "%" PRId64
5471c8b8fdSj_mayer #define TARGET_FMT_lu "%" PRIu64
5535b66fc4Sbellard #else
5635b66fc4Sbellard #error TARGET_LONG_SIZE undefined
5735b66fc4Sbellard #endif
5835b66fc4Sbellard 
592be0071fSbellard #define EXCP_INTERRUPT 	0x10000 /* async interruption */
602be0071fSbellard #define EXCP_HLT        0x10001 /* hlt instruction reached */
612be0071fSbellard #define EXCP_DEBUG      0x10002 /* cpu stopped after a breakpoint or singlestep */
625a1e3cfcSbellard #define EXCP_HALTED     0x10003 /* cpu is halted (waiting for external event) */
6372c1d3afSPeter Maydell #define EXCP_YIELD      0x10004 /* cpu wants to yield timeslice to another */
64ab93bbe2Sbellard 
65b362e5e0Spbrook /* Only the bottom TB_JMP_PAGE_BITS of the jump cache hash bits vary for
66b362e5e0Spbrook    addresses on the same page.  The top bits are the same.  This allows
67b362e5e0Spbrook    TLB invalidation to quickly clear a subset of the hash table.  */
68b362e5e0Spbrook #define TB_JMP_PAGE_BITS (TB_JMP_CACHE_BITS / 2)
69b362e5e0Spbrook #define TB_JMP_PAGE_SIZE (1 << TB_JMP_PAGE_BITS)
70b362e5e0Spbrook #define TB_JMP_ADDR_MASK (TB_JMP_PAGE_SIZE - 1)
71b362e5e0Spbrook #define TB_JMP_PAGE_MASK (TB_JMP_CACHE_SIZE - TB_JMP_PAGE_SIZE)
72b362e5e0Spbrook 
7320cb400dSPaul Brook #if !defined(CONFIG_USER_ONLY)
7488e89a57SXin Tong /* use a fully associative victim tlb of 8 entries */
7588e89a57SXin Tong #define CPU_VTLB_SIZE 8
76ab93bbe2Sbellard 
77355b1943SPaul Brook #if HOST_LONG_BITS == 32 && TARGET_LONG_BITS == 32
78d656469fSbellard #define CPU_TLB_ENTRY_BITS 4
79d656469fSbellard #else
80d656469fSbellard #define CPU_TLB_ENTRY_BITS 5
81d656469fSbellard #endif
82d656469fSbellard 
83*1de29aefSPaolo Bonzini /* TCG_TARGET_TLB_DISPLACEMENT_BITS is used in CPU_TLB_BITS to ensure that
84*1de29aefSPaolo Bonzini  * the TLB is not unnecessarily small, but still small enough for the
85*1de29aefSPaolo Bonzini  * TLB lookup instruction sequence used by the TCG target.
86*1de29aefSPaolo Bonzini  *
87*1de29aefSPaolo Bonzini  * TCG will have to generate an operand as large as the distance between
88*1de29aefSPaolo Bonzini  * env and the tlb_table[NB_MMU_MODES - 1][0].addend.  For simplicity,
89*1de29aefSPaolo Bonzini  * the TCG targets just round everything up to the next power of two, and
90*1de29aefSPaolo Bonzini  * count bits.  This works because: 1) the size of each TLB is a largish
91*1de29aefSPaolo Bonzini  * power of two, 2) and because the limit of the displacement is really close
92*1de29aefSPaolo Bonzini  * to a power of two, 3) the offset of tlb_table[0][0] inside env is smaller
93*1de29aefSPaolo Bonzini  * than the size of a TLB.
94*1de29aefSPaolo Bonzini  *
95*1de29aefSPaolo Bonzini  * For example, the maximum displacement 0xFFF0 on PPC and MIPS, but TCG
96*1de29aefSPaolo Bonzini  * just says "the displacement is 16 bits".  TCG_TARGET_TLB_DISPLACEMENT_BITS
97*1de29aefSPaolo Bonzini  * then ensures that tlb_table at least 0x8000 bytes large ("not unnecessarily
98*1de29aefSPaolo Bonzini  * small": 2^15).  The operand then will come up smaller than 0xFFF0 without
99*1de29aefSPaolo Bonzini  * any particular care, because the TLB for a single MMU mode is larger than
100*1de29aefSPaolo Bonzini  * 0x10000-0xFFF0=16 bytes.  In the end, the maximum value of the operand
101*1de29aefSPaolo Bonzini  * could be something like 0xC000 (the offset of the last TLB table) plus
102*1de29aefSPaolo Bonzini  * 0x18 (the offset of the addend field in each TLB entry) plus the offset
103*1de29aefSPaolo Bonzini  * of tlb_table inside env (which is non-trivial but not huge).
104*1de29aefSPaolo Bonzini  */
105*1de29aefSPaolo Bonzini #define CPU_TLB_BITS                                             \
106*1de29aefSPaolo Bonzini     MIN(8,                                                       \
107*1de29aefSPaolo Bonzini         TCG_TARGET_TLB_DISPLACEMENT_BITS - CPU_TLB_ENTRY_BITS -  \
108*1de29aefSPaolo Bonzini         (NB_MMU_MODES <= 1 ? 0 :                                 \
109*1de29aefSPaolo Bonzini          NB_MMU_MODES <= 2 ? 1 :                                 \
110*1de29aefSPaolo Bonzini          NB_MMU_MODES <= 4 ? 2 :                                 \
111*1de29aefSPaolo Bonzini          NB_MMU_MODES <= 8 ? 3 : 4))
112*1de29aefSPaolo Bonzini 
113*1de29aefSPaolo Bonzini #define CPU_TLB_SIZE (1 << CPU_TLB_BITS)
114*1de29aefSPaolo Bonzini 
115ab93bbe2Sbellard typedef struct CPUTLBEntry {
1160f459d16Spbrook     /* bit TARGET_LONG_BITS to TARGET_PAGE_BITS : virtual address
1170f459d16Spbrook        bit TARGET_PAGE_BITS-1..4  : Nonzero for accesses that should not
1180f459d16Spbrook                                     go directly to ram.
119db8d7466Sbellard        bit 3                      : indicates that the entry is invalid
120db8d7466Sbellard        bit 2..0                   : zero
121db8d7466Sbellard     */
12284b7b8e7Sbellard     target_ulong addr_read;
12384b7b8e7Sbellard     target_ulong addr_write;
12484b7b8e7Sbellard     target_ulong addr_code;
125355b1943SPaul Brook     /* Addend to virtual address to get host address.  IO accesses
126ee50add9Spbrook        use the corresponding iotlb value.  */
1273b2992e4SStefan Weil     uintptr_t addend;
128d656469fSbellard     /* padding to get a power of two size */
129d656469fSbellard     uint8_t dummy[(1 << CPU_TLB_ENTRY_BITS) -
130d656469fSbellard                   (sizeof(target_ulong) * 3 +
1313b2992e4SStefan Weil                    ((-sizeof(target_ulong) * 3) & (sizeof(uintptr_t) - 1)) +
1323b2992e4SStefan Weil                    sizeof(uintptr_t))];
133ab93bbe2Sbellard } CPUTLBEntry;
134ab93bbe2Sbellard 
135e85ef538SRichard Henderson QEMU_BUILD_BUG_ON(sizeof(CPUTLBEntry) != (1 << CPU_TLB_ENTRY_BITS));
136355b1943SPaul Brook 
137e469b22fSPeter Maydell /* The IOTLB is not accessed directly inline by generated TCG code,
138e469b22fSPeter Maydell  * so the CPUIOTLBEntry layout is not as critical as that of the
139e469b22fSPeter Maydell  * CPUTLBEntry. (This is also why we don't want to combine the two
140e469b22fSPeter Maydell  * structs into one.)
141e469b22fSPeter Maydell  */
142e469b22fSPeter Maydell typedef struct CPUIOTLBEntry {
143e469b22fSPeter Maydell     hwaddr addr;
144fadc1cbeSPeter Maydell     MemTxAttrs attrs;
145e469b22fSPeter Maydell } CPUIOTLBEntry;
146e469b22fSPeter Maydell 
14720cb400dSPaul Brook #define CPU_COMMON_TLB \
14820cb400dSPaul Brook     /* The meaning of the MMU modes is defined in the target code. */   \
14920cb400dSPaul Brook     CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE];                  \
15088e89a57SXin Tong     CPUTLBEntry tlb_v_table[NB_MMU_MODES][CPU_VTLB_SIZE];               \
151e469b22fSPeter Maydell     CPUIOTLBEntry iotlb[NB_MMU_MODES][CPU_TLB_SIZE];                    \
152e469b22fSPeter Maydell     CPUIOTLBEntry iotlb_v[NB_MMU_MODES][CPU_VTLB_SIZE];                 \
153d4c430a8SPaul Brook     target_ulong tlb_flush_addr;                                        \
15488e89a57SXin Tong     target_ulong tlb_flush_mask;                                        \
15588e89a57SXin Tong     target_ulong vtlb_index;                                            \
15620cb400dSPaul Brook 
15720cb400dSPaul Brook #else
15820cb400dSPaul Brook 
15920cb400dSPaul Brook #define CPU_COMMON_TLB
16020cb400dSPaul Brook 
16120cb400dSPaul Brook #endif
16220cb400dSPaul Brook 
16320cb400dSPaul Brook 
164a20e31dcSblueswir1 #define CPU_TEMP_BUF_NLONGS 128
165a316d335Sbellard #define CPU_COMMON                                                      \
166a316d335Sbellard     /* soft mmu support */                                              \
16720cb400dSPaul Brook     CPU_COMMON_TLB                                                      \
168a316d335Sbellard 
169ab93bbe2Sbellard #endif
170