/* * PMU register read/write functions for TCG IBM POWER chips * * Copyright IBM Corp. 2021 * * Authors: * Daniel Henrique Barboza * * This work is licensed under the terms of the GNU GPL, version 2 or later. * See the COPYING file in the top-level directory. */ #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY) /* * Checks whether the Group A SPR (MMCR0, MMCR2, MMCRA, and the * PMCs) has problem state read access. * * Read acccess is granted for all PMCC values but 0b01, where a * Facility Unavailable Interrupt will occur. */ static bool spr_groupA_read_allowed(DisasContext *ctx) { if (!ctx->mmcr0_pmcc0 && ctx->mmcr0_pmcc1) { gen_hvpriv_exception(ctx, POWERPC_EXCP_FU); return false; } return true; } /* * Checks whether the Group A SPR (MMCR0, MMCR2, MMCRA, and the * PMCs) has problem state write access. * * Write acccess is granted for PMCC values 0b10 and 0b11. Userspace * writing with PMCC 0b00 will generate a Hypervisor Emulation * Assistance Interrupt. Userspace writing with PMCC 0b01 will * generate a Facility Unavailable Interrupt. */ static bool spr_groupA_write_allowed(DisasContext *ctx) { if (ctx->mmcr0_pmcc0) { return true; } if (ctx->mmcr0_pmcc1) { /* PMCC = 0b01 */ gen_hvpriv_exception(ctx, POWERPC_EXCP_FU); } else { /* PMCC = 0b00 */ gen_hvpriv_exception(ctx, POWERPC_EXCP_INVAL_SPR); } return false; } /* * Helper function to avoid code repetition between MMCR0 and * MMCR2 problem state write functions. * * 'ret' must be tcg_temp_freed() by the caller. */ static TCGv masked_gprn_for_spr_write(int gprn, int sprn, uint64_t spr_mask) { TCGv ret = tcg_temp_new(); TCGv t0 = tcg_temp_new(); /* 'ret' starts with all mask bits cleared */ gen_load_spr(ret, sprn); tcg_gen_andi_tl(ret, ret, ~(spr_mask)); /* Apply the mask into 'gprn' in a temp var */ tcg_gen_andi_tl(t0, cpu_gpr[gprn], spr_mask); /* Add the masked gprn bits into 'ret' */ tcg_gen_or_tl(ret, ret, t0); tcg_temp_free(t0); return ret; } void spr_read_MMCR0_ureg(DisasContext *ctx, int gprn, int sprn) { TCGv t0; if (!spr_groupA_read_allowed(ctx)) { return; } t0 = tcg_temp_new(); /* * Filter out all bits but FC, PMAO, and PMAE, according * to ISA v3.1, in 10.4.4 Monitor Mode Control Register 0, * fourth paragraph. */ gen_load_spr(t0, SPR_POWER_MMCR0); tcg_gen_andi_tl(t0, t0, MMCR0_UREG_MASK); tcg_gen_mov_tl(cpu_gpr[gprn], t0); tcg_temp_free(t0); } void spr_write_MMCR0_ureg(DisasContext *ctx, int sprn, int gprn) { TCGv masked_gprn; if (!spr_groupA_write_allowed(ctx)) { return; } /* * Filter out all bits but FC, PMAO, and PMAE, according * to ISA v3.1, in 10.4.4 Monitor Mode Control Register 0, * fourth paragraph. */ masked_gprn = masked_gprn_for_spr_write(gprn, SPR_POWER_MMCR0, MMCR0_UREG_MASK); gen_store_spr(SPR_POWER_MMCR0, masked_gprn); tcg_temp_free(masked_gprn); } void spr_read_MMCR2_ureg(DisasContext *ctx, int gprn, int sprn) { TCGv t0; if (!spr_groupA_read_allowed(ctx)) { return; } t0 = tcg_temp_new(); /* * On read, filter out all bits that are not FCnP0 bits. * When MMCR0[PMCC] is set to 0b10 or 0b11, providing * problem state programs read/write access to MMCR2, * only the FCnP0 bits can be accessed. All other bits are * not changed when mtspr is executed in problem state, and * all other bits return 0s when mfspr is executed in problem * state, according to ISA v3.1, section 10.4.6 Monitor Mode * Control Register 2, p. 1316, third paragraph. */ gen_load_spr(t0, SPR_POWER_MMCR2); tcg_gen_andi_tl(t0, t0, MMCR2_UREG_MASK); tcg_gen_mov_tl(cpu_gpr[gprn], t0); tcg_temp_free(t0); } void spr_write_MMCR2_ureg(DisasContext *ctx, int sprn, int gprn) { TCGv masked_gprn; if (!spr_groupA_write_allowed(ctx)) { return; } /* * Filter the bits that can be written using MMCR2_UREG_MASK, * similar to what is done in spr_write_MMCR0_ureg(). */ masked_gprn = masked_gprn_for_spr_write(gprn, SPR_POWER_MMCR2, MMCR2_UREG_MASK); gen_store_spr(SPR_POWER_MMCR2, masked_gprn); tcg_temp_free(masked_gprn); } #else void spr_read_MMCR0_ureg(DisasContext *ctx, int gprn, int sprn) { spr_read_ureg(ctx, gprn, sprn); } void spr_write_MMCR0_ureg(DisasContext *ctx, int sprn, int gprn) { spr_noaccess(ctx, gprn, sprn); } void spr_read_MMCR2_ureg(DisasContext *ctx, int gprn, int sprn) { spr_read_ureg(ctx, gprn, sprn); } void spr_write_MMCR2_ureg(DisasContext *ctx, int sprn, int gprn) { spr_noaccess(ctx, gprn, sprn); } #endif /* defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY) */