u-boot/arch/x86/cpu/x86_64/interrupts.c
Tom Rini e51478ba42 x86: Remove <common.h> and add needed includes
Remove <common.h> from all x86 architecture files and when needed add
missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-06 15:05:03 -06:00

29 lines
463 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* (C) Copyright 2016 Google, Inc
* Written by Simon Glass <sjg@chromium.org>
*/
#include <irq_func.h>
#include <asm/processor-flags.h>
void enable_interrupts(void)
{
asm("sti\n");
}
int disable_interrupts(void)
{
long flags;
asm volatile ("pushfq ; popq %0 ; cli\n" : "=g" (flags) : );
return flags & X86_EFLAGS_IF;
}
int interrupt_init(void)
{
/* Nothing to do - this was already done in SPL */
return 0;
}