Searched refs:facs (Results 1 - 11 of 11) sorted by relevance

/u-boot/lib/acpi/
H A Dfacs.c16 struct acpi_facs *facs = ctx->current; local
18 memset((void *)facs, '\0', sizeof(struct acpi_facs));
20 memcpy(facs->signature, "FACS", 4);
21 facs->length = sizeof(struct acpi_facs);
22 facs->hardware_signature = 0;
23 facs->firmware_waking_vector = 0;
24 facs->global_lock = 0;
25 facs->flags = 0;
26 facs->x_firmware_waking_vector_l = 0;
27 facs
[all...]
H A Dacpi.c60 void *facs; local
64 facs = nomap_sysmem(fadt->x_firmware_ctrl, 0);
66 facs = nomap_sysmem(fadt->firmware_ctrl, 0);
68 facs = NULL;
69 return facs;
H A DMakefile25 obj-y += facs.o
/u-boot/arch/x86/lib/
H A Dacpi.c71 struct acpi_facs *facs; local
76 facs = (struct acpi_facs *)(uintptr_t)fadt->firmware_ctrl;
78 if (!facs) {
83 debug("FACS found at %p\n", facs);
84 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
H A Dacpi_table.c560 void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs, argument
575 fadt->x_firmware_ctrl = map_to_sysmem(facs);
/u-boot/include/dm/
H A Dacpi.h55 * @facs: Pointer to the Firmware ACPI Control Structure
70 struct acpi_facs *facs; member in struct:acpi_ctx
/u-boot/arch/x86/include/asm/
H A Dacpi_table.h188 * @facs: Pointer to the FACS
191 void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs,
/u-boot/arch/x86/cpu/tangier/
H A Dacpi.c47 fadt->x_firmware_ctrl = map_to_sysmem(ctx->facs);
/u-boot/arch/x86/cpu/baytrail/
H A Dacpi.c81 fadt->x_firmware_ctrl = map_to_sysmem(ctx->facs);
/u-boot/arch/x86/cpu/apollolake/
H A Dacpi.c155 acpi_fadt_common(fadt, ctx->facs, ctx->dsdt);
/u-boot/arch/x86/cpu/quark/
H A Dacpi.c76 fadt->x_firmware_ctrl = map_to_sysmem(ctx->facs);

Completed in 195 milliseconds