[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/2] target/ppc: Drop PowerPCCPUClass::interrupts_big_endian(
From: |
Fabiano Rosas |
Subject: |
Re: [PATCH 2/2] target/ppc: Drop PowerPCCPUClass::interrupts_big_endian() |
Date: |
Tue, 22 Jun 2021 15:53:13 -0300 |
Greg Kurz <groug@kaod.org> writes:
> This isn't used anymore.
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Fabiano Rosas <farosas@linux.ibm.com>
> ---
> target/ppc/cpu-qom.h | 1 -
> target/ppc/cpu_init.c | 17 -----------------
> 2 files changed, 18 deletions(-)
>
> diff --git a/target/ppc/cpu-qom.h b/target/ppc/cpu-qom.h
> index 06b6571bc9d5..7b424e3cb0bc 100644
> --- a/target/ppc/cpu-qom.h
> +++ b/target/ppc/cpu-qom.h
> @@ -199,7 +199,6 @@ struct PowerPCCPUClass {
> void (*init_proc)(CPUPPCState *env);
> int (*check_pow)(CPUPPCState *env);
> int (*handle_mmu_fault)(PowerPCCPU *cpu, vaddr eaddr, int rwx, int
> mmu_idx);
> - bool (*interrupts_big_endian)(PowerPCCPU *cpu);
> };
>
> #ifndef CONFIG_USER_ONLY
> diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c
> index d0411e7302a2..1a22aef874b1 100644
> --- a/target/ppc/cpu_init.c
> +++ b/target/ppc/cpu_init.c
> @@ -2666,18 +2666,6 @@ static int check_pow_hid0_74xx(CPUPPCState *env)
> return 0;
> }
>
> -static bool ppc_cpu_interrupts_big_endian_always(PowerPCCPU *cpu)
> -{
> - return true;
> -}
> -
> -#ifdef TARGET_PPC64
> -static bool ppc_cpu_interrupts_big_endian_lpcr(PowerPCCPU *cpu)
> -{
> - return !(cpu->env.spr[SPR_LPCR] & LPCR_ILE);
> -}
> -#endif
> -
>
> /*****************************************************************************/
> /* PowerPC implementations definitions
> */
>
> @@ -7740,7 +7728,6 @@ POWERPC_FAMILY(POWER7)(ObjectClass *oc, void *data)
> POWERPC_FLAG_VSX;
> pcc->l1_dcache_size = 0x8000;
> pcc->l1_icache_size = 0x8000;
> - pcc->interrupts_big_endian = ppc_cpu_interrupts_big_endian_lpcr;
> }
>
> static void init_proc_POWER8(CPUPPCState *env)
> @@ -7918,7 +7905,6 @@ POWERPC_FAMILY(POWER8)(ObjectClass *oc, void *data)
> POWERPC_FLAG_VSX | POWERPC_FLAG_TM;
> pcc->l1_dcache_size = 0x8000;
> pcc->l1_icache_size = 0x8000;
> - pcc->interrupts_big_endian = ppc_cpu_interrupts_big_endian_lpcr;
> }
>
> #ifdef CONFIG_SOFTMMU
> @@ -8136,7 +8122,6 @@ POWERPC_FAMILY(POWER9)(ObjectClass *oc, void *data)
> POWERPC_FLAG_VSX | POWERPC_FLAG_TM | POWERPC_FLAG_SCV;
> pcc->l1_dcache_size = 0x8000;
> pcc->l1_icache_size = 0x8000;
> - pcc->interrupts_big_endian = ppc_cpu_interrupts_big_endian_lpcr;
> }
>
> #ifdef CONFIG_SOFTMMU
> @@ -8347,7 +8332,6 @@ POWERPC_FAMILY(POWER10)(ObjectClass *oc, void *data)
> POWERPC_FLAG_VSX | POWERPC_FLAG_TM | POWERPC_FLAG_SCV;
> pcc->l1_dcache_size = 0x8000;
> pcc->l1_icache_size = 0x8000;
> - pcc->interrupts_big_endian = ppc_cpu_interrupts_big_endian_lpcr;
> }
>
> #if !defined(CONFIG_USER_ONLY)
> @@ -9094,7 +9078,6 @@ static void ppc_cpu_class_init(ObjectClass *oc, void
> *data)
> device_class_set_parent_unrealize(dc, ppc_cpu_unrealize,
> &pcc->parent_unrealize);
> pcc->pvr_match = ppc_pvr_match_default;
> - pcc->interrupts_big_endian = ppc_cpu_interrupts_big_endian_always;
> device_class_set_props(dc, ppc_cpu_properties);
>
> device_class_set_parent_reset(dc, ppc_cpu_reset, &pcc->parent_reset);