X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FCCode%2FSource%2FFlashMap%2FFlashDefFile.c;h=5a9205ab36c1fa5d54e0d5ac7b162b8a5b0c0f11;hp=0bfdad2a0efc4b53a9b95603d9998c62d7f1b216;hb=02918ed0ab12123f688fe23557180d4494efbbcc;hpb=112d8087acfe4fca5adb26ed692114e2f51cff26 diff --git a/Tools/CCode/Source/FlashMap/FlashDefFile.c b/Tools/CCode/Source/FlashMap/FlashDefFile.c index 0bfdad2a0e..5a9205ab36 100644 --- a/Tools/CCode/Source/FlashMap/FlashDefFile.c +++ b/Tools/CCode/Source/FlashMap/FlashDefFile.c @@ -76,6 +76,8 @@ typedef struct _FLASH_BLOCK_DESCRIPTION { unsigned int Alignment; // power of 2 alignment WCHAR_T Attributes[MAX_ATTR_LEN]; // only used for Region definitions WCHAR_T AreaType[MAX_AREATYPE_LEN]; // only used for Region definitions + EFI_GUID AreaTypeGuid; + WCHAR_T AreaTypeGuidString[MAX_NAME_LEN]; FLASH_SUBREGION_DESCRIPTION *Subregions; FLASH_SUBREGION_DESCRIPTION *LastSubregion; } FLASH_BLOCK_DESCRIPTION; @@ -795,6 +797,41 @@ Returns: } PreviousComma = SFPIsToken (","); + // + // Parse optional attribute "AreaTypeGuid" + // + if (SFPIsKeyword ("AreaTypeGuid")) { + // + // Check for preceeding comma now + // + if (!PreviousComma) { + Warning (SFPGetFileName (), SFPGetLineNumber (), 0, "expected ',' before 'AreaTypeGuid'", NULL); + WarningCount++; + } + + if (!SFPIsToken ("=")) { + Warning (SFPGetFileName (), SFPGetLineNumber (), 0, "expected '='", NULL); + WarningCount++; + } + + if (SFPGetQuotedString (FBlockDesc->AreaTypeGuidString, sizeof (FBlockDesc->AreaTypeGuidString))) { + // + // Nothing else to do + // + } else if (!SFPGetGuid (PARSE_GUID_STYLE_5_FIELDS, &FBlockDesc->AreaTypeGuid)) { + Error ( + SFPGetFileName (), + SFPGetLineNumber (), + 0, + "expected AreaTypeGuid quoted string or GUID of form 12345678-1234-1234-1234-123456789ABC", + NULL + ); + ErrorCount++; + goto Done; + } + PreviousComma = SFPIsToken (","); + } + // // Parse optional Subregion definitions // @@ -1781,7 +1818,32 @@ Returns: fprintf (OutFptr, " FLASH_REGION_%s_BASE,\\\n", FBlock->Name); fprintf (OutFptr, " FLASH_REGION_%s_SIZE,\\\n", FBlock->Name); fprintf (OutFptr, " %s,\\\n", FBlock->Attributes); - fprintf (OutFptr, " %s,\\\n },\\\n", FBlock->AreaType); + fprintf (OutFptr, " %s,\\\n", FBlock->AreaType); + fprintf (OutFptr, " 0, 0, 0,\\\n"); + // + // The AreaTypeGuid may have been specified in the input flash definition file as a GUID, or + // as a quoted string. Do the right one. + // + if (FBlock->AreaTypeGuidString[0] != 0) { + fprintf (OutFptr, " %s, \\\n", FBlock->AreaTypeGuidString); + } else { + fprintf ( + OutFptr, + " { 0x%08X, 0x%04X, 0x%04X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X },\\\n", + FBlock->AreaTypeGuid.Data1, + (unsigned int) FBlock->AreaTypeGuid.Data2, + (unsigned int) FBlock->AreaTypeGuid.Data3, + (unsigned int) FBlock->AreaTypeGuid.Data4[0], + (unsigned int) FBlock->AreaTypeGuid.Data4[1], + (unsigned int) FBlock->AreaTypeGuid.Data4[2], + (unsigned int) FBlock->AreaTypeGuid.Data4[3], + (unsigned int) FBlock->AreaTypeGuid.Data4[4], + (unsigned int) FBlock->AreaTypeGuid.Data4[5], + (unsigned int) FBlock->AreaTypeGuid.Data4[6], + (unsigned int) FBlock->AreaTypeGuid.Data4[7] + ); + } + fprintf (OutFptr, " },\\\n"); } fprintf (OutFptr, "\n\n");