Home | History | Annotate | Download | only in acpi

Lines Matching defs:tcpa

154 	ACPI_TABLE_TCPA_HDR *tcpa = NULL;
188 * allow acces to TCPA (which requires mapping)
191 /* duplicate TCPA table? buggy firmware? */
192 if (tcpa != NULL && tcpa_tdesc_len > 0)
193 AcpiOsUnmapMemory(tcpa, tcpa_tdesc_len);
195 tcpa = AcpiOsMapMemory(tdesc->Address, tdesc->Length);
196 if (tcpa != NULL)
201 if (!found_table && tcpa != NULL) {
205 if (tcpa->PlatformClass == ACPI_TCPA_CLIENT_TABLE) {
207 (ACPI_TABLE_TCPA_CLIENT *)(tcpa + 1);
210 } else if (tcpa->PlatformClass == ACPI_TCPA_SERVER_TABLE) {
212 (ACPI_TABLE_TCPA_SERVER *)(tcpa + 1);
225 if (tcpa != NULL && tcpa_tdesc_len != 0)
226 AcpiOsUnmapMemory(tcpa, tcpa_tdesc_len);