Home | History | Annotate | Download | only in SmmCommunicationBufferDxe

Lines Matching defs:Entry

35   Entry Point for SMM communication buffer driver.

53 EFI_MEMORY_DESCRIPTOR *Entry;
73 Entry = (EFI_MEMORY_DESCRIPTOR *)(PiSmmCommunicationRegionTable + 1);
74 Entry->Type = EfiConventionalMemory;
75 Entry->PhysicalStart = (EFI_PHYSICAL_ADDRESS)(UINTN)AllocateReservedPages (DEFAULT_COMMON_PI_SMM_COMMUNIATION_REGION_PAGES);
76 ASSERT(Entry->PhysicalStart != 0);
77 Entry->VirtualStart = 0;
78 Entry->NumberOfPages = DEFAULT_COMMON_PI_SMM_COMMUNIATION_REGION_PAGES;
79 Entry->Attribute = 0;
85 DEBUG ((EFI_D_INFO, "Entry:(0x%x)\n", Entry));
86 DEBUG ((EFI_D_INFO, " Type - 0x%x\n", Entry->Type));
87 DEBUG ((EFI_D_INFO, " PhysicalStart - 0x%lx\n", Entry->PhysicalStart));
88 DEBUG ((EFI_D_INFO, " VirtualStart - 0x%lx\n", Entry->VirtualStart));
89 DEBUG ((EFI_D_INFO, " NumberOfPages - 0x%lx\n", Entry->NumberOfPages));
90 DEBUG ((EFI_D_INFO, " Attribute - 0x%lx\n", Entry->Attribute));