]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPkg/Include/Library/SemihostLib.h
ArmPkg: move ARM version of SetMemoryAttributes to ArmMmuLib
[mirror_edk2.git] / ArmPkg / Include / Library / SemihostLib.h
index 4026f5173687e6a722450b758f73337939ca9a77..4a91593e31fb9ee2a6c9cb5e96e90ed5964f0fc0 100644 (file)
@@ -26,7 +26,7 @@
 #define SEMIHOST_FILE_MODE_READ     (0 << 2)\r
 #define SEMIHOST_FILE_MODE_WRITE    (1 << 2)\r
 #define SEMIHOST_FILE_MODE_APPEND   (2 << 2)\r
-#define SEMIHOST_FILE_MODE_CREATE   (1 << 1)\r
+#define SEMIHOST_FILE_MODE_UPDATE   (1 << 1)\r
 #define SEMIHOST_FILE_MODE_BINARY   (1 << 0)\r
 #define SEMIHOST_FILE_MODE_ASCII    (0 << 0)\r
 \r
@@ -73,11 +73,48 @@ SemihostFileLength (
   OUT UINTN  *Length\r
   );\r
 \r
+/**\r
+  Get a temporary name for a file from the host running the debug agent.\r
+\r
+  @param[out]  Buffer      Pointer to the buffer where the temporary name has to\r
+                           be stored\r
+  @param[in]   Identifier  File name identifier (integer in the range 0 to 255)\r
+  @param[in]   Length      Length of the buffer to store the temporary name\r
+\r
+  @retval  RETURN_SUCCESS            Temporary name returned\r
+  @retval  RETURN_INVALID_PARAMETER  Invalid buffer address\r
+  @retval  RETURN_ABORTED            Temporary name not returned\r
+\r
+**/\r
+RETURN_STATUS\r
+SemihostFileTmpName(\r
+  OUT  VOID   *Buffer,\r
+  IN   UINT8  Identifier,\r
+  IN   UINTN  Length\r
+  );\r
+\r
 RETURN_STATUS\r
 SemihostFileRemove (\r
   IN CHAR8 *FileName\r
   );\r
 \r
+/**\r
+  Rename a specified file.\r
+\r
+  @param[in]  FileName     Name of the file to rename.\r
+  @param[in]  NewFileName  The new name of the file.\r
+\r
+  @retval  RETURN_SUCCESS            File Renamed\r
+  @retval  RETURN_INVALID_PARAMETER  Either the current or the new name is not specified\r
+  @retval  RETURN_ABORTED            Rename failed\r
+\r
+**/\r
+RETURN_STATUS\r
+SemihostFileRename(\r
+  IN  CHAR8  *FileName,\r
+  IN  CHAR8  *NewFileName\r
+  );\r
+\r
 CHAR8\r
 SemihostReadCharacter (\r
   VOID\r