mirror of
https://github.com/ipxe/ipxe
synced 2025-12-26 09:32:33 +03:00
[nap] Formalise the CPU sleeping API
This commit is contained in:
14
src/arch/i386/interface/pcbios/bios_nap.c
Normal file
14
src/arch/i386/interface/pcbios/bios_nap.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <gpxe/nap.h>
|
||||
#include <realmode.h>
|
||||
|
||||
/**
|
||||
* Save power by halting the CPU until the next interrupt
|
||||
*
|
||||
*/
|
||||
static void bios_cpu_nap ( void ) {
|
||||
__asm__ __volatile__ ( REAL_CODE ( "sti\n\t"
|
||||
"hlt\n\t"
|
||||
"cli\n\t" ) : : );
|
||||
}
|
||||
|
||||
PROVIDE_NAP ( pcbios, cpu_nap, bios_cpu_nap );
|
||||
Reference in New Issue
Block a user