]> git.proxmox.com Git - mirror_edk2.git/blobdiff - PcAtChipsetPkg/PciHostBridgeDxe/Ia32/IoFifo.S
PcAtChipsetPkg/PciHostBridge: Remove PciHostBridge driver
[mirror_edk2.git] / PcAtChipsetPkg / PciHostBridgeDxe / Ia32 / IoFifo.S
diff --git a/PcAtChipsetPkg/PciHostBridgeDxe/Ia32/IoFifo.S b/PcAtChipsetPkg/PciHostBridgeDxe/Ia32/IoFifo.S
deleted file mode 100644 (file)
index 03a014d..0000000
+++ /dev/null
@@ -1,134 +0,0 @@
-#------------------------------------------------------------------------------\r
-#\r
-# Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>\r
-#\r
-# This program and the accompanying materials are licensed and made available\r
-# under the terms and conditions of the BSD License which accompanies this\r
-# distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php.\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-#\r
-#------------------------------------------------------------------------------\r
-\r
-#------------------------------------------------------------------------------\r
-#  VOID\r
-#  EFIAPI\r
-#  IoReadFifo8 (\r
-#    IN UINTN                  Port,\r
-#    IN UINTN                  Count,\r
-#    IN VOID                   *Buffer\r
-#    );\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(IoReadFifo8)\r
-ASM_PFX(IoReadFifo8):\r
-    push    %edi\r
-    cld\r
-    movw    8(%esp), %dx\r
-    mov     12(%esp), %ecx\r
-    mov     16(%esp), %edi\r
-rep insb\r
-    pop     %edi\r
-    ret\r
-\r
-#------------------------------------------------------------------------------\r
-#  VOID\r
-#  EFIAPI\r
-#  IoReadFifo16 (\r
-#    IN UINTN                  Port,\r
-#    IN UINTN                  Count,\r
-#    IN VOID                   *Buffer\r
-#    );\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(IoReadFifo16)\r
-ASM_PFX(IoReadFifo16):\r
-    push    %edi\r
-    cld\r
-    movw    8(%esp), %dx\r
-    mov     12(%esp), %ecx\r
-    mov     16(%esp), %edi\r
-rep insw\r
-    pop     %edi\r
-    ret\r
-\r
-#------------------------------------------------------------------------------\r
-#  VOID\r
-#  EFIAPI\r
-#  IoReadFifo32 (\r
-#    IN UINTN                  Port,\r
-#    IN UINTN                  Count,\r
-#    IN VOID                   *Buffer\r
-#    );\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(IoReadFifo32)\r
-ASM_PFX(IoReadFifo32):\r
-    push    %edi\r
-    cld\r
-    movw    8(%esp), %dx\r
-    mov     12(%esp), %ecx\r
-    mov     16(%esp), %edi\r
-rep insl\r
-    pop     %edi\r
-    ret\r
-\r
-#------------------------------------------------------------------------------\r
-#  VOID\r
-#  EFIAPI\r
-#  IoWriteFifo8 (\r
-#    IN UINTN                  Port,\r
-#    IN UINTN                  Count,\r
-#    IN VOID                   *Buffer\r
-#    );\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(IoWriteFifo8)\r
-ASM_PFX(IoWriteFifo8):\r
-    push    %esi\r
-    cld\r
-    movw    8(%esp), %dx\r
-    mov     12(%esp), %ecx\r
-    mov     16(%esp), %esi\r
-rep outsb\r
-    pop     %esi\r
-    ret\r
-\r
-#------------------------------------------------------------------------------\r
-#  VOID\r
-#  EFIAPI\r
-#  IoWriteFifo16 (\r
-#    IN UINTN                  Port,\r
-#    IN UINTN                  Count,\r
-#    IN VOID                   *Buffer\r
-#    );\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(IoWriteFifo16)\r
-ASM_PFX(IoWriteFifo16):\r
-    push    %esi\r
-    cld\r
-    movw    8(%esp), %dx\r
-    mov     12(%esp), %ecx\r
-    mov     16(%esp), %esi\r
-rep outsw\r
-    pop     %esi\r
-    ret\r
-\r
-#------------------------------------------------------------------------------\r
-#  VOID\r
-#  EFIAPI\r
-#  IoWriteFifo32 (\r
-#    IN UINTN                  Port,\r
-#    IN UINTN                  Count,\r
-#    IN VOID                   *Buffer\r
-#    );\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(IoWriteFifo32)\r
-ASM_PFX(IoWriteFifo32):\r
-    push    %esi\r
-    cld\r
-    movw    8(%esp), %dx\r
-    mov     12(%esp), %ecx\r
-    mov     16(%esp), %esi\r
-rep outsl\r
-    pop     %esi\r
-    ret\r
-\r