qemu/target/ppc/misc_helper.c
<<
>>
Prefs
   1/*
   2 * Miscellaneous PowerPC emulation helpers for QEMU.
   3 *
   4 *  Copyright (c) 2003-2007 Jocelyn Mayer
   5 *
   6 * This library is free software; you can redistribute it and/or
   7 * modify it under the terms of the GNU Lesser General Public
   8 * License as published by the Free Software Foundation; either
   9 * version 2 of the License, or (at your option) any later version.
  10 *
  11 * This library is distributed in the hope that it will be useful,
  12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14 * Lesser General Public License for more details.
  15 *
  16 * You should have received a copy of the GNU Lesser General Public
  17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18 */
  19#include "qemu/osdep.h"
  20#include "cpu.h"
  21#include "exec/exec-all.h"
  22#include "exec/helper-proto.h"
  23#include "qemu/error-report.h"
  24
  25#include "helper_regs.h"
  26
  27/*****************************************************************************/
  28/* SPR accesses */
  29void helper_load_dump_spr(CPUPPCState *env, uint32_t sprn)
  30{
  31    qemu_log("Read SPR %d %03x => " TARGET_FMT_lx "\n", sprn, sprn,
  32             env->spr[sprn]);
  33}
  34
  35void helper_store_dump_spr(CPUPPCState *env, uint32_t sprn)
  36{
  37    qemu_log("Write SPR %d %03x <= " TARGET_FMT_lx "\n", sprn, sprn,
  38             env->spr[sprn]);
  39}
  40
  41#ifdef TARGET_PPC64
  42static void raise_fu_exception(CPUPPCState *env, uint32_t bit,
  43                               uint32_t sprn, uint32_t cause,
  44                               uintptr_t raddr)
  45{
  46    qemu_log("Facility SPR %d is unavailable (SPR FSCR:%d)\n", sprn, bit);
  47
  48    env->spr[SPR_FSCR] &= ~((target_ulong)FSCR_IC_MASK << FSCR_IC_POS);
  49    cause &= FSCR_IC_MASK;
  50    env->spr[SPR_FSCR] |= (target_ulong)cause << FSCR_IC_POS;
  51
  52    raise_exception_err_ra(env, POWERPC_EXCP_FU, 0, raddr);
  53}
  54#endif
  55
  56void helper_fscr_facility_check(CPUPPCState *env, uint32_t bit,
  57                                uint32_t sprn, uint32_t cause)
  58{
  59#ifdef TARGET_PPC64
  60    if (env->spr[SPR_FSCR] & (1ULL << bit)) {
  61        /* Facility is enabled, continue */
  62        return;
  63    }
  64    raise_fu_exception(env, bit, sprn, cause, GETPC());
  65#endif
  66}
  67
  68void helper_msr_facility_check(CPUPPCState *env, uint32_t bit,
  69                               uint32_t sprn, uint32_t cause)
  70{
  71#ifdef TARGET_PPC64
  72    if (env->msr & (1ULL << bit)) {
  73        /* Facility is enabled, continue */
  74        return;
  75    }
  76    raise_fu_exception(env, bit, sprn, cause, GETPC());
  77#endif
  78}
  79
  80#if !defined(CONFIG_USER_ONLY)
  81
  82void helper_store_sdr1(CPUPPCState *env, target_ulong val)
  83{
  84    PowerPCCPU *cpu = ppc_env_get_cpu(env);
  85
  86    if (env->spr[SPR_SDR1] != val) {
  87        ppc_store_sdr1(env, val);
  88        tlb_flush(CPU(cpu));
  89    }
  90}
  91
  92#if defined(TARGET_PPC64)
  93void helper_store_ptcr(CPUPPCState *env, target_ulong val)
  94{
  95    PowerPCCPU *cpu = ppc_env_get_cpu(env);
  96
  97    if (env->spr[SPR_PTCR] != val) {
  98        ppc_store_ptcr(env, val);
  99        tlb_flush(CPU(cpu));
 100    }
 101}
 102
 103void helper_store_pcr(CPUPPCState *env, target_ulong value)
 104{
 105    PowerPCCPU *cpu = ppc_env_get_cpu(env);
 106    PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
 107
 108    env->spr[SPR_PCR] = value & pcc->pcr_mask;
 109}
 110#endif /* defined(TARGET_PPC64) */
 111
 112void helper_store_pidr(CPUPPCState *env, target_ulong val)
 113{
 114    PowerPCCPU *cpu = ppc_env_get_cpu(env);
 115
 116    env->spr[SPR_BOOKS_PID] = val;
 117    tlb_flush(CPU(cpu));
 118}
 119
 120void helper_store_hid0_601(CPUPPCState *env, target_ulong val)
 121{
 122    target_ulong hid0;
 123
 124    hid0 = env->spr[SPR_HID0];
 125    if ((val ^ hid0) & 0x00000008) {
 126        /* Change current endianness */
 127        env->hflags &= ~(1 << MSR_LE);
 128        env->hflags_nmsr &= ~(1 << MSR_LE);
 129        env->hflags_nmsr |= (1 << MSR_LE) & (((val >> 3) & 1) << MSR_LE);
 130        env->hflags |= env->hflags_nmsr;
 131        qemu_log("%s: set endianness to %c => " TARGET_FMT_lx "\n", __func__,
 132                 val & 0x8 ? 'l' : 'b', env->hflags);
 133    }
 134    env->spr[SPR_HID0] = (uint32_t)val;
 135}
 136
 137void helper_store_403_pbr(CPUPPCState *env, uint32_t num, target_ulong value)
 138{
 139    PowerPCCPU *cpu = ppc_env_get_cpu(env);
 140
 141    if (likely(env->pb[num] != value)) {
 142        env->pb[num] = value;
 143        /* Should be optimized */
 144        tlb_flush(CPU(cpu));
 145    }
 146}
 147
 148void helper_store_40x_dbcr0(CPUPPCState *env, target_ulong val)
 149{
 150    store_40x_dbcr0(env, val);
 151}
 152
 153void helper_store_40x_sler(CPUPPCState *env, target_ulong val)
 154{
 155    store_40x_sler(env, val);
 156}
 157#endif
 158/*****************************************************************************/
 159/* PowerPC 601 specific instructions (POWER bridge) */
 160
 161target_ulong helper_clcs(CPUPPCState *env, uint32_t arg)
 162{
 163    switch (arg) {
 164    case 0x0CUL:
 165        /* Instruction cache line size */
 166        return env->icache_line_size;
 167        break;
 168    case 0x0DUL:
 169        /* Data cache line size */
 170        return env->dcache_line_size;
 171        break;
 172    case 0x0EUL:
 173        /* Minimum cache line size */
 174        return (env->icache_line_size < env->dcache_line_size) ?
 175            env->icache_line_size : env->dcache_line_size;
 176        break;
 177    case 0x0FUL:
 178        /* Maximum cache line size */
 179        return (env->icache_line_size > env->dcache_line_size) ?
 180            env->icache_line_size : env->dcache_line_size;
 181        break;
 182    default:
 183        /* Undefined */
 184        return 0;
 185        break;
 186    }
 187}
 188
 189/*****************************************************************************/
 190/* Special registers manipulation */
 191
 192/* GDBstub can read and write MSR... */
 193void ppc_store_msr(CPUPPCState *env, target_ulong value)
 194{
 195    hreg_store_msr(env, value, 0);
 196}
 197
 198/* This code is lifted from MacOnLinux. It is called whenever
 199 * THRM1,2 or 3 is read an fixes up the values in such a way
 200 * that will make MacOS not hang. These registers exist on some
 201 * 75x and 74xx processors.
 202 */
 203void helper_fixup_thrm(CPUPPCState *env)
 204{
 205    target_ulong v, t;
 206    int i;
 207
 208#define THRM1_TIN       (1 << 31)
 209#define THRM1_TIV       (1 << 30)
 210#define THRM1_THRES(x)  (((x) & 0x7f) << 23)
 211#define THRM1_TID       (1 << 2)
 212#define THRM1_TIE       (1 << 1)
 213#define THRM1_V         (1 << 0)
 214#define THRM3_E         (1 << 0)
 215
 216    if (!(env->spr[SPR_THRM3] & THRM3_E)) {
 217        return;
 218    }
 219
 220    /* Note: Thermal interrupts are unimplemented */
 221    for (i = SPR_THRM1; i <= SPR_THRM2; i++) {
 222        v = env->spr[i];
 223        if (!(v & THRM1_V)) {
 224            continue;
 225        }
 226        v |= THRM1_TIV;
 227        v &= ~THRM1_TIN;
 228        t = v & THRM1_THRES(127);
 229        if ((v & THRM1_TID) && t < THRM1_THRES(24)) {
 230            v |= THRM1_TIN;
 231        }
 232        if (!(v & THRM1_TID) && t > THRM1_THRES(24)) {
 233            v |= THRM1_TIN;
 234        }
 235        env->spr[i] = v;
 236    }
 237}
 238