xref: /qemu/include/exec/cpu-defs.h (revision ace4109011b4912b24e76f152e2cf010e78819c5)
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 
2687776ab7SPaolo Bonzini #include "qemu/host-utils.h"
271de7afc9SPaolo Bonzini #include "qemu/queue.h"
28b11ec7f2SYang Zhong #ifdef CONFIG_TCG
291de29aefSPaolo Bonzini #include "tcg-target.h"
30b11ec7f2SYang Zhong #endif
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 
59b11ec7f2SYang Zhong #if !defined(CONFIG_USER_ONLY) && defined(CONFIG_TCG)
6088e89a57SXin Tong /* use a fully associative victim tlb of 8 entries */
6188e89a57SXin Tong #define CPU_VTLB_SIZE 8
62ab93bbe2Sbellard 
63355b1943SPaul Brook #if HOST_LONG_BITS == 32 && TARGET_LONG_BITS == 32
64d656469fSbellard #define CPU_TLB_ENTRY_BITS 4
65d656469fSbellard #else
66d656469fSbellard #define CPU_TLB_ENTRY_BITS 5
67d656469fSbellard #endif
68d656469fSbellard 
691de29aefSPaolo Bonzini /* TCG_TARGET_TLB_DISPLACEMENT_BITS is used in CPU_TLB_BITS to ensure that
701de29aefSPaolo Bonzini  * the TLB is not unnecessarily small, but still small enough for the
711de29aefSPaolo Bonzini  * TLB lookup instruction sequence used by the TCG target.
721de29aefSPaolo Bonzini  *
731de29aefSPaolo Bonzini  * TCG will have to generate an operand as large as the distance between
741de29aefSPaolo Bonzini  * env and the tlb_table[NB_MMU_MODES - 1][0].addend.  For simplicity,
751de29aefSPaolo Bonzini  * the TCG targets just round everything up to the next power of two, and
761de29aefSPaolo Bonzini  * count bits.  This works because: 1) the size of each TLB is a largish
771de29aefSPaolo Bonzini  * power of two, 2) and because the limit of the displacement is really close
781de29aefSPaolo Bonzini  * to a power of two, 3) the offset of tlb_table[0][0] inside env is smaller
791de29aefSPaolo Bonzini  * than the size of a TLB.
801de29aefSPaolo Bonzini  *
811de29aefSPaolo Bonzini  * For example, the maximum displacement 0xFFF0 on PPC and MIPS, but TCG
821de29aefSPaolo Bonzini  * just says "the displacement is 16 bits".  TCG_TARGET_TLB_DISPLACEMENT_BITS
831de29aefSPaolo Bonzini  * then ensures that tlb_table at least 0x8000 bytes large ("not unnecessarily
841de29aefSPaolo Bonzini  * small": 2^15).  The operand then will come up smaller than 0xFFF0 without
851de29aefSPaolo Bonzini  * any particular care, because the TLB for a single MMU mode is larger than
861de29aefSPaolo Bonzini  * 0x10000-0xFFF0=16 bytes.  In the end, the maximum value of the operand
871de29aefSPaolo Bonzini  * could be something like 0xC000 (the offset of the last TLB table) plus
881de29aefSPaolo Bonzini  * 0x18 (the offset of the addend field in each TLB entry) plus the offset
891de29aefSPaolo Bonzini  * of tlb_table inside env (which is non-trivial but not huge).
901de29aefSPaolo Bonzini  */
911de29aefSPaolo Bonzini #define CPU_TLB_BITS                                             \
921de29aefSPaolo Bonzini     MIN(8,                                                       \
931de29aefSPaolo Bonzini         TCG_TARGET_TLB_DISPLACEMENT_BITS - CPU_TLB_ENTRY_BITS -  \
941de29aefSPaolo Bonzini         (NB_MMU_MODES <= 1 ? 0 :                                 \
951de29aefSPaolo Bonzini          NB_MMU_MODES <= 2 ? 1 :                                 \
961de29aefSPaolo Bonzini          NB_MMU_MODES <= 4 ? 2 :                                 \
971de29aefSPaolo Bonzini          NB_MMU_MODES <= 8 ? 3 : 4))
981de29aefSPaolo Bonzini 
991de29aefSPaolo Bonzini #define CPU_TLB_SIZE (1 << CPU_TLB_BITS)
1001de29aefSPaolo Bonzini 
101ab93bbe2Sbellard typedef struct CPUTLBEntry {
1020f459d16Spbrook     /* bit TARGET_LONG_BITS to TARGET_PAGE_BITS : virtual address
1030f459d16Spbrook        bit TARGET_PAGE_BITS-1..4  : Nonzero for accesses that should not
1040f459d16Spbrook                                     go directly to ram.
105db8d7466Sbellard        bit 3                      : indicates that the entry is invalid
106db8d7466Sbellard        bit 2..0                   : zero
107db8d7466Sbellard     */
108b4a4b8d0SPeter Crosthwaite     union {
109b4a4b8d0SPeter Crosthwaite         struct {
11084b7b8e7Sbellard             target_ulong addr_read;
11184b7b8e7Sbellard             target_ulong addr_write;
11284b7b8e7Sbellard             target_ulong addr_code;
113355b1943SPaul Brook             /* Addend to virtual address to get host address.  IO accesses
114ee50add9Spbrook                use the corresponding iotlb value.  */
1153b2992e4SStefan Weil             uintptr_t addend;
116b4a4b8d0SPeter Crosthwaite         };
117d656469fSbellard         /* padding to get a power of two size */
118b4a4b8d0SPeter Crosthwaite         uint8_t dummy[1 << CPU_TLB_ENTRY_BITS];
119b4a4b8d0SPeter Crosthwaite     };
120ab93bbe2Sbellard } CPUTLBEntry;
121ab93bbe2Sbellard 
122e85ef538SRichard Henderson QEMU_BUILD_BUG_ON(sizeof(CPUTLBEntry) != (1 << CPU_TLB_ENTRY_BITS));
123355b1943SPaul Brook 
124e469b22fSPeter Maydell /* The IOTLB is not accessed directly inline by generated TCG code,
125e469b22fSPeter Maydell  * so the CPUIOTLBEntry layout is not as critical as that of the
126e469b22fSPeter Maydell  * CPUTLBEntry. (This is also why we don't want to combine the two
127e469b22fSPeter Maydell  * structs into one.)
128e469b22fSPeter Maydell  */
129e469b22fSPeter Maydell typedef struct CPUIOTLBEntry {
130*ace41090SPeter Maydell     /*
131*ace41090SPeter Maydell      * @addr contains:
132*ace41090SPeter Maydell      *  - in the lower TARGET_PAGE_BITS, a physical section number
133*ace41090SPeter Maydell      *  - with the lower TARGET_PAGE_BITS masked off, an offset which
134*ace41090SPeter Maydell      *    must be added to the virtual address to obtain:
135*ace41090SPeter Maydell      *     + the ram_addr_t of the target RAM (if the physical section
136*ace41090SPeter Maydell      *       number is PHYS_SECTION_NOTDIRTY or PHYS_SECTION_ROM)
137*ace41090SPeter Maydell      *     + the offset within the target MemoryRegion (otherwise)
138*ace41090SPeter Maydell      */
139e469b22fSPeter Maydell     hwaddr addr;
140fadc1cbeSPeter Maydell     MemTxAttrs attrs;
141e469b22fSPeter Maydell } CPUIOTLBEntry;
142e469b22fSPeter Maydell 
14320cb400dSPaul Brook #define CPU_COMMON_TLB \
14420cb400dSPaul Brook     /* The meaning of the MMU modes is defined in the target code. */   \
14520cb400dSPaul Brook     CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE];                  \
14688e89a57SXin Tong     CPUTLBEntry tlb_v_table[NB_MMU_MODES][CPU_VTLB_SIZE];               \
147e469b22fSPeter Maydell     CPUIOTLBEntry iotlb[NB_MMU_MODES][CPU_TLB_SIZE];                    \
148e469b22fSPeter Maydell     CPUIOTLBEntry iotlb_v[NB_MMU_MODES][CPU_VTLB_SIZE];                 \
14983974cf4SEmilio G. Cota     size_t tlb_flush_count;                                             \
150d4c430a8SPaul Brook     target_ulong tlb_flush_addr;                                        \
15188e89a57SXin Tong     target_ulong tlb_flush_mask;                                        \
15288e89a57SXin Tong     target_ulong vtlb_index;                                            \
15320cb400dSPaul Brook 
15420cb400dSPaul Brook #else
15520cb400dSPaul Brook 
15620cb400dSPaul Brook #define CPU_COMMON_TLB
15720cb400dSPaul Brook 
15820cb400dSPaul Brook #endif
15920cb400dSPaul Brook 
16020cb400dSPaul Brook 
161a316d335Sbellard #define CPU_COMMON                                                      \
162a316d335Sbellard     /* soft mmu support */                                              \
16320cb400dSPaul Brook     CPU_COMMON_TLB                                                      \
164a316d335Sbellard 
165ab93bbe2Sbellard #endif
166