From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57570) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAJla-0003Ia-3p for qemu-devel@nongnu.org; Tue, 07 Jun 2016 12:22:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAJlV-0004L6-T1 for qemu-devel@nongnu.org; Tue, 07 Jun 2016 12:22:09 -0400 Received: from mail-wm0-x233.google.com ([2a00:1450:400c:c09::233]:36647) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAJlV-0004L0-N5 for qemu-devel@nongnu.org; Tue, 07 Jun 2016 12:22:05 -0400 Received: by mail-wm0-x233.google.com with SMTP id n184so144897117wmn.1 for ; Tue, 07 Jun 2016 09:22:05 -0700 (PDT) From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <1465064165-14885-6-git-send-email-drjones@redhat.com> Date: Tue, 07 Jun 2016 17:22:20 +0100 Message-ID: <87portge9v.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [kvm-unit-tests PATCH v2 05/10] arm/arm64: irq enable/disable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Andrew Jones Cc: kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu, pbonzini@redhat.com, qemu-devel@nongnu.org, qemu-arm@nongnu.org, andre.przywara@arm.com, peter.maydell@linaro.org, christoffer.dall@linaro.org, marc.zyngier@arm.com Andrew Jones writes: > Signed-off-by: Andrew Jones Reviewed-by: Alex Bennée > --- > lib/arm/asm/processor.h | 10 ++++++++++ > lib/arm64/asm/processor.h | 10 ++++++++++ > 2 files changed, 20 insertions(+) > > diff --git a/lib/arm/asm/processor.h b/lib/arm/asm/processor.h > index afc903ca7d4ab..75a8d08b89330 100644 > --- a/lib/arm/asm/processor.h > +++ b/lib/arm/asm/processor.h > @@ -35,6 +35,16 @@ static inline unsigned long current_cpsr(void) > > #define current_mode() (current_cpsr() & MODE_MASK) > > +static inline void local_irq_enable(void) > +{ > + asm volatile("cpsie i" : : : "memory", "cc"); > +} > + > +static inline void local_irq_disable(void) > +{ > + asm volatile("cpsid i" : : : "memory", "cc"); > +} > + > static inline unsigned int get_mpidr(void) > { > unsigned int mpidr; > diff --git a/lib/arm64/asm/processor.h b/lib/arm64/asm/processor.h > index 94f7ce35b65c1..d54a4ed1c1876 100644 > --- a/lib/arm64/asm/processor.h > +++ b/lib/arm64/asm/processor.h > @@ -68,6 +68,16 @@ static inline unsigned long current_level(void) > return el & 0xc; > } > > +static inline void local_irq_enable(void) > +{ > + asm volatile("msr daifclr, #2" : : : "memory"); > +} > + > +static inline void local_irq_disable(void) > +{ > + asm volatile("msr daifset, #2" : : : "memory"); > +} > + > #define DEFINE_GET_SYSREG(reg, type) \ > static inline type get_##reg(void) \ > { \ -- Alex Bennée