]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/SimpleNetwork.h
Grammatical and disclaimer changes (does not follow internal C coding stds.)
[mirror_edk2.git] / MdePkg / Include / Protocol / SimpleNetwork.h
index 4e6873389a219b0ed87e3781d698b3ace2defeea..bdce5d59bb5f269d962172150ad5482be12d5772 100644 (file)
@@ -1,5 +1,6 @@
 /** @file\r
-  Simple Network protocol as defined in the UEFI 2.0 specification.\r
+  The EFI_SIMPLE_NETWORK_PROTOCOL provides services to initialize a network interface, \r
+  transmit packets, receive packets, and close a network interface.\r
 \r
   Basic network device abstraction.\r
 \r
@@ -8,14 +9,17 @@
   MCast - MultiCast\r
   ...\r
 \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
-  http://opensource.org/licenses/bsd-license.php                                            \r
+Copyright (c) 2006 - 2010, Intel Corporation.  All rights reserved<BR>\r
+This program and the accompanying materials are licensed and made available under \r
+the terms and conditions of the BSD License that accompanies this distribution.  \r
+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
-  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
+  @par Revision Reference:          \r
+  This Protocol is introduced in EFI Specification 1.10.          \r
 \r
 **/\r
 \r
@@ -36,7 +40,7 @@ typedef struct _EFI_SIMPLE_NETWORK_PROTOCOL  EFI_SIMPLE_NETWORK_PROTOCOL;
 typedef EFI_SIMPLE_NETWORK_PROTOCOL   EFI_SIMPLE_NETWORK;\r
 \r
 ///\r
-/// Simple Network Protocol data structures\r
+/// Simple Network Protocol data structures.\r
 ///\r
 typedef struct {\r
   ///\r
@@ -119,6 +123,11 @@ typedef struct {
 \r
 } EFI_NETWORK_STATISTICS;\r
 \r
+///\r
+/// The state of the network interface.\r
+/// When an EFI_SIMPLE_NETWORK_PROTOCOL driver initializes a\r
+/// network interface, the network interface is left in the EfiSimpleNetworkStopped state.\r
+///\r
 typedef enum {\r
   EfiSimpleNetworkStopped,\r
   EfiSimpleNetworkStarted,\r
@@ -139,24 +148,84 @@ typedef enum {
 \r
 #define MAX_MCAST_FILTER_CNT                              16\r
 typedef struct {\r
+  ///\r
+  /// Reports the current state of the network interface.\r
+  ///\r
   UINT32          State;\r
+  ///\r
+  /// The size, in bytes, of the network interface's HW address.\r
+  ///\r
   UINT32          HwAddressSize;\r
+  ///\r
+  /// The size, in bytes, of the network interface's media header.\r
+  ///\r
   UINT32          MediaHeaderSize;\r
+  ///\r
+  /// The maximum size, in bytes, of the packets supported by the network interface.\r
+  ///\r
   UINT32          MaxPacketSize;\r
+  ///\r
+  /// The size, in bytes, of the NVRAM device attached to the network interface.\r
+  ///\r
   UINT32          NvRamSize;\r
+  ///\r
+  /// The size that must be used for all NVRAM reads and writes. The\r
+  /// start address for NVRAM read and write operations and the total\r
+  /// length of those operations, must be a multiple of this value. The\r
+  /// legal values for this field are 0, 1, 2, 4, and 8.\r
+  ///\r
   UINT32          NvRamAccessSize;\r
+  ///\r
+  /// The multicast receive filter settings supported by the network interface.\r
+  ///\r
   UINT32          ReceiveFilterMask;\r
+  ///\r
+  /// The current multicast receive filter settings.\r
+  ///\r
   UINT32          ReceiveFilterSetting;\r
+  ///\r
+  /// The maximum number of multicast address receive filters supported by the driver.\r
+  ///\r
   UINT32          MaxMCastFilterCount;\r
+  ///\r
+  /// The current number of multicast address receive filters.\r
+  ///\r
   UINT32          MCastFilterCount;\r
+  ///\r
+  /// Array containing the addresses of the current multicast address receive filters.\r
+  ///\r
   EFI_MAC_ADDRESS MCastFilter[MAX_MCAST_FILTER_CNT];\r
+  ///\r
+  /// The current HW MAC address for the network interface.\r
+  ///\r
   EFI_MAC_ADDRESS CurrentAddress;\r
+  ///\r
+  /// The current HW MAC address for broadcast packets.\r
+  ///\r
   EFI_MAC_ADDRESS BroadcastAddress;\r
+  ///\r
+  /// The permanent HW MAC address for the network interface.\r
+  ///\r
   EFI_MAC_ADDRESS PermanentAddress;\r
+  ///\r
+  /// The interface type of the network interface.\r
+  ///\r
   UINT8           IfType;\r
+  ///\r
+  /// TRUE if the HW MAC address can be changed.\r
+  ///\r
   BOOLEAN         MacAddressChangeable;\r
+  ///\r
+  /// TRUE if the network interface can transmit more than one packet at a time.\r
+  ///\r
   BOOLEAN         MultipleTxSupported;\r
+  ///\r
+  /// TRUE if the presence of media can be determined; otherwise FALSE.\r
+  ///\r
   BOOLEAN         MediaPresentSupported;\r
+  ///\r
+  /// TRUE if media are connected to the network interface; otherwise FALSE.\r
+  ///\r
   BOOLEAN         MediaPresent;\r
 } EFI_SIMPLE_NETWORK_MODE;\r
 \r
@@ -204,7 +273,7 @@ EFI_STATUS
   required by the network interface; optionally, also requests allocation \r
   of additional transmit and receive buffers.\r
 \r
-  @param  This              Protocol instance pointer.\r
+  @param  This              The protocol instance pointer.\r
   @param  ExtraRxBufferSize The size, in bytes, of the extra receive buffer space\r
                             that the driver should allocate for the network interface.\r
                             Some network interfaces will not be able to use the extra\r
@@ -217,9 +286,9 @@ EFI_STATUS
                             being used.\r
 \r
   @retval EFI_SUCCESS           The network interface was initialized.\r
-  @retval EFI_NOT_STARTED       The network interface has not been started\r
+  @retval EFI_NOT_STARTED       The network interface has not been started.\r
   @retval EFI_OUT_OF_RESOURCES  There was not enough memory for the transmit and\r
-                                receive buffers.   .\r
+                                receive buffers.\r
   @retval EFI_INVALID_PARAMETER One or more of the parameters has an unsupported value.\r
   @retval EFI_DEVICE_ERROR      The command could not be sent to the network interface.\r
   @retval EFI_UNSUPPORTED       This function is not supported by the network interface.\r
@@ -237,13 +306,13 @@ EFI_STATUS
   Resets a network adapter and re-initializes it with the parameters that were \r
   provided in the previous call to Initialize().  \r
 \r
-  @param  This                 Protocol instance pointer.\r
+  @param  This                 The protocol instance pointer.\r
   @param  ExtendedVerification Indicates that the driver may perform a more\r
                                exhaustive verification operation of the device\r
                                during reset.\r
 \r
   @retval EFI_SUCCESS           The network interface was reset.\r
-  @retval EFI_NOT_STARTED       The network interface has not been started\r
+  @retval EFI_NOT_STARTED       The network interface has not been started.\r
   @retval EFI_INVALID_PARAMETER One or more of the parameters has an unsupported value.\r
   @retval EFI_DEVICE_ERROR      The command could not be sent to the network interface.\r
   @retval EFI_UNSUPPORTED       This function is not supported by the network interface.\r
@@ -263,7 +332,7 @@ EFI_STATUS
   @param  This Protocol instance pointer.\r
 \r
   @retval EFI_SUCCESS           The network interface was shutdown.\r
-  @retval EFI_NOT_STARTED       The network interface has not been started\r
+  @retval EFI_NOT_STARTED       The network interface has not been started.\r
   @retval EFI_INVALID_PARAMETER One or more of the parameters has an unsupported value.\r
   @retval EFI_DEVICE_ERROR      The command could not be sent to the network interface.\r
   @retval EFI_UNSUPPORTED       This function is not supported by the network interface.\r
@@ -278,7 +347,7 @@ EFI_STATUS
 /**\r
   Manages the multicast receive filters of a network interface.\r
 \r
-  @param  This             Protocol instance pointer.\r
+  @param  This             The protocol instance pointer.\r
   @param  Enable           A bit mask of receive filters to enable on the network interface.\r
   @param  Disable          A bit mask of receive filters to disable on the network interface.\r
   @param  ResetMCastFilter Set to TRUE to reset the contents of the multicast receive\r
@@ -293,7 +362,7 @@ EFI_STATUS
                            ResetMCastFilter is TRUE.\r
 \r
   @retval EFI_SUCCESS           The multicast receive filter list was updated.\r
-  @retval EFI_NOT_STARTED       The network interface has not been started\r
+  @retval EFI_NOT_STARTED       The network interface has not been started.\r
   @retval EFI_INVALID_PARAMETER One or more of the parameters has an unsupported value.\r
   @retval EFI_DEVICE_ERROR      The command could not be sent to the network interface.\r
   @retval EFI_UNSUPPORTED       This function is not supported by the network interface.\r
@@ -313,13 +382,13 @@ EFI_STATUS
 /**\r
   Modifies or resets the current station address, if supported.\r
 \r
-  @param  This  Protocol instance pointer.\r
+  @param  This  The protocol instance pointer.\r
   @param  Reset Flag used to reset the station address to the network interfaces\r
                 permanent address.\r
-  @param  New   New station address to be used for the network interface.\r
+  @param  New   The new station address to be used for the network interface.\r
 \r
   @retval EFI_SUCCESS           The network interfaces station address was updated.\r
-  @retval EFI_NOT_STARTED       The network interface has not been started\r
+  @retval EFI_NOT_STARTED       The network interface has not been started.\r
   @retval EFI_INVALID_PARAMETER One or more of the parameters has an unsupported value.\r
   @retval EFI_DEVICE_ERROR      The command could not be sent to the network interface.\r
   @retval EFI_UNSUPPORTED       This function is not supported by the network interface.\r
@@ -366,7 +435,7 @@ EFI_STATUS
 /**\r
   Converts a multicast IP address to a multicast HW MAC address.\r
 \r
-  @param  This Protocol instance pointer.\r
+  @param  This The protocol instance pointer.\r
   @param  IPv6 Set to TRUE if the multicast IP address is IPv6 [RFC 2460]. Set\r
                to FALSE if the multicast IP address is IPv4 [RFC 791].\r
   @param  IP   The multicast IP address that is to be converted to a multicast\r
@@ -397,7 +466,7 @@ EFI_STATUS
   Performs read and write operations on the NVRAM device attached to a \r
   network interface.\r
 \r
-  @param  This       Protocol instance pointer.\r
+  @param  This       The protocol instance pointer.\r
   @param  ReadWrite  TRUE for read operations, FALSE for write operations.\r
   @param  Offset     Byte offset in the NVRAM device at which to start the read or\r
                      write operation. This must be a multiple of NvRamAccessSize and\r
@@ -427,7 +496,7 @@ EFI_STATUS
   Reads the current interrupt status and recycled transmit buffer status from \r
   a network interface.\r
 \r
-  @param  This            Protocol instance pointer.\r
+  @param  This            The protocol instance pointer.\r
   @param  InterruptStatus A pointer to the bit mask of the currently active interrupts\r
                           If this is NULL, the interrupt status will not be read from\r
                           the device. If this is not NULL, the interrupt status will\r
@@ -459,7 +528,7 @@ EFI_STATUS
 /**\r
   Places a packet in the transmit queue of a network interface.\r
 \r
-  @param  This       Protocol instance pointer.\r
+  @param  This       The protocol instance pointer.\r
   @param  HeaderSize The size, in bytes, of the media header to be filled in by\r
                      the Transmit() function. If HeaderSize is non-zero, then it\r
                      must be equal to This->Mode->MediaHeaderSize and the DestAddr\r
@@ -504,7 +573,7 @@ EFI_STATUS
 /**\r
   Receives a packet from a network interface.\r
 \r
-  @param  This       Protocol instance pointer.\r
+  @param  This       The protocol instance pointer.\r
   @param  HeaderSize The size, in bytes, of the media header received on the network\r
                      interface. If this parameter is NULL, then the media header size\r
                      will not be returned.\r
@@ -552,13 +621,12 @@ EFI_STATUS
 // \r
 #define EFI_SIMPLE_NETWORK_INTERFACE_REVISION   EFI_SIMPLE_NETWORK_PROTOCOL_REVISION\r
 \r
-/**  \r
-  @par Protocol Description:\r
-  The EFI_SIMPLE_NETWORK_PROTOCOL protocol is used to initialize access \r
-  to a network adapter. Once the network adapter initializes, \r
-  the EFI_SIMPLE_NETWORK_PROTOCOL protocol provides services that \r
-  allow packets to be transmitted and received.\r
-**/\r
+///\r
+/// The EFI_SIMPLE_NETWORK_PROTOCOL protocol is used to initialize access \r
+/// to a network adapter. Once the network adapter initializes, \r
+/// the EFI_SIMPLE_NETWORK_PROTOCOL protocol provides services that \r
+/// allow packets to be transmitted and received.\r
+///\r
 struct _EFI_SIMPLE_NETWORK_PROTOCOL {\r
   ///\r
   /// Revision of the EFI_SIMPLE_NETWORK_PROTOCOL. All future revisions must \r
@@ -583,6 +651,9 @@ struct _EFI_SIMPLE_NETWORK_PROTOCOL {
   /// Event used with WaitForEvent() to wait for a packet to be received.\r
   ///\r
   EFI_EVENT                           WaitForPacket;\r
+  ///\r
+  /// Pointer to the EFI_SIMPLE_NETWORK_MODE data for the device.\r
+  ///\r
   EFI_SIMPLE_NETWORK_MODE             *Mode;\r
 };\r
 \r