Searched defs:Rsdp (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/acpi/acpidump/
H A Dtbxfroot.c57 * PARAMETERS: Rsdp - Pointer to RSDP
67 ACPI_TABLE_RSDP *Rsdp)
70 if (!ACPI_VALIDATE_RSDP_SIG (Rsdp->Signature))
79 if (Rsdp->Revision >= 2)
81 return (Rsdp->Length);
94 * PARAMETERS: Rsdp - Pointer to unvalidated RSDP
104 ACPI_TABLE_RSDP *Rsdp)
113 if (!ACPI_VALIDATE_RSDP_SIG (Rsdp->Signature))
122 if (AcpiTbChecksum ((UINT8 *) Rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0)
129 if ((Rsdp
66 AcpiTbGetRsdpLength( ACPI_TABLE_RSDP *Rsdp) argument
103 AcpiTbValidateRsdp( ACPI_TABLE_RSDP *Rsdp) argument
[all...]
H A Dapdump.c115 ACPI_TABLE_RSDP *Rsdp; local
124 Rsdp = ACPI_CAST_PTR (ACPI_TABLE_RSDP, Table);
125 Status = AcpiTbValidateRsdp (Rsdp);
158 ACPI_TABLE_RSDP *Rsdp; local
170 Rsdp = ACPI_CAST_PTR (ACPI_TABLE_RSDP, Table);
171 return (AcpiTbGetRsdpLength (Rsdp));
/illumos-gate/usr/src/uts/intel/io/acpica/tables/
H A Dtbxfroot.c57 * PARAMETERS: Rsdp - Pointer to RSDP
67 ACPI_TABLE_RSDP *Rsdp)
70 if (!ACPI_VALIDATE_RSDP_SIG (Rsdp->Signature))
79 if (Rsdp->Revision >= 2)
81 return (Rsdp->Length);
94 * PARAMETERS: Rsdp - Pointer to unvalidated RSDP
104 ACPI_TABLE_RSDP *Rsdp)
113 if (!ACPI_VALIDATE_RSDP_SIG (Rsdp->Signature))
122 if (AcpiTbChecksum ((UINT8 *) Rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0)
129 if ((Rsdp
66 AcpiTbGetRsdpLength( ACPI_TABLE_RSDP *Rsdp) argument
103 AcpiTbValidateRsdp( ACPI_TABLE_RSDP *Rsdp) argument
[all...]
H A Dtbutils.c263 * PARAMETERS: Rsdp - Pointer to the RSDP
280 ACPI_TABLE_RSDP *Rsdp; local
297 Rsdp = AcpiOsMapMemory (RsdpAddress, sizeof (ACPI_TABLE_RSDP));
298 if (!Rsdp)
304 ACPI_CAST_PTR (ACPI_TABLE_HEADER, Rsdp));
308 if ((Rsdp->Revision > 1) &&
309 Rsdp->XsdtPhysicalAddress &&
317 Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->XsdtPhysicalAddress;
324 Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->RsdtPhysicalAddress;
332 AcpiOsUnmapMemory (Rsdp, sizeo
[all...]

Completed in 111 milliseconds