X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Vlv2DeviceRefCodePkg%2FAcpiTablesPCAT%2FHpet%2FHpet.aslc;fp=Vlv2DeviceRefCodePkg%2FAcpiTablesPCAT%2FHpet%2FHpet.aslc;h=0000000000000000000000000000000000000000;hp=ecbe51e6b06f44ea379fcdc8f2679999b8f54d93;hb=5347c48016f27061475fdb053e867a06ce73492f;hpb=96ef5a8e30a8da33eaab09f13cc8d752342717a5 diff --git a/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/Hpet/Hpet.aslc b/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/Hpet/Hpet.aslc deleted file mode 100644 index ecbe51e6b0..0000000000 --- a/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/Hpet/Hpet.aslc +++ /dev/null @@ -1,63 +0,0 @@ -/*++ - -Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved - - SPDX-License-Identifier: BSD-2-Clause-Patent - - - -Module Name: - - Hpet.c - -Abstract: - - This file contains a structure definition for the ACPI HPET Table. ---*/ - -// -// Statements that include other files -// -#ifdef ECP_FLAG -#include -#endif -#include -#include "AcpiTablePlatform.h" - -// Hpet Table -EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_TABLE_HEADER HPET = { - { - EFI_ACPI_3_0_HIGH_PRECISION_EVENT_TIMER_TABLE_SIGNATURE, - sizeof (EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_TABLE_HEADER), - EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_TABLE_REVISION, - 0, // to make sum of entire table == 0 - EFI_ACPI_OEM_ID, // OEMID is a 6 bytes long field - EFI_ACPI_OEM_TABLE_ID, // OEM table identification(8 bytes long) - EFI_ACPI_OEM_REVISION, // OEM revision - EFI_ACPI_CREATOR_ID, // ASL compiler vendor ID - EFI_ACPI_CREATOR_REVISION // ASL compiler revision number - }, - 0x0, // EventTimerBlockId - { - 0x00, // Address_Space_ID = System Memory - 0x40, // Register_Bit_Width = 32 bits, mentioned about write failures when in 64bit in SCU HAS - 0x00, // Register_Bit_offset - 0x00, // Dword access - HPET_BASE_ADDRESS, // Base addresse of HPET - }, - 0x0, // Only HPET's _UID in Namespace - MAIN_COUNTER_MIN_PERIODIC_CLOCK_TICKS, - 0x0 -}; - -VOID* -ReferenceAcpiTable ( - VOID - ) -{ - // - // Reference the table being generated to prevent the optimizer from - // removing the data structure from the executable - // - return (VOID*)&HPET; -}