1022c62cbSPaolo Bonzini /* 2022c62cbSPaolo Bonzini * common defines for all CPUs 3022c62cbSPaolo Bonzini * 4022c62cbSPaolo Bonzini * Copyright (c) 2003 Fabrice Bellard 5022c62cbSPaolo Bonzini * 6022c62cbSPaolo Bonzini * This library is free software; you can redistribute it and/or 7022c62cbSPaolo Bonzini * modify it under the terms of the GNU Lesser General Public 8022c62cbSPaolo Bonzini * License as published by the Free Software Foundation; either 9022c62cbSPaolo Bonzini * version 2 of the License, or (at your option) any later version. 10022c62cbSPaolo Bonzini * 11022c62cbSPaolo Bonzini * This library is distributed in the hope that it will be useful, 12022c62cbSPaolo Bonzini * but WITHOUT ANY WARRANTY; without even the implied warranty of 13022c62cbSPaolo Bonzini * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14022c62cbSPaolo Bonzini * Lesser General Public License for more details. 15022c62cbSPaolo Bonzini * 16022c62cbSPaolo Bonzini * You should have received a copy of the GNU Lesser General Public 17022c62cbSPaolo Bonzini * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18022c62cbSPaolo Bonzini */ 19022c62cbSPaolo Bonzini #ifndef CPU_DEFS_H 20022c62cbSPaolo Bonzini #define CPU_DEFS_H 21022c62cbSPaolo Bonzini 22022c62cbSPaolo Bonzini #ifndef NEED_CPU_H 23022c62cbSPaolo Bonzini #error cpu.h included from common code 24022c62cbSPaolo Bonzini #endif 25022c62cbSPaolo Bonzini 2687776ab7SPaolo Bonzini #include "qemu/host-utils.h" 2771aec354SEmilio 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" 36022c62cbSPaolo Bonzini 37022c62cbSPaolo Bonzini #ifndef TARGET_LONG_BITS 38022c62cbSPaolo Bonzini #error TARGET_LONG_BITS must be defined before including this header 39022c62cbSPaolo Bonzini #endif 40022c62cbSPaolo Bonzini 41022c62cbSPaolo Bonzini #define TARGET_LONG_SIZE (TARGET_LONG_BITS / 8) 42022c62cbSPaolo Bonzini 43022c62cbSPaolo Bonzini /* target_ulong is the type of a virtual address */ 44022c62cbSPaolo Bonzini #if TARGET_LONG_SIZE == 4 456cfd9b52SPaolo Bonzini typedef int32_t target_long; 466cfd9b52SPaolo Bonzini typedef uint32_t target_ulong; 47022c62cbSPaolo Bonzini #define TARGET_FMT_lx "%08x" 48022c62cbSPaolo Bonzini #define TARGET_FMT_ld "%d" 49022c62cbSPaolo Bonzini #define TARGET_FMT_lu "%u" 50022c62cbSPaolo Bonzini #elif TARGET_LONG_SIZE == 8 516cfd9b52SPaolo Bonzini typedef int64_t target_long; 526cfd9b52SPaolo Bonzini typedef uint64_t target_ulong; 53022c62cbSPaolo Bonzini #define TARGET_FMT_lx "%016" PRIx64 54022c62cbSPaolo Bonzini #define TARGET_FMT_ld "%" PRId64 55022c62cbSPaolo Bonzini #define TARGET_FMT_lu "%" PRIu64 56022c62cbSPaolo Bonzini #else 57022c62cbSPaolo Bonzini #error TARGET_LONG_SIZE undefined 58022c62cbSPaolo Bonzini #endif 59022c62cbSPaolo Bonzini 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 63022c62cbSPaolo Bonzini 64022c62cbSPaolo Bonzini #if HOST_LONG_BITS == 32 && TARGET_LONG_BITS == 32 65022c62cbSPaolo Bonzini #define CPU_TLB_ENTRY_BITS 4 66022c62cbSPaolo Bonzini #else 67022c62cbSPaolo Bonzini #define CPU_TLB_ENTRY_BITS 5 68022c62cbSPaolo Bonzini #endif 69022c62cbSPaolo Bonzini 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 102022c62cbSPaolo Bonzini typedef struct CPUTLBEntry { 103022c62cbSPaolo Bonzini /* bit TARGET_LONG_BITS to TARGET_PAGE_BITS : virtual address 104022c62cbSPaolo Bonzini bit TARGET_PAGE_BITS-1..4 : Nonzero for accesses that should not 105022c62cbSPaolo Bonzini go directly to ram. 106022c62cbSPaolo Bonzini bit 3 : indicates that the entry is invalid 107022c62cbSPaolo Bonzini bit 2..0 : zero 108022c62cbSPaolo Bonzini */ 109b4a4b8d0SPeter Crosthwaite union { 110b4a4b8d0SPeter Crosthwaite struct { 111022c62cbSPaolo Bonzini target_ulong addr_read; 112022c62cbSPaolo Bonzini target_ulong addr_write; 113022c62cbSPaolo Bonzini target_ulong addr_code; 114022c62cbSPaolo Bonzini /* Addend to virtual address to get host address. IO accesses 115022c62cbSPaolo Bonzini use the corresponding iotlb value. */ 116022c62cbSPaolo Bonzini uintptr_t addend; 117b4a4b8d0SPeter Crosthwaite }; 118022c62cbSPaolo Bonzini /* padding to get a power of two size */ 119b4a4b8d0SPeter Crosthwaite uint8_t dummy[1 << CPU_TLB_ENTRY_BITS]; 120b4a4b8d0SPeter Crosthwaite }; 121022c62cbSPaolo Bonzini } CPUTLBEntry; 122022c62cbSPaolo Bonzini 123e85ef538SRichard Henderson QEMU_BUILD_BUG_ON(sizeof(CPUTLBEntry) != (1 << CPU_TLB_ENTRY_BITS)); 124022c62cbSPaolo Bonzini 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 1441308e026SRichard Henderson typedef struct CPUTLBDesc { 1451308e026SRichard Henderson /* 1461308e026SRichard Henderson * Describe a region covering all of the large pages allocated 1471308e026SRichard Henderson * into the tlb. When any page within this region is flushed, 1481308e026SRichard Henderson * we must flush the entire tlb. The region is matched if 1491308e026SRichard Henderson * (addr & large_page_mask) == large_page_addr. 1501308e026SRichard Henderson */ 1511308e026SRichard Henderson target_ulong large_page_addr; 1521308e026SRichard Henderson target_ulong large_page_mask; 153d5363e58SRichard Henderson /* The next index to use in the tlb victim table. */ 154d5363e58SRichard Henderson size_t vindex; 1551308e026SRichard Henderson } CPUTLBDesc; 1561308e026SRichard Henderson 15753d28455SRichard Henderson /* 15853d28455SRichard Henderson * Data elements that are shared between all MMU modes. 15953d28455SRichard Henderson */ 16053d28455SRichard Henderson typedef struct CPUTLBCommon { 16160a2ad7dSRichard Henderson /* Serialize updates to tlb_table and tlb_v_table, and others as noted. */ 16253d28455SRichard Henderson QemuSpin lock; 16360a2ad7dSRichard Henderson /* 16460a2ad7dSRichard Henderson * Within pending_flush, for each bit N, there exists an outstanding 16560a2ad7dSRichard Henderson * cross-cpu flush for mmu_idx N. Further cross-cpu flushes to that 16660a2ad7dSRichard Henderson * mmu_idx may be discarded. Protected by tlb_c.lock. 16760a2ad7dSRichard Henderson */ 16860a2ad7dSRichard Henderson uint16_t pending_flush; 169*3d1523ceSRichard Henderson /* 170*3d1523ceSRichard Henderson * Within dirty, for each bit N, modifications have been made to 171*3d1523ceSRichard Henderson * mmu_idx N since the last time that mmu_idx was flushed. 172*3d1523ceSRichard Henderson * Protected by tlb_c.lock. 173*3d1523ceSRichard Henderson */ 174*3d1523ceSRichard Henderson uint16_t dirty; 175e09de0a2SRichard Henderson /* 176e09de0a2SRichard Henderson * Statistics. These are not lock protected, but are read and 177e09de0a2SRichard Henderson * written atomically. This allows the monitor to print a snapshot 178e09de0a2SRichard Henderson * of the stats without interfering with the cpu. 179e09de0a2SRichard Henderson */ 180e09de0a2SRichard Henderson size_t full_flush_count; 181e09de0a2SRichard Henderson size_t part_flush_count; 182e09de0a2SRichard Henderson size_t elide_flush_count; 18353d28455SRichard Henderson } CPUTLBCommon; 18453d28455SRichard Henderson 18553d28455SRichard Henderson /* 18653d28455SRichard Henderson * The meaning of each of the MMU modes is defined in the target code. 18753d28455SRichard Henderson * Note that NB_MMU_MODES is not yet defined; we can only reference it 18853d28455SRichard Henderson * within preprocessor defines that will be expanded later. 18953d28455SRichard Henderson */ 190022c62cbSPaolo Bonzini #define CPU_COMMON_TLB \ 19153d28455SRichard Henderson CPUTLBCommon tlb_c; \ 1921308e026SRichard Henderson CPUTLBDesc tlb_d[NB_MMU_MODES]; \ 193022c62cbSPaolo Bonzini CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE]; \ 19488e89a57SXin Tong CPUTLBEntry tlb_v_table[NB_MMU_MODES][CPU_VTLB_SIZE]; \ 195e469b22fSPeter Maydell CPUIOTLBEntry iotlb[NB_MMU_MODES][CPU_TLB_SIZE]; \ 196e09de0a2SRichard Henderson CPUIOTLBEntry iotlb_v[NB_MMU_MODES][CPU_VTLB_SIZE]; 197022c62cbSPaolo Bonzini 198022c62cbSPaolo Bonzini #else 199022c62cbSPaolo Bonzini 200022c62cbSPaolo Bonzini #define CPU_COMMON_TLB 201022c62cbSPaolo Bonzini 202022c62cbSPaolo Bonzini #endif 203022c62cbSPaolo Bonzini 204022c62cbSPaolo Bonzini 205022c62cbSPaolo Bonzini #define CPU_COMMON \ 206022c62cbSPaolo Bonzini /* soft mmu support */ \ 207022c62cbSPaolo Bonzini CPU_COMMON_TLB \ 208022c62cbSPaolo Bonzini 209022c62cbSPaolo Bonzini #endif 210