X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=QuarkPlatformPkg%2FAcpi%2FAcpiTables%2FDsdt%2FTpm.asi;fp=QuarkPlatformPkg%2FAcpi%2FAcpiTables%2FDsdt%2FTpm.asi;h=0000000000000000000000000000000000000000;hp=716265596d72788f093dc37e409cdc5b95b9e230;hb=5347c48016f27061475fdb053e867a06ce73492f;hpb=96ef5a8e30a8da33eaab09f13cc8d752342717a5 diff --git a/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/Tpm.asi b/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/Tpm.asi deleted file mode 100644 index 716265596d..0000000000 --- a/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/Tpm.asi +++ /dev/null @@ -1,45 +0,0 @@ -/** @file - -The Infineon SLB9645 TPM ACPI definition block. -Provides TPM device info. and TPM presence check only. - -Copyright (c) 2013-2015 Intel Corporation. - -SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -Device (TPM) -{ - // - // Define _HID as Infineon TPM Device, _CID as "PNP0C31" (defined in - // "Secure Startup-FVE and TPM Admin BIOS and Platform Requirements"). - // - Name(_HID ,EISAID("INT3493")) - Name(_CID, EISAID("PNP0C31")) - - // - // Readable name of this device. - // - Name (_STR, Unicode ("Infineon TPM 1.2 Device (SLB9645TT1.2)")) - - // - // Return the resource consumed by TPM device. - // - Name (_CRS, ResourceTemplate () { - I2cSerialBus (0x20, ControllerInitiated, 0x00061A80, AddressingMode7Bit, "\\_SB.PCI0.GIP0.I2C_", 0, ResourceConsumer,,) - }) - - // - // Check if TPM present. - // - Method (_STA, 0) - { - if (LEqual (TPMP, 0)) - { - return (0) - } - Return (0x0f) - } - -}