0
0
mirror of https://github.com/edk2-porting/edk2-msm synced 2025-05-07 23:51:23 +00:00
Files
edk2-msm/Silicon/Qualcomm/sm8550/Include/Configuration/DeviceConfigurationMap.h
2023-03-18 17:19:51 +08:00

56 lines
1.8 KiB
C
Executable File

#ifndef _DEVICE_CONFIGURATION_MAP_H_
#define _DEVICE_CONFIGURATION_MAP_H_
#define CONFIGURATION_NAME_MAX_LENGTH 64
typedef struct {
CHAR8 Name[CONFIGURATION_NAME_MAX_LENGTH];
UINT64 Value;
} CONFIGURATION_DESCRIPTOR_EX, *PCONFIGURATION_DESCRIPTOR_EX;
static CONFIGURATION_DESCRIPTOR_EX gDeviceConfigurationDescriptorEx[] = {
{"AllowNonPersistentVarsInRetail", 0x1},
{"APPS_HOB_ADDRESS", 0xE3400000},
{"APPS_HOB_SIZE", 0x00001000},
{"DDRInfoNotifyFlag", 0x0},
{"DetectRetailUserAttentionHotkey", 0x00},
{"DetectRetailUserAttentionHotkeyCode", 0x17},
{"DloadCookieAddr", 0x01FD3000},
{"DloadCookieValue", 0x10},
{"EarlyInitCoreCnt", 2},
{"EnableACPIFallback", 0x0},
{"EnableDisplayImageFv", 0x0},
{"EnableDisplayThread", 0x1},
{"EnableLogFsSyncInRetail", 0x1},
{"EnableMultiCoreFvDecompression", 1},
{"EnableMultiThreading", 1},
{"EnableOEMSetupAppInRetail", 0x0},
{"EnableSDHCSwitch", 0x1},
{"EnableShell", 0x1},
{"EnableUefiSecAppDebugLogDump", 0x0},
{"EnableUfsIOC", 1},
{"EnableVariablePolicyEngine", 0},
{"EUDEnableAddr", 0x88E2000},
{"InitialPagePoolCount", 0x900},
{"MaxCoreCnt", 8},
{"MaxLogFileSize", 0x400000},
{"MinidumpTALoadingCfg", 0x0},
{"NumActiveCores", 8},
{"NumCpus", 8},
{"PwrBtnShutdownFlag", 0x0},
{"Sdc1GpioConfigOff", 0xA00},
{"Sdc1GpioConfigOn", 0x1E92},
{"Sdc2GpioConfigOff", 0xA00},
{"Sdc2GpioConfigOn", 0x1E92},
{"SecurityFlag", 0x1C4},
{"SharedIMEMBaseAddr", 0x146BF000},
{"ShmBridgememSize", 0xA00000},
{"SmcInvokeConfig", 0x20040100},
{"UefiMemUseThreshold", 0xE1},
{"UfsSmmuConfigForOtherBootDev", 1},
{"UsbFnIoRevNum", 0x00010001},
{"USBHS1_Config", 0x0},
/* Terminator */
{"Terminator", 0xFFFFFFFF}};
#endif