1fcf5ef2aSThomas Huth /* 2fcf5ef2aSThomas Huth * QEMU PowerPC CPU 3fcf5ef2aSThomas Huth * 4fcf5ef2aSThomas Huth * Copyright (c) 2012 SUSE LINUX Products GmbH 5fcf5ef2aSThomas Huth * 6fcf5ef2aSThomas Huth * This library is free software; you can redistribute it and/or 7fcf5ef2aSThomas Huth * modify it under the terms of the GNU Lesser General Public 8fcf5ef2aSThomas Huth * License as published by the Free Software Foundation; either 9fcf5ef2aSThomas Huth * version 2.1 of the License, or (at your option) any later version. 10fcf5ef2aSThomas Huth * 11fcf5ef2aSThomas Huth * This library is distributed in the hope that it will be useful, 12fcf5ef2aSThomas Huth * but WITHOUT ANY WARRANTY; without even the implied warranty of 13fcf5ef2aSThomas Huth * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14fcf5ef2aSThomas Huth * Lesser General Public License for more details. 15fcf5ef2aSThomas Huth * 16fcf5ef2aSThomas Huth * You should have received a copy of the GNU Lesser General Public 17fcf5ef2aSThomas Huth * License along with this library; if not, see 18fcf5ef2aSThomas Huth * <http://www.gnu.org/licenses/lgpl-2.1.html> 19fcf5ef2aSThomas Huth */ 20fcf5ef2aSThomas Huth #ifndef QEMU_PPC_CPU_QOM_H 21fcf5ef2aSThomas Huth #define QEMU_PPC_CPU_QOM_H 22fcf5ef2aSThomas Huth 232e5b09fdSMarkus Armbruster #include "hw/core/cpu.h" 24db1015e9SEduardo Habkost #include "qom/object.h" 25fcf5ef2aSThomas Huth 26fcf5ef2aSThomas Huth #ifdef TARGET_PPC64 27fcf5ef2aSThomas Huth #define TYPE_POWERPC_CPU "powerpc64-cpu" 28fcf5ef2aSThomas Huth #else 29fcf5ef2aSThomas Huth #define TYPE_POWERPC_CPU "powerpc-cpu" 30fcf5ef2aSThomas Huth #endif 31fcf5ef2aSThomas Huth 32c821774aSEduardo Habkost OBJECT_DECLARE_TYPE(PowerPCCPU, PowerPCCPUClass, 3330b5707cSEduardo Habkost POWERPC_CPU) 34fcf5ef2aSThomas Huth 35fcf5ef2aSThomas Huth typedef struct CPUPPCState CPUPPCState; 36fcf5ef2aSThomas Huth typedef struct ppc_tb_t ppc_tb_t; 37fcf5ef2aSThomas Huth typedef struct ppc_dcr_t ppc_dcr_t; 38fcf5ef2aSThomas Huth 39fcf5ef2aSThomas Huth /*****************************************************************************/ 40fcf5ef2aSThomas Huth /* MMU model */ 41fcf5ef2aSThomas Huth typedef enum powerpc_mmu_t powerpc_mmu_t; 42fcf5ef2aSThomas Huth enum powerpc_mmu_t { 43fcf5ef2aSThomas Huth POWERPC_MMU_UNKNOWN = 0x00000000, 44fcf5ef2aSThomas Huth /* Standard 32 bits PowerPC MMU */ 45fcf5ef2aSThomas Huth POWERPC_MMU_32B = 0x00000001, 46fcf5ef2aSThomas Huth /* PowerPC 6xx MMU with software TLB */ 47fcf5ef2aSThomas Huth POWERPC_MMU_SOFT_6xx = 0x00000002, 48a09410edSFabiano Rosas /* 49a09410edSFabiano Rosas * PowerPC 74xx MMU with software TLB (this has been 50a09410edSFabiano Rosas * disabled, see git history for more information. 51a09410edSFabiano Rosas * keywords: tlbld tlbli TLBMISS PTEHI PTELO) 52a09410edSFabiano Rosas */ 53fcf5ef2aSThomas Huth POWERPC_MMU_SOFT_74xx = 0x00000003, 54fcf5ef2aSThomas Huth /* PowerPC 4xx MMU with software TLB */ 55fcf5ef2aSThomas Huth POWERPC_MMU_SOFT_4xx = 0x00000004, 56fcf5ef2aSThomas Huth /* PowerPC MMU in real mode only */ 57fcf5ef2aSThomas Huth POWERPC_MMU_REAL = 0x00000006, 58fcf5ef2aSThomas Huth /* Freescale MPC8xx MMU model */ 59fcf5ef2aSThomas Huth POWERPC_MMU_MPC8xx = 0x00000007, 60fcf5ef2aSThomas Huth /* BookE MMU model */ 61fcf5ef2aSThomas Huth POWERPC_MMU_BOOKE = 0x00000008, 62fcf5ef2aSThomas Huth /* BookE 2.06 MMU model */ 63fcf5ef2aSThomas Huth POWERPC_MMU_BOOKE206 = 0x00000009, 64fcf5ef2aSThomas Huth #define POWERPC_MMU_64 0x00010000 65fcf5ef2aSThomas Huth /* 64 bits PowerPC MMU */ 66fcf5ef2aSThomas Huth POWERPC_MMU_64B = POWERPC_MMU_64 | 0x00000001, 67fcf5ef2aSThomas Huth /* Architecture 2.03 and later (has LPCR) */ 68fcf5ef2aSThomas Huth POWERPC_MMU_2_03 = POWERPC_MMU_64 | 0x00000002, 69fcf5ef2aSThomas Huth /* Architecture 2.06 variant */ 7058969eeeSDavid Gibson POWERPC_MMU_2_06 = POWERPC_MMU_64 | 0x00000003, 71fcf5ef2aSThomas Huth /* Architecture 2.07 variant */ 7258969eeeSDavid Gibson POWERPC_MMU_2_07 = POWERPC_MMU_64 | 0x00000004, 7386cf1e9fSSuraj Jitindar Singh /* Architecture 3.00 variant */ 74ca79b3b7SDavid Gibson POWERPC_MMU_3_00 = POWERPC_MMU_64 | 0x00000005, 75fcf5ef2aSThomas Huth }; 76fcf5ef2aSThomas Huth 77d57d72a8SGreg Kurz static inline bool mmu_is_64bit(powerpc_mmu_t mmu_model) 78d57d72a8SGreg Kurz { 79d57d72a8SGreg Kurz return mmu_model & POWERPC_MMU_64; 80d57d72a8SGreg Kurz } 81d57d72a8SGreg Kurz 82fcf5ef2aSThomas Huth /*****************************************************************************/ 83fcf5ef2aSThomas Huth /* Exception model */ 84fcf5ef2aSThomas Huth typedef enum powerpc_excp_t powerpc_excp_t; 85fcf5ef2aSThomas Huth enum powerpc_excp_t { 86fcf5ef2aSThomas Huth POWERPC_EXCP_UNKNOWN = 0, 87fcf5ef2aSThomas Huth /* Standard PowerPC exception model */ 88fcf5ef2aSThomas Huth POWERPC_EXCP_STD, 89fcf5ef2aSThomas Huth /* PowerPC 40x exception model */ 90fcf5ef2aSThomas Huth POWERPC_EXCP_40x, 919323650fSFabiano Rosas /* PowerPC 603/604/G2 exception model */ 929323650fSFabiano Rosas POWERPC_EXCP_6xx, 93*fd7dc4bbSFabiano Rosas /* PowerPC 7xx exception model */ 94*fd7dc4bbSFabiano Rosas POWERPC_EXCP_7xx, 95fcf5ef2aSThomas Huth /* PowerPC 74xx exception model */ 96fcf5ef2aSThomas Huth POWERPC_EXCP_74xx, 97fcf5ef2aSThomas Huth /* BookE exception model */ 98fcf5ef2aSThomas Huth POWERPC_EXCP_BOOKE, 99fcf5ef2aSThomas Huth /* PowerPC 970 exception model */ 100fcf5ef2aSThomas Huth POWERPC_EXCP_970, 101fcf5ef2aSThomas Huth /* POWER7 exception model */ 102fcf5ef2aSThomas Huth POWERPC_EXCP_POWER7, 103fcf5ef2aSThomas Huth /* POWER8 exception model */ 104fcf5ef2aSThomas Huth POWERPC_EXCP_POWER8, 105a790e82bSBenjamin Herrenschmidt /* POWER9 exception model */ 106a790e82bSBenjamin Herrenschmidt POWERPC_EXCP_POWER9, 107526cdce7SNicholas Piggin /* POWER10 exception model */ 108526cdce7SNicholas Piggin POWERPC_EXCP_POWER10, 109fcf5ef2aSThomas Huth }; 110fcf5ef2aSThomas Huth 111fcf5ef2aSThomas Huth /*****************************************************************************/ 112fcf5ef2aSThomas Huth /* PM instructions */ 113fcf5ef2aSThomas Huth typedef enum { 114fcf5ef2aSThomas Huth PPC_PM_DOZE, 115fcf5ef2aSThomas Huth PPC_PM_NAP, 116fcf5ef2aSThomas Huth PPC_PM_SLEEP, 117fcf5ef2aSThomas Huth PPC_PM_RVWINKLE, 11821c0d66aSBenjamin Herrenschmidt PPC_PM_STOP, 119fcf5ef2aSThomas Huth } powerpc_pm_insn_t; 120fcf5ef2aSThomas Huth 121fcf5ef2aSThomas Huth /*****************************************************************************/ 122fcf5ef2aSThomas Huth /* Input pins model */ 123fcf5ef2aSThomas Huth typedef enum powerpc_input_t powerpc_input_t; 124fcf5ef2aSThomas Huth enum powerpc_input_t { 125fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_UNKNOWN = 0, 126fcf5ef2aSThomas Huth /* PowerPC 6xx bus */ 127fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_6xx, 128fcf5ef2aSThomas Huth /* BookE bus */ 129fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_BookE, 130fcf5ef2aSThomas Huth /* PowerPC 405 bus */ 131fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_405, 132fcf5ef2aSThomas Huth /* PowerPC 970 bus */ 133fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_970, 134fcf5ef2aSThomas Huth /* PowerPC POWER7 bus */ 135fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_POWER7, 13667afe775SBenjamin Herrenschmidt /* PowerPC POWER9 bus */ 13767afe775SBenjamin Herrenschmidt PPC_FLAGS_INPUT_POWER9, 138fcf5ef2aSThomas Huth /* Freescale RCPU bus */ 139fcf5ef2aSThomas Huth PPC_FLAGS_INPUT_RCPU, 140fcf5ef2aSThomas Huth }; 141fcf5ef2aSThomas Huth 142b07c59f7SDavid Gibson typedef struct PPCHash64Options PPCHash64Options; 143fcf5ef2aSThomas Huth 144fcf5ef2aSThomas Huth /** 145fcf5ef2aSThomas Huth * PowerPCCPUClass: 146fcf5ef2aSThomas Huth * @parent_realize: The parent class' realize handler. 147fcf5ef2aSThomas Huth * @parent_reset: The parent class' reset handler. 148fcf5ef2aSThomas Huth * 149fcf5ef2aSThomas Huth * A PowerPC CPU model. 150fcf5ef2aSThomas Huth */ 151db1015e9SEduardo Habkost struct PowerPCCPUClass { 152fcf5ef2aSThomas Huth /*< private >*/ 153fcf5ef2aSThomas Huth CPUClass parent_class; 154fcf5ef2aSThomas Huth /*< public >*/ 155fcf5ef2aSThomas Huth 156fcf5ef2aSThomas Huth DeviceRealize parent_realize; 157fcf5ef2aSThomas Huth DeviceUnrealize parent_unrealize; 158781c67caSPeter Maydell DeviceReset parent_reset; 159b8e99967SIgor Mammedov void (*parent_parse_features)(const char *type, char *str, Error **errp); 160fcf5ef2aSThomas Huth 161fcf5ef2aSThomas Huth uint32_t pvr; 162fcf5ef2aSThomas Huth bool (*pvr_match)(struct PowerPCCPUClass *pcc, uint32_t pvr); 163fcf5ef2aSThomas Huth uint64_t pcr_mask; /* Available bits in PCR register */ 164fcf5ef2aSThomas Huth uint64_t pcr_supported; /* Bits for supported PowerISA versions */ 165fcf5ef2aSThomas Huth uint32_t svr; 166fcf5ef2aSThomas Huth uint64_t insns_flags; 167fcf5ef2aSThomas Huth uint64_t insns_flags2; 168fcf5ef2aSThomas Huth uint64_t msr_mask; 169e232ecccSDavid Gibson uint64_t lpcr_mask; /* Available bits in the LPCR */ 170403aacdbSCédric Le Goater uint64_t lpcr_pm; /* Power-saving mode Exit Cause Enable bits */ 171fcf5ef2aSThomas Huth powerpc_mmu_t mmu_model; 172fcf5ef2aSThomas Huth powerpc_excp_t excp_model; 173fcf5ef2aSThomas Huth powerpc_input_t bus_model; 174fcf5ef2aSThomas Huth uint32_t flags; 175fcf5ef2aSThomas Huth int bfd_mach; 176fcf5ef2aSThomas Huth uint32_t l1_dcache_size, l1_icache_size; 177707c7c2eSFabiano Rosas #ifndef CONFIG_USER_ONLY 178707c7c2eSFabiano Rosas unsigned int gdb_num_sprs; 179707c7c2eSFabiano Rosas const char *gdb_spr_xml; 180707c7c2eSFabiano Rosas #endif 181b07c59f7SDavid Gibson const PPCHash64Options *hash64_opts; 182c64abd1fSSam Bobroff struct ppc_radix_page_info *radix_page_info; 183a8dafa52SSuraj Jitindar Singh uint32_t lrg_decr_bits; 184289af4acSSuraj Jitindar Singh int n_host_threads; 185fcf5ef2aSThomas Huth void (*init_proc)(CPUPPCState *env); 186fcf5ef2aSThomas Huth int (*check_pow)(CPUPPCState *env); 187db1015e9SEduardo Habkost }; 188fcf5ef2aSThomas Huth 189fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY 190fcf5ef2aSThomas Huth typedef struct PPCTimebase { 191fcf5ef2aSThomas Huth uint64_t guest_timebase; 192fcf5ef2aSThomas Huth int64_t time_of_the_day_ns; 193d14f3397SMaxiwell S. Garcia bool runstate_paused; 194fcf5ef2aSThomas Huth } PPCTimebase; 195fcf5ef2aSThomas Huth 1968a9358ccSMarkus Armbruster extern const VMStateDescription vmstate_ppc_timebase; 197fcf5ef2aSThomas Huth 198fcf5ef2aSThomas Huth #define VMSTATE_PPC_TIMEBASE_V(_field, _state, _version) { \ 199fcf5ef2aSThomas Huth .name = (stringify(_field)), \ 200fcf5ef2aSThomas Huth .version_id = (_version), \ 201fcf5ef2aSThomas Huth .size = sizeof(PPCTimebase), \ 202fcf5ef2aSThomas Huth .vmsd = &vmstate_ppc_timebase, \ 203fcf5ef2aSThomas Huth .flags = VMS_STRUCT, \ 204fcf5ef2aSThomas Huth .offset = vmstate_offset_value(_state, _field, PPCTimebase), \ 205fcf5ef2aSThomas Huth } 20642043e4fSLaurent Vivier 207538f0497SPhilippe Mathieu-Daudé void cpu_ppc_clock_vm_state_change(void *opaque, bool running, 20842043e4fSLaurent Vivier RunState state); 209fcf5ef2aSThomas Huth #endif 210fcf5ef2aSThomas Huth 211fcf5ef2aSThomas Huth #endif 212