HomeSort by: relevance | last modified time | path
    Searched refs:Facs (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/hardware/
hwxfsleep.c 57 ACPI_TABLE_FACS *Facs,
105 * PARAMETERS: Facs - Pointer to FACS table
113 * DESCRIPTION: Sets the FirmwareWakingVector fields of the FACS
119 ACPI_TABLE_FACS *Facs,
136 Facs->FirmwareWakingVector = (UINT32) PhysicalAddress;
138 if (Facs->Length > 32)
140 if (Facs->Version >= 1)
144 Facs->XFirmwareWakingVector = PhysicalAddress64;
150 Facs->XFirmwareWakingVector = 0
    [all...]
  /src/sys/external/bsd/acpica/dist/tables/
tbutils.c 78 ACPI_TABLE_FACS *Facs;
81 /* If Hardware Reduced flag is set, there is no FACS */
89 (!AcpiGbl_FADT.Facs || !AcpiGbl_Use32BitFacsAddresses))
92 ACPI_CAST_INDIRECT_PTR (ACPI_TABLE_HEADER, &Facs));
93 AcpiGbl_FACS = Facs;
95 else if (AcpiGbl_FADT.Facs)
98 ACPI_CAST_INDIRECT_PTR (ACPI_TABLE_HEADER, &Facs));
99 AcpiGbl_FACS = Facs;
102 /* If there is no FACS, just continue. There was already an error msg */
271 * NOTE: Tables are mapped (not copied) for efficiency. The FACS mus
    [all...]
tbfadt.c 270 * the FADT. Used for the FACS and DSDT addresses.
274 * Check for FACS and DSDT address mismatches. An address mismatch between
277 * the presence of two FACS or two DSDT tables.
333 * DESCRIPTION: Initialize the FADT, DSDT and FACS tables
334 * (FADT contains the addresses of the DSDT and FACS)
350 * and it contains pointers to both the DSDT and FACS tables.
365 * checksum error as we want to try to get the DSDT and FACS.
377 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
384 /* If Hardware Reduced flag is set, there is no FACS */
388 if (AcpiGbl_FADT.Facs)
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
acpidump.h 92 #define MIN_FADT_FOR_FACS (ACPI_FADT_OFFSET (Facs) + sizeof (UINT32))
  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
axutils.c 570 ACPI_TABLE_FACS *Facs = (ACPI_TABLE_FACS *) (void *) Header;
596 /* FACS has only signature and length */
598 if (ACPI_COMPARE_NAMESEG (TableHeader->Signature, "FACS"))
600 printf (" 0x%2.2X\n", Facs->Version);
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aetables.c 337 * Use the external FADT, but we must update the DSDT/FACS
343 ExternalFadt->Facs = ACPI_PTR_TO_PHYSADDR (&LocalFACS);
354 ExternalFadt->Facs = 0;
382 /* Setup FADT header and DSDT/FACS addresses */
385 LocalFADT.Facs = 0;
423 /* Build a FACS */
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osbsdtbl.c 581 /* DSDT and FACS address must be extracted from the FADT */
604 else /* FACS */
612 Gbl_Fadt->Facs)
614 TableAddress = (ACPI_PHYSICAL_ADDRESS) Gbl_Fadt->Facs;
oslinuxtbl.c 986 Gbl_Fadt->Facs != FirstTableAddress)
988 TableAddress = (ACPI_PHYSICAL_ADDRESS) Gbl_Fadt->Facs;
  /src/sys/external/bsd/acpica/dist/common/
dmtbinfo.c 153 * FACS - Firmware ACPI Control Structure
186 {ACPI_DMT_UINT32, ACPI_FADT_OFFSET (Facs), "FACS Address", 0},
290 {ACPI_DMT_UINT64, ACPI_FADT_OFFSET (XFacs), "FACS Address", 0},
  /src/sys/external/bsd/acpica/dist/include/
actbl.h 56 * The RSDP and FACS do not use the common ACPI table header. All other ACPI
69 #define ACPI_SIG_FACS "FACS" /* Firmware ACPI Control Structure */
102 * except the RSDP and FACS.
214 * FACS - Firmware ACPI Control Structure (FACS)
261 UINT32 Facs; /* 32-bit physical address of FACS */
303 UINT64 XFacs; /* 64-bit physical address of FACS */
  /src/sys/dev/acpi/
acpi_verbose.c 346 { 36, "FACS", AcpiGbl_FADT.Facs },
  /src/sys/external/bsd/acpica/dist/tools/examples/
extables.c 133 0x46,0x41,0x43,0x53,0x40,0x00,0x00,0x00, /* 00000000 "FACS@..." */
180 * 3) Setup FADT to point to the DSDT and FACS
202 Fadt->Facs = 0;
306 [0004] FACS Address : 00000001
382 [0008] FACS Address : 0000000000000001
456 /* FACS */
458 [0004] Signature : "FACS"
  /src/usr.sbin/acpitools/acpidump/
acpi.c 129 static void acpi_print_facs(ACPI_TABLE_FACS *facs);
831 ACPI_TABLE_FACS *facs; local
837 if (acpi_select_address(fadt->Facs, fadt->XFacs) == 0) {
839 errx(EXIT_FAILURE, "Missing FACS and HW_REDUCED_ACPI flag not set in FADT");
841 facs = (ACPI_TABLE_FACS *)acpi_map_sdt(
842 acpi_select_address(fadt->Facs, fadt->XFacs));
843 if (memcmp(facs->Signature, ACPI_SIG_FACS, 4) != 0 || facs->Length < 64)
844 errx(EXIT_FAILURE, "FACS is corrupt");
845 acpi_print_facs(facs);
    [all...]

Completed in 20 milliseconds