]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/DeviceIo.h
Code have been checked with spec
[mirror_edk2.git] / MdePkg / Include / Protocol / DeviceIo.h
index 643c810a3483c3abe24d5d8c8b5352216815d7d8..24939d8aa84544a44b1f8dcd84defbc84904c9cd 100644 (file)
@@ -1,10 +1,10 @@
 /** @file\r
-  Device IO protocol as defined in the EFI 1.0 specification.\r
+  Device IO protocol as defined in the EFI 1.10 specification.\r
 \r
   Device IO is used to abstract hardware access to devices. It includes\r
   memory mapped IO, IO, PCI Config space, and DMA.\r
 \r
-  Copyright (c) 2006, Intel Corporation                                                         \r
+  Copyright (c) 2006 - 2008, Intel Corporation                                                         \r
   All rights reserved. This program and the accompanying materials                          \r
   are licensed and made available under the terms and conditions of the BSD License         \r
   which accompanies this distribution.  The full text of the license may be found at        \r
@@ -13,8 +13,6 @@
   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
-  Module Name:  DeviceIo.h\r
-\r
 **/\r
 \r
 #ifndef __DEVICE_IO_H__\r
 \r
 typedef struct _EFI_DEVICE_IO_PROTOCOL EFI_DEVICE_IO_PROTOCOL;\r
 \r
+///\r
+/// Protocol GUID name defined in EFI1.1.\r
+/// \r
+#define DEVICE_IO_PROTOCOL  EFI_DEVICE_IO_PROTOCOL_GUID\r
+\r
+///\r
+/// Protocol defined in EFI1.1.\r
+/// \r
+typedef EFI_DEVICE_IO_PROTOCOL  EFI_DEVICE_IO_INTERFACE;\r
+\r
+///\r
+/// Device IO Access Width \r
+///\r
 typedef enum {\r
-  IO_UINT8,\r
-  IO_UINT16,\r
-  IO_UINT32,\r
-  IO_UINT64,\r
-  MMIO_COPY_UINT8,\r
-  MMIO_COPY_UINT16,\r
-  MMIO_COPY_UINT32,\r
-  MMIO_COPY_UINT64\r
+  IO_UINT8  = 0,\r
+  IO_UINT16 = 1,\r
+  IO_UINT32 = 2,\r
+  IO_UINT64 = 3,\r
+  //\r
+  // Below enumerations are added in "Extensible Firmware Interface Specification, \r
+  // Version 1.10, Specification Update, Version 001".\r
+  //\r
+  MMIO_COPY_UINT8  = 4,\r
+  MMIO_COPY_UINT16 = 5,\r
+  MMIO_COPY_UINT32 = 6,\r
+  MMIO_COPY_UINT64 = 7\r
 } EFI_IO_WIDTH;\r
 \r
 /**                                                                 \r
@@ -46,7 +61,10 @@ typedef enum {
   @param  Address               The base address of the I/O operations. \r
   @param  Count                 The number of I/O operations to perform.\r
   @param  Buffer                For read operations, the destination buffer to store the results. For write\r
-                                operations, the source buffer to write data from.                \r
+                                operations, the source buffer to write data from. If\r
+                                Width is MMIO_COPY_UINT8, MMIO_COPY_UINT16,\r
+                                MMIO_COPY_UINT32, or MMIO_COPY_UINT64, then\r
+                                Buffer is interpreted as a base address of an I/O operation such as Address. \r
 \r
   @retval EFI_SUCCESS           The data was read from or written to the device.\r
   @retval EFI_OUT_OF_RESOURCES  The request could not be completed due to a lack of resources.      \r
@@ -55,7 +73,7 @@ typedef enum {
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_DEVICE_IO) (\r
+(EFIAPI *EFI_DEVICE_IO)(\r
   IN EFI_DEVICE_IO_PROTOCOL         *This,\r
   IN EFI_IO_WIDTH                   Width,\r
   IN UINT64                         Address,\r
@@ -84,15 +102,29 @@ typedef struct {
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_PCI_DEVICE_PATH) (\r
+(EFIAPI *EFI_PCI_DEVICE_PATH)(\r
   IN EFI_DEVICE_IO_PROTOCOL           *This,\r
   IN UINT64                           PciAddress,\r
   IN OUT EFI_DEVICE_PATH_PROTOCOL     **PciDevicePath\r
   );\r
 \r
 typedef enum {\r
+  ///\r
+  /// A read operation from system memory by a bus master.\r
+  ///\r
   EfiBusMasterRead,\r
+\r
+  ///\r
+  /// A write operation to system memory by a bus master.\r
+  ///\r
   EfiBusMasterWrite,\r
+  \r
+  ///\r
+  /// Provides both read and write access to system memory\r
+  /// by both the processor and a bus master. The buffer is\r
+  /// coherent from both the processor's and the bus master's\r
+  /// point of view.\r
+  ///\r
   EfiBusMasterCommonBuffer\r
 } EFI_IO_OPERATION_TYPE;\r
 \r
@@ -116,7 +148,7 @@ typedef enum {
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_IO_MAP) (\r
+(EFIAPI *EFI_IO_MAP)(\r
   IN EFI_DEVICE_IO_PROTOCOL           *This,\r
   IN EFI_IO_OPERATION_TYPE            Operation,\r
   IN EFI_PHYSICAL_ADDRESS             *HostAddress,\r
@@ -137,7 +169,7 @@ EFI_STATUS
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_IO_UNMAP) (\r
+(EFIAPI *EFI_IO_UNMAP)(\r
   IN EFI_DEVICE_IO_PROTOCOL           *This,\r
   IN VOID                             *Mapping\r
   );\r
@@ -161,7 +193,7 @@ EFI_STATUS
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_IO_ALLOCATE_BUFFER) (\r
+(EFIAPI *EFI_IO_ALLOCATE_BUFFER)(\r
   IN EFI_DEVICE_IO_PROTOCOL           *This,\r
   IN EFI_ALLOCATE_TYPE                Type,\r
   IN EFI_MEMORY_TYPE                  MemoryType,\r
@@ -180,7 +212,7 @@ EFI_STATUS
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_IO_FLUSH) (\r
+(EFIAPI *EFI_IO_FLUSH)(\r
   IN EFI_DEVICE_IO_PROTOCOL  *This\r
   );\r
 \r
@@ -199,15 +231,28 @@ EFI_STATUS
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_IO_FREE_BUFFER) (\r
+(EFIAPI *EFI_IO_FREE_BUFFER)(\r
   IN EFI_DEVICE_IO_PROTOCOL           *This,\r
   IN UINTN                            Pages,\r
   IN EFI_PHYSICAL_ADDRESS             HostAddress\r
   );\r
 \r
+///\r
+/// This protocol provides the basic Memory, I/O, and PCI interfaces that \r
+/// are used to abstract accesses to devices.\r
+///\r
 struct _EFI_DEVICE_IO_PROTOCOL {\r
+  ///\r
+  /// Allows reads and writes to memory mapped I/O space.\r
+  ///\r
   EFI_IO_ACCESS           Mem;\r
+  ///\r
+  /// Allows reads and writes to I/O space.\r
+  ///\r
   EFI_IO_ACCESS           Io;\r
+  ///\r
+  /// Allows reads and writes to PCI configuration space.\r
+  ///\r
   EFI_IO_ACCESS           Pci;\r
   EFI_IO_MAP              Map;\r
   EFI_PCI_DEVICE_PATH     PciDevicePath;\r