summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/arch/i386/interface/pcbios/bios_nap.c
blob: 1e7de756be05945730dba7df1a22e4cf416ab951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <ipxe/nap.h>
#include <realmode.h>

FILE_LICENCE ( GPL2_OR_LATER );

/**
 * Save power by halting the CPU until the next interrupt
 *
 */
static void bios_cpu_nap ( void ) {
	__asm__ __volatile__ ( "sti\n\t"
			       "hlt\n\t"
			       "cli\n\t" );
}

PROVIDE_NAP ( pcbios, cpu_nap, bios_cpu_nap );