iPXE
bios_nap.c File Reference
#include <ipxe/nap.h>
#include <realmode.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
static void bios_cpu_nap (void)
 Save power by halting the CPU until the next interrupt.
 PROVIDE_NAP (pcbios, cpu_nap, bios_cpu_nap)

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ bios_cpu_nap()

void bios_cpu_nap ( void )
static

Save power by halting the CPU until the next interrupt.

Definition at line 10 of file bios_nap.c.

10 {
11 __asm__ __volatile__ ( "sti\n\t"
12 "hlt\n\t"
13 "cli\n\t" );
14}
__asm__ __volatile__("call *%9" :"=a"(result), "=c"(discard_ecx), "=d"(discard_edx) :"d"(0), "a"(code), "b"(0), "c"(in_phys), "D"(0), "S"(out_phys), "m"(hypercall))
__asm__(".section \".rodata\", \"a\", " PROGBITS "\n\t" "\nprivate_key_data:\n\t" ".size private_key_data, ( . - private_key_data )\n\t" ".equ private_key_len, ( . - private_key_data )\n\t" ".previous\n\t")

References __asm__(), and __volatile__().

Referenced by PROVIDE_NAP().

◆ PROVIDE_NAP()

PROVIDE_NAP ( pcbios ,
cpu_nap ,
bios_cpu_nap  )

References bios_cpu_nap(), and cpu_nap().