Home | History | Annotate | Download | only in AcpiPlatformDxe
      1 /** @file
      2 
      3   Copyright (c) 2014, Applied Micro Curcuit Corporation. All rights reserved.<BR>
      4   Copyright (c) 2015, Hisilicon Limited. All rights reserved.<BR>
      5   Copyright (c) 2015, Linaro Limited. All rights reserved.<BR>
      6   This program and the accompanying materials
      7   are licensed and made available under the terms and conditions of the BSD License
      8   which accompanies this distribution.  The full text of the license may be found at
      9   http://opensource.org/licenses/bsd-license.php
     10 
     11   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     12   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     13 
     14 **/
     15 #include <PiDxe.h>
     16 #include <Guid/EventGroup.h>
     17 #include <Protocol/AcpiTable.h>
     18 #include <Protocol/FirmwareVolume2.h>
     19 #include <Library/BaseLib.h>
     20 #include <Library/UefiBootServicesTableLib.h>
     21 #include <Protocol/AcpiSystemDescriptionTable.h>
     22 #include <Library/DebugLib.h>
     23 #include <Library/PcdLib.h>
     24 #include <Library/PrintLib.h>
     25 #include <Library/DebugLib.h>
     26 #include <Library/BaseMemoryLib.h>
     27 #include <Library/UefiRuntimeServicesTableLib.h>
     28 #include <IndustryStandard/Acpi.h>
     29 #include <IndustryStandard/AcpiAml.h>
     30 #include "EthMac.h"
     31 
     32 EFI_STATUS
     33 EFIAPI
     34 AcpiPlatformEntryPoint (
     35   IN EFI_HANDLE         ImageHandle,
     36   IN EFI_SYSTEM_TABLE   *SystemTable
     37   )
     38 {
     39   return EthMacInit();
     40 }
     41