xref: /qemu/include/exec/cpu-defs.h (revision 71aec3541d87d611f6efad71d45b310e515372cc)
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"
27*71aec354SEmilio G. Cota #include "qemu/thread.h"
281de7afc9SPaolo Bonzini #include "qemu/queue.h"
29b11ec7f2SYang Zhong #ifdef CONFIG_TCG
301de29aefSPaolo Bonzini #include "tcg-target.h"
31b11ec7f2SYang Zhong #endif
32ce927ed9SAndreas Färber #ifndef CONFIG_USER_ONLY
33022c62cbSPaolo Bonzini #include "exec/hwaddr.h"
34ce927ed9SAndreas Färber #endif
35fadc1cbeSPeter Maydell #include "exec/memattrs.h"
36ab93bbe2Sbellard 
3735b66fc4Sbellard #ifndef TARGET_LONG_BITS
3835b66fc4Sbellard #error TARGET_LONG_BITS must be defined before including this header
3935b66fc4Sbellard #endif
4035b66fc4Sbellard 
4135b66fc4Sbellard #define TARGET_LONG_SIZE (TARGET_LONG_BITS / 8)
4235b66fc4Sbellard 
43ab6d960fSbellard /* target_ulong is the type of a virtual address */
4435b66fc4Sbellard #if TARGET_LONG_SIZE == 4
456cfd9b52SPaolo Bonzini typedef int32_t target_long;
466cfd9b52SPaolo Bonzini typedef uint32_t target_ulong;
47c27004ecSbellard #define TARGET_FMT_lx "%08x"
48b62b461bSj_mayer #define TARGET_FMT_ld "%d"
4971c8b8fdSj_mayer #define TARGET_FMT_lu "%u"
5035b66fc4Sbellard #elif TARGET_LONG_SIZE == 8
516cfd9b52SPaolo Bonzini typedef int64_t target_long;
526cfd9b52SPaolo Bonzini typedef uint64_t target_ulong;
5326a76461Sbellard #define TARGET_FMT_lx "%016" PRIx64
54b62b461bSj_mayer #define TARGET_FMT_ld "%" PRId64
5571c8b8fdSj_mayer #define TARGET_FMT_lu "%" PRIu64
5635b66fc4Sbellard #else
5735b66fc4Sbellard #error TARGET_LONG_SIZE undefined
5835b66fc4Sbellard #endif
5935b66fc4Sbellard 
60b11ec7f2SYang Zhong #if !defined(CONFIG_USER_ONLY) && defined(CONFIG_TCG)
6188e89a57SXin Tong /* use a fully associative victim tlb of 8 entries */
6288e89a57SXin Tong #define CPU_VTLB_SIZE 8
63ab93bbe2Sbellard 
64355b1943SPaul Brook #if HOST_LONG_BITS == 32 && TARGET_LONG_BITS == 32
65d656469fSbellard #define CPU_TLB_ENTRY_BITS 4
66d656469fSbellard #else
67d656469fSbellard #define CPU_TLB_ENTRY_BITS 5
68d656469fSbellard #endif
69d656469fSbellard 
701de29aefSPaolo Bonzini /* TCG_TARGET_TLB_DISPLACEMENT_BITS is used in CPU_TLB_BITS to ensure that
711de29aefSPaolo Bonzini  * the TLB is not unnecessarily small, but still small enough for the
721de29aefSPaolo Bonzini  * TLB lookup instruction sequence used by the TCG target.
731de29aefSPaolo Bonzini  *
741de29aefSPaolo Bonzini  * TCG will have to generate an operand as large as the distance between
751de29aefSPaolo Bonzini  * env and the tlb_table[NB_MMU_MODES - 1][0].addend.  For simplicity,
761de29aefSPaolo Bonzini  * the TCG targets just round everything up to the next power of two, and
771de29aefSPaolo Bonzini  * count bits.  This works because: 1) the size of each TLB is a largish
781de29aefSPaolo Bonzini  * power of two, 2) and because the limit of the displacement is really close
791de29aefSPaolo Bonzini  * to a power of two, 3) the offset of tlb_table[0][0] inside env is smaller
801de29aefSPaolo Bonzini  * than the size of a TLB.
811de29aefSPaolo Bonzini  *
821de29aefSPaolo Bonzini  * For example, the maximum displacement 0xFFF0 on PPC and MIPS, but TCG
831de29aefSPaolo Bonzini  * just says "the displacement is 16 bits".  TCG_TARGET_TLB_DISPLACEMENT_BITS
841de29aefSPaolo Bonzini  * then ensures that tlb_table at least 0x8000 bytes large ("not unnecessarily
851de29aefSPaolo Bonzini  * small": 2^15).  The operand then will come up smaller than 0xFFF0 without
861de29aefSPaolo Bonzini  * any particular care, because the TLB for a single MMU mode is larger than
871de29aefSPaolo Bonzini  * 0x10000-0xFFF0=16 bytes.  In the end, the maximum value of the operand
881de29aefSPaolo Bonzini  * could be something like 0xC000 (the offset of the last TLB table) plus
891de29aefSPaolo Bonzini  * 0x18 (the offset of the addend field in each TLB entry) plus the offset
901de29aefSPaolo Bonzini  * of tlb_table inside env (which is non-trivial but not huge).
911de29aefSPaolo Bonzini  */
921de29aefSPaolo Bonzini #define CPU_TLB_BITS                                             \
931de29aefSPaolo Bonzini     MIN(8,                                                       \
941de29aefSPaolo Bonzini         TCG_TARGET_TLB_DISPLACEMENT_BITS - CPU_TLB_ENTRY_BITS -  \
951de29aefSPaolo Bonzini         (NB_MMU_MODES <= 1 ? 0 :                                 \
961de29aefSPaolo Bonzini          NB_MMU_MODES <= 2 ? 1 :                                 \
971de29aefSPaolo Bonzini          NB_MMU_MODES <= 4 ? 2 :                                 \
981de29aefSPaolo Bonzini          NB_MMU_MODES <= 8 ? 3 : 4))
991de29aefSPaolo Bonzini 
1001de29aefSPaolo Bonzini #define CPU_TLB_SIZE (1 << CPU_TLB_BITS)
1011de29aefSPaolo Bonzini 
102ab93bbe2Sbellard typedef struct CPUTLBEntry {
1030f459d16Spbrook     /* bit TARGET_LONG_BITS to TARGET_PAGE_BITS : virtual address
1040f459d16Spbrook        bit TARGET_PAGE_BITS-1..4  : Nonzero for accesses that should not
1050f459d16Spbrook                                     go directly to ram.
106db8d7466Sbellard        bit 3                      : indicates that the entry is invalid
107db8d7466Sbellard        bit 2..0                   : zero
108db8d7466Sbellard     */
109b4a4b8d0SPeter Crosthwaite     union {
110b4a4b8d0SPeter Crosthwaite         struct {
11184b7b8e7Sbellard             target_ulong addr_read;
11284b7b8e7Sbellard             target_ulong addr_write;
11384b7b8e7Sbellard             target_ulong addr_code;
114355b1943SPaul Brook             /* Addend to virtual address to get host address.  IO accesses
115ee50add9Spbrook                use the corresponding iotlb value.  */
1163b2992e4SStefan Weil             uintptr_t addend;
117b4a4b8d0SPeter Crosthwaite         };
118d656469fSbellard         /* padding to get a power of two size */
119b4a4b8d0SPeter Crosthwaite         uint8_t dummy[1 << CPU_TLB_ENTRY_BITS];
120b4a4b8d0SPeter Crosthwaite     };
121ab93bbe2Sbellard } CPUTLBEntry;
122ab93bbe2Sbellard 
123e85ef538SRichard Henderson QEMU_BUILD_BUG_ON(sizeof(CPUTLBEntry) != (1 << CPU_TLB_ENTRY_BITS));
124355b1943SPaul Brook 
125e469b22fSPeter Maydell /* The IOTLB is not accessed directly inline by generated TCG code,
126e469b22fSPeter Maydell  * so the CPUIOTLBEntry layout is not as critical as that of the
127e469b22fSPeter Maydell  * CPUTLBEntry. (This is also why we don't want to combine the two
128e469b22fSPeter Maydell  * structs into one.)
129e469b22fSPeter Maydell  */
130e469b22fSPeter Maydell typedef struct CPUIOTLBEntry {
131ace41090SPeter Maydell     /*
132ace41090SPeter Maydell      * @addr contains:
133ace41090SPeter Maydell      *  - in the lower TARGET_PAGE_BITS, a physical section number
134ace41090SPeter Maydell      *  - with the lower TARGET_PAGE_BITS masked off, an offset which
135ace41090SPeter Maydell      *    must be added to the virtual address to obtain:
136ace41090SPeter Maydell      *     + the ram_addr_t of the target RAM (if the physical section
137ace41090SPeter Maydell      *       number is PHYS_SECTION_NOTDIRTY or PHYS_SECTION_ROM)
138ace41090SPeter Maydell      *     + the offset within the target MemoryRegion (otherwise)
139ace41090SPeter Maydell      */
140e469b22fSPeter Maydell     hwaddr addr;
141fadc1cbeSPeter Maydell     MemTxAttrs attrs;
142e469b22fSPeter Maydell } CPUIOTLBEntry;
143e469b22fSPeter Maydell 
14420cb400dSPaul Brook #define CPU_COMMON_TLB \
14520cb400dSPaul Brook     /* The meaning of the MMU modes is defined in the target code. */   \
146*71aec354SEmilio G. Cota     /* tlb_lock serializes updates to tlb_table and tlb_v_table */      \
147*71aec354SEmilio G. Cota     QemuSpin tlb_lock;                                                  \
14820cb400dSPaul Brook     CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE];                  \
14988e89a57SXin Tong     CPUTLBEntry tlb_v_table[NB_MMU_MODES][CPU_VTLB_SIZE];               \
150e469b22fSPeter Maydell     CPUIOTLBEntry iotlb[NB_MMU_MODES][CPU_TLB_SIZE];                    \
151e469b22fSPeter Maydell     CPUIOTLBEntry iotlb_v[NB_MMU_MODES][CPU_VTLB_SIZE];                 \
15283974cf4SEmilio G. Cota     size_t tlb_flush_count;                                             \
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 
164a316d335Sbellard #define CPU_COMMON                                                      \
165a316d335Sbellard     /* soft mmu support */                                              \
16620cb400dSPaul Brook     CPU_COMMON_TLB                                                      \
167a316d335Sbellard 
168ab93bbe2Sbellard #endif
169