qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] target-mips: Allow DSP access to be disabled on


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] target-mips: Allow DSP access to be disabled once enabled.
Date: Tue, 8 Jan 2013 16:45:21 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

On Mon, Jan 07, 2013 at 10:26:44PM -0800, Eric Johnson wrote:
> Clear the DSP hflags at the start of compute_hflags.  Otherwise access
> is not properly disabled once enabled.
> 
> Signed-off-by: Eric Johnson <address@hidden>
> ---
>  target-mips/cpu.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/target-mips/cpu.h b/target-mips/cpu.h
> index 31602ac..5963d62 100644
> --- a/target-mips/cpu.h
> +++ b/target-mips/cpu.h
> @@ -751,7 +751,7 @@ static inline void compute_hflags(CPUMIPSState *env)
>  {
>      env->hflags &= ~(MIPS_HFLAG_COP1X | MIPS_HFLAG_64 | MIPS_HFLAG_CP0 |
>                       MIPS_HFLAG_F64 | MIPS_HFLAG_FPU | MIPS_HFLAG_KSU |
> -                     MIPS_HFLAG_UX);
> +                     MIPS_HFLAG_UX | MIPS_HFLAG_DSP | MIPS_HFLAG_DSPR2);
>      if (!(env->CP0_Status & (1 << CP0St_EXL)) &&
>          !(env->CP0_Status & (1 << CP0St_ERL)) &&
>          !(env->hflags & MIPS_HFLAG_DM)) {
> 

Thanks, applied.

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net



reply via email to

[Prev in Thread] Current Thread [Next in Thread]