MiscPhysicalArrayData.c 1002 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*++
  2. Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. Module Name:
  5. MiscPhysicalArrayData.c
  6. Abstract:
  7. BIOS Physical Array static data.
  8. SMBIOS type 16.
  9. --*/
  10. #include "CommonHeader.h"
  11. #include "MiscSubclassDriver.h"
  12. //
  13. // Static (possibly build generated) Physical Memory Array Dat.
  14. //
  15. MISC_SMBIOS_TABLE_DATA(EFI_MEMORY_ARRAY_LOCATION_DATA, MiscPhysicalMemoryArray) =
  16. {
  17. EfiMemoryArrayLocationSystemBoard, // Memory location
  18. EfiMemoryArrayUseSystemMemory, // Memory array use
  19. EfiMemoryErrorCorrectionNone, // Memory error correction
  20. 0, // Maximum Memory Capacity
  21. 0x01 // Number of Devices
  22. };