Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/powerplay: add/update headers for Fiji SMU and DPM

New headers for Fiji.

Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>

authored by

Eric Huang and committed by
Alex Deucher
770911a3 c82baa28

+12926 -182
-182
drivers/gpu/drm/amd/amdgpu/fiji_ppsmc.h
··· 1 - /* 2 - * Copyright 2014 Advanced Micro Devices, Inc. 3 - * 4 - * Permission is hereby granted, free of charge, to any person obtaining a 5 - * copy of this software and associated documentation files (the "Software"), 6 - * to deal in the Software without restriction, including without limitation 7 - * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 - * and/or sell copies of the Software, and to permit persons to whom the 9 - * Software is furnished to do so, subject to the following conditions: 10 - * 11 - * The above copyright notice and this permission notice shall be included in 12 - * all copies or substantial portions of the Software. 13 - * 14 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 - * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 - * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 - * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 - * OTHER DEALINGS IN THE SOFTWARE. 21 - * 22 - */ 23 - 24 - #ifndef FIJI_PP_SMC_H 25 - #define FIJI_PP_SMC_H 26 - 27 - #pragma pack(push, 1) 28 - 29 - #define PPSMC_SWSTATE_FLAG_DC 0x01 30 - #define PPSMC_SWSTATE_FLAG_UVD 0x02 31 - #define PPSMC_SWSTATE_FLAG_VCE 0x04 32 - 33 - #define PPSMC_THERMAL_PROTECT_TYPE_INTERNAL 0x00 34 - #define PPSMC_THERMAL_PROTECT_TYPE_EXTERNAL 0x01 35 - #define PPSMC_THERMAL_PROTECT_TYPE_NONE 0xff 36 - 37 - #define PPSMC_SYSTEMFLAG_GPIO_DC 0x01 38 - #define PPSMC_SYSTEMFLAG_STEPVDDC 0x02 39 - #define PPSMC_SYSTEMFLAG_GDDR5 0x04 40 - 41 - #define PPSMC_SYSTEMFLAG_DISABLE_BABYSTEP 0x08 42 - 43 - #define PPSMC_SYSTEMFLAG_REGULATOR_HOT 0x10 44 - #define PPSMC_SYSTEMFLAG_REGULATOR_HOT_ANALOG 0x20 45 - 46 - #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_MASK 0x07 47 - #define PPSMC_EXTRAFLAGS_AC2DC_DONT_WAIT_FOR_VBLANK 0x08 48 - 49 - #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_GOTODPMLOWSTATE 0x00 50 - #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_GOTOINITIALSTATE 0x01 51 - 52 - #define PPSMC_DPM2FLAGS_TDPCLMP 0x01 53 - #define PPSMC_DPM2FLAGS_PWRSHFT 0x02 54 - #define PPSMC_DPM2FLAGS_OCP 0x04 55 - 56 - #define PPSMC_DISPLAY_WATERMARK_LOW 0 57 - #define PPSMC_DISPLAY_WATERMARK_HIGH 1 58 - 59 - #define PPSMC_STATEFLAG_AUTO_PULSE_SKIP 0x01 60 - #define PPSMC_STATEFLAG_POWERBOOST 0x02 61 - #define PPSMC_STATEFLAG_PSKIP_ON_TDP_FAULT 0x04 62 - #define PPSMC_STATEFLAG_POWERSHIFT 0x08 63 - #define PPSMC_STATEFLAG_SLOW_READ_MARGIN 0x10 64 - #define PPSMC_STATEFLAG_DEEPSLEEP_THROTTLE 0x20 65 - #define PPSMC_STATEFLAG_DEEPSLEEP_BYPASS 0x40 66 - 67 - #define FDO_MODE_HARDWARE 0 68 - #define FDO_MODE_PIECE_WISE_LINEAR 1 69 - 70 - enum FAN_CONTROL { 71 - FAN_CONTROL_FUZZY, 72 - FAN_CONTROL_TABLE 73 - }; 74 - 75 - //Gemini Modes 76 - #define PPSMC_GeminiModeNone 0 //Single GPU board 77 - #define PPSMC_GeminiModeMaster 1 //Master GPU on a Gemini board 78 - #define PPSMC_GeminiModeSlave 2 //Slave GPU on a Gemini board 79 - 80 - #define PPSMC_Result_OK ((uint16_t)0x01) 81 - #define PPSMC_Result_NoMore ((uint16_t)0x02) 82 - #define PPSMC_Result_NotNow ((uint16_t)0x03) 83 - #define PPSMC_Result_Failed ((uint16_t)0xFF) 84 - #define PPSMC_Result_UnknownCmd ((uint16_t)0xFE) 85 - #define PPSMC_Result_UnknownVT ((uint16_t)0xFD) 86 - 87 - typedef uint16_t PPSMC_Result; 88 - 89 - #define PPSMC_isERROR(x) ((uint16_t)0x80 & (x)) 90 - 91 - #define PPSMC_MSG_Halt ((uint16_t)0x10) 92 - #define PPSMC_MSG_Resume ((uint16_t)0x11) 93 - #define PPSMC_MSG_EnableDPMLevel ((uint16_t)0x12) 94 - #define PPSMC_MSG_ZeroLevelsDisabled ((uint16_t)0x13) 95 - #define PPSMC_MSG_OneLevelsDisabled ((uint16_t)0x14) 96 - #define PPSMC_MSG_TwoLevelsDisabled ((uint16_t)0x15) 97 - #define PPSMC_MSG_EnableThermalInterrupt ((uint16_t)0x16) 98 - #define PPSMC_MSG_RunningOnAC ((uint16_t)0x17) 99 - #define PPSMC_MSG_LevelUp ((uint16_t)0x18) 100 - #define PPSMC_MSG_LevelDown ((uint16_t)0x19) 101 - #define PPSMC_MSG_ResetDPMCounters ((uint16_t)0x1a) 102 - #define PPSMC_MSG_SwitchToSwState ((uint16_t)0x20) 103 - #define PPSMC_MSG_SwitchToSwStateLast ((uint16_t)0x3f) 104 - #define PPSMC_MSG_SwitchToInitialState ((uint16_t)0x40) 105 - #define PPSMC_MSG_NoForcedLevel ((uint16_t)0x41) 106 - #define PPSMC_MSG_ForceHigh ((uint16_t)0x42) 107 - #define PPSMC_MSG_ForceMediumOrHigh ((uint16_t)0x43) 108 - #define PPSMC_MSG_SwitchToMinimumPower ((uint16_t)0x51) 109 - #define PPSMC_MSG_ResumeFromMinimumPower ((uint16_t)0x52) 110 - #define PPSMC_MSG_EnableCac ((uint16_t)0x53) 111 - #define PPSMC_MSG_DisableCac ((uint16_t)0x54) 112 - #define PPSMC_DPMStateHistoryStart ((uint16_t)0x55) 113 - #define PPSMC_DPMStateHistoryStop ((uint16_t)0x56) 114 - #define PPSMC_CACHistoryStart ((uint16_t)0x57) 115 - #define PPSMC_CACHistoryStop ((uint16_t)0x58) 116 - #define PPSMC_TDPClampingActive ((uint16_t)0x59) 117 - #define PPSMC_TDPClampingInactive ((uint16_t)0x5A) 118 - #define PPSMC_StartFanControl ((uint16_t)0x5B) 119 - #define PPSMC_StopFanControl ((uint16_t)0x5C) 120 - #define PPSMC_NoDisplay ((uint16_t)0x5D) 121 - #define PPSMC_HasDisplay ((uint16_t)0x5E) 122 - #define PPSMC_MSG_UVDPowerOFF ((uint16_t)0x60) 123 - #define PPSMC_MSG_UVDPowerON ((uint16_t)0x61) 124 - #define PPSMC_MSG_EnableULV ((uint16_t)0x62) 125 - #define PPSMC_MSG_DisableULV ((uint16_t)0x63) 126 - #define PPSMC_MSG_EnterULV ((uint16_t)0x64) 127 - #define PPSMC_MSG_ExitULV ((uint16_t)0x65) 128 - #define PPSMC_PowerShiftActive ((uint16_t)0x6A) 129 - #define PPSMC_PowerShiftInactive ((uint16_t)0x6B) 130 - #define PPSMC_OCPActive ((uint16_t)0x6C) 131 - #define PPSMC_OCPInactive ((uint16_t)0x6D) 132 - #define PPSMC_CACLongTermAvgEnable ((uint16_t)0x6E) 133 - #define PPSMC_CACLongTermAvgDisable ((uint16_t)0x6F) 134 - #define PPSMC_MSG_InferredStateSweep_Start ((uint16_t)0x70) 135 - #define PPSMC_MSG_InferredStateSweep_Stop ((uint16_t)0x71) 136 - #define PPSMC_MSG_SwitchToLowestInfState ((uint16_t)0x72) 137 - #define PPSMC_MSG_SwitchToNonInfState ((uint16_t)0x73) 138 - #define PPSMC_MSG_AllStateSweep_Start ((uint16_t)0x74) 139 - #define PPSMC_MSG_AllStateSweep_Stop ((uint16_t)0x75) 140 - #define PPSMC_MSG_SwitchNextLowerInfState ((uint16_t)0x76) 141 - #define PPSMC_MSG_SwitchNextHigherInfState ((uint16_t)0x77) 142 - #define PPSMC_MSG_MclkRetrainingTest ((uint16_t)0x78) 143 - #define PPSMC_MSG_ForceTDPClamping ((uint16_t)0x79) 144 - #define PPSMC_MSG_CollectCAC_PowerCorreln ((uint16_t)0x7A) 145 - #define PPSMC_MSG_CollectCAC_WeightCalib ((uint16_t)0x7B) 146 - #define PPSMC_MSG_CollectCAC_SQonly ((uint16_t)0x7C) 147 - #define PPSMC_MSG_CollectCAC_TemperaturePwr ((uint16_t)0x7D) 148 - #define PPSMC_MSG_ExtremitiesTest_Start ((uint16_t)0x7E) 149 - #define PPSMC_MSG_ExtremitiesTest_Stop ((uint16_t)0x7F) 150 - #define PPSMC_FlushDataCache ((uint16_t)0x80) 151 - #define PPSMC_FlushInstrCache ((uint16_t)0x81) 152 - #define PPSMC_MSG_SetEnabledLevels ((uint16_t)0x82) 153 - #define PPSMC_MSG_SetForcedLevels ((uint16_t)0x83) 154 - #define PPSMC_MSG_ResetToDefaults ((uint16_t)0x84) 155 - #define PPSMC_MSG_SetForcedLevelsAndJump ((uint16_t)0x85) 156 - #define PPSMC_MSG_SetCACHistoryMode ((uint16_t)0x86) 157 - #define PPSMC_MSG_EnableDTE ((uint16_t)0x87) 158 - #define PPSMC_MSG_DisableDTE ((uint16_t)0x88) 159 - #define PPSMC_MSG_SmcSpaceSetAddress ((uint16_t)0x89) 160 - #define PPSMC_MSG_SmcSpaceWriteDWordInc ((uint16_t)0x8A) 161 - #define PPSMC_MSG_SmcSpaceWriteWordInc ((uint16_t)0x8B) 162 - #define PPSMC_MSG_SmcSpaceWriteByteInc ((uint16_t)0x8C) 163 - 164 - #define PPSMC_MSG_BREAK ((uint16_t)0xF8) 165 - 166 - #define PPSMC_MSG_Test ((uint16_t)0x100) 167 - #define PPSMC_MSG_DRV_DRAM_ADDR_HI ((uint16_t)0x250) 168 - #define PPSMC_MSG_DRV_DRAM_ADDR_LO ((uint16_t)0x251) 169 - #define PPSMC_MSG_SMU_DRAM_ADDR_HI ((uint16_t)0x252) 170 - #define PPSMC_MSG_SMU_DRAM_ADDR_LO ((uint16_t)0x253) 171 - #define PPSMC_MSG_LoadUcodes ((uint16_t)0x254) 172 - 173 - typedef uint16_t PPSMC_Msg; 174 - 175 - #define PPSMC_EVENT_STATUS_THERMAL 0x00000001 176 - #define PPSMC_EVENT_STATUS_REGULATORHOT 0x00000002 177 - #define PPSMC_EVENT_STATUS_DC 0x00000004 178 - #define PPSMC_EVENT_STATUS_GPIO17 0x00000008 179 - 180 - #pragma pack(pop) 181 - 182 - #endif
+79
drivers/gpu/drm/amd/include/atombios.h
··· 550 550 //MPLL_CNTL_FLAG_BYPASS_AD_PLL has a wrong name, should be BYPASS_DQ_PLL 551 551 #define MPLL_CNTL_FLAG_BYPASS_AD_PLL 0x04 552 552 553 + // use for ComputeMemoryClockParamTable 554 + typedef struct _COMPUTE_MEMORY_CLOCK_PARAM_PARAMETERS_V2_2 555 + { 556 + COMPUTE_MEMORY_ENGINE_PLL_PARAMETERS_V4 ulClock; 557 + ULONG ulReserved; 558 + }COMPUTE_MEMORY_CLOCK_PARAM_PARAMETERS_V2_2; 559 + 553 560 typedef struct _DYNAMICE_MEMORY_SETTINGS_PARAMETER 554 561 { 555 562 ATOM_COMPUTE_CLOCK_FREQ ulClock; ··· 4994 4987 ULONG ulSCRPercent; 4995 4988 ULONG ulSDCMargine; 4996 4989 }ATOM_ASIC_PROFILING_INFO_V3_3; 4990 + 4991 + // for Fiji speed EVV algorithm 4992 + typedef struct _ATOM_ASIC_PROFILING_INFO_V3_4 4993 + { 4994 + ATOM_COMMON_TABLE_HEADER asHeader; 4995 + ULONG ulEvvLkgFactor; 4996 + ULONG ulBoardCoreTemp; 4997 + ULONG ulMaxVddc; 4998 + ULONG ulMinVddc; 4999 + ULONG ulLoadLineSlop; 5000 + ULONG ulLeakageTemp; 5001 + ULONG ulLeakageVoltage; 5002 + EFUSE_LINEAR_FUNC_PARAM sCACm; 5003 + EFUSE_LINEAR_FUNC_PARAM sCACb; 5004 + EFUSE_LOGISTIC_FUNC_PARAM sKt_b; 5005 + EFUSE_LOGISTIC_FUNC_PARAM sKv_m; 5006 + EFUSE_LOGISTIC_FUNC_PARAM sKv_b; 5007 + USHORT usLkgEuseIndex; 5008 + UCHAR ucLkgEfuseBitLSB; 5009 + UCHAR ucLkgEfuseLength; 5010 + ULONG ulLkgEncodeLn_MaxDivMin; 5011 + ULONG ulLkgEncodeMax; 5012 + ULONG ulLkgEncodeMin; 5013 + ULONG ulEfuseLogisticAlpha; 5014 + USHORT usPowerDpm0; 5015 + USHORT usPowerDpm1; 5016 + USHORT usPowerDpm2; 5017 + USHORT usPowerDpm3; 5018 + USHORT usPowerDpm4; 5019 + USHORT usPowerDpm5; 5020 + USHORT usPowerDpm6; 5021 + USHORT usPowerDpm7; 5022 + ULONG ulTdpDerateDPM0; 5023 + ULONG ulTdpDerateDPM1; 5024 + ULONG ulTdpDerateDPM2; 5025 + ULONG ulTdpDerateDPM3; 5026 + ULONG ulTdpDerateDPM4; 5027 + ULONG ulTdpDerateDPM5; 5028 + ULONG ulTdpDerateDPM6; 5029 + ULONG ulTdpDerateDPM7; 5030 + EFUSE_LINEAR_FUNC_PARAM sRoFuse; 5031 + ULONG ulEvvDefaultVddc; 5032 + ULONG ulEvvNoCalcVddc; 5033 + USHORT usParamNegFlag; 5034 + USHORT usSpeed_Model; 5035 + ULONG ulSM_A0; 5036 + ULONG ulSM_A1; 5037 + ULONG ulSM_A2; 5038 + ULONG ulSM_A3; 5039 + ULONG ulSM_A4; 5040 + ULONG ulSM_A5; 5041 + ULONG ulSM_A6; 5042 + ULONG ulSM_A7; 5043 + UCHAR ucSM_A0_sign; 5044 + UCHAR ucSM_A1_sign; 5045 + UCHAR ucSM_A2_sign; 5046 + UCHAR ucSM_A3_sign; 5047 + UCHAR ucSM_A4_sign; 5048 + UCHAR ucSM_A5_sign; 5049 + UCHAR ucSM_A6_sign; 5050 + UCHAR ucSM_A7_sign; 5051 + ULONG ulMargin_RO_a; 5052 + ULONG ulMargin_RO_b; 5053 + ULONG ulMargin_RO_c; 5054 + ULONG ulMargin_fixed; 5055 + ULONG ulMargin_Fmax_mean; 5056 + ULONG ulMargin_plat_mean; 5057 + ULONG ulMargin_Fmax_sigma; 5058 + ULONG ulMargin_plat_sigma; 5059 + ULONG ulMargin_DC_sigma; 5060 + ULONG ulReserved[8]; // Reserved for future ASIC 5061 + }ATOM_ASIC_PROFILING_INFO_V3_4; 4997 5062 4998 5063 typedef struct _ATOM_POWER_SOURCE_OBJECT 4999 5064 {
+617
drivers/gpu/drm/amd/powerplay/hwmgr/ppevvmath.h
··· 1 + /* 2 + * Copyright 2015 Advanced Micro Devices, Inc. 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a 5 + * copy of this software and associated documentation files (the "Software"), 6 + * to deal in the Software without restriction, including without limitation 7 + * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 + * and/or sell copies of the Software, and to permit persons to whom the 9 + * Software is furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 + * OTHER DEALINGS IN THE SOFTWARE. 21 + * 22 + */ 23 + #include <asm/div64.h> 24 + 25 + #define SHIFT_AMOUNT 16 /* We multiply all original integers with 2^SHIFT_AMOUNT to get the fInt representation */ 26 + 27 + #define PRECISION 5 /* Change this value to change the number of decimal places in the final output - 5 is a good default */ 28 + 29 + #define SHIFTED_2 (2 << SHIFT_AMOUNT) 30 + #define MAX (1 << (SHIFT_AMOUNT - 1)) - 1 /* 32767 - Might change in the future */ 31 + 32 + /* ------------------------------------------------------------------------------- 33 + * NEW TYPE - fINT 34 + * ------------------------------------------------------------------------------- 35 + * A variable of type fInt can be accessed in 3 ways using the dot (.) operator 36 + * fInt A; 37 + * A.full => The full number as it is. Generally not easy to read 38 + * A.partial.real => Only the integer portion 39 + * A.partial.decimal => Only the fractional portion 40 + */ 41 + typedef union _fInt { 42 + int full; 43 + struct _partial { 44 + unsigned int decimal: SHIFT_AMOUNT; /*Needs to always be unsigned*/ 45 + int real: 32 - SHIFT_AMOUNT; 46 + } partial; 47 + } fInt; 48 + 49 + /* ------------------------------------------------------------------------------- 50 + * Function Declarations 51 + * ------------------------------------------------------------------------------- 52 + */ 53 + fInt ConvertToFraction(int); /* Use this to convert an INT to a FINT */ 54 + fInt Convert_ULONG_ToFraction(uint32_t); /* Use this to convert an uint32_t to a FINT */ 55 + fInt GetScaledFraction(int, int); /* Use this to convert an INT to a FINT after scaling it by a factor */ 56 + int ConvertBackToInteger(fInt); /* Convert a FINT back to an INT that is scaled by 1000 (i.e. last 3 digits are the decimal digits) */ 57 + 58 + fInt fNegate(fInt); /* Returns -1 * input fInt value */ 59 + fInt fAdd (fInt, fInt); /* Returns the sum of two fInt numbers */ 60 + fInt fSubtract (fInt A, fInt B); /* Returns A-B - Sometimes easier than Adding negative numbers */ 61 + fInt fMultiply (fInt, fInt); /* Returns the product of two fInt numbers */ 62 + fInt fDivide (fInt A, fInt B); /* Returns A/B */ 63 + fInt fGetSquare(fInt); /* Returns the square of a fInt number */ 64 + fInt fSqrt(fInt); /* Returns the Square Root of a fInt number */ 65 + 66 + int uAbs(int); /* Returns the Absolute value of the Int */ 67 + fInt fAbs(fInt); /* Returns the Absolute value of the fInt */ 68 + int uPow(int base, int exponent); /* Returns base^exponent an INT */ 69 + 70 + void SolveQuadracticEqn(fInt, fInt, fInt, fInt[]); /* Returns the 2 roots via the array */ 71 + bool Equal(fInt, fInt); /* Returns true if two fInts are equal to each other */ 72 + bool GreaterThan(fInt A, fInt B); /* Returns true if A > B */ 73 + 74 + fInt fExponential(fInt exponent); /* Can be used to calculate e^exponent */ 75 + fInt fNaturalLog(fInt value); /* Can be used to calculate ln(value) */ 76 + 77 + /* Fuse decoding functions 78 + * ------------------------------------------------------------------------------------- 79 + */ 80 + fInt fDecodeLinearFuse(uint32_t fuse_value, fInt f_min, fInt f_range, uint32_t bitlength); 81 + fInt fDecodeLogisticFuse(uint32_t fuse_value, fInt f_average, fInt f_range, uint32_t bitlength); 82 + fInt fDecodeLeakageID (uint32_t leakageID_fuse, fInt ln_max_div_min, fInt f_min, uint32_t bitlength); 83 + 84 + /* Internal Support Functions - Use these ONLY for testing or adding to internal functions 85 + * ------------------------------------------------------------------------------------- 86 + * Some of the following functions take two INTs as their input - This is unsafe for a variety of reasons. 87 + */ 88 + fInt Add (int, int); /* Add two INTs and return Sum as FINT */ 89 + fInt Multiply (int, int); /* Multiply two INTs and return Product as FINT */ 90 + fInt Divide (int, int); /* You get the idea... */ 91 + fInt fNegate(fInt); 92 + 93 + int uGetScaledDecimal (fInt); /* Internal function */ 94 + int GetReal (fInt A); /* Internal function */ 95 + 96 + /* Future Additions and Incomplete Functions 97 + * ------------------------------------------------------------------------------------- 98 + */ 99 + int GetRoundedValue(fInt); /* Incomplete function - Useful only when Precision is lacking */ 100 + /* Let us say we have 2.126 but can only handle 2 decimal points. We could */ 101 + /* either chop of 6 and keep 2.12 or use this function to get 2.13, which is more accurate */ 102 + 103 + /* ------------------------------------------------------------------------------------- 104 + * TROUBLESHOOTING INFORMATION 105 + * ------------------------------------------------------------------------------------- 106 + * 1) ConvertToFraction - InputOutOfRangeException: Only accepts numbers smaller than MAX (default: 32767) 107 + * 2) fAdd - OutputOutOfRangeException: Output bigger than MAX (default: 32767) 108 + * 3) fMultiply - OutputOutOfRangeException: 109 + * 4) fGetSquare - OutputOutOfRangeException: 110 + * 5) fDivide - DivideByZeroException 111 + * 6) fSqrt - NegativeSquareRootException: Input cannot be a negative number 112 + */ 113 + 114 + /* ------------------------------------------------------------------------------------- 115 + * START OF CODE 116 + * ------------------------------------------------------------------------------------- 117 + */ 118 + fInt fExponential(fInt exponent) /*Can be used to calculate e^exponent*/ 119 + { 120 + uint32_t i; 121 + bool bNegated = false; 122 + 123 + fInt fPositiveOne = ConvertToFraction(1); 124 + fInt fZERO = ConvertToFraction(0); 125 + 126 + fInt lower_bound = Divide(78, 10000); 127 + fInt solution = fPositiveOne; /*Starting off with baseline of 1 */ 128 + fInt error_term; 129 + 130 + uint32_t k_array[11] = {55452, 27726, 13863, 6931, 4055, 2231, 1178, 606, 308, 155, 78}; 131 + uint32_t expk_array[11] = {2560000, 160000, 40000, 20000, 15000, 12500, 11250, 10625, 10313, 10156, 10078}; 132 + 133 + if (GreaterThan(fZERO, exponent)) { 134 + exponent = fNegate(exponent); 135 + bNegated = true; 136 + } 137 + 138 + while (GreaterThan(exponent, lower_bound)) { 139 + for (i = 0; i < 11; i++) { 140 + if (GreaterThan(exponent, GetScaledFraction(k_array[i], 10000))) { 141 + exponent = fSubtract(exponent, GetScaledFraction(k_array[i], 10000)); 142 + solution = fMultiply(solution, GetScaledFraction(expk_array[i], 10000)); 143 + } 144 + } 145 + } 146 + 147 + error_term = fAdd(fPositiveOne, exponent); 148 + 149 + solution = fMultiply(solution, error_term); 150 + 151 + if (bNegated) 152 + solution = fDivide(fPositiveOne, solution); 153 + 154 + return solution; 155 + } 156 + 157 + fInt fNaturalLog(fInt value) 158 + { 159 + uint32_t i; 160 + fInt upper_bound = Divide(8, 1000); 161 + fInt fNegativeOne = ConvertToFraction(-1); 162 + fInt solution = ConvertToFraction(0); /*Starting off with baseline of 0 */ 163 + fInt error_term; 164 + 165 + uint32_t k_array[10] = {160000, 40000, 20000, 15000, 12500, 11250, 10625, 10313, 10156, 10078}; 166 + uint32_t logk_array[10] = {27726, 13863, 6931, 4055, 2231, 1178, 606, 308, 155, 78}; 167 + 168 + while (GreaterThan(fAdd(value, fNegativeOne), upper_bound)) { 169 + for (i = 0; i < 10; i++) { 170 + if (GreaterThan(value, GetScaledFraction(k_array[i], 10000))) { 171 + value = fDivide(value, GetScaledFraction(k_array[i], 10000)); 172 + solution = fAdd(solution, GetScaledFraction(logk_array[i], 10000)); 173 + } 174 + } 175 + } 176 + 177 + error_term = fAdd(fNegativeOne, value); 178 + 179 + return (fAdd(solution, error_term)); 180 + } 181 + 182 + fInt fDecodeLinearFuse(uint32_t fuse_value, fInt f_min, fInt f_range, uint32_t bitlength) 183 + { 184 + fInt f_fuse_value = Convert_ULONG_ToFraction(fuse_value); 185 + fInt f_bit_max_value = Convert_ULONG_ToFraction((uPow(2, bitlength)) - 1); 186 + 187 + fInt f_decoded_value; 188 + 189 + f_decoded_value = fDivide(f_fuse_value, f_bit_max_value); 190 + f_decoded_value = fMultiply(f_decoded_value, f_range); 191 + f_decoded_value = fAdd(f_decoded_value, f_min); 192 + 193 + return f_decoded_value; 194 + } 195 + 196 + 197 + fInt fDecodeLogisticFuse(uint32_t fuse_value, fInt f_average, fInt f_range, uint32_t bitlength) 198 + { 199 + fInt f_fuse_value = Convert_ULONG_ToFraction(fuse_value); 200 + fInt f_bit_max_value = Convert_ULONG_ToFraction((uPow(2, bitlength)) - 1); 201 + 202 + fInt f_CONSTANT_NEG13 = ConvertToFraction(-13); 203 + fInt f_CONSTANT1 = ConvertToFraction(1); 204 + 205 + fInt f_decoded_value; 206 + 207 + f_decoded_value = fSubtract(fDivide(f_bit_max_value, f_fuse_value), f_CONSTANT1); 208 + f_decoded_value = fNaturalLog(f_decoded_value); 209 + f_decoded_value = fMultiply(f_decoded_value, fDivide(f_range, f_CONSTANT_NEG13)); 210 + f_decoded_value = fAdd(f_decoded_value, f_average); 211 + 212 + return f_decoded_value; 213 + } 214 + 215 + fInt fDecodeLeakageID (uint32_t leakageID_fuse, fInt ln_max_div_min, fInt f_min, uint32_t bitlength) 216 + { 217 + fInt fLeakage; 218 + fInt f_bit_max_value = Convert_ULONG_ToFraction((uPow(2, bitlength)) - 1); 219 + 220 + fLeakage = fMultiply(ln_max_div_min, Convert_ULONG_ToFraction(leakageID_fuse)); 221 + fLeakage = fDivide(fLeakage, f_bit_max_value); 222 + fLeakage = fExponential(fLeakage); 223 + fLeakage = fMultiply(fLeakage, f_min); 224 + 225 + return fLeakage; 226 + } 227 + 228 + fInt ConvertToFraction(int X) /*Add all range checking here. Is it possible to make fInt a private declaration? */ 229 + { 230 + fInt temp; 231 + 232 + if (X <= MAX) 233 + temp.full = (X << SHIFT_AMOUNT); 234 + else 235 + temp.full = 0; 236 + 237 + return temp; 238 + } 239 + 240 + fInt fNegate(fInt X) 241 + { 242 + fInt CONSTANT_NEGONE = ConvertToFraction(-1); 243 + return (fMultiply(X, CONSTANT_NEGONE)); 244 + } 245 + 246 + fInt Convert_ULONG_ToFraction(uint32_t X) 247 + { 248 + fInt temp; 249 + 250 + if (X <= MAX) 251 + temp.full = (X << SHIFT_AMOUNT); 252 + else 253 + temp.full = 0; 254 + 255 + return temp; 256 + } 257 + 258 + fInt GetScaledFraction(int X, int factor) 259 + { 260 + int times_shifted, factor_shifted; 261 + bool bNEGATED; 262 + fInt fValue; 263 + 264 + times_shifted = 0; 265 + factor_shifted = 0; 266 + bNEGATED = false; 267 + 268 + if (X < 0) { 269 + X = -1*X; 270 + bNEGATED = true; 271 + } 272 + 273 + if (factor < 0) { 274 + factor = -1*factor; 275 + 276 + bNEGATED = !bNEGATED; /*If bNEGATED = true due to X < 0, this will cover the case of negative cancelling negative */ 277 + } 278 + 279 + if ((X > MAX) || factor > MAX) { 280 + if ((X/factor) <= MAX) { 281 + while (X > MAX) { 282 + X = X >> 1; 283 + times_shifted++; 284 + } 285 + 286 + while (factor > MAX) { 287 + factor = factor >> 1; 288 + factor_shifted++; 289 + } 290 + } else { 291 + fValue.full = 0; 292 + return fValue; 293 + } 294 + } 295 + 296 + if (factor == 1) 297 + return (ConvertToFraction(X)); 298 + 299 + fValue = fDivide(ConvertToFraction(X * uPow(-1, bNEGATED)), ConvertToFraction(factor)); 300 + 301 + fValue.full = fValue.full << times_shifted; 302 + fValue.full = fValue.full >> factor_shifted; 303 + 304 + return fValue; 305 + } 306 + 307 + /* Addition using two fInts */ 308 + fInt fAdd (fInt X, fInt Y) 309 + { 310 + fInt Sum; 311 + 312 + Sum.full = X.full + Y.full; 313 + 314 + return Sum; 315 + } 316 + 317 + /* Addition using two fInts */ 318 + fInt fSubtract (fInt X, fInt Y) 319 + { 320 + fInt Difference; 321 + 322 + Difference.full = X.full - Y.full; 323 + 324 + return Difference; 325 + } 326 + 327 + bool Equal(fInt A, fInt B) 328 + { 329 + if (A.full == B.full) 330 + return true; 331 + else 332 + return false; 333 + } 334 + 335 + bool GreaterThan(fInt A, fInt B) 336 + { 337 + if (A.full > B.full) 338 + return true; 339 + else 340 + return false; 341 + } 342 + 343 + fInt fMultiply (fInt X, fInt Y) /* Uses 64-bit integers (int64_t) */ 344 + { 345 + fInt Product; 346 + int64_t tempProduct; 347 + bool X_LessThanOne, Y_LessThanOne; 348 + 349 + X_LessThanOne = (X.partial.real == 0 && X.partial.decimal != 0 && X.full >= 0); 350 + Y_LessThanOne = (Y.partial.real == 0 && Y.partial.decimal != 0 && Y.full >= 0); 351 + 352 + /*The following is for a very specific common case: Non-zero number with ONLY fractional portion*/ 353 + /* TEMPORARILY DISABLED - CAN BE USED TO IMPROVE PRECISION 354 + 355 + if (X_LessThanOne && Y_LessThanOne) { 356 + Product.full = X.full * Y.full; 357 + return Product 358 + }*/ 359 + 360 + tempProduct = ((int64_t)X.full) * ((int64_t)Y.full); /*Q(16,16)*Q(16,16) = Q(32, 32) - Might become a negative number! */ 361 + tempProduct = tempProduct >> 16; /*Remove lagging 16 bits - Will lose some precision from decimal; */ 362 + Product.full = (int)tempProduct; /*The int64_t will lose the leading 16 bits that were part of the integer portion */ 363 + 364 + return Product; 365 + } 366 + 367 + fInt fDivide (fInt X, fInt Y) 368 + { 369 + fInt fZERO, fQuotient; 370 + int64_t longlongX, longlongY; 371 + 372 + fZERO = ConvertToFraction(0); 373 + 374 + if (Equal(Y, fZERO)) 375 + return fZERO; 376 + 377 + longlongX = (int64_t)X.full; 378 + longlongY = (int64_t)Y.full; 379 + 380 + longlongX = longlongX << 16; /*Q(16,16) -> Q(32,32) */ 381 + 382 + do_div(longlongX, longlongY); /*Q(32,32) divided by Q(16,16) = Q(16,16) Back to original format */ 383 + 384 + fQuotient.full = (int)longlongX; 385 + return fQuotient; 386 + } 387 + 388 + int ConvertBackToInteger (fInt A) /*THIS is the function that will be used to check with the Golden settings table*/ 389 + { 390 + fInt fullNumber, scaledDecimal, scaledReal; 391 + 392 + scaledReal.full = GetReal(A) * uPow(10, PRECISION-1); /* DOUBLE CHECK THISSSS!!! */ 393 + 394 + scaledDecimal.full = uGetScaledDecimal(A); 395 + 396 + fullNumber = fAdd(scaledDecimal,scaledReal); 397 + 398 + return fullNumber.full; 399 + } 400 + 401 + fInt fGetSquare(fInt A) 402 + { 403 + return fMultiply(A,A); 404 + } 405 + 406 + /* x_new = x_old - (x_old^2 - C) / (2 * x_old) */ 407 + fInt fSqrt(fInt num) 408 + { 409 + fInt F_divide_Fprime, Fprime; 410 + fInt test; 411 + fInt twoShifted; 412 + int seed, counter, error; 413 + fInt x_new, x_old, C, y; 414 + 415 + fInt fZERO = ConvertToFraction(0); 416 + /* (0 > num) is the same as (num < 0), i.e., num is negative */ 417 + if (GreaterThan(fZERO, num) || Equal(fZERO, num)) 418 + return fZERO; 419 + 420 + C = num; 421 + 422 + if (num.partial.real > 3000) 423 + seed = 60; 424 + else if (num.partial.real > 1000) 425 + seed = 30; 426 + else if (num.partial.real > 100) 427 + seed = 10; 428 + else 429 + seed = 2; 430 + 431 + counter = 0; 432 + 433 + if (Equal(num, fZERO)) /*Square Root of Zero is zero */ 434 + return fZERO; 435 + 436 + twoShifted = ConvertToFraction(2); 437 + x_new = ConvertToFraction(seed); 438 + 439 + do { 440 + counter++; 441 + 442 + x_old.full = x_new.full; 443 + 444 + test = fGetSquare(x_old); /*1.75*1.75 is reverting back to 1 when shifted down */ 445 + y = fSubtract(test, C); /*y = f(x) = x^2 - C; */ 446 + 447 + Fprime = fMultiply(twoShifted, x_old); 448 + F_divide_Fprime = fDivide(y, Fprime); 449 + 450 + x_new = fSubtract(x_old, F_divide_Fprime); 451 + 452 + error = ConvertBackToInteger(x_new) - ConvertBackToInteger(x_old); 453 + 454 + if (counter > 20) /*20 is already way too many iterations. If we dont have an answer by then, we never will*/ 455 + return x_new; 456 + 457 + } while (uAbs(error) > 0); 458 + 459 + return (x_new); 460 + } 461 + 462 + void SolveQuadracticEqn(fInt A, fInt B, fInt C, fInt Roots[]) 463 + { 464 + fInt* pRoots = &Roots[0]; 465 + fInt temp, root_first, root_second; 466 + fInt f_CONSTANT10, f_CONSTANT100; 467 + 468 + f_CONSTANT100 = ConvertToFraction(100); 469 + f_CONSTANT10 = ConvertToFraction(10); 470 + 471 + while(GreaterThan(A, f_CONSTANT100) || GreaterThan(B, f_CONSTANT100) || GreaterThan(C, f_CONSTANT100)) { 472 + A = fDivide(A, f_CONSTANT10); 473 + B = fDivide(B, f_CONSTANT10); 474 + C = fDivide(C, f_CONSTANT10); 475 + } 476 + 477 + temp = fMultiply(ConvertToFraction(4), A); /* root = 4*A */ 478 + temp = fMultiply(temp, C); /* root = 4*A*C */ 479 + temp = fSubtract(fGetSquare(B), temp); /* root = b^2 - 4AC */ 480 + temp = fSqrt(temp); /*root = Sqrt (b^2 - 4AC); */ 481 + 482 + root_first = fSubtract(fNegate(B), temp); /* b - Sqrt(b^2 - 4AC) */ 483 + root_second = fAdd(fNegate(B), temp); /* b + Sqrt(b^2 - 4AC) */ 484 + 485 + root_first = fDivide(root_first, ConvertToFraction(2)); /* [b +- Sqrt(b^2 - 4AC)]/[2] */ 486 + root_first = fDivide(root_first, A); /*[b +- Sqrt(b^2 - 4AC)]/[2*A] */ 487 + 488 + root_second = fDivide(root_second, ConvertToFraction(2)); /* [b +- Sqrt(b^2 - 4AC)]/[2] */ 489 + root_second = fDivide(root_second, A); /*[b +- Sqrt(b^2 - 4AC)]/[2*A] */ 490 + 491 + *(pRoots + 0) = root_first; 492 + *(pRoots + 1) = root_second; 493 + } 494 + 495 + /* ----------------------------------------------------------------------------- 496 + * SUPPORT FUNCTIONS 497 + * ----------------------------------------------------------------------------- 498 + */ 499 + 500 + /* Addition using two normal ints - Temporary - Use only for testing purposes?. */ 501 + fInt Add (int X, int Y) 502 + { 503 + fInt A, B, Sum; 504 + 505 + A.full = (X << SHIFT_AMOUNT); 506 + B.full = (Y << SHIFT_AMOUNT); 507 + 508 + Sum.full = A.full + B.full; 509 + 510 + return Sum; 511 + } 512 + 513 + /* Conversion Functions */ 514 + int GetReal (fInt A) 515 + { 516 + return (A.full >> SHIFT_AMOUNT); 517 + } 518 + 519 + /* Temporarily Disabled */ 520 + int GetRoundedValue(fInt A) /*For now, round the 3rd decimal place */ 521 + { 522 + /* ROUNDING TEMPORARLY DISABLED 523 + int temp = A.full; 524 + 525 + int decimal_cutoff, decimal_mask = 0x000001FF; 526 + 527 + decimal_cutoff = temp & decimal_mask; 528 + 529 + 530 + if (decimal_cutoff > 0x147) { 531 + temp += 673; 532 + }*/ 533 + 534 + return ConvertBackToInteger(A)/10000; /*Temporary - in case this was used somewhere else */ 535 + } 536 + 537 + fInt Multiply (int X, int Y) 538 + { 539 + fInt A, B, Product; 540 + 541 + A.full = X << SHIFT_AMOUNT; 542 + B.full = Y << SHIFT_AMOUNT; 543 + 544 + Product = fMultiply(A, B); 545 + 546 + return Product; 547 + } 548 + fInt Divide (int X, int Y) 549 + { 550 + fInt A, B, Quotient; 551 + 552 + A.full = X << SHIFT_AMOUNT; 553 + B.full = Y << SHIFT_AMOUNT; 554 + 555 + Quotient = fDivide(A, B); 556 + 557 + return Quotient; 558 + } 559 + 560 + int uGetScaledDecimal (fInt A) /*Converts the fractional portion to whole integers - Costly function */ 561 + { 562 + int dec[PRECISION]; 563 + int i, scaledDecimal = 0, tmp = A.partial.decimal; 564 + 565 + for (i = 0; i < PRECISION; i++) { 566 + dec[i] = tmp / (1 << SHIFT_AMOUNT); 567 + 568 + tmp = tmp - ((1 << SHIFT_AMOUNT)*dec[i]); 569 + 570 + tmp *= 10; 571 + 572 + scaledDecimal = scaledDecimal + dec[i]*uPow(10, PRECISION - 1 -i); 573 + } 574 + 575 + return scaledDecimal; 576 + } 577 + 578 + int uPow(int base, int power) 579 + { 580 + if (power == 0) 581 + return 1; 582 + else 583 + return (base)*uPow(base, power - 1); 584 + } 585 + 586 + fInt fAbs(fInt A) 587 + { 588 + if (A.partial.real < 0) 589 + return (fMultiply(A, ConvertToFraction(-1))); 590 + else 591 + return A; 592 + } 593 + 594 + int uAbs(int X) 595 + { 596 + if (X < 0) 597 + return (X * -1); 598 + else 599 + return X; 600 + } 601 + 602 + fInt fRoundUpByStepSize(fInt A, fInt fStepSize, bool error_term) 603 + { 604 + fInt solution; 605 + 606 + solution = fDivide(A, fStepSize); 607 + solution.partial.decimal = 0; /*All fractional digits changes to 0 */ 608 + 609 + if (error_term) 610 + solution.partial.real += 1; /*Error term of 1 added */ 611 + 612 + solution = fMultiply(solution, fStepSize); 613 + solution = fAdd(solution, fStepSize); 614 + 615 + return solution; 616 + } 617 +
+412
drivers/gpu/drm/amd/powerplay/inc/fiji_ppsmc.h
··· 1 + /* 2 + * Copyright 2015 Advanced Micro Devices, Inc. 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a 5 + * copy of this software and associated documentation files (the "Software"), 6 + * to deal in the Software without restriction, including without limitation 7 + * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 + * and/or sell copies of the Software, and to permit persons to whom the 9 + * Software is furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 + * OTHER DEALINGS IN THE SOFTWARE. 21 + * 22 + */ 23 + 24 + 25 + #ifndef _FIJI_PP_SMC_H_ 26 + #define _FIJI_PP_SMC_H_ 27 + 28 + #pragma pack(push, 1) 29 + 30 + #define PPSMC_SWSTATE_FLAG_DC 0x01 31 + #define PPSMC_SWSTATE_FLAG_UVD 0x02 32 + #define PPSMC_SWSTATE_FLAG_VCE 0x04 33 + 34 + #define PPSMC_THERMAL_PROTECT_TYPE_INTERNAL 0x00 35 + #define PPSMC_THERMAL_PROTECT_TYPE_EXTERNAL 0x01 36 + #define PPSMC_THERMAL_PROTECT_TYPE_NONE 0xff 37 + 38 + #define PPSMC_SYSTEMFLAG_GPIO_DC 0x01 39 + #define PPSMC_SYSTEMFLAG_STEPVDDC 0x02 40 + #define PPSMC_SYSTEMFLAG_GDDR5 0x04 41 + 42 + #define PPSMC_SYSTEMFLAG_DISABLE_BABYSTEP 0x08 43 + 44 + #define PPSMC_SYSTEMFLAG_REGULATOR_HOT 0x10 45 + #define PPSMC_SYSTEMFLAG_REGULATOR_HOT_ANALOG 0x20 46 + 47 + #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_MASK 0x07 48 + #define PPSMC_EXTRAFLAGS_AC2DC_DONT_WAIT_FOR_VBLANK 0x08 49 + 50 + #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_GOTODPMLOWSTATE 0x00 51 + #define PPSMC_EXTRAFLAGS_AC2DC_ACTION_GOTOINITIALSTATE 0x01 52 + 53 + /* Defines for DPM 2.0 */ 54 + #define PPSMC_DPM2FLAGS_TDPCLMP 0x01 55 + #define PPSMC_DPM2FLAGS_PWRSHFT 0x02 56 + #define PPSMC_DPM2FLAGS_OCP 0x04 57 + 58 + /* Defines for display watermark level */ 59 + #define PPSMC_DISPLAY_WATERMARK_LOW 0 60 + #define PPSMC_DISPLAY_WATERMARK_HIGH 1 61 + 62 + /* In the HW performance level's state flags: */ 63 + #define PPSMC_STATEFLAG_AUTO_PULSE_SKIP 0x01 64 + #define PPSMC_STATEFLAG_POWERBOOST 0x02 65 + #define PPSMC_STATEFLAG_PSKIP_ON_TDP_FAULT 0x04 66 + #define PPSMC_STATEFLAG_POWERSHIFT 0x08 67 + #define PPSMC_STATEFLAG_SLOW_READ_MARGIN 0x10 68 + #define PPSMC_STATEFLAG_DEEPSLEEP_THROTTLE 0x20 69 + #define PPSMC_STATEFLAG_DEEPSLEEP_BYPASS 0x40 70 + 71 + /* Fan control algorithm: */ 72 + #define FDO_MODE_HARDWARE 0 73 + #define FDO_MODE_PIECE_WISE_LINEAR 1 74 + 75 + enum FAN_CONTROL { 76 + FAN_CONTROL_FUZZY, 77 + FAN_CONTROL_TABLE 78 + }; 79 + 80 + /* Gemini Modes*/ 81 + #define PPSMC_GeminiModeNone 0 /*Single GPU board*/ 82 + #define PPSMC_GeminiModeMaster 1 /*Master GPU on a Gemini board*/ 83 + #define PPSMC_GeminiModeSlave 2 /*Slave GPU on a Gemini board*/ 84 + 85 + 86 + /* Return codes for driver to SMC communication. */ 87 + #define PPSMC_Result_OK ((uint16_t)0x01) 88 + #define PPSMC_Result_NoMore ((uint16_t)0x02) 89 + 90 + #define PPSMC_Result_NotNow ((uint16_t)0x03) 91 + 92 + #define PPSMC_Result_Failed ((uint16_t)0xFF) 93 + #define PPSMC_Result_UnknownCmd ((uint16_t)0xFE) 94 + #define PPSMC_Result_UnknownVT ((uint16_t)0xFD) 95 + 96 + #define PPSMC_isERROR(x) ((uint16_t)0x80 & (x)) 97 + 98 + 99 + #define PPSMC_MSG_Halt ((uint16_t)0x10) 100 + #define PPSMC_MSG_Resume ((uint16_t)0x11) 101 + #define PPSMC_MSG_EnableDPMLevel ((uint16_t)0x12) 102 + #define PPSMC_MSG_ZeroLevelsDisabled ((uint16_t)0x13) 103 + #define PPSMC_MSG_OneLevelsDisabled ((uint16_t)0x14) 104 + #define PPSMC_MSG_TwoLevelsDisabled ((uint16_t)0x15) 105 + #define PPSMC_MSG_EnableThermalInterrupt ((uint16_t)0x16) 106 + #define PPSMC_MSG_RunningOnAC ((uint16_t)0x17) 107 + #define PPSMC_MSG_LevelUp ((uint16_t)0x18) 108 + #define PPSMC_MSG_LevelDown ((uint16_t)0x19) 109 + #define PPSMC_MSG_ResetDPMCounters ((uint16_t)0x1a) 110 + #define PPSMC_MSG_SwitchToSwState ((uint16_t)0x20) 111 + 112 + #define PPSMC_MSG_SwitchToSwStateLast ((uint16_t)0x3f) 113 + #define PPSMC_MSG_SwitchToInitialState ((uint16_t)0x40) 114 + #define PPSMC_MSG_NoForcedLevel ((uint16_t)0x41) 115 + #define PPSMC_MSG_ForceHigh ((uint16_t)0x42) 116 + #define PPSMC_MSG_ForceMediumOrHigh ((uint16_t)0x43) 117 + 118 + #define PPSMC_MSG_SwitchToMinimumPower ((uint16_t)0x51) 119 + #define PPSMC_MSG_ResumeFromMinimumPower ((uint16_t)0x52) 120 + #define PPSMC_MSG_EnableCac ((uint16_t)0x53) 121 + #define PPSMC_MSG_DisableCac ((uint16_t)0x54) 122 + #define PPSMC_DPMStateHistoryStart ((uint16_t)0x55) 123 + #define PPSMC_DPMStateHistoryStop ((uint16_t)0x56) 124 + #define PPSMC_CACHistoryStart ((uint16_t)0x57) 125 + #define PPSMC_CACHistoryStop ((uint16_t)0x58) 126 + #define PPSMC_TDPClampingActive ((uint16_t)0x59) 127 + #define PPSMC_TDPClampingInactive ((uint16_t)0x5A) 128 + #define PPSMC_StartFanControl ((uint16_t)0x5B) 129 + #define PPSMC_StopFanControl ((uint16_t)0x5C) 130 + #define PPSMC_NoDisplay ((uint16_t)0x5D) 131 + #define PPSMC_HasDisplay ((uint16_t)0x5E) 132 + #define PPSMC_MSG_UVDPowerOFF ((uint16_t)0x60) 133 + #define PPSMC_MSG_UVDPowerON ((uint16_t)0x61) 134 + #define PPSMC_MSG_EnableULV ((uint16_t)0x62) 135 + #define PPSMC_MSG_DisableULV ((uint16_t)0x63) 136 + #define PPSMC_MSG_EnterULV ((uint16_t)0x64) 137 + #define PPSMC_MSG_ExitULV ((uint16_t)0x65) 138 + #define PPSMC_PowerShiftActive ((uint16_t)0x6A) 139 + #define PPSMC_PowerShiftInactive ((uint16_t)0x6B) 140 + #define PPSMC_OCPActive ((uint16_t)0x6C) 141 + #define PPSMC_OCPInactive ((uint16_t)0x6D) 142 + #define PPSMC_CACLongTermAvgEnable ((uint16_t)0x6E) 143 + #define PPSMC_CACLongTermAvgDisable ((uint16_t)0x6F) 144 + #define PPSMC_MSG_InferredStateSweep_Start ((uint16_t)0x70) 145 + #define PPSMC_MSG_InferredStateSweep_Stop ((uint16_t)0x71) 146 + #define PPSMC_MSG_SwitchToLowestInfState ((uint16_t)0x72) 147 + #define PPSMC_MSG_SwitchToNonInfState ((uint16_t)0x73) 148 + #define PPSMC_MSG_AllStateSweep_Start ((uint16_t)0x74) 149 + #define PPSMC_MSG_AllStateSweep_Stop ((uint16_t)0x75) 150 + #define PPSMC_MSG_SwitchNextLowerInfState ((uint16_t)0x76) 151 + #define PPSMC_MSG_SwitchNextHigherInfState ((uint16_t)0x77) 152 + #define PPSMC_MSG_MclkRetrainingTest ((uint16_t)0x78) 153 + #define PPSMC_MSG_ForceTDPClamping ((uint16_t)0x79) 154 + #define PPSMC_MSG_CollectCAC_PowerCorreln ((uint16_t)0x7A) 155 + #define PPSMC_MSG_CollectCAC_WeightCalib ((uint16_t)0x7B) 156 + #define PPSMC_MSG_CollectCAC_SQonly ((uint16_t)0x7C) 157 + #define PPSMC_MSG_CollectCAC_TemperaturePwr ((uint16_t)0x7D) 158 + 159 + #define PPSMC_MSG_ExtremitiesTest_Start ((uint16_t)0x7E) 160 + #define PPSMC_MSG_ExtremitiesTest_Stop ((uint16_t)0x7F) 161 + #define PPSMC_FlushDataCache ((uint16_t)0x80) 162 + #define PPSMC_FlushInstrCache ((uint16_t)0x81) 163 + 164 + #define PPSMC_MSG_SetEnabledLevels ((uint16_t)0x82) 165 + #define PPSMC_MSG_SetForcedLevels ((uint16_t)0x83) 166 + 167 + #define PPSMC_MSG_ResetToDefaults ((uint16_t)0x84) 168 + 169 + #define PPSMC_MSG_SetForcedLevelsAndJump ((uint16_t)0x85) 170 + #define PPSMC_MSG_SetCACHistoryMode ((uint16_t)0x86) 171 + #define PPSMC_MSG_EnableDTE ((uint16_t)0x87) 172 + #define PPSMC_MSG_DisableDTE ((uint16_t)0x88) 173 + 174 + #define PPSMC_MSG_SmcSpaceSetAddress ((uint16_t)0x89) 175 + 176 + #define PPSMC_MSG_BREAK ((uint16_t)0xF8) 177 + 178 + /* Trinity Specific Messages*/ 179 + #define PPSMC_MSG_Test ((uint16_t) 0x100) 180 + #define PPSMC_MSG_DPM_Voltage_Pwrmgt ((uint16_t) 0x101) 181 + #define PPSMC_MSG_DPM_Config ((uint16_t) 0x102) 182 + #define PPSMC_MSG_PM_Controller_Start ((uint16_t) 0x103) 183 + #define PPSMC_MSG_DPM_ForceState ((uint16_t) 0x104) 184 + #define PPSMC_MSG_PG_PowerDownSIMD ((uint16_t) 0x105) 185 + #define PPSMC_MSG_PG_PowerUpSIMD ((uint16_t) 0x106) 186 + #define PPSMC_MSG_PM_Controller_Stop ((uint16_t) 0x107) 187 + #define PPSMC_MSG_PG_SIMD_Config ((uint16_t) 0x108) 188 + #define PPSMC_MSG_Voltage_Cntl_Enable ((uint16_t) 0x109) 189 + #define PPSMC_MSG_Thermal_Cntl_Enable ((uint16_t) 0x10a) 190 + #define PPSMC_MSG_Reset_Service ((uint16_t) 0x10b) 191 + #define PPSMC_MSG_VCEPowerOFF ((uint16_t) 0x10e) 192 + #define PPSMC_MSG_VCEPowerON ((uint16_t) 0x10f) 193 + #define PPSMC_MSG_DPM_Disable_VCE_HS ((uint16_t) 0x110) 194 + #define PPSMC_MSG_DPM_Enable_VCE_HS ((uint16_t) 0x111) 195 + #define PPSMC_MSG_DPM_N_LevelsDisabled ((uint16_t) 0x112) 196 + #define PPSMC_MSG_DCEPowerOFF ((uint16_t) 0x113) 197 + #define PPSMC_MSG_DCEPowerON ((uint16_t) 0x114) 198 + #define PPSMC_MSG_PCIE_DDIPowerDown ((uint16_t) 0x117) 199 + #define PPSMC_MSG_PCIE_DDIPowerUp ((uint16_t) 0x118) 200 + #define PPSMC_MSG_PCIE_CascadePLLPowerDown ((uint16_t) 0x119) 201 + #define PPSMC_MSG_PCIE_CascadePLLPowerUp ((uint16_t) 0x11a) 202 + #define PPSMC_MSG_SYSPLLPowerOff ((uint16_t) 0x11b) 203 + #define PPSMC_MSG_SYSPLLPowerOn ((uint16_t) 0x11c) 204 + #define PPSMC_MSG_DCE_RemoveVoltageAdjustment ((uint16_t) 0x11d) 205 + #define PPSMC_MSG_DCE_AllowVoltageAdjustment ((uint16_t) 0x11e) 206 + #define PPSMC_MSG_DISPLAYPHYStatusNotify ((uint16_t) 0x11f) 207 + #define PPSMC_MSG_EnableBAPM ((uint16_t) 0x120) 208 + #define PPSMC_MSG_DisableBAPM ((uint16_t) 0x121) 209 + #define PPSMC_MSG_Spmi_Enable ((uint16_t) 0x122) 210 + #define PPSMC_MSG_Spmi_Timer ((uint16_t) 0x123) 211 + #define PPSMC_MSG_LCLK_DPM_Config ((uint16_t) 0x124) 212 + #define PPSMC_MSG_VddNB_Request ((uint16_t) 0x125) 213 + #define PPSMC_MSG_PCIE_DDIPhyPowerDown ((uint32_t) 0x126) 214 + #define PPSMC_MSG_PCIE_DDIPhyPowerUp ((uint32_t) 0x127) 215 + #define PPSMC_MSG_MCLKDPM_Config ((uint16_t) 0x128) 216 + 217 + #define PPSMC_MSG_UVDDPM_Config ((uint16_t) 0x129) 218 + #define PPSMC_MSG_VCEDPM_Config ((uint16_t) 0x12A) 219 + #define PPSMC_MSG_ACPDPM_Config ((uint16_t) 0x12B) 220 + #define PPSMC_MSG_SAMUDPM_Config ((uint16_t) 0x12C) 221 + #define PPSMC_MSG_UVDDPM_SetEnabledMask ((uint16_t) 0x12D) 222 + #define PPSMC_MSG_VCEDPM_SetEnabledMask ((uint16_t) 0x12E) 223 + #define PPSMC_MSG_ACPDPM_SetEnabledMask ((uint16_t) 0x12F) 224 + #define PPSMC_MSG_SAMUDPM_SetEnabledMask ((uint16_t) 0x130) 225 + #define PPSMC_MSG_MCLKDPM_ForceState ((uint16_t) 0x131) 226 + #define PPSMC_MSG_MCLKDPM_NoForcedLevel ((uint16_t) 0x132) 227 + #define PPSMC_MSG_Thermal_Cntl_Disable ((uint16_t) 0x133) 228 + #define PPSMC_MSG_SetTDPLimit ((uint16_t) 0x134) 229 + #define PPSMC_MSG_Voltage_Cntl_Disable ((uint16_t) 0x135) 230 + #define PPSMC_MSG_PCIeDPM_Enable ((uint16_t) 0x136) 231 + #define PPSMC_MSG_ACPPowerOFF ((uint16_t) 0x137) 232 + #define PPSMC_MSG_ACPPowerON ((uint16_t) 0x138) 233 + #define PPSMC_MSG_SAMPowerOFF ((uint16_t) 0x139) 234 + #define PPSMC_MSG_SAMPowerON ((uint16_t) 0x13a) 235 + #define PPSMC_MSG_SDMAPowerOFF ((uint16_t) 0x13b) 236 + #define PPSMC_MSG_SDMAPowerON ((uint16_t) 0x13c) 237 + #define PPSMC_MSG_PCIeDPM_Disable ((uint16_t) 0x13d) 238 + #define PPSMC_MSG_IOMMUPowerOFF ((uint16_t) 0x13e) 239 + #define PPSMC_MSG_IOMMUPowerON ((uint16_t) 0x13f) 240 + #define PPSMC_MSG_NBDPM_Enable ((uint16_t) 0x140) 241 + #define PPSMC_MSG_NBDPM_Disable ((uint16_t) 0x141) 242 + #define PPSMC_MSG_NBDPM_ForceNominal ((uint16_t) 0x142) 243 + #define PPSMC_MSG_NBDPM_ForcePerformance ((uint16_t) 0x143) 244 + #define PPSMC_MSG_NBDPM_UnForce ((uint16_t) 0x144) 245 + #define PPSMC_MSG_SCLKDPM_SetEnabledMask ((uint16_t) 0x145) 246 + #define PPSMC_MSG_MCLKDPM_SetEnabledMask ((uint16_t) 0x146) 247 + #define PPSMC_MSG_PCIeDPM_ForceLevel ((uint16_t) 0x147) 248 + #define PPSMC_MSG_PCIeDPM_UnForceLevel ((uint16_t) 0x148) 249 + #define PPSMC_MSG_EnableACDCGPIOInterrupt ((uint16_t) 0x149) 250 + #define PPSMC_MSG_EnableVRHotGPIOInterrupt ((uint16_t) 0x14a) 251 + #define PPSMC_MSG_SwitchToAC ((uint16_t) 0x14b) 252 + 253 + #define PPSMC_MSG_XDMAPowerOFF ((uint16_t) 0x14c) 254 + #define PPSMC_MSG_XDMAPowerON ((uint16_t) 0x14d) 255 + 256 + #define PPSMC_MSG_DPM_Enable ((uint16_t) 0x14e) 257 + #define PPSMC_MSG_DPM_Disable ((uint16_t) 0x14f) 258 + #define PPSMC_MSG_MCLKDPM_Enable ((uint16_t) 0x150) 259 + #define PPSMC_MSG_MCLKDPM_Disable ((uint16_t) 0x151) 260 + #define PPSMC_MSG_LCLKDPM_Enable ((uint16_t) 0x152) 261 + #define PPSMC_MSG_LCLKDPM_Disable ((uint16_t) 0x153) 262 + #define PPSMC_MSG_UVDDPM_Enable ((uint16_t) 0x154) 263 + #define PPSMC_MSG_UVDDPM_Disable ((uint16_t) 0x155) 264 + #define PPSMC_MSG_SAMUDPM_Enable ((uint16_t) 0x156) 265 + #define PPSMC_MSG_SAMUDPM_Disable ((uint16_t) 0x157) 266 + #define PPSMC_MSG_ACPDPM_Enable ((uint16_t) 0x158) 267 + #define PPSMC_MSG_ACPDPM_Disable ((uint16_t) 0x159) 268 + #define PPSMC_MSG_VCEDPM_Enable ((uint16_t) 0x15a) 269 + #define PPSMC_MSG_VCEDPM_Disable ((uint16_t) 0x15b) 270 + #define PPSMC_MSG_LCLKDPM_SetEnabledMask ((uint16_t) 0x15c) 271 + #define PPSMC_MSG_DPM_FPS_Mode ((uint16_t) 0x15d) 272 + #define PPSMC_MSG_DPM_Activity_Mode ((uint16_t) 0x15e) 273 + #define PPSMC_MSG_VddC_Request ((uint16_t) 0x15f) 274 + #define PPSMC_MSG_MCLKDPM_GetEnabledMask ((uint16_t) 0x160) 275 + #define PPSMC_MSG_LCLKDPM_GetEnabledMask ((uint16_t) 0x161) 276 + #define PPSMC_MSG_SCLKDPM_GetEnabledMask ((uint16_t) 0x162) 277 + #define PPSMC_MSG_UVDDPM_GetEnabledMask ((uint16_t) 0x163) 278 + #define PPSMC_MSG_SAMUDPM_GetEnabledMask ((uint16_t) 0x164) 279 + #define PPSMC_MSG_ACPDPM_GetEnabledMask ((uint16_t) 0x165) 280 + #define PPSMC_MSG_VCEDPM_GetEnabledMask ((uint16_t) 0x166) 281 + #define PPSMC_MSG_PCIeDPM_SetEnabledMask ((uint16_t) 0x167) 282 + #define PPSMC_MSG_PCIeDPM_GetEnabledMask ((uint16_t) 0x168) 283 + #define PPSMC_MSG_TDCLimitEnable ((uint16_t) 0x169) 284 + #define PPSMC_MSG_TDCLimitDisable ((uint16_t) 0x16a) 285 + #define PPSMC_MSG_DPM_AutoRotate_Mode ((uint16_t) 0x16b) 286 + #define PPSMC_MSG_DISPCLK_FROM_FCH ((uint16_t) 0x16c) 287 + #define PPSMC_MSG_DISPCLK_FROM_DFS ((uint16_t) 0x16d) 288 + #define PPSMC_MSG_DPREFCLK_FROM_FCH ((uint16_t) 0x16e) 289 + #define PPSMC_MSG_DPREFCLK_FROM_DFS ((uint16_t) 0x16f) 290 + #define PPSMC_MSG_PmStatusLogStart ((uint16_t) 0x170) 291 + #define PPSMC_MSG_PmStatusLogSample ((uint16_t) 0x171) 292 + #define PPSMC_MSG_SCLK_AutoDPM_ON ((uint16_t) 0x172) 293 + #define PPSMC_MSG_MCLK_AutoDPM_ON ((uint16_t) 0x173) 294 + #define PPSMC_MSG_LCLK_AutoDPM_ON ((uint16_t) 0x174) 295 + #define PPSMC_MSG_UVD_AutoDPM_ON ((uint16_t) 0x175) 296 + #define PPSMC_MSG_SAMU_AutoDPM_ON ((uint16_t) 0x176) 297 + #define PPSMC_MSG_ACP_AutoDPM_ON ((uint16_t) 0x177) 298 + #define PPSMC_MSG_VCE_AutoDPM_ON ((uint16_t) 0x178) 299 + #define PPSMC_MSG_PCIe_AutoDPM_ON ((uint16_t) 0x179) 300 + #define PPSMC_MSG_MASTER_AutoDPM_ON ((uint16_t) 0x17a) 301 + #define PPSMC_MSG_MASTER_AutoDPM_OFF ((uint16_t) 0x17b) 302 + #define PPSMC_MSG_DYNAMICDISPPHYPOWER ((uint16_t) 0x17c) 303 + #define PPSMC_MSG_CAC_COLLECTION_ON ((uint16_t) 0x17d) 304 + #define PPSMC_MSG_CAC_COLLECTION_OFF ((uint16_t) 0x17e) 305 + #define PPSMC_MSG_CAC_CORRELATION_ON ((uint16_t) 0x17f) 306 + #define PPSMC_MSG_CAC_CORRELATION_OFF ((uint16_t) 0x180) 307 + #define PPSMC_MSG_PM_STATUS_TO_DRAM_ON ((uint16_t) 0x181) 308 + #define PPSMC_MSG_PM_STATUS_TO_DRAM_OFF ((uint16_t) 0x182) 309 + #define PPSMC_MSG_ALLOW_LOWSCLK_INTERRUPT ((uint16_t) 0x184) 310 + #define PPSMC_MSG_PkgPwrLimitEnable ((uint16_t) 0x185) 311 + #define PPSMC_MSG_PkgPwrLimitDisable ((uint16_t) 0x186) 312 + #define PPSMC_MSG_PkgPwrSetLimit ((uint16_t) 0x187) 313 + #define PPSMC_MSG_OverDriveSetTargetTdp ((uint16_t) 0x188) 314 + #define PPSMC_MSG_SCLKDPM_FreezeLevel ((uint16_t) 0x189) 315 + #define PPSMC_MSG_SCLKDPM_UnfreezeLevel ((uint16_t) 0x18A) 316 + #define PPSMC_MSG_MCLKDPM_FreezeLevel ((uint16_t) 0x18B) 317 + #define PPSMC_MSG_MCLKDPM_UnfreezeLevel ((uint16_t) 0x18C) 318 + #define PPSMC_MSG_START_DRAM_LOGGING ((uint16_t) 0x18D) 319 + #define PPSMC_MSG_STOP_DRAM_LOGGING ((uint16_t) 0x18E) 320 + #define PPSMC_MSG_MASTER_DeepSleep_ON ((uint16_t) 0x18F) 321 + #define PPSMC_MSG_MASTER_DeepSleep_OFF ((uint16_t) 0x190) 322 + #define PPSMC_MSG_Remove_DC_Clamp ((uint16_t) 0x191) 323 + #define PPSMC_MSG_DisableACDCGPIOInterrupt ((uint16_t) 0x192) 324 + #define PPSMC_MSG_OverrideVoltageControl_SetVddc ((uint16_t) 0x193) 325 + #define PPSMC_MSG_OverrideVoltageControl_SetVddci ((uint16_t) 0x194) 326 + #define PPSMC_MSG_SetVidOffset_1 ((uint16_t) 0x195) 327 + #define PPSMC_MSG_SetVidOffset_2 ((uint16_t) 0x207) 328 + #define PPSMC_MSG_GetVidOffset_1 ((uint16_t) 0x196) 329 + #define PPSMC_MSG_GetVidOffset_2 ((uint16_t) 0x208) 330 + #define PPSMC_MSG_THERMAL_OVERDRIVE_Enable ((uint16_t) 0x197) 331 + #define PPSMC_MSG_THERMAL_OVERDRIVE_Disable ((uint16_t) 0x198) 332 + #define PPSMC_MSG_SetTjMax ((uint16_t) 0x199) 333 + #define PPSMC_MSG_SetFanPwmMax ((uint16_t) 0x19A) 334 + #define PPSMC_MSG_WaitForMclkSwitchFinish ((uint16_t) 0x19B) 335 + #define PPSMC_MSG_ENABLE_THERMAL_DPM ((uint16_t) 0x19C) 336 + #define PPSMC_MSG_DISABLE_THERMAL_DPM ((uint16_t) 0x19D) 337 + 338 + #define PPSMC_MSG_API_GetSclkFrequency ((uint16_t) 0x200) 339 + #define PPSMC_MSG_API_GetMclkFrequency ((uint16_t) 0x201) 340 + #define PPSMC_MSG_API_GetSclkBusy ((uint16_t) 0x202) 341 + #define PPSMC_MSG_API_GetMclkBusy ((uint16_t) 0x203) 342 + #define PPSMC_MSG_API_GetAsicPower ((uint16_t) 0x204) 343 + #define PPSMC_MSG_SetFanRpmMax ((uint16_t) 0x205) 344 + #define PPSMC_MSG_SetFanSclkTarget ((uint16_t) 0x206) 345 + #define PPSMC_MSG_SetFanMinPwm ((uint16_t) 0x209) 346 + #define PPSMC_MSG_SetFanTemperatureTarget ((uint16_t) 0x20A) 347 + 348 + #define PPSMC_MSG_BACO_StartMonitor ((uint16_t) 0x240) 349 + #define PPSMC_MSG_BACO_Cancel ((uint16_t) 0x241) 350 + #define PPSMC_MSG_EnableVddGfx ((uint16_t) 0x242) 351 + #define PPSMC_MSG_DisableVddGfx ((uint16_t) 0x243) 352 + #define PPSMC_MSG_UcodeAddressLow ((uint16_t) 0x244) 353 + #define PPSMC_MSG_UcodeAddressHigh ((uint16_t) 0x245) 354 + #define PPSMC_MSG_UcodeLoadStatus ((uint16_t) 0x246) 355 + 356 + #define PPSMC_MSG_DRV_DRAM_ADDR_HI ((uint16_t) 0x250) 357 + #define PPSMC_MSG_DRV_DRAM_ADDR_LO ((uint16_t) 0x251) 358 + #define PPSMC_MSG_SMU_DRAM_ADDR_HI ((uint16_t) 0x252) 359 + #define PPSMC_MSG_SMU_DRAM_ADDR_LO ((uint16_t) 0x253) 360 + #define PPSMC_MSG_LoadUcodes ((uint16_t) 0x254) 361 + #define PPSMC_MSG_PowerStateNotify ((uint16_t) 0x255) 362 + #define PPSMC_MSG_COND_EXEC_DRAM_ADDR_HI ((uint16_t) 0x256) 363 + #define PPSMC_MSG_COND_EXEC_DRAM_ADDR_LO ((uint16_t) 0x257) 364 + #define PPSMC_MSG_VBIOS_DRAM_ADDR_HI ((uint16_t) 0x258) 365 + #define PPSMC_MSG_VBIOS_DRAM_ADDR_LO ((uint16_t) 0x259) 366 + #define PPSMC_MSG_LoadVBios ((uint16_t) 0x25A) 367 + #define PPSMC_MSG_GetUcodeVersion ((uint16_t) 0x25B) 368 + #define DMCUSMC_MSG_PSREntry ((uint16_t) 0x25C) 369 + #define DMCUSMC_MSG_PSRExit ((uint16_t) 0x25D) 370 + #define PPSMC_MSG_EnableClockGatingFeature ((uint16_t) 0x260) 371 + #define PPSMC_MSG_DisableClockGatingFeature ((uint16_t) 0x261) 372 + #define PPSMC_MSG_IsDeviceRunning ((uint16_t) 0x262) 373 + #define PPSMC_MSG_LoadMetaData ((uint16_t) 0x263) 374 + #define PPSMC_MSG_TMON_AutoCaliberate_Enable ((uint16_t) 0x264) 375 + #define PPSMC_MSG_TMON_AutoCaliberate_Disable ((uint16_t) 0x265) 376 + #define PPSMC_MSG_GetTelemetry1Slope ((uint16_t) 0x266) 377 + #define PPSMC_MSG_GetTelemetry1Offset ((uint16_t) 0x267) 378 + #define PPSMC_MSG_GetTelemetry2Slope ((uint16_t) 0x268) 379 + #define PPSMC_MSG_GetTelemetry2Offset ((uint16_t) 0x269) 380 + #define PPSMC_MSG_EnableAvfs ((uint16_t) 0x26A) 381 + #define PPSMC_MSG_DisableAvfs ((uint16_t) 0x26B) 382 + #define PPSMC_MSG_PerformBtc ((uint16_t) 0x26C) 383 + #define PPSMC_MSG_GetHbmCode ((uint16_t) 0x26D) 384 + #define PPSMC_MSG_GetVrVddcTemperature ((uint16_t) 0x26E) 385 + #define PPSMC_MSG_GetVrMvddTemperature ((uint16_t) 0x26F) 386 + #define PPSMC_MSG_GetLiquidTemperature ((uint16_t) 0x270) 387 + #define PPSMC_MSG_GetPlxTemperature ((uint16_t) 0x271) 388 + #define PPSMC_MSG_RequestI2CControl ((uint16_t) 0x272) 389 + #define PPSMC_MSG_ReleaseI2CControl ((uint16_t) 0x273) 390 + #define PPSMC_MSG_LedConfig ((uint16_t) 0x274) 391 + #define PPSMC_MSG_SetHbmFanCode ((uint16_t) 0x275) 392 + #define PPSMC_MSG_SetHbmThrottleCode ((uint16_t) 0x276) 393 + 394 + #define PPSMC_MSG_GetEnabledPsm ((uint16_t) 0x400) 395 + #define PPSMC_MSG_AgmStartPsm ((uint16_t) 0x401) 396 + #define PPSMC_MSG_AgmReadPsm ((uint16_t) 0x402) 397 + #define PPSMC_MSG_AgmResetPsm ((uint16_t) 0x403) 398 + #define PPSMC_MSG_ReadVftCell ((uint16_t) 0x404) 399 + 400 + /* AVFS Only - Remove Later */ 401 + #define PPSMC_MSG_VftTableIsValid ((uint16_t) 0x666) 402 + 403 + /* If the SMC firmware has an event status soft register this is what the individual bits mean.*/ 404 + #define PPSMC_EVENT_STATUS_THERMAL 0x00000001 405 + #define PPSMC_EVENT_STATUS_REGULATORHOT 0x00000002 406 + #define PPSMC_EVENT_STATUS_DC 0x00000004 407 + 408 + typedef uint16_t PPSMC_Msg; 409 + 410 + #pragma pack(pop) 411 + 412 + #endif
+10299
drivers/gpu/drm/amd/powerplay/inc/fiji_pwrvirus.h
··· 1 + /* 2 + * Copyright 2015 Advanced Micro Devices, Inc. 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a 5 + * copy of this software and associated documentation files (the "Software"), 6 + * to deal in the Software without restriction, including without limitation 7 + * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 + * and/or sell copies of the Software, and to permit persons to whom the 9 + * Software is furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 + * OTHER DEALINGS IN THE SOFTWARE. 21 + * 22 + */ 23 + #ifndef _FIJI_PWRVIRUS_H_ 24 + #define _FIJI_PWRVIRUS_H_ 25 + 26 + #define mmCP_HYP_MEC1_UCODE_ADDR 0xf81a 27 + #define mmCP_HYP_MEC1_UCODE_DATA 0xf81b 28 + #define mmCP_HYP_MEC2_UCODE_ADDR 0xf81c 29 + #define mmCP_HYP_MEC2_UCODE_DATA 0xf81d 30 + 31 + enum PWR_Command 32 + { 33 + PwrCmdNull = 0, 34 + PwrCmdWrite, 35 + PwrCmdEnd, 36 + PwrCmdMax 37 + }; 38 + typedef enum PWR_Command PWR_Command; 39 + 40 + struct PWR_Command_Table 41 + { 42 + PWR_Command command; 43 + ULONG data; 44 + ULONG reg; 45 + }; 46 + typedef struct PWR_Command_Table PWR_Command_Table; 47 + 48 + #define PWR_VIRUS_TABLE_SIZE 10243 49 + static PWR_Command_Table PwrVirusTable[PWR_VIRUS_TABLE_SIZE] = 50 + { 51 + { PwrCmdWrite, 0x100100b6, mmPCIE_INDEX }, 52 + { PwrCmdWrite, 0x00000000, mmPCIE_DATA }, 53 + { PwrCmdWrite, 0x100100b6, mmPCIE_INDEX }, 54 + { PwrCmdWrite, 0x0300078c, mmPCIE_DATA }, 55 + { PwrCmdWrite, 0x00000000, mmBIF_CLK_CTRL }, 56 + { PwrCmdWrite, 0x00000001, mmBIF_CLK_CTRL }, 57 + { PwrCmdWrite, 0x00000000, mmBIF_CLK_CTRL }, 58 + { PwrCmdWrite, 0x00000003, mmBIF_FB_EN }, 59 + { PwrCmdWrite, 0x00000000, mmBIF_FB_EN }, 60 + { PwrCmdWrite, 0x00000001, mmBIF_DOORBELL_APER_EN }, 61 + { PwrCmdWrite, 0x00000000, mmBIF_DOORBELL_APER_EN }, 62 + { PwrCmdWrite, 0x014000c0, mmPCIE_INDEX }, 63 + { PwrCmdWrite, 0x00000000, mmPCIE_DATA }, 64 + { PwrCmdWrite, 0x014000c0, mmPCIE_INDEX }, 65 + { PwrCmdWrite, 0x22000000, mmPCIE_DATA }, 66 + { PwrCmdWrite, 0x014000c0, mmPCIE_INDEX }, 67 + { PwrCmdWrite, 0x00000000, mmPCIE_DATA }, 68 + /* 69 + { PwrCmdWrite, 0x009f0090, mmMC_VM_FB_LOCATION }, 70 + { PwrCmdWrite, 0x00000000, mmMC_CITF_CNTL }, 71 + { PwrCmdWrite, 0x00000000, mmMC_VM_FB_LOCATION }, 72 + { PwrCmdWrite, 0x009f0090, mmMC_VM_FB_LOCATION }, 73 + { PwrCmdWrite, 0x00000000, mmMC_VM_FB_LOCATION }, 74 + { PwrCmdWrite, 0x009f0090, mmMC_VM_FB_LOCATION }, 75 + { PwrCmdWrite, 0x00000000, mmMC_VM_FB_OFFSET },*/ 76 + { PwrCmdWrite, 0x00000000, mmRLC_CSIB_ADDR_LO }, 77 + { PwrCmdWrite, 0x00000000, mmRLC_CSIB_ADDR_HI }, 78 + { PwrCmdWrite, 0x00000000, mmRLC_CSIB_LENGTH }, 79 + /* 80 + { PwrCmdWrite, 0x00000000, mmMC_VM_MX_L1_TLB_CNTL }, 81 + { PwrCmdWrite, 0x00000001, mmMC_VM_SYSTEM_APERTURE_LOW_ADDR }, 82 + { PwrCmdWrite, 0x00000000, mmMC_VM_SYSTEM_APERTURE_HIGH_ADDR }, 83 + { PwrCmdWrite, 0x00000000, mmMC_VM_FB_LOCATION }, 84 + { PwrCmdWrite, 0x009f0090, mmMC_VM_FB_LOCATION },*/ 85 + { PwrCmdWrite, 0x00000000, mmVM_CONTEXT0_CNTL }, 86 + { PwrCmdWrite, 0x00000000, mmVM_CONTEXT1_CNTL }, 87 + /* 88 + { PwrCmdWrite, 0x00000000, mmMC_VM_AGP_BASE }, 89 + { PwrCmdWrite, 0x00000002, mmMC_VM_AGP_BOT }, 90 + { PwrCmdWrite, 0x00000000, mmMC_VM_AGP_TOP },*/ 91 + { PwrCmdWrite, 0x04000000, mmATC_VM_APERTURE0_LOW_ADDR }, 92 + { PwrCmdWrite, 0x0400ff20, mmATC_VM_APERTURE0_HIGH_ADDR }, 93 + { PwrCmdWrite, 0x00000002, mmATC_VM_APERTURE0_CNTL }, 94 + { PwrCmdWrite, 0x0000ffff, mmATC_VM_APERTURE0_CNTL2 }, 95 + { PwrCmdWrite, 0x00000001, mmATC_VM_APERTURE1_LOW_ADDR }, 96 + { PwrCmdWrite, 0x00000000, mmATC_VM_APERTURE1_HIGH_ADDR }, 97 + { PwrCmdWrite, 0x00000000, mmATC_VM_APERTURE1_CNTL }, 98 + { PwrCmdWrite, 0x00000000, mmATC_VM_APERTURE1_CNTL2 }, 99 + //{ PwrCmdWrite, 0x00000000, mmMC_ARB_RAMCFG }, 100 + { PwrCmdWrite, 0x12011003, mmGB_ADDR_CONFIG }, 101 + { PwrCmdWrite, 0x00800010, mmGB_TILE_MODE0 }, 102 + { PwrCmdWrite, 0x00800810, mmGB_TILE_MODE1 }, 103 + { PwrCmdWrite, 0x00801010, mmGB_TILE_MODE2 }, 104 + { PwrCmdWrite, 0x00801810, mmGB_TILE_MODE3 }, 105 + { PwrCmdWrite, 0x00802810, mmGB_TILE_MODE4 }, 106 + { PwrCmdWrite, 0x00802808, mmGB_TILE_MODE5 }, 107 + { PwrCmdWrite, 0x00802814, mmGB_TILE_MODE6 }, 108 + { PwrCmdWrite, 0x00000000, mmGB_TILE_MODE7 }, 109 + { PwrCmdWrite, 0x00000004, mmGB_TILE_MODE8 }, 110 + { PwrCmdWrite, 0x02000008, mmGB_TILE_MODE9 }, 111 + { PwrCmdWrite, 0x02000010, mmGB_TILE_MODE10 }, 112 + { PwrCmdWrite, 0x06000014, mmGB_TILE_MODE11 }, 113 + { PwrCmdWrite, 0x00000000, mmGB_TILE_MODE12 }, 114 + { PwrCmdWrite, 0x02400008, mmGB_TILE_MODE13 }, 115 + { PwrCmdWrite, 0x02400010, mmGB_TILE_MODE14 }, 116 + { PwrCmdWrite, 0x02400030, mmGB_TILE_MODE15 }, 117 + { PwrCmdWrite, 0x06400014, mmGB_TILE_MODE16 }, 118 + { PwrCmdWrite, 0x00000000, mmGB_TILE_MODE17 }, 119 + { PwrCmdWrite, 0x0040000c, mmGB_TILE_MODE18 }, 120 + { PwrCmdWrite, 0x0100000c, mmGB_TILE_MODE19 }, 121 + { PwrCmdWrite, 0x0100001c, mmGB_TILE_MODE20 }, 122 + { PwrCmdWrite, 0x01000034, mmGB_TILE_MODE21 }, 123 + { PwrCmdWrite, 0x01000024, mmGB_TILE_MODE22 }, 124 + { PwrCmdWrite, 0x00000000, mmGB_TILE_MODE23 }, 125 + { PwrCmdWrite, 0x0040001c, mmGB_TILE_MODE24 }, 126 + { PwrCmdWrite, 0x01000020, mmGB_TILE_MODE25 }, 127 + { PwrCmdWrite, 0x01000038, mmGB_TILE_MODE26 }, 128 + { PwrCmdWrite, 0x02c00008, mmGB_TILE_MODE27 }, 129 + { PwrCmdWrite, 0x02c00010, mmGB_TILE_MODE28 }, 130 + { PwrCmdWrite, 0x06c00014, mmGB_TILE_MODE29 }, 131 + { PwrCmdWrite, 0x00000000, mmGB_TILE_MODE30 }, 132 + { PwrCmdWrite, 0x00000000, mmGB_TILE_MODE31 }, 133 + { PwrCmdWrite, 0x000000a8, mmGB_MACROTILE_MODE0 }, 134 + { PwrCmdWrite, 0x000000a4, mmGB_MACROTILE_MODE1 }, 135 + { PwrCmdWrite, 0x00000090, mmGB_MACROTILE_MODE2 }, 136 + { PwrCmdWrite, 0x00000090, mmGB_MACROTILE_MODE3 }, 137 + { PwrCmdWrite, 0x00000090, mmGB_MACROTILE_MODE4 }, 138 + { PwrCmdWrite, 0x00000090, mmGB_MACROTILE_MODE5 }, 139 + { PwrCmdWrite, 0x00000090, mmGB_MACROTILE_MODE6 }, 140 + { PwrCmdWrite, 0x00000000, mmGB_MACROTILE_MODE7 }, 141 + { PwrCmdWrite, 0x000000ee, mmGB_MACROTILE_MODE8 }, 142 + { PwrCmdWrite, 0x000000ea, mmGB_MACROTILE_MODE9 }, 143 + { PwrCmdWrite, 0x000000e9, mmGB_MACROTILE_MODE10 }, 144 + { PwrCmdWrite, 0x000000e5, mmGB_MACROTILE_MODE11 }, 145 + { PwrCmdWrite, 0x000000e4, mmGB_MACROTILE_MODE12 }, 146 + { PwrCmdWrite, 0x000000e0, mmGB_MACROTILE_MODE13 }, 147 + { PwrCmdWrite, 0x00000090, mmGB_MACROTILE_MODE14 }, 148 + { PwrCmdWrite, 0x00000000, mmGB_MACROTILE_MODE15 }, 149 + { PwrCmdWrite, 0x00900000, mmHDP_NONSURFACE_BASE }, 150 + { PwrCmdWrite, 0x00008000, mmHDP_NONSURFACE_INFO }, 151 + { PwrCmdWrite, 0x3fffffff, mmHDP_NONSURFACE_SIZE }, 152 + { PwrCmdWrite, 0x00000003, mmBIF_FB_EN }, 153 + //{ PwrCmdWrite, 0x00000000, mmMC_VM_FB_OFFSET }, 154 + { PwrCmdWrite, 0x00000000, mmSRBM_CNTL }, 155 + { PwrCmdWrite, 0x00020000, mmSRBM_CNTL }, 156 + { PwrCmdWrite, 0x80000000, mmATC_VMID0_PASID_MAPPING }, 157 + { PwrCmdWrite, 0x00000000, mmATC_VMID_PASID_MAPPING_UPDATE_STATUS }, 158 + { PwrCmdWrite, 0x00000000, mmRLC_CNTL }, 159 + { PwrCmdWrite, 0x00000000, mmRLC_CNTL }, 160 + { PwrCmdWrite, 0x00000000, mmRLC_CNTL }, 161 + { PwrCmdWrite, 0xe0000000, mmGRBM_GFX_INDEX }, 162 + { PwrCmdWrite, 0x00000000, mmCGTS_TCC_DISABLE }, 163 + { PwrCmdWrite, 0x00000000, mmTCP_ADDR_CONFIG }, 164 + { PwrCmdWrite, 0x000000ff, mmTCP_ADDR_CONFIG }, 165 + { PwrCmdWrite, 0x76543210, mmTCP_CHAN_STEER_LO }, 166 + { PwrCmdWrite, 0xfedcba98, mmTCP_CHAN_STEER_HI }, 167 + { PwrCmdWrite, 0x00000000, mmDB_DEBUG2 }, 168 + { PwrCmdWrite, 0x00000000, mmDB_DEBUG }, 169 + { PwrCmdWrite, 0x00002b16, mmCP_QUEUE_THRESHOLDS }, 170 + { PwrCmdWrite, 0x00006030, mmCP_MEQ_THRESHOLDS }, 171 + { PwrCmdWrite, 0x01000104, mmSPI_CONFIG_CNTL_1 }, 172 + { PwrCmdWrite, 0x98184020, mmPA_SC_FIFO_SIZE }, 173 + { PwrCmdWrite, 0x00000001, mmVGT_NUM_INSTANCES }, 174 + { PwrCmdWrite, 0x00000000, mmCP_PERFMON_CNTL }, 175 + { PwrCmdWrite, 0x01180000, mmSQ_CONFIG }, 176 + { PwrCmdWrite, 0x00000000, mmVGT_CACHE_INVALIDATION }, 177 + { PwrCmdWrite, 0x00000000, mmSQ_THREAD_TRACE_BASE }, 178 + { PwrCmdWrite, 0x0000df80, mmSQ_THREAD_TRACE_MASK }, 179 + { PwrCmdWrite, 0x02249249, mmSQ_THREAD_TRACE_MODE }, 180 + { PwrCmdWrite, 0x00000000, mmPA_SC_LINE_STIPPLE_STATE }, 181 + { PwrCmdWrite, 0x00000000, mmCB_PERFCOUNTER0_SELECT1 }, 182 + { PwrCmdWrite, 0x06000100, mmCGTT_VGT_CLK_CTRL }, 183 + { PwrCmdWrite, 0x00000007, mmPA_CL_ENHANCE }, 184 + { PwrCmdWrite, 0x00000001, mmPA_SC_ENHANCE }, 185 + { PwrCmdWrite, 0x00ffffff, mmPA_SC_FORCE_EOV_MAX_CNTS }, 186 + { PwrCmdWrite, 0x00000000, mmSRBM_GFX_CNTL }, 187 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 188 + { PwrCmdWrite, 0x00000010, mmSRBM_GFX_CNTL }, 189 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 190 + { PwrCmdWrite, 0x00000020, mmSRBM_GFX_CNTL }, 191 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 192 + { PwrCmdWrite, 0x00000030, mmSRBM_GFX_CNTL }, 193 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 194 + { PwrCmdWrite, 0x00000040, mmSRBM_GFX_CNTL }, 195 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 196 + { PwrCmdWrite, 0x00000050, mmSRBM_GFX_CNTL }, 197 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 198 + { PwrCmdWrite, 0x00000060, mmSRBM_GFX_CNTL }, 199 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 200 + { PwrCmdWrite, 0x00000070, mmSRBM_GFX_CNTL }, 201 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 202 + { PwrCmdWrite, 0x00000080, mmSRBM_GFX_CNTL }, 203 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 204 + { PwrCmdWrite, 0x00000090, mmSRBM_GFX_CNTL }, 205 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 206 + { PwrCmdWrite, 0x000000a0, mmSRBM_GFX_CNTL }, 207 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 208 + { PwrCmdWrite, 0x000000b0, mmSRBM_GFX_CNTL }, 209 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 210 + { PwrCmdWrite, 0x000000c0, mmSRBM_GFX_CNTL }, 211 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 212 + { PwrCmdWrite, 0x000000d0, mmSRBM_GFX_CNTL }, 213 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 214 + { PwrCmdWrite, 0x000000e0, mmSRBM_GFX_CNTL }, 215 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 216 + { PwrCmdWrite, 0x000000f0, mmSRBM_GFX_CNTL }, 217 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 218 + { PwrCmdWrite, 0x00000000, mmSRBM_GFX_CNTL }, 219 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 220 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 221 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 222 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 223 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 224 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 225 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 226 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 227 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 228 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 229 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 230 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 231 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 232 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 233 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 234 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 235 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 236 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 237 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 238 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 239 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 240 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 241 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 242 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 243 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 244 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 245 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 246 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 247 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 248 + { PwrCmdWrite, 0x00000000, mmRLC_PG_CNTL }, 249 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS2 }, 250 + { PwrCmdWrite, 0x15000000, mmCP_ME_CNTL }, 251 + { PwrCmdWrite, 0x50000000, mmCP_MEC_CNTL }, 252 + { PwrCmdWrite, 0x00000000, mmSRBM_GFX_CNTL }, 253 + { PwrCmdWrite, 0x0000000e, mmSH_MEM_APE1_BASE }, 254 + { PwrCmdWrite, 0x0000020d, mmSH_MEM_APE1_LIMIT }, 255 + { PwrCmdWrite, 0x00000000, mmSRBM_GFX_CNTL }, 256 + { PwrCmdWrite, 0x00000000, mmSRBM_GFX_CNTL }, 257 + { PwrCmdWrite, 0x00000000, mmSH_MEM_CONFIG }, 258 + { PwrCmdWrite, 0x00000320, mmSH_MEM_CONFIG }, 259 + { PwrCmdWrite, 0x00000000, mmSRBM_GFX_CNTL }, 260 + { PwrCmdWrite, 0x00000000, mmCP_RB_VMID }, 261 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 262 + { PwrCmdWrite, 0x00000000, mmRLC_CNTL }, 263 + { PwrCmdWrite, 0x00000000, mmRLC_CNTL }, 264 + { PwrCmdWrite, 0x00000000, mmRLC_SRM_CNTL }, 265 + { PwrCmdWrite, 0x00000002, mmRLC_SRM_CNTL }, 266 + { PwrCmdWrite, 0x00000000, mmCP_ME_CNTL }, 267 + { PwrCmdWrite, 0x15000000, mmCP_ME_CNTL }, 268 + { PwrCmdWrite, 0x00000000, mmCP_MEC_CNTL }, 269 + { PwrCmdWrite, 0x50000000, mmCP_MEC_CNTL }, 270 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 271 + { PwrCmdWrite, 0x0840800a, mmCP_RB0_CNTL }, 272 + { PwrCmdWrite, 0xf30fff0f, mmTCC_CTRL }, 273 + { PwrCmdWrite, 0x00000002, mmTCC_EXE_DISABLE }, 274 + { PwrCmdWrite, 0x000000ff, mmTCP_ADDR_CONFIG }, 275 + { PwrCmdWrite, 0x540ff000, mmCP_CPC_IC_BASE_LO }, 276 + { PwrCmdWrite, 0x000000b4, mmCP_CPC_IC_BASE_HI }, 277 + { PwrCmdWrite, 0x00010000, mmCP_HYP_MEC1_UCODE_ADDR }, 278 + { PwrCmdWrite, 0x00041b75, mmCP_HYP_MEC1_UCODE_DATA }, 279 + { PwrCmdWrite, 0x000710e8, mmCP_HYP_MEC1_UCODE_DATA }, 280 + { PwrCmdWrite, 0x000910dd, mmCP_HYP_MEC1_UCODE_DATA }, 281 + { PwrCmdWrite, 0x000a1081, mmCP_HYP_MEC1_UCODE_DATA }, 282 + { PwrCmdWrite, 0x000b016f, mmCP_HYP_MEC1_UCODE_DATA }, 283 + { PwrCmdWrite, 0x000c0e3c, mmCP_HYP_MEC1_UCODE_DATA }, 284 + { PwrCmdWrite, 0x000d10ec, mmCP_HYP_MEC1_UCODE_DATA }, 285 + { PwrCmdWrite, 0x000e0188, mmCP_HYP_MEC1_UCODE_DATA }, 286 + { PwrCmdWrite, 0x00101b5d, mmCP_HYP_MEC1_UCODE_DATA }, 287 + { PwrCmdWrite, 0x00150a6c, mmCP_HYP_MEC1_UCODE_DATA }, 288 + { PwrCmdWrite, 0x00170c5e, mmCP_HYP_MEC1_UCODE_DATA }, 289 + { PwrCmdWrite, 0x001d0c8c, mmCP_HYP_MEC1_UCODE_DATA }, 290 + { PwrCmdWrite, 0x001e0cfe, mmCP_HYP_MEC1_UCODE_DATA }, 291 + { PwrCmdWrite, 0x00221408, mmCP_HYP_MEC1_UCODE_DATA }, 292 + { PwrCmdWrite, 0x00370d7b, mmCP_HYP_MEC1_UCODE_DATA }, 293 + { PwrCmdWrite, 0x00390dcb, mmCP_HYP_MEC1_UCODE_DATA }, 294 + { PwrCmdWrite, 0x003c142f, mmCP_HYP_MEC1_UCODE_DATA }, 295 + { PwrCmdWrite, 0x003f0b27, mmCP_HYP_MEC1_UCODE_DATA }, 296 + { PwrCmdWrite, 0x00400e63, mmCP_HYP_MEC1_UCODE_DATA }, 297 + { PwrCmdWrite, 0x00500f62, mmCP_HYP_MEC1_UCODE_DATA }, 298 + { PwrCmdWrite, 0x00460fa7, mmCP_HYP_MEC1_UCODE_DATA }, 299 + { PwrCmdWrite, 0x00490fa7, mmCP_HYP_MEC1_UCODE_DATA }, 300 + { PwrCmdWrite, 0x005811d4, mmCP_HYP_MEC1_UCODE_DATA }, 301 + { PwrCmdWrite, 0x00680ad6, mmCP_HYP_MEC1_UCODE_DATA }, 302 + { PwrCmdWrite, 0x00760b00, mmCP_HYP_MEC1_UCODE_DATA }, 303 + { PwrCmdWrite, 0x00780b0c, mmCP_HYP_MEC1_UCODE_DATA }, 304 + { PwrCmdWrite, 0x00790af7, mmCP_HYP_MEC1_UCODE_DATA }, 305 + { PwrCmdWrite, 0x007d1aba, mmCP_HYP_MEC1_UCODE_DATA }, 306 + { PwrCmdWrite, 0x007e1abe, mmCP_HYP_MEC1_UCODE_DATA }, 307 + { PwrCmdWrite, 0x00591260, mmCP_HYP_MEC1_UCODE_DATA }, 308 + { PwrCmdWrite, 0x005a12fb, mmCP_HYP_MEC1_UCODE_DATA }, 309 + { PwrCmdWrite, 0x00861ac7, mmCP_HYP_MEC1_UCODE_DATA }, 310 + { PwrCmdWrite, 0x008c1b01, mmCP_HYP_MEC1_UCODE_DATA }, 311 + { PwrCmdWrite, 0x008d1b34, mmCP_HYP_MEC1_UCODE_DATA }, 312 + { PwrCmdWrite, 0x00a014b9, mmCP_HYP_MEC1_UCODE_DATA }, 313 + { PwrCmdWrite, 0x00a1152e, mmCP_HYP_MEC1_UCODE_DATA }, 314 + { PwrCmdWrite, 0x00a216fb, mmCP_HYP_MEC1_UCODE_DATA }, 315 + { PwrCmdWrite, 0x00a41890, mmCP_HYP_MEC1_UCODE_DATA }, 316 + { PwrCmdWrite, 0x00a31906, mmCP_HYP_MEC1_UCODE_DATA }, 317 + { PwrCmdWrite, 0x00a50b14, mmCP_HYP_MEC1_UCODE_DATA }, 318 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 319 + { PwrCmdWrite, 0x00621387, mmCP_HYP_MEC1_UCODE_DATA }, 320 + { PwrCmdWrite, 0x005c0b27, mmCP_HYP_MEC1_UCODE_DATA }, 321 + { PwrCmdWrite, 0x00160a75, mmCP_HYP_MEC1_UCODE_DATA }, 322 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 323 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 324 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 325 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 326 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 327 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 328 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 329 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 330 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 331 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 332 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 333 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 334 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 335 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 336 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 337 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 338 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 339 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 340 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 341 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 342 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 343 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 344 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 345 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 346 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 347 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 348 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 349 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 350 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 351 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 352 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 353 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 354 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 355 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 356 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 357 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 358 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 359 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 360 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 361 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 362 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 363 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 364 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 365 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 366 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 367 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 368 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 369 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 370 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 371 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 372 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 373 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC1_UCODE_DATA }, 374 + { PwrCmdWrite, 0x00010000, mmCP_HYP_MEC2_UCODE_ADDR }, 375 + { PwrCmdWrite, 0x00041b75, mmCP_HYP_MEC2_UCODE_DATA }, 376 + { PwrCmdWrite, 0x000710e8, mmCP_HYP_MEC2_UCODE_DATA }, 377 + { PwrCmdWrite, 0x000910dd, mmCP_HYP_MEC2_UCODE_DATA }, 378 + { PwrCmdWrite, 0x000a1081, mmCP_HYP_MEC2_UCODE_DATA }, 379 + { PwrCmdWrite, 0x000b016f, mmCP_HYP_MEC2_UCODE_DATA }, 380 + { PwrCmdWrite, 0x000c0e3c, mmCP_HYP_MEC2_UCODE_DATA }, 381 + { PwrCmdWrite, 0x000d10ec, mmCP_HYP_MEC2_UCODE_DATA }, 382 + { PwrCmdWrite, 0x000e0188, mmCP_HYP_MEC2_UCODE_DATA }, 383 + { PwrCmdWrite, 0x00101b5d, mmCP_HYP_MEC2_UCODE_DATA }, 384 + { PwrCmdWrite, 0x00150a6c, mmCP_HYP_MEC2_UCODE_DATA }, 385 + { PwrCmdWrite, 0x00170c5e, mmCP_HYP_MEC2_UCODE_DATA }, 386 + { PwrCmdWrite, 0x001d0c8c, mmCP_HYP_MEC2_UCODE_DATA }, 387 + { PwrCmdWrite, 0x001e0cfe, mmCP_HYP_MEC2_UCODE_DATA }, 388 + { PwrCmdWrite, 0x00221408, mmCP_HYP_MEC2_UCODE_DATA }, 389 + { PwrCmdWrite, 0x00370d7b, mmCP_HYP_MEC2_UCODE_DATA }, 390 + { PwrCmdWrite, 0x00390dcb, mmCP_HYP_MEC2_UCODE_DATA }, 391 + { PwrCmdWrite, 0x003c142f, mmCP_HYP_MEC2_UCODE_DATA }, 392 + { PwrCmdWrite, 0x003f0b27, mmCP_HYP_MEC2_UCODE_DATA }, 393 + { PwrCmdWrite, 0x00400e63, mmCP_HYP_MEC2_UCODE_DATA }, 394 + { PwrCmdWrite, 0x00500f62, mmCP_HYP_MEC2_UCODE_DATA }, 395 + { PwrCmdWrite, 0x00460fa7, mmCP_HYP_MEC2_UCODE_DATA }, 396 + { PwrCmdWrite, 0x00490fa7, mmCP_HYP_MEC2_UCODE_DATA }, 397 + { PwrCmdWrite, 0x005811d4, mmCP_HYP_MEC2_UCODE_DATA }, 398 + { PwrCmdWrite, 0x00680ad6, mmCP_HYP_MEC2_UCODE_DATA }, 399 + { PwrCmdWrite, 0x00760b00, mmCP_HYP_MEC2_UCODE_DATA }, 400 + { PwrCmdWrite, 0x00780b0c, mmCP_HYP_MEC2_UCODE_DATA }, 401 + { PwrCmdWrite, 0x00790af7, mmCP_HYP_MEC2_UCODE_DATA }, 402 + { PwrCmdWrite, 0x007d1aba, mmCP_HYP_MEC2_UCODE_DATA }, 403 + { PwrCmdWrite, 0x007e1abe, mmCP_HYP_MEC2_UCODE_DATA }, 404 + { PwrCmdWrite, 0x00591260, mmCP_HYP_MEC2_UCODE_DATA }, 405 + { PwrCmdWrite, 0x005a12fb, mmCP_HYP_MEC2_UCODE_DATA }, 406 + { PwrCmdWrite, 0x00861ac7, mmCP_HYP_MEC2_UCODE_DATA }, 407 + { PwrCmdWrite, 0x008c1b01, mmCP_HYP_MEC2_UCODE_DATA }, 408 + { PwrCmdWrite, 0x008d1b34, mmCP_HYP_MEC2_UCODE_DATA }, 409 + { PwrCmdWrite, 0x00a014b9, mmCP_HYP_MEC2_UCODE_DATA }, 410 + { PwrCmdWrite, 0x00a1152e, mmCP_HYP_MEC2_UCODE_DATA }, 411 + { PwrCmdWrite, 0x00a216fb, mmCP_HYP_MEC2_UCODE_DATA }, 412 + { PwrCmdWrite, 0x00a41890, mmCP_HYP_MEC2_UCODE_DATA }, 413 + { PwrCmdWrite, 0x00a31906, mmCP_HYP_MEC2_UCODE_DATA }, 414 + { PwrCmdWrite, 0x00a50b14, mmCP_HYP_MEC2_UCODE_DATA }, 415 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 416 + { PwrCmdWrite, 0x00621387, mmCP_HYP_MEC2_UCODE_DATA }, 417 + { PwrCmdWrite, 0x005c0b27, mmCP_HYP_MEC2_UCODE_DATA }, 418 + { PwrCmdWrite, 0x00160a75, mmCP_HYP_MEC2_UCODE_DATA }, 419 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 420 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 421 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 422 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 423 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 424 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 425 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 426 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 427 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 428 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 429 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 430 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 431 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 432 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 433 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 434 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 435 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 436 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 437 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 438 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 439 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 440 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 441 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 442 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 443 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 444 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 445 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 446 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 447 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 448 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 449 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 450 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 451 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 452 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 453 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 454 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 455 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 456 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 457 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 458 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 459 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 460 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 461 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 462 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 463 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 464 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 465 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 466 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 467 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 468 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 469 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 470 + { PwrCmdWrite, 0x000f016a, mmCP_HYP_MEC2_UCODE_DATA }, 471 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 472 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_ADDR_HI }, 473 + { PwrCmdWrite, 0x540fe800, mmCP_DFY_ADDR_LO }, 474 + { PwrCmdWrite, 0x7e000200, mmCP_DFY_DATA_0 }, 475 + { PwrCmdWrite, 0x7e020201, mmCP_DFY_DATA_0 }, 476 + { PwrCmdWrite, 0x7e040204, mmCP_DFY_DATA_0 }, 477 + { PwrCmdWrite, 0x7e060205, mmCP_DFY_DATA_0 }, 478 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 479 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 480 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 481 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 482 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 483 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 484 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 485 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 486 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 487 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 488 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 489 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 490 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 491 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 492 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 493 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 494 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 495 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 496 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 497 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 498 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 499 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 500 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 501 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 502 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 503 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 504 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 505 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 506 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 507 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 508 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 509 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 510 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 511 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 512 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 513 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 514 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 515 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 516 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 517 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 518 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 519 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 520 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 521 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 522 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 523 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 524 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 525 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 526 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 527 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 528 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 529 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 530 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 531 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 532 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 533 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 534 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 535 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 536 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 537 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 538 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 539 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 540 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 541 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 542 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 543 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 544 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 545 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 546 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 547 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 548 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 549 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 550 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 551 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 552 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 553 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 554 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 555 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 556 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 557 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 558 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 559 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 560 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 561 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 562 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 563 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 564 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 565 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 566 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 567 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 568 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 569 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 570 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 571 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 572 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 573 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 574 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 575 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 576 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 577 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 578 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 579 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 580 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 581 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 582 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 583 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 584 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 585 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 586 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 587 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 588 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 589 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 590 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 591 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 592 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 593 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 594 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 595 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 596 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 597 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 598 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 599 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 600 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 601 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 602 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 603 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 604 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 605 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 606 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 607 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 608 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 609 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 610 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 611 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 612 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 613 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 614 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 615 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 616 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 617 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 618 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 619 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 620 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 621 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 622 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 623 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 624 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 625 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 626 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 627 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 628 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 629 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 630 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 631 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 632 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 633 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 634 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 635 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 636 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 637 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 638 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 639 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 640 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 641 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 642 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 643 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 644 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 645 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 646 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 647 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 648 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 649 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 650 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 651 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 652 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 653 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 654 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 655 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 656 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 657 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 658 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 659 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 660 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 661 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 662 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 663 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 664 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 665 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 666 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 667 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 668 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 669 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 670 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 671 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 672 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 673 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 674 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 675 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 676 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 677 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 678 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 679 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 680 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 681 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 682 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 683 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 684 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 685 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 686 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 687 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 688 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 689 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 690 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 691 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 692 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 693 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 694 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 695 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 696 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 697 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 698 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 699 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 700 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 701 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 702 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 703 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 704 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 705 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 706 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 707 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 708 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 709 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 710 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 711 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 712 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 713 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 714 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 715 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 716 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 717 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 718 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 719 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 720 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 721 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 722 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 723 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 724 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 725 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 726 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 727 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 728 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 729 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 730 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 731 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 732 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 733 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 734 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 735 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 736 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 737 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 738 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 739 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 740 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 741 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 742 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 743 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 744 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 745 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 746 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 747 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 748 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 749 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 750 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 751 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 752 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 753 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 754 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 755 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 756 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 757 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 758 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 759 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 760 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 761 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 762 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 763 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 764 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 765 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 766 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 767 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 768 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 769 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 770 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 771 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 772 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 773 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 774 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 775 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 776 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 777 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 778 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 779 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 780 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 781 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 782 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 783 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 784 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 785 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 786 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 787 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 788 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 789 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 790 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 791 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 792 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 793 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 794 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 795 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 796 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 797 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 798 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 799 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 800 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 801 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 802 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 803 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 804 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 805 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 806 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 807 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 808 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 809 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 810 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 811 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 812 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 813 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 814 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 815 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 816 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 817 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 818 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 819 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 820 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 821 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 822 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 823 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 824 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 825 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 826 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 827 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 828 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 829 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 830 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 831 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 832 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 833 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 834 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 835 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 836 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 837 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 838 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 839 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 840 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 841 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 842 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 843 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 844 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 845 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 846 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 847 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 848 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 849 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 850 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 851 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 852 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 853 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 854 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 855 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 856 + { PwrCmdWrite, 0x0a080102, mmCP_DFY_DATA_0 }, 857 + { PwrCmdWrite, 0x0a0a0701, mmCP_DFY_DATA_0 }, 858 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 859 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 860 + { PwrCmdWrite, 0x0a080500, mmCP_DFY_DATA_0 }, 861 + { PwrCmdWrite, 0x0a0a0303, mmCP_DFY_DATA_0 }, 862 + { PwrCmdWrite, 0xbf810000, mmCP_DFY_DATA_0 }, 863 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 864 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 865 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 866 + { PwrCmdWrite, 0x00000005, mmCP_DFY_DATA_0 }, 867 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 868 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 869 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 870 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 871 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 872 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 873 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 874 + { PwrCmdWrite, 0x54106f00, mmCP_DFY_DATA_0 }, 875 + { PwrCmdWrite, 0x000400b4, mmCP_DFY_DATA_0 }, 876 + { PwrCmdWrite, 0x00004000, mmCP_DFY_DATA_0 }, 877 + { PwrCmdWrite, 0x00804fac, mmCP_DFY_DATA_0 }, 878 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 879 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 880 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 881 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 882 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 883 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 884 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 885 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 886 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 887 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 888 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 889 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 890 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 891 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_ADDR_HI }, 892 + { PwrCmdWrite, 0x540fef00, mmCP_DFY_ADDR_LO }, 893 + { PwrCmdWrite, 0xc0031502, mmCP_DFY_DATA_0 }, 894 + { PwrCmdWrite, 0x00001e00, mmCP_DFY_DATA_0 }, 895 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 896 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 897 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 898 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 899 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 900 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 901 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 902 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 903 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 904 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 905 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 906 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 907 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 908 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 909 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 910 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_ADDR_HI }, 911 + { PwrCmdWrite, 0x540ff000, mmCP_DFY_ADDR_LO }, 912 + { PwrCmdWrite, 0xc424000b, mmCP_DFY_DATA_0 }, 913 + { PwrCmdWrite, 0x80000145, mmCP_DFY_DATA_0 }, 914 + { PwrCmdWrite, 0x94800001, mmCP_DFY_DATA_0 }, 915 + { PwrCmdWrite, 0x94c00001, mmCP_DFY_DATA_0 }, 916 + { PwrCmdWrite, 0x95000001, mmCP_DFY_DATA_0 }, 917 + { PwrCmdWrite, 0x95400001, mmCP_DFY_DATA_0 }, 918 + { PwrCmdWrite, 0x95800001, mmCP_DFY_DATA_0 }, 919 + { PwrCmdWrite, 0xdc810000, mmCP_DFY_DATA_0 }, 920 + { PwrCmdWrite, 0xdcc10000, mmCP_DFY_DATA_0 }, 921 + { PwrCmdWrite, 0xdd010000, mmCP_DFY_DATA_0 }, 922 + { PwrCmdWrite, 0xdd410000, mmCP_DFY_DATA_0 }, 923 + { PwrCmdWrite, 0xdd810000, mmCP_DFY_DATA_0 }, 924 + { PwrCmdWrite, 0xc4080061, mmCP_DFY_DATA_0 }, 925 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 926 + { PwrCmdWrite, 0xd8000003, mmCP_DFY_DATA_0 }, 927 + { PwrCmdWrite, 0xc40c0001, mmCP_DFY_DATA_0 }, 928 + { PwrCmdWrite, 0x24ccffff, mmCP_DFY_DATA_0 }, 929 + { PwrCmdWrite, 0x3cd08000, mmCP_DFY_DATA_0 }, 930 + { PwrCmdWrite, 0x9500fffd, mmCP_DFY_DATA_0 }, 931 + { PwrCmdWrite, 0x1cd0ffcf, mmCP_DFY_DATA_0 }, 932 + { PwrCmdWrite, 0x7d018001, mmCP_DFY_DATA_0 }, 933 + { PwrCmdWrite, 0xc4140004, mmCP_DFY_DATA_0 }, 934 + { PwrCmdWrite, 0x050c0019, mmCP_DFY_DATA_0 }, 935 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 936 + { PwrCmdWrite, 0x84c00000, mmCP_DFY_DATA_0 }, 937 + { PwrCmdWrite, 0x80000023, mmCP_DFY_DATA_0 }, 938 + { PwrCmdWrite, 0x80000067, mmCP_DFY_DATA_0 }, 939 + { PwrCmdWrite, 0x8000006a, mmCP_DFY_DATA_0 }, 940 + { PwrCmdWrite, 0x8000006d, mmCP_DFY_DATA_0 }, 941 + { PwrCmdWrite, 0x80000079, mmCP_DFY_DATA_0 }, 942 + { PwrCmdWrite, 0x80000084, mmCP_DFY_DATA_0 }, 943 + { PwrCmdWrite, 0x8000008f, mmCP_DFY_DATA_0 }, 944 + { PwrCmdWrite, 0x80000099, mmCP_DFY_DATA_0 }, 945 + { PwrCmdWrite, 0x800000a0, mmCP_DFY_DATA_0 }, 946 + { PwrCmdWrite, 0x800000af, mmCP_DFY_DATA_0 }, 947 + { PwrCmdWrite, 0xd8400053, mmCP_DFY_DATA_0 }, 948 + { PwrCmdWrite, 0xc4080007, mmCP_DFY_DATA_0 }, 949 + { PwrCmdWrite, 0x388c0001, mmCP_DFY_DATA_0 }, 950 + { PwrCmdWrite, 0x08880002, mmCP_DFY_DATA_0 }, 951 + { PwrCmdWrite, 0x04100003, mmCP_DFY_DATA_0 }, 952 + { PwrCmdWrite, 0x94c00005, mmCP_DFY_DATA_0 }, 953 + { PwrCmdWrite, 0x98800003, mmCP_DFY_DATA_0 }, 954 + { PwrCmdWrite, 0x04100004, mmCP_DFY_DATA_0 }, 955 + { PwrCmdWrite, 0x8000002d, mmCP_DFY_DATA_0 }, 956 + { PwrCmdWrite, 0x04100005, mmCP_DFY_DATA_0 }, 957 + { PwrCmdWrite, 0x8c00003f, mmCP_DFY_DATA_0 }, 958 + { PwrCmdWrite, 0x8c000043, mmCP_DFY_DATA_0 }, 959 + { PwrCmdWrite, 0x28cc0000, mmCP_DFY_DATA_0 }, 960 + { PwrCmdWrite, 0xccc00050, mmCP_DFY_DATA_0 }, 961 + { PwrCmdWrite, 0x8c000055, mmCP_DFY_DATA_0 }, 962 + { PwrCmdWrite, 0x28080001, mmCP_DFY_DATA_0 }, 963 + { PwrCmdWrite, 0xcc000004, mmCP_DFY_DATA_0 }, 964 + { PwrCmdWrite, 0x7d808001, mmCP_DFY_DATA_0 }, 965 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 966 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 967 + { PwrCmdWrite, 0xcd400008, mmCP_DFY_DATA_0 }, 968 + { PwrCmdWrite, 0xdc180000, mmCP_DFY_DATA_0 }, 969 + { PwrCmdWrite, 0xdc140000, mmCP_DFY_DATA_0 }, 970 + { PwrCmdWrite, 0xdc100000, mmCP_DFY_DATA_0 }, 971 + { PwrCmdWrite, 0xdc0c0000, mmCP_DFY_DATA_0 }, 972 + { PwrCmdWrite, 0xcc800005, mmCP_DFY_DATA_0 }, 973 + { PwrCmdWrite, 0xdc080000, mmCP_DFY_DATA_0 }, 974 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 975 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 976 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 977 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 978 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 979 + { PwrCmdWrite, 0xcd013278, mmCP_DFY_DATA_0 }, 980 + { PwrCmdWrite, 0xc4113278, mmCP_DFY_DATA_0 }, 981 + { PwrCmdWrite, 0x95000001, mmCP_DFY_DATA_0 }, 982 + { PwrCmdWrite, 0x24cc0700, mmCP_DFY_DATA_0 }, 983 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 984 + { PwrCmdWrite, 0xc4113255, mmCP_DFY_DATA_0 }, 985 + { PwrCmdWrite, 0xcd01324f, mmCP_DFY_DATA_0 }, 986 + { PwrCmdWrite, 0xc4113254, mmCP_DFY_DATA_0 }, 987 + { PwrCmdWrite, 0x1d10ffdf, mmCP_DFY_DATA_0 }, 988 + { PwrCmdWrite, 0xcd013254, mmCP_DFY_DATA_0 }, 989 + { PwrCmdWrite, 0x10cc0014, mmCP_DFY_DATA_0 }, 990 + { PwrCmdWrite, 0x1d10c017, mmCP_DFY_DATA_0 }, 991 + { PwrCmdWrite, 0x7d0d000a, mmCP_DFY_DATA_0 }, 992 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 993 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 994 + { PwrCmdWrite, 0xcd0130b7, mmCP_DFY_DATA_0 }, 995 + { PwrCmdWrite, 0x14cc0010, mmCP_DFY_DATA_0 }, 996 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 997 + { PwrCmdWrite, 0xd9c00036, mmCP_DFY_DATA_0 }, 998 + { PwrCmdWrite, 0x8000005d, mmCP_DFY_DATA_0 }, 999 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1000 + { PwrCmdWrite, 0xc00c4000, mmCP_DFY_DATA_0 }, 1001 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 1002 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 1003 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 1004 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 1005 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 1006 + { PwrCmdWrite, 0x14d00011, mmCP_DFY_DATA_0 }, 1007 + { PwrCmdWrite, 0x9500fffe, mmCP_DFY_DATA_0 }, 1008 + { PwrCmdWrite, 0xdc030000, mmCP_DFY_DATA_0 }, 1009 + { PwrCmdWrite, 0xd800000c, mmCP_DFY_DATA_0 }, 1010 + { PwrCmdWrite, 0xd800000d, mmCP_DFY_DATA_0 }, 1011 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 1012 + { PwrCmdWrite, 0x94c01b10, mmCP_DFY_DATA_0 }, 1013 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1014 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1015 + { PwrCmdWrite, 0xc00e0080, mmCP_DFY_DATA_0 }, 1016 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 1017 + { PwrCmdWrite, 0x8000013b, mmCP_DFY_DATA_0 }, 1018 + { PwrCmdWrite, 0xc00e0800, mmCP_DFY_DATA_0 }, 1019 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 1020 + { PwrCmdWrite, 0x8000013b, mmCP_DFY_DATA_0 }, 1021 + { PwrCmdWrite, 0xd8400053, mmCP_DFY_DATA_0 }, 1022 + { PwrCmdWrite, 0x04100006, mmCP_DFY_DATA_0 }, 1023 + { PwrCmdWrite, 0x8c00003f, mmCP_DFY_DATA_0 }, 1024 + { PwrCmdWrite, 0x8c000043, mmCP_DFY_DATA_0 }, 1025 + { PwrCmdWrite, 0x28cc0000, mmCP_DFY_DATA_0 }, 1026 + { PwrCmdWrite, 0xccc00050, mmCP_DFY_DATA_0 }, 1027 + { PwrCmdWrite, 0x8c000055, mmCP_DFY_DATA_0 }, 1028 + { PwrCmdWrite, 0x280c0008, mmCP_DFY_DATA_0 }, 1029 + { PwrCmdWrite, 0xccc00052, mmCP_DFY_DATA_0 }, 1030 + { PwrCmdWrite, 0xd8000021, mmCP_DFY_DATA_0 }, 1031 + { PwrCmdWrite, 0x28180039, mmCP_DFY_DATA_0 }, 1032 + { PwrCmdWrite, 0x80000034, mmCP_DFY_DATA_0 }, 1033 + { PwrCmdWrite, 0xd8400053, mmCP_DFY_DATA_0 }, 1034 + { PwrCmdWrite, 0x04100007, mmCP_DFY_DATA_0 }, 1035 + { PwrCmdWrite, 0x8c00003f, mmCP_DFY_DATA_0 }, 1036 + { PwrCmdWrite, 0x8c000043, mmCP_DFY_DATA_0 }, 1037 + { PwrCmdWrite, 0x28cc0001, mmCP_DFY_DATA_0 }, 1038 + { PwrCmdWrite, 0xccc00050, mmCP_DFY_DATA_0 }, 1039 + { PwrCmdWrite, 0x8c000055, mmCP_DFY_DATA_0 }, 1040 + { PwrCmdWrite, 0x280c0010, mmCP_DFY_DATA_0 }, 1041 + { PwrCmdWrite, 0xccc00052, mmCP_DFY_DATA_0 }, 1042 + { PwrCmdWrite, 0x28180039, mmCP_DFY_DATA_0 }, 1043 + { PwrCmdWrite, 0x80000034, mmCP_DFY_DATA_0 }, 1044 + { PwrCmdWrite, 0xd8400053, mmCP_DFY_DATA_0 }, 1045 + { PwrCmdWrite, 0x04100008, mmCP_DFY_DATA_0 }, 1046 + { PwrCmdWrite, 0x8c00003f, mmCP_DFY_DATA_0 }, 1047 + { PwrCmdWrite, 0x8c000043, mmCP_DFY_DATA_0 }, 1048 + { PwrCmdWrite, 0x28cc0003, mmCP_DFY_DATA_0 }, 1049 + { PwrCmdWrite, 0xccc00050, mmCP_DFY_DATA_0 }, 1050 + { PwrCmdWrite, 0x8c000055, mmCP_DFY_DATA_0 }, 1051 + { PwrCmdWrite, 0x280c0020, mmCP_DFY_DATA_0 }, 1052 + { PwrCmdWrite, 0xccc00052, mmCP_DFY_DATA_0 }, 1053 + { PwrCmdWrite, 0x28180039, mmCP_DFY_DATA_0 }, 1054 + { PwrCmdWrite, 0x80000034, mmCP_DFY_DATA_0 }, 1055 + { PwrCmdWrite, 0xdc030000, mmCP_DFY_DATA_0 }, 1056 + { PwrCmdWrite, 0xd8000069, mmCP_DFY_DATA_0 }, 1057 + { PwrCmdWrite, 0x28080001, mmCP_DFY_DATA_0 }, 1058 + { PwrCmdWrite, 0xc428000d, mmCP_DFY_DATA_0 }, 1059 + { PwrCmdWrite, 0x7ca88004, mmCP_DFY_DATA_0 }, 1060 + { PwrCmdWrite, 0xcc800079, mmCP_DFY_DATA_0 }, 1061 + { PwrCmdWrite, 0x04280001, mmCP_DFY_DATA_0 }, 1062 + { PwrCmdWrite, 0xcc00006f, mmCP_DFY_DATA_0 }, 1063 + { PwrCmdWrite, 0x8000013b, mmCP_DFY_DATA_0 }, 1064 + { PwrCmdWrite, 0x80000034, mmCP_DFY_DATA_0 }, 1065 + { PwrCmdWrite, 0x04100010, mmCP_DFY_DATA_0 }, 1066 + { PwrCmdWrite, 0x8c00003f, mmCP_DFY_DATA_0 }, 1067 + { PwrCmdWrite, 0x8c000043, mmCP_DFY_DATA_0 }, 1068 + { PwrCmdWrite, 0xccc00078, mmCP_DFY_DATA_0 }, 1069 + { PwrCmdWrite, 0x8c000055, mmCP_DFY_DATA_0 }, 1070 + { PwrCmdWrite, 0x28180080, mmCP_DFY_DATA_0 }, 1071 + { PwrCmdWrite, 0x80000034, mmCP_DFY_DATA_0 }, 1072 + { PwrCmdWrite, 0x04100001, mmCP_DFY_DATA_0 }, 1073 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 1074 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 1075 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 1076 + { PwrCmdWrite, 0xcd013278, mmCP_DFY_DATA_0 }, 1077 + { PwrCmdWrite, 0xc4113278, mmCP_DFY_DATA_0 }, 1078 + { PwrCmdWrite, 0x95000001, mmCP_DFY_DATA_0 }, 1079 + { PwrCmdWrite, 0xc00c4000, mmCP_DFY_DATA_0 }, 1080 + { PwrCmdWrite, 0xc4113254, mmCP_DFY_DATA_0 }, 1081 + { PwrCmdWrite, 0x1d10c017, mmCP_DFY_DATA_0 }, 1082 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1083 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1084 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 1085 + { PwrCmdWrite, 0xcd0130b7, mmCP_DFY_DATA_0 }, 1086 + { PwrCmdWrite, 0x8000013b, mmCP_DFY_DATA_0 }, 1087 + { PwrCmdWrite, 0x95c00001, mmCP_DFY_DATA_0 }, 1088 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 1089 + { PwrCmdWrite, 0x96400001, mmCP_DFY_DATA_0 }, 1090 + { PwrCmdWrite, 0x96800001, mmCP_DFY_DATA_0 }, 1091 + { PwrCmdWrite, 0x96c00001, mmCP_DFY_DATA_0 }, 1092 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 1093 + { PwrCmdWrite, 0x97400001, mmCP_DFY_DATA_0 }, 1094 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 1095 + { PwrCmdWrite, 0x97c00001, mmCP_DFY_DATA_0 }, 1096 + { PwrCmdWrite, 0xdc810000, mmCP_DFY_DATA_0 }, 1097 + { PwrCmdWrite, 0xc40c000c, mmCP_DFY_DATA_0 }, 1098 + { PwrCmdWrite, 0xcd4c0380, mmCP_DFY_DATA_0 }, 1099 + { PwrCmdWrite, 0xcdcc0388, mmCP_DFY_DATA_0 }, 1100 + { PwrCmdWrite, 0x55dc0020, mmCP_DFY_DATA_0 }, 1101 + { PwrCmdWrite, 0xcdcc038c, mmCP_DFY_DATA_0 }, 1102 + { PwrCmdWrite, 0xce0c0390, mmCP_DFY_DATA_0 }, 1103 + { PwrCmdWrite, 0x56200020, mmCP_DFY_DATA_0 }, 1104 + { PwrCmdWrite, 0xce0c0394, mmCP_DFY_DATA_0 }, 1105 + { PwrCmdWrite, 0xce4c0398, mmCP_DFY_DATA_0 }, 1106 + { PwrCmdWrite, 0x56640020, mmCP_DFY_DATA_0 }, 1107 + { PwrCmdWrite, 0xce4c039c, mmCP_DFY_DATA_0 }, 1108 + { PwrCmdWrite, 0xce8c03a0, mmCP_DFY_DATA_0 }, 1109 + { PwrCmdWrite, 0x56a80020, mmCP_DFY_DATA_0 }, 1110 + { PwrCmdWrite, 0xce8c03a4, mmCP_DFY_DATA_0 }, 1111 + { PwrCmdWrite, 0xcecc03a8, mmCP_DFY_DATA_0 }, 1112 + { PwrCmdWrite, 0x56ec0020, mmCP_DFY_DATA_0 }, 1113 + { PwrCmdWrite, 0xcecc03ac, mmCP_DFY_DATA_0 }, 1114 + { PwrCmdWrite, 0xcf0c03b0, mmCP_DFY_DATA_0 }, 1115 + { PwrCmdWrite, 0x57300020, mmCP_DFY_DATA_0 }, 1116 + { PwrCmdWrite, 0xcf0c03b4, mmCP_DFY_DATA_0 }, 1117 + { PwrCmdWrite, 0xcf4c03b8, mmCP_DFY_DATA_0 }, 1118 + { PwrCmdWrite, 0x57740020, mmCP_DFY_DATA_0 }, 1119 + { PwrCmdWrite, 0xcf4c03bc, mmCP_DFY_DATA_0 }, 1120 + { PwrCmdWrite, 0xcf8c03c0, mmCP_DFY_DATA_0 }, 1121 + { PwrCmdWrite, 0x57b80020, mmCP_DFY_DATA_0 }, 1122 + { PwrCmdWrite, 0xcf8c03c4, mmCP_DFY_DATA_0 }, 1123 + { PwrCmdWrite, 0xcfcc03c8, mmCP_DFY_DATA_0 }, 1124 + { PwrCmdWrite, 0x57fc0020, mmCP_DFY_DATA_0 }, 1125 + { PwrCmdWrite, 0xcfcc03cc, mmCP_DFY_DATA_0 }, 1126 + { PwrCmdWrite, 0xd9000033, mmCP_DFY_DATA_0 }, 1127 + { PwrCmdWrite, 0xc41c0009, mmCP_DFY_DATA_0 }, 1128 + { PwrCmdWrite, 0x25dc0010, mmCP_DFY_DATA_0 }, 1129 + { PwrCmdWrite, 0x95c0fffe, mmCP_DFY_DATA_0 }, 1130 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1131 + { PwrCmdWrite, 0xc41c000c, mmCP_DFY_DATA_0 }, 1132 + { PwrCmdWrite, 0x05dc002f, mmCP_DFY_DATA_0 }, 1133 + { PwrCmdWrite, 0xcdc12009, mmCP_DFY_DATA_0 }, 1134 + { PwrCmdWrite, 0xc41d200a, mmCP_DFY_DATA_0 }, 1135 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1136 + { PwrCmdWrite, 0xcc012009, mmCP_DFY_DATA_0 }, 1137 + { PwrCmdWrite, 0xd9000034, mmCP_DFY_DATA_0 }, 1138 + { PwrCmdWrite, 0x25e01c00, mmCP_DFY_DATA_0 }, 1139 + { PwrCmdWrite, 0x12200013, mmCP_DFY_DATA_0 }, 1140 + { PwrCmdWrite, 0x25e40300, mmCP_DFY_DATA_0 }, 1141 + { PwrCmdWrite, 0x12640008, mmCP_DFY_DATA_0 }, 1142 + { PwrCmdWrite, 0x25e800c0, mmCP_DFY_DATA_0 }, 1143 + { PwrCmdWrite, 0x12a80002, mmCP_DFY_DATA_0 }, 1144 + { PwrCmdWrite, 0x25ec003f, mmCP_DFY_DATA_0 }, 1145 + { PwrCmdWrite, 0x7e25c00a, mmCP_DFY_DATA_0 }, 1146 + { PwrCmdWrite, 0x7eae400a, mmCP_DFY_DATA_0 }, 1147 + { PwrCmdWrite, 0x7de5c00a, mmCP_DFY_DATA_0 }, 1148 + { PwrCmdWrite, 0xddc10000, mmCP_DFY_DATA_0 }, 1149 + { PwrCmdWrite, 0xc02ee000, mmCP_DFY_DATA_0 }, 1150 + { PwrCmdWrite, 0xcec1c200, mmCP_DFY_DATA_0 }, 1151 + { PwrCmdWrite, 0xc40c005f, mmCP_DFY_DATA_0 }, 1152 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 1153 + { PwrCmdWrite, 0x24d000ff, mmCP_DFY_DATA_0 }, 1154 + { PwrCmdWrite, 0x31100006, mmCP_DFY_DATA_0 }, 1155 + { PwrCmdWrite, 0x9500007b, mmCP_DFY_DATA_0 }, 1156 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 1157 + { PwrCmdWrite, 0xdc1c0000, mmCP_DFY_DATA_0 }, 1158 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1159 + { PwrCmdWrite, 0xcdc1c200, mmCP_DFY_DATA_0 }, 1160 + { PwrCmdWrite, 0xc40c000c, mmCP_DFY_DATA_0 }, 1161 + { PwrCmdWrite, 0xc4df0388, mmCP_DFY_DATA_0 }, 1162 + { PwrCmdWrite, 0xc4d7038c, mmCP_DFY_DATA_0 }, 1163 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1164 + { PwrCmdWrite, 0x7d5dc01a, mmCP_DFY_DATA_0 }, 1165 + { PwrCmdWrite, 0xc4e30390, mmCP_DFY_DATA_0 }, 1166 + { PwrCmdWrite, 0xc4d70394, mmCP_DFY_DATA_0 }, 1167 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1168 + { PwrCmdWrite, 0x7d62001a, mmCP_DFY_DATA_0 }, 1169 + { PwrCmdWrite, 0xc4e70398, mmCP_DFY_DATA_0 }, 1170 + { PwrCmdWrite, 0xc4d7039c, mmCP_DFY_DATA_0 }, 1171 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1172 + { PwrCmdWrite, 0x7d66401a, mmCP_DFY_DATA_0 }, 1173 + { PwrCmdWrite, 0xc4eb03a0, mmCP_DFY_DATA_0 }, 1174 + { PwrCmdWrite, 0xc4d703a4, mmCP_DFY_DATA_0 }, 1175 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1176 + { PwrCmdWrite, 0x7d6a801a, mmCP_DFY_DATA_0 }, 1177 + { PwrCmdWrite, 0xc4ef03a8, mmCP_DFY_DATA_0 }, 1178 + { PwrCmdWrite, 0xc4d703ac, mmCP_DFY_DATA_0 }, 1179 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1180 + { PwrCmdWrite, 0x7d6ec01a, mmCP_DFY_DATA_0 }, 1181 + { PwrCmdWrite, 0xc4f303b0, mmCP_DFY_DATA_0 }, 1182 + { PwrCmdWrite, 0xc4d703b4, mmCP_DFY_DATA_0 }, 1183 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1184 + { PwrCmdWrite, 0x7d73001a, mmCP_DFY_DATA_0 }, 1185 + { PwrCmdWrite, 0xc4f703b8, mmCP_DFY_DATA_0 }, 1186 + { PwrCmdWrite, 0xc4d703bc, mmCP_DFY_DATA_0 }, 1187 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1188 + { PwrCmdWrite, 0x7d77401a, mmCP_DFY_DATA_0 }, 1189 + { PwrCmdWrite, 0xc4fb03c0, mmCP_DFY_DATA_0 }, 1190 + { PwrCmdWrite, 0xc4d703c4, mmCP_DFY_DATA_0 }, 1191 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1192 + { PwrCmdWrite, 0x7d7b801a, mmCP_DFY_DATA_0 }, 1193 + { PwrCmdWrite, 0xc4ff03c8, mmCP_DFY_DATA_0 }, 1194 + { PwrCmdWrite, 0xc4d703cc, mmCP_DFY_DATA_0 }, 1195 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 1196 + { PwrCmdWrite, 0x7d7fc01a, mmCP_DFY_DATA_0 }, 1197 + { PwrCmdWrite, 0xdc080000, mmCP_DFY_DATA_0 }, 1198 + { PwrCmdWrite, 0xcc800013, mmCP_DFY_DATA_0 }, 1199 + { PwrCmdWrite, 0xc4d70380, mmCP_DFY_DATA_0 }, 1200 + { PwrCmdWrite, 0xc4080001, mmCP_DFY_DATA_0 }, 1201 + { PwrCmdWrite, 0x1c88001c, mmCP_DFY_DATA_0 }, 1202 + { PwrCmdWrite, 0xcd400008, mmCP_DFY_DATA_0 }, 1203 + { PwrCmdWrite, 0xc40c0083, mmCP_DFY_DATA_0 }, 1204 + { PwrCmdWrite, 0x94c00010, mmCP_DFY_DATA_0 }, 1205 + { PwrCmdWrite, 0xdc0e0000, mmCP_DFY_DATA_0 }, 1206 + { PwrCmdWrite, 0x94c0000e, mmCP_DFY_DATA_0 }, 1207 + { PwrCmdWrite, 0xc40c0082, mmCP_DFY_DATA_0 }, 1208 + { PwrCmdWrite, 0x24d00001, mmCP_DFY_DATA_0 }, 1209 + { PwrCmdWrite, 0x9900000b, mmCP_DFY_DATA_0 }, 1210 + { PwrCmdWrite, 0x18cc01e3, mmCP_DFY_DATA_0 }, 1211 + { PwrCmdWrite, 0x3cd00004, mmCP_DFY_DATA_0 }, 1212 + { PwrCmdWrite, 0x95000008, mmCP_DFY_DATA_0 }, 1213 + { PwrCmdWrite, 0xc40c0085, mmCP_DFY_DATA_0 }, 1214 + { PwrCmdWrite, 0x18cc006a, mmCP_DFY_DATA_0 }, 1215 + { PwrCmdWrite, 0x98c00005, mmCP_DFY_DATA_0 }, 1216 + { PwrCmdWrite, 0xc40c0082, mmCP_DFY_DATA_0 }, 1217 + { PwrCmdWrite, 0x18cc01e3, mmCP_DFY_DATA_0 }, 1218 + { PwrCmdWrite, 0x3cd00004, mmCP_DFY_DATA_0 }, 1219 + { PwrCmdWrite, 0x9900fffa, mmCP_DFY_DATA_0 }, 1220 + { PwrCmdWrite, 0xdc180000, mmCP_DFY_DATA_0 }, 1221 + { PwrCmdWrite, 0xdc140000, mmCP_DFY_DATA_0 }, 1222 + { PwrCmdWrite, 0xdc100000, mmCP_DFY_DATA_0 }, 1223 + { PwrCmdWrite, 0xdc0c0000, mmCP_DFY_DATA_0 }, 1224 + { PwrCmdWrite, 0xcc800004, mmCP_DFY_DATA_0 }, 1225 + { PwrCmdWrite, 0xdc080000, mmCP_DFY_DATA_0 }, 1226 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1227 + { PwrCmdWrite, 0xc4080001, mmCP_DFY_DATA_0 }, 1228 + { PwrCmdWrite, 0x1c88001c, mmCP_DFY_DATA_0 }, 1229 + { PwrCmdWrite, 0xcd400008, mmCP_DFY_DATA_0 }, 1230 + { PwrCmdWrite, 0xdc180000, mmCP_DFY_DATA_0 }, 1231 + { PwrCmdWrite, 0xdc140000, mmCP_DFY_DATA_0 }, 1232 + { PwrCmdWrite, 0xdc100000, mmCP_DFY_DATA_0 }, 1233 + { PwrCmdWrite, 0xdc0c0000, mmCP_DFY_DATA_0 }, 1234 + { PwrCmdWrite, 0xcc800004, mmCP_DFY_DATA_0 }, 1235 + { PwrCmdWrite, 0xdc080000, mmCP_DFY_DATA_0 }, 1236 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1237 + { PwrCmdWrite, 0xd8400051, mmCP_DFY_DATA_0 }, 1238 + { PwrCmdWrite, 0xc428000c, mmCP_DFY_DATA_0 }, 1239 + { PwrCmdWrite, 0x04180018, mmCP_DFY_DATA_0 }, 1240 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 1241 + { PwrCmdWrite, 0x9a80001f, mmCP_DFY_DATA_0 }, 1242 + { PwrCmdWrite, 0x9a40001e, mmCP_DFY_DATA_0 }, 1243 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 1244 + { PwrCmdWrite, 0xc4293265, mmCP_DFY_DATA_0 }, 1245 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 1246 + { PwrCmdWrite, 0x1aac0027, mmCP_DFY_DATA_0 }, 1247 + { PwrCmdWrite, 0x2aa80080, mmCP_DFY_DATA_0 }, 1248 + { PwrCmdWrite, 0xce813265, mmCP_DFY_DATA_0 }, 1249 + { PwrCmdWrite, 0x9ac00017, mmCP_DFY_DATA_0 }, 1250 + { PwrCmdWrite, 0xd80002f1, mmCP_DFY_DATA_0 }, 1251 + { PwrCmdWrite, 0x04080002, mmCP_DFY_DATA_0 }, 1252 + { PwrCmdWrite, 0x08880001, mmCP_DFY_DATA_0 }, 1253 + { PwrCmdWrite, 0xd8080250, mmCP_DFY_DATA_0 }, 1254 + { PwrCmdWrite, 0xd8080258, mmCP_DFY_DATA_0 }, 1255 + { PwrCmdWrite, 0xd8080230, mmCP_DFY_DATA_0 }, 1256 + { PwrCmdWrite, 0xd8080238, mmCP_DFY_DATA_0 }, 1257 + { PwrCmdWrite, 0xd8080240, mmCP_DFY_DATA_0 }, 1258 + { PwrCmdWrite, 0xd8080248, mmCP_DFY_DATA_0 }, 1259 + { PwrCmdWrite, 0xd8080268, mmCP_DFY_DATA_0 }, 1260 + { PwrCmdWrite, 0xd8080270, mmCP_DFY_DATA_0 }, 1261 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 1262 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 1263 + { PwrCmdWrite, 0xd8080228, mmCP_DFY_DATA_0 }, 1264 + { PwrCmdWrite, 0xd8000367, mmCP_DFY_DATA_0 }, 1265 + { PwrCmdWrite, 0x9880fff3, mmCP_DFY_DATA_0 }, 1266 + { PwrCmdWrite, 0x04080010, mmCP_DFY_DATA_0 }, 1267 + { PwrCmdWrite, 0x08880001, mmCP_DFY_DATA_0 }, 1268 + { PwrCmdWrite, 0xd80c0309, mmCP_DFY_DATA_0 }, 1269 + { PwrCmdWrite, 0xd80c0319, mmCP_DFY_DATA_0 }, 1270 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 1271 + { PwrCmdWrite, 0x9880fffc, mmCP_DFY_DATA_0 }, 1272 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 1273 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 1274 + { PwrCmdWrite, 0xc00e0100, mmCP_DFY_DATA_0 }, 1275 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1276 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1277 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 1278 + { PwrCmdWrite, 0x8000016e, mmCP_DFY_DATA_0 }, 1279 + { PwrCmdWrite, 0xc4180032, mmCP_DFY_DATA_0 }, 1280 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 1281 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 1282 + { PwrCmdWrite, 0x95800001, mmCP_DFY_DATA_0 }, 1283 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 1284 + { PwrCmdWrite, 0x18d0003f, mmCP_DFY_DATA_0 }, 1285 + { PwrCmdWrite, 0x24d4001f, mmCP_DFY_DATA_0 }, 1286 + { PwrCmdWrite, 0x24d80001, mmCP_DFY_DATA_0 }, 1287 + { PwrCmdWrite, 0x155c0001, mmCP_DFY_DATA_0 }, 1288 + { PwrCmdWrite, 0x05e80180, mmCP_DFY_DATA_0 }, 1289 + { PwrCmdWrite, 0x9900000b, mmCP_DFY_DATA_0 }, 1290 + { PwrCmdWrite, 0x202c003d, mmCP_DFY_DATA_0 }, 1291 + { PwrCmdWrite, 0xcd800010, mmCP_DFY_DATA_0 }, 1292 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 1293 + { PwrCmdWrite, 0xc42d325b, mmCP_DFY_DATA_0 }, 1294 + { PwrCmdWrite, 0x96c00001, mmCP_DFY_DATA_0 }, 1295 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 1296 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 1297 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 1298 + { PwrCmdWrite, 0x80000bfc, mmCP_DFY_DATA_0 }, 1299 + { PwrCmdWrite, 0x800012e9, mmCP_DFY_DATA_0 }, 1300 + { PwrCmdWrite, 0xc4200007, mmCP_DFY_DATA_0 }, 1301 + { PwrCmdWrite, 0x0a200001, mmCP_DFY_DATA_0 }, 1302 + { PwrCmdWrite, 0xce000010, mmCP_DFY_DATA_0 }, 1303 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 1304 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 1305 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 1306 + { PwrCmdWrite, 0xc410001b, mmCP_DFY_DATA_0 }, 1307 + { PwrCmdWrite, 0xd8000032, mmCP_DFY_DATA_0 }, 1308 + { PwrCmdWrite, 0xd8000031, mmCP_DFY_DATA_0 }, 1309 + { PwrCmdWrite, 0x9900091a, mmCP_DFY_DATA_0 }, 1310 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 1311 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 1312 + { PwrCmdWrite, 0x24d000ff, mmCP_DFY_DATA_0 }, 1313 + { PwrCmdWrite, 0x05280196, mmCP_DFY_DATA_0 }, 1314 + { PwrCmdWrite, 0x18d4fe04, mmCP_DFY_DATA_0 }, 1315 + { PwrCmdWrite, 0x29540008, mmCP_DFY_DATA_0 }, 1316 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 1317 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 1318 + { PwrCmdWrite, 0x800001b4, mmCP_DFY_DATA_0 }, 1319 + { PwrCmdWrite, 0x8000032b, mmCP_DFY_DATA_0 }, 1320 + { PwrCmdWrite, 0x80000350, mmCP_DFY_DATA_0 }, 1321 + { PwrCmdWrite, 0x80000352, mmCP_DFY_DATA_0 }, 1322 + { PwrCmdWrite, 0x8000035f, mmCP_DFY_DATA_0 }, 1323 + { PwrCmdWrite, 0x80000701, mmCP_DFY_DATA_0 }, 1324 + { PwrCmdWrite, 0x8000047c, mmCP_DFY_DATA_0 }, 1325 + { PwrCmdWrite, 0x8000019f, mmCP_DFY_DATA_0 }, 1326 + { PwrCmdWrite, 0x80000800, mmCP_DFY_DATA_0 }, 1327 + { PwrCmdWrite, 0xc419325b, mmCP_DFY_DATA_0 }, 1328 + { PwrCmdWrite, 0x1d98001f, mmCP_DFY_DATA_0 }, 1329 + { PwrCmdWrite, 0xcd81325b, mmCP_DFY_DATA_0 }, 1330 + { PwrCmdWrite, 0x8c00003f, mmCP_DFY_DATA_0 }, 1331 + { PwrCmdWrite, 0xc4140004, mmCP_DFY_DATA_0 }, 1332 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1333 + { PwrCmdWrite, 0x04100002, mmCP_DFY_DATA_0 }, 1334 + { PwrCmdWrite, 0x8c000043, mmCP_DFY_DATA_0 }, 1335 + { PwrCmdWrite, 0x28cc0002, mmCP_DFY_DATA_0 }, 1336 + { PwrCmdWrite, 0xccc00050, mmCP_DFY_DATA_0 }, 1337 + { PwrCmdWrite, 0xc43c0044, mmCP_DFY_DATA_0 }, 1338 + { PwrCmdWrite, 0x27fc0003, mmCP_DFY_DATA_0 }, 1339 + { PwrCmdWrite, 0x9bc00002, mmCP_DFY_DATA_0 }, 1340 + { PwrCmdWrite, 0x97c00006, mmCP_DFY_DATA_0 }, 1341 + { PwrCmdWrite, 0xc00c4000, mmCP_DFY_DATA_0 }, 1342 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 1343 + { PwrCmdWrite, 0x8c000055, mmCP_DFY_DATA_0 }, 1344 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1345 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 1346 + { PwrCmdWrite, 0xcd400008, mmCP_DFY_DATA_0 }, 1347 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1348 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1349 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 1350 + { PwrCmdWrite, 0x7d40c001, mmCP_DFY_DATA_0 }, 1351 + { PwrCmdWrite, 0xd8400028, mmCP_DFY_DATA_0 }, 1352 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 1353 + { PwrCmdWrite, 0xd9400036, mmCP_DFY_DATA_0 }, 1354 + { PwrCmdWrite, 0xc4193256, mmCP_DFY_DATA_0 }, 1355 + { PwrCmdWrite, 0xc41d3254, mmCP_DFY_DATA_0 }, 1356 + { PwrCmdWrite, 0x15540008, mmCP_DFY_DATA_0 }, 1357 + { PwrCmdWrite, 0xcd400009, mmCP_DFY_DATA_0 }, 1358 + { PwrCmdWrite, 0xcd40005b, mmCP_DFY_DATA_0 }, 1359 + { PwrCmdWrite, 0xcd40005e, mmCP_DFY_DATA_0 }, 1360 + { PwrCmdWrite, 0xcd40005d, mmCP_DFY_DATA_0 }, 1361 + { PwrCmdWrite, 0xd840006d, mmCP_DFY_DATA_0 }, 1362 + { PwrCmdWrite, 0xc421325a, mmCP_DFY_DATA_0 }, 1363 + { PwrCmdWrite, 0xc42d3249, mmCP_DFY_DATA_0 }, 1364 + { PwrCmdWrite, 0x11540015, mmCP_DFY_DATA_0 }, 1365 + { PwrCmdWrite, 0x19a4003c, mmCP_DFY_DATA_0 }, 1366 + { PwrCmdWrite, 0x1998003f, mmCP_DFY_DATA_0 }, 1367 + { PwrCmdWrite, 0x1af0007d, mmCP_DFY_DATA_0 }, 1368 + { PwrCmdWrite, 0x11dc000b, mmCP_DFY_DATA_0 }, 1369 + { PwrCmdWrite, 0x1264001f, mmCP_DFY_DATA_0 }, 1370 + { PwrCmdWrite, 0x15dc000d, mmCP_DFY_DATA_0 }, 1371 + { PwrCmdWrite, 0x7d65400a, mmCP_DFY_DATA_0 }, 1372 + { PwrCmdWrite, 0x13300018, mmCP_DFY_DATA_0 }, 1373 + { PwrCmdWrite, 0x1a38003f, mmCP_DFY_DATA_0 }, 1374 + { PwrCmdWrite, 0x7dd5c00a, mmCP_DFY_DATA_0 }, 1375 + { PwrCmdWrite, 0x7df1c00a, mmCP_DFY_DATA_0 }, 1376 + { PwrCmdWrite, 0xcd800045, mmCP_DFY_DATA_0 }, 1377 + { PwrCmdWrite, 0xcdc00100, mmCP_DFY_DATA_0 }, 1378 + { PwrCmdWrite, 0xc411326a, mmCP_DFY_DATA_0 }, 1379 + { PwrCmdWrite, 0xc415326b, mmCP_DFY_DATA_0 }, 1380 + { PwrCmdWrite, 0xc419326c, mmCP_DFY_DATA_0 }, 1381 + { PwrCmdWrite, 0xc41d326d, mmCP_DFY_DATA_0 }, 1382 + { PwrCmdWrite, 0xc425326e, mmCP_DFY_DATA_0 }, 1383 + { PwrCmdWrite, 0xc4293279, mmCP_DFY_DATA_0 }, 1384 + { PwrCmdWrite, 0xce800077, mmCP_DFY_DATA_0 }, 1385 + { PwrCmdWrite, 0xcd000056, mmCP_DFY_DATA_0 }, 1386 + { PwrCmdWrite, 0xcd400057, mmCP_DFY_DATA_0 }, 1387 + { PwrCmdWrite, 0xcd800058, mmCP_DFY_DATA_0 }, 1388 + { PwrCmdWrite, 0xcdc00059, mmCP_DFY_DATA_0 }, 1389 + { PwrCmdWrite, 0xc4193265, mmCP_DFY_DATA_0 }, 1390 + { PwrCmdWrite, 0x259c8000, mmCP_DFY_DATA_0 }, 1391 + { PwrCmdWrite, 0x99c00004, mmCP_DFY_DATA_0 }, 1392 + { PwrCmdWrite, 0xce40005a, mmCP_DFY_DATA_0 }, 1393 + { PwrCmdWrite, 0x29988000, mmCP_DFY_DATA_0 }, 1394 + { PwrCmdWrite, 0xcd813265, mmCP_DFY_DATA_0 }, 1395 + { PwrCmdWrite, 0xc4113248, mmCP_DFY_DATA_0 }, 1396 + { PwrCmdWrite, 0x2510000f, mmCP_DFY_DATA_0 }, 1397 + { PwrCmdWrite, 0xcd000073, mmCP_DFY_DATA_0 }, 1398 + { PwrCmdWrite, 0xc418000d, mmCP_DFY_DATA_0 }, 1399 + { PwrCmdWrite, 0xc411326f, mmCP_DFY_DATA_0 }, 1400 + { PwrCmdWrite, 0x17300019, mmCP_DFY_DATA_0 }, 1401 + { PwrCmdWrite, 0x97000009, mmCP_DFY_DATA_0 }, 1402 + { PwrCmdWrite, 0x25140fff, mmCP_DFY_DATA_0 }, 1403 + { PwrCmdWrite, 0x95400007, mmCP_DFY_DATA_0 }, 1404 + { PwrCmdWrite, 0xd800003a, mmCP_DFY_DATA_0 }, 1405 + { PwrCmdWrite, 0x8c001b6d, mmCP_DFY_DATA_0 }, 1406 + { PwrCmdWrite, 0xc4153279, mmCP_DFY_DATA_0 }, 1407 + { PwrCmdWrite, 0xcd400077, mmCP_DFY_DATA_0 }, 1408 + { PwrCmdWrite, 0xcd00005f, mmCP_DFY_DATA_0 }, 1409 + { PwrCmdWrite, 0xd8000075, mmCP_DFY_DATA_0 }, 1410 + { PwrCmdWrite, 0x26f00001, mmCP_DFY_DATA_0 }, 1411 + { PwrCmdWrite, 0x15100010, mmCP_DFY_DATA_0 }, 1412 + { PwrCmdWrite, 0x7d190004, mmCP_DFY_DATA_0 }, 1413 + { PwrCmdWrite, 0xcd000035, mmCP_DFY_DATA_0 }, 1414 + { PwrCmdWrite, 0x97000035, mmCP_DFY_DATA_0 }, 1415 + { PwrCmdWrite, 0x1af07fe8, mmCP_DFY_DATA_0 }, 1416 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 1417 + { PwrCmdWrite, 0xd8400010, mmCP_DFY_DATA_0 }, 1418 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1419 + { PwrCmdWrite, 0xcf00000d, mmCP_DFY_DATA_0 }, 1420 + { PwrCmdWrite, 0xcf00000a, mmCP_DFY_DATA_0 }, 1421 + { PwrCmdWrite, 0x8c001427, mmCP_DFY_DATA_0 }, 1422 + { PwrCmdWrite, 0x04340022, mmCP_DFY_DATA_0 }, 1423 + { PwrCmdWrite, 0x07740001, mmCP_DFY_DATA_0 }, 1424 + { PwrCmdWrite, 0x04300010, mmCP_DFY_DATA_0 }, 1425 + { PwrCmdWrite, 0xdf430000, mmCP_DFY_DATA_0 }, 1426 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 1427 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 1428 + { PwrCmdWrite, 0xd4412e01, mmCP_DFY_DATA_0 }, 1429 + { PwrCmdWrite, 0x0434001e, mmCP_DFY_DATA_0 }, 1430 + { PwrCmdWrite, 0xdf430000, mmCP_DFY_DATA_0 }, 1431 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 1432 + { PwrCmdWrite, 0xdf030000, mmCP_DFY_DATA_0 }, 1433 + { PwrCmdWrite, 0xd4412e40, mmCP_DFY_DATA_0 }, 1434 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1435 + { PwrCmdWrite, 0xcc41c030, mmCP_DFY_DATA_0 }, 1436 + { PwrCmdWrite, 0xcc41c031, mmCP_DFY_DATA_0 }, 1437 + { PwrCmdWrite, 0xc43dc031, mmCP_DFY_DATA_0 }, 1438 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 1439 + { PwrCmdWrite, 0x04343000, mmCP_DFY_DATA_0 }, 1440 + { PwrCmdWrite, 0xc4113246, mmCP_DFY_DATA_0 }, 1441 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 1442 + { PwrCmdWrite, 0xcf413267, mmCP_DFY_DATA_0 }, 1443 + { PwrCmdWrite, 0x51100020, mmCP_DFY_DATA_0 }, 1444 + { PwrCmdWrite, 0x7dd1c01a, mmCP_DFY_DATA_0 }, 1445 + { PwrCmdWrite, 0xc4353267, mmCP_DFY_DATA_0 }, 1446 + { PwrCmdWrite, 0x45dc0160, mmCP_DFY_DATA_0 }, 1447 + { PwrCmdWrite, 0xc810001f, mmCP_DFY_DATA_0 }, 1448 + { PwrCmdWrite, 0x1b4c0057, mmCP_DFY_DATA_0 }, 1449 + { PwrCmdWrite, 0x1b700213, mmCP_DFY_DATA_0 }, 1450 + { PwrCmdWrite, 0x1b740199, mmCP_DFY_DATA_0 }, 1451 + { PwrCmdWrite, 0x7f4f400a, mmCP_DFY_DATA_0 }, 1452 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 1453 + { PwrCmdWrite, 0x55180020, mmCP_DFY_DATA_0 }, 1454 + { PwrCmdWrite, 0x2198003f, mmCP_DFY_DATA_0 }, 1455 + { PwrCmdWrite, 0xd1c00025, mmCP_DFY_DATA_0 }, 1456 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 1457 + { PwrCmdWrite, 0xcd000026, mmCP_DFY_DATA_0 }, 1458 + { PwrCmdWrite, 0xcd800026, mmCP_DFY_DATA_0 }, 1459 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1460 + { PwrCmdWrite, 0x9bc00001, mmCP_DFY_DATA_0 }, 1461 + { PwrCmdWrite, 0x248dfffe, mmCP_DFY_DATA_0 }, 1462 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 1463 + { PwrCmdWrite, 0xccc12e00, mmCP_DFY_DATA_0 }, 1464 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 1465 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 1466 + { PwrCmdWrite, 0x8c00142b, mmCP_DFY_DATA_0 }, 1467 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 1468 + { PwrCmdWrite, 0x1af4007d, mmCP_DFY_DATA_0 }, 1469 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 1470 + { PwrCmdWrite, 0x33740003, mmCP_DFY_DATA_0 }, 1471 + { PwrCmdWrite, 0x26d80001, mmCP_DFY_DATA_0 }, 1472 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1473 + { PwrCmdWrite, 0x1ae8003e, mmCP_DFY_DATA_0 }, 1474 + { PwrCmdWrite, 0x9680000c, mmCP_DFY_DATA_0 }, 1475 + { PwrCmdWrite, 0xc4253277, mmCP_DFY_DATA_0 }, 1476 + { PwrCmdWrite, 0x26680001, mmCP_DFY_DATA_0 }, 1477 + { PwrCmdWrite, 0x96800009, mmCP_DFY_DATA_0 }, 1478 + { PwrCmdWrite, 0x2a640002, mmCP_DFY_DATA_0 }, 1479 + { PwrCmdWrite, 0xce413277, mmCP_DFY_DATA_0 }, 1480 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1481 + { PwrCmdWrite, 0xc4253348, mmCP_DFY_DATA_0 }, 1482 + { PwrCmdWrite, 0xce413348, mmCP_DFY_DATA_0 }, 1483 + { PwrCmdWrite, 0xc4253348, mmCP_DFY_DATA_0 }, 1484 + { PwrCmdWrite, 0x96400001, mmCP_DFY_DATA_0 }, 1485 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1486 + { PwrCmdWrite, 0x9b400003, mmCP_DFY_DATA_0 }, 1487 + { PwrCmdWrite, 0x958000d8, mmCP_DFY_DATA_0 }, 1488 + { PwrCmdWrite, 0x80000315, mmCP_DFY_DATA_0 }, 1489 + { PwrCmdWrite, 0xc4253277, mmCP_DFY_DATA_0 }, 1490 + { PwrCmdWrite, 0x04303000, mmCP_DFY_DATA_0 }, 1491 + { PwrCmdWrite, 0x26680001, mmCP_DFY_DATA_0 }, 1492 + { PwrCmdWrite, 0xcf013267, mmCP_DFY_DATA_0 }, 1493 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 1494 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 1495 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 1496 + { PwrCmdWrite, 0x96800041, mmCP_DFY_DATA_0 }, 1497 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 1498 + { PwrCmdWrite, 0x1b342010, mmCP_DFY_DATA_0 }, 1499 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 1500 + { PwrCmdWrite, 0x1714000c, mmCP_DFY_DATA_0 }, 1501 + { PwrCmdWrite, 0x25540800, mmCP_DFY_DATA_0 }, 1502 + { PwrCmdWrite, 0x1b30c012, mmCP_DFY_DATA_0 }, 1503 + { PwrCmdWrite, 0x459801b0, mmCP_DFY_DATA_0 }, 1504 + { PwrCmdWrite, 0x7d77400a, mmCP_DFY_DATA_0 }, 1505 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 1506 + { PwrCmdWrite, 0x2b300000, mmCP_DFY_DATA_0 }, 1507 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 1508 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 1509 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 1510 + { PwrCmdWrite, 0x04240010, mmCP_DFY_DATA_0 }, 1511 + { PwrCmdWrite, 0x199c01e2, mmCP_DFY_DATA_0 }, 1512 + { PwrCmdWrite, 0x7e5e4002, mmCP_DFY_DATA_0 }, 1513 + { PwrCmdWrite, 0x3e5c0004, mmCP_DFY_DATA_0 }, 1514 + { PwrCmdWrite, 0x3e540002, mmCP_DFY_DATA_0 }, 1515 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 1516 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 1517 + { PwrCmdWrite, 0x95c00006, mmCP_DFY_DATA_0 }, 1518 + { PwrCmdWrite, 0xc80c0011, mmCP_DFY_DATA_0 }, 1519 + { PwrCmdWrite, 0xc8140011, mmCP_DFY_DATA_0 }, 1520 + { PwrCmdWrite, 0x54d00020, mmCP_DFY_DATA_0 }, 1521 + { PwrCmdWrite, 0x55580020, mmCP_DFY_DATA_0 }, 1522 + { PwrCmdWrite, 0x80000282, mmCP_DFY_DATA_0 }, 1523 + { PwrCmdWrite, 0x95400015, mmCP_DFY_DATA_0 }, 1524 + { PwrCmdWrite, 0xc80c0011, mmCP_DFY_DATA_0 }, 1525 + { PwrCmdWrite, 0x0a640002, mmCP_DFY_DATA_0 }, 1526 + { PwrCmdWrite, 0x041c0001, mmCP_DFY_DATA_0 }, 1527 + { PwrCmdWrite, 0x45980008, mmCP_DFY_DATA_0 }, 1528 + { PwrCmdWrite, 0x54d00020, mmCP_DFY_DATA_0 }, 1529 + { PwrCmdWrite, 0x96400004, mmCP_DFY_DATA_0 }, 1530 + { PwrCmdWrite, 0xc8140011, mmCP_DFY_DATA_0 }, 1531 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 1532 + { PwrCmdWrite, 0x041c0000, mmCP_DFY_DATA_0 }, 1533 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 1534 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 1535 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 1536 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 1537 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 1538 + { PwrCmdWrite, 0x99c00003, mmCP_DFY_DATA_0 }, 1539 + { PwrCmdWrite, 0xc8180011, mmCP_DFY_DATA_0 }, 1540 + { PwrCmdWrite, 0x80000282, mmCP_DFY_DATA_0 }, 1541 + { PwrCmdWrite, 0xc8140011, mmCP_DFY_DATA_0 }, 1542 + { PwrCmdWrite, 0x55580020, mmCP_DFY_DATA_0 }, 1543 + { PwrCmdWrite, 0x80000282, mmCP_DFY_DATA_0 }, 1544 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 1545 + { PwrCmdWrite, 0xc80c0011, mmCP_DFY_DATA_0 }, 1546 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 1547 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 1548 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 1549 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 1550 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 1551 + { PwrCmdWrite, 0xc8100011, mmCP_DFY_DATA_0 }, 1552 + { PwrCmdWrite, 0xc8140011, mmCP_DFY_DATA_0 }, 1553 + { PwrCmdWrite, 0x55580020, mmCP_DFY_DATA_0 }, 1554 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1555 + { PwrCmdWrite, 0xccc1334e, mmCP_DFY_DATA_0 }, 1556 + { PwrCmdWrite, 0xcd01334f, mmCP_DFY_DATA_0 }, 1557 + { PwrCmdWrite, 0xcd413350, mmCP_DFY_DATA_0 }, 1558 + { PwrCmdWrite, 0xcd813351, mmCP_DFY_DATA_0 }, 1559 + { PwrCmdWrite, 0xd881334d, mmCP_DFY_DATA_0 }, 1560 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1561 + { PwrCmdWrite, 0xc4193273, mmCP_DFY_DATA_0 }, 1562 + { PwrCmdWrite, 0xc41d3275, mmCP_DFY_DATA_0 }, 1563 + { PwrCmdWrite, 0xc40d3271, mmCP_DFY_DATA_0 }, 1564 + { PwrCmdWrite, 0xc4113270, mmCP_DFY_DATA_0 }, 1565 + { PwrCmdWrite, 0xc4153274, mmCP_DFY_DATA_0 }, 1566 + { PwrCmdWrite, 0x50cc0020, mmCP_DFY_DATA_0 }, 1567 + { PwrCmdWrite, 0x7cd0c01a, mmCP_DFY_DATA_0 }, 1568 + { PwrCmdWrite, 0x7cdcc011, mmCP_DFY_DATA_0 }, 1569 + { PwrCmdWrite, 0x05900008, mmCP_DFY_DATA_0 }, 1570 + { PwrCmdWrite, 0xcd00006a, mmCP_DFY_DATA_0 }, 1571 + { PwrCmdWrite, 0xcdc0006b, mmCP_DFY_DATA_0 }, 1572 + { PwrCmdWrite, 0xc41d3272, mmCP_DFY_DATA_0 }, 1573 + { PwrCmdWrite, 0x7d594002, mmCP_DFY_DATA_0 }, 1574 + { PwrCmdWrite, 0x54d00020, mmCP_DFY_DATA_0 }, 1575 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 1576 + { PwrCmdWrite, 0xccc12e23, mmCP_DFY_DATA_0 }, 1577 + { PwrCmdWrite, 0xcd012e24, mmCP_DFY_DATA_0 }, 1578 + { PwrCmdWrite, 0xcdc12e25, mmCP_DFY_DATA_0 }, 1579 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1580 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 1581 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 1582 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 1583 + { PwrCmdWrite, 0x15540002, mmCP_DFY_DATA_0 }, 1584 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 1585 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 1586 + { PwrCmdWrite, 0xc81c001f, mmCP_DFY_DATA_0 }, 1587 + { PwrCmdWrite, 0x1b340057, mmCP_DFY_DATA_0 }, 1588 + { PwrCmdWrite, 0x1b280213, mmCP_DFY_DATA_0 }, 1589 + { PwrCmdWrite, 0x1b300199, mmCP_DFY_DATA_0 }, 1590 + { PwrCmdWrite, 0x45980198, mmCP_DFY_DATA_0 }, 1591 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 1592 + { PwrCmdWrite, 0x7f2b000a, mmCP_DFY_DATA_0 }, 1593 + { PwrCmdWrite, 0x55e40020, mmCP_DFY_DATA_0 }, 1594 + { PwrCmdWrite, 0xcf000024, mmCP_DFY_DATA_0 }, 1595 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 1596 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 1597 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 1598 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1599 + { PwrCmdWrite, 0xcd40000d, mmCP_DFY_DATA_0 }, 1600 + { PwrCmdWrite, 0xcd40000a, mmCP_DFY_DATA_0 }, 1601 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 1602 + { PwrCmdWrite, 0x20cc003c, mmCP_DFY_DATA_0 }, 1603 + { PwrCmdWrite, 0xccc13249, mmCP_DFY_DATA_0 }, 1604 + { PwrCmdWrite, 0xc4113274, mmCP_DFY_DATA_0 }, 1605 + { PwrCmdWrite, 0xdd430000, mmCP_DFY_DATA_0 }, 1606 + { PwrCmdWrite, 0xc01e0001, mmCP_DFY_DATA_0 }, 1607 + { PwrCmdWrite, 0x29dc0002, mmCP_DFY_DATA_0 }, 1608 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 1609 + { PwrCmdWrite, 0xd8000036, mmCP_DFY_DATA_0 }, 1610 + { PwrCmdWrite, 0xcc400078, mmCP_DFY_DATA_0 }, 1611 + { PwrCmdWrite, 0xcc400078, mmCP_DFY_DATA_0 }, 1612 + { PwrCmdWrite, 0x2d540002, mmCP_DFY_DATA_0 }, 1613 + { PwrCmdWrite, 0x95400022, mmCP_DFY_DATA_0 }, 1614 + { PwrCmdWrite, 0x078c0000, mmCP_DFY_DATA_0 }, 1615 + { PwrCmdWrite, 0x07d40000, mmCP_DFY_DATA_0 }, 1616 + { PwrCmdWrite, 0x8c00120d, mmCP_DFY_DATA_0 }, 1617 + { PwrCmdWrite, 0x8c001239, mmCP_DFY_DATA_0 }, 1618 + { PwrCmdWrite, 0x8c001232, mmCP_DFY_DATA_0 }, 1619 + { PwrCmdWrite, 0x04f80000, mmCP_DFY_DATA_0 }, 1620 + { PwrCmdWrite, 0x057c0000, mmCP_DFY_DATA_0 }, 1621 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 1622 + { PwrCmdWrite, 0xc414000d, mmCP_DFY_DATA_0 }, 1623 + { PwrCmdWrite, 0xc41c0019, mmCP_DFY_DATA_0 }, 1624 + { PwrCmdWrite, 0x7dd5c005, mmCP_DFY_DATA_0 }, 1625 + { PwrCmdWrite, 0x25dc0001, mmCP_DFY_DATA_0 }, 1626 + { PwrCmdWrite, 0xd840007c, mmCP_DFY_DATA_0 }, 1627 + { PwrCmdWrite, 0xd8400074, mmCP_DFY_DATA_0 }, 1628 + { PwrCmdWrite, 0xd8400069, mmCP_DFY_DATA_0 }, 1629 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 1630 + { PwrCmdWrite, 0x94c018a6, mmCP_DFY_DATA_0 }, 1631 + { PwrCmdWrite, 0xd4412e22, mmCP_DFY_DATA_0 }, 1632 + { PwrCmdWrite, 0xd800007c, mmCP_DFY_DATA_0 }, 1633 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 1634 + { PwrCmdWrite, 0x94c018a2, mmCP_DFY_DATA_0 }, 1635 + { PwrCmdWrite, 0x95c00007, mmCP_DFY_DATA_0 }, 1636 + { PwrCmdWrite, 0xc40c0019, mmCP_DFY_DATA_0 }, 1637 + { PwrCmdWrite, 0x7cd4c005, mmCP_DFY_DATA_0 }, 1638 + { PwrCmdWrite, 0x24cc0001, mmCP_DFY_DATA_0 }, 1639 + { PwrCmdWrite, 0x94c00008, mmCP_DFY_DATA_0 }, 1640 + { PwrCmdWrite, 0x9680fffc, mmCP_DFY_DATA_0 }, 1641 + { PwrCmdWrite, 0x800002e3, mmCP_DFY_DATA_0 }, 1642 + { PwrCmdWrite, 0xc40c0057, mmCP_DFY_DATA_0 }, 1643 + { PwrCmdWrite, 0x7cd0c002, mmCP_DFY_DATA_0 }, 1644 + { PwrCmdWrite, 0x94c00003, mmCP_DFY_DATA_0 }, 1645 + { PwrCmdWrite, 0x9680fffd, mmCP_DFY_DATA_0 }, 1646 + { PwrCmdWrite, 0x800002e3, mmCP_DFY_DATA_0 }, 1647 + { PwrCmdWrite, 0xd8000069, mmCP_DFY_DATA_0 }, 1648 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1649 + { PwrCmdWrite, 0xcd013273, mmCP_DFY_DATA_0 }, 1650 + { PwrCmdWrite, 0xcd013275, mmCP_DFY_DATA_0 }, 1651 + { PwrCmdWrite, 0xd8000074, mmCP_DFY_DATA_0 }, 1652 + { PwrCmdWrite, 0xc414005e, mmCP_DFY_DATA_0 }, 1653 + { PwrCmdWrite, 0x9540188f, mmCP_DFY_DATA_0 }, 1654 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1655 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 1656 + { PwrCmdWrite, 0xc013cfff, mmCP_DFY_DATA_0 }, 1657 + { PwrCmdWrite, 0x7cd0c009, mmCP_DFY_DATA_0 }, 1658 + { PwrCmdWrite, 0xccc13249, mmCP_DFY_DATA_0 }, 1659 + { PwrCmdWrite, 0x9680000b, mmCP_DFY_DATA_0 }, 1660 + { PwrCmdWrite, 0xc40c0077, mmCP_DFY_DATA_0 }, 1661 + { PwrCmdWrite, 0x38d00001, mmCP_DFY_DATA_0 }, 1662 + { PwrCmdWrite, 0x99000006, mmCP_DFY_DATA_0 }, 1663 + { PwrCmdWrite, 0x04cc0002, mmCP_DFY_DATA_0 }, 1664 + { PwrCmdWrite, 0xdcc30000, mmCP_DFY_DATA_0 }, 1665 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 1666 + { PwrCmdWrite, 0x94c01882, mmCP_DFY_DATA_0 }, 1667 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 1668 + { PwrCmdWrite, 0xd800000d, mmCP_DFY_DATA_0 }, 1669 + { PwrCmdWrite, 0x80000304, mmCP_DFY_DATA_0 }, 1670 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 1671 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 1672 + { PwrCmdWrite, 0xd840002f, mmCP_DFY_DATA_0 }, 1673 + { PwrCmdWrite, 0xc41c0015, mmCP_DFY_DATA_0 }, 1674 + { PwrCmdWrite, 0x95c0ffff, mmCP_DFY_DATA_0 }, 1675 + { PwrCmdWrite, 0xd8400030, mmCP_DFY_DATA_0 }, 1676 + { PwrCmdWrite, 0xc41c0016, mmCP_DFY_DATA_0 }, 1677 + { PwrCmdWrite, 0x95c0ffff, mmCP_DFY_DATA_0 }, 1678 + { PwrCmdWrite, 0xd8000030, mmCP_DFY_DATA_0 }, 1679 + { PwrCmdWrite, 0xc41c0016, mmCP_DFY_DATA_0 }, 1680 + { PwrCmdWrite, 0x99c0ffff, mmCP_DFY_DATA_0 }, 1681 + { PwrCmdWrite, 0xd800002f, mmCP_DFY_DATA_0 }, 1682 + { PwrCmdWrite, 0xc41c0015, mmCP_DFY_DATA_0 }, 1683 + { PwrCmdWrite, 0x99c0ffff, mmCP_DFY_DATA_0 }, 1684 + { PwrCmdWrite, 0xc81c001f, mmCP_DFY_DATA_0 }, 1685 + { PwrCmdWrite, 0x49980198, mmCP_DFY_DATA_0 }, 1686 + { PwrCmdWrite, 0x55e40020, mmCP_DFY_DATA_0 }, 1687 + { PwrCmdWrite, 0x459801a0, mmCP_DFY_DATA_0 }, 1688 + { PwrCmdWrite, 0xcf000024, mmCP_DFY_DATA_0 }, 1689 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 1690 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 1691 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 1692 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1693 + { PwrCmdWrite, 0x04302000, mmCP_DFY_DATA_0 }, 1694 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1695 + { PwrCmdWrite, 0xcf013267, mmCP_DFY_DATA_0 }, 1696 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 1697 + { PwrCmdWrite, 0x96800004, mmCP_DFY_DATA_0 }, 1698 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 1699 + { PwrCmdWrite, 0xd8000036, mmCP_DFY_DATA_0 }, 1700 + { PwrCmdWrite, 0x80000329, mmCP_DFY_DATA_0 }, 1701 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 1702 + { PwrCmdWrite, 0xcc812e00, mmCP_DFY_DATA_0 }, 1703 + { PwrCmdWrite, 0x04302000, mmCP_DFY_DATA_0 }, 1704 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 1705 + { PwrCmdWrite, 0xcf013267, mmCP_DFY_DATA_0 }, 1706 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 1707 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 1708 + { PwrCmdWrite, 0xc4193256, mmCP_DFY_DATA_0 }, 1709 + { PwrCmdWrite, 0xc42d3249, mmCP_DFY_DATA_0 }, 1710 + { PwrCmdWrite, 0x16ec001f, mmCP_DFY_DATA_0 }, 1711 + { PwrCmdWrite, 0xd8000028, mmCP_DFY_DATA_0 }, 1712 + { PwrCmdWrite, 0xd800002b, mmCP_DFY_DATA_0 }, 1713 + { PwrCmdWrite, 0x1998003e, mmCP_DFY_DATA_0 }, 1714 + { PwrCmdWrite, 0xcec00031, mmCP_DFY_DATA_0 }, 1715 + { PwrCmdWrite, 0xd8000036, mmCP_DFY_DATA_0 }, 1716 + { PwrCmdWrite, 0xd8000010, mmCP_DFY_DATA_0 }, 1717 + { PwrCmdWrite, 0x97800004, mmCP_DFY_DATA_0 }, 1718 + { PwrCmdWrite, 0xd8400010, mmCP_DFY_DATA_0 }, 1719 + { PwrCmdWrite, 0xce00000a, mmCP_DFY_DATA_0 }, 1720 + { PwrCmdWrite, 0x1a18003e, mmCP_DFY_DATA_0 }, 1721 + { PwrCmdWrite, 0xcd800008, mmCP_DFY_DATA_0 }, 1722 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1723 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 1724 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1725 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1726 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 1727 + { PwrCmdWrite, 0x04100000, mmCP_DFY_DATA_0 }, 1728 + { PwrCmdWrite, 0x7d43c001, mmCP_DFY_DATA_0 }, 1729 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 1730 + { PwrCmdWrite, 0xc4093249, mmCP_DFY_DATA_0 }, 1731 + { PwrCmdWrite, 0x1888003e, mmCP_DFY_DATA_0 }, 1732 + { PwrCmdWrite, 0x94800015, mmCP_DFY_DATA_0 }, 1733 + { PwrCmdWrite, 0xd8400074, mmCP_DFY_DATA_0 }, 1734 + { PwrCmdWrite, 0x8c000671, mmCP_DFY_DATA_0 }, 1735 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 1736 + { PwrCmdWrite, 0x9a400006, mmCP_DFY_DATA_0 }, 1737 + { PwrCmdWrite, 0xc419324c, mmCP_DFY_DATA_0 }, 1738 + { PwrCmdWrite, 0x259c0001, mmCP_DFY_DATA_0 }, 1739 + { PwrCmdWrite, 0x1598001f, mmCP_DFY_DATA_0 }, 1740 + { PwrCmdWrite, 0x95c0000d, mmCP_DFY_DATA_0 }, 1741 + { PwrCmdWrite, 0x9580000c, mmCP_DFY_DATA_0 }, 1742 + { PwrCmdWrite, 0x99000003, mmCP_DFY_DATA_0 }, 1743 + { PwrCmdWrite, 0xd8400036, mmCP_DFY_DATA_0 }, 1744 + { PwrCmdWrite, 0x04100001, mmCP_DFY_DATA_0 }, 1745 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 1746 + { PwrCmdWrite, 0x14d80011, mmCP_DFY_DATA_0 }, 1747 + { PwrCmdWrite, 0x24dc00ff, mmCP_DFY_DATA_0 }, 1748 + { PwrCmdWrite, 0x31e00002, mmCP_DFY_DATA_0 }, 1749 + { PwrCmdWrite, 0x31dc0003, mmCP_DFY_DATA_0 }, 1750 + { PwrCmdWrite, 0x9580fff0, mmCP_DFY_DATA_0 }, 1751 + { PwrCmdWrite, 0x9a000003, mmCP_DFY_DATA_0 }, 1752 + { PwrCmdWrite, 0x99c00002, mmCP_DFY_DATA_0 }, 1753 + { PwrCmdWrite, 0xd9c00036, mmCP_DFY_DATA_0 }, 1754 + { PwrCmdWrite, 0x94800004, mmCP_DFY_DATA_0 }, 1755 + { PwrCmdWrite, 0xd8000074, mmCP_DFY_DATA_0 }, 1756 + { PwrCmdWrite, 0xc418005e, mmCP_DFY_DATA_0 }, 1757 + { PwrCmdWrite, 0x95801827, mmCP_DFY_DATA_0 }, 1758 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 1759 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1760 + { PwrCmdWrite, 0xd8800036, mmCP_DFY_DATA_0 }, 1761 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1762 + { PwrCmdWrite, 0xd8c00036, mmCP_DFY_DATA_0 }, 1763 + { PwrCmdWrite, 0xc424000b, mmCP_DFY_DATA_0 }, 1764 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 1765 + { PwrCmdWrite, 0x9a400004, mmCP_DFY_DATA_0 }, 1766 + { PwrCmdWrite, 0xc4180014, mmCP_DFY_DATA_0 }, 1767 + { PwrCmdWrite, 0x9580ffff, mmCP_DFY_DATA_0 }, 1768 + { PwrCmdWrite, 0xd840002f, mmCP_DFY_DATA_0 }, 1769 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 1770 + { PwrCmdWrite, 0x14dc0011, mmCP_DFY_DATA_0 }, 1771 + { PwrCmdWrite, 0x95c0fffe, mmCP_DFY_DATA_0 }, 1772 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 1773 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 1774 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 1775 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 1776 + { PwrCmdWrite, 0xd800006d, mmCP_DFY_DATA_0 }, 1777 + { PwrCmdWrite, 0xc41d3246, mmCP_DFY_DATA_0 }, 1778 + { PwrCmdWrite, 0xc4193245, mmCP_DFY_DATA_0 }, 1779 + { PwrCmdWrite, 0x51dc0020, mmCP_DFY_DATA_0 }, 1780 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 1781 + { PwrCmdWrite, 0xd8400028, mmCP_DFY_DATA_0 }, 1782 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 1783 + { PwrCmdWrite, 0xc420000b, mmCP_DFY_DATA_0 }, 1784 + { PwrCmdWrite, 0x32200002, mmCP_DFY_DATA_0 }, 1785 + { PwrCmdWrite, 0x9a0000ad, mmCP_DFY_DATA_0 }, 1786 + { PwrCmdWrite, 0x04200032, mmCP_DFY_DATA_0 }, 1787 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 1788 + { PwrCmdWrite, 0xde030000, mmCP_DFY_DATA_0 }, 1789 + { PwrCmdWrite, 0xd8400033, mmCP_DFY_DATA_0 }, 1790 + { PwrCmdWrite, 0x04080000, mmCP_DFY_DATA_0 }, 1791 + { PwrCmdWrite, 0xc43c0009, mmCP_DFY_DATA_0 }, 1792 + { PwrCmdWrite, 0x27fc0002, mmCP_DFY_DATA_0 }, 1793 + { PwrCmdWrite, 0x97c0fffe, mmCP_DFY_DATA_0 }, 1794 + { PwrCmdWrite, 0xc42c0015, mmCP_DFY_DATA_0 }, 1795 + { PwrCmdWrite, 0x96c0ffff, mmCP_DFY_DATA_0 }, 1796 + { PwrCmdWrite, 0xd800002e, mmCP_DFY_DATA_0 }, 1797 + { PwrCmdWrite, 0xc42d3249, mmCP_DFY_DATA_0 }, 1798 + { PwrCmdWrite, 0x1af4003e, mmCP_DFY_DATA_0 }, 1799 + { PwrCmdWrite, 0x9740004d, mmCP_DFY_DATA_0 }, 1800 + { PwrCmdWrite, 0xc428000d, mmCP_DFY_DATA_0 }, 1801 + { PwrCmdWrite, 0xc4080060, mmCP_DFY_DATA_0 }, 1802 + { PwrCmdWrite, 0x7ca88005, mmCP_DFY_DATA_0 }, 1803 + { PwrCmdWrite, 0x24880001, mmCP_DFY_DATA_0 }, 1804 + { PwrCmdWrite, 0x7f4b4009, mmCP_DFY_DATA_0 }, 1805 + { PwrCmdWrite, 0x97400046, mmCP_DFY_DATA_0 }, 1806 + { PwrCmdWrite, 0xc4313274, mmCP_DFY_DATA_0 }, 1807 + { PwrCmdWrite, 0xc4100057, mmCP_DFY_DATA_0 }, 1808 + { PwrCmdWrite, 0x7d33400c, mmCP_DFY_DATA_0 }, 1809 + { PwrCmdWrite, 0x97400009, mmCP_DFY_DATA_0 }, 1810 + { PwrCmdWrite, 0x28240100, mmCP_DFY_DATA_0 }, 1811 + { PwrCmdWrite, 0x7e6a4004, mmCP_DFY_DATA_0 }, 1812 + { PwrCmdWrite, 0xce400079, mmCP_DFY_DATA_0 }, 1813 + { PwrCmdWrite, 0x1eecffdd, mmCP_DFY_DATA_0 }, 1814 + { PwrCmdWrite, 0xcec13249, mmCP_DFY_DATA_0 }, 1815 + { PwrCmdWrite, 0xcf013273, mmCP_DFY_DATA_0 }, 1816 + { PwrCmdWrite, 0xcf013275, mmCP_DFY_DATA_0 }, 1817 + { PwrCmdWrite, 0x800003c3, mmCP_DFY_DATA_0 }, 1818 + { PwrCmdWrite, 0xc429326f, mmCP_DFY_DATA_0 }, 1819 + { PwrCmdWrite, 0x1aa80030, mmCP_DFY_DATA_0 }, 1820 + { PwrCmdWrite, 0x96800006, mmCP_DFY_DATA_0 }, 1821 + { PwrCmdWrite, 0x28240001, mmCP_DFY_DATA_0 }, 1822 + { PwrCmdWrite, 0xc428000d, mmCP_DFY_DATA_0 }, 1823 + { PwrCmdWrite, 0x06a80008, mmCP_DFY_DATA_0 }, 1824 + { PwrCmdWrite, 0x7e6a8004, mmCP_DFY_DATA_0 }, 1825 + { PwrCmdWrite, 0xce800035, mmCP_DFY_DATA_0 }, 1826 + { PwrCmdWrite, 0xc41d3272, mmCP_DFY_DATA_0 }, 1827 + { PwrCmdWrite, 0x25cc0001, mmCP_DFY_DATA_0 }, 1828 + { PwrCmdWrite, 0x10cc0004, mmCP_DFY_DATA_0 }, 1829 + { PwrCmdWrite, 0x19e80042, mmCP_DFY_DATA_0 }, 1830 + { PwrCmdWrite, 0x25dc0006, mmCP_DFY_DATA_0 }, 1831 + { PwrCmdWrite, 0x11dc0001, mmCP_DFY_DATA_0 }, 1832 + { PwrCmdWrite, 0x7e8e800a, mmCP_DFY_DATA_0 }, 1833 + { PwrCmdWrite, 0x7de9c00a, mmCP_DFY_DATA_0 }, 1834 + { PwrCmdWrite, 0xc40d3271, mmCP_DFY_DATA_0 }, 1835 + { PwrCmdWrite, 0xc4293270, mmCP_DFY_DATA_0 }, 1836 + { PwrCmdWrite, 0x50cc0020, mmCP_DFY_DATA_0 }, 1837 + { PwrCmdWrite, 0x7ce8c01a, mmCP_DFY_DATA_0 }, 1838 + { PwrCmdWrite, 0x7cd30011, mmCP_DFY_DATA_0 }, 1839 + { PwrCmdWrite, 0x11e80007, mmCP_DFY_DATA_0 }, 1840 + { PwrCmdWrite, 0x2aa80000, mmCP_DFY_DATA_0 }, 1841 + { PwrCmdWrite, 0xce80001c, mmCP_DFY_DATA_0 }, 1842 + { PwrCmdWrite, 0xd300001e, mmCP_DFY_DATA_0 }, 1843 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 1844 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 1845 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 1846 + { PwrCmdWrite, 0xc4300011, mmCP_DFY_DATA_0 }, 1847 + { PwrCmdWrite, 0x1b30003f, mmCP_DFY_DATA_0 }, 1848 + { PwrCmdWrite, 0x33300000, mmCP_DFY_DATA_0 }, 1849 + { PwrCmdWrite, 0xc4240059, mmCP_DFY_DATA_0 }, 1850 + { PwrCmdWrite, 0x1660001f, mmCP_DFY_DATA_0 }, 1851 + { PwrCmdWrite, 0x7e320009, mmCP_DFY_DATA_0 }, 1852 + { PwrCmdWrite, 0xc0328000, mmCP_DFY_DATA_0 }, 1853 + { PwrCmdWrite, 0x7e72400a, mmCP_DFY_DATA_0 }, 1854 + { PwrCmdWrite, 0x0430000c, mmCP_DFY_DATA_0 }, 1855 + { PwrCmdWrite, 0x9a000002, mmCP_DFY_DATA_0 }, 1856 + { PwrCmdWrite, 0x04300008, mmCP_DFY_DATA_0 }, 1857 + { PwrCmdWrite, 0xc02ac000, mmCP_DFY_DATA_0 }, 1858 + { PwrCmdWrite, 0x7d310002, mmCP_DFY_DATA_0 }, 1859 + { PwrCmdWrite, 0x17300002, mmCP_DFY_DATA_0 }, 1860 + { PwrCmdWrite, 0x2aa87600, mmCP_DFY_DATA_0 }, 1861 + { PwrCmdWrite, 0x7cd0c011, mmCP_DFY_DATA_0 }, 1862 + { PwrCmdWrite, 0xcdc00024, mmCP_DFY_DATA_0 }, 1863 + { PwrCmdWrite, 0xd0c00025, mmCP_DFY_DATA_0 }, 1864 + { PwrCmdWrite, 0xce800026, mmCP_DFY_DATA_0 }, 1865 + { PwrCmdWrite, 0x04280222, mmCP_DFY_DATA_0 }, 1866 + { PwrCmdWrite, 0xce800026, mmCP_DFY_DATA_0 }, 1867 + { PwrCmdWrite, 0x96000002, mmCP_DFY_DATA_0 }, 1868 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 1869 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1870 + { PwrCmdWrite, 0xc4280058, mmCP_DFY_DATA_0 }, 1871 + { PwrCmdWrite, 0x22ec003d, mmCP_DFY_DATA_0 }, 1872 + { PwrCmdWrite, 0xcec13249, mmCP_DFY_DATA_0 }, 1873 + { PwrCmdWrite, 0xcd013273, mmCP_DFY_DATA_0 }, 1874 + { PwrCmdWrite, 0xce813275, mmCP_DFY_DATA_0 }, 1875 + { PwrCmdWrite, 0xd800007b, mmCP_DFY_DATA_0 }, 1876 + { PwrCmdWrite, 0xc8380018, mmCP_DFY_DATA_0 }, 1877 + { PwrCmdWrite, 0x57b00020, mmCP_DFY_DATA_0 }, 1878 + { PwrCmdWrite, 0x04343108, mmCP_DFY_DATA_0 }, 1879 + { PwrCmdWrite, 0xc429325d, mmCP_DFY_DATA_0 }, 1880 + { PwrCmdWrite, 0x040c3000, mmCP_DFY_DATA_0 }, 1881 + { PwrCmdWrite, 0x13740008, mmCP_DFY_DATA_0 }, 1882 + { PwrCmdWrite, 0x2374007e, mmCP_DFY_DATA_0 }, 1883 + { PwrCmdWrite, 0x32a80003, mmCP_DFY_DATA_0 }, 1884 + { PwrCmdWrite, 0xccc13267, mmCP_DFY_DATA_0 }, 1885 + { PwrCmdWrite, 0xc40d3267, mmCP_DFY_DATA_0 }, 1886 + { PwrCmdWrite, 0x18ec0057, mmCP_DFY_DATA_0 }, 1887 + { PwrCmdWrite, 0x18e40213, mmCP_DFY_DATA_0 }, 1888 + { PwrCmdWrite, 0x18cc0199, mmCP_DFY_DATA_0 }, 1889 + { PwrCmdWrite, 0x7cecc00a, mmCP_DFY_DATA_0 }, 1890 + { PwrCmdWrite, 0x7ce4c00a, mmCP_DFY_DATA_0 }, 1891 + { PwrCmdWrite, 0x94800003, mmCP_DFY_DATA_0 }, 1892 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 1893 + { PwrCmdWrite, 0x800003e7, mmCP_DFY_DATA_0 }, 1894 + { PwrCmdWrite, 0x04200022, mmCP_DFY_DATA_0 }, 1895 + { PwrCmdWrite, 0xde030000, mmCP_DFY_DATA_0 }, 1896 + { PwrCmdWrite, 0xccc00024, mmCP_DFY_DATA_0 }, 1897 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 1898 + { PwrCmdWrite, 0xcf400026, mmCP_DFY_DATA_0 }, 1899 + { PwrCmdWrite, 0xd4400026, mmCP_DFY_DATA_0 }, 1900 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1901 + { PwrCmdWrite, 0x04200010, mmCP_DFY_DATA_0 }, 1902 + { PwrCmdWrite, 0xde030000, mmCP_DFY_DATA_0 }, 1903 + { PwrCmdWrite, 0xccc00024, mmCP_DFY_DATA_0 }, 1904 + { PwrCmdWrite, 0x45980104, mmCP_DFY_DATA_0 }, 1905 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 1906 + { PwrCmdWrite, 0xd4400026, mmCP_DFY_DATA_0 }, 1907 + { PwrCmdWrite, 0xcf800026, mmCP_DFY_DATA_0 }, 1908 + { PwrCmdWrite, 0xcf000026, mmCP_DFY_DATA_0 }, 1909 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1910 + { PwrCmdWrite, 0x49980104, mmCP_DFY_DATA_0 }, 1911 + { PwrCmdWrite, 0x9a80000a, mmCP_DFY_DATA_0 }, 1912 + { PwrCmdWrite, 0xc81c001f, mmCP_DFY_DATA_0 }, 1913 + { PwrCmdWrite, 0x45980168, mmCP_DFY_DATA_0 }, 1914 + { PwrCmdWrite, 0x55e00020, mmCP_DFY_DATA_0 }, 1915 + { PwrCmdWrite, 0xccc00024, mmCP_DFY_DATA_0 }, 1916 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 1917 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 1918 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 1919 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 1920 + { PwrCmdWrite, 0x800003f2, mmCP_DFY_DATA_0 }, 1921 + { PwrCmdWrite, 0x8c000448, mmCP_DFY_DATA_0 }, 1922 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 1923 + { PwrCmdWrite, 0x040c2000, mmCP_DFY_DATA_0 }, 1924 + { PwrCmdWrite, 0xccc13267, mmCP_DFY_DATA_0 }, 1925 + { PwrCmdWrite, 0xc40d3267, mmCP_DFY_DATA_0 }, 1926 + { PwrCmdWrite, 0x94c00001, mmCP_DFY_DATA_0 }, 1927 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 1928 + { PwrCmdWrite, 0x18cc003e, mmCP_DFY_DATA_0 }, 1929 + { PwrCmdWrite, 0xd8400030, mmCP_DFY_DATA_0 }, 1930 + { PwrCmdWrite, 0xc42c0016, mmCP_DFY_DATA_0 }, 1931 + { PwrCmdWrite, 0x96c0ffff, mmCP_DFY_DATA_0 }, 1932 + { PwrCmdWrite, 0xd8000030, mmCP_DFY_DATA_0 }, 1933 + { PwrCmdWrite, 0xc42c0016, mmCP_DFY_DATA_0 }, 1934 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 1935 + { PwrCmdWrite, 0xd800002f, mmCP_DFY_DATA_0 }, 1936 + { PwrCmdWrite, 0xc42c0015, mmCP_DFY_DATA_0 }, 1937 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 1938 + { PwrCmdWrite, 0xd8400034, mmCP_DFY_DATA_0 }, 1939 + { PwrCmdWrite, 0xc4300025, mmCP_DFY_DATA_0 }, 1940 + { PwrCmdWrite, 0xc4340024, mmCP_DFY_DATA_0 }, 1941 + { PwrCmdWrite, 0xc4380081, mmCP_DFY_DATA_0 }, 1942 + { PwrCmdWrite, 0xcf813279, mmCP_DFY_DATA_0 }, 1943 + { PwrCmdWrite, 0xcf41326e, mmCP_DFY_DATA_0 }, 1944 + { PwrCmdWrite, 0xcf01326d, mmCP_DFY_DATA_0 }, 1945 + { PwrCmdWrite, 0x94c0000d, mmCP_DFY_DATA_0 }, 1946 + { PwrCmdWrite, 0x254c0700, mmCP_DFY_DATA_0 }, 1947 + { PwrCmdWrite, 0xc424001e, mmCP_DFY_DATA_0 }, 1948 + { PwrCmdWrite, 0x10cc0010, mmCP_DFY_DATA_0 }, 1949 + { PwrCmdWrite, 0x1a641fe8, mmCP_DFY_DATA_0 }, 1950 + { PwrCmdWrite, 0x28cc0726, mmCP_DFY_DATA_0 }, 1951 + { PwrCmdWrite, 0x2a640200, mmCP_DFY_DATA_0 }, 1952 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 1953 + { PwrCmdWrite, 0xccc1237b, mmCP_DFY_DATA_0 }, 1954 + { PwrCmdWrite, 0x2264003f, mmCP_DFY_DATA_0 }, 1955 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 1956 + { PwrCmdWrite, 0xd8813260, mmCP_DFY_DATA_0 }, 1957 + { PwrCmdWrite, 0xce41325b, mmCP_DFY_DATA_0 }, 1958 + { PwrCmdWrite, 0xc4240033, mmCP_DFY_DATA_0 }, 1959 + { PwrCmdWrite, 0xc4280034, mmCP_DFY_DATA_0 }, 1960 + { PwrCmdWrite, 0xd9000036, mmCP_DFY_DATA_0 }, 1961 + { PwrCmdWrite, 0xd8000010, mmCP_DFY_DATA_0 }, 1962 + { PwrCmdWrite, 0x8c001427, mmCP_DFY_DATA_0 }, 1963 + { PwrCmdWrite, 0x96400006, mmCP_DFY_DATA_0 }, 1964 + { PwrCmdWrite, 0xde430000, mmCP_DFY_DATA_0 }, 1965 + { PwrCmdWrite, 0xce40000c, mmCP_DFY_DATA_0 }, 1966 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 1967 + { PwrCmdWrite, 0x94c01755, mmCP_DFY_DATA_0 }, 1968 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 1969 + { PwrCmdWrite, 0x9680000a, mmCP_DFY_DATA_0 }, 1970 + { PwrCmdWrite, 0xce80000a, mmCP_DFY_DATA_0 }, 1971 + { PwrCmdWrite, 0x06a80002, mmCP_DFY_DATA_0 }, 1972 + { PwrCmdWrite, 0xd8400010, mmCP_DFY_DATA_0 }, 1973 + { PwrCmdWrite, 0xde830000, mmCP_DFY_DATA_0 }, 1974 + { PwrCmdWrite, 0xce80000d, mmCP_DFY_DATA_0 }, 1975 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 1976 + { PwrCmdWrite, 0x94c0174c, mmCP_DFY_DATA_0 }, 1977 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 1978 + { PwrCmdWrite, 0xd8000010, mmCP_DFY_DATA_0 }, 1979 + { PwrCmdWrite, 0x8c00142b, mmCP_DFY_DATA_0 }, 1980 + { PwrCmdWrite, 0xc4393265, mmCP_DFY_DATA_0 }, 1981 + { PwrCmdWrite, 0x2bb80040, mmCP_DFY_DATA_0 }, 1982 + { PwrCmdWrite, 0xd8400032, mmCP_DFY_DATA_0 }, 1983 + { PwrCmdWrite, 0xcf813265, mmCP_DFY_DATA_0 }, 1984 + { PwrCmdWrite, 0xc4200012, mmCP_DFY_DATA_0 }, 1985 + { PwrCmdWrite, 0x9a00ffff, mmCP_DFY_DATA_0 }, 1986 + { PwrCmdWrite, 0xc4100044, mmCP_DFY_DATA_0 }, 1987 + { PwrCmdWrite, 0x19180024, mmCP_DFY_DATA_0 }, 1988 + { PwrCmdWrite, 0xc8100072, mmCP_DFY_DATA_0 }, 1989 + { PwrCmdWrite, 0x551c003f, mmCP_DFY_DATA_0 }, 1990 + { PwrCmdWrite, 0x99c00003, mmCP_DFY_DATA_0 }, 1991 + { PwrCmdWrite, 0x95800010, mmCP_DFY_DATA_0 }, 1992 + { PwrCmdWrite, 0x8000043d, mmCP_DFY_DATA_0 }, 1993 + { PwrCmdWrite, 0xc00c8000, mmCP_DFY_DATA_0 }, 1994 + { PwrCmdWrite, 0xd840006c, mmCP_DFY_DATA_0 }, 1995 + { PwrCmdWrite, 0x28200000, mmCP_DFY_DATA_0 }, 1996 + { PwrCmdWrite, 0x8000043f, mmCP_DFY_DATA_0 }, 1997 + { PwrCmdWrite, 0xc00c4000, mmCP_DFY_DATA_0 }, 1998 + { PwrCmdWrite, 0x282000f0, mmCP_DFY_DATA_0 }, 1999 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2000 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2001 + { PwrCmdWrite, 0xc4113255, mmCP_DFY_DATA_0 }, 2002 + { PwrCmdWrite, 0xcd01324f, mmCP_DFY_DATA_0 }, 2003 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2004 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 2005 + { PwrCmdWrite, 0xccc130b5, mmCP_DFY_DATA_0 }, 2006 + { PwrCmdWrite, 0xce000053, mmCP_DFY_DATA_0 }, 2007 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2008 + { PwrCmdWrite, 0x195c00e8, mmCP_DFY_DATA_0 }, 2009 + { PwrCmdWrite, 0xc4100004, mmCP_DFY_DATA_0 }, 2010 + { PwrCmdWrite, 0x2555fff0, mmCP_DFY_DATA_0 }, 2011 + { PwrCmdWrite, 0xc0360001, mmCP_DFY_DATA_0 }, 2012 + { PwrCmdWrite, 0x042c0000, mmCP_DFY_DATA_0 }, 2013 + { PwrCmdWrite, 0x29540001, mmCP_DFY_DATA_0 }, 2014 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2015 + { PwrCmdWrite, 0x04240000, mmCP_DFY_DATA_0 }, 2016 + { PwrCmdWrite, 0x04280004, mmCP_DFY_DATA_0 }, 2017 + { PwrCmdWrite, 0xc420000b, mmCP_DFY_DATA_0 }, 2018 + { PwrCmdWrite, 0x32200002, mmCP_DFY_DATA_0 }, 2019 + { PwrCmdWrite, 0x9a000009, mmCP_DFY_DATA_0 }, 2020 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2021 + { PwrCmdWrite, 0xcec1c200, mmCP_DFY_DATA_0 }, 2022 + { PwrCmdWrite, 0xc5e124dc, mmCP_DFY_DATA_0 }, 2023 + { PwrCmdWrite, 0x0aa80001, mmCP_DFY_DATA_0 }, 2024 + { PwrCmdWrite, 0x7ef6c001, mmCP_DFY_DATA_0 }, 2025 + { PwrCmdWrite, 0x7e624001, mmCP_DFY_DATA_0 }, 2026 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 2027 + { PwrCmdWrite, 0x9a80fff9, mmCP_DFY_DATA_0 }, 2028 + { PwrCmdWrite, 0xc02ee000, mmCP_DFY_DATA_0 }, 2029 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2030 + { PwrCmdWrite, 0x2555fff0, mmCP_DFY_DATA_0 }, 2031 + { PwrCmdWrite, 0xcec1c200, mmCP_DFY_DATA_0 }, 2032 + { PwrCmdWrite, 0x29540008, mmCP_DFY_DATA_0 }, 2033 + { PwrCmdWrite, 0xc81c001f, mmCP_DFY_DATA_0 }, 2034 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2035 + { PwrCmdWrite, 0x55e00020, mmCP_DFY_DATA_0 }, 2036 + { PwrCmdWrite, 0xc42d3255, mmCP_DFY_DATA_0 }, 2037 + { PwrCmdWrite, 0xc4353259, mmCP_DFY_DATA_0 }, 2038 + { PwrCmdWrite, 0xd8013260, mmCP_DFY_DATA_0 }, 2039 + { PwrCmdWrite, 0x45980158, mmCP_DFY_DATA_0 }, 2040 + { PwrCmdWrite, 0xccc00024, mmCP_DFY_DATA_0 }, 2041 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 2042 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 2043 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 2044 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2045 + { PwrCmdWrite, 0x49980158, mmCP_DFY_DATA_0 }, 2046 + { PwrCmdWrite, 0x45980170, mmCP_DFY_DATA_0 }, 2047 + { PwrCmdWrite, 0xc4200012, mmCP_DFY_DATA_0 }, 2048 + { PwrCmdWrite, 0x16200010, mmCP_DFY_DATA_0 }, 2049 + { PwrCmdWrite, 0x9a00fffe, mmCP_DFY_DATA_0 }, 2050 + { PwrCmdWrite, 0xccc00024, mmCP_DFY_DATA_0 }, 2051 + { PwrCmdWrite, 0xd1800025, mmCP_DFY_DATA_0 }, 2052 + { PwrCmdWrite, 0xc429324f, mmCP_DFY_DATA_0 }, 2053 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 2054 + { PwrCmdWrite, 0xce800026, mmCP_DFY_DATA_0 }, 2055 + { PwrCmdWrite, 0xcec00026, mmCP_DFY_DATA_0 }, 2056 + { PwrCmdWrite, 0xcf400026, mmCP_DFY_DATA_0 }, 2057 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2058 + { PwrCmdWrite, 0xcd000008, mmCP_DFY_DATA_0 }, 2059 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2060 + { PwrCmdWrite, 0xc40d325b, mmCP_DFY_DATA_0 }, 2061 + { PwrCmdWrite, 0x7d43c001, mmCP_DFY_DATA_0 }, 2062 + { PwrCmdWrite, 0x195400e8, mmCP_DFY_DATA_0 }, 2063 + { PwrCmdWrite, 0x1154000a, mmCP_DFY_DATA_0 }, 2064 + { PwrCmdWrite, 0x18dc00e8, mmCP_DFY_DATA_0 }, 2065 + { PwrCmdWrite, 0x05e80488, mmCP_DFY_DATA_0 }, 2066 + { PwrCmdWrite, 0x18d0006c, mmCP_DFY_DATA_0 }, 2067 + { PwrCmdWrite, 0x18f807f0, mmCP_DFY_DATA_0 }, 2068 + { PwrCmdWrite, 0x18e40077, mmCP_DFY_DATA_0 }, 2069 + { PwrCmdWrite, 0x18ec0199, mmCP_DFY_DATA_0 }, 2070 + { PwrCmdWrite, 0x7e6e400a, mmCP_DFY_DATA_0 }, 2071 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 2072 + { PwrCmdWrite, 0x8000048e, mmCP_DFY_DATA_0 }, 2073 + { PwrCmdWrite, 0x80000494, mmCP_DFY_DATA_0 }, 2074 + { PwrCmdWrite, 0x800004de, mmCP_DFY_DATA_0 }, 2075 + { PwrCmdWrite, 0x80000685, mmCP_DFY_DATA_0 }, 2076 + { PwrCmdWrite, 0x80000686, mmCP_DFY_DATA_0 }, 2077 + { PwrCmdWrite, 0x800006ac, mmCP_DFY_DATA_0 }, 2078 + { PwrCmdWrite, 0x1ccc001f, mmCP_DFY_DATA_0 }, 2079 + { PwrCmdWrite, 0xccc1325b, mmCP_DFY_DATA_0 }, 2080 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 2081 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 2082 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 2083 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2084 + { PwrCmdWrite, 0xc4293254, mmCP_DFY_DATA_0 }, 2085 + { PwrCmdWrite, 0x1264000a, mmCP_DFY_DATA_0 }, 2086 + { PwrCmdWrite, 0xc4300004, mmCP_DFY_DATA_0 }, 2087 + { PwrCmdWrite, 0x7d79400a, mmCP_DFY_DATA_0 }, 2088 + { PwrCmdWrite, 0x7e7a400a, mmCP_DFY_DATA_0 }, 2089 + { PwrCmdWrite, 0x52a8001e, mmCP_DFY_DATA_0 }, 2090 + { PwrCmdWrite, 0x15180001, mmCP_DFY_DATA_0 }, 2091 + { PwrCmdWrite, 0x7d69401a, mmCP_DFY_DATA_0 }, 2092 + { PwrCmdWrite, 0x202c007d, mmCP_DFY_DATA_0 }, 2093 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 2094 + { PwrCmdWrite, 0x95000008, mmCP_DFY_DATA_0 }, 2095 + { PwrCmdWrite, 0x95800028, mmCP_DFY_DATA_0 }, 2096 + { PwrCmdWrite, 0xc42d3267, mmCP_DFY_DATA_0 }, 2097 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 2098 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 2099 + { PwrCmdWrite, 0x1aec0028, mmCP_DFY_DATA_0 }, 2100 + { PwrCmdWrite, 0xc40d325c, mmCP_DFY_DATA_0 }, 2101 + { PwrCmdWrite, 0x800004cc, mmCP_DFY_DATA_0 }, 2102 + { PwrCmdWrite, 0xc42d3256, mmCP_DFY_DATA_0 }, 2103 + { PwrCmdWrite, 0xc419324e, mmCP_DFY_DATA_0 }, 2104 + { PwrCmdWrite, 0x26e8003f, mmCP_DFY_DATA_0 }, 2105 + { PwrCmdWrite, 0x1aec003e, mmCP_DFY_DATA_0 }, 2106 + { PwrCmdWrite, 0x12f4000e, mmCP_DFY_DATA_0 }, 2107 + { PwrCmdWrite, 0xc41d324d, mmCP_DFY_DATA_0 }, 2108 + { PwrCmdWrite, 0xc40d324f, mmCP_DFY_DATA_0 }, 2109 + { PwrCmdWrite, 0x7d75401a, mmCP_DFY_DATA_0 }, 2110 + { PwrCmdWrite, 0x04100002, mmCP_DFY_DATA_0 }, 2111 + { PwrCmdWrite, 0x7d290004, mmCP_DFY_DATA_0 }, 2112 + { PwrCmdWrite, 0x7f8f4001, mmCP_DFY_DATA_0 }, 2113 + { PwrCmdWrite, 0x7f52800f, mmCP_DFY_DATA_0 }, 2114 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 2115 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 2116 + { PwrCmdWrite, 0x50e00002, mmCP_DFY_DATA_0 }, 2117 + { PwrCmdWrite, 0x51980008, mmCP_DFY_DATA_0 }, 2118 + { PwrCmdWrite, 0x9a800002, mmCP_DFY_DATA_0 }, 2119 + { PwrCmdWrite, 0x800004d1, mmCP_DFY_DATA_0 }, 2120 + { PwrCmdWrite, 0x7d0dc002, mmCP_DFY_DATA_0 }, 2121 + { PwrCmdWrite, 0x6665fc00, mmCP_DFY_DATA_0 }, 2122 + { PwrCmdWrite, 0x7e5e401a, mmCP_DFY_DATA_0 }, 2123 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 2124 + { PwrCmdWrite, 0x7da1c011, mmCP_DFY_DATA_0 }, 2125 + { PwrCmdWrite, 0xd140000b, mmCP_DFY_DATA_0 }, 2126 + { PwrCmdWrite, 0xd1c00002, mmCP_DFY_DATA_0 }, 2127 + { PwrCmdWrite, 0x2a644000, mmCP_DFY_DATA_0 }, 2128 + { PwrCmdWrite, 0xce400002, mmCP_DFY_DATA_0 }, 2129 + { PwrCmdWrite, 0x7f534002, mmCP_DFY_DATA_0 }, 2130 + { PwrCmdWrite, 0x6665fc00, mmCP_DFY_DATA_0 }, 2131 + { PwrCmdWrite, 0x7e76401a, mmCP_DFY_DATA_0 }, 2132 + { PwrCmdWrite, 0xd1800002, mmCP_DFY_DATA_0 }, 2133 + { PwrCmdWrite, 0xce400002, mmCP_DFY_DATA_0 }, 2134 + { PwrCmdWrite, 0x800004d7, mmCP_DFY_DATA_0 }, 2135 + { PwrCmdWrite, 0xc42d325a, mmCP_DFY_DATA_0 }, 2136 + { PwrCmdWrite, 0xc4193258, mmCP_DFY_DATA_0 }, 2137 + { PwrCmdWrite, 0x1aec003e, mmCP_DFY_DATA_0 }, 2138 + { PwrCmdWrite, 0xc41d3257, mmCP_DFY_DATA_0 }, 2139 + { PwrCmdWrite, 0xc4213259, mmCP_DFY_DATA_0 }, 2140 + { PwrCmdWrite, 0x12f4000e, mmCP_DFY_DATA_0 }, 2141 + { PwrCmdWrite, 0x7d75401a, mmCP_DFY_DATA_0 }, 2142 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 2143 + { PwrCmdWrite, 0x52200002, mmCP_DFY_DATA_0 }, 2144 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 2145 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 2146 + { PwrCmdWrite, 0x7da1c011, mmCP_DFY_DATA_0 }, 2147 + { PwrCmdWrite, 0xd140000b, mmCP_DFY_DATA_0 }, 2148 + { PwrCmdWrite, 0xd1c00002, mmCP_DFY_DATA_0 }, 2149 + { PwrCmdWrite, 0x2a644000, mmCP_DFY_DATA_0 }, 2150 + { PwrCmdWrite, 0xce400002, mmCP_DFY_DATA_0 }, 2151 + { PwrCmdWrite, 0x202c003d, mmCP_DFY_DATA_0 }, 2152 + { PwrCmdWrite, 0xcf000008, mmCP_DFY_DATA_0 }, 2153 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2154 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 2155 + { PwrCmdWrite, 0xc42d325b, mmCP_DFY_DATA_0 }, 2156 + { PwrCmdWrite, 0x96c00001, mmCP_DFY_DATA_0 }, 2157 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2158 + { PwrCmdWrite, 0xc4193260, mmCP_DFY_DATA_0 }, 2159 + { PwrCmdWrite, 0x259c0007, mmCP_DFY_DATA_0 }, 2160 + { PwrCmdWrite, 0x15980004, mmCP_DFY_DATA_0 }, 2161 + { PwrCmdWrite, 0x05e804e3, mmCP_DFY_DATA_0 }, 2162 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 2163 + { PwrCmdWrite, 0x800004e7, mmCP_DFY_DATA_0 }, 2164 + { PwrCmdWrite, 0x800004f0, mmCP_DFY_DATA_0 }, 2165 + { PwrCmdWrite, 0x80000505, mmCP_DFY_DATA_0 }, 2166 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 2167 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2168 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2169 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2170 + { PwrCmdWrite, 0xc435325d, mmCP_DFY_DATA_0 }, 2171 + { PwrCmdWrite, 0xd801325b, mmCP_DFY_DATA_0 }, 2172 + { PwrCmdWrite, 0x277401ef, mmCP_DFY_DATA_0 }, 2173 + { PwrCmdWrite, 0xcf41325d, mmCP_DFY_DATA_0 }, 2174 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2175 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2176 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2177 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2178 + { PwrCmdWrite, 0x8c000671, mmCP_DFY_DATA_0 }, 2179 + { PwrCmdWrite, 0x9640fff4, mmCP_DFY_DATA_0 }, 2180 + { PwrCmdWrite, 0x17e00008, mmCP_DFY_DATA_0 }, 2181 + { PwrCmdWrite, 0xc418000d, mmCP_DFY_DATA_0 }, 2182 + { PwrCmdWrite, 0xce000009, mmCP_DFY_DATA_0 }, 2183 + { PwrCmdWrite, 0xd84131db, mmCP_DFY_DATA_0 }, 2184 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2185 + { PwrCmdWrite, 0xcd800009, mmCP_DFY_DATA_0 }, 2186 + { PwrCmdWrite, 0xc430001e, mmCP_DFY_DATA_0 }, 2187 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2188 + { PwrCmdWrite, 0xc42d325b, mmCP_DFY_DATA_0 }, 2189 + { PwrCmdWrite, 0x1b301ff8, mmCP_DFY_DATA_0 }, 2190 + { PwrCmdWrite, 0x2b300400, mmCP_DFY_DATA_0 }, 2191 + { PwrCmdWrite, 0x2330003f, mmCP_DFY_DATA_0 }, 2192 + { PwrCmdWrite, 0x26edf000, mmCP_DFY_DATA_0 }, 2193 + { PwrCmdWrite, 0x7ef2c00a, mmCP_DFY_DATA_0 }, 2194 + { PwrCmdWrite, 0xd8413260, mmCP_DFY_DATA_0 }, 2195 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 2196 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2197 + { PwrCmdWrite, 0x05a80507, mmCP_DFY_DATA_0 }, 2198 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 2199 + { PwrCmdWrite, 0x8000050c, mmCP_DFY_DATA_0 }, 2200 + { PwrCmdWrite, 0x80000528, mmCP_DFY_DATA_0 }, 2201 + { PwrCmdWrite, 0x8000057d, mmCP_DFY_DATA_0 }, 2202 + { PwrCmdWrite, 0x800005c2, mmCP_DFY_DATA_0 }, 2203 + { PwrCmdWrite, 0x800005f3, mmCP_DFY_DATA_0 }, 2204 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2205 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2206 + { PwrCmdWrite, 0x8c000671, mmCP_DFY_DATA_0 }, 2207 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2208 + { PwrCmdWrite, 0x9a400012, mmCP_DFY_DATA_0 }, 2209 + { PwrCmdWrite, 0x1bd400e8, mmCP_DFY_DATA_0 }, 2210 + { PwrCmdWrite, 0xc42c004a, mmCP_DFY_DATA_0 }, 2211 + { PwrCmdWrite, 0xcd40005e, mmCP_DFY_DATA_0 }, 2212 + { PwrCmdWrite, 0xc41c004d, mmCP_DFY_DATA_0 }, 2213 + { PwrCmdWrite, 0xcec0005e, mmCP_DFY_DATA_0 }, 2214 + { PwrCmdWrite, 0x99c0000c, mmCP_DFY_DATA_0 }, 2215 + { PwrCmdWrite, 0xc4100019, mmCP_DFY_DATA_0 }, 2216 + { PwrCmdWrite, 0x7d150005, mmCP_DFY_DATA_0 }, 2217 + { PwrCmdWrite, 0x25100001, mmCP_DFY_DATA_0 }, 2218 + { PwrCmdWrite, 0x99000008, mmCP_DFY_DATA_0 }, 2219 + { PwrCmdWrite, 0x8c00063b, mmCP_DFY_DATA_0 }, 2220 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2221 + { PwrCmdWrite, 0xc4113277, mmCP_DFY_DATA_0 }, 2222 + { PwrCmdWrite, 0x2511fffd, mmCP_DFY_DATA_0 }, 2223 + { PwrCmdWrite, 0xcd013277, mmCP_DFY_DATA_0 }, 2224 + { PwrCmdWrite, 0xd801326f, mmCP_DFY_DATA_0 }, 2225 + { PwrCmdWrite, 0x80000624, mmCP_DFY_DATA_0 }, 2226 + { PwrCmdWrite, 0x04240012, mmCP_DFY_DATA_0 }, 2227 + { PwrCmdWrite, 0x1be00fe4, mmCP_DFY_DATA_0 }, 2228 + { PwrCmdWrite, 0xce413260, mmCP_DFY_DATA_0 }, 2229 + { PwrCmdWrite, 0xce000066, mmCP_DFY_DATA_0 }, 2230 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2231 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2232 + { PwrCmdWrite, 0xd8400068, mmCP_DFY_DATA_0 }, 2233 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2234 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2235 + { PwrCmdWrite, 0x8c000671, mmCP_DFY_DATA_0 }, 2236 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2237 + { PwrCmdWrite, 0x9a400013, mmCP_DFY_DATA_0 }, 2238 + { PwrCmdWrite, 0x1bd400e8, mmCP_DFY_DATA_0 }, 2239 + { PwrCmdWrite, 0xc42c004a, mmCP_DFY_DATA_0 }, 2240 + { PwrCmdWrite, 0xcd40005e, mmCP_DFY_DATA_0 }, 2241 + { PwrCmdWrite, 0xc41c004d, mmCP_DFY_DATA_0 }, 2242 + { PwrCmdWrite, 0xcec0005e, mmCP_DFY_DATA_0 }, 2243 + { PwrCmdWrite, 0x99c0000d, mmCP_DFY_DATA_0 }, 2244 + { PwrCmdWrite, 0xc4100019, mmCP_DFY_DATA_0 }, 2245 + { PwrCmdWrite, 0x7d150005, mmCP_DFY_DATA_0 }, 2246 + { PwrCmdWrite, 0x25100001, mmCP_DFY_DATA_0 }, 2247 + { PwrCmdWrite, 0x99000009, mmCP_DFY_DATA_0 }, 2248 + { PwrCmdWrite, 0xd8400067, mmCP_DFY_DATA_0 }, 2249 + { PwrCmdWrite, 0x8c00063b, mmCP_DFY_DATA_0 }, 2250 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2251 + { PwrCmdWrite, 0xc4113277, mmCP_DFY_DATA_0 }, 2252 + { PwrCmdWrite, 0x2511fffd, mmCP_DFY_DATA_0 }, 2253 + { PwrCmdWrite, 0xcd013277, mmCP_DFY_DATA_0 }, 2254 + { PwrCmdWrite, 0xd801326f, mmCP_DFY_DATA_0 }, 2255 + { PwrCmdWrite, 0x80000624, mmCP_DFY_DATA_0 }, 2256 + { PwrCmdWrite, 0x1bd400e8, mmCP_DFY_DATA_0 }, 2257 + { PwrCmdWrite, 0xc42c0060, mmCP_DFY_DATA_0 }, 2258 + { PwrCmdWrite, 0x7ed6c005, mmCP_DFY_DATA_0 }, 2259 + { PwrCmdWrite, 0x26ec0001, mmCP_DFY_DATA_0 }, 2260 + { PwrCmdWrite, 0xc4113271, mmCP_DFY_DATA_0 }, 2261 + { PwrCmdWrite, 0xc4153270, mmCP_DFY_DATA_0 }, 2262 + { PwrCmdWrite, 0xc4193272, mmCP_DFY_DATA_0 }, 2263 + { PwrCmdWrite, 0xc41d3273, mmCP_DFY_DATA_0 }, 2264 + { PwrCmdWrite, 0x04280022, mmCP_DFY_DATA_0 }, 2265 + { PwrCmdWrite, 0x51100020, mmCP_DFY_DATA_0 }, 2266 + { PwrCmdWrite, 0x7d51401a, mmCP_DFY_DATA_0 }, 2267 + { PwrCmdWrite, 0xc4113274, mmCP_DFY_DATA_0 }, 2268 + { PwrCmdWrite, 0xc4213275, mmCP_DFY_DATA_0 }, 2269 + { PwrCmdWrite, 0xc4253276, mmCP_DFY_DATA_0 }, 2270 + { PwrCmdWrite, 0xc4313248, mmCP_DFY_DATA_0 }, 2271 + { PwrCmdWrite, 0xd1400061, mmCP_DFY_DATA_0 }, 2272 + { PwrCmdWrite, 0x2730000f, mmCP_DFY_DATA_0 }, 2273 + { PwrCmdWrite, 0x13300010, mmCP_DFY_DATA_0 }, 2274 + { PwrCmdWrite, 0x7db1800a, mmCP_DFY_DATA_0 }, 2275 + { PwrCmdWrite, 0xcd800060, mmCP_DFY_DATA_0 }, 2276 + { PwrCmdWrite, 0x96c00002, mmCP_DFY_DATA_0 }, 2277 + { PwrCmdWrite, 0x05dc0008, mmCP_DFY_DATA_0 }, 2278 + { PwrCmdWrite, 0xcdc00062, mmCP_DFY_DATA_0 }, 2279 + { PwrCmdWrite, 0x042c3000, mmCP_DFY_DATA_0 }, 2280 + { PwrCmdWrite, 0xcd000063, mmCP_DFY_DATA_0 }, 2281 + { PwrCmdWrite, 0xce000064, mmCP_DFY_DATA_0 }, 2282 + { PwrCmdWrite, 0xce400065, mmCP_DFY_DATA_0 }, 2283 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2284 + { PwrCmdWrite, 0xc42d3246, mmCP_DFY_DATA_0 }, 2285 + { PwrCmdWrite, 0xc4313245, mmCP_DFY_DATA_0 }, 2286 + { PwrCmdWrite, 0xc4353267, mmCP_DFY_DATA_0 }, 2287 + { PwrCmdWrite, 0xce813260, mmCP_DFY_DATA_0 }, 2288 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 2289 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 2290 + { PwrCmdWrite, 0xc820001f, mmCP_DFY_DATA_0 }, 2291 + { PwrCmdWrite, 0x1b700057, mmCP_DFY_DATA_0 }, 2292 + { PwrCmdWrite, 0x1b680213, mmCP_DFY_DATA_0 }, 2293 + { PwrCmdWrite, 0x1b740199, mmCP_DFY_DATA_0 }, 2294 + { PwrCmdWrite, 0x46ec0188, mmCP_DFY_DATA_0 }, 2295 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 2296 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 2297 + { PwrCmdWrite, 0x56240020, mmCP_DFY_DATA_0 }, 2298 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 2299 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 2300 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 2301 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 2302 + { PwrCmdWrite, 0x042c2000, mmCP_DFY_DATA_0 }, 2303 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2304 + { PwrCmdWrite, 0xc418000d, mmCP_DFY_DATA_0 }, 2305 + { PwrCmdWrite, 0x17e00008, mmCP_DFY_DATA_0 }, 2306 + { PwrCmdWrite, 0xce000009, mmCP_DFY_DATA_0 }, 2307 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2308 + { PwrCmdWrite, 0xc42d3267, mmCP_DFY_DATA_0 }, 2309 + { PwrCmdWrite, 0x26e01000, mmCP_DFY_DATA_0 }, 2310 + { PwrCmdWrite, 0x9a00fffe, mmCP_DFY_DATA_0 }, 2311 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2312 + { PwrCmdWrite, 0xd9c131fc, mmCP_DFY_DATA_0 }, 2313 + { PwrCmdWrite, 0xcd800009, mmCP_DFY_DATA_0 }, 2314 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2315 + { PwrCmdWrite, 0x96c00001, mmCP_DFY_DATA_0 }, 2316 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2317 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2318 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2319 + { PwrCmdWrite, 0xc4113277, mmCP_DFY_DATA_0 }, 2320 + { PwrCmdWrite, 0xc41c000b, mmCP_DFY_DATA_0 }, 2321 + { PwrCmdWrite, 0xc420000c, mmCP_DFY_DATA_0 }, 2322 + { PwrCmdWrite, 0x11dc0002, mmCP_DFY_DATA_0 }, 2323 + { PwrCmdWrite, 0x7de1c001, mmCP_DFY_DATA_0 }, 2324 + { PwrCmdWrite, 0x11dc0008, mmCP_DFY_DATA_0 }, 2325 + { PwrCmdWrite, 0x29dc0001, mmCP_DFY_DATA_0 }, 2326 + { PwrCmdWrite, 0x25140001, mmCP_DFY_DATA_0 }, 2327 + { PwrCmdWrite, 0x191807e4, mmCP_DFY_DATA_0 }, 2328 + { PwrCmdWrite, 0x192007ec, mmCP_DFY_DATA_0 }, 2329 + { PwrCmdWrite, 0x95400004, mmCP_DFY_DATA_0 }, 2330 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2331 + { PwrCmdWrite, 0xcdc1334a, mmCP_DFY_DATA_0 }, 2332 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2333 + { PwrCmdWrite, 0x9580000e, mmCP_DFY_DATA_0 }, 2334 + { PwrCmdWrite, 0x09980001, mmCP_DFY_DATA_0 }, 2335 + { PwrCmdWrite, 0x041c0001, mmCP_DFY_DATA_0 }, 2336 + { PwrCmdWrite, 0x95800005, mmCP_DFY_DATA_0 }, 2337 + { PwrCmdWrite, 0x09980001, mmCP_DFY_DATA_0 }, 2338 + { PwrCmdWrite, 0x51dc0001, mmCP_DFY_DATA_0 }, 2339 + { PwrCmdWrite, 0x69dc0001, mmCP_DFY_DATA_0 }, 2340 + { PwrCmdWrite, 0x9980fffd, mmCP_DFY_DATA_0 }, 2341 + { PwrCmdWrite, 0x7de20014, mmCP_DFY_DATA_0 }, 2342 + { PwrCmdWrite, 0x561c0020, mmCP_DFY_DATA_0 }, 2343 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2344 + { PwrCmdWrite, 0xce013344, mmCP_DFY_DATA_0 }, 2345 + { PwrCmdWrite, 0xcdc13345, mmCP_DFY_DATA_0 }, 2346 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2347 + { PwrCmdWrite, 0x95400022, mmCP_DFY_DATA_0 }, 2348 + { PwrCmdWrite, 0x042c3000, mmCP_DFY_DATA_0 }, 2349 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2350 + { PwrCmdWrite, 0xc42d3246, mmCP_DFY_DATA_0 }, 2351 + { PwrCmdWrite, 0xc4313245, mmCP_DFY_DATA_0 }, 2352 + { PwrCmdWrite, 0xc4353267, mmCP_DFY_DATA_0 }, 2353 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2354 + { PwrCmdWrite, 0xc425334d, mmCP_DFY_DATA_0 }, 2355 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 2356 + { PwrCmdWrite, 0x9640fffe, mmCP_DFY_DATA_0 }, 2357 + { PwrCmdWrite, 0xc419334e, mmCP_DFY_DATA_0 }, 2358 + { PwrCmdWrite, 0xc41d334f, mmCP_DFY_DATA_0 }, 2359 + { PwrCmdWrite, 0xc4213350, mmCP_DFY_DATA_0 }, 2360 + { PwrCmdWrite, 0xc4253351, mmCP_DFY_DATA_0 }, 2361 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 2362 + { PwrCmdWrite, 0x1b680057, mmCP_DFY_DATA_0 }, 2363 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 2364 + { PwrCmdWrite, 0x1b700213, mmCP_DFY_DATA_0 }, 2365 + { PwrCmdWrite, 0x1b740199, mmCP_DFY_DATA_0 }, 2366 + { PwrCmdWrite, 0x46ec01b0, mmCP_DFY_DATA_0 }, 2367 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 2368 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 2369 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2370 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 2371 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 2372 + { PwrCmdWrite, 0xcd800026, mmCP_DFY_DATA_0 }, 2373 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 2374 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 2375 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 2376 + { PwrCmdWrite, 0x042c2000, mmCP_DFY_DATA_0 }, 2377 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2378 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2379 + { PwrCmdWrite, 0xc42d3267, mmCP_DFY_DATA_0 }, 2380 + { PwrCmdWrite, 0x96c00001, mmCP_DFY_DATA_0 }, 2381 + { PwrCmdWrite, 0x04280032, mmCP_DFY_DATA_0 }, 2382 + { PwrCmdWrite, 0xce813260, mmCP_DFY_DATA_0 }, 2383 + { PwrCmdWrite, 0xd8800068, mmCP_DFY_DATA_0 }, 2384 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2385 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2386 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2387 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2388 + { PwrCmdWrite, 0x2010007d, mmCP_DFY_DATA_0 }, 2389 + { PwrCmdWrite, 0xcd01325b, mmCP_DFY_DATA_0 }, 2390 + { PwrCmdWrite, 0xc411325b, mmCP_DFY_DATA_0 }, 2391 + { PwrCmdWrite, 0x1910003e, mmCP_DFY_DATA_0 }, 2392 + { PwrCmdWrite, 0x9500fffe, mmCP_DFY_DATA_0 }, 2393 + { PwrCmdWrite, 0x04100040, mmCP_DFY_DATA_0 }, 2394 + { PwrCmdWrite, 0xcd00001b, mmCP_DFY_DATA_0 }, 2395 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 2396 + { PwrCmdWrite, 0xc410000f, mmCP_DFY_DATA_0 }, 2397 + { PwrCmdWrite, 0x9900ffff, mmCP_DFY_DATA_0 }, 2398 + { PwrCmdWrite, 0x04100060, mmCP_DFY_DATA_0 }, 2399 + { PwrCmdWrite, 0xcd00001b, mmCP_DFY_DATA_0 }, 2400 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 2401 + { PwrCmdWrite, 0xc410000f, mmCP_DFY_DATA_0 }, 2402 + { PwrCmdWrite, 0x9900ffff, mmCP_DFY_DATA_0 }, 2403 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2404 + { PwrCmdWrite, 0x2010003d, mmCP_DFY_DATA_0 }, 2405 + { PwrCmdWrite, 0xcd01325b, mmCP_DFY_DATA_0 }, 2406 + { PwrCmdWrite, 0xc4113277, mmCP_DFY_DATA_0 }, 2407 + { PwrCmdWrite, 0x25140001, mmCP_DFY_DATA_0 }, 2408 + { PwrCmdWrite, 0x191807e4, mmCP_DFY_DATA_0 }, 2409 + { PwrCmdWrite, 0x9540000b, mmCP_DFY_DATA_0 }, 2410 + { PwrCmdWrite, 0x2511fffd, mmCP_DFY_DATA_0 }, 2411 + { PwrCmdWrite, 0xcd013277, mmCP_DFY_DATA_0 }, 2412 + { PwrCmdWrite, 0xc41c000b, mmCP_DFY_DATA_0 }, 2413 + { PwrCmdWrite, 0xc420000c, mmCP_DFY_DATA_0 }, 2414 + { PwrCmdWrite, 0x11dc0002, mmCP_DFY_DATA_0 }, 2415 + { PwrCmdWrite, 0x7de1c001, mmCP_DFY_DATA_0 }, 2416 + { PwrCmdWrite, 0x11dc0008, mmCP_DFY_DATA_0 }, 2417 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2418 + { PwrCmdWrite, 0xcdc1334a, mmCP_DFY_DATA_0 }, 2419 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2420 + { PwrCmdWrite, 0x95800005, mmCP_DFY_DATA_0 }, 2421 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2422 + { PwrCmdWrite, 0xd8013344, mmCP_DFY_DATA_0 }, 2423 + { PwrCmdWrite, 0xd8013345, mmCP_DFY_DATA_0 }, 2424 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2425 + { PwrCmdWrite, 0xc4180050, mmCP_DFY_DATA_0 }, 2426 + { PwrCmdWrite, 0xc41c0052, mmCP_DFY_DATA_0 }, 2427 + { PwrCmdWrite, 0x04280042, mmCP_DFY_DATA_0 }, 2428 + { PwrCmdWrite, 0xcd813273, mmCP_DFY_DATA_0 }, 2429 + { PwrCmdWrite, 0xcdc13275, mmCP_DFY_DATA_0 }, 2430 + { PwrCmdWrite, 0xce813260, mmCP_DFY_DATA_0 }, 2431 + { PwrCmdWrite, 0xd9000068, mmCP_DFY_DATA_0 }, 2432 + { PwrCmdWrite, 0xd8400067, mmCP_DFY_DATA_0 }, 2433 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2434 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2435 + { PwrCmdWrite, 0x07d40000, mmCP_DFY_DATA_0 }, 2436 + { PwrCmdWrite, 0x8c00120d, mmCP_DFY_DATA_0 }, 2437 + { PwrCmdWrite, 0x8c00124f, mmCP_DFY_DATA_0 }, 2438 + { PwrCmdWrite, 0x8c001232, mmCP_DFY_DATA_0 }, 2439 + { PwrCmdWrite, 0x057c0000, mmCP_DFY_DATA_0 }, 2440 + { PwrCmdWrite, 0x042c3000, mmCP_DFY_DATA_0 }, 2441 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2442 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2443 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2444 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2445 + { PwrCmdWrite, 0xc42d3246, mmCP_DFY_DATA_0 }, 2446 + { PwrCmdWrite, 0xc4313245, mmCP_DFY_DATA_0 }, 2447 + { PwrCmdWrite, 0xc4353267, mmCP_DFY_DATA_0 }, 2448 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 2449 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 2450 + { PwrCmdWrite, 0x1b680057, mmCP_DFY_DATA_0 }, 2451 + { PwrCmdWrite, 0x1b700213, mmCP_DFY_DATA_0 }, 2452 + { PwrCmdWrite, 0x1b740199, mmCP_DFY_DATA_0 }, 2453 + { PwrCmdWrite, 0xc820001f, mmCP_DFY_DATA_0 }, 2454 + { PwrCmdWrite, 0x46ec0190, mmCP_DFY_DATA_0 }, 2455 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 2456 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 2457 + { PwrCmdWrite, 0x56240020, mmCP_DFY_DATA_0 }, 2458 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 2459 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 2460 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 2461 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 2462 + { PwrCmdWrite, 0x042c2000, mmCP_DFY_DATA_0 }, 2463 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2464 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2465 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2466 + { PwrCmdWrite, 0xc4153249, mmCP_DFY_DATA_0 }, 2467 + { PwrCmdWrite, 0x2154003d, mmCP_DFY_DATA_0 }, 2468 + { PwrCmdWrite, 0xc41c0019, mmCP_DFY_DATA_0 }, 2469 + { PwrCmdWrite, 0x1bd800e8, mmCP_DFY_DATA_0 }, 2470 + { PwrCmdWrite, 0x7dd9c005, mmCP_DFY_DATA_0 }, 2471 + { PwrCmdWrite, 0x25dc0001, mmCP_DFY_DATA_0 }, 2472 + { PwrCmdWrite, 0xc42c004a, mmCP_DFY_DATA_0 }, 2473 + { PwrCmdWrite, 0xcd80005e, mmCP_DFY_DATA_0 }, 2474 + { PwrCmdWrite, 0xc420004d, mmCP_DFY_DATA_0 }, 2475 + { PwrCmdWrite, 0xcec0005e, mmCP_DFY_DATA_0 }, 2476 + { PwrCmdWrite, 0x11dc0010, mmCP_DFY_DATA_0 }, 2477 + { PwrCmdWrite, 0x7e1e000a, mmCP_DFY_DATA_0 }, 2478 + { PwrCmdWrite, 0xcd413249, mmCP_DFY_DATA_0 }, 2479 + { PwrCmdWrite, 0xce01326f, mmCP_DFY_DATA_0 }, 2480 + { PwrCmdWrite, 0x28340001, mmCP_DFY_DATA_0 }, 2481 + { PwrCmdWrite, 0x05980008, mmCP_DFY_DATA_0 }, 2482 + { PwrCmdWrite, 0x7f598004, mmCP_DFY_DATA_0 }, 2483 + { PwrCmdWrite, 0xcd800035, mmCP_DFY_DATA_0 }, 2484 + { PwrCmdWrite, 0x1be800e8, mmCP_DFY_DATA_0 }, 2485 + { PwrCmdWrite, 0xc42c004a, mmCP_DFY_DATA_0 }, 2486 + { PwrCmdWrite, 0xce80005e, mmCP_DFY_DATA_0 }, 2487 + { PwrCmdWrite, 0xd801327a, mmCP_DFY_DATA_0 }, 2488 + { PwrCmdWrite, 0xd800005f, mmCP_DFY_DATA_0 }, 2489 + { PwrCmdWrite, 0xd8000075, mmCP_DFY_DATA_0 }, 2490 + { PwrCmdWrite, 0xd800007f, mmCP_DFY_DATA_0 }, 2491 + { PwrCmdWrite, 0xc424004c, mmCP_DFY_DATA_0 }, 2492 + { PwrCmdWrite, 0xce41326e, mmCP_DFY_DATA_0 }, 2493 + { PwrCmdWrite, 0xcec0005e, mmCP_DFY_DATA_0 }, 2494 + { PwrCmdWrite, 0x28240100, mmCP_DFY_DATA_0 }, 2495 + { PwrCmdWrite, 0x7e6a4004, mmCP_DFY_DATA_0 }, 2496 + { PwrCmdWrite, 0xce400079, mmCP_DFY_DATA_0 }, 2497 + { PwrCmdWrite, 0xc435325d, mmCP_DFY_DATA_0 }, 2498 + { PwrCmdWrite, 0x277401ef, mmCP_DFY_DATA_0 }, 2499 + { PwrCmdWrite, 0x04240020, mmCP_DFY_DATA_0 }, 2500 + { PwrCmdWrite, 0xce41325e, mmCP_DFY_DATA_0 }, 2501 + { PwrCmdWrite, 0xd801325b, mmCP_DFY_DATA_0 }, 2502 + { PwrCmdWrite, 0xd8013260, mmCP_DFY_DATA_0 }, 2503 + { PwrCmdWrite, 0xcf41325d, mmCP_DFY_DATA_0 }, 2504 + { PwrCmdWrite, 0xda000068, mmCP_DFY_DATA_0 }, 2505 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2506 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2507 + { PwrCmdWrite, 0xc4113277, mmCP_DFY_DATA_0 }, 2508 + { PwrCmdWrite, 0xc41c000b, mmCP_DFY_DATA_0 }, 2509 + { PwrCmdWrite, 0xc420000c, mmCP_DFY_DATA_0 }, 2510 + { PwrCmdWrite, 0x11dc0002, mmCP_DFY_DATA_0 }, 2511 + { PwrCmdWrite, 0x7de1c001, mmCP_DFY_DATA_0 }, 2512 + { PwrCmdWrite, 0x11dc0008, mmCP_DFY_DATA_0 }, 2513 + { PwrCmdWrite, 0x29dc0001, mmCP_DFY_DATA_0 }, 2514 + { PwrCmdWrite, 0x25140001, mmCP_DFY_DATA_0 }, 2515 + { PwrCmdWrite, 0x9540002d, mmCP_DFY_DATA_0 }, 2516 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2517 + { PwrCmdWrite, 0xcdc1334a, mmCP_DFY_DATA_0 }, 2518 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2519 + { PwrCmdWrite, 0x042c3000, mmCP_DFY_DATA_0 }, 2520 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2521 + { PwrCmdWrite, 0xc42d3246, mmCP_DFY_DATA_0 }, 2522 + { PwrCmdWrite, 0xc4313245, mmCP_DFY_DATA_0 }, 2523 + { PwrCmdWrite, 0xc4353267, mmCP_DFY_DATA_0 }, 2524 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2525 + { PwrCmdWrite, 0xc425334d, mmCP_DFY_DATA_0 }, 2526 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 2527 + { PwrCmdWrite, 0x9640fffe, mmCP_DFY_DATA_0 }, 2528 + { PwrCmdWrite, 0xc419334e, mmCP_DFY_DATA_0 }, 2529 + { PwrCmdWrite, 0xc41d334f, mmCP_DFY_DATA_0 }, 2530 + { PwrCmdWrite, 0xc4213350, mmCP_DFY_DATA_0 }, 2531 + { PwrCmdWrite, 0xc4253351, mmCP_DFY_DATA_0 }, 2532 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 2533 + { PwrCmdWrite, 0x1b680057, mmCP_DFY_DATA_0 }, 2534 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 2535 + { PwrCmdWrite, 0x1b700213, mmCP_DFY_DATA_0 }, 2536 + { PwrCmdWrite, 0x1b740199, mmCP_DFY_DATA_0 }, 2537 + { PwrCmdWrite, 0x46ec01b0, mmCP_DFY_DATA_0 }, 2538 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 2539 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 2540 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2541 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 2542 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 2543 + { PwrCmdWrite, 0xcd800026, mmCP_DFY_DATA_0 }, 2544 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 2545 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 2546 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 2547 + { PwrCmdWrite, 0x042c2000, mmCP_DFY_DATA_0 }, 2548 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2549 + { PwrCmdWrite, 0xcec13267, mmCP_DFY_DATA_0 }, 2550 + { PwrCmdWrite, 0xc42d3267, mmCP_DFY_DATA_0 }, 2551 + { PwrCmdWrite, 0x96c00001, mmCP_DFY_DATA_0 }, 2552 + { PwrCmdWrite, 0xc41c000b, mmCP_DFY_DATA_0 }, 2553 + { PwrCmdWrite, 0xc420000c, mmCP_DFY_DATA_0 }, 2554 + { PwrCmdWrite, 0x11dc0002, mmCP_DFY_DATA_0 }, 2555 + { PwrCmdWrite, 0x7de1c001, mmCP_DFY_DATA_0 }, 2556 + { PwrCmdWrite, 0x11dc0008, mmCP_DFY_DATA_0 }, 2557 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2558 + { PwrCmdWrite, 0xcdc1334a, mmCP_DFY_DATA_0 }, 2559 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2560 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2561 + { PwrCmdWrite, 0xc430000b, mmCP_DFY_DATA_0 }, 2562 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 2563 + { PwrCmdWrite, 0x04240000, mmCP_DFY_DATA_0 }, 2564 + { PwrCmdWrite, 0x9b000010, mmCP_DFY_DATA_0 }, 2565 + { PwrCmdWrite, 0x1be000e8, mmCP_DFY_DATA_0 }, 2566 + { PwrCmdWrite, 0x042c0000, mmCP_DFY_DATA_0 }, 2567 + { PwrCmdWrite, 0xc0360001, mmCP_DFY_DATA_0 }, 2568 + { PwrCmdWrite, 0x04280004, mmCP_DFY_DATA_0 }, 2569 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2570 + { PwrCmdWrite, 0xcec1c200, mmCP_DFY_DATA_0 }, 2571 + { PwrCmdWrite, 0xc63124dc, mmCP_DFY_DATA_0 }, 2572 + { PwrCmdWrite, 0x0aa80001, mmCP_DFY_DATA_0 }, 2573 + { PwrCmdWrite, 0x7ef6c001, mmCP_DFY_DATA_0 }, 2574 + { PwrCmdWrite, 0x7e724001, mmCP_DFY_DATA_0 }, 2575 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 2576 + { PwrCmdWrite, 0x9a80fff9, mmCP_DFY_DATA_0 }, 2577 + { PwrCmdWrite, 0xc02ee000, mmCP_DFY_DATA_0 }, 2578 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2579 + { PwrCmdWrite, 0xcec1c200, mmCP_DFY_DATA_0 }, 2580 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2581 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2582 + { PwrCmdWrite, 0xc4253260, mmCP_DFY_DATA_0 }, 2583 + { PwrCmdWrite, 0x7fc14001, mmCP_DFY_DATA_0 }, 2584 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 2585 + { PwrCmdWrite, 0x18cc003e, mmCP_DFY_DATA_0 }, 2586 + { PwrCmdWrite, 0x98c00005, mmCP_DFY_DATA_0 }, 2587 + { PwrCmdWrite, 0x194c1c03, mmCP_DFY_DATA_0 }, 2588 + { PwrCmdWrite, 0xccc0003b, mmCP_DFY_DATA_0 }, 2589 + { PwrCmdWrite, 0xc40c002d, mmCP_DFY_DATA_0 }, 2590 + { PwrCmdWrite, 0x80000697, mmCP_DFY_DATA_0 }, 2591 + { PwrCmdWrite, 0xc420004a, mmCP_DFY_DATA_0 }, 2592 + { PwrCmdWrite, 0x194c00e8, mmCP_DFY_DATA_0 }, 2593 + { PwrCmdWrite, 0xccc0005e, mmCP_DFY_DATA_0 }, 2594 + { PwrCmdWrite, 0xc40c004c, mmCP_DFY_DATA_0 }, 2595 + { PwrCmdWrite, 0xc431326d, mmCP_DFY_DATA_0 }, 2596 + { PwrCmdWrite, 0x27301fff, mmCP_DFY_DATA_0 }, 2597 + { PwrCmdWrite, 0xce00005e, mmCP_DFY_DATA_0 }, 2598 + { PwrCmdWrite, 0x7cf0c00d, mmCP_DFY_DATA_0 }, 2599 + { PwrCmdWrite, 0x98c00003, mmCP_DFY_DATA_0 }, 2600 + { PwrCmdWrite, 0x8c0007e0, mmCP_DFY_DATA_0 }, 2601 + { PwrCmdWrite, 0x95c00008, mmCP_DFY_DATA_0 }, 2602 + { PwrCmdWrite, 0xc430001e, mmCP_DFY_DATA_0 }, 2603 + { PwrCmdWrite, 0x1b301ff8, mmCP_DFY_DATA_0 }, 2604 + { PwrCmdWrite, 0x2b300400, mmCP_DFY_DATA_0 }, 2605 + { PwrCmdWrite, 0x2330003f, mmCP_DFY_DATA_0 }, 2606 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2607 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 2608 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2609 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2610 + { PwrCmdWrite, 0xd801325b, mmCP_DFY_DATA_0 }, 2611 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 2612 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 2613 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 2614 + { PwrCmdWrite, 0x25100007, mmCP_DFY_DATA_0 }, 2615 + { PwrCmdWrite, 0x31100005, mmCP_DFY_DATA_0 }, 2616 + { PwrCmdWrite, 0x9900008e, mmCP_DFY_DATA_0 }, 2617 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 2618 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 2619 + { PwrCmdWrite, 0x8000075e, mmCP_DFY_DATA_0 }, 2620 + { PwrCmdWrite, 0x202c007d, mmCP_DFY_DATA_0 }, 2621 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 2622 + { PwrCmdWrite, 0xc4293265, mmCP_DFY_DATA_0 }, 2623 + { PwrCmdWrite, 0xc4353254, mmCP_DFY_DATA_0 }, 2624 + { PwrCmdWrite, 0x26a9feff, mmCP_DFY_DATA_0 }, 2625 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2626 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2627 + { PwrCmdWrite, 0x1374000b, mmCP_DFY_DATA_0 }, 2628 + { PwrCmdWrite, 0xc40c000d, mmCP_DFY_DATA_0 }, 2629 + { PwrCmdWrite, 0xd8000009, mmCP_DFY_DATA_0 }, 2630 + { PwrCmdWrite, 0x1774000d, mmCP_DFY_DATA_0 }, 2631 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2632 + { PwrCmdWrite, 0xc41d30b8, mmCP_DFY_DATA_0 }, 2633 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2634 + { PwrCmdWrite, 0x95c00008, mmCP_DFY_DATA_0 }, 2635 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 2636 + { PwrCmdWrite, 0xd801325b, mmCP_DFY_DATA_0 }, 2637 + { PwrCmdWrite, 0xccc00009, mmCP_DFY_DATA_0 }, 2638 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2639 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 2640 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 2641 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2642 + { PwrCmdWrite, 0xce813265, mmCP_DFY_DATA_0 }, 2643 + { PwrCmdWrite, 0xcf400100, mmCP_DFY_DATA_0 }, 2644 + { PwrCmdWrite, 0xc00ac006, mmCP_DFY_DATA_0 }, 2645 + { PwrCmdWrite, 0xc00e0000, mmCP_DFY_DATA_0 }, 2646 + { PwrCmdWrite, 0x28880700, mmCP_DFY_DATA_0 }, 2647 + { PwrCmdWrite, 0x28cc0014, mmCP_DFY_DATA_0 }, 2648 + { PwrCmdWrite, 0x8c0006de, mmCP_DFY_DATA_0 }, 2649 + { PwrCmdWrite, 0x14cc0010, mmCP_DFY_DATA_0 }, 2650 + { PwrCmdWrite, 0x30d4000f, mmCP_DFY_DATA_0 }, 2651 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 2652 + { PwrCmdWrite, 0x10cc0010, mmCP_DFY_DATA_0 }, 2653 + { PwrCmdWrite, 0x28cc0014, mmCP_DFY_DATA_0 }, 2654 + { PwrCmdWrite, 0x99400009, mmCP_DFY_DATA_0 }, 2655 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2656 + { PwrCmdWrite, 0xc41530b8, mmCP_DFY_DATA_0 }, 2657 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2658 + { PwrCmdWrite, 0xc4193265, mmCP_DFY_DATA_0 }, 2659 + { PwrCmdWrite, 0x19980028, mmCP_DFY_DATA_0 }, 2660 + { PwrCmdWrite, 0x99400003, mmCP_DFY_DATA_0 }, 2661 + { PwrCmdWrite, 0x99800002, mmCP_DFY_DATA_0 }, 2662 + { PwrCmdWrite, 0x800006c8, mmCP_DFY_DATA_0 }, 2663 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 2664 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 2665 + { PwrCmdWrite, 0xd801325b, mmCP_DFY_DATA_0 }, 2666 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2667 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 2668 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 2669 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2670 + { PwrCmdWrite, 0x15600008, mmCP_DFY_DATA_0 }, 2671 + { PwrCmdWrite, 0xce000009, mmCP_DFY_DATA_0 }, 2672 + { PwrCmdWrite, 0xc8380023, mmCP_DFY_DATA_0 }, 2673 + { PwrCmdWrite, 0xc4180081, mmCP_DFY_DATA_0 }, 2674 + { PwrCmdWrite, 0x11a00002, mmCP_DFY_DATA_0 }, 2675 + { PwrCmdWrite, 0x7fa38011, mmCP_DFY_DATA_0 }, 2676 + { PwrCmdWrite, 0xc4100026, mmCP_DFY_DATA_0 }, 2677 + { PwrCmdWrite, 0x05980008, mmCP_DFY_DATA_0 }, 2678 + { PwrCmdWrite, 0x7d1a0002, mmCP_DFY_DATA_0 }, 2679 + { PwrCmdWrite, 0x282c2002, mmCP_DFY_DATA_0 }, 2680 + { PwrCmdWrite, 0x3e280008, mmCP_DFY_DATA_0 }, 2681 + { PwrCmdWrite, 0xcec00013, mmCP_DFY_DATA_0 }, 2682 + { PwrCmdWrite, 0xc4300027, mmCP_DFY_DATA_0 }, 2683 + { PwrCmdWrite, 0x042c0008, mmCP_DFY_DATA_0 }, 2684 + { PwrCmdWrite, 0xd3800025, mmCP_DFY_DATA_0 }, 2685 + { PwrCmdWrite, 0xcf000024, mmCP_DFY_DATA_0 }, 2686 + { PwrCmdWrite, 0x202400d0, mmCP_DFY_DATA_0 }, 2687 + { PwrCmdWrite, 0x7ca48001, mmCP_DFY_DATA_0 }, 2688 + { PwrCmdWrite, 0xcc800026, mmCP_DFY_DATA_0 }, 2689 + { PwrCmdWrite, 0xccc00026, mmCP_DFY_DATA_0 }, 2690 + { PwrCmdWrite, 0x28240006, mmCP_DFY_DATA_0 }, 2691 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 2692 + { PwrCmdWrite, 0x0a640001, mmCP_DFY_DATA_0 }, 2693 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 2694 + { PwrCmdWrite, 0x9a800004, mmCP_DFY_DATA_0 }, 2695 + { PwrCmdWrite, 0x32280000, mmCP_DFY_DATA_0 }, 2696 + { PwrCmdWrite, 0x9a800002, mmCP_DFY_DATA_0 }, 2697 + { PwrCmdWrite, 0x9a000000, mmCP_DFY_DATA_0 }, 2698 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2699 + { PwrCmdWrite, 0x24d8003f, mmCP_DFY_DATA_0 }, 2700 + { PwrCmdWrite, 0xd840003c, mmCP_DFY_DATA_0 }, 2701 + { PwrCmdWrite, 0xcec0003a, mmCP_DFY_DATA_0 }, 2702 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 2703 + { PwrCmdWrite, 0xcd81a2a4, mmCP_DFY_DATA_0 }, 2704 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2705 + { PwrCmdWrite, 0xc41d325d, mmCP_DFY_DATA_0 }, 2706 + { PwrCmdWrite, 0x25dc0007, mmCP_DFY_DATA_0 }, 2707 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 2708 + { PwrCmdWrite, 0x18cc003e, mmCP_DFY_DATA_0 }, 2709 + { PwrCmdWrite, 0x94c0000a, mmCP_DFY_DATA_0 }, 2710 + { PwrCmdWrite, 0xc420004a, mmCP_DFY_DATA_0 }, 2711 + { PwrCmdWrite, 0x194c00e8, mmCP_DFY_DATA_0 }, 2712 + { PwrCmdWrite, 0xccc0005e, mmCP_DFY_DATA_0 }, 2713 + { PwrCmdWrite, 0xc40c004c, mmCP_DFY_DATA_0 }, 2714 + { PwrCmdWrite, 0xc431326d, mmCP_DFY_DATA_0 }, 2715 + { PwrCmdWrite, 0x27301fff, mmCP_DFY_DATA_0 }, 2716 + { PwrCmdWrite, 0xce00005e, mmCP_DFY_DATA_0 }, 2717 + { PwrCmdWrite, 0x7cf0c00d, mmCP_DFY_DATA_0 }, 2718 + { PwrCmdWrite, 0x80000712, mmCP_DFY_DATA_0 }, 2719 + { PwrCmdWrite, 0x194c1c03, mmCP_DFY_DATA_0 }, 2720 + { PwrCmdWrite, 0xccc0003b, mmCP_DFY_DATA_0 }, 2721 + { PwrCmdWrite, 0xc40c002d, mmCP_DFY_DATA_0 }, 2722 + { PwrCmdWrite, 0x05e80714, mmCP_DFY_DATA_0 }, 2723 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 2724 + { PwrCmdWrite, 0x8000071c, mmCP_DFY_DATA_0 }, 2725 + { PwrCmdWrite, 0x80000720, mmCP_DFY_DATA_0 }, 2726 + { PwrCmdWrite, 0x80000747, mmCP_DFY_DATA_0 }, 2727 + { PwrCmdWrite, 0x8000071d, mmCP_DFY_DATA_0 }, 2728 + { PwrCmdWrite, 0x800007c4, mmCP_DFY_DATA_0 }, 2729 + { PwrCmdWrite, 0x80000732, mmCP_DFY_DATA_0 }, 2730 + { PwrCmdWrite, 0x80000745, mmCP_DFY_DATA_0 }, 2731 + { PwrCmdWrite, 0x80000744, mmCP_DFY_DATA_0 }, 2732 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2733 + { PwrCmdWrite, 0x98c00006, mmCP_DFY_DATA_0 }, 2734 + { PwrCmdWrite, 0x8000072e, mmCP_DFY_DATA_0 }, 2735 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2736 + { PwrCmdWrite, 0x98c00003, mmCP_DFY_DATA_0 }, 2737 + { PwrCmdWrite, 0x8c0007e0, mmCP_DFY_DATA_0 }, 2738 + { PwrCmdWrite, 0x95c0000c, mmCP_DFY_DATA_0 }, 2739 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2740 + { PwrCmdWrite, 0xc4253265, mmCP_DFY_DATA_0 }, 2741 + { PwrCmdWrite, 0x2a64008c, mmCP_DFY_DATA_0 }, 2742 + { PwrCmdWrite, 0xce413265, mmCP_DFY_DATA_0 }, 2743 + { PwrCmdWrite, 0xc430001e, mmCP_DFY_DATA_0 }, 2744 + { PwrCmdWrite, 0x1b301fe8, mmCP_DFY_DATA_0 }, 2745 + { PwrCmdWrite, 0x2b300400, mmCP_DFY_DATA_0 }, 2746 + { PwrCmdWrite, 0x2330003f, mmCP_DFY_DATA_0 }, 2747 + { PwrCmdWrite, 0xd8013260, mmCP_DFY_DATA_0 }, 2748 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 2749 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2750 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 2751 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 2752 + { PwrCmdWrite, 0x04240000, mmCP_DFY_DATA_0 }, 2753 + { PwrCmdWrite, 0x8000075e, mmCP_DFY_DATA_0 }, 2754 + { PwrCmdWrite, 0x98c0fff1, mmCP_DFY_DATA_0 }, 2755 + { PwrCmdWrite, 0x8c0007e0, mmCP_DFY_DATA_0 }, 2756 + { PwrCmdWrite, 0x95c00002, mmCP_DFY_DATA_0 }, 2757 + { PwrCmdWrite, 0x80000723, mmCP_DFY_DATA_0 }, 2758 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2759 + { PwrCmdWrite, 0xc41f02f1, mmCP_DFY_DATA_0 }, 2760 + { PwrCmdWrite, 0x95c00004, mmCP_DFY_DATA_0 }, 2761 + { PwrCmdWrite, 0xd8013247, mmCP_DFY_DATA_0 }, 2762 + { PwrCmdWrite, 0xd801325d, mmCP_DFY_DATA_0 }, 2763 + { PwrCmdWrite, 0x80000743, mmCP_DFY_DATA_0 }, 2764 + { PwrCmdWrite, 0xd8813247, mmCP_DFY_DATA_0 }, 2765 + { PwrCmdWrite, 0xd801325d, mmCP_DFY_DATA_0 }, 2766 + { PwrCmdWrite, 0xc4100004, mmCP_DFY_DATA_0 }, 2767 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2768 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2769 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 2770 + { PwrCmdWrite, 0xcd000008, mmCP_DFY_DATA_0 }, 2771 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2772 + { PwrCmdWrite, 0x04100001, mmCP_DFY_DATA_0 }, 2773 + { PwrCmdWrite, 0x98c0ffde, mmCP_DFY_DATA_0 }, 2774 + { PwrCmdWrite, 0x8000072e, mmCP_DFY_DATA_0 }, 2775 + { PwrCmdWrite, 0x98c00003, mmCP_DFY_DATA_0 }, 2776 + { PwrCmdWrite, 0x8c0007e0, mmCP_DFY_DATA_0 }, 2777 + { PwrCmdWrite, 0x95c00012, mmCP_DFY_DATA_0 }, 2778 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 2779 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2780 + { PwrCmdWrite, 0x15600008, mmCP_DFY_DATA_0 }, 2781 + { PwrCmdWrite, 0xc418000d, mmCP_DFY_DATA_0 }, 2782 + { PwrCmdWrite, 0xce000009, mmCP_DFY_DATA_0 }, 2783 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2784 + { PwrCmdWrite, 0xd84131db, mmCP_DFY_DATA_0 }, 2785 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 2786 + { PwrCmdWrite, 0xcd800009, mmCP_DFY_DATA_0 }, 2787 + { PwrCmdWrite, 0xc430001e, mmCP_DFY_DATA_0 }, 2788 + { PwrCmdWrite, 0x1b301ff8, mmCP_DFY_DATA_0 }, 2789 + { PwrCmdWrite, 0x2b300400, mmCP_DFY_DATA_0 }, 2790 + { PwrCmdWrite, 0x2330003f, mmCP_DFY_DATA_0 }, 2791 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2792 + { PwrCmdWrite, 0xd8413260, mmCP_DFY_DATA_0 }, 2793 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 2794 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2795 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 2796 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 2797 + { PwrCmdWrite, 0x04240000, mmCP_DFY_DATA_0 }, 2798 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2799 + { PwrCmdWrite, 0x041c3000, mmCP_DFY_DATA_0 }, 2800 + { PwrCmdWrite, 0xcdc13267, mmCP_DFY_DATA_0 }, 2801 + { PwrCmdWrite, 0xc41d3267, mmCP_DFY_DATA_0 }, 2802 + { PwrCmdWrite, 0xc41d3265, mmCP_DFY_DATA_0 }, 2803 + { PwrCmdWrite, 0x25dc8000, mmCP_DFY_DATA_0 }, 2804 + { PwrCmdWrite, 0x95c00007, mmCP_DFY_DATA_0 }, 2805 + { PwrCmdWrite, 0xc41c004a, mmCP_DFY_DATA_0 }, 2806 + { PwrCmdWrite, 0x195800e8, mmCP_DFY_DATA_0 }, 2807 + { PwrCmdWrite, 0xcd80005e, mmCP_DFY_DATA_0 }, 2808 + { PwrCmdWrite, 0xc418004c, mmCP_DFY_DATA_0 }, 2809 + { PwrCmdWrite, 0xcd81326e, mmCP_DFY_DATA_0 }, 2810 + { PwrCmdWrite, 0xcdc0005e, mmCP_DFY_DATA_0 }, 2811 + { PwrCmdWrite, 0xc41d3265, mmCP_DFY_DATA_0 }, 2812 + { PwrCmdWrite, 0x25dd7fff, mmCP_DFY_DATA_0 }, 2813 + { PwrCmdWrite, 0xcdc13265, mmCP_DFY_DATA_0 }, 2814 + { PwrCmdWrite, 0xc41d3246, mmCP_DFY_DATA_0 }, 2815 + { PwrCmdWrite, 0xc4193245, mmCP_DFY_DATA_0 }, 2816 + { PwrCmdWrite, 0xc42d3267, mmCP_DFY_DATA_0 }, 2817 + { PwrCmdWrite, 0x51e00020, mmCP_DFY_DATA_0 }, 2818 + { PwrCmdWrite, 0x7e1a001a, mmCP_DFY_DATA_0 }, 2819 + { PwrCmdWrite, 0x46200200, mmCP_DFY_DATA_0 }, 2820 + { PwrCmdWrite, 0x04283247, mmCP_DFY_DATA_0 }, 2821 + { PwrCmdWrite, 0x04300033, mmCP_DFY_DATA_0 }, 2822 + { PwrCmdWrite, 0x1af80057, mmCP_DFY_DATA_0 }, 2823 + { PwrCmdWrite, 0x1af40213, mmCP_DFY_DATA_0 }, 2824 + { PwrCmdWrite, 0x042c000c, mmCP_DFY_DATA_0 }, 2825 + { PwrCmdWrite, 0x7f7b400a, mmCP_DFY_DATA_0 }, 2826 + { PwrCmdWrite, 0x7f6f400a, mmCP_DFY_DATA_0 }, 2827 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 2828 + { PwrCmdWrite, 0xd2000025, mmCP_DFY_DATA_0 }, 2829 + { PwrCmdWrite, 0xcd800026, mmCP_DFY_DATA_0 }, 2830 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 2831 + { PwrCmdWrite, 0xc6990000, mmCP_DFY_DATA_0 }, 2832 + { PwrCmdWrite, 0x329c325d, mmCP_DFY_DATA_0 }, 2833 + { PwrCmdWrite, 0x99c00008, mmCP_DFY_DATA_0 }, 2834 + { PwrCmdWrite, 0x329c3269, mmCP_DFY_DATA_0 }, 2835 + { PwrCmdWrite, 0x99c00006, mmCP_DFY_DATA_0 }, 2836 + { PwrCmdWrite, 0x329c3267, mmCP_DFY_DATA_0 }, 2837 + { PwrCmdWrite, 0x95c00005, mmCP_DFY_DATA_0 }, 2838 + { PwrCmdWrite, 0xc01defff, mmCP_DFY_DATA_0 }, 2839 + { PwrCmdWrite, 0x7d9d8009, mmCP_DFY_DATA_0 }, 2840 + { PwrCmdWrite, 0x8000078a, mmCP_DFY_DATA_0 }, 2841 + { PwrCmdWrite, 0x25980000, mmCP_DFY_DATA_0 }, 2842 + { PwrCmdWrite, 0x0b300001, mmCP_DFY_DATA_0 }, 2843 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 2844 + { PwrCmdWrite, 0xcd800026, mmCP_DFY_DATA_0 }, 2845 + { PwrCmdWrite, 0x9b00fff2, mmCP_DFY_DATA_0 }, 2846 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2847 + { PwrCmdWrite, 0xc43c0012, mmCP_DFY_DATA_0 }, 2848 + { PwrCmdWrite, 0x9bc0ffff, mmCP_DFY_DATA_0 }, 2849 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2850 + { PwrCmdWrite, 0xd801325b, mmCP_DFY_DATA_0 }, 2851 + { PwrCmdWrite, 0xc431325a, mmCP_DFY_DATA_0 }, 2852 + { PwrCmdWrite, 0xc03e7ff0, mmCP_DFY_DATA_0 }, 2853 + { PwrCmdWrite, 0x7f3f0009, mmCP_DFY_DATA_0 }, 2854 + { PwrCmdWrite, 0xcf01325a, mmCP_DFY_DATA_0 }, 2855 + { PwrCmdWrite, 0xc4313249, mmCP_DFY_DATA_0 }, 2856 + { PwrCmdWrite, 0x1f30001f, mmCP_DFY_DATA_0 }, 2857 + { PwrCmdWrite, 0xcf013249, mmCP_DFY_DATA_0 }, 2858 + { PwrCmdWrite, 0xc03e4000, mmCP_DFY_DATA_0 }, 2859 + { PwrCmdWrite, 0xcfc13254, mmCP_DFY_DATA_0 }, 2860 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2861 + { PwrCmdWrite, 0xd8013254, mmCP_DFY_DATA_0 }, 2862 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 2863 + { PwrCmdWrite, 0xd801324f, mmCP_DFY_DATA_0 }, 2864 + { PwrCmdWrite, 0xd8013255, mmCP_DFY_DATA_0 }, 2865 + { PwrCmdWrite, 0xd8013247, mmCP_DFY_DATA_0 }, 2866 + { PwrCmdWrite, 0xd801325d, mmCP_DFY_DATA_0 }, 2867 + { PwrCmdWrite, 0x1b300028, mmCP_DFY_DATA_0 }, 2868 + { PwrCmdWrite, 0x8c00120d, mmCP_DFY_DATA_0 }, 2869 + { PwrCmdWrite, 0x8c001219, mmCP_DFY_DATA_0 }, 2870 + { PwrCmdWrite, 0x8c001232, mmCP_DFY_DATA_0 }, 2871 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2872 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2873 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2874 + { PwrCmdWrite, 0x9900000d, mmCP_DFY_DATA_0 }, 2875 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 2876 + { PwrCmdWrite, 0x9700000b, mmCP_DFY_DATA_0 }, 2877 + { PwrCmdWrite, 0xc43d30b5, mmCP_DFY_DATA_0 }, 2878 + { PwrCmdWrite, 0x1bf0003a, mmCP_DFY_DATA_0 }, 2879 + { PwrCmdWrite, 0x9b000b80, mmCP_DFY_DATA_0 }, 2880 + { PwrCmdWrite, 0x203c003a, mmCP_DFY_DATA_0 }, 2881 + { PwrCmdWrite, 0xc430000e, mmCP_DFY_DATA_0 }, 2882 + { PwrCmdWrite, 0x27300700, mmCP_DFY_DATA_0 }, 2883 + { PwrCmdWrite, 0x13300014, mmCP_DFY_DATA_0 }, 2884 + { PwrCmdWrite, 0x2b300001, mmCP_DFY_DATA_0 }, 2885 + { PwrCmdWrite, 0xcf0130b7, mmCP_DFY_DATA_0 }, 2886 + { PwrCmdWrite, 0xcfc130b5, mmCP_DFY_DATA_0 }, 2887 + { PwrCmdWrite, 0x46200008, mmCP_DFY_DATA_0 }, 2888 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 2889 + { PwrCmdWrite, 0xd2000025, mmCP_DFY_DATA_0 }, 2890 + { PwrCmdWrite, 0xd8000026, mmCP_DFY_DATA_0 }, 2891 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 2892 + { PwrCmdWrite, 0x043c2000, mmCP_DFY_DATA_0 }, 2893 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2894 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 2895 + { PwrCmdWrite, 0xc43d3267, mmCP_DFY_DATA_0 }, 2896 + { PwrCmdWrite, 0x9bc00001, mmCP_DFY_DATA_0 }, 2897 + { PwrCmdWrite, 0xccc00010, mmCP_DFY_DATA_0 }, 2898 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2899 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2900 + { PwrCmdWrite, 0xc4080007, mmCP_DFY_DATA_0 }, 2901 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 2902 + { PwrCmdWrite, 0xc4193260, mmCP_DFY_DATA_0 }, 2903 + { PwrCmdWrite, 0x259c0003, mmCP_DFY_DATA_0 }, 2904 + { PwrCmdWrite, 0x31dc0003, mmCP_DFY_DATA_0 }, 2905 + { PwrCmdWrite, 0x95c00014, mmCP_DFY_DATA_0 }, 2906 + { PwrCmdWrite, 0x040c3000, mmCP_DFY_DATA_0 }, 2907 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2908 + { PwrCmdWrite, 0xccc13267, mmCP_DFY_DATA_0 }, 2909 + { PwrCmdWrite, 0xc40d3267, mmCP_DFY_DATA_0 }, 2910 + { PwrCmdWrite, 0x18ec0057, mmCP_DFY_DATA_0 }, 2911 + { PwrCmdWrite, 0x18e40213, mmCP_DFY_DATA_0 }, 2912 + { PwrCmdWrite, 0x18cc0199, mmCP_DFY_DATA_0 }, 2913 + { PwrCmdWrite, 0x7cecc00a, mmCP_DFY_DATA_0 }, 2914 + { PwrCmdWrite, 0x7ce4c00a, mmCP_DFY_DATA_0 }, 2915 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 2916 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 2917 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 2918 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 2919 + { PwrCmdWrite, 0x8c000448, mmCP_DFY_DATA_0 }, 2920 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 2921 + { PwrCmdWrite, 0x040c2000, mmCP_DFY_DATA_0 }, 2922 + { PwrCmdWrite, 0xccc13267, mmCP_DFY_DATA_0 }, 2923 + { PwrCmdWrite, 0xc40d3267, mmCP_DFY_DATA_0 }, 2924 + { PwrCmdWrite, 0x94c00001, mmCP_DFY_DATA_0 }, 2925 + { PwrCmdWrite, 0xcc800010, mmCP_DFY_DATA_0 }, 2926 + { PwrCmdWrite, 0xd801325d, mmCP_DFY_DATA_0 }, 2927 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2928 + { PwrCmdWrite, 0xc418000b, mmCP_DFY_DATA_0 }, 2929 + { PwrCmdWrite, 0x31980002, mmCP_DFY_DATA_0 }, 2930 + { PwrCmdWrite, 0x041c0000, mmCP_DFY_DATA_0 }, 2931 + { PwrCmdWrite, 0x9980001c, mmCP_DFY_DATA_0 }, 2932 + { PwrCmdWrite, 0x19580066, mmCP_DFY_DATA_0 }, 2933 + { PwrCmdWrite, 0x15600008, mmCP_DFY_DATA_0 }, 2934 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 2935 + { PwrCmdWrite, 0xc0120001, mmCP_DFY_DATA_0 }, 2936 + { PwrCmdWrite, 0x11980003, mmCP_DFY_DATA_0 }, 2937 + { PwrCmdWrite, 0x04240004, mmCP_DFY_DATA_0 }, 2938 + { PwrCmdWrite, 0x7da18001, mmCP_DFY_DATA_0 }, 2939 + { PwrCmdWrite, 0xc4200007, mmCP_DFY_DATA_0 }, 2940 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 2941 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 2942 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2943 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2944 + { PwrCmdWrite, 0xccc1c200, mmCP_DFY_DATA_0 }, 2945 + { PwrCmdWrite, 0xc41d24db, mmCP_DFY_DATA_0 }, 2946 + { PwrCmdWrite, 0x7cd0c001, mmCP_DFY_DATA_0 }, 2947 + { PwrCmdWrite, 0x0a640001, mmCP_DFY_DATA_0 }, 2948 + { PwrCmdWrite, 0x7dd9c005, mmCP_DFY_DATA_0 }, 2949 + { PwrCmdWrite, 0x25dc0001, mmCP_DFY_DATA_0 }, 2950 + { PwrCmdWrite, 0x99c00002, mmCP_DFY_DATA_0 }, 2951 + { PwrCmdWrite, 0x9a40fff8, mmCP_DFY_DATA_0 }, 2952 + { PwrCmdWrite, 0xc418005e, mmCP_DFY_DATA_0 }, 2953 + { PwrCmdWrite, 0x9580137b, mmCP_DFY_DATA_0 }, 2954 + { PwrCmdWrite, 0xc00ee000, mmCP_DFY_DATA_0 }, 2955 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2956 + { PwrCmdWrite, 0xccc1c200, mmCP_DFY_DATA_0 }, 2957 + { PwrCmdWrite, 0xce000010, mmCP_DFY_DATA_0 }, 2958 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 2959 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 2960 + { PwrCmdWrite, 0xd840004f, mmCP_DFY_DATA_0 }, 2961 + { PwrCmdWrite, 0xc4113269, mmCP_DFY_DATA_0 }, 2962 + { PwrCmdWrite, 0x19080070, mmCP_DFY_DATA_0 }, 2963 + { PwrCmdWrite, 0x190c00e8, mmCP_DFY_DATA_0 }, 2964 + { PwrCmdWrite, 0x2510003f, mmCP_DFY_DATA_0 }, 2965 + { PwrCmdWrite, 0x2518000f, mmCP_DFY_DATA_0 }, 2966 + { PwrCmdWrite, 0xcd813268, mmCP_DFY_DATA_0 }, 2967 + { PwrCmdWrite, 0x05a80809, mmCP_DFY_DATA_0 }, 2968 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 2969 + { PwrCmdWrite, 0x8000080e, mmCP_DFY_DATA_0 }, 2970 + { PwrCmdWrite, 0x8000080f, mmCP_DFY_DATA_0 }, 2971 + { PwrCmdWrite, 0x80000898, mmCP_DFY_DATA_0 }, 2972 + { PwrCmdWrite, 0x80000946, mmCP_DFY_DATA_0 }, 2973 + { PwrCmdWrite, 0x800009e1, mmCP_DFY_DATA_0 }, 2974 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 2975 + { PwrCmdWrite, 0x04a80811, mmCP_DFY_DATA_0 }, 2976 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 2977 + { PwrCmdWrite, 0x80000815, mmCP_DFY_DATA_0 }, 2978 + { PwrCmdWrite, 0x80000834, mmCP_DFY_DATA_0 }, 2979 + { PwrCmdWrite, 0x8000085e, mmCP_DFY_DATA_0 }, 2980 + { PwrCmdWrite, 0x8000085e, mmCP_DFY_DATA_0 }, 2981 + { PwrCmdWrite, 0x04341001, mmCP_DFY_DATA_0 }, 2982 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 2983 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 2984 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 2985 + { PwrCmdWrite, 0xc42d3045, mmCP_DFY_DATA_0 }, 2986 + { PwrCmdWrite, 0xcec1c091, mmCP_DFY_DATA_0 }, 2987 + { PwrCmdWrite, 0x31300021, mmCP_DFY_DATA_0 }, 2988 + { PwrCmdWrite, 0x9700000b, mmCP_DFY_DATA_0 }, 2989 + { PwrCmdWrite, 0xd84002f1, mmCP_DFY_DATA_0 }, 2990 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 2991 + { PwrCmdWrite, 0xc43130b8, mmCP_DFY_DATA_0 }, 2992 + { PwrCmdWrite, 0x27300001, mmCP_DFY_DATA_0 }, 2993 + { PwrCmdWrite, 0xc4293059, mmCP_DFY_DATA_0 }, 2994 + { PwrCmdWrite, 0x56a8001f, mmCP_DFY_DATA_0 }, 2995 + { PwrCmdWrite, 0x7f2b000a, mmCP_DFY_DATA_0 }, 2996 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 2997 + { PwrCmdWrite, 0x9b000241, mmCP_DFY_DATA_0 }, 2998 + { PwrCmdWrite, 0x8000084a, mmCP_DFY_DATA_0 }, 2999 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3000 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3001 + { PwrCmdWrite, 0xc43130b6, mmCP_DFY_DATA_0 }, 3002 + { PwrCmdWrite, 0x9b000003, mmCP_DFY_DATA_0 }, 3003 + { PwrCmdWrite, 0xc02f0001, mmCP_DFY_DATA_0 }, 3004 + { PwrCmdWrite, 0xcec130b6, mmCP_DFY_DATA_0 }, 3005 + { PwrCmdWrite, 0xc4252087, mmCP_DFY_DATA_0 }, 3006 + { PwrCmdWrite, 0x5668001a, mmCP_DFY_DATA_0 }, 3007 + { PwrCmdWrite, 0x26a80005, mmCP_DFY_DATA_0 }, 3008 + { PwrCmdWrite, 0x9a80fffd, mmCP_DFY_DATA_0 }, 3009 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3010 + { PwrCmdWrite, 0xd80130b6, mmCP_DFY_DATA_0 }, 3011 + { PwrCmdWrite, 0x8000084a, mmCP_DFY_DATA_0 }, 3012 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 3013 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3014 + { PwrCmdWrite, 0x04341001, mmCP_DFY_DATA_0 }, 3015 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3016 + { PwrCmdWrite, 0xc431ecaa, mmCP_DFY_DATA_0 }, 3017 + { PwrCmdWrite, 0x27300080, mmCP_DFY_DATA_0 }, 3018 + { PwrCmdWrite, 0x9b000010, mmCP_DFY_DATA_0 }, 3019 + { PwrCmdWrite, 0xc02e0001, mmCP_DFY_DATA_0 }, 3020 + { PwrCmdWrite, 0xcec130b6, mmCP_DFY_DATA_0 }, 3021 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3022 + { PwrCmdWrite, 0xd80130b6, mmCP_DFY_DATA_0 }, 3023 + { PwrCmdWrite, 0x31300021, mmCP_DFY_DATA_0 }, 3024 + { PwrCmdWrite, 0x9700000a, mmCP_DFY_DATA_0 }, 3025 + { PwrCmdWrite, 0xd84002f1, mmCP_DFY_DATA_0 }, 3026 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3027 + { PwrCmdWrite, 0xc43130b8, mmCP_DFY_DATA_0 }, 3028 + { PwrCmdWrite, 0x27300001, mmCP_DFY_DATA_0 }, 3029 + { PwrCmdWrite, 0xc4293059, mmCP_DFY_DATA_0 }, 3030 + { PwrCmdWrite, 0x56a8001f, mmCP_DFY_DATA_0 }, 3031 + { PwrCmdWrite, 0x7f2b000a, mmCP_DFY_DATA_0 }, 3032 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 3033 + { PwrCmdWrite, 0x9b00021d, mmCP_DFY_DATA_0 }, 3034 + { PwrCmdWrite, 0xdd410000, mmCP_DFY_DATA_0 }, 3035 + { PwrCmdWrite, 0x040c0005, mmCP_DFY_DATA_0 }, 3036 + { PwrCmdWrite, 0xd84802e9, mmCP_DFY_DATA_0 }, 3037 + { PwrCmdWrite, 0x8c001a41, mmCP_DFY_DATA_0 }, 3038 + { PwrCmdWrite, 0xc43b02f1, mmCP_DFY_DATA_0 }, 3039 + { PwrCmdWrite, 0x9b800006, mmCP_DFY_DATA_0 }, 3040 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 3041 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3042 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3043 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 3044 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 3045 + { PwrCmdWrite, 0xcec80278, mmCP_DFY_DATA_0 }, 3046 + { PwrCmdWrite, 0x56f00020, mmCP_DFY_DATA_0 }, 3047 + { PwrCmdWrite, 0xcf080280, mmCP_DFY_DATA_0 }, 3048 + { PwrCmdWrite, 0x8c001608, mmCP_DFY_DATA_0 }, 3049 + { PwrCmdWrite, 0xdc140000, mmCP_DFY_DATA_0 }, 3050 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3051 + { PwrCmdWrite, 0xd8813247, mmCP_DFY_DATA_0 }, 3052 + { PwrCmdWrite, 0xd80802e9, mmCP_DFY_DATA_0 }, 3053 + { PwrCmdWrite, 0x8000085e, mmCP_DFY_DATA_0 }, 3054 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3055 + { PwrCmdWrite, 0x31100011, mmCP_DFY_DATA_0 }, 3056 + { PwrCmdWrite, 0x950001fa, mmCP_DFY_DATA_0 }, 3057 + { PwrCmdWrite, 0xc02e0001, mmCP_DFY_DATA_0 }, 3058 + { PwrCmdWrite, 0x2aec0008, mmCP_DFY_DATA_0 }, 3059 + { PwrCmdWrite, 0xc01c0020, mmCP_DFY_DATA_0 }, 3060 + { PwrCmdWrite, 0xc0180001, mmCP_DFY_DATA_0 }, 3061 + { PwrCmdWrite, 0xc00c0007, mmCP_DFY_DATA_0 }, 3062 + { PwrCmdWrite, 0x11a40006, mmCP_DFY_DATA_0 }, 3063 + { PwrCmdWrite, 0x7de6000a, mmCP_DFY_DATA_0 }, 3064 + { PwrCmdWrite, 0x10e40008, mmCP_DFY_DATA_0 }, 3065 + { PwrCmdWrite, 0x7e26000a, mmCP_DFY_DATA_0 }, 3066 + { PwrCmdWrite, 0x7e2e000a, mmCP_DFY_DATA_0 }, 3067 + { PwrCmdWrite, 0xce000013, mmCP_DFY_DATA_0 }, 3068 + { PwrCmdWrite, 0xc4113254, mmCP_DFY_DATA_0 }, 3069 + { PwrCmdWrite, 0x1d10ffdf, mmCP_DFY_DATA_0 }, 3070 + { PwrCmdWrite, 0x2110003e, mmCP_DFY_DATA_0 }, 3071 + { PwrCmdWrite, 0xcd013254, mmCP_DFY_DATA_0 }, 3072 + { PwrCmdWrite, 0xd801324f, mmCP_DFY_DATA_0 }, 3073 + { PwrCmdWrite, 0xd8013255, mmCP_DFY_DATA_0 }, 3074 + { PwrCmdWrite, 0x1d10ff9e, mmCP_DFY_DATA_0 }, 3075 + { PwrCmdWrite, 0xcd013254, mmCP_DFY_DATA_0 }, 3076 + { PwrCmdWrite, 0xd8013247, mmCP_DFY_DATA_0 }, 3077 + { PwrCmdWrite, 0xd801325d, mmCP_DFY_DATA_0 }, 3078 + { PwrCmdWrite, 0xd801325e, mmCP_DFY_DATA_0 }, 3079 + { PwrCmdWrite, 0xc0245301, mmCP_DFY_DATA_0 }, 3080 + { PwrCmdWrite, 0xce413249, mmCP_DFY_DATA_0 }, 3081 + { PwrCmdWrite, 0xd801325f, mmCP_DFY_DATA_0 }, 3082 + { PwrCmdWrite, 0xc425326c, mmCP_DFY_DATA_0 }, 3083 + { PwrCmdWrite, 0xc0121fff, mmCP_DFY_DATA_0 }, 3084 + { PwrCmdWrite, 0x29108eff, mmCP_DFY_DATA_0 }, 3085 + { PwrCmdWrite, 0x7e524009, mmCP_DFY_DATA_0 }, 3086 + { PwrCmdWrite, 0xce41326c, mmCP_DFY_DATA_0 }, 3087 + { PwrCmdWrite, 0xc425325a, mmCP_DFY_DATA_0 }, 3088 + { PwrCmdWrite, 0xc0127ff0, mmCP_DFY_DATA_0 }, 3089 + { PwrCmdWrite, 0x7e524009, mmCP_DFY_DATA_0 }, 3090 + { PwrCmdWrite, 0xce41325a, mmCP_DFY_DATA_0 }, 3091 + { PwrCmdWrite, 0xc425325b, mmCP_DFY_DATA_0 }, 3092 + { PwrCmdWrite, 0xc0131fff, mmCP_DFY_DATA_0 }, 3093 + { PwrCmdWrite, 0x7e524009, mmCP_DFY_DATA_0 }, 3094 + { PwrCmdWrite, 0xce41325b, mmCP_DFY_DATA_0 }, 3095 + { PwrCmdWrite, 0xd801326d, mmCP_DFY_DATA_0 }, 3096 + { PwrCmdWrite, 0xd801326e, mmCP_DFY_DATA_0 }, 3097 + { PwrCmdWrite, 0xd8013279, mmCP_DFY_DATA_0 }, 3098 + { PwrCmdWrite, 0x94c00003, mmCP_DFY_DATA_0 }, 3099 + { PwrCmdWrite, 0x08cc0001, mmCP_DFY_DATA_0 }, 3100 + { PwrCmdWrite, 0x80000866, mmCP_DFY_DATA_0 }, 3101 + { PwrCmdWrite, 0xc00c0007, mmCP_DFY_DATA_0 }, 3102 + { PwrCmdWrite, 0x95800003, mmCP_DFY_DATA_0 }, 3103 + { PwrCmdWrite, 0x09980001, mmCP_DFY_DATA_0 }, 3104 + { PwrCmdWrite, 0x80000866, mmCP_DFY_DATA_0 }, 3105 + { PwrCmdWrite, 0xc0100010, mmCP_DFY_DATA_0 }, 3106 + { PwrCmdWrite, 0x7dd2400c, mmCP_DFY_DATA_0 }, 3107 + { PwrCmdWrite, 0x9a400004, mmCP_DFY_DATA_0 }, 3108 + { PwrCmdWrite, 0xc0180003, mmCP_DFY_DATA_0 }, 3109 + { PwrCmdWrite, 0x7dd1c002, mmCP_DFY_DATA_0 }, 3110 + { PwrCmdWrite, 0x80000866, mmCP_DFY_DATA_0 }, 3111 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3112 + { PwrCmdWrite, 0x04a8089a, mmCP_DFY_DATA_0 }, 3113 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 3114 + { PwrCmdWrite, 0x8000089e, mmCP_DFY_DATA_0 }, 3115 + { PwrCmdWrite, 0x800008fa, mmCP_DFY_DATA_0 }, 3116 + { PwrCmdWrite, 0x80000945, mmCP_DFY_DATA_0 }, 3117 + { PwrCmdWrite, 0x80000945, mmCP_DFY_DATA_0 }, 3118 + { PwrCmdWrite, 0x31300022, mmCP_DFY_DATA_0 }, 3119 + { PwrCmdWrite, 0x97000007, mmCP_DFY_DATA_0 }, 3120 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 3121 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3122 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3123 + { PwrCmdWrite, 0xc43130b8, mmCP_DFY_DATA_0 }, 3124 + { PwrCmdWrite, 0x27300001, mmCP_DFY_DATA_0 }, 3125 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 3126 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3127 + { PwrCmdWrite, 0x04183000, mmCP_DFY_DATA_0 }, 3128 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 3129 + { PwrCmdWrite, 0xc4113246, mmCP_DFY_DATA_0 }, 3130 + { PwrCmdWrite, 0xc4193245, mmCP_DFY_DATA_0 }, 3131 + { PwrCmdWrite, 0x51100020, mmCP_DFY_DATA_0 }, 3132 + { PwrCmdWrite, 0x7d91801a, mmCP_DFY_DATA_0 }, 3133 + { PwrCmdWrite, 0x459801e0, mmCP_DFY_DATA_0 }, 3134 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 3135 + { PwrCmdWrite, 0x2738000f, mmCP_DFY_DATA_0 }, 3136 + { PwrCmdWrite, 0x1b342010, mmCP_DFY_DATA_0 }, 3137 + { PwrCmdWrite, 0x172c000c, mmCP_DFY_DATA_0 }, 3138 + { PwrCmdWrite, 0x26ec0800, mmCP_DFY_DATA_0 }, 3139 + { PwrCmdWrite, 0x1b30c012, mmCP_DFY_DATA_0 }, 3140 + { PwrCmdWrite, 0x7ef7400a, mmCP_DFY_DATA_0 }, 3141 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 3142 + { PwrCmdWrite, 0x2b300000, mmCP_DFY_DATA_0 }, 3143 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 3144 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3145 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3146 + { PwrCmdWrite, 0xc42c000f, mmCP_DFY_DATA_0 }, 3147 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 3148 + { PwrCmdWrite, 0xc8300011, mmCP_DFY_DATA_0 }, 3149 + { PwrCmdWrite, 0x97000036, mmCP_DFY_DATA_0 }, 3150 + { PwrCmdWrite, 0x45980008, mmCP_DFY_DATA_0 }, 3151 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3152 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3153 + { PwrCmdWrite, 0xc42c000f, mmCP_DFY_DATA_0 }, 3154 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 3155 + { PwrCmdWrite, 0xc8340011, mmCP_DFY_DATA_0 }, 3156 + { PwrCmdWrite, 0x9740002f, mmCP_DFY_DATA_0 }, 3157 + { PwrCmdWrite, 0xc43c0004, mmCP_DFY_DATA_0 }, 3158 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3159 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3160 + { PwrCmdWrite, 0x13b80001, mmCP_DFY_DATA_0 }, 3161 + { PwrCmdWrite, 0xc79d3300, mmCP_DFY_DATA_0 }, 3162 + { PwrCmdWrite, 0xc7a13301, mmCP_DFY_DATA_0 }, 3163 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 3164 + { PwrCmdWrite, 0xd8393300, mmCP_DFY_DATA_0 }, 3165 + { PwrCmdWrite, 0xc0260001, mmCP_DFY_DATA_0 }, 3166 + { PwrCmdWrite, 0xce793301, mmCP_DFY_DATA_0 }, 3167 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 3168 + { PwrCmdWrite, 0x964012a4, mmCP_DFY_DATA_0 }, 3169 + { PwrCmdWrite, 0x7c028009, mmCP_DFY_DATA_0 }, 3170 + { PwrCmdWrite, 0x9740001c, mmCP_DFY_DATA_0 }, 3171 + { PwrCmdWrite, 0x27580001, mmCP_DFY_DATA_0 }, 3172 + { PwrCmdWrite, 0x99800004, mmCP_DFY_DATA_0 }, 3173 + { PwrCmdWrite, 0x57740001, mmCP_DFY_DATA_0 }, 3174 + { PwrCmdWrite, 0x06a80400, mmCP_DFY_DATA_0 }, 3175 + { PwrCmdWrite, 0x800008d2, mmCP_DFY_DATA_0 }, 3176 + { PwrCmdWrite, 0xc4180006, mmCP_DFY_DATA_0 }, 3177 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3178 + { PwrCmdWrite, 0x29640001, mmCP_DFY_DATA_0 }, 3179 + { PwrCmdWrite, 0xce40001a, mmCP_DFY_DATA_0 }, 3180 + { PwrCmdWrite, 0x242c0000, mmCP_DFY_DATA_0 }, 3181 + { PwrCmdWrite, 0x06ec0400, mmCP_DFY_DATA_0 }, 3182 + { PwrCmdWrite, 0x57740001, mmCP_DFY_DATA_0 }, 3183 + { PwrCmdWrite, 0x27580001, mmCP_DFY_DATA_0 }, 3184 + { PwrCmdWrite, 0x9980fffd, mmCP_DFY_DATA_0 }, 3185 + { PwrCmdWrite, 0xc02620c0, mmCP_DFY_DATA_0 }, 3186 + { PwrCmdWrite, 0xce41c078, mmCP_DFY_DATA_0 }, 3187 + { PwrCmdWrite, 0xce81c080, mmCP_DFY_DATA_0 }, 3188 + { PwrCmdWrite, 0xcc01c081, mmCP_DFY_DATA_0 }, 3189 + { PwrCmdWrite, 0xcf01c082, mmCP_DFY_DATA_0 }, 3190 + { PwrCmdWrite, 0x57240020, mmCP_DFY_DATA_0 }, 3191 + { PwrCmdWrite, 0xce41c083, mmCP_DFY_DATA_0 }, 3192 + { PwrCmdWrite, 0xc0260400, mmCP_DFY_DATA_0 }, 3193 + { PwrCmdWrite, 0x7e6e400a, mmCP_DFY_DATA_0 }, 3194 + { PwrCmdWrite, 0xce41c084, mmCP_DFY_DATA_0 }, 3195 + { PwrCmdWrite, 0x7eae8001, mmCP_DFY_DATA_0 }, 3196 + { PwrCmdWrite, 0x7f2f0011, mmCP_DFY_DATA_0 }, 3197 + { PwrCmdWrite, 0x800008d2, mmCP_DFY_DATA_0 }, 3198 + { PwrCmdWrite, 0xc4180006, mmCP_DFY_DATA_0 }, 3199 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3200 + { PwrCmdWrite, 0xcdf93300, mmCP_DFY_DATA_0 }, 3201 + { PwrCmdWrite, 0xce393301, mmCP_DFY_DATA_0 }, 3202 + { PwrCmdWrite, 0xcfc00008, mmCP_DFY_DATA_0 }, 3203 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3204 + { PwrCmdWrite, 0xc43c0004, mmCP_DFY_DATA_0 }, 3205 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3206 + { PwrCmdWrite, 0x04182000, mmCP_DFY_DATA_0 }, 3207 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 3208 + { PwrCmdWrite, 0xcfc00008, mmCP_DFY_DATA_0 }, 3209 + { PwrCmdWrite, 0x80000903, mmCP_DFY_DATA_0 }, 3210 + { PwrCmdWrite, 0x31240022, mmCP_DFY_DATA_0 }, 3211 + { PwrCmdWrite, 0x96400008, mmCP_DFY_DATA_0 }, 3212 + { PwrCmdWrite, 0x04100001, mmCP_DFY_DATA_0 }, 3213 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 3214 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3215 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3216 + { PwrCmdWrite, 0xc43130b8, mmCP_DFY_DATA_0 }, 3217 + { PwrCmdWrite, 0x27300001, mmCP_DFY_DATA_0 }, 3218 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 3219 + { PwrCmdWrite, 0xc4af0280, mmCP_DFY_DATA_0 }, 3220 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 3221 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 3222 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 3223 + { PwrCmdWrite, 0x7ec30011, mmCP_DFY_DATA_0 }, 3224 + { PwrCmdWrite, 0x32f80000, mmCP_DFY_DATA_0 }, 3225 + { PwrCmdWrite, 0x9b800011, mmCP_DFY_DATA_0 }, 3226 + { PwrCmdWrite, 0x043c0020, mmCP_DFY_DATA_0 }, 3227 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 3228 + { PwrCmdWrite, 0x67180001, mmCP_DFY_DATA_0 }, 3229 + { PwrCmdWrite, 0x0bfc0001, mmCP_DFY_DATA_0 }, 3230 + { PwrCmdWrite, 0x57300001, mmCP_DFY_DATA_0 }, 3231 + { PwrCmdWrite, 0x95800006, mmCP_DFY_DATA_0 }, 3232 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 3233 + { PwrCmdWrite, 0x9a400003, mmCP_DFY_DATA_0 }, 3234 + { PwrCmdWrite, 0xd981325d, mmCP_DFY_DATA_0 }, 3235 + { PwrCmdWrite, 0x80000915, mmCP_DFY_DATA_0 }, 3236 + { PwrCmdWrite, 0xd9c1325d, mmCP_DFY_DATA_0 }, 3237 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 3238 + { PwrCmdWrite, 0x9bc0fff6, mmCP_DFY_DATA_0 }, 3239 + { PwrCmdWrite, 0x7f818001, mmCP_DFY_DATA_0 }, 3240 + { PwrCmdWrite, 0x8c001606, mmCP_DFY_DATA_0 }, 3241 + { PwrCmdWrite, 0x7d838001, mmCP_DFY_DATA_0 }, 3242 + { PwrCmdWrite, 0x94800010, mmCP_DFY_DATA_0 }, 3243 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3244 + { PwrCmdWrite, 0xc41d3259, mmCP_DFY_DATA_0 }, 3245 + { PwrCmdWrite, 0xc421325a, mmCP_DFY_DATA_0 }, 3246 + { PwrCmdWrite, 0x16240014, mmCP_DFY_DATA_0 }, 3247 + { PwrCmdWrite, 0x12640014, mmCP_DFY_DATA_0 }, 3248 + { PwrCmdWrite, 0x1a2801f0, mmCP_DFY_DATA_0 }, 3249 + { PwrCmdWrite, 0x12a80010, mmCP_DFY_DATA_0 }, 3250 + { PwrCmdWrite, 0x2620ffff, mmCP_DFY_DATA_0 }, 3251 + { PwrCmdWrite, 0x7e2a000a, mmCP_DFY_DATA_0 }, 3252 + { PwrCmdWrite, 0x7de1c001, mmCP_DFY_DATA_0 }, 3253 + { PwrCmdWrite, 0x7e5e400a, mmCP_DFY_DATA_0 }, 3254 + { PwrCmdWrite, 0x9b800002, mmCP_DFY_DATA_0 }, 3255 + { PwrCmdWrite, 0x2264003f, mmCP_DFY_DATA_0 }, 3256 + { PwrCmdWrite, 0xce41325a, mmCP_DFY_DATA_0 }, 3257 + { PwrCmdWrite, 0xd8013259, mmCP_DFY_DATA_0 }, 3258 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 3259 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 3260 + { PwrCmdWrite, 0x8c00075e, mmCP_DFY_DATA_0 }, 3261 + { PwrCmdWrite, 0xc4af0228, mmCP_DFY_DATA_0 }, 3262 + { PwrCmdWrite, 0x043c0000, mmCP_DFY_DATA_0 }, 3263 + { PwrCmdWrite, 0x66d80001, mmCP_DFY_DATA_0 }, 3264 + { PwrCmdWrite, 0x95800010, mmCP_DFY_DATA_0 }, 3265 + { PwrCmdWrite, 0x04300002, mmCP_DFY_DATA_0 }, 3266 + { PwrCmdWrite, 0x1330000d, mmCP_DFY_DATA_0 }, 3267 + { PwrCmdWrite, 0x13f40014, mmCP_DFY_DATA_0 }, 3268 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 3269 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3270 + { PwrCmdWrite, 0x04380040, mmCP_DFY_DATA_0 }, 3271 + { PwrCmdWrite, 0xcf80001b, mmCP_DFY_DATA_0 }, 3272 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3273 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3274 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3275 + { PwrCmdWrite, 0x04380060, mmCP_DFY_DATA_0 }, 3276 + { PwrCmdWrite, 0xcf80001b, mmCP_DFY_DATA_0 }, 3277 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3278 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3279 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3280 + { PwrCmdWrite, 0x07fc0001, mmCP_DFY_DATA_0 }, 3281 + { PwrCmdWrite, 0x56ec0001, mmCP_DFY_DATA_0 }, 3282 + { PwrCmdWrite, 0x33e80010, mmCP_DFY_DATA_0 }, 3283 + { PwrCmdWrite, 0x9680ffec, mmCP_DFY_DATA_0 }, 3284 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3285 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3286 + { PwrCmdWrite, 0x04a80948, mmCP_DFY_DATA_0 }, 3287 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 3288 + { PwrCmdWrite, 0x8000094c, mmCP_DFY_DATA_0 }, 3289 + { PwrCmdWrite, 0x8000099b, mmCP_DFY_DATA_0 }, 3290 + { PwrCmdWrite, 0x800009e0, mmCP_DFY_DATA_0 }, 3291 + { PwrCmdWrite, 0x800009e0, mmCP_DFY_DATA_0 }, 3292 + { PwrCmdWrite, 0xc43c0004, mmCP_DFY_DATA_0 }, 3293 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3294 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3295 + { PwrCmdWrite, 0x04183000, mmCP_DFY_DATA_0 }, 3296 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 3297 + { PwrCmdWrite, 0xc4113246, mmCP_DFY_DATA_0 }, 3298 + { PwrCmdWrite, 0xc4193245, mmCP_DFY_DATA_0 }, 3299 + { PwrCmdWrite, 0x51100020, mmCP_DFY_DATA_0 }, 3300 + { PwrCmdWrite, 0x7d91801a, mmCP_DFY_DATA_0 }, 3301 + { PwrCmdWrite, 0x459801e0, mmCP_DFY_DATA_0 }, 3302 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 3303 + { PwrCmdWrite, 0x2738000f, mmCP_DFY_DATA_0 }, 3304 + { PwrCmdWrite, 0x1b342010, mmCP_DFY_DATA_0 }, 3305 + { PwrCmdWrite, 0x172c000c, mmCP_DFY_DATA_0 }, 3306 + { PwrCmdWrite, 0x26ec0800, mmCP_DFY_DATA_0 }, 3307 + { PwrCmdWrite, 0x1b30c012, mmCP_DFY_DATA_0 }, 3308 + { PwrCmdWrite, 0x7ef7400a, mmCP_DFY_DATA_0 }, 3309 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 3310 + { PwrCmdWrite, 0x2b300000, mmCP_DFY_DATA_0 }, 3311 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 3312 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3313 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3314 + { PwrCmdWrite, 0xc42c000f, mmCP_DFY_DATA_0 }, 3315 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 3316 + { PwrCmdWrite, 0xc8300011, mmCP_DFY_DATA_0 }, 3317 + { PwrCmdWrite, 0x97000033, mmCP_DFY_DATA_0 }, 3318 + { PwrCmdWrite, 0x45980008, mmCP_DFY_DATA_0 }, 3319 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3320 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3321 + { PwrCmdWrite, 0xc42c000f, mmCP_DFY_DATA_0 }, 3322 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 3323 + { PwrCmdWrite, 0xc8340011, mmCP_DFY_DATA_0 }, 3324 + { PwrCmdWrite, 0x9740002c, mmCP_DFY_DATA_0 }, 3325 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3326 + { PwrCmdWrite, 0x13b80001, mmCP_DFY_DATA_0 }, 3327 + { PwrCmdWrite, 0xc79d3300, mmCP_DFY_DATA_0 }, 3328 + { PwrCmdWrite, 0xc7a13301, mmCP_DFY_DATA_0 }, 3329 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 3330 + { PwrCmdWrite, 0xd8393300, mmCP_DFY_DATA_0 }, 3331 + { PwrCmdWrite, 0xc0260001, mmCP_DFY_DATA_0 }, 3332 + { PwrCmdWrite, 0xce793301, mmCP_DFY_DATA_0 }, 3333 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 3334 + { PwrCmdWrite, 0x964011fe, mmCP_DFY_DATA_0 }, 3335 + { PwrCmdWrite, 0x7c028009, mmCP_DFY_DATA_0 }, 3336 + { PwrCmdWrite, 0x9740001c, mmCP_DFY_DATA_0 }, 3337 + { PwrCmdWrite, 0x27580001, mmCP_DFY_DATA_0 }, 3338 + { PwrCmdWrite, 0x99800004, mmCP_DFY_DATA_0 }, 3339 + { PwrCmdWrite, 0x57740001, mmCP_DFY_DATA_0 }, 3340 + { PwrCmdWrite, 0x06a80400, mmCP_DFY_DATA_0 }, 3341 + { PwrCmdWrite, 0x80000978, mmCP_DFY_DATA_0 }, 3342 + { PwrCmdWrite, 0xc4180006, mmCP_DFY_DATA_0 }, 3343 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3344 + { PwrCmdWrite, 0x29640001, mmCP_DFY_DATA_0 }, 3345 + { PwrCmdWrite, 0xce40001a, mmCP_DFY_DATA_0 }, 3346 + { PwrCmdWrite, 0x242c0000, mmCP_DFY_DATA_0 }, 3347 + { PwrCmdWrite, 0x06ec0400, mmCP_DFY_DATA_0 }, 3348 + { PwrCmdWrite, 0x57740001, mmCP_DFY_DATA_0 }, 3349 + { PwrCmdWrite, 0x27580001, mmCP_DFY_DATA_0 }, 3350 + { PwrCmdWrite, 0x9980fffd, mmCP_DFY_DATA_0 }, 3351 + { PwrCmdWrite, 0xc0260010, mmCP_DFY_DATA_0 }, 3352 + { PwrCmdWrite, 0xce41c078, mmCP_DFY_DATA_0 }, 3353 + { PwrCmdWrite, 0xcf01c080, mmCP_DFY_DATA_0 }, 3354 + { PwrCmdWrite, 0x57240020, mmCP_DFY_DATA_0 }, 3355 + { PwrCmdWrite, 0xce41c081, mmCP_DFY_DATA_0 }, 3356 + { PwrCmdWrite, 0xce81c082, mmCP_DFY_DATA_0 }, 3357 + { PwrCmdWrite, 0xcc01c083, mmCP_DFY_DATA_0 }, 3358 + { PwrCmdWrite, 0xc0260800, mmCP_DFY_DATA_0 }, 3359 + { PwrCmdWrite, 0x7e6e400a, mmCP_DFY_DATA_0 }, 3360 + { PwrCmdWrite, 0xce41c084, mmCP_DFY_DATA_0 }, 3361 + { PwrCmdWrite, 0x7eae8001, mmCP_DFY_DATA_0 }, 3362 + { PwrCmdWrite, 0x7f2f0011, mmCP_DFY_DATA_0 }, 3363 + { PwrCmdWrite, 0x80000978, mmCP_DFY_DATA_0 }, 3364 + { PwrCmdWrite, 0xc4180006, mmCP_DFY_DATA_0 }, 3365 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3366 + { PwrCmdWrite, 0xcdf93300, mmCP_DFY_DATA_0 }, 3367 + { PwrCmdWrite, 0xce393301, mmCP_DFY_DATA_0 }, 3368 + { PwrCmdWrite, 0x04182000, mmCP_DFY_DATA_0 }, 3369 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 3370 + { PwrCmdWrite, 0xcfc00008, mmCP_DFY_DATA_0 }, 3371 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3372 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 3373 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 3374 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 3375 + { PwrCmdWrite, 0x7dda801a, mmCP_DFY_DATA_0 }, 3376 + { PwrCmdWrite, 0x7d41c001, mmCP_DFY_DATA_0 }, 3377 + { PwrCmdWrite, 0x7e838011, mmCP_DFY_DATA_0 }, 3378 + { PwrCmdWrite, 0xd84802e9, mmCP_DFY_DATA_0 }, 3379 + { PwrCmdWrite, 0x8c001802, mmCP_DFY_DATA_0 }, 3380 + { PwrCmdWrite, 0x469c0390, mmCP_DFY_DATA_0 }, 3381 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 3382 + { PwrCmdWrite, 0x04183000, mmCP_DFY_DATA_0 }, 3383 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 3384 + { PwrCmdWrite, 0x1b342010, mmCP_DFY_DATA_0 }, 3385 + { PwrCmdWrite, 0x172c000c, mmCP_DFY_DATA_0 }, 3386 + { PwrCmdWrite, 0x26ec0800, mmCP_DFY_DATA_0 }, 3387 + { PwrCmdWrite, 0x1b30c012, mmCP_DFY_DATA_0 }, 3388 + { PwrCmdWrite, 0x7ef7400a, mmCP_DFY_DATA_0 }, 3389 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 3390 + { PwrCmdWrite, 0x2b300000, mmCP_DFY_DATA_0 }, 3391 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 3392 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3393 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3394 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3395 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3396 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3397 + { PwrCmdWrite, 0xc4200011, mmCP_DFY_DATA_0 }, 3398 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3399 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3400 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3401 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3402 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3403 + { PwrCmdWrite, 0xc4240011, mmCP_DFY_DATA_0 }, 3404 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3405 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3406 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3407 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3408 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3409 + { PwrCmdWrite, 0xc4280011, mmCP_DFY_DATA_0 }, 3410 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3411 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3412 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3413 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3414 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3415 + { PwrCmdWrite, 0xc42c0011, mmCP_DFY_DATA_0 }, 3416 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3417 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3418 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3419 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3420 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3421 + { PwrCmdWrite, 0xc4300011, mmCP_DFY_DATA_0 }, 3422 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3423 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3424 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3425 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3426 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3427 + { PwrCmdWrite, 0xc4340011, mmCP_DFY_DATA_0 }, 3428 + { PwrCmdWrite, 0x45dc0004, mmCP_DFY_DATA_0 }, 3429 + { PwrCmdWrite, 0xd1c0001e, mmCP_DFY_DATA_0 }, 3430 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3431 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 3432 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 3433 + { PwrCmdWrite, 0xc4380011, mmCP_DFY_DATA_0 }, 3434 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3435 + { PwrCmdWrite, 0x04182000, mmCP_DFY_DATA_0 }, 3436 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 3437 + { PwrCmdWrite, 0x043c0001, mmCP_DFY_DATA_0 }, 3438 + { PwrCmdWrite, 0x8c0014df, mmCP_DFY_DATA_0 }, 3439 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3440 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3441 + { PwrCmdWrite, 0x31280014, mmCP_DFY_DATA_0 }, 3442 + { PwrCmdWrite, 0xce8802ef, mmCP_DFY_DATA_0 }, 3443 + { PwrCmdWrite, 0x9a800062, mmCP_DFY_DATA_0 }, 3444 + { PwrCmdWrite, 0x31280034, mmCP_DFY_DATA_0 }, 3445 + { PwrCmdWrite, 0x9a800060, mmCP_DFY_DATA_0 }, 3446 + { PwrCmdWrite, 0x04a809e8, mmCP_DFY_DATA_0 }, 3447 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 3448 + { PwrCmdWrite, 0x800009ec, mmCP_DFY_DATA_0 }, 3449 + { PwrCmdWrite, 0x80000a45, mmCP_DFY_DATA_0 }, 3450 + { PwrCmdWrite, 0x80000a59, mmCP_DFY_DATA_0 }, 3451 + { PwrCmdWrite, 0x80000a59, mmCP_DFY_DATA_0 }, 3452 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3453 + { PwrCmdWrite, 0xc4113246, mmCP_DFY_DATA_0 }, 3454 + { PwrCmdWrite, 0xc4193245, mmCP_DFY_DATA_0 }, 3455 + { PwrCmdWrite, 0x51100020, mmCP_DFY_DATA_0 }, 3456 + { PwrCmdWrite, 0x7d91801a, mmCP_DFY_DATA_0 }, 3457 + { PwrCmdWrite, 0x45980400, mmCP_DFY_DATA_0 }, 3458 + { PwrCmdWrite, 0xc4b30258, mmCP_DFY_DATA_0 }, 3459 + { PwrCmdWrite, 0xc4a70250, mmCP_DFY_DATA_0 }, 3460 + { PwrCmdWrite, 0x53300020, mmCP_DFY_DATA_0 }, 3461 + { PwrCmdWrite, 0x7e72401a, mmCP_DFY_DATA_0 }, 3462 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 3463 + { PwrCmdWrite, 0x1b342010, mmCP_DFY_DATA_0 }, 3464 + { PwrCmdWrite, 0x172c000c, mmCP_DFY_DATA_0 }, 3465 + { PwrCmdWrite, 0x26ec0800, mmCP_DFY_DATA_0 }, 3466 + { PwrCmdWrite, 0x1b30c012, mmCP_DFY_DATA_0 }, 3467 + { PwrCmdWrite, 0x7ef7400a, mmCP_DFY_DATA_0 }, 3468 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 3469 + { PwrCmdWrite, 0x2b300000, mmCP_DFY_DATA_0 }, 3470 + { PwrCmdWrite, 0xcf00001c, mmCP_DFY_DATA_0 }, 3471 + { PwrCmdWrite, 0x042c0020, mmCP_DFY_DATA_0 }, 3472 + { PwrCmdWrite, 0x66740001, mmCP_DFY_DATA_0 }, 3473 + { PwrCmdWrite, 0x97400041, mmCP_DFY_DATA_0 }, 3474 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3475 + { PwrCmdWrite, 0x04383000, mmCP_DFY_DATA_0 }, 3476 + { PwrCmdWrite, 0xcf813267, mmCP_DFY_DATA_0 }, 3477 + { PwrCmdWrite, 0xc4393267, mmCP_DFY_DATA_0 }, 3478 + { PwrCmdWrite, 0x9b800001, mmCP_DFY_DATA_0 }, 3479 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3480 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3481 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3482 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3483 + { PwrCmdWrite, 0xc4300011, mmCP_DFY_DATA_0 }, 3484 + { PwrCmdWrite, 0x1b38007e, mmCP_DFY_DATA_0 }, 3485 + { PwrCmdWrite, 0x33b40003, mmCP_DFY_DATA_0 }, 3486 + { PwrCmdWrite, 0x9b400003, mmCP_DFY_DATA_0 }, 3487 + { PwrCmdWrite, 0x4598001c, mmCP_DFY_DATA_0 }, 3488 + { PwrCmdWrite, 0x9740002f, mmCP_DFY_DATA_0 }, 3489 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3490 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3491 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3492 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3493 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3494 + { PwrCmdWrite, 0xc40c0011, mmCP_DFY_DATA_0 }, 3495 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3496 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3497 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3498 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3499 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3500 + { PwrCmdWrite, 0xc4100011, mmCP_DFY_DATA_0 }, 3501 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3502 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3503 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3504 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3505 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3506 + { PwrCmdWrite, 0xc4340011, mmCP_DFY_DATA_0 }, 3507 + { PwrCmdWrite, 0xcf4002eb, mmCP_DFY_DATA_0 }, 3508 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3509 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3510 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3511 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3512 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3513 + { PwrCmdWrite, 0xc4340011, mmCP_DFY_DATA_0 }, 3514 + { PwrCmdWrite, 0xcf4002ec, mmCP_DFY_DATA_0 }, 3515 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3516 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3517 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3518 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3519 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3520 + { PwrCmdWrite, 0xc4340011, mmCP_DFY_DATA_0 }, 3521 + { PwrCmdWrite, 0xcf4002ed, mmCP_DFY_DATA_0 }, 3522 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3523 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 3524 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3525 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3526 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3527 + { PwrCmdWrite, 0xc4340011, mmCP_DFY_DATA_0 }, 3528 + { PwrCmdWrite, 0xcf4002ee, mmCP_DFY_DATA_0 }, 3529 + { PwrCmdWrite, 0x45980004, mmCP_DFY_DATA_0 }, 3530 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3531 + { PwrCmdWrite, 0x04382000, mmCP_DFY_DATA_0 }, 3532 + { PwrCmdWrite, 0xcf813267, mmCP_DFY_DATA_0 }, 3533 + { PwrCmdWrite, 0xd84802e9, mmCP_DFY_DATA_0 }, 3534 + { PwrCmdWrite, 0x8c001715, mmCP_DFY_DATA_0 }, 3535 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3536 + { PwrCmdWrite, 0x04382000, mmCP_DFY_DATA_0 }, 3537 + { PwrCmdWrite, 0xcf813267, mmCP_DFY_DATA_0 }, 3538 + { PwrCmdWrite, 0x56640001, mmCP_DFY_DATA_0 }, 3539 + { PwrCmdWrite, 0x0aec0001, mmCP_DFY_DATA_0 }, 3540 + { PwrCmdWrite, 0x9ac0ffbc, mmCP_DFY_DATA_0 }, 3541 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 3542 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 3543 + { PwrCmdWrite, 0x04341001, mmCP_DFY_DATA_0 }, 3544 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3545 + { PwrCmdWrite, 0x94800005, mmCP_DFY_DATA_0 }, 3546 + { PwrCmdWrite, 0xc431ecaa, mmCP_DFY_DATA_0 }, 3547 + { PwrCmdWrite, 0x27300080, mmCP_DFY_DATA_0 }, 3548 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 3549 + { PwrCmdWrite, 0x80000a55, mmCP_DFY_DATA_0 }, 3550 + { PwrCmdWrite, 0xc43130b6, mmCP_DFY_DATA_0 }, 3551 + { PwrCmdWrite, 0x233c0032, mmCP_DFY_DATA_0 }, 3552 + { PwrCmdWrite, 0xcfc130b6, mmCP_DFY_DATA_0 }, 3553 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 3554 + { PwrCmdWrite, 0xcf0130b6, mmCP_DFY_DATA_0 }, 3555 + { PwrCmdWrite, 0xc49302ef, mmCP_DFY_DATA_0 }, 3556 + { PwrCmdWrite, 0x99000003, mmCP_DFY_DATA_0 }, 3557 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3558 + { PwrCmdWrite, 0xd8413247, mmCP_DFY_DATA_0 }, 3559 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 3560 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3561 + { PwrCmdWrite, 0x80000a5a, mmCP_DFY_DATA_0 }, 3562 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3563 + { PwrCmdWrite, 0x04180001, mmCP_DFY_DATA_0 }, 3564 + { PwrCmdWrite, 0x5198001f, mmCP_DFY_DATA_0 }, 3565 + { PwrCmdWrite, 0xcd813268, mmCP_DFY_DATA_0 }, 3566 + { PwrCmdWrite, 0xc4193269, mmCP_DFY_DATA_0 }, 3567 + { PwrCmdWrite, 0x2598000f, mmCP_DFY_DATA_0 }, 3568 + { PwrCmdWrite, 0x9980fffe, mmCP_DFY_DATA_0 }, 3569 + { PwrCmdWrite, 0xd80002f1, mmCP_DFY_DATA_0 }, 3570 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3571 + { PwrCmdWrite, 0xd8013268, mmCP_DFY_DATA_0 }, 3572 + { PwrCmdWrite, 0xd800004f, mmCP_DFY_DATA_0 }, 3573 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 3574 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3575 + { PwrCmdWrite, 0x04380001, mmCP_DFY_DATA_0 }, 3576 + { PwrCmdWrite, 0x53b8001f, mmCP_DFY_DATA_0 }, 3577 + { PwrCmdWrite, 0x7db9801a, mmCP_DFY_DATA_0 }, 3578 + { PwrCmdWrite, 0xcd813268, mmCP_DFY_DATA_0 }, 3579 + { PwrCmdWrite, 0x80000a5e, mmCP_DFY_DATA_0 }, 3580 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 3581 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 3582 + { PwrCmdWrite, 0x94c01106, mmCP_DFY_DATA_0 }, 3583 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 3584 + { PwrCmdWrite, 0xcc412e01, mmCP_DFY_DATA_0 }, 3585 + { PwrCmdWrite, 0xcc412e02, mmCP_DFY_DATA_0 }, 3586 + { PwrCmdWrite, 0xcc412e03, mmCP_DFY_DATA_0 }, 3587 + { PwrCmdWrite, 0xcc412e00, mmCP_DFY_DATA_0 }, 3588 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 3589 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 3590 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 3591 + { PwrCmdWrite, 0x94c010fd, mmCP_DFY_DATA_0 }, 3592 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 3593 + { PwrCmdWrite, 0x50640020, mmCP_DFY_DATA_0 }, 3594 + { PwrCmdWrite, 0x7ce4c01a, mmCP_DFY_DATA_0 }, 3595 + { PwrCmdWrite, 0xd0c00072, mmCP_DFY_DATA_0 }, 3596 + { PwrCmdWrite, 0xc80c0072, mmCP_DFY_DATA_0 }, 3597 + { PwrCmdWrite, 0x58e801fc, mmCP_DFY_DATA_0 }, 3598 + { PwrCmdWrite, 0x12a80009, mmCP_DFY_DATA_0 }, 3599 + { PwrCmdWrite, 0x2aa80000, mmCP_DFY_DATA_0 }, 3600 + { PwrCmdWrite, 0xd0c0001e, mmCP_DFY_DATA_0 }, 3601 + { PwrCmdWrite, 0xce80001c, mmCP_DFY_DATA_0 }, 3602 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3603 + { PwrCmdWrite, 0xc424000f, mmCP_DFY_DATA_0 }, 3604 + { PwrCmdWrite, 0x9a40ffff, mmCP_DFY_DATA_0 }, 3605 + { PwrCmdWrite, 0x04240010, mmCP_DFY_DATA_0 }, 3606 + { PwrCmdWrite, 0x18dc01e2, mmCP_DFY_DATA_0 }, 3607 + { PwrCmdWrite, 0x7e5e4002, mmCP_DFY_DATA_0 }, 3608 + { PwrCmdWrite, 0x3e5c0003, mmCP_DFY_DATA_0 }, 3609 + { PwrCmdWrite, 0x3e540002, mmCP_DFY_DATA_0 }, 3610 + { PwrCmdWrite, 0x95c00006, mmCP_DFY_DATA_0 }, 3611 + { PwrCmdWrite, 0xc8180011, mmCP_DFY_DATA_0 }, 3612 + { PwrCmdWrite, 0xc8100011, mmCP_DFY_DATA_0 }, 3613 + { PwrCmdWrite, 0xc8100011, mmCP_DFY_DATA_0 }, 3614 + { PwrCmdWrite, 0x55140020, mmCP_DFY_DATA_0 }, 3615 + { PwrCmdWrite, 0x80000aa2, mmCP_DFY_DATA_0 }, 3616 + { PwrCmdWrite, 0x9540000a, mmCP_DFY_DATA_0 }, 3617 + { PwrCmdWrite, 0xc8180011, mmCP_DFY_DATA_0 }, 3618 + { PwrCmdWrite, 0x44cc0008, mmCP_DFY_DATA_0 }, 3619 + { PwrCmdWrite, 0x55900020, mmCP_DFY_DATA_0 }, 3620 + { PwrCmdWrite, 0xd0c0001e, mmCP_DFY_DATA_0 }, 3621 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3622 + { PwrCmdWrite, 0xc424000f, mmCP_DFY_DATA_0 }, 3623 + { PwrCmdWrite, 0x9a40ffff, mmCP_DFY_DATA_0 }, 3624 + { PwrCmdWrite, 0xc4140011, mmCP_DFY_DATA_0 }, 3625 + { PwrCmdWrite, 0x80000aa2, mmCP_DFY_DATA_0 }, 3626 + { PwrCmdWrite, 0x44cc0004, mmCP_DFY_DATA_0 }, 3627 + { PwrCmdWrite, 0xc4180011, mmCP_DFY_DATA_0 }, 3628 + { PwrCmdWrite, 0xd0c0001e, mmCP_DFY_DATA_0 }, 3629 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3630 + { PwrCmdWrite, 0xc424000f, mmCP_DFY_DATA_0 }, 3631 + { PwrCmdWrite, 0x9a40ffff, mmCP_DFY_DATA_0 }, 3632 + { PwrCmdWrite, 0xc8100011, mmCP_DFY_DATA_0 }, 3633 + { PwrCmdWrite, 0x55140020, mmCP_DFY_DATA_0 }, 3634 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 3635 + { PwrCmdWrite, 0xcd812e01, mmCP_DFY_DATA_0 }, 3636 + { PwrCmdWrite, 0xcd012e02, mmCP_DFY_DATA_0 }, 3637 + { PwrCmdWrite, 0xcd412e03, mmCP_DFY_DATA_0 }, 3638 + { PwrCmdWrite, 0xcc412e00, mmCP_DFY_DATA_0 }, 3639 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 3640 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 3641 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3642 + { PwrCmdWrite, 0xc4253249, mmCP_DFY_DATA_0 }, 3643 + { PwrCmdWrite, 0x2264003f, mmCP_DFY_DATA_0 }, 3644 + { PwrCmdWrite, 0xce413249, mmCP_DFY_DATA_0 }, 3645 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3646 + { PwrCmdWrite, 0xc4253249, mmCP_DFY_DATA_0 }, 3647 + { PwrCmdWrite, 0x96400001, mmCP_DFY_DATA_0 }, 3648 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 3649 + { PwrCmdWrite, 0xc410001a, mmCP_DFY_DATA_0 }, 3650 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 3651 + { PwrCmdWrite, 0xc4140028, mmCP_DFY_DATA_0 }, 3652 + { PwrCmdWrite, 0x95000005, mmCP_DFY_DATA_0 }, 3653 + { PwrCmdWrite, 0x1e64001f, mmCP_DFY_DATA_0 }, 3654 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3655 + { PwrCmdWrite, 0xce413249, mmCP_DFY_DATA_0 }, 3656 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 3657 + { PwrCmdWrite, 0x14d00010, mmCP_DFY_DATA_0 }, 3658 + { PwrCmdWrite, 0xc4180030, mmCP_DFY_DATA_0 }, 3659 + { PwrCmdWrite, 0xc41c0007, mmCP_DFY_DATA_0 }, 3660 + { PwrCmdWrite, 0x99000004, mmCP_DFY_DATA_0 }, 3661 + { PwrCmdWrite, 0x99400009, mmCP_DFY_DATA_0 }, 3662 + { PwrCmdWrite, 0x9980000c, mmCP_DFY_DATA_0 }, 3663 + { PwrCmdWrite, 0x80000ab1, mmCP_DFY_DATA_0 }, 3664 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 3665 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 3666 + { PwrCmdWrite, 0xc420001c, mmCP_DFY_DATA_0 }, 3667 + { PwrCmdWrite, 0xd8000032, mmCP_DFY_DATA_0 }, 3668 + { PwrCmdWrite, 0x9a0010ac, mmCP_DFY_DATA_0 }, 3669 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 3670 + { PwrCmdWrite, 0xd880003f, mmCP_DFY_DATA_0 }, 3671 + { PwrCmdWrite, 0x95c00002, mmCP_DFY_DATA_0 }, 3672 + { PwrCmdWrite, 0xd8c0003f, mmCP_DFY_DATA_0 }, 3673 + { PwrCmdWrite, 0x80001082, mmCP_DFY_DATA_0 }, 3674 + { PwrCmdWrite, 0xd8800040, mmCP_DFY_DATA_0 }, 3675 + { PwrCmdWrite, 0x95c00002, mmCP_DFY_DATA_0 }, 3676 + { PwrCmdWrite, 0xd8c00040, mmCP_DFY_DATA_0 }, 3677 + { PwrCmdWrite, 0x800010de, mmCP_DFY_DATA_0 }, 3678 + { PwrCmdWrite, 0xc010ffff, mmCP_DFY_DATA_0 }, 3679 + { PwrCmdWrite, 0x18d403f7, mmCP_DFY_DATA_0 }, 3680 + { PwrCmdWrite, 0x7d0cc009, mmCP_DFY_DATA_0 }, 3681 + { PwrCmdWrite, 0xc41b0367, mmCP_DFY_DATA_0 }, 3682 + { PwrCmdWrite, 0x7d958004, mmCP_DFY_DATA_0 }, 3683 + { PwrCmdWrite, 0x7d85800a, mmCP_DFY_DATA_0 }, 3684 + { PwrCmdWrite, 0xdc1e0000, mmCP_DFY_DATA_0 }, 3685 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 3686 + { PwrCmdWrite, 0xc424000b, mmCP_DFY_DATA_0 }, 3687 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 3688 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 3689 + { PwrCmdWrite, 0x18d001fc, mmCP_DFY_DATA_0 }, 3690 + { PwrCmdWrite, 0x05280adc, mmCP_DFY_DATA_0 }, 3691 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 3692 + { PwrCmdWrite, 0x80000af1, mmCP_DFY_DATA_0 }, 3693 + { PwrCmdWrite, 0x80000adf, mmCP_DFY_DATA_0 }, 3694 + { PwrCmdWrite, 0x80000ae7, mmCP_DFY_DATA_0 }, 3695 + { PwrCmdWrite, 0x8c000ace, mmCP_DFY_DATA_0 }, 3696 + { PwrCmdWrite, 0xd8c00013, mmCP_DFY_DATA_0 }, 3697 + { PwrCmdWrite, 0x96400002, mmCP_DFY_DATA_0 }, 3698 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3699 + { PwrCmdWrite, 0xcd8d2000, mmCP_DFY_DATA_0 }, 3700 + { PwrCmdWrite, 0x99c00010, mmCP_DFY_DATA_0 }, 3701 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3702 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3703 + { PwrCmdWrite, 0x18d803f7, mmCP_DFY_DATA_0 }, 3704 + { PwrCmdWrite, 0xc010ffff, mmCP_DFY_DATA_0 }, 3705 + { PwrCmdWrite, 0x7d0cc009, mmCP_DFY_DATA_0 }, 3706 + { PwrCmdWrite, 0x04140000, mmCP_DFY_DATA_0 }, 3707 + { PwrCmdWrite, 0x11940014, mmCP_DFY_DATA_0 }, 3708 + { PwrCmdWrite, 0x29544001, mmCP_DFY_DATA_0 }, 3709 + { PwrCmdWrite, 0x9a400002, mmCP_DFY_DATA_0 }, 3710 + { PwrCmdWrite, 0x29544003, mmCP_DFY_DATA_0 }, 3711 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3712 + { PwrCmdWrite, 0x80000af4, mmCP_DFY_DATA_0 }, 3713 + { PwrCmdWrite, 0xd8c00013, mmCP_DFY_DATA_0 }, 3714 + { PwrCmdWrite, 0x96400002, mmCP_DFY_DATA_0 }, 3715 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3716 + { PwrCmdWrite, 0xd44d2000, mmCP_DFY_DATA_0 }, 3717 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3718 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3719 + { PwrCmdWrite, 0xc424000b, mmCP_DFY_DATA_0 }, 3720 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 3721 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 3722 + { PwrCmdWrite, 0xd8c00013, mmCP_DFY_DATA_0 }, 3723 + { PwrCmdWrite, 0x96400002, mmCP_DFY_DATA_0 }, 3724 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3725 + { PwrCmdWrite, 0xd44dc000, mmCP_DFY_DATA_0 }, 3726 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3727 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3728 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 3729 + { PwrCmdWrite, 0x18d0003c, mmCP_DFY_DATA_0 }, 3730 + { PwrCmdWrite, 0x95000006, mmCP_DFY_DATA_0 }, 3731 + { PwrCmdWrite, 0x8c000ace, mmCP_DFY_DATA_0 }, 3732 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 3733 + { PwrCmdWrite, 0xcd8d2c00, mmCP_DFY_DATA_0 }, 3734 + { PwrCmdWrite, 0x99c00003, mmCP_DFY_DATA_0 }, 3735 + { PwrCmdWrite, 0x80000b0a, mmCP_DFY_DATA_0 }, 3736 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 3737 + { PwrCmdWrite, 0xd44d2c00, mmCP_DFY_DATA_0 }, 3738 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3739 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3740 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 3741 + { PwrCmdWrite, 0x28148004, mmCP_DFY_DATA_0 }, 3742 + { PwrCmdWrite, 0x24d800ff, mmCP_DFY_DATA_0 }, 3743 + { PwrCmdWrite, 0xccc00019, mmCP_DFY_DATA_0 }, 3744 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 3745 + { PwrCmdWrite, 0xd4593240, mmCP_DFY_DATA_0 }, 3746 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3747 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3748 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 3749 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 3750 + { PwrCmdWrite, 0x94c0105e, mmCP_DFY_DATA_0 }, 3751 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 3752 + { PwrCmdWrite, 0x50540020, mmCP_DFY_DATA_0 }, 3753 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 3754 + { PwrCmdWrite, 0x2198003f, mmCP_DFY_DATA_0 }, 3755 + { PwrCmdWrite, 0x199c0034, mmCP_DFY_DATA_0 }, 3756 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 3757 + { PwrCmdWrite, 0x95c00028, mmCP_DFY_DATA_0 }, 3758 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 3759 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 3760 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3761 + { PwrCmdWrite, 0xc42d324f, mmCP_DFY_DATA_0 }, 3762 + { PwrCmdWrite, 0xc4313255, mmCP_DFY_DATA_0 }, 3763 + { PwrCmdWrite, 0x7ef3400c, mmCP_DFY_DATA_0 }, 3764 + { PwrCmdWrite, 0x9b400021, mmCP_DFY_DATA_0 }, 3765 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 3766 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 3767 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 3768 + { PwrCmdWrite, 0x14e80001, mmCP_DFY_DATA_0 }, 3769 + { PwrCmdWrite, 0x9a8000af, mmCP_DFY_DATA_0 }, 3770 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 3771 + { PwrCmdWrite, 0x041c0002, mmCP_DFY_DATA_0 }, 3772 + { PwrCmdWrite, 0x042c01c8, mmCP_DFY_DATA_0 }, 3773 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 3774 + { PwrCmdWrite, 0xccc00010, mmCP_DFY_DATA_0 }, 3775 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 3776 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 3777 + { PwrCmdWrite, 0x94c01043, mmCP_DFY_DATA_0 }, 3778 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 3779 + { PwrCmdWrite, 0x50540020, mmCP_DFY_DATA_0 }, 3780 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 3781 + { PwrCmdWrite, 0x18a01fe8, mmCP_DFY_DATA_0 }, 3782 + { PwrCmdWrite, 0x3620005c, mmCP_DFY_DATA_0 }, 3783 + { PwrCmdWrite, 0x9a00000e, mmCP_DFY_DATA_0 }, 3784 + { PwrCmdWrite, 0x2464003f, mmCP_DFY_DATA_0 }, 3785 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 3786 + { PwrCmdWrite, 0xc6290ce7, mmCP_DFY_DATA_0 }, 3787 + { PwrCmdWrite, 0x16ac001f, mmCP_DFY_DATA_0 }, 3788 + { PwrCmdWrite, 0x96c00004, mmCP_DFY_DATA_0 }, 3789 + { PwrCmdWrite, 0x26ac003f, mmCP_DFY_DATA_0 }, 3790 + { PwrCmdWrite, 0x7ee6c00d, mmCP_DFY_DATA_0 }, 3791 + { PwrCmdWrite, 0x96c00005, mmCP_DFY_DATA_0 }, 3792 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 3793 + { PwrCmdWrite, 0x2620000f, mmCP_DFY_DATA_0 }, 3794 + { PwrCmdWrite, 0x9a00fff8, mmCP_DFY_DATA_0 }, 3795 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 3796 + { PwrCmdWrite, 0xce000367, mmCP_DFY_DATA_0 }, 3797 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 3798 + { PwrCmdWrite, 0x9640102e, mmCP_DFY_DATA_0 }, 3799 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 3800 + { PwrCmdWrite, 0x199c0037, mmCP_DFY_DATA_0 }, 3801 + { PwrCmdWrite, 0x19a00035, mmCP_DFY_DATA_0 }, 3802 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 3803 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3804 + { PwrCmdWrite, 0x95c0005d, mmCP_DFY_DATA_0 }, 3805 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 3806 + { PwrCmdWrite, 0xc42d3256, mmCP_DFY_DATA_0 }, 3807 + { PwrCmdWrite, 0xc431325a, mmCP_DFY_DATA_0 }, 3808 + { PwrCmdWrite, 0x2330003f, mmCP_DFY_DATA_0 }, 3809 + { PwrCmdWrite, 0x16f8001f, mmCP_DFY_DATA_0 }, 3810 + { PwrCmdWrite, 0x9780000d, mmCP_DFY_DATA_0 }, 3811 + { PwrCmdWrite, 0xc4253248, mmCP_DFY_DATA_0 }, 3812 + { PwrCmdWrite, 0xc035f0ff, mmCP_DFY_DATA_0 }, 3813 + { PwrCmdWrite, 0x7e764009, mmCP_DFY_DATA_0 }, 3814 + { PwrCmdWrite, 0x19b401f8, mmCP_DFY_DATA_0 }, 3815 + { PwrCmdWrite, 0x13740008, mmCP_DFY_DATA_0 }, 3816 + { PwrCmdWrite, 0x7e76400a, mmCP_DFY_DATA_0 }, 3817 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3818 + { PwrCmdWrite, 0xce413248, mmCP_DFY_DATA_0 }, 3819 + { PwrCmdWrite, 0xcf01325a, mmCP_DFY_DATA_0 }, 3820 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 3821 + { PwrCmdWrite, 0xc431325a, mmCP_DFY_DATA_0 }, 3822 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 3823 + { PwrCmdWrite, 0x7d15001a, mmCP_DFY_DATA_0 }, 3824 + { PwrCmdWrite, 0xd1000072, mmCP_DFY_DATA_0 }, 3825 + { PwrCmdWrite, 0xc8100072, mmCP_DFY_DATA_0 }, 3826 + { PwrCmdWrite, 0x55140020, mmCP_DFY_DATA_0 }, 3827 + { PwrCmdWrite, 0x199c0034, mmCP_DFY_DATA_0 }, 3828 + { PwrCmdWrite, 0xd8400010, mmCP_DFY_DATA_0 }, 3829 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 3830 + { PwrCmdWrite, 0x9b800004, mmCP_DFY_DATA_0 }, 3831 + { PwrCmdWrite, 0x1ae4003e, mmCP_DFY_DATA_0 }, 3832 + { PwrCmdWrite, 0xce400008, mmCP_DFY_DATA_0 }, 3833 + { PwrCmdWrite, 0x80000b7c, mmCP_DFY_DATA_0 }, 3834 + { PwrCmdWrite, 0xc4353254, mmCP_DFY_DATA_0 }, 3835 + { PwrCmdWrite, 0x16a80008, mmCP_DFY_DATA_0 }, 3836 + { PwrCmdWrite, 0x1aec003c, mmCP_DFY_DATA_0 }, 3837 + { PwrCmdWrite, 0x19a4003f, mmCP_DFY_DATA_0 }, 3838 + { PwrCmdWrite, 0x12a80015, mmCP_DFY_DATA_0 }, 3839 + { PwrCmdWrite, 0x12ec001f, mmCP_DFY_DATA_0 }, 3840 + { PwrCmdWrite, 0x1374000b, mmCP_DFY_DATA_0 }, 3841 + { PwrCmdWrite, 0x7eae800a, mmCP_DFY_DATA_0 }, 3842 + { PwrCmdWrite, 0xc02e4000, mmCP_DFY_DATA_0 }, 3843 + { PwrCmdWrite, 0x1774000d, mmCP_DFY_DATA_0 }, 3844 + { PwrCmdWrite, 0x7eae800a, mmCP_DFY_DATA_0 }, 3845 + { PwrCmdWrite, 0xce400008, mmCP_DFY_DATA_0 }, 3846 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 3847 + { PwrCmdWrite, 0x95c00005, mmCP_DFY_DATA_0 }, 3848 + { PwrCmdWrite, 0xc43d3248, mmCP_DFY_DATA_0 }, 3849 + { PwrCmdWrite, 0x1bfc01e8, mmCP_DFY_DATA_0 }, 3850 + { PwrCmdWrite, 0x13fc0018, mmCP_DFY_DATA_0 }, 3851 + { PwrCmdWrite, 0x7dbd800a, mmCP_DFY_DATA_0 }, 3852 + { PwrCmdWrite, 0x1d98ff15, mmCP_DFY_DATA_0 }, 3853 + { PwrCmdWrite, 0x592c00fc, mmCP_DFY_DATA_0 }, 3854 + { PwrCmdWrite, 0xcd80000a, mmCP_DFY_DATA_0 }, 3855 + { PwrCmdWrite, 0x12e00016, mmCP_DFY_DATA_0 }, 3856 + { PwrCmdWrite, 0x7da1800a, mmCP_DFY_DATA_0 }, 3857 + { PwrCmdWrite, 0x592c007e, mmCP_DFY_DATA_0 }, 3858 + { PwrCmdWrite, 0x12e00015, mmCP_DFY_DATA_0 }, 3859 + { PwrCmdWrite, 0x7da1800a, mmCP_DFY_DATA_0 }, 3860 + { PwrCmdWrite, 0xd1000001, mmCP_DFY_DATA_0 }, 3861 + { PwrCmdWrite, 0xcd800001, mmCP_DFY_DATA_0 }, 3862 + { PwrCmdWrite, 0x11a0000c, mmCP_DFY_DATA_0 }, 3863 + { PwrCmdWrite, 0x1264001e, mmCP_DFY_DATA_0 }, 3864 + { PwrCmdWrite, 0x1620000c, mmCP_DFY_DATA_0 }, 3865 + { PwrCmdWrite, 0x7e26000a, mmCP_DFY_DATA_0 }, 3866 + { PwrCmdWrite, 0x7e32000a, mmCP_DFY_DATA_0 }, 3867 + { PwrCmdWrite, 0x12e4001b, mmCP_DFY_DATA_0 }, 3868 + { PwrCmdWrite, 0x7e26000a, mmCP_DFY_DATA_0 }, 3869 + { PwrCmdWrite, 0x5924007e, mmCP_DFY_DATA_0 }, 3870 + { PwrCmdWrite, 0x12640017, mmCP_DFY_DATA_0 }, 3871 + { PwrCmdWrite, 0x7e26000a, mmCP_DFY_DATA_0 }, 3872 + { PwrCmdWrite, 0x19a4003c, mmCP_DFY_DATA_0 }, 3873 + { PwrCmdWrite, 0x12640018, mmCP_DFY_DATA_0 }, 3874 + { PwrCmdWrite, 0x7e26000a, mmCP_DFY_DATA_0 }, 3875 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 3876 + { PwrCmdWrite, 0xce01325a, mmCP_DFY_DATA_0 }, 3877 + { PwrCmdWrite, 0xcd013257, mmCP_DFY_DATA_0 }, 3878 + { PwrCmdWrite, 0xcd413258, mmCP_DFY_DATA_0 }, 3879 + { PwrCmdWrite, 0xc429325a, mmCP_DFY_DATA_0 }, 3880 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 3881 + { PwrCmdWrite, 0x94c00fdb, mmCP_DFY_DATA_0 }, 3882 + { PwrCmdWrite, 0x96800001, mmCP_DFY_DATA_0 }, 3883 + { PwrCmdWrite, 0x95c00003, mmCP_DFY_DATA_0 }, 3884 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 3885 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 3886 + { PwrCmdWrite, 0x9780f5ca, mmCP_DFY_DATA_0 }, 3887 + { PwrCmdWrite, 0xcf400100, mmCP_DFY_DATA_0 }, 3888 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 3889 + { PwrCmdWrite, 0xd9000010, mmCP_DFY_DATA_0 }, 3890 + { PwrCmdWrite, 0x8c00120d, mmCP_DFY_DATA_0 }, 3891 + { PwrCmdWrite, 0x8c001219, mmCP_DFY_DATA_0 }, 3892 + { PwrCmdWrite, 0x8c001232, mmCP_DFY_DATA_0 }, 3893 + { PwrCmdWrite, 0xccc00010, mmCP_DFY_DATA_0 }, 3894 + { PwrCmdWrite, 0x8c001b6d, mmCP_DFY_DATA_0 }, 3895 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3896 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3897 + { PwrCmdWrite, 0xc42d324e, mmCP_DFY_DATA_0 }, 3898 + { PwrCmdWrite, 0xc431324d, mmCP_DFY_DATA_0 }, 3899 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 3900 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 3901 + { PwrCmdWrite, 0xc435324f, mmCP_DFY_DATA_0 }, 3902 + { PwrCmdWrite, 0xc4293256, mmCP_DFY_DATA_0 }, 3903 + { PwrCmdWrite, 0x52ec0008, mmCP_DFY_DATA_0 }, 3904 + { PwrCmdWrite, 0x07740003, mmCP_DFY_DATA_0 }, 3905 + { PwrCmdWrite, 0x04240002, mmCP_DFY_DATA_0 }, 3906 + { PwrCmdWrite, 0x269c003f, mmCP_DFY_DATA_0 }, 3907 + { PwrCmdWrite, 0x7e5e4004, mmCP_DFY_DATA_0 }, 3908 + { PwrCmdWrite, 0x7f67000f, mmCP_DFY_DATA_0 }, 3909 + { PwrCmdWrite, 0x97000003, mmCP_DFY_DATA_0 }, 3910 + { PwrCmdWrite, 0x7f674002, mmCP_DFY_DATA_0 }, 3911 + { PwrCmdWrite, 0x0b740001, mmCP_DFY_DATA_0 }, 3912 + { PwrCmdWrite, 0x53740002, mmCP_DFY_DATA_0 }, 3913 + { PwrCmdWrite, 0x7ef6c011, mmCP_DFY_DATA_0 }, 3914 + { PwrCmdWrite, 0x1ab42010, mmCP_DFY_DATA_0 }, 3915 + { PwrCmdWrite, 0x1ab8c006, mmCP_DFY_DATA_0 }, 3916 + { PwrCmdWrite, 0x16a8000c, mmCP_DFY_DATA_0 }, 3917 + { PwrCmdWrite, 0x26a80800, mmCP_DFY_DATA_0 }, 3918 + { PwrCmdWrite, 0x2b740000, mmCP_DFY_DATA_0 }, 3919 + { PwrCmdWrite, 0x7f7b400a, mmCP_DFY_DATA_0 }, 3920 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 3921 + { PwrCmdWrite, 0xcf40001c, mmCP_DFY_DATA_0 }, 3922 + { PwrCmdWrite, 0xd2c0001e, mmCP_DFY_DATA_0 }, 3923 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 3924 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 3925 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 3926 + { PwrCmdWrite, 0xc4180011, mmCP_DFY_DATA_0 }, 3927 + { PwrCmdWrite, 0x9a000003, mmCP_DFY_DATA_0 }, 3928 + { PwrCmdWrite, 0x8c000bec, mmCP_DFY_DATA_0 }, 3929 + { PwrCmdWrite, 0x80000b47, mmCP_DFY_DATA_0 }, 3930 + { PwrCmdWrite, 0xc42c001d, mmCP_DFY_DATA_0 }, 3931 + { PwrCmdWrite, 0xc4313256, mmCP_DFY_DATA_0 }, 3932 + { PwrCmdWrite, 0x1b34060b, mmCP_DFY_DATA_0 }, 3933 + { PwrCmdWrite, 0x1b300077, mmCP_DFY_DATA_0 }, 3934 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 3935 + { PwrCmdWrite, 0x13300017, mmCP_DFY_DATA_0 }, 3936 + { PwrCmdWrite, 0x04340100, mmCP_DFY_DATA_0 }, 3937 + { PwrCmdWrite, 0x26ec00ff, mmCP_DFY_DATA_0 }, 3938 + { PwrCmdWrite, 0xc03a8004, mmCP_DFY_DATA_0 }, 3939 + { PwrCmdWrite, 0x7ef6c00a, mmCP_DFY_DATA_0 }, 3940 + { PwrCmdWrite, 0x7f3b000a, mmCP_DFY_DATA_0 }, 3941 + { PwrCmdWrite, 0x7ef2c00a, mmCP_DFY_DATA_0 }, 3942 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 3943 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 3944 + { PwrCmdWrite, 0xc40c0032, mmCP_DFY_DATA_0 }, 3945 + { PwrCmdWrite, 0xc410001d, mmCP_DFY_DATA_0 }, 3946 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 3947 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 3948 + { PwrCmdWrite, 0xc415325b, mmCP_DFY_DATA_0 }, 3949 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 3950 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 3951 + { PwrCmdWrite, 0x18580037, mmCP_DFY_DATA_0 }, 3952 + { PwrCmdWrite, 0x251000ff, mmCP_DFY_DATA_0 }, 3953 + { PwrCmdWrite, 0xc421325d, mmCP_DFY_DATA_0 }, 3954 + { PwrCmdWrite, 0x262001ef, mmCP_DFY_DATA_0 }, 3955 + { PwrCmdWrite, 0xce01325d, mmCP_DFY_DATA_0 }, 3956 + { PwrCmdWrite, 0x99800004, mmCP_DFY_DATA_0 }, 3957 + { PwrCmdWrite, 0x7d15400a, mmCP_DFY_DATA_0 }, 3958 + { PwrCmdWrite, 0xcd41325b, mmCP_DFY_DATA_0 }, 3959 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 3960 + { PwrCmdWrite, 0x1d54001f, mmCP_DFY_DATA_0 }, 3961 + { PwrCmdWrite, 0xcd41325b, mmCP_DFY_DATA_0 }, 3962 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 3963 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 3964 + { PwrCmdWrite, 0xc428000b, mmCP_DFY_DATA_0 }, 3965 + { PwrCmdWrite, 0xc42c000c, mmCP_DFY_DATA_0 }, 3966 + { PwrCmdWrite, 0x12a80001, mmCP_DFY_DATA_0 }, 3967 + { PwrCmdWrite, 0x26a80004, mmCP_DFY_DATA_0 }, 3968 + { PwrCmdWrite, 0x7eae800a, mmCP_DFY_DATA_0 }, 3969 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 3970 + { PwrCmdWrite, 0xc4340028, mmCP_DFY_DATA_0 }, 3971 + { PwrCmdWrite, 0x14f00010, mmCP_DFY_DATA_0 }, 3972 + { PwrCmdWrite, 0xc4380030, mmCP_DFY_DATA_0 }, 3973 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 3974 + { PwrCmdWrite, 0xcd280200, mmCP_DFY_DATA_0 }, 3975 + { PwrCmdWrite, 0xcd680208, mmCP_DFY_DATA_0 }, 3976 + { PwrCmdWrite, 0xcda80210, mmCP_DFY_DATA_0 }, 3977 + { PwrCmdWrite, 0x9b00000c, mmCP_DFY_DATA_0 }, 3978 + { PwrCmdWrite, 0x9b400014, mmCP_DFY_DATA_0 }, 3979 + { PwrCmdWrite, 0x9b800017, mmCP_DFY_DATA_0 }, 3980 + { PwrCmdWrite, 0xc428000b, mmCP_DFY_DATA_0 }, 3981 + { PwrCmdWrite, 0xc42c000c, mmCP_DFY_DATA_0 }, 3982 + { PwrCmdWrite, 0x12a80001, mmCP_DFY_DATA_0 }, 3983 + { PwrCmdWrite, 0x26a80004, mmCP_DFY_DATA_0 }, 3984 + { PwrCmdWrite, 0x7eae800a, mmCP_DFY_DATA_0 }, 3985 + { PwrCmdWrite, 0xc6930200, mmCP_DFY_DATA_0 }, 3986 + { PwrCmdWrite, 0xc6970208, mmCP_DFY_DATA_0 }, 3987 + { PwrCmdWrite, 0xc69b0210, mmCP_DFY_DATA_0 }, 3988 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 3989 + { PwrCmdWrite, 0x17300001, mmCP_DFY_DATA_0 }, 3990 + { PwrCmdWrite, 0x9b000005, mmCP_DFY_DATA_0 }, 3991 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 3992 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 3993 + { PwrCmdWrite, 0xd8000032, mmCP_DFY_DATA_0 }, 3994 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 3995 + { PwrCmdWrite, 0xd8000028, mmCP_DFY_DATA_0 }, 3996 + { PwrCmdWrite, 0xd800002b, mmCP_DFY_DATA_0 }, 3997 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 3998 + { PwrCmdWrite, 0xd900003f, mmCP_DFY_DATA_0 }, 3999 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 4000 + { PwrCmdWrite, 0xd940003f, mmCP_DFY_DATA_0 }, 4001 + { PwrCmdWrite, 0x80001082, mmCP_DFY_DATA_0 }, 4002 + { PwrCmdWrite, 0xd9000040, mmCP_DFY_DATA_0 }, 4003 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 4004 + { PwrCmdWrite, 0xd9400040, mmCP_DFY_DATA_0 }, 4005 + { PwrCmdWrite, 0x800010de, mmCP_DFY_DATA_0 }, 4006 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 4007 + { PwrCmdWrite, 0x14fc0011, mmCP_DFY_DATA_0 }, 4008 + { PwrCmdWrite, 0x24f800ff, mmCP_DFY_DATA_0 }, 4009 + { PwrCmdWrite, 0x33b80001, mmCP_DFY_DATA_0 }, 4010 + { PwrCmdWrite, 0x97c0fffc, mmCP_DFY_DATA_0 }, 4011 + { PwrCmdWrite, 0x9b800007, mmCP_DFY_DATA_0 }, 4012 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 4013 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 4014 + { PwrCmdWrite, 0xd8000032, mmCP_DFY_DATA_0 }, 4015 + { PwrCmdWrite, 0xd8000028, mmCP_DFY_DATA_0 }, 4016 + { PwrCmdWrite, 0xd800002b, mmCP_DFY_DATA_0 }, 4017 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4018 + { PwrCmdWrite, 0xc4380004, mmCP_DFY_DATA_0 }, 4019 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 4020 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4021 + { PwrCmdWrite, 0xd88130b8, mmCP_DFY_DATA_0 }, 4022 + { PwrCmdWrite, 0x04100000, mmCP_DFY_DATA_0 }, 4023 + { PwrCmdWrite, 0x04140000, mmCP_DFY_DATA_0 }, 4024 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 4025 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 4026 + { PwrCmdWrite, 0x7d83c001, mmCP_DFY_DATA_0 }, 4027 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 4028 + { PwrCmdWrite, 0xc4093249, mmCP_DFY_DATA_0 }, 4029 + { PwrCmdWrite, 0x1888003e, mmCP_DFY_DATA_0 }, 4030 + { PwrCmdWrite, 0x94800020, mmCP_DFY_DATA_0 }, 4031 + { PwrCmdWrite, 0xd8400074, mmCP_DFY_DATA_0 }, 4032 + { PwrCmdWrite, 0x8c000671, mmCP_DFY_DATA_0 }, 4033 + { PwrCmdWrite, 0x9a400009, mmCP_DFY_DATA_0 }, 4034 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 4035 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 4036 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 4037 + { PwrCmdWrite, 0xc419324c, mmCP_DFY_DATA_0 }, 4038 + { PwrCmdWrite, 0x259c0001, mmCP_DFY_DATA_0 }, 4039 + { PwrCmdWrite, 0x1598001f, mmCP_DFY_DATA_0 }, 4040 + { PwrCmdWrite, 0x95c00016, mmCP_DFY_DATA_0 }, 4041 + { PwrCmdWrite, 0x95800015, mmCP_DFY_DATA_0 }, 4042 + { PwrCmdWrite, 0x99000003, mmCP_DFY_DATA_0 }, 4043 + { PwrCmdWrite, 0xd8400036, mmCP_DFY_DATA_0 }, 4044 + { PwrCmdWrite, 0x04100001, mmCP_DFY_DATA_0 }, 4045 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 4046 + { PwrCmdWrite, 0x14d80011, mmCP_DFY_DATA_0 }, 4047 + { PwrCmdWrite, 0x24e000ff, mmCP_DFY_DATA_0 }, 4048 + { PwrCmdWrite, 0x321c0002, mmCP_DFY_DATA_0 }, 4049 + { PwrCmdWrite, 0x32200001, mmCP_DFY_DATA_0 }, 4050 + { PwrCmdWrite, 0x9580ffee, mmCP_DFY_DATA_0 }, 4051 + { PwrCmdWrite, 0x99c00014, mmCP_DFY_DATA_0 }, 4052 + { PwrCmdWrite, 0x96000004, mmCP_DFY_DATA_0 }, 4053 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 4054 + { PwrCmdWrite, 0x04140001, mmCP_DFY_DATA_0 }, 4055 + { PwrCmdWrite, 0x80000c30, mmCP_DFY_DATA_0 }, 4056 + { PwrCmdWrite, 0x9480000a, mmCP_DFY_DATA_0 }, 4057 + { PwrCmdWrite, 0xd8000074, mmCP_DFY_DATA_0 }, 4058 + { PwrCmdWrite, 0xc418005e, mmCP_DFY_DATA_0 }, 4059 + { PwrCmdWrite, 0x95800f29, mmCP_DFY_DATA_0 }, 4060 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 4061 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 4062 + { PwrCmdWrite, 0x94800004, mmCP_DFY_DATA_0 }, 4063 + { PwrCmdWrite, 0xd8000074, mmCP_DFY_DATA_0 }, 4064 + { PwrCmdWrite, 0xc418005e, mmCP_DFY_DATA_0 }, 4065 + { PwrCmdWrite, 0x95800f23, mmCP_DFY_DATA_0 }, 4066 + { PwrCmdWrite, 0xd9c00036, mmCP_DFY_DATA_0 }, 4067 + { PwrCmdWrite, 0x99400002, mmCP_DFY_DATA_0 }, 4068 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 4069 + { PwrCmdWrite, 0xcf800008, mmCP_DFY_DATA_0 }, 4070 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 4071 + { PwrCmdWrite, 0x94800004, mmCP_DFY_DATA_0 }, 4072 + { PwrCmdWrite, 0xd8000074, mmCP_DFY_DATA_0 }, 4073 + { PwrCmdWrite, 0xc418005e, mmCP_DFY_DATA_0 }, 4074 + { PwrCmdWrite, 0x95800f1a, mmCP_DFY_DATA_0 }, 4075 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 4076 + { PwrCmdWrite, 0xd8800036, mmCP_DFY_DATA_0 }, 4077 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4078 + { PwrCmdWrite, 0x041c0003, mmCP_DFY_DATA_0 }, 4079 + { PwrCmdWrite, 0x042c01c8, mmCP_DFY_DATA_0 }, 4080 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 4081 + { PwrCmdWrite, 0xc4200007, mmCP_DFY_DATA_0 }, 4082 + { PwrCmdWrite, 0xc40c0077, mmCP_DFY_DATA_0 }, 4083 + { PwrCmdWrite, 0x94c00001, mmCP_DFY_DATA_0 }, 4084 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 4085 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 4086 + { PwrCmdWrite, 0x9600f502, mmCP_DFY_DATA_0 }, 4087 + { PwrCmdWrite, 0x0a200001, mmCP_DFY_DATA_0 }, 4088 + { PwrCmdWrite, 0x98c0f500, mmCP_DFY_DATA_0 }, 4089 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 4090 + { PwrCmdWrite, 0xce000010, mmCP_DFY_DATA_0 }, 4091 + { PwrCmdWrite, 0x9a000f05, mmCP_DFY_DATA_0 }, 4092 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4093 + { PwrCmdWrite, 0xc431325a, mmCP_DFY_DATA_0 }, 4094 + { PwrCmdWrite, 0xc42d3256, mmCP_DFY_DATA_0 }, 4095 + { PwrCmdWrite, 0x1f30001f, mmCP_DFY_DATA_0 }, 4096 + { PwrCmdWrite, 0x16e4001f, mmCP_DFY_DATA_0 }, 4097 + { PwrCmdWrite, 0xcf01325a, mmCP_DFY_DATA_0 }, 4098 + { PwrCmdWrite, 0xc431325a, mmCP_DFY_DATA_0 }, 4099 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 4100 + { PwrCmdWrite, 0x9640f4f4, mmCP_DFY_DATA_0 }, 4101 + { PwrCmdWrite, 0xc434000b, mmCP_DFY_DATA_0 }, 4102 + { PwrCmdWrite, 0x33740002, mmCP_DFY_DATA_0 }, 4103 + { PwrCmdWrite, 0x9b40f4f1, mmCP_DFY_DATA_0 }, 4104 + { PwrCmdWrite, 0xc4353254, mmCP_DFY_DATA_0 }, 4105 + { PwrCmdWrite, 0x16a80008, mmCP_DFY_DATA_0 }, 4106 + { PwrCmdWrite, 0x1aec003c, mmCP_DFY_DATA_0 }, 4107 + { PwrCmdWrite, 0x12a80015, mmCP_DFY_DATA_0 }, 4108 + { PwrCmdWrite, 0x12ec001f, mmCP_DFY_DATA_0 }, 4109 + { PwrCmdWrite, 0x1374000b, mmCP_DFY_DATA_0 }, 4110 + { PwrCmdWrite, 0x7eae800a, mmCP_DFY_DATA_0 }, 4111 + { PwrCmdWrite, 0xc02e4000, mmCP_DFY_DATA_0 }, 4112 + { PwrCmdWrite, 0x1774000d, mmCP_DFY_DATA_0 }, 4113 + { PwrCmdWrite, 0x7eae800a, mmCP_DFY_DATA_0 }, 4114 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 4115 + { PwrCmdWrite, 0xcf400100, mmCP_DFY_DATA_0 }, 4116 + { PwrCmdWrite, 0x12780001, mmCP_DFY_DATA_0 }, 4117 + { PwrCmdWrite, 0x2bb80001, mmCP_DFY_DATA_0 }, 4118 + { PwrCmdWrite, 0xc00ac005, mmCP_DFY_DATA_0 }, 4119 + { PwrCmdWrite, 0xc00e0002, mmCP_DFY_DATA_0 }, 4120 + { PwrCmdWrite, 0x28cc8000, mmCP_DFY_DATA_0 }, 4121 + { PwrCmdWrite, 0x28884900, mmCP_DFY_DATA_0 }, 4122 + { PwrCmdWrite, 0x28cc0014, mmCP_DFY_DATA_0 }, 4123 + { PwrCmdWrite, 0x80000ff3, mmCP_DFY_DATA_0 }, 4124 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 4125 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4126 + { PwrCmdWrite, 0x17fc0001, mmCP_DFY_DATA_0 }, 4127 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4128 + { PwrCmdWrite, 0x9bc00004, mmCP_DFY_DATA_0 }, 4129 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 4130 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 4131 + { PwrCmdWrite, 0x96400ee1, mmCP_DFY_DATA_0 }, 4132 + { PwrCmdWrite, 0xcc41c40a, mmCP_DFY_DATA_0 }, 4133 + { PwrCmdWrite, 0xcc41c40c, mmCP_DFY_DATA_0 }, 4134 + { PwrCmdWrite, 0xcc41c40d, mmCP_DFY_DATA_0 }, 4135 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 4136 + { PwrCmdWrite, 0x24d0007f, mmCP_DFY_DATA_0 }, 4137 + { PwrCmdWrite, 0x15580010, mmCP_DFY_DATA_0 }, 4138 + { PwrCmdWrite, 0x255400ff, mmCP_DFY_DATA_0 }, 4139 + { PwrCmdWrite, 0xcd01c411, mmCP_DFY_DATA_0 }, 4140 + { PwrCmdWrite, 0xcd81c40f, mmCP_DFY_DATA_0 }, 4141 + { PwrCmdWrite, 0xcd41c40e, mmCP_DFY_DATA_0 }, 4142 + { PwrCmdWrite, 0xcc41c410, mmCP_DFY_DATA_0 }, 4143 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 4144 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 4145 + { PwrCmdWrite, 0x04200000, mmCP_DFY_DATA_0 }, 4146 + { PwrCmdWrite, 0x18e80033, mmCP_DFY_DATA_0 }, 4147 + { PwrCmdWrite, 0x18ec0034, mmCP_DFY_DATA_0 }, 4148 + { PwrCmdWrite, 0xcc41c414, mmCP_DFY_DATA_0 }, 4149 + { PwrCmdWrite, 0xcc41c415, mmCP_DFY_DATA_0 }, 4150 + { PwrCmdWrite, 0xcd81c413, mmCP_DFY_DATA_0 }, 4151 + { PwrCmdWrite, 0xcd41c412, mmCP_DFY_DATA_0 }, 4152 + { PwrCmdWrite, 0x18dc0032, mmCP_DFY_DATA_0 }, 4153 + { PwrCmdWrite, 0x7c030011, mmCP_DFY_DATA_0 }, 4154 + { PwrCmdWrite, 0x7c038011, mmCP_DFY_DATA_0 }, 4155 + { PwrCmdWrite, 0x95c00027, mmCP_DFY_DATA_0 }, 4156 + { PwrCmdWrite, 0x96c00002, mmCP_DFY_DATA_0 }, 4157 + { PwrCmdWrite, 0xc431c417, mmCP_DFY_DATA_0 }, 4158 + { PwrCmdWrite, 0xc435c416, mmCP_DFY_DATA_0 }, 4159 + { PwrCmdWrite, 0x96800004, mmCP_DFY_DATA_0 }, 4160 + { PwrCmdWrite, 0x96c00002, mmCP_DFY_DATA_0 }, 4161 + { PwrCmdWrite, 0xc439c419, mmCP_DFY_DATA_0 }, 4162 + { PwrCmdWrite, 0xc43dc418, mmCP_DFY_DATA_0 }, 4163 + { PwrCmdWrite, 0xc41c000e, mmCP_DFY_DATA_0 }, 4164 + { PwrCmdWrite, 0x29dc0008, mmCP_DFY_DATA_0 }, 4165 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 4166 + { PwrCmdWrite, 0xcf413261, mmCP_DFY_DATA_0 }, 4167 + { PwrCmdWrite, 0x96c00002, mmCP_DFY_DATA_0 }, 4168 + { PwrCmdWrite, 0xcf013262, mmCP_DFY_DATA_0 }, 4169 + { PwrCmdWrite, 0x96800004, mmCP_DFY_DATA_0 }, 4170 + { PwrCmdWrite, 0xcfc13263, mmCP_DFY_DATA_0 }, 4171 + { PwrCmdWrite, 0x96c00002, mmCP_DFY_DATA_0 }, 4172 + { PwrCmdWrite, 0xcf813264, mmCP_DFY_DATA_0 }, 4173 + { PwrCmdWrite, 0x18dc0030, mmCP_DFY_DATA_0 }, 4174 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 4175 + { PwrCmdWrite, 0x95c00017, mmCP_DFY_DATA_0 }, 4176 + { PwrCmdWrite, 0x17fc0001, mmCP_DFY_DATA_0 }, 4177 + { PwrCmdWrite, 0x9ac00005, mmCP_DFY_DATA_0 }, 4178 + { PwrCmdWrite, 0x7d77000c, mmCP_DFY_DATA_0 }, 4179 + { PwrCmdWrite, 0x9bc00015, mmCP_DFY_DATA_0 }, 4180 + { PwrCmdWrite, 0x9700000a, mmCP_DFY_DATA_0 }, 4181 + { PwrCmdWrite, 0x80000cd6, mmCP_DFY_DATA_0 }, 4182 + { PwrCmdWrite, 0x51b80020, mmCP_DFY_DATA_0 }, 4183 + { PwrCmdWrite, 0x53300020, mmCP_DFY_DATA_0 }, 4184 + { PwrCmdWrite, 0x7f97801a, mmCP_DFY_DATA_0 }, 4185 + { PwrCmdWrite, 0x7f37001a, mmCP_DFY_DATA_0 }, 4186 + { PwrCmdWrite, 0x7f3b000c, mmCP_DFY_DATA_0 }, 4187 + { PwrCmdWrite, 0x9bc0000d, mmCP_DFY_DATA_0 }, 4188 + { PwrCmdWrite, 0x97800002, mmCP_DFY_DATA_0 }, 4189 + { PwrCmdWrite, 0x80000cd6, mmCP_DFY_DATA_0 }, 4190 + { PwrCmdWrite, 0x9a000018, mmCP_DFY_DATA_0 }, 4191 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4192 + { PwrCmdWrite, 0x28200001, mmCP_DFY_DATA_0 }, 4193 + { PwrCmdWrite, 0x80000ca7, mmCP_DFY_DATA_0 }, 4194 + { PwrCmdWrite, 0x18dc0031, mmCP_DFY_DATA_0 }, 4195 + { PwrCmdWrite, 0x95c00003, mmCP_DFY_DATA_0 }, 4196 + { PwrCmdWrite, 0xc435c40b, mmCP_DFY_DATA_0 }, 4197 + { PwrCmdWrite, 0x9740fffd, mmCP_DFY_DATA_0 }, 4198 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 4199 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4200 + { PwrCmdWrite, 0xc4280032, mmCP_DFY_DATA_0 }, 4201 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 4202 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4203 + { PwrCmdWrite, 0xc40d325b, mmCP_DFY_DATA_0 }, 4204 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4205 + { PwrCmdWrite, 0x800012c2, mmCP_DFY_DATA_0 }, 4206 + { PwrCmdWrite, 0xc438001d, mmCP_DFY_DATA_0 }, 4207 + { PwrCmdWrite, 0x1bb81ff0, mmCP_DFY_DATA_0 }, 4208 + { PwrCmdWrite, 0x7f8cc00a, mmCP_DFY_DATA_0 }, 4209 + { PwrCmdWrite, 0xccc1325b, mmCP_DFY_DATA_0 }, 4210 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 4211 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 4212 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 4213 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4214 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 4215 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 4216 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 4217 + { PwrCmdWrite, 0xc438001d, mmCP_DFY_DATA_0 }, 4218 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4219 + { PwrCmdWrite, 0x13f4000c, mmCP_DFY_DATA_0 }, 4220 + { PwrCmdWrite, 0x9bc00006, mmCP_DFY_DATA_0 }, 4221 + { PwrCmdWrite, 0xc43d3256, mmCP_DFY_DATA_0 }, 4222 + { PwrCmdWrite, 0x1bf0060b, mmCP_DFY_DATA_0 }, 4223 + { PwrCmdWrite, 0x1bfc0077, mmCP_DFY_DATA_0 }, 4224 + { PwrCmdWrite, 0x7ff3c00a, mmCP_DFY_DATA_0 }, 4225 + { PwrCmdWrite, 0x80000cf4, mmCP_DFY_DATA_0 }, 4226 + { PwrCmdWrite, 0xc43d325a, mmCP_DFY_DATA_0 }, 4227 + { PwrCmdWrite, 0x1bfc0677, mmCP_DFY_DATA_0 }, 4228 + { PwrCmdWrite, 0x13fc0017, mmCP_DFY_DATA_0 }, 4229 + { PwrCmdWrite, 0x04300100, mmCP_DFY_DATA_0 }, 4230 + { PwrCmdWrite, 0x1bb81fe8, mmCP_DFY_DATA_0 }, 4231 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 4232 + { PwrCmdWrite, 0xc032800b, mmCP_DFY_DATA_0 }, 4233 + { PwrCmdWrite, 0x7fb7800a, mmCP_DFY_DATA_0 }, 4234 + { PwrCmdWrite, 0x7ff3c00a, mmCP_DFY_DATA_0 }, 4235 + { PwrCmdWrite, 0x7ffbc00a, mmCP_DFY_DATA_0 }, 4236 + { PwrCmdWrite, 0xcfc1325b, mmCP_DFY_DATA_0 }, 4237 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 4238 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 4239 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4240 + { PwrCmdWrite, 0x18d42011, mmCP_DFY_DATA_0 }, 4241 + { PwrCmdWrite, 0x17fc0001, mmCP_DFY_DATA_0 }, 4242 + { PwrCmdWrite, 0x18d001e8, mmCP_DFY_DATA_0 }, 4243 + { PwrCmdWrite, 0x24cc007f, mmCP_DFY_DATA_0 }, 4244 + { PwrCmdWrite, 0x7cd4c00a, mmCP_DFY_DATA_0 }, 4245 + { PwrCmdWrite, 0x9bc00004, mmCP_DFY_DATA_0 }, 4246 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 4247 + { PwrCmdWrite, 0xc428005e, mmCP_DFY_DATA_0 }, 4248 + { PwrCmdWrite, 0x96800e6c, mmCP_DFY_DATA_0 }, 4249 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 4250 + { PwrCmdWrite, 0x50580020, mmCP_DFY_DATA_0 }, 4251 + { PwrCmdWrite, 0x7d59401a, mmCP_DFY_DATA_0 }, 4252 + { PwrCmdWrite, 0xd1400072, mmCP_DFY_DATA_0 }, 4253 + { PwrCmdWrite, 0xc8140072, mmCP_DFY_DATA_0 }, 4254 + { PwrCmdWrite, 0x596001fc, mmCP_DFY_DATA_0 }, 4255 + { PwrCmdWrite, 0x12200009, mmCP_DFY_DATA_0 }, 4256 + { PwrCmdWrite, 0x7ce0c00a, mmCP_DFY_DATA_0 }, 4257 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 4258 + { PwrCmdWrite, 0x505c0020, mmCP_DFY_DATA_0 }, 4259 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 4260 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 4261 + { PwrCmdWrite, 0x50600020, mmCP_DFY_DATA_0 }, 4262 + { PwrCmdWrite, 0x7de1c01a, mmCP_DFY_DATA_0 }, 4263 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 4264 + { PwrCmdWrite, 0xccc0001b, mmCP_DFY_DATA_0 }, 4265 + { PwrCmdWrite, 0xd140001d, mmCP_DFY_DATA_0 }, 4266 + { PwrCmdWrite, 0xd180001f, mmCP_DFY_DATA_0 }, 4267 + { PwrCmdWrite, 0xd1c00020, mmCP_DFY_DATA_0 }, 4268 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 4269 + { PwrCmdWrite, 0x95000010, mmCP_DFY_DATA_0 }, 4270 + { PwrCmdWrite, 0x04300000, mmCP_DFY_DATA_0 }, 4271 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 4272 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 4273 + { PwrCmdWrite, 0xc8240010, mmCP_DFY_DATA_0 }, 4274 + { PwrCmdWrite, 0x7e5e800c, mmCP_DFY_DATA_0 }, 4275 + { PwrCmdWrite, 0x9bc00015, mmCP_DFY_DATA_0 }, 4276 + { PwrCmdWrite, 0x9a80000c, mmCP_DFY_DATA_0 }, 4277 + { PwrCmdWrite, 0x9b000024, mmCP_DFY_DATA_0 }, 4278 + { PwrCmdWrite, 0x28300001, mmCP_DFY_DATA_0 }, 4279 + { PwrCmdWrite, 0x122c0004, mmCP_DFY_DATA_0 }, 4280 + { PwrCmdWrite, 0x06ec0001, mmCP_DFY_DATA_0 }, 4281 + { PwrCmdWrite, 0x0aec0001, mmCP_DFY_DATA_0 }, 4282 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 4283 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 4284 + { PwrCmdWrite, 0x80000d1f, mmCP_DFY_DATA_0 }, 4285 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 4286 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 4287 + { PwrCmdWrite, 0xc8240010, mmCP_DFY_DATA_0 }, 4288 + { PwrCmdWrite, 0x566c0020, mmCP_DFY_DATA_0 }, 4289 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 4290 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 4291 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4292 + { PwrCmdWrite, 0xce413261, mmCP_DFY_DATA_0 }, 4293 + { PwrCmdWrite, 0xcec13262, mmCP_DFY_DATA_0 }, 4294 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 4295 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4296 + { PwrCmdWrite, 0xc4340032, mmCP_DFY_DATA_0 }, 4297 + { PwrCmdWrite, 0x2b740008, mmCP_DFY_DATA_0 }, 4298 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 4299 + { PwrCmdWrite, 0xc40d325b, mmCP_DFY_DATA_0 }, 4300 + { PwrCmdWrite, 0x96800005, mmCP_DFY_DATA_0 }, 4301 + { PwrCmdWrite, 0x566c0020, mmCP_DFY_DATA_0 }, 4302 + { PwrCmdWrite, 0xce413261, mmCP_DFY_DATA_0 }, 4303 + { PwrCmdWrite, 0xcec13262, mmCP_DFY_DATA_0 }, 4304 + { PwrCmdWrite, 0x800012c2, mmCP_DFY_DATA_0 }, 4305 + { PwrCmdWrite, 0xc438001d, mmCP_DFY_DATA_0 }, 4306 + { PwrCmdWrite, 0x1bb81fe8, mmCP_DFY_DATA_0 }, 4307 + { PwrCmdWrite, 0x7f8cc00a, mmCP_DFY_DATA_0 }, 4308 + { PwrCmdWrite, 0xccc1325b, mmCP_DFY_DATA_0 }, 4309 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 4310 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 4311 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 4312 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4313 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 4314 + { PwrCmdWrite, 0xc438001d, mmCP_DFY_DATA_0 }, 4315 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 4316 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 4317 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4318 + { PwrCmdWrite, 0x13f4000c, mmCP_DFY_DATA_0 }, 4319 + { PwrCmdWrite, 0x9bc00006, mmCP_DFY_DATA_0 }, 4320 + { PwrCmdWrite, 0xc43d3256, mmCP_DFY_DATA_0 }, 4321 + { PwrCmdWrite, 0x1bf0060b, mmCP_DFY_DATA_0 }, 4322 + { PwrCmdWrite, 0x1bfc0077, mmCP_DFY_DATA_0 }, 4323 + { PwrCmdWrite, 0x7ff3c00a, mmCP_DFY_DATA_0 }, 4324 + { PwrCmdWrite, 0x80000d57, mmCP_DFY_DATA_0 }, 4325 + { PwrCmdWrite, 0xc43d325a, mmCP_DFY_DATA_0 }, 4326 + { PwrCmdWrite, 0x1bfc0677, mmCP_DFY_DATA_0 }, 4327 + { PwrCmdWrite, 0x13fc0017, mmCP_DFY_DATA_0 }, 4328 + { PwrCmdWrite, 0x04300100, mmCP_DFY_DATA_0 }, 4329 + { PwrCmdWrite, 0x1bb81fe8, mmCP_DFY_DATA_0 }, 4330 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 4331 + { PwrCmdWrite, 0xc0328009, mmCP_DFY_DATA_0 }, 4332 + { PwrCmdWrite, 0x7fb7800a, mmCP_DFY_DATA_0 }, 4333 + { PwrCmdWrite, 0x7ff3c00a, mmCP_DFY_DATA_0 }, 4334 + { PwrCmdWrite, 0x7ffbc00a, mmCP_DFY_DATA_0 }, 4335 + { PwrCmdWrite, 0xcfc1325b, mmCP_DFY_DATA_0 }, 4336 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 4337 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 4338 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 4339 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 4340 + { PwrCmdWrite, 0xc4253246, mmCP_DFY_DATA_0 }, 4341 + { PwrCmdWrite, 0xc4113245, mmCP_DFY_DATA_0 }, 4342 + { PwrCmdWrite, 0x04143000, mmCP_DFY_DATA_0 }, 4343 + { PwrCmdWrite, 0xcd413267, mmCP_DFY_DATA_0 }, 4344 + { PwrCmdWrite, 0x52640020, mmCP_DFY_DATA_0 }, 4345 + { PwrCmdWrite, 0x7e51001a, mmCP_DFY_DATA_0 }, 4346 + { PwrCmdWrite, 0xc4153267, mmCP_DFY_DATA_0 }, 4347 + { PwrCmdWrite, 0x7d2d0011, mmCP_DFY_DATA_0 }, 4348 + { PwrCmdWrite, 0x19640057, mmCP_DFY_DATA_0 }, 4349 + { PwrCmdWrite, 0x19580213, mmCP_DFY_DATA_0 }, 4350 + { PwrCmdWrite, 0x19600199, mmCP_DFY_DATA_0 }, 4351 + { PwrCmdWrite, 0x7da6400a, mmCP_DFY_DATA_0 }, 4352 + { PwrCmdWrite, 0x7e26400a, mmCP_DFY_DATA_0 }, 4353 + { PwrCmdWrite, 0xd1000025, mmCP_DFY_DATA_0 }, 4354 + { PwrCmdWrite, 0xce400024, mmCP_DFY_DATA_0 }, 4355 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 4356 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 4357 + { PwrCmdWrite, 0x04142000, mmCP_DFY_DATA_0 }, 4358 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 4359 + { PwrCmdWrite, 0xcd413267, mmCP_DFY_DATA_0 }, 4360 + { PwrCmdWrite, 0xc4153267, mmCP_DFY_DATA_0 }, 4361 + { PwrCmdWrite, 0x99400001, mmCP_DFY_DATA_0 }, 4362 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 4363 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4364 + { PwrCmdWrite, 0x18d001e8, mmCP_DFY_DATA_0 }, 4365 + { PwrCmdWrite, 0x18d40030, mmCP_DFY_DATA_0 }, 4366 + { PwrCmdWrite, 0x18d80034, mmCP_DFY_DATA_0 }, 4367 + { PwrCmdWrite, 0x05280d83, mmCP_DFY_DATA_0 }, 4368 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 4369 + { PwrCmdWrite, 0x7c424001, mmCP_DFY_DATA_0 }, 4370 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 4371 + { PwrCmdWrite, 0x80000d8a, mmCP_DFY_DATA_0 }, 4372 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 4373 + { PwrCmdWrite, 0x80000d95, mmCP_DFY_DATA_0 }, 4374 + { PwrCmdWrite, 0x80000db1, mmCP_DFY_DATA_0 }, 4375 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 4376 + { PwrCmdWrite, 0x80000d95, mmCP_DFY_DATA_0 }, 4377 + { PwrCmdWrite, 0x80000dbc, mmCP_DFY_DATA_0 }, 4378 + { PwrCmdWrite, 0x11540010, mmCP_DFY_DATA_0 }, 4379 + { PwrCmdWrite, 0x7e010001, mmCP_DFY_DATA_0 }, 4380 + { PwrCmdWrite, 0x8c00187c, mmCP_DFY_DATA_0 }, 4381 + { PwrCmdWrite, 0x7d75400a, mmCP_DFY_DATA_0 }, 4382 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 4383 + { PwrCmdWrite, 0xd4610000, mmCP_DFY_DATA_0 }, 4384 + { PwrCmdWrite, 0x9580f3d8, mmCP_DFY_DATA_0 }, 4385 + { PwrCmdWrite, 0xc439c040, mmCP_DFY_DATA_0 }, 4386 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 4387 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4388 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4389 + { PwrCmdWrite, 0xd8000016, mmCP_DFY_DATA_0 }, 4390 + { PwrCmdWrite, 0x526c0020, mmCP_DFY_DATA_0 }, 4391 + { PwrCmdWrite, 0x18e80058, mmCP_DFY_DATA_0 }, 4392 + { PwrCmdWrite, 0x7e2ec01a, mmCP_DFY_DATA_0 }, 4393 + { PwrCmdWrite, 0xd2c00072, mmCP_DFY_DATA_0 }, 4394 + { PwrCmdWrite, 0xc82c0072, mmCP_DFY_DATA_0 }, 4395 + { PwrCmdWrite, 0x5ae0073a, mmCP_DFY_DATA_0 }, 4396 + { PwrCmdWrite, 0x7ea2800a, mmCP_DFY_DATA_0 }, 4397 + { PwrCmdWrite, 0x9940000a, mmCP_DFY_DATA_0 }, 4398 + { PwrCmdWrite, 0xce800024, mmCP_DFY_DATA_0 }, 4399 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 4400 + { PwrCmdWrite, 0xd4400026, mmCP_DFY_DATA_0 }, 4401 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 4402 + { PwrCmdWrite, 0x9580f3c6, mmCP_DFY_DATA_0 }, 4403 + { PwrCmdWrite, 0xc4380012, mmCP_DFY_DATA_0 }, 4404 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 4405 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4406 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4407 + { PwrCmdWrite, 0xdc3a0000, mmCP_DFY_DATA_0 }, 4408 + { PwrCmdWrite, 0x0bb80001, mmCP_DFY_DATA_0 }, 4409 + { PwrCmdWrite, 0xce800024, mmCP_DFY_DATA_0 }, 4410 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 4411 + { PwrCmdWrite, 0xcc400026, mmCP_DFY_DATA_0 }, 4412 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 4413 + { PwrCmdWrite, 0x9b80fffb, mmCP_DFY_DATA_0 }, 4414 + { PwrCmdWrite, 0x9980fff5, mmCP_DFY_DATA_0 }, 4415 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4416 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4417 + { PwrCmdWrite, 0xc02a0001, mmCP_DFY_DATA_0 }, 4418 + { PwrCmdWrite, 0x2aa80001, mmCP_DFY_DATA_0 }, 4419 + { PwrCmdWrite, 0x16200002, mmCP_DFY_DATA_0 }, 4420 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4421 + { PwrCmdWrite, 0xce01c405, mmCP_DFY_DATA_0 }, 4422 + { PwrCmdWrite, 0xd441c406, mmCP_DFY_DATA_0 }, 4423 + { PwrCmdWrite, 0x9580f3b1, mmCP_DFY_DATA_0 }, 4424 + { PwrCmdWrite, 0xc439c409, mmCP_DFY_DATA_0 }, 4425 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 4426 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4427 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4428 + { PwrCmdWrite, 0xc424000b, mmCP_DFY_DATA_0 }, 4429 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 4430 + { PwrCmdWrite, 0x9a40000b, mmCP_DFY_DATA_0 }, 4431 + { PwrCmdWrite, 0x11540010, mmCP_DFY_DATA_0 }, 4432 + { PwrCmdWrite, 0x29540002, mmCP_DFY_DATA_0 }, 4433 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 4434 + { PwrCmdWrite, 0xd4610000, mmCP_DFY_DATA_0 }, 4435 + { PwrCmdWrite, 0x9580f3a5, mmCP_DFY_DATA_0 }, 4436 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4437 + { PwrCmdWrite, 0xc439c040, mmCP_DFY_DATA_0 }, 4438 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 4439 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4440 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4441 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 4442 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 4443 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 4444 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 4445 + { PwrCmdWrite, 0x94c00da7, mmCP_DFY_DATA_0 }, 4446 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4447 + { PwrCmdWrite, 0x50500020, mmCP_DFY_DATA_0 }, 4448 + { PwrCmdWrite, 0x7cd0c01a, mmCP_DFY_DATA_0 }, 4449 + { PwrCmdWrite, 0xd0c00072, mmCP_DFY_DATA_0 }, 4450 + { PwrCmdWrite, 0xc8280072, mmCP_DFY_DATA_0 }, 4451 + { PwrCmdWrite, 0x5aac007e, mmCP_DFY_DATA_0 }, 4452 + { PwrCmdWrite, 0x12d80017, mmCP_DFY_DATA_0 }, 4453 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 4454 + { PwrCmdWrite, 0x7d9d800a, mmCP_DFY_DATA_0 }, 4455 + { PwrCmdWrite, 0x56a00020, mmCP_DFY_DATA_0 }, 4456 + { PwrCmdWrite, 0x2620ffff, mmCP_DFY_DATA_0 }, 4457 + { PwrCmdWrite, 0x7da1800a, mmCP_DFY_DATA_0 }, 4458 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 4459 + { PwrCmdWrite, 0x7e82400a, mmCP_DFY_DATA_0 }, 4460 + { PwrCmdWrite, 0x7e58c01a, mmCP_DFY_DATA_0 }, 4461 + { PwrCmdWrite, 0x19d4003d, mmCP_DFY_DATA_0 }, 4462 + { PwrCmdWrite, 0x28182002, mmCP_DFY_DATA_0 }, 4463 + { PwrCmdWrite, 0x99400030, mmCP_DFY_DATA_0 }, 4464 + { PwrCmdWrite, 0x8c00104f, mmCP_DFY_DATA_0 }, 4465 + { PwrCmdWrite, 0xc430000d, mmCP_DFY_DATA_0 }, 4466 + { PwrCmdWrite, 0xc4340035, mmCP_DFY_DATA_0 }, 4467 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 4468 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 4469 + { PwrCmdWrite, 0xc8140023, mmCP_DFY_DATA_0 }, 4470 + { PwrCmdWrite, 0xc4180081, mmCP_DFY_DATA_0 }, 4471 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 4472 + { PwrCmdWrite, 0xc011000f, mmCP_DFY_DATA_0 }, 4473 + { PwrCmdWrite, 0xc4240004, mmCP_DFY_DATA_0 }, 4474 + { PwrCmdWrite, 0x11a00002, mmCP_DFY_DATA_0 }, 4475 + { PwrCmdWrite, 0x7c908009, mmCP_DFY_DATA_0 }, 4476 + { PwrCmdWrite, 0x12640004, mmCP_DFY_DATA_0 }, 4477 + { PwrCmdWrite, 0x7d614011, mmCP_DFY_DATA_0 }, 4478 + { PwrCmdWrite, 0xc4100026, mmCP_DFY_DATA_0 }, 4479 + { PwrCmdWrite, 0x05980008, mmCP_DFY_DATA_0 }, 4480 + { PwrCmdWrite, 0x7ca4800a, mmCP_DFY_DATA_0 }, 4481 + { PwrCmdWrite, 0x7d1a0002, mmCP_DFY_DATA_0 }, 4482 + { PwrCmdWrite, 0x7cb0800a, mmCP_DFY_DATA_0 }, 4483 + { PwrCmdWrite, 0x3e280008, mmCP_DFY_DATA_0 }, 4484 + { PwrCmdWrite, 0x20880188, mmCP_DFY_DATA_0 }, 4485 + { PwrCmdWrite, 0x54ec0020, mmCP_DFY_DATA_0 }, 4486 + { PwrCmdWrite, 0x7cb4800a, mmCP_DFY_DATA_0 }, 4487 + { PwrCmdWrite, 0xc4300027, mmCP_DFY_DATA_0 }, 4488 + { PwrCmdWrite, 0x04380008, mmCP_DFY_DATA_0 }, 4489 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 4490 + { PwrCmdWrite, 0xcf000024, mmCP_DFY_DATA_0 }, 4491 + { PwrCmdWrite, 0x20240090, mmCP_DFY_DATA_0 }, 4492 + { PwrCmdWrite, 0x7ca48001, mmCP_DFY_DATA_0 }, 4493 + { PwrCmdWrite, 0xcc800026, mmCP_DFY_DATA_0 }, 4494 + { PwrCmdWrite, 0xccc00026, mmCP_DFY_DATA_0 }, 4495 + { PwrCmdWrite, 0xcec00026, mmCP_DFY_DATA_0 }, 4496 + { PwrCmdWrite, 0xcec00026, mmCP_DFY_DATA_0 }, 4497 + { PwrCmdWrite, 0x28240004, mmCP_DFY_DATA_0 }, 4498 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 4499 + { PwrCmdWrite, 0x0a640001, mmCP_DFY_DATA_0 }, 4500 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 4501 + { PwrCmdWrite, 0x9a800005, mmCP_DFY_DATA_0 }, 4502 + { PwrCmdWrite, 0x32280000, mmCP_DFY_DATA_0 }, 4503 + { PwrCmdWrite, 0x9a800002, mmCP_DFY_DATA_0 }, 4504 + { PwrCmdWrite, 0x9a000000, mmCP_DFY_DATA_0 }, 4505 + { PwrCmdWrite, 0x7c018001, mmCP_DFY_DATA_0 }, 4506 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 4507 + { PwrCmdWrite, 0xd8000016, mmCP_DFY_DATA_0 }, 4508 + { PwrCmdWrite, 0xcf80003a, mmCP_DFY_DATA_0 }, 4509 + { PwrCmdWrite, 0xd901a2a4, mmCP_DFY_DATA_0 }, 4510 + { PwrCmdWrite, 0x80001037, mmCP_DFY_DATA_0 }, 4511 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 4512 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 4513 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 4514 + { PwrCmdWrite, 0xc421326c, mmCP_DFY_DATA_0 }, 4515 + { PwrCmdWrite, 0x1624001f, mmCP_DFY_DATA_0 }, 4516 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 4517 + { PwrCmdWrite, 0xd841325f, mmCP_DFY_DATA_0 }, 4518 + { PwrCmdWrite, 0xd8800033, mmCP_DFY_DATA_0 }, 4519 + { PwrCmdWrite, 0xc43c0009, mmCP_DFY_DATA_0 }, 4520 + { PwrCmdWrite, 0x27fc0004, mmCP_DFY_DATA_0 }, 4521 + { PwrCmdWrite, 0x97c0fffe, mmCP_DFY_DATA_0 }, 4522 + { PwrCmdWrite, 0xd8000039, mmCP_DFY_DATA_0 }, 4523 + { PwrCmdWrite, 0xd0c00038, mmCP_DFY_DATA_0 }, 4524 + { PwrCmdWrite, 0xc43c0022, mmCP_DFY_DATA_0 }, 4525 + { PwrCmdWrite, 0x9bc0ffff, mmCP_DFY_DATA_0 }, 4526 + { PwrCmdWrite, 0xd8800034, mmCP_DFY_DATA_0 }, 4527 + { PwrCmdWrite, 0xc429325f, mmCP_DFY_DATA_0 }, 4528 + { PwrCmdWrite, 0x26ac0001, mmCP_DFY_DATA_0 }, 4529 + { PwrCmdWrite, 0x9ac0fffe, mmCP_DFY_DATA_0 }, 4530 + { PwrCmdWrite, 0x26ac0002, mmCP_DFY_DATA_0 }, 4531 + { PwrCmdWrite, 0x96c00003, mmCP_DFY_DATA_0 }, 4532 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 4533 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4534 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 4535 + { PwrCmdWrite, 0xc430001e, mmCP_DFY_DATA_0 }, 4536 + { PwrCmdWrite, 0xd8800033, mmCP_DFY_DATA_0 }, 4537 + { PwrCmdWrite, 0x13f4000c, mmCP_DFY_DATA_0 }, 4538 + { PwrCmdWrite, 0x1b301ff0, mmCP_DFY_DATA_0 }, 4539 + { PwrCmdWrite, 0x2b300300, mmCP_DFY_DATA_0 }, 4540 + { PwrCmdWrite, 0x2330003f, mmCP_DFY_DATA_0 }, 4541 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 4542 + { PwrCmdWrite, 0x9680000b, mmCP_DFY_DATA_0 }, 4543 + { PwrCmdWrite, 0xc43c0009, mmCP_DFY_DATA_0 }, 4544 + { PwrCmdWrite, 0x27fc0004, mmCP_DFY_DATA_0 }, 4545 + { PwrCmdWrite, 0x97c0fffe, mmCP_DFY_DATA_0 }, 4546 + { PwrCmdWrite, 0xd8400039, mmCP_DFY_DATA_0 }, 4547 + { PwrCmdWrite, 0xd0c00038, mmCP_DFY_DATA_0 }, 4548 + { PwrCmdWrite, 0xc43c0022, mmCP_DFY_DATA_0 }, 4549 + { PwrCmdWrite, 0x9bc0ffff, mmCP_DFY_DATA_0 }, 4550 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 4551 + { PwrCmdWrite, 0xd8800034, mmCP_DFY_DATA_0 }, 4552 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 4553 + { PwrCmdWrite, 0xd8800034, mmCP_DFY_DATA_0 }, 4554 + { PwrCmdWrite, 0x8c0001a2, mmCP_DFY_DATA_0 }, 4555 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4556 + { PwrCmdWrite, 0xcc80003b, mmCP_DFY_DATA_0 }, 4557 + { PwrCmdWrite, 0x24b00008, mmCP_DFY_DATA_0 }, 4558 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 4559 + { PwrCmdWrite, 0x1330000a, mmCP_DFY_DATA_0 }, 4560 + { PwrCmdWrite, 0x18ac0024, mmCP_DFY_DATA_0 }, 4561 + { PwrCmdWrite, 0x2b304000, mmCP_DFY_DATA_0 }, 4562 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4563 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 4564 + { PwrCmdWrite, 0x18a800e5, mmCP_DFY_DATA_0 }, 4565 + { PwrCmdWrite, 0x1d980008, mmCP_DFY_DATA_0 }, 4566 + { PwrCmdWrite, 0x12a80008, mmCP_DFY_DATA_0 }, 4567 + { PwrCmdWrite, 0x7da9800a, mmCP_DFY_DATA_0 }, 4568 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 4569 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 4570 + { PwrCmdWrite, 0xc4113249, mmCP_DFY_DATA_0 }, 4571 + { PwrCmdWrite, 0x1910003e, mmCP_DFY_DATA_0 }, 4572 + { PwrCmdWrite, 0x99000002, mmCP_DFY_DATA_0 }, 4573 + { PwrCmdWrite, 0xd840003d, mmCP_DFY_DATA_0 }, 4574 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 4575 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 4576 + { PwrCmdWrite, 0x51100020, mmCP_DFY_DATA_0 }, 4577 + { PwrCmdWrite, 0xcf01326c, mmCP_DFY_DATA_0 }, 4578 + { PwrCmdWrite, 0x7cd0c01a, mmCP_DFY_DATA_0 }, 4579 + { PwrCmdWrite, 0xc421326c, mmCP_DFY_DATA_0 }, 4580 + { PwrCmdWrite, 0x12a80014, mmCP_DFY_DATA_0 }, 4581 + { PwrCmdWrite, 0x2220003f, mmCP_DFY_DATA_0 }, 4582 + { PwrCmdWrite, 0x7e2a000a, mmCP_DFY_DATA_0 }, 4583 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 4584 + { PwrCmdWrite, 0xce01326c, mmCP_DFY_DATA_0 }, 4585 + { PwrCmdWrite, 0xd8800033, mmCP_DFY_DATA_0 }, 4586 + { PwrCmdWrite, 0xc43c0009, mmCP_DFY_DATA_0 }, 4587 + { PwrCmdWrite, 0x27fc0004, mmCP_DFY_DATA_0 }, 4588 + { PwrCmdWrite, 0x97c0fffe, mmCP_DFY_DATA_0 }, 4589 + { PwrCmdWrite, 0xd8000039, mmCP_DFY_DATA_0 }, 4590 + { PwrCmdWrite, 0xd0c00038, mmCP_DFY_DATA_0 }, 4591 + { PwrCmdWrite, 0xc43c0022, mmCP_DFY_DATA_0 }, 4592 + { PwrCmdWrite, 0x9bc0ffff, mmCP_DFY_DATA_0 }, 4593 + { PwrCmdWrite, 0xd8800034, mmCP_DFY_DATA_0 }, 4594 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 4595 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4596 + { PwrCmdWrite, 0x18dc003d, mmCP_DFY_DATA_0 }, 4597 + { PwrCmdWrite, 0x95c00004, mmCP_DFY_DATA_0 }, 4598 + { PwrCmdWrite, 0x041c0001, mmCP_DFY_DATA_0 }, 4599 + { PwrCmdWrite, 0x042c01c8, mmCP_DFY_DATA_0 }, 4600 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 4601 + { PwrCmdWrite, 0x18d40030, mmCP_DFY_DATA_0 }, 4602 + { PwrCmdWrite, 0x18d001e8, mmCP_DFY_DATA_0 }, 4603 + { PwrCmdWrite, 0x18fc0034, mmCP_DFY_DATA_0 }, 4604 + { PwrCmdWrite, 0x24e8000f, mmCP_DFY_DATA_0 }, 4605 + { PwrCmdWrite, 0x06a80e71, mmCP_DFY_DATA_0 }, 4606 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 4607 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 4608 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 4609 + { PwrCmdWrite, 0x80000edd, mmCP_DFY_DATA_0 }, 4610 + { PwrCmdWrite, 0x80000e91, mmCP_DFY_DATA_0 }, 4611 + { PwrCmdWrite, 0x80000e91, mmCP_DFY_DATA_0 }, 4612 + { PwrCmdWrite, 0x80000ea1, mmCP_DFY_DATA_0 }, 4613 + { PwrCmdWrite, 0x80000eaa, mmCP_DFY_DATA_0 }, 4614 + { PwrCmdWrite, 0x80000e7c, mmCP_DFY_DATA_0 }, 4615 + { PwrCmdWrite, 0x80000e7f, mmCP_DFY_DATA_0 }, 4616 + { PwrCmdWrite, 0x80000e7f, mmCP_DFY_DATA_0 }, 4617 + { PwrCmdWrite, 0x80000e87, mmCP_DFY_DATA_0 }, 4618 + { PwrCmdWrite, 0x80000e8f, mmCP_DFY_DATA_0 }, 4619 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 4620 + { PwrCmdWrite, 0x51dc0020, mmCP_DFY_DATA_0 }, 4621 + { PwrCmdWrite, 0x7d9e001a, mmCP_DFY_DATA_0 }, 4622 + { PwrCmdWrite, 0x80000ee6, mmCP_DFY_DATA_0 }, 4623 + { PwrCmdWrite, 0xc420000e, mmCP_DFY_DATA_0 }, 4624 + { PwrCmdWrite, 0x2a200008, mmCP_DFY_DATA_0 }, 4625 + { PwrCmdWrite, 0xce000013, mmCP_DFY_DATA_0 }, 4626 + { PwrCmdWrite, 0xc4213262, mmCP_DFY_DATA_0 }, 4627 + { PwrCmdWrite, 0xc4253261, mmCP_DFY_DATA_0 }, 4628 + { PwrCmdWrite, 0x52200020, mmCP_DFY_DATA_0 }, 4629 + { PwrCmdWrite, 0x7e26001a, mmCP_DFY_DATA_0 }, 4630 + { PwrCmdWrite, 0x80000ee6, mmCP_DFY_DATA_0 }, 4631 + { PwrCmdWrite, 0xc420000e, mmCP_DFY_DATA_0 }, 4632 + { PwrCmdWrite, 0x2a200008, mmCP_DFY_DATA_0 }, 4633 + { PwrCmdWrite, 0xce000013, mmCP_DFY_DATA_0 }, 4634 + { PwrCmdWrite, 0xc4213264, mmCP_DFY_DATA_0 }, 4635 + { PwrCmdWrite, 0xc4253263, mmCP_DFY_DATA_0 }, 4636 + { PwrCmdWrite, 0x52200020, mmCP_DFY_DATA_0 }, 4637 + { PwrCmdWrite, 0x7e26001a, mmCP_DFY_DATA_0 }, 4638 + { PwrCmdWrite, 0x80000ee6, mmCP_DFY_DATA_0 }, 4639 + { PwrCmdWrite, 0xc820001f, mmCP_DFY_DATA_0 }, 4640 + { PwrCmdWrite, 0x80000ee6, mmCP_DFY_DATA_0 }, 4641 + { PwrCmdWrite, 0x18e82005, mmCP_DFY_DATA_0 }, 4642 + { PwrCmdWrite, 0x51e00020, mmCP_DFY_DATA_0 }, 4643 + { PwrCmdWrite, 0x2aa80000, mmCP_DFY_DATA_0 }, 4644 + { PwrCmdWrite, 0x7da1801a, mmCP_DFY_DATA_0 }, 4645 + { PwrCmdWrite, 0xd1800072, mmCP_DFY_DATA_0 }, 4646 + { PwrCmdWrite, 0xc8180072, mmCP_DFY_DATA_0 }, 4647 + { PwrCmdWrite, 0x59a001fc, mmCP_DFY_DATA_0 }, 4648 + { PwrCmdWrite, 0x12200009, mmCP_DFY_DATA_0 }, 4649 + { PwrCmdWrite, 0x7ea2800a, mmCP_DFY_DATA_0 }, 4650 + { PwrCmdWrite, 0xce80001c, mmCP_DFY_DATA_0 }, 4651 + { PwrCmdWrite, 0xd180001e, mmCP_DFY_DATA_0 }, 4652 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 4653 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 4654 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 4655 + { PwrCmdWrite, 0xc8200011, mmCP_DFY_DATA_0 }, 4656 + { PwrCmdWrite, 0x80000ee6, mmCP_DFY_DATA_0 }, 4657 + { PwrCmdWrite, 0x15980002, mmCP_DFY_DATA_0 }, 4658 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4659 + { PwrCmdWrite, 0xcd81c400, mmCP_DFY_DATA_0 }, 4660 + { PwrCmdWrite, 0xc421c401, mmCP_DFY_DATA_0 }, 4661 + { PwrCmdWrite, 0x95400041, mmCP_DFY_DATA_0 }, 4662 + { PwrCmdWrite, 0xc425c401, mmCP_DFY_DATA_0 }, 4663 + { PwrCmdWrite, 0x52640020, mmCP_DFY_DATA_0 }, 4664 + { PwrCmdWrite, 0x7e26001a, mmCP_DFY_DATA_0 }, 4665 + { PwrCmdWrite, 0x80000ee6, mmCP_DFY_DATA_0 }, 4666 + { PwrCmdWrite, 0x31ac2580, mmCP_DFY_DATA_0 }, 4667 + { PwrCmdWrite, 0x9ac00011, mmCP_DFY_DATA_0 }, 4668 + { PwrCmdWrite, 0x31ac260c, mmCP_DFY_DATA_0 }, 4669 + { PwrCmdWrite, 0x9ac0000f, mmCP_DFY_DATA_0 }, 4670 + { PwrCmdWrite, 0x31ac0800, mmCP_DFY_DATA_0 }, 4671 + { PwrCmdWrite, 0x9ac0000d, mmCP_DFY_DATA_0 }, 4672 + { PwrCmdWrite, 0x31ac0828, mmCP_DFY_DATA_0 }, 4673 + { PwrCmdWrite, 0x9ac0000b, mmCP_DFY_DATA_0 }, 4674 + { PwrCmdWrite, 0x31ac2440, mmCP_DFY_DATA_0 }, 4675 + { PwrCmdWrite, 0x9ac00009, mmCP_DFY_DATA_0 }, 4676 + { PwrCmdWrite, 0x31ac2390, mmCP_DFY_DATA_0 }, 4677 + { PwrCmdWrite, 0x9ac00007, mmCP_DFY_DATA_0 }, 4678 + { PwrCmdWrite, 0x31ac0093, mmCP_DFY_DATA_0 }, 4679 + { PwrCmdWrite, 0x9ac00005, mmCP_DFY_DATA_0 }, 4680 + { PwrCmdWrite, 0x31ac31dc, mmCP_DFY_DATA_0 }, 4681 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4682 + { PwrCmdWrite, 0x31ac31e6, mmCP_DFY_DATA_0 }, 4683 + { PwrCmdWrite, 0x96c00004, mmCP_DFY_DATA_0 }, 4684 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 4685 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 4686 + { PwrCmdWrite, 0x80000ede, mmCP_DFY_DATA_0 }, 4687 + { PwrCmdWrite, 0x39ac7c06, mmCP_DFY_DATA_0 }, 4688 + { PwrCmdWrite, 0x3db07c00, mmCP_DFY_DATA_0 }, 4689 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4690 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4691 + { PwrCmdWrite, 0x80000ebc, mmCP_DFY_DATA_0 }, 4692 + { PwrCmdWrite, 0x39acc337, mmCP_DFY_DATA_0 }, 4693 + { PwrCmdWrite, 0x3db0c330, mmCP_DFY_DATA_0 }, 4694 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4695 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4696 + { PwrCmdWrite, 0x80000ebc, mmCP_DFY_DATA_0 }, 4697 + { PwrCmdWrite, 0x39acc335, mmCP_DFY_DATA_0 }, 4698 + { PwrCmdWrite, 0x3db0c336, mmCP_DFY_DATA_0 }, 4699 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4700 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4701 + { PwrCmdWrite, 0x80000ebc, mmCP_DFY_DATA_0 }, 4702 + { PwrCmdWrite, 0x39ac9002, mmCP_DFY_DATA_0 }, 4703 + { PwrCmdWrite, 0x3db09001, mmCP_DFY_DATA_0 }, 4704 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4705 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4706 + { PwrCmdWrite, 0x80000ebc, mmCP_DFY_DATA_0 }, 4707 + { PwrCmdWrite, 0x39ac9012, mmCP_DFY_DATA_0 }, 4708 + { PwrCmdWrite, 0x3db09011, mmCP_DFY_DATA_0 }, 4709 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4710 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4711 + { PwrCmdWrite, 0x80000ebc, mmCP_DFY_DATA_0 }, 4712 + { PwrCmdWrite, 0x39acec70, mmCP_DFY_DATA_0 }, 4713 + { PwrCmdWrite, 0x3db0ec6f, mmCP_DFY_DATA_0 }, 4714 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4715 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4716 + { PwrCmdWrite, 0x80000ebc, mmCP_DFY_DATA_0 }, 4717 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 4718 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4719 + { PwrCmdWrite, 0xc5a10000, mmCP_DFY_DATA_0 }, 4720 + { PwrCmdWrite, 0x95400005, mmCP_DFY_DATA_0 }, 4721 + { PwrCmdWrite, 0x05980001, mmCP_DFY_DATA_0 }, 4722 + { PwrCmdWrite, 0xc5a50000, mmCP_DFY_DATA_0 }, 4723 + { PwrCmdWrite, 0x52640020, mmCP_DFY_DATA_0 }, 4724 + { PwrCmdWrite, 0x7e26001a, mmCP_DFY_DATA_0 }, 4725 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 4726 + { PwrCmdWrite, 0x05280eea, mmCP_DFY_DATA_0 }, 4727 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 4728 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 4729 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 4730 + { PwrCmdWrite, 0x80000ef1, mmCP_DFY_DATA_0 }, 4731 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 4732 + { PwrCmdWrite, 0x80000efe, mmCP_DFY_DATA_0 }, 4733 + { PwrCmdWrite, 0x80000f11, mmCP_DFY_DATA_0 }, 4734 + { PwrCmdWrite, 0x80000f2e, mmCP_DFY_DATA_0 }, 4735 + { PwrCmdWrite, 0x80000efe, mmCP_DFY_DATA_0 }, 4736 + { PwrCmdWrite, 0x80000f1f, mmCP_DFY_DATA_0 }, 4737 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 4738 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4739 + { PwrCmdWrite, 0xce190000, mmCP_DFY_DATA_0 }, 4740 + { PwrCmdWrite, 0x95400005, mmCP_DFY_DATA_0 }, 4741 + { PwrCmdWrite, 0x05980001, mmCP_DFY_DATA_0 }, 4742 + { PwrCmdWrite, 0x56200020, mmCP_DFY_DATA_0 }, 4743 + { PwrCmdWrite, 0xce190000, mmCP_DFY_DATA_0 }, 4744 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 4745 + { PwrCmdWrite, 0x97c0f26f, mmCP_DFY_DATA_0 }, 4746 + { PwrCmdWrite, 0xc439c040, mmCP_DFY_DATA_0 }, 4747 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 4748 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4749 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4750 + { PwrCmdWrite, 0x51ec0020, mmCP_DFY_DATA_0 }, 4751 + { PwrCmdWrite, 0x18e80058, mmCP_DFY_DATA_0 }, 4752 + { PwrCmdWrite, 0x7daec01a, mmCP_DFY_DATA_0 }, 4753 + { PwrCmdWrite, 0xd2c00072, mmCP_DFY_DATA_0 }, 4754 + { PwrCmdWrite, 0xc82c0072, mmCP_DFY_DATA_0 }, 4755 + { PwrCmdWrite, 0x5af8073a, mmCP_DFY_DATA_0 }, 4756 + { PwrCmdWrite, 0x7eba800a, mmCP_DFY_DATA_0 }, 4757 + { PwrCmdWrite, 0xd2c00025, mmCP_DFY_DATA_0 }, 4758 + { PwrCmdWrite, 0xce800024, mmCP_DFY_DATA_0 }, 4759 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 4760 + { PwrCmdWrite, 0x95400003, mmCP_DFY_DATA_0 }, 4761 + { PwrCmdWrite, 0x56240020, mmCP_DFY_DATA_0 }, 4762 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 4763 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 4764 + { PwrCmdWrite, 0x97c0f25c, mmCP_DFY_DATA_0 }, 4765 + { PwrCmdWrite, 0xc4380012, mmCP_DFY_DATA_0 }, 4766 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 4767 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4768 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4769 + { PwrCmdWrite, 0xc02a0001, mmCP_DFY_DATA_0 }, 4770 + { PwrCmdWrite, 0x2aa80001, mmCP_DFY_DATA_0 }, 4771 + { PwrCmdWrite, 0x15980002, mmCP_DFY_DATA_0 }, 4772 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 4773 + { PwrCmdWrite, 0xcd81c405, mmCP_DFY_DATA_0 }, 4774 + { PwrCmdWrite, 0xce01c406, mmCP_DFY_DATA_0 }, 4775 + { PwrCmdWrite, 0x95400003, mmCP_DFY_DATA_0 }, 4776 + { PwrCmdWrite, 0x56240020, mmCP_DFY_DATA_0 }, 4777 + { PwrCmdWrite, 0xce41c406, mmCP_DFY_DATA_0 }, 4778 + { PwrCmdWrite, 0x97c0f24e, mmCP_DFY_DATA_0 }, 4779 + { PwrCmdWrite, 0xc439c409, mmCP_DFY_DATA_0 }, 4780 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 4781 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4782 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4783 + { PwrCmdWrite, 0xc424000b, mmCP_DFY_DATA_0 }, 4784 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 4785 + { PwrCmdWrite, 0x9a40f247, mmCP_DFY_DATA_0 }, 4786 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 4787 + { PwrCmdWrite, 0xce190000, mmCP_DFY_DATA_0 }, 4788 + { PwrCmdWrite, 0x95400004, mmCP_DFY_DATA_0 }, 4789 + { PwrCmdWrite, 0x05980001, mmCP_DFY_DATA_0 }, 4790 + { PwrCmdWrite, 0x56200020, mmCP_DFY_DATA_0 }, 4791 + { PwrCmdWrite, 0xce190000, mmCP_DFY_DATA_0 }, 4792 + { PwrCmdWrite, 0x97c0f240, mmCP_DFY_DATA_0 }, 4793 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4794 + { PwrCmdWrite, 0xc439c040, mmCP_DFY_DATA_0 }, 4795 + { PwrCmdWrite, 0x97800001, mmCP_DFY_DATA_0 }, 4796 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4797 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4798 + { PwrCmdWrite, 0x31ac2580, mmCP_DFY_DATA_0 }, 4799 + { PwrCmdWrite, 0x9ac00011, mmCP_DFY_DATA_0 }, 4800 + { PwrCmdWrite, 0x31ac260c, mmCP_DFY_DATA_0 }, 4801 + { PwrCmdWrite, 0x9ac0000f, mmCP_DFY_DATA_0 }, 4802 + { PwrCmdWrite, 0x31ac0800, mmCP_DFY_DATA_0 }, 4803 + { PwrCmdWrite, 0x9ac0000d, mmCP_DFY_DATA_0 }, 4804 + { PwrCmdWrite, 0x31ac0828, mmCP_DFY_DATA_0 }, 4805 + { PwrCmdWrite, 0x9ac0000b, mmCP_DFY_DATA_0 }, 4806 + { PwrCmdWrite, 0x31ac2440, mmCP_DFY_DATA_0 }, 4807 + { PwrCmdWrite, 0x9ac00009, mmCP_DFY_DATA_0 }, 4808 + { PwrCmdWrite, 0x31ac2390, mmCP_DFY_DATA_0 }, 4809 + { PwrCmdWrite, 0x9ac00007, mmCP_DFY_DATA_0 }, 4810 + { PwrCmdWrite, 0x31ac0093, mmCP_DFY_DATA_0 }, 4811 + { PwrCmdWrite, 0x9ac00005, mmCP_DFY_DATA_0 }, 4812 + { PwrCmdWrite, 0x31ac31dc, mmCP_DFY_DATA_0 }, 4813 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4814 + { PwrCmdWrite, 0x31ac31e6, mmCP_DFY_DATA_0 }, 4815 + { PwrCmdWrite, 0x96c00004, mmCP_DFY_DATA_0 }, 4816 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 4817 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 4818 + { PwrCmdWrite, 0x80000ef2, mmCP_DFY_DATA_0 }, 4819 + { PwrCmdWrite, 0x39ac7c06, mmCP_DFY_DATA_0 }, 4820 + { PwrCmdWrite, 0x3db07c00, mmCP_DFY_DATA_0 }, 4821 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4822 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4823 + { PwrCmdWrite, 0x80000f40, mmCP_DFY_DATA_0 }, 4824 + { PwrCmdWrite, 0x39acc337, mmCP_DFY_DATA_0 }, 4825 + { PwrCmdWrite, 0x3db0c330, mmCP_DFY_DATA_0 }, 4826 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4827 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4828 + { PwrCmdWrite, 0x80000f40, mmCP_DFY_DATA_0 }, 4829 + { PwrCmdWrite, 0x39acc335, mmCP_DFY_DATA_0 }, 4830 + { PwrCmdWrite, 0x3db0c336, mmCP_DFY_DATA_0 }, 4831 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4832 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4833 + { PwrCmdWrite, 0x80000f40, mmCP_DFY_DATA_0 }, 4834 + { PwrCmdWrite, 0x39acec70, mmCP_DFY_DATA_0 }, 4835 + { PwrCmdWrite, 0x3db0ec6f, mmCP_DFY_DATA_0 }, 4836 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4837 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4838 + { PwrCmdWrite, 0x80000f40, mmCP_DFY_DATA_0 }, 4839 + { PwrCmdWrite, 0x39ac9002, mmCP_DFY_DATA_0 }, 4840 + { PwrCmdWrite, 0x3db09002, mmCP_DFY_DATA_0 }, 4841 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4842 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4843 + { PwrCmdWrite, 0x80000f40, mmCP_DFY_DATA_0 }, 4844 + { PwrCmdWrite, 0x39ac9012, mmCP_DFY_DATA_0 }, 4845 + { PwrCmdWrite, 0x3db09012, mmCP_DFY_DATA_0 }, 4846 + { PwrCmdWrite, 0x9ac00003, mmCP_DFY_DATA_0 }, 4847 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 4848 + { PwrCmdWrite, 0x80000f40, mmCP_DFY_DATA_0 }, 4849 + { PwrCmdWrite, 0x80000ef1, mmCP_DFY_DATA_0 }, 4850 + { PwrCmdWrite, 0xc40c0006, mmCP_DFY_DATA_0 }, 4851 + { PwrCmdWrite, 0x98c0ffff, mmCP_DFY_DATA_0 }, 4852 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4853 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 4854 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 4855 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 4856 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 4857 + { PwrCmdWrite, 0x7c43c001, mmCP_DFY_DATA_0 }, 4858 + { PwrCmdWrite, 0x95c00001, mmCP_DFY_DATA_0 }, 4859 + { PwrCmdWrite, 0xc434000e, mmCP_DFY_DATA_0 }, 4860 + { PwrCmdWrite, 0x2b740008, mmCP_DFY_DATA_0 }, 4861 + { PwrCmdWrite, 0x2b780001, mmCP_DFY_DATA_0 }, 4862 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 4863 + { PwrCmdWrite, 0xd8c1325e, mmCP_DFY_DATA_0 }, 4864 + { PwrCmdWrite, 0xcf80001a, mmCP_DFY_DATA_0 }, 4865 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 4866 + { PwrCmdWrite, 0x7c034001, mmCP_DFY_DATA_0 }, 4867 + { PwrCmdWrite, 0x7c038001, mmCP_DFY_DATA_0 }, 4868 + { PwrCmdWrite, 0x18e0007d, mmCP_DFY_DATA_0 }, 4869 + { PwrCmdWrite, 0x32240003, mmCP_DFY_DATA_0 }, 4870 + { PwrCmdWrite, 0x9a400006, mmCP_DFY_DATA_0 }, 4871 + { PwrCmdWrite, 0x32240000, mmCP_DFY_DATA_0 }, 4872 + { PwrCmdWrite, 0x9a400004, mmCP_DFY_DATA_0 }, 4873 + { PwrCmdWrite, 0xcd01c080, mmCP_DFY_DATA_0 }, 4874 + { PwrCmdWrite, 0xcd41c081, mmCP_DFY_DATA_0 }, 4875 + { PwrCmdWrite, 0x80000f88, mmCP_DFY_DATA_0 }, 4876 + { PwrCmdWrite, 0x51640020, mmCP_DFY_DATA_0 }, 4877 + { PwrCmdWrite, 0x7e52401a, mmCP_DFY_DATA_0 }, 4878 + { PwrCmdWrite, 0xd2400072, mmCP_DFY_DATA_0 }, 4879 + { PwrCmdWrite, 0xc8280072, mmCP_DFY_DATA_0 }, 4880 + { PwrCmdWrite, 0xce81c080, mmCP_DFY_DATA_0 }, 4881 + { PwrCmdWrite, 0x56ac0020, mmCP_DFY_DATA_0 }, 4882 + { PwrCmdWrite, 0x26f0ffff, mmCP_DFY_DATA_0 }, 4883 + { PwrCmdWrite, 0xcf01c081, mmCP_DFY_DATA_0 }, 4884 + { PwrCmdWrite, 0x1af000fc, mmCP_DFY_DATA_0 }, 4885 + { PwrCmdWrite, 0x1334000a, mmCP_DFY_DATA_0 }, 4886 + { PwrCmdWrite, 0x24e02000, mmCP_DFY_DATA_0 }, 4887 + { PwrCmdWrite, 0x7f63400a, mmCP_DFY_DATA_0 }, 4888 + { PwrCmdWrite, 0x18e00074, mmCP_DFY_DATA_0 }, 4889 + { PwrCmdWrite, 0x32240003, mmCP_DFY_DATA_0 }, 4890 + { PwrCmdWrite, 0x9a400006, mmCP_DFY_DATA_0 }, 4891 + { PwrCmdWrite, 0x32240000, mmCP_DFY_DATA_0 }, 4892 + { PwrCmdWrite, 0x9a400004, mmCP_DFY_DATA_0 }, 4893 + { PwrCmdWrite, 0xcd81c082, mmCP_DFY_DATA_0 }, 4894 + { PwrCmdWrite, 0xcdc1c083, mmCP_DFY_DATA_0 }, 4895 + { PwrCmdWrite, 0x80000f9d, mmCP_DFY_DATA_0 }, 4896 + { PwrCmdWrite, 0x51e40020, mmCP_DFY_DATA_0 }, 4897 + { PwrCmdWrite, 0x7e5a401a, mmCP_DFY_DATA_0 }, 4898 + { PwrCmdWrite, 0xd2400072, mmCP_DFY_DATA_0 }, 4899 + { PwrCmdWrite, 0xc8280072, mmCP_DFY_DATA_0 }, 4900 + { PwrCmdWrite, 0xce81c082, mmCP_DFY_DATA_0 }, 4901 + { PwrCmdWrite, 0x56ac0020, mmCP_DFY_DATA_0 }, 4902 + { PwrCmdWrite, 0x26f0ffff, mmCP_DFY_DATA_0 }, 4903 + { PwrCmdWrite, 0xcf01c083, mmCP_DFY_DATA_0 }, 4904 + { PwrCmdWrite, 0x1af000fc, mmCP_DFY_DATA_0 }, 4905 + { PwrCmdWrite, 0x13380016, mmCP_DFY_DATA_0 }, 4906 + { PwrCmdWrite, 0x18e00039, mmCP_DFY_DATA_0 }, 4907 + { PwrCmdWrite, 0x12200019, mmCP_DFY_DATA_0 }, 4908 + { PwrCmdWrite, 0x7fa3800a, mmCP_DFY_DATA_0 }, 4909 + { PwrCmdWrite, 0x7fb7800a, mmCP_DFY_DATA_0 }, 4910 + { PwrCmdWrite, 0x18e0007d, mmCP_DFY_DATA_0 }, 4911 + { PwrCmdWrite, 0x1220001d, mmCP_DFY_DATA_0 }, 4912 + { PwrCmdWrite, 0x7fa3800a, mmCP_DFY_DATA_0 }, 4913 + { PwrCmdWrite, 0x18e00074, mmCP_DFY_DATA_0 }, 4914 + { PwrCmdWrite, 0x12200014, mmCP_DFY_DATA_0 }, 4915 + { PwrCmdWrite, 0x7fa3800a, mmCP_DFY_DATA_0 }, 4916 + { PwrCmdWrite, 0xcf81c078, mmCP_DFY_DATA_0 }, 4917 + { PwrCmdWrite, 0xcfc1c084, mmCP_DFY_DATA_0 }, 4918 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 4919 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 4920 + { PwrCmdWrite, 0x18dc003d, mmCP_DFY_DATA_0 }, 4921 + { PwrCmdWrite, 0x95c00004, mmCP_DFY_DATA_0 }, 4922 + { PwrCmdWrite, 0x041c0000, mmCP_DFY_DATA_0 }, 4923 + { PwrCmdWrite, 0x042c01c8, mmCP_DFY_DATA_0 }, 4924 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 4925 + { PwrCmdWrite, 0x18d001e8, mmCP_DFY_DATA_0 }, 4926 + { PwrCmdWrite, 0x31140005, mmCP_DFY_DATA_0 }, 4927 + { PwrCmdWrite, 0x99400003, mmCP_DFY_DATA_0 }, 4928 + { PwrCmdWrite, 0x31140006, mmCP_DFY_DATA_0 }, 4929 + { PwrCmdWrite, 0x95400002, mmCP_DFY_DATA_0 }, 4930 + { PwrCmdWrite, 0x8c00104f, mmCP_DFY_DATA_0 }, 4931 + { PwrCmdWrite, 0x05280fb7, mmCP_DFY_DATA_0 }, 4932 + { PwrCmdWrite, 0x28140002, mmCP_DFY_DATA_0 }, 4933 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 4934 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 4935 + { PwrCmdWrite, 0x80000fbe, mmCP_DFY_DATA_0 }, 4936 + { PwrCmdWrite, 0x80000fbe, mmCP_DFY_DATA_0 }, 4937 + { PwrCmdWrite, 0x80000fc2, mmCP_DFY_DATA_0 }, 4938 + { PwrCmdWrite, 0x80000fbe, mmCP_DFY_DATA_0 }, 4939 + { PwrCmdWrite, 0x80000fd1, mmCP_DFY_DATA_0 }, 4940 + { PwrCmdWrite, 0x80000ff2, mmCP_DFY_DATA_0 }, 4941 + { PwrCmdWrite, 0x80000ff2, mmCP_DFY_DATA_0 }, 4942 + { PwrCmdWrite, 0x24cc003f, mmCP_DFY_DATA_0 }, 4943 + { PwrCmdWrite, 0xccc1a2a4, mmCP_DFY_DATA_0 }, 4944 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4945 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4946 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 4947 + { PwrCmdWrite, 0x18e80039, mmCP_DFY_DATA_0 }, 4948 + { PwrCmdWrite, 0x52a8003b, mmCP_DFY_DATA_0 }, 4949 + { PwrCmdWrite, 0x50580020, mmCP_DFY_DATA_0 }, 4950 + { PwrCmdWrite, 0x24cc003f, mmCP_DFY_DATA_0 }, 4951 + { PwrCmdWrite, 0x7d59401a, mmCP_DFY_DATA_0 }, 4952 + { PwrCmdWrite, 0xd1400072, mmCP_DFY_DATA_0 }, 4953 + { PwrCmdWrite, 0xc8140072, mmCP_DFY_DATA_0 }, 4954 + { PwrCmdWrite, 0x7d69401a, mmCP_DFY_DATA_0 }, 4955 + { PwrCmdWrite, 0xc41c0017, mmCP_DFY_DATA_0 }, 4956 + { PwrCmdWrite, 0x99c0ffff, mmCP_DFY_DATA_0 }, 4957 + { PwrCmdWrite, 0xd140004b, mmCP_DFY_DATA_0 }, 4958 + { PwrCmdWrite, 0xccc1a2a4, mmCP_DFY_DATA_0 }, 4959 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 4960 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 4961 + { PwrCmdWrite, 0xc414000d, mmCP_DFY_DATA_0 }, 4962 + { PwrCmdWrite, 0x04180001, mmCP_DFY_DATA_0 }, 4963 + { PwrCmdWrite, 0x24cc003f, mmCP_DFY_DATA_0 }, 4964 + { PwrCmdWrite, 0x7d958004, mmCP_DFY_DATA_0 }, 4965 + { PwrCmdWrite, 0xcd800035, mmCP_DFY_DATA_0 }, 4966 + { PwrCmdWrite, 0xccc1a2a4, mmCP_DFY_DATA_0 }, 4967 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 4968 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 4969 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 4970 + { PwrCmdWrite, 0xc43d3249, mmCP_DFY_DATA_0 }, 4971 + { PwrCmdWrite, 0x1bfc003e, mmCP_DFY_DATA_0 }, 4972 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 4973 + { PwrCmdWrite, 0xd8400074, mmCP_DFY_DATA_0 }, 4974 + { PwrCmdWrite, 0xc4100019, mmCP_DFY_DATA_0 }, 4975 + { PwrCmdWrite, 0x7d150005, mmCP_DFY_DATA_0 }, 4976 + { PwrCmdWrite, 0x25100001, mmCP_DFY_DATA_0 }, 4977 + { PwrCmdWrite, 0x9500000b, mmCP_DFY_DATA_0 }, 4978 + { PwrCmdWrite, 0x97c0fffc, mmCP_DFY_DATA_0 }, 4979 + { PwrCmdWrite, 0xc4180021, mmCP_DFY_DATA_0 }, 4980 + { PwrCmdWrite, 0x159c0011, mmCP_DFY_DATA_0 }, 4981 + { PwrCmdWrite, 0x259800ff, mmCP_DFY_DATA_0 }, 4982 + { PwrCmdWrite, 0x31a00003, mmCP_DFY_DATA_0 }, 4983 + { PwrCmdWrite, 0x31a40001, mmCP_DFY_DATA_0 }, 4984 + { PwrCmdWrite, 0x7e25800a, mmCP_DFY_DATA_0 }, 4985 + { PwrCmdWrite, 0x95c0fff5, mmCP_DFY_DATA_0 }, 4986 + { PwrCmdWrite, 0x9580fff4, mmCP_DFY_DATA_0 }, 4987 + { PwrCmdWrite, 0x80000fef, mmCP_DFY_DATA_0 }, 4988 + { PwrCmdWrite, 0xc411326f, mmCP_DFY_DATA_0 }, 4989 + { PwrCmdWrite, 0x1d100010, mmCP_DFY_DATA_0 }, 4990 + { PwrCmdWrite, 0xcd01326f, mmCP_DFY_DATA_0 }, 4991 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 4992 + { PwrCmdWrite, 0xd8000074, mmCP_DFY_DATA_0 }, 4993 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 4994 + { PwrCmdWrite, 0x04380000, mmCP_DFY_DATA_0 }, 4995 + { PwrCmdWrite, 0xc430000d, mmCP_DFY_DATA_0 }, 4996 + { PwrCmdWrite, 0xc8140023, mmCP_DFY_DATA_0 }, 4997 + { PwrCmdWrite, 0xc4180081, mmCP_DFY_DATA_0 }, 4998 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 4999 + { PwrCmdWrite, 0xc011000f, mmCP_DFY_DATA_0 }, 5000 + { PwrCmdWrite, 0xc4240004, mmCP_DFY_DATA_0 }, 5001 + { PwrCmdWrite, 0x33b40003, mmCP_DFY_DATA_0 }, 5002 + { PwrCmdWrite, 0x97400003, mmCP_DFY_DATA_0 }, 5003 + { PwrCmdWrite, 0xc0340008, mmCP_DFY_DATA_0 }, 5004 + { PwrCmdWrite, 0x80000ffe, mmCP_DFY_DATA_0 }, 5005 + { PwrCmdWrite, 0xc4340035, mmCP_DFY_DATA_0 }, 5006 + { PwrCmdWrite, 0x11a00002, mmCP_DFY_DATA_0 }, 5007 + { PwrCmdWrite, 0x7c908009, mmCP_DFY_DATA_0 }, 5008 + { PwrCmdWrite, 0x12640004, mmCP_DFY_DATA_0 }, 5009 + { PwrCmdWrite, 0x7d614011, mmCP_DFY_DATA_0 }, 5010 + { PwrCmdWrite, 0xc4100026, mmCP_DFY_DATA_0 }, 5011 + { PwrCmdWrite, 0x05980008, mmCP_DFY_DATA_0 }, 5012 + { PwrCmdWrite, 0x7ca4800a, mmCP_DFY_DATA_0 }, 5013 + { PwrCmdWrite, 0x7d1a0002, mmCP_DFY_DATA_0 }, 5014 + { PwrCmdWrite, 0x7cb0800a, mmCP_DFY_DATA_0 }, 5015 + { PwrCmdWrite, 0x282c2002, mmCP_DFY_DATA_0 }, 5016 + { PwrCmdWrite, 0x208801a8, mmCP_DFY_DATA_0 }, 5017 + { PwrCmdWrite, 0x3e280008, mmCP_DFY_DATA_0 }, 5018 + { PwrCmdWrite, 0x7cb4800a, mmCP_DFY_DATA_0 }, 5019 + { PwrCmdWrite, 0xcec00013, mmCP_DFY_DATA_0 }, 5020 + { PwrCmdWrite, 0xc4300027, mmCP_DFY_DATA_0 }, 5021 + { PwrCmdWrite, 0x042c0008, mmCP_DFY_DATA_0 }, 5022 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 5023 + { PwrCmdWrite, 0xcf000024, mmCP_DFY_DATA_0 }, 5024 + { PwrCmdWrite, 0x20240030, mmCP_DFY_DATA_0 }, 5025 + { PwrCmdWrite, 0x7ca48001, mmCP_DFY_DATA_0 }, 5026 + { PwrCmdWrite, 0xcc800026, mmCP_DFY_DATA_0 }, 5027 + { PwrCmdWrite, 0xccc00026, mmCP_DFY_DATA_0 }, 5028 + { PwrCmdWrite, 0x9b800013, mmCP_DFY_DATA_0 }, 5029 + { PwrCmdWrite, 0xcc400026, mmCP_DFY_DATA_0 }, 5030 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 5031 + { PwrCmdWrite, 0x28340000, mmCP_DFY_DATA_0 }, 5032 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 5033 + { PwrCmdWrite, 0x507c0020, mmCP_DFY_DATA_0 }, 5034 + { PwrCmdWrite, 0x7d7d401a, mmCP_DFY_DATA_0 }, 5035 + { PwrCmdWrite, 0xd1400072, mmCP_DFY_DATA_0 }, 5036 + { PwrCmdWrite, 0xc8140072, mmCP_DFY_DATA_0 }, 5037 + { PwrCmdWrite, 0x557c0020, mmCP_DFY_DATA_0 }, 5038 + { PwrCmdWrite, 0x28342002, mmCP_DFY_DATA_0 }, 5039 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 5040 + { PwrCmdWrite, 0xcd400026, mmCP_DFY_DATA_0 }, 5041 + { PwrCmdWrite, 0xcfc00026, mmCP_DFY_DATA_0 }, 5042 + { PwrCmdWrite, 0xd4400026, mmCP_DFY_DATA_0 }, 5043 + { PwrCmdWrite, 0x9a80000e, mmCP_DFY_DATA_0 }, 5044 + { PwrCmdWrite, 0x32280000, mmCP_DFY_DATA_0 }, 5045 + { PwrCmdWrite, 0x9a80000b, mmCP_DFY_DATA_0 }, 5046 + { PwrCmdWrite, 0x8000102f, mmCP_DFY_DATA_0 }, 5047 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5048 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5049 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5050 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5051 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5052 + { PwrCmdWrite, 0x9a800005, mmCP_DFY_DATA_0 }, 5053 + { PwrCmdWrite, 0x32280000, mmCP_DFY_DATA_0 }, 5054 + { PwrCmdWrite, 0x9a800002, mmCP_DFY_DATA_0 }, 5055 + { PwrCmdWrite, 0x9a000000, mmCP_DFY_DATA_0 }, 5056 + { PwrCmdWrite, 0x7c018001, mmCP_DFY_DATA_0 }, 5057 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5058 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 5059 + { PwrCmdWrite, 0x1cccfe08, mmCP_DFY_DATA_0 }, 5060 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 5061 + { PwrCmdWrite, 0xcec0003a, mmCP_DFY_DATA_0 }, 5062 + { PwrCmdWrite, 0xccc1a2a4, mmCP_DFY_DATA_0 }, 5063 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 5064 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 5065 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 5066 + { PwrCmdWrite, 0xc43d3249, mmCP_DFY_DATA_0 }, 5067 + { PwrCmdWrite, 0x1bfc003e, mmCP_DFY_DATA_0 }, 5068 + { PwrCmdWrite, 0x9bc00007, mmCP_DFY_DATA_0 }, 5069 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 5070 + { PwrCmdWrite, 0x16a80008, mmCP_DFY_DATA_0 }, 5071 + { PwrCmdWrite, 0xce800009, mmCP_DFY_DATA_0 }, 5072 + { PwrCmdWrite, 0xc42c005e, mmCP_DFY_DATA_0 }, 5073 + { PwrCmdWrite, 0x96c00b33, mmCP_DFY_DATA_0 }, 5074 + { PwrCmdWrite, 0xd840003c, mmCP_DFY_DATA_0 }, 5075 + { PwrCmdWrite, 0xc4200025, mmCP_DFY_DATA_0 }, 5076 + { PwrCmdWrite, 0x7da2400f, mmCP_DFY_DATA_0 }, 5077 + { PwrCmdWrite, 0x7da28002, mmCP_DFY_DATA_0 }, 5078 + { PwrCmdWrite, 0x7e1ac002, mmCP_DFY_DATA_0 }, 5079 + { PwrCmdWrite, 0x0aec0001, mmCP_DFY_DATA_0 }, 5080 + { PwrCmdWrite, 0x96400002, mmCP_DFY_DATA_0 }, 5081 + { PwrCmdWrite, 0x7d2ac002, mmCP_DFY_DATA_0 }, 5082 + { PwrCmdWrite, 0x3ef40010, mmCP_DFY_DATA_0 }, 5083 + { PwrCmdWrite, 0x9b40f11d, mmCP_DFY_DATA_0 }, 5084 + { PwrCmdWrite, 0x04380030, mmCP_DFY_DATA_0 }, 5085 + { PwrCmdWrite, 0xcf81325e, mmCP_DFY_DATA_0 }, 5086 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 5087 + { PwrCmdWrite, 0xde410000, mmCP_DFY_DATA_0 }, 5088 + { PwrCmdWrite, 0xdcc10000, mmCP_DFY_DATA_0 }, 5089 + { PwrCmdWrite, 0xdd010000, mmCP_DFY_DATA_0 }, 5090 + { PwrCmdWrite, 0xdd410000, mmCP_DFY_DATA_0 }, 5091 + { PwrCmdWrite, 0xdd810000, mmCP_DFY_DATA_0 }, 5092 + { PwrCmdWrite, 0xddc10000, mmCP_DFY_DATA_0 }, 5093 + { PwrCmdWrite, 0xde010000, mmCP_DFY_DATA_0 }, 5094 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 5095 + { PwrCmdWrite, 0x7c024001, mmCP_DFY_DATA_0 }, 5096 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 5097 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 5098 + { PwrCmdWrite, 0xc8100086, mmCP_DFY_DATA_0 }, 5099 + { PwrCmdWrite, 0x5510003f, mmCP_DFY_DATA_0 }, 5100 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 5101 + { PwrCmdWrite, 0x18cc003e, mmCP_DFY_DATA_0 }, 5102 + { PwrCmdWrite, 0x98c00003, mmCP_DFY_DATA_0 }, 5103 + { PwrCmdWrite, 0x99000011, mmCP_DFY_DATA_0 }, 5104 + { PwrCmdWrite, 0x80001075, mmCP_DFY_DATA_0 }, 5105 + { PwrCmdWrite, 0x9900000c, mmCP_DFY_DATA_0 }, 5106 + { PwrCmdWrite, 0xc40c0026, mmCP_DFY_DATA_0 }, 5107 + { PwrCmdWrite, 0xc4100081, mmCP_DFY_DATA_0 }, 5108 + { PwrCmdWrite, 0xc4140025, mmCP_DFY_DATA_0 }, 5109 + { PwrCmdWrite, 0x7d15800f, mmCP_DFY_DATA_0 }, 5110 + { PwrCmdWrite, 0x7d15c002, mmCP_DFY_DATA_0 }, 5111 + { PwrCmdWrite, 0x7d520002, mmCP_DFY_DATA_0 }, 5112 + { PwrCmdWrite, 0x0a200001, mmCP_DFY_DATA_0 }, 5113 + { PwrCmdWrite, 0x95800002, mmCP_DFY_DATA_0 }, 5114 + { PwrCmdWrite, 0x7cde0002, mmCP_DFY_DATA_0 }, 5115 + { PwrCmdWrite, 0x3e20001a, mmCP_DFY_DATA_0 }, 5116 + { PwrCmdWrite, 0x9a000009, mmCP_DFY_DATA_0 }, 5117 + { PwrCmdWrite, 0x040c0030, mmCP_DFY_DATA_0 }, 5118 + { PwrCmdWrite, 0xccc1325e, mmCP_DFY_DATA_0 }, 5119 + { PwrCmdWrite, 0x80001071, mmCP_DFY_DATA_0 }, 5120 + { PwrCmdWrite, 0xd9c00036, mmCP_DFY_DATA_0 }, 5121 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 5122 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 5123 + { PwrCmdWrite, 0x94c00b01, mmCP_DFY_DATA_0 }, 5124 + { PwrCmdWrite, 0x04240001, mmCP_DFY_DATA_0 }, 5125 + { PwrCmdWrite, 0xdc200000, mmCP_DFY_DATA_0 }, 5126 + { PwrCmdWrite, 0xdc1c0000, mmCP_DFY_DATA_0 }, 5127 + { PwrCmdWrite, 0xdc180000, mmCP_DFY_DATA_0 }, 5128 + { PwrCmdWrite, 0xdc140000, mmCP_DFY_DATA_0 }, 5129 + { PwrCmdWrite, 0xdc100000, mmCP_DFY_DATA_0 }, 5130 + { PwrCmdWrite, 0xdc0c0000, mmCP_DFY_DATA_0 }, 5131 + { PwrCmdWrite, 0x96400004, mmCP_DFY_DATA_0 }, 5132 + { PwrCmdWrite, 0xdc240000, mmCP_DFY_DATA_0 }, 5133 + { PwrCmdWrite, 0xdc0c0000, mmCP_DFY_DATA_0 }, 5134 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 5135 + { PwrCmdWrite, 0xdc240000, mmCP_DFY_DATA_0 }, 5136 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5137 + { PwrCmdWrite, 0xcc40003f, mmCP_DFY_DATA_0 }, 5138 + { PwrCmdWrite, 0xd8c00010, mmCP_DFY_DATA_0 }, 5139 + { PwrCmdWrite, 0xc4080029, mmCP_DFY_DATA_0 }, 5140 + { PwrCmdWrite, 0xcc80003b, mmCP_DFY_DATA_0 }, 5141 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 5142 + { PwrCmdWrite, 0x18a800e5, mmCP_DFY_DATA_0 }, 5143 + { PwrCmdWrite, 0x1d980008, mmCP_DFY_DATA_0 }, 5144 + { PwrCmdWrite, 0x12a80008, mmCP_DFY_DATA_0 }, 5145 + { PwrCmdWrite, 0x7da9800a, mmCP_DFY_DATA_0 }, 5146 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 5147 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 5148 + { PwrCmdWrite, 0x18a400e5, mmCP_DFY_DATA_0 }, 5149 + { PwrCmdWrite, 0x12500009, mmCP_DFY_DATA_0 }, 5150 + { PwrCmdWrite, 0x248c0008, mmCP_DFY_DATA_0 }, 5151 + { PwrCmdWrite, 0x94c00006, mmCP_DFY_DATA_0 }, 5152 + { PwrCmdWrite, 0x200c006d, mmCP_DFY_DATA_0 }, 5153 + { PwrCmdWrite, 0x7cd0c00a, mmCP_DFY_DATA_0 }, 5154 + { PwrCmdWrite, 0xccc1326c, mmCP_DFY_DATA_0 }, 5155 + { PwrCmdWrite, 0xc421326c, mmCP_DFY_DATA_0 }, 5156 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 5157 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 5158 + { PwrCmdWrite, 0x200c0228, mmCP_DFY_DATA_0 }, 5159 + { PwrCmdWrite, 0x7cd0c00a, mmCP_DFY_DATA_0 }, 5160 + { PwrCmdWrite, 0xccc1326c, mmCP_DFY_DATA_0 }, 5161 + { PwrCmdWrite, 0xc421326c, mmCP_DFY_DATA_0 }, 5162 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 5163 + { PwrCmdWrite, 0xc40c002a, mmCP_DFY_DATA_0 }, 5164 + { PwrCmdWrite, 0xc410002b, mmCP_DFY_DATA_0 }, 5165 + { PwrCmdWrite, 0x18881fe8, mmCP_DFY_DATA_0 }, 5166 + { PwrCmdWrite, 0x18d4072c, mmCP_DFY_DATA_0 }, 5167 + { PwrCmdWrite, 0x18cc00d1, mmCP_DFY_DATA_0 }, 5168 + { PwrCmdWrite, 0x7cd4c00a, mmCP_DFY_DATA_0 }, 5169 + { PwrCmdWrite, 0x3094000d, mmCP_DFY_DATA_0 }, 5170 + { PwrCmdWrite, 0x38d80000, mmCP_DFY_DATA_0 }, 5171 + { PwrCmdWrite, 0x311c0003, mmCP_DFY_DATA_0 }, 5172 + { PwrCmdWrite, 0x99400006, mmCP_DFY_DATA_0 }, 5173 + { PwrCmdWrite, 0x30940007, mmCP_DFY_DATA_0 }, 5174 + { PwrCmdWrite, 0x1620001f, mmCP_DFY_DATA_0 }, 5175 + { PwrCmdWrite, 0x9940001d, mmCP_DFY_DATA_0 }, 5176 + { PwrCmdWrite, 0x9a000023, mmCP_DFY_DATA_0 }, 5177 + { PwrCmdWrite, 0x800010c4, mmCP_DFY_DATA_0 }, 5178 + { PwrCmdWrite, 0x9580001a, mmCP_DFY_DATA_0 }, 5179 + { PwrCmdWrite, 0x99c00019, mmCP_DFY_DATA_0 }, 5180 + { PwrCmdWrite, 0xccc00041, mmCP_DFY_DATA_0 }, 5181 + { PwrCmdWrite, 0x25140001, mmCP_DFY_DATA_0 }, 5182 + { PwrCmdWrite, 0xc418002c, mmCP_DFY_DATA_0 }, 5183 + { PwrCmdWrite, 0x9940000d, mmCP_DFY_DATA_0 }, 5184 + { PwrCmdWrite, 0x259c007f, mmCP_DFY_DATA_0 }, 5185 + { PwrCmdWrite, 0x95c00013, mmCP_DFY_DATA_0 }, 5186 + { PwrCmdWrite, 0x19a00030, mmCP_DFY_DATA_0 }, 5187 + { PwrCmdWrite, 0xcdc0001b, mmCP_DFY_DATA_0 }, 5188 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5189 + { PwrCmdWrite, 0xd8400022, mmCP_DFY_DATA_0 }, 5190 + { PwrCmdWrite, 0xc430000f, mmCP_DFY_DATA_0 }, 5191 + { PwrCmdWrite, 0x17300001, mmCP_DFY_DATA_0 }, 5192 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 5193 + { PwrCmdWrite, 0x9a000012, mmCP_DFY_DATA_0 }, 5194 + { PwrCmdWrite, 0xd8400023, mmCP_DFY_DATA_0 }, 5195 + { PwrCmdWrite, 0x800010cb, mmCP_DFY_DATA_0 }, 5196 + { PwrCmdWrite, 0x199c0fe8, mmCP_DFY_DATA_0 }, 5197 + { PwrCmdWrite, 0xcdc0001b, mmCP_DFY_DATA_0 }, 5198 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5199 + { PwrCmdWrite, 0xd8400023, mmCP_DFY_DATA_0 }, 5200 + { PwrCmdWrite, 0xc430000f, mmCP_DFY_DATA_0 }, 5201 + { PwrCmdWrite, 0x17300001, mmCP_DFY_DATA_0 }, 5202 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 5203 + { PwrCmdWrite, 0x800010cb, mmCP_DFY_DATA_0 }, 5204 + { PwrCmdWrite, 0xd8c00010, mmCP_DFY_DATA_0 }, 5205 + { PwrCmdWrite, 0xd8000022, mmCP_DFY_DATA_0 }, 5206 + { PwrCmdWrite, 0xd8000023, mmCP_DFY_DATA_0 }, 5207 + { PwrCmdWrite, 0xc430005e, mmCP_DFY_DATA_0 }, 5208 + { PwrCmdWrite, 0x97000aac, mmCP_DFY_DATA_0 }, 5209 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 5210 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 5211 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 5212 + { PwrCmdWrite, 0xc434002e, mmCP_DFY_DATA_0 }, 5213 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 5214 + { PwrCmdWrite, 0x2020002c, mmCP_DFY_DATA_0 }, 5215 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 5216 + { PwrCmdWrite, 0xce01326c, mmCP_DFY_DATA_0 }, 5217 + { PwrCmdWrite, 0x17780001, mmCP_DFY_DATA_0 }, 5218 + { PwrCmdWrite, 0x27740001, mmCP_DFY_DATA_0 }, 5219 + { PwrCmdWrite, 0x07a810d8, mmCP_DFY_DATA_0 }, 5220 + { PwrCmdWrite, 0xcf400010, mmCP_DFY_DATA_0 }, 5221 + { PwrCmdWrite, 0xc421326c, mmCP_DFY_DATA_0 }, 5222 + { PwrCmdWrite, 0x96000001, mmCP_DFY_DATA_0 }, 5223 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 5224 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 5225 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 5226 + { PwrCmdWrite, 0x80000bfc, mmCP_DFY_DATA_0 }, 5227 + { PwrCmdWrite, 0x800012e9, mmCP_DFY_DATA_0 }, 5228 + { PwrCmdWrite, 0x8000104c, mmCP_DFY_DATA_0 }, 5229 + { PwrCmdWrite, 0xcc400040, mmCP_DFY_DATA_0 }, 5230 + { PwrCmdWrite, 0xd8800010, mmCP_DFY_DATA_0 }, 5231 + { PwrCmdWrite, 0xc4180032, mmCP_DFY_DATA_0 }, 5232 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 5233 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 5234 + { PwrCmdWrite, 0x200c007d, mmCP_DFY_DATA_0 }, 5235 + { PwrCmdWrite, 0xccc1325b, mmCP_DFY_DATA_0 }, 5236 + { PwrCmdWrite, 0xc411325b, mmCP_DFY_DATA_0 }, 5237 + { PwrCmdWrite, 0x95000001, mmCP_DFY_DATA_0 }, 5238 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 5239 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 5240 + { PwrCmdWrite, 0x28240007, mmCP_DFY_DATA_0 }, 5241 + { PwrCmdWrite, 0xde430000, mmCP_DFY_DATA_0 }, 5242 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 5243 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 5244 + { PwrCmdWrite, 0xcc80003b, mmCP_DFY_DATA_0 }, 5245 + { PwrCmdWrite, 0x24b00008, mmCP_DFY_DATA_0 }, 5246 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 5247 + { PwrCmdWrite, 0x1330000a, mmCP_DFY_DATA_0 }, 5248 + { PwrCmdWrite, 0x18a800e5, mmCP_DFY_DATA_0 }, 5249 + { PwrCmdWrite, 0x1d980008, mmCP_DFY_DATA_0 }, 5250 + { PwrCmdWrite, 0x12a80008, mmCP_DFY_DATA_0 }, 5251 + { PwrCmdWrite, 0x7da9800a, mmCP_DFY_DATA_0 }, 5252 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 5253 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 5254 + { PwrCmdWrite, 0xc40d3249, mmCP_DFY_DATA_0 }, 5255 + { PwrCmdWrite, 0x18cc003e, mmCP_DFY_DATA_0 }, 5256 + { PwrCmdWrite, 0x98c00002, mmCP_DFY_DATA_0 }, 5257 + { PwrCmdWrite, 0xd840003d, mmCP_DFY_DATA_0 }, 5258 + { PwrCmdWrite, 0x2b304000, mmCP_DFY_DATA_0 }, 5259 + { PwrCmdWrite, 0xcf01326c, mmCP_DFY_DATA_0 }, 5260 + { PwrCmdWrite, 0xc431326c, mmCP_DFY_DATA_0 }, 5261 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 5262 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 5263 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 5264 + { PwrCmdWrite, 0x192400fd, mmCP_DFY_DATA_0 }, 5265 + { PwrCmdWrite, 0x50580020, mmCP_DFY_DATA_0 }, 5266 + { PwrCmdWrite, 0x7d59401a, mmCP_DFY_DATA_0 }, 5267 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 5268 + { PwrCmdWrite, 0x06681110, mmCP_DFY_DATA_0 }, 5269 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 5270 + { PwrCmdWrite, 0xcc400078, mmCP_DFY_DATA_0 }, 5271 + { PwrCmdWrite, 0x18ac0024, mmCP_DFY_DATA_0 }, 5272 + { PwrCmdWrite, 0x19180070, mmCP_DFY_DATA_0 }, 5273 + { PwrCmdWrite, 0x19100078, mmCP_DFY_DATA_0 }, 5274 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 5275 + { PwrCmdWrite, 0x18f40058, mmCP_DFY_DATA_0 }, 5276 + { PwrCmdWrite, 0x5978073a, mmCP_DFY_DATA_0 }, 5277 + { PwrCmdWrite, 0x7f7b400a, mmCP_DFY_DATA_0 }, 5278 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 5279 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 5280 + { PwrCmdWrite, 0x80001117, mmCP_DFY_DATA_0 }, 5281 + { PwrCmdWrite, 0x80001118, mmCP_DFY_DATA_0 }, 5282 + { PwrCmdWrite, 0x80001122, mmCP_DFY_DATA_0 }, 5283 + { PwrCmdWrite, 0x8000112d, mmCP_DFY_DATA_0 }, 5284 + { PwrCmdWrite, 0x80001130, mmCP_DFY_DATA_0 }, 5285 + { PwrCmdWrite, 0x80001133, mmCP_DFY_DATA_0 }, 5286 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 5287 + { PwrCmdWrite, 0x8000117b, mmCP_DFY_DATA_0 }, 5288 + { PwrCmdWrite, 0x24ec0f00, mmCP_DFY_DATA_0 }, 5289 + { PwrCmdWrite, 0x32ec0600, mmCP_DFY_DATA_0 }, 5290 + { PwrCmdWrite, 0x96c00003, mmCP_DFY_DATA_0 }, 5291 + { PwrCmdWrite, 0xc4300006, mmCP_DFY_DATA_0 }, 5292 + { PwrCmdWrite, 0x9b00ffff, mmCP_DFY_DATA_0 }, 5293 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 5294 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 5295 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 5296 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 5297 + { PwrCmdWrite, 0x8000117b, mmCP_DFY_DATA_0 }, 5298 + { PwrCmdWrite, 0x24ec0f00, mmCP_DFY_DATA_0 }, 5299 + { PwrCmdWrite, 0x32ec0600, mmCP_DFY_DATA_0 }, 5300 + { PwrCmdWrite, 0x96c00003, mmCP_DFY_DATA_0 }, 5301 + { PwrCmdWrite, 0xc4300006, mmCP_DFY_DATA_0 }, 5302 + { PwrCmdWrite, 0x9b00ffff, mmCP_DFY_DATA_0 }, 5303 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 5304 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 5305 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 5306 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 5307 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 5308 + { PwrCmdWrite, 0x8000117b, mmCP_DFY_DATA_0 }, 5309 + { PwrCmdWrite, 0xc81c001f, mmCP_DFY_DATA_0 }, 5310 + { PwrCmdWrite, 0x55e00020, mmCP_DFY_DATA_0 }, 5311 + { PwrCmdWrite, 0x80001122, mmCP_DFY_DATA_0 }, 5312 + { PwrCmdWrite, 0xc81c0020, mmCP_DFY_DATA_0 }, 5313 + { PwrCmdWrite, 0x55e00020, mmCP_DFY_DATA_0 }, 5314 + { PwrCmdWrite, 0x80001122, mmCP_DFY_DATA_0 }, 5315 + { PwrCmdWrite, 0x8c00116b, mmCP_DFY_DATA_0 }, 5316 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5317 + { PwrCmdWrite, 0xc02a0200, mmCP_DFY_DATA_0 }, 5318 + { PwrCmdWrite, 0x7e8e8009, mmCP_DFY_DATA_0 }, 5319 + { PwrCmdWrite, 0x22a8003d, mmCP_DFY_DATA_0 }, 5320 + { PwrCmdWrite, 0x22a80074, mmCP_DFY_DATA_0 }, 5321 + { PwrCmdWrite, 0x2774001c, mmCP_DFY_DATA_0 }, 5322 + { PwrCmdWrite, 0x13740014, mmCP_DFY_DATA_0 }, 5323 + { PwrCmdWrite, 0x7eb6800a, mmCP_DFY_DATA_0 }, 5324 + { PwrCmdWrite, 0x25ecffff, mmCP_DFY_DATA_0 }, 5325 + { PwrCmdWrite, 0x55700020, mmCP_DFY_DATA_0 }, 5326 + { PwrCmdWrite, 0x15f40010, mmCP_DFY_DATA_0 }, 5327 + { PwrCmdWrite, 0x13740002, mmCP_DFY_DATA_0 }, 5328 + { PwrCmdWrite, 0x275c001f, mmCP_DFY_DATA_0 }, 5329 + { PwrCmdWrite, 0x95c00027, mmCP_DFY_DATA_0 }, 5330 + { PwrCmdWrite, 0x7c018001, mmCP_DFY_DATA_0 }, 5331 + { PwrCmdWrite, 0x7f41c001, mmCP_DFY_DATA_0 }, 5332 + { PwrCmdWrite, 0x15dc0002, mmCP_DFY_DATA_0 }, 5333 + { PwrCmdWrite, 0x39e00008, mmCP_DFY_DATA_0 }, 5334 + { PwrCmdWrite, 0x25dc0007, mmCP_DFY_DATA_0 }, 5335 + { PwrCmdWrite, 0x7dc1c01e, mmCP_DFY_DATA_0 }, 5336 + { PwrCmdWrite, 0x05dc0001, mmCP_DFY_DATA_0 }, 5337 + { PwrCmdWrite, 0x96000004, mmCP_DFY_DATA_0 }, 5338 + { PwrCmdWrite, 0x05e40008, mmCP_DFY_DATA_0 }, 5339 + { PwrCmdWrite, 0x8c00116e, mmCP_DFY_DATA_0 }, 5340 + { PwrCmdWrite, 0x80001168, mmCP_DFY_DATA_0 }, 5341 + { PwrCmdWrite, 0x7dc2001e, mmCP_DFY_DATA_0 }, 5342 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 5343 + { PwrCmdWrite, 0x05e40008, mmCP_DFY_DATA_0 }, 5344 + { PwrCmdWrite, 0x7e62000e, mmCP_DFY_DATA_0 }, 5345 + { PwrCmdWrite, 0x9a000004, mmCP_DFY_DATA_0 }, 5346 + { PwrCmdWrite, 0x7da58001, mmCP_DFY_DATA_0 }, 5347 + { PwrCmdWrite, 0x8c00116e, mmCP_DFY_DATA_0 }, 5348 + { PwrCmdWrite, 0x80001165, mmCP_DFY_DATA_0 }, 5349 + { PwrCmdWrite, 0x7dc2001e, mmCP_DFY_DATA_0 }, 5350 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 5351 + { PwrCmdWrite, 0x7e1a0001, mmCP_DFY_DATA_0 }, 5352 + { PwrCmdWrite, 0x05cc0008, mmCP_DFY_DATA_0 }, 5353 + { PwrCmdWrite, 0x7e0d000e, mmCP_DFY_DATA_0 }, 5354 + { PwrCmdWrite, 0x95000007, mmCP_DFY_DATA_0 }, 5355 + { PwrCmdWrite, 0x7e02401e, mmCP_DFY_DATA_0 }, 5356 + { PwrCmdWrite, 0x06640001, mmCP_DFY_DATA_0 }, 5357 + { PwrCmdWrite, 0x06640008, mmCP_DFY_DATA_0 }, 5358 + { PwrCmdWrite, 0x05d80008, mmCP_DFY_DATA_0 }, 5359 + { PwrCmdWrite, 0x8c00116e, mmCP_DFY_DATA_0 }, 5360 + { PwrCmdWrite, 0x80001168, mmCP_DFY_DATA_0 }, 5361 + { PwrCmdWrite, 0x7dc2401e, mmCP_DFY_DATA_0 }, 5362 + { PwrCmdWrite, 0x06640001, mmCP_DFY_DATA_0 }, 5363 + { PwrCmdWrite, 0x7da58001, mmCP_DFY_DATA_0 }, 5364 + { PwrCmdWrite, 0x8c00116e, mmCP_DFY_DATA_0 }, 5365 + { PwrCmdWrite, 0x05e00008, mmCP_DFY_DATA_0 }, 5366 + { PwrCmdWrite, 0x7da2000c, mmCP_DFY_DATA_0 }, 5367 + { PwrCmdWrite, 0x9600ffe6, mmCP_DFY_DATA_0 }, 5368 + { PwrCmdWrite, 0x17640002, mmCP_DFY_DATA_0 }, 5369 + { PwrCmdWrite, 0x8c00116e, mmCP_DFY_DATA_0 }, 5370 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 5371 + { PwrCmdWrite, 0xc4200006, mmCP_DFY_DATA_0 }, 5372 + { PwrCmdWrite, 0x9a00ffff, mmCP_DFY_DATA_0 }, 5373 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5374 + { PwrCmdWrite, 0x8c00116b, mmCP_DFY_DATA_0 }, 5375 + { PwrCmdWrite, 0xc420000e, mmCP_DFY_DATA_0 }, 5376 + { PwrCmdWrite, 0x2a200001, mmCP_DFY_DATA_0 }, 5377 + { PwrCmdWrite, 0xce00001a, mmCP_DFY_DATA_0 }, 5378 + { PwrCmdWrite, 0xce81c078, mmCP_DFY_DATA_0 }, 5379 + { PwrCmdWrite, 0xcec1c080, mmCP_DFY_DATA_0 }, 5380 + { PwrCmdWrite, 0xcc01c081, mmCP_DFY_DATA_0 }, 5381 + { PwrCmdWrite, 0xcd41c082, mmCP_DFY_DATA_0 }, 5382 + { PwrCmdWrite, 0xcf01c083, mmCP_DFY_DATA_0 }, 5383 + { PwrCmdWrite, 0x12640002, mmCP_DFY_DATA_0 }, 5384 + { PwrCmdWrite, 0x22640435, mmCP_DFY_DATA_0 }, 5385 + { PwrCmdWrite, 0xce41c084, mmCP_DFY_DATA_0 }, 5386 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5387 + { PwrCmdWrite, 0x0528117e, mmCP_DFY_DATA_0 }, 5388 + { PwrCmdWrite, 0x312c0003, mmCP_DFY_DATA_0 }, 5389 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 5390 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 5391 + { PwrCmdWrite, 0x80001185, mmCP_DFY_DATA_0 }, 5392 + { PwrCmdWrite, 0x80001182, mmCP_DFY_DATA_0 }, 5393 + { PwrCmdWrite, 0x80001182, mmCP_DFY_DATA_0 }, 5394 + { PwrCmdWrite, 0xc4300012, mmCP_DFY_DATA_0 }, 5395 + { PwrCmdWrite, 0x9b00ffff, mmCP_DFY_DATA_0 }, 5396 + { PwrCmdWrite, 0x9ac0000c, mmCP_DFY_DATA_0 }, 5397 + { PwrCmdWrite, 0xc03a0400, mmCP_DFY_DATA_0 }, 5398 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 5399 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5400 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 5401 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 5402 + { PwrCmdWrite, 0x15980008, mmCP_DFY_DATA_0 }, 5403 + { PwrCmdWrite, 0x1198001c, mmCP_DFY_DATA_0 }, 5404 + { PwrCmdWrite, 0x7d81c00a, mmCP_DFY_DATA_0 }, 5405 + { PwrCmdWrite, 0xcdc130b7, mmCP_DFY_DATA_0 }, 5406 + { PwrCmdWrite, 0xcf8130b5, mmCP_DFY_DATA_0 }, 5407 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 5408 + { PwrCmdWrite, 0x04240008, mmCP_DFY_DATA_0 }, 5409 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 5410 + { PwrCmdWrite, 0xc41c0049, mmCP_DFY_DATA_0 }, 5411 + { PwrCmdWrite, 0x19a000e8, mmCP_DFY_DATA_0 }, 5412 + { PwrCmdWrite, 0x29a80008, mmCP_DFY_DATA_0 }, 5413 + { PwrCmdWrite, 0x7de2c00c, mmCP_DFY_DATA_0 }, 5414 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 5415 + { PwrCmdWrite, 0xc421325e, mmCP_DFY_DATA_0 }, 5416 + { PwrCmdWrite, 0x26200010, mmCP_DFY_DATA_0 }, 5417 + { PwrCmdWrite, 0xc415326d, mmCP_DFY_DATA_0 }, 5418 + { PwrCmdWrite, 0x9a000006, mmCP_DFY_DATA_0 }, 5419 + { PwrCmdWrite, 0xc420007d, mmCP_DFY_DATA_0 }, 5420 + { PwrCmdWrite, 0x96000004, mmCP_DFY_DATA_0 }, 5421 + { PwrCmdWrite, 0x96c00003, mmCP_DFY_DATA_0 }, 5422 + { PwrCmdWrite, 0xce40003e, mmCP_DFY_DATA_0 }, 5423 + { PwrCmdWrite, 0x800011a3, mmCP_DFY_DATA_0 }, 5424 + { PwrCmdWrite, 0x7d654001, mmCP_DFY_DATA_0 }, 5425 + { PwrCmdWrite, 0xcd41326d, mmCP_DFY_DATA_0 }, 5426 + { PwrCmdWrite, 0x7c020001, mmCP_DFY_DATA_0 }, 5427 + { PwrCmdWrite, 0x96000005, mmCP_DFY_DATA_0 }, 5428 + { PwrCmdWrite, 0xc4100026, mmCP_DFY_DATA_0 }, 5429 + { PwrCmdWrite, 0xc4240081, mmCP_DFY_DATA_0 }, 5430 + { PwrCmdWrite, 0xc4140025, mmCP_DFY_DATA_0 }, 5431 + { PwrCmdWrite, 0x800011b6, mmCP_DFY_DATA_0 }, 5432 + { PwrCmdWrite, 0xc4253279, mmCP_DFY_DATA_0 }, 5433 + { PwrCmdWrite, 0xc415326d, mmCP_DFY_DATA_0 }, 5434 + { PwrCmdWrite, 0xc431326c, mmCP_DFY_DATA_0 }, 5435 + { PwrCmdWrite, 0x2730003f, mmCP_DFY_DATA_0 }, 5436 + { PwrCmdWrite, 0x3b380006, mmCP_DFY_DATA_0 }, 5437 + { PwrCmdWrite, 0x97800004, mmCP_DFY_DATA_0 }, 5438 + { PwrCmdWrite, 0x3f38000b, mmCP_DFY_DATA_0 }, 5439 + { PwrCmdWrite, 0x9b800004, mmCP_DFY_DATA_0 }, 5440 + { PwrCmdWrite, 0x800011b4, mmCP_DFY_DATA_0 }, 5441 + { PwrCmdWrite, 0x04300006, mmCP_DFY_DATA_0 }, 5442 + { PwrCmdWrite, 0x800011b4, mmCP_DFY_DATA_0 }, 5443 + { PwrCmdWrite, 0x0430000b, mmCP_DFY_DATA_0 }, 5444 + { PwrCmdWrite, 0x04380002, mmCP_DFY_DATA_0 }, 5445 + { PwrCmdWrite, 0x7fb10004, mmCP_DFY_DATA_0 }, 5446 + { PwrCmdWrite, 0x7e57000f, mmCP_DFY_DATA_0 }, 5447 + { PwrCmdWrite, 0x7e578002, mmCP_DFY_DATA_0 }, 5448 + { PwrCmdWrite, 0x7d67c002, mmCP_DFY_DATA_0 }, 5449 + { PwrCmdWrite, 0x0be40001, mmCP_DFY_DATA_0 }, 5450 + { PwrCmdWrite, 0x97000002, mmCP_DFY_DATA_0 }, 5451 + { PwrCmdWrite, 0x7d3a4002, mmCP_DFY_DATA_0 }, 5452 + { PwrCmdWrite, 0x202c002c, mmCP_DFY_DATA_0 }, 5453 + { PwrCmdWrite, 0xc421325e, mmCP_DFY_DATA_0 }, 5454 + { PwrCmdWrite, 0x04280020, mmCP_DFY_DATA_0 }, 5455 + { PwrCmdWrite, 0xcec1326c, mmCP_DFY_DATA_0 }, 5456 + { PwrCmdWrite, 0x26200010, mmCP_DFY_DATA_0 }, 5457 + { PwrCmdWrite, 0x3e640010, mmCP_DFY_DATA_0 }, 5458 + { PwrCmdWrite, 0x96000003, mmCP_DFY_DATA_0 }, 5459 + { PwrCmdWrite, 0x96400002, mmCP_DFY_DATA_0 }, 5460 + { PwrCmdWrite, 0xce81325e, mmCP_DFY_DATA_0 }, 5461 + { PwrCmdWrite, 0xc4300028, mmCP_DFY_DATA_0 }, 5462 + { PwrCmdWrite, 0xc434002e, mmCP_DFY_DATA_0 }, 5463 + { PwrCmdWrite, 0x17780001, mmCP_DFY_DATA_0 }, 5464 + { PwrCmdWrite, 0x27740001, mmCP_DFY_DATA_0 }, 5465 + { PwrCmdWrite, 0x07a811cf, mmCP_DFY_DATA_0 }, 5466 + { PwrCmdWrite, 0x9b00feb8, mmCP_DFY_DATA_0 }, 5467 + { PwrCmdWrite, 0xcf400010, mmCP_DFY_DATA_0 }, 5468 + { PwrCmdWrite, 0xc414005e, mmCP_DFY_DATA_0 }, 5469 + { PwrCmdWrite, 0x954009a7, mmCP_DFY_DATA_0 }, 5470 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 5471 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 5472 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 5473 + { PwrCmdWrite, 0x80000bfc, mmCP_DFY_DATA_0 }, 5474 + { PwrCmdWrite, 0x800012e9, mmCP_DFY_DATA_0 }, 5475 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 5476 + { PwrCmdWrite, 0x8c00120d, mmCP_DFY_DATA_0 }, 5477 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 5478 + { PwrCmdWrite, 0xccc1c07c, mmCP_DFY_DATA_0 }, 5479 + { PwrCmdWrite, 0xcc41c07d, mmCP_DFY_DATA_0 }, 5480 + { PwrCmdWrite, 0xcc41c08c, mmCP_DFY_DATA_0 }, 5481 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 5482 + { PwrCmdWrite, 0xcc41c079, mmCP_DFY_DATA_0 }, 5483 + { PwrCmdWrite, 0xcd01c07e, mmCP_DFY_DATA_0 }, 5484 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 5485 + { PwrCmdWrite, 0x18f0012f, mmCP_DFY_DATA_0 }, 5486 + { PwrCmdWrite, 0x18f40612, mmCP_DFY_DATA_0 }, 5487 + { PwrCmdWrite, 0x18cc00c1, mmCP_DFY_DATA_0 }, 5488 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 5489 + { PwrCmdWrite, 0x7cf7400a, mmCP_DFY_DATA_0 }, 5490 + { PwrCmdWrite, 0x39600004, mmCP_DFY_DATA_0 }, 5491 + { PwrCmdWrite, 0x9a000002, mmCP_DFY_DATA_0 }, 5492 + { PwrCmdWrite, 0xc0140004, mmCP_DFY_DATA_0 }, 5493 + { PwrCmdWrite, 0x11600001, mmCP_DFY_DATA_0 }, 5494 + { PwrCmdWrite, 0x18fc003e, mmCP_DFY_DATA_0 }, 5495 + { PwrCmdWrite, 0x9740001c, mmCP_DFY_DATA_0 }, 5496 + { PwrCmdWrite, 0xcf400041, mmCP_DFY_DATA_0 }, 5497 + { PwrCmdWrite, 0xc425c07f, mmCP_DFY_DATA_0 }, 5498 + { PwrCmdWrite, 0x97c00003, mmCP_DFY_DATA_0 }, 5499 + { PwrCmdWrite, 0x166c001f, mmCP_DFY_DATA_0 }, 5500 + { PwrCmdWrite, 0x800011ee, mmCP_DFY_DATA_0 }, 5501 + { PwrCmdWrite, 0x1a6c003e, mmCP_DFY_DATA_0 }, 5502 + { PwrCmdWrite, 0x96c00006, mmCP_DFY_DATA_0 }, 5503 + { PwrCmdWrite, 0x04200002, mmCP_DFY_DATA_0 }, 5504 + { PwrCmdWrite, 0x0a200001, mmCP_DFY_DATA_0 }, 5505 + { PwrCmdWrite, 0x9a00ffff, mmCP_DFY_DATA_0 }, 5506 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5507 + { PwrCmdWrite, 0x800011e8, mmCP_DFY_DATA_0 }, 5508 + { PwrCmdWrite, 0xc428002c, mmCP_DFY_DATA_0 }, 5509 + { PwrCmdWrite, 0x96800010, mmCP_DFY_DATA_0 }, 5510 + { PwrCmdWrite, 0x26ac007f, mmCP_DFY_DATA_0 }, 5511 + { PwrCmdWrite, 0xcec0001b, mmCP_DFY_DATA_0 }, 5512 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5513 + { PwrCmdWrite, 0x1ab00030, mmCP_DFY_DATA_0 }, 5514 + { PwrCmdWrite, 0x1aac0fe8, mmCP_DFY_DATA_0 }, 5515 + { PwrCmdWrite, 0xc434000f, mmCP_DFY_DATA_0 }, 5516 + { PwrCmdWrite, 0x9b40ffff, mmCP_DFY_DATA_0 }, 5517 + { PwrCmdWrite, 0x97000008, mmCP_DFY_DATA_0 }, 5518 + { PwrCmdWrite, 0xcec0001b, mmCP_DFY_DATA_0 }, 5519 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5520 + { PwrCmdWrite, 0xc434000f, mmCP_DFY_DATA_0 }, 5521 + { PwrCmdWrite, 0x9b40ffff, mmCP_DFY_DATA_0 }, 5522 + { PwrCmdWrite, 0x80001205, mmCP_DFY_DATA_0 }, 5523 + { PwrCmdWrite, 0x0a200001, mmCP_DFY_DATA_0 }, 5524 + { PwrCmdWrite, 0x9a00ffff, mmCP_DFY_DATA_0 }, 5525 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5526 + { PwrCmdWrite, 0xc425c07f, mmCP_DFY_DATA_0 }, 5527 + { PwrCmdWrite, 0x166c001f, mmCP_DFY_DATA_0 }, 5528 + { PwrCmdWrite, 0x11600001, mmCP_DFY_DATA_0 }, 5529 + { PwrCmdWrite, 0x9ac0fffa, mmCP_DFY_DATA_0 }, 5530 + { PwrCmdWrite, 0x8c001232, mmCP_DFY_DATA_0 }, 5531 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 5532 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 5533 + { PwrCmdWrite, 0xd8000033, mmCP_DFY_DATA_0 }, 5534 + { PwrCmdWrite, 0xc438000b, mmCP_DFY_DATA_0 }, 5535 + { PwrCmdWrite, 0xc43c0009, mmCP_DFY_DATA_0 }, 5536 + { PwrCmdWrite, 0x27fc0001, mmCP_DFY_DATA_0 }, 5537 + { PwrCmdWrite, 0x97c0fffe, mmCP_DFY_DATA_0 }, 5538 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5539 + { PwrCmdWrite, 0xd841c07f, mmCP_DFY_DATA_0 }, 5540 + { PwrCmdWrite, 0xc43dc07f, mmCP_DFY_DATA_0 }, 5541 + { PwrCmdWrite, 0x1bfc0078, mmCP_DFY_DATA_0 }, 5542 + { PwrCmdWrite, 0x7ffbc00c, mmCP_DFY_DATA_0 }, 5543 + { PwrCmdWrite, 0x97c0fffd, mmCP_DFY_DATA_0 }, 5544 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5545 + { PwrCmdWrite, 0xc03a2800, mmCP_DFY_DATA_0 }, 5546 + { PwrCmdWrite, 0xcf81c07c, mmCP_DFY_DATA_0 }, 5547 + { PwrCmdWrite, 0xcc01c07d, mmCP_DFY_DATA_0 }, 5548 + { PwrCmdWrite, 0xcc01c08c, mmCP_DFY_DATA_0 }, 5549 + { PwrCmdWrite, 0xcc01c079, mmCP_DFY_DATA_0 }, 5550 + { PwrCmdWrite, 0xcc01c07e, mmCP_DFY_DATA_0 }, 5551 + { PwrCmdWrite, 0x04380040, mmCP_DFY_DATA_0 }, 5552 + { PwrCmdWrite, 0xcf80001b, mmCP_DFY_DATA_0 }, 5553 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5554 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 5555 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5556 + { PwrCmdWrite, 0x04380060, mmCP_DFY_DATA_0 }, 5557 + { PwrCmdWrite, 0xcf80001b, mmCP_DFY_DATA_0 }, 5558 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5559 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 5560 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5561 + { PwrCmdWrite, 0x04380002, mmCP_DFY_DATA_0 }, 5562 + { PwrCmdWrite, 0x0bb80001, mmCP_DFY_DATA_0 }, 5563 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5564 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5565 + { PwrCmdWrite, 0xc43dc07f, mmCP_DFY_DATA_0 }, 5566 + { PwrCmdWrite, 0x17fc001f, mmCP_DFY_DATA_0 }, 5567 + { PwrCmdWrite, 0x04380010, mmCP_DFY_DATA_0 }, 5568 + { PwrCmdWrite, 0x9bc0fffa, mmCP_DFY_DATA_0 }, 5569 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5570 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5571 + { PwrCmdWrite, 0xd801c07f, mmCP_DFY_DATA_0 }, 5572 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5573 + { PwrCmdWrite, 0xc43dc07f, mmCP_DFY_DATA_0 }, 5574 + { PwrCmdWrite, 0xcfc00078, mmCP_DFY_DATA_0 }, 5575 + { PwrCmdWrite, 0xd8000034, mmCP_DFY_DATA_0 }, 5576 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5577 + { PwrCmdWrite, 0xc03ae000, mmCP_DFY_DATA_0 }, 5578 + { PwrCmdWrite, 0xcf81c200, mmCP_DFY_DATA_0 }, 5579 + { PwrCmdWrite, 0xc03a0800, mmCP_DFY_DATA_0 }, 5580 + { PwrCmdWrite, 0xcf81c07c, mmCP_DFY_DATA_0 }, 5581 + { PwrCmdWrite, 0xcc01c07d, mmCP_DFY_DATA_0 }, 5582 + { PwrCmdWrite, 0xcc01c08c, mmCP_DFY_DATA_0 }, 5583 + { PwrCmdWrite, 0xcc01c079, mmCP_DFY_DATA_0 }, 5584 + { PwrCmdWrite, 0xcc01c07e, mmCP_DFY_DATA_0 }, 5585 + { PwrCmdWrite, 0x04380040, mmCP_DFY_DATA_0 }, 5586 + { PwrCmdWrite, 0xcf80001b, mmCP_DFY_DATA_0 }, 5587 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5588 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 5589 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5590 + { PwrCmdWrite, 0x04380002, mmCP_DFY_DATA_0 }, 5591 + { PwrCmdWrite, 0x0bb80001, mmCP_DFY_DATA_0 }, 5592 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5593 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5594 + { PwrCmdWrite, 0xc43dc07f, mmCP_DFY_DATA_0 }, 5595 + { PwrCmdWrite, 0x17fc001f, mmCP_DFY_DATA_0 }, 5596 + { PwrCmdWrite, 0x04380010, mmCP_DFY_DATA_0 }, 5597 + { PwrCmdWrite, 0x9bc0fffa, mmCP_DFY_DATA_0 }, 5598 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5599 + { PwrCmdWrite, 0xc03ae000, mmCP_DFY_DATA_0 }, 5600 + { PwrCmdWrite, 0xcf81c200, mmCP_DFY_DATA_0 }, 5601 + { PwrCmdWrite, 0xc03a4000, mmCP_DFY_DATA_0 }, 5602 + { PwrCmdWrite, 0xcf81c07c, mmCP_DFY_DATA_0 }, 5603 + { PwrCmdWrite, 0xcc01c07d, mmCP_DFY_DATA_0 }, 5604 + { PwrCmdWrite, 0xcc01c08c, mmCP_DFY_DATA_0 }, 5605 + { PwrCmdWrite, 0xcc01c079, mmCP_DFY_DATA_0 }, 5606 + { PwrCmdWrite, 0xcc01c07e, mmCP_DFY_DATA_0 }, 5607 + { PwrCmdWrite, 0x04380002, mmCP_DFY_DATA_0 }, 5608 + { PwrCmdWrite, 0x0bb80001, mmCP_DFY_DATA_0 }, 5609 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5610 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5611 + { PwrCmdWrite, 0xc43dc07f, mmCP_DFY_DATA_0 }, 5612 + { PwrCmdWrite, 0x17fc001f, mmCP_DFY_DATA_0 }, 5613 + { PwrCmdWrite, 0x04380010, mmCP_DFY_DATA_0 }, 5614 + { PwrCmdWrite, 0x9bc0fffa, mmCP_DFY_DATA_0 }, 5615 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5616 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 5617 + { PwrCmdWrite, 0x30d00002, mmCP_DFY_DATA_0 }, 5618 + { PwrCmdWrite, 0x99000052, mmCP_DFY_DATA_0 }, 5619 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 5620 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 5621 + { PwrCmdWrite, 0x9640090f, mmCP_DFY_DATA_0 }, 5622 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 5623 + { PwrCmdWrite, 0xc428000e, mmCP_DFY_DATA_0 }, 5624 + { PwrCmdWrite, 0x1514001f, mmCP_DFY_DATA_0 }, 5625 + { PwrCmdWrite, 0x19180038, mmCP_DFY_DATA_0 }, 5626 + { PwrCmdWrite, 0x2aa80008, mmCP_DFY_DATA_0 }, 5627 + { PwrCmdWrite, 0x99400030, mmCP_DFY_DATA_0 }, 5628 + { PwrCmdWrite, 0x30dc0001, mmCP_DFY_DATA_0 }, 5629 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 5630 + { PwrCmdWrite, 0x99c0000a, mmCP_DFY_DATA_0 }, 5631 + { PwrCmdWrite, 0xc42d324e, mmCP_DFY_DATA_0 }, 5632 + { PwrCmdWrite, 0xc431324d, mmCP_DFY_DATA_0 }, 5633 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 5634 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 5635 + { PwrCmdWrite, 0xc435324f, mmCP_DFY_DATA_0 }, 5636 + { PwrCmdWrite, 0xc4293256, mmCP_DFY_DATA_0 }, 5637 + { PwrCmdWrite, 0x1ab0c006, mmCP_DFY_DATA_0 }, 5638 + { PwrCmdWrite, 0x52ec0008, mmCP_DFY_DATA_0 }, 5639 + { PwrCmdWrite, 0x8000127f, mmCP_DFY_DATA_0 }, 5640 + { PwrCmdWrite, 0xc42d3258, mmCP_DFY_DATA_0 }, 5641 + { PwrCmdWrite, 0xc4313257, mmCP_DFY_DATA_0 }, 5642 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 5643 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 5644 + { PwrCmdWrite, 0xc4353259, mmCP_DFY_DATA_0 }, 5645 + { PwrCmdWrite, 0xc429325a, mmCP_DFY_DATA_0 }, 5646 + { PwrCmdWrite, 0x1ab0c012, mmCP_DFY_DATA_0 }, 5647 + { PwrCmdWrite, 0x07740001, mmCP_DFY_DATA_0 }, 5648 + { PwrCmdWrite, 0x04240002, mmCP_DFY_DATA_0 }, 5649 + { PwrCmdWrite, 0x26a0003f, mmCP_DFY_DATA_0 }, 5650 + { PwrCmdWrite, 0x7e624004, mmCP_DFY_DATA_0 }, 5651 + { PwrCmdWrite, 0x7f67800f, mmCP_DFY_DATA_0 }, 5652 + { PwrCmdWrite, 0x97800002, mmCP_DFY_DATA_0 }, 5653 + { PwrCmdWrite, 0x04340000, mmCP_DFY_DATA_0 }, 5654 + { PwrCmdWrite, 0x53740002, mmCP_DFY_DATA_0 }, 5655 + { PwrCmdWrite, 0x7ef6c011, mmCP_DFY_DATA_0 }, 5656 + { PwrCmdWrite, 0x1ab42010, mmCP_DFY_DATA_0 }, 5657 + { PwrCmdWrite, 0x16a8000c, mmCP_DFY_DATA_0 }, 5658 + { PwrCmdWrite, 0x26a80800, mmCP_DFY_DATA_0 }, 5659 + { PwrCmdWrite, 0x2b740000, mmCP_DFY_DATA_0 }, 5660 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 5661 + { PwrCmdWrite, 0x7f6b400a, mmCP_DFY_DATA_0 }, 5662 + { PwrCmdWrite, 0xcf40001c, mmCP_DFY_DATA_0 }, 5663 + { PwrCmdWrite, 0xd2c0001e, mmCP_DFY_DATA_0 }, 5664 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5665 + { PwrCmdWrite, 0xc438000f, mmCP_DFY_DATA_0 }, 5666 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 5667 + { PwrCmdWrite, 0xc4100011, mmCP_DFY_DATA_0 }, 5668 + { PwrCmdWrite, 0x1514001f, mmCP_DFY_DATA_0 }, 5669 + { PwrCmdWrite, 0x99400006, mmCP_DFY_DATA_0 }, 5670 + { PwrCmdWrite, 0x9980000a, mmCP_DFY_DATA_0 }, 5671 + { PwrCmdWrite, 0x8c0012e1, mmCP_DFY_DATA_0 }, 5672 + { PwrCmdWrite, 0xc40c0007, mmCP_DFY_DATA_0 }, 5673 + { PwrCmdWrite, 0x04100000, mmCP_DFY_DATA_0 }, 5674 + { PwrCmdWrite, 0x80001267, mmCP_DFY_DATA_0 }, 5675 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 5676 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 5677 + { PwrCmdWrite, 0x964008d7, mmCP_DFY_DATA_0 }, 5678 + { PwrCmdWrite, 0xd9800036, mmCP_DFY_DATA_0 }, 5679 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 5680 + { PwrCmdWrite, 0xc42c001d, mmCP_DFY_DATA_0 }, 5681 + { PwrCmdWrite, 0x95c00005, mmCP_DFY_DATA_0 }, 5682 + { PwrCmdWrite, 0xc431325a, mmCP_DFY_DATA_0 }, 5683 + { PwrCmdWrite, 0x1b300677, mmCP_DFY_DATA_0 }, 5684 + { PwrCmdWrite, 0x11dc000c, mmCP_DFY_DATA_0 }, 5685 + { PwrCmdWrite, 0x800012aa, mmCP_DFY_DATA_0 }, 5686 + { PwrCmdWrite, 0xc4313256, mmCP_DFY_DATA_0 }, 5687 + { PwrCmdWrite, 0x1b34060b, mmCP_DFY_DATA_0 }, 5688 + { PwrCmdWrite, 0x1b300077, mmCP_DFY_DATA_0 }, 5689 + { PwrCmdWrite, 0x7f37000a, mmCP_DFY_DATA_0 }, 5690 + { PwrCmdWrite, 0x13300017, mmCP_DFY_DATA_0 }, 5691 + { PwrCmdWrite, 0x04340100, mmCP_DFY_DATA_0 }, 5692 + { PwrCmdWrite, 0x26ec00ff, mmCP_DFY_DATA_0 }, 5693 + { PwrCmdWrite, 0xc03a8002, mmCP_DFY_DATA_0 }, 5694 + { PwrCmdWrite, 0x7ef6c00a, mmCP_DFY_DATA_0 }, 5695 + { PwrCmdWrite, 0x7edec00a, mmCP_DFY_DATA_0 }, 5696 + { PwrCmdWrite, 0x7f3b000a, mmCP_DFY_DATA_0 }, 5697 + { PwrCmdWrite, 0x7ef2c00a, mmCP_DFY_DATA_0 }, 5698 + { PwrCmdWrite, 0xcec1325b, mmCP_DFY_DATA_0 }, 5699 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 5700 + { PwrCmdWrite, 0xc4140032, mmCP_DFY_DATA_0 }, 5701 + { PwrCmdWrite, 0xc410001d, mmCP_DFY_DATA_0 }, 5702 + { PwrCmdWrite, 0x29540008, mmCP_DFY_DATA_0 }, 5703 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 5704 + { PwrCmdWrite, 0xc40d325b, mmCP_DFY_DATA_0 }, 5705 + { PwrCmdWrite, 0x1858003f, mmCP_DFY_DATA_0 }, 5706 + { PwrCmdWrite, 0x251000ff, mmCP_DFY_DATA_0 }, 5707 + { PwrCmdWrite, 0x99800007, mmCP_DFY_DATA_0 }, 5708 + { PwrCmdWrite, 0x7d0cc00a, mmCP_DFY_DATA_0 }, 5709 + { PwrCmdWrite, 0xccc1325b, mmCP_DFY_DATA_0 }, 5710 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 5711 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 5712 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 5713 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 5714 + { PwrCmdWrite, 0x18d0006c, mmCP_DFY_DATA_0 }, 5715 + { PwrCmdWrite, 0x18d407f0, mmCP_DFY_DATA_0 }, 5716 + { PwrCmdWrite, 0x9900000e, mmCP_DFY_DATA_0 }, 5717 + { PwrCmdWrite, 0x04100002, mmCP_DFY_DATA_0 }, 5718 + { PwrCmdWrite, 0xc4193256, mmCP_DFY_DATA_0 }, 5719 + { PwrCmdWrite, 0xc41d324f, mmCP_DFY_DATA_0 }, 5720 + { PwrCmdWrite, 0x2598003f, mmCP_DFY_DATA_0 }, 5721 + { PwrCmdWrite, 0x7d190004, mmCP_DFY_DATA_0 }, 5722 + { PwrCmdWrite, 0x7d5d4001, mmCP_DFY_DATA_0 }, 5723 + { PwrCmdWrite, 0x7d52000f, mmCP_DFY_DATA_0 }, 5724 + { PwrCmdWrite, 0x9a000003, mmCP_DFY_DATA_0 }, 5725 + { PwrCmdWrite, 0xcd41324f, mmCP_DFY_DATA_0 }, 5726 + { PwrCmdWrite, 0x800012d8, mmCP_DFY_DATA_0 }, 5727 + { PwrCmdWrite, 0x7d514002, mmCP_DFY_DATA_0 }, 5728 + { PwrCmdWrite, 0xcd41324f, mmCP_DFY_DATA_0 }, 5729 + { PwrCmdWrite, 0x800012d8, mmCP_DFY_DATA_0 }, 5730 + { PwrCmdWrite, 0xc4193259, mmCP_DFY_DATA_0 }, 5731 + { PwrCmdWrite, 0xc41d325a, mmCP_DFY_DATA_0 }, 5732 + { PwrCmdWrite, 0x7d958001, mmCP_DFY_DATA_0 }, 5733 + { PwrCmdWrite, 0x7dd5c002, mmCP_DFY_DATA_0 }, 5734 + { PwrCmdWrite, 0xcd813259, mmCP_DFY_DATA_0 }, 5735 + { PwrCmdWrite, 0xcdc1325a, mmCP_DFY_DATA_0 }, 5736 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 5737 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 5738 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 5739 + { PwrCmdWrite, 0x1ccc001e, mmCP_DFY_DATA_0 }, 5740 + { PwrCmdWrite, 0xccc1325b, mmCP_DFY_DATA_0 }, 5741 + { PwrCmdWrite, 0xc40d325b, mmCP_DFY_DATA_0 }, 5742 + { PwrCmdWrite, 0x94c00001, mmCP_DFY_DATA_0 }, 5743 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 5744 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 5745 + { PwrCmdWrite, 0xc40c0021, mmCP_DFY_DATA_0 }, 5746 + { PwrCmdWrite, 0xc4340028, mmCP_DFY_DATA_0 }, 5747 + { PwrCmdWrite, 0x14f00010, mmCP_DFY_DATA_0 }, 5748 + { PwrCmdWrite, 0xc4380030, mmCP_DFY_DATA_0 }, 5749 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 5750 + { PwrCmdWrite, 0x9b000004, mmCP_DFY_DATA_0 }, 5751 + { PwrCmdWrite, 0x9b40000c, mmCP_DFY_DATA_0 }, 5752 + { PwrCmdWrite, 0x9b80000f, mmCP_DFY_DATA_0 }, 5753 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5754 + { PwrCmdWrite, 0x17300001, mmCP_DFY_DATA_0 }, 5755 + { PwrCmdWrite, 0x9b000005, mmCP_DFY_DATA_0 }, 5756 + { PwrCmdWrite, 0xccc00037, mmCP_DFY_DATA_0 }, 5757 + { PwrCmdWrite, 0x8c000190, mmCP_DFY_DATA_0 }, 5758 + { PwrCmdWrite, 0xd8000032, mmCP_DFY_DATA_0 }, 5759 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 5760 + { PwrCmdWrite, 0xd8000028, mmCP_DFY_DATA_0 }, 5761 + { PwrCmdWrite, 0xd800002b, mmCP_DFY_DATA_0 }, 5762 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 5763 + { PwrCmdWrite, 0xd980003f, mmCP_DFY_DATA_0 }, 5764 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 5765 + { PwrCmdWrite, 0xd9c0003f, mmCP_DFY_DATA_0 }, 5766 + { PwrCmdWrite, 0x80001082, mmCP_DFY_DATA_0 }, 5767 + { PwrCmdWrite, 0xd9800040, mmCP_DFY_DATA_0 }, 5768 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 5769 + { PwrCmdWrite, 0xd9c00040, mmCP_DFY_DATA_0 }, 5770 + { PwrCmdWrite, 0x800010de, mmCP_DFY_DATA_0 }, 5771 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 5772 + { PwrCmdWrite, 0x33f80003, mmCP_DFY_DATA_0 }, 5773 + { PwrCmdWrite, 0x97800051, mmCP_DFY_DATA_0 }, 5774 + { PwrCmdWrite, 0xcc80003b, mmCP_DFY_DATA_0 }, 5775 + { PwrCmdWrite, 0x24b00008, mmCP_DFY_DATA_0 }, 5776 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 5777 + { PwrCmdWrite, 0x1330000a, mmCP_DFY_DATA_0 }, 5778 + { PwrCmdWrite, 0x18a800e5, mmCP_DFY_DATA_0 }, 5779 + { PwrCmdWrite, 0x1d980008, mmCP_DFY_DATA_0 }, 5780 + { PwrCmdWrite, 0x12a80008, mmCP_DFY_DATA_0 }, 5781 + { PwrCmdWrite, 0x7da9800a, mmCP_DFY_DATA_0 }, 5782 + { PwrCmdWrite, 0x29980008, mmCP_DFY_DATA_0 }, 5783 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 5784 + { PwrCmdWrite, 0xc4353249, mmCP_DFY_DATA_0 }, 5785 + { PwrCmdWrite, 0x1b74003e, mmCP_DFY_DATA_0 }, 5786 + { PwrCmdWrite, 0x9b400002, mmCP_DFY_DATA_0 }, 5787 + { PwrCmdWrite, 0xd840003d, mmCP_DFY_DATA_0 }, 5788 + { PwrCmdWrite, 0x2b304000, mmCP_DFY_DATA_0 }, 5789 + { PwrCmdWrite, 0xcf01326c, mmCP_DFY_DATA_0 }, 5790 + { PwrCmdWrite, 0xc431326c, mmCP_DFY_DATA_0 }, 5791 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 5792 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 5793 + { PwrCmdWrite, 0x1b4c00f8, mmCP_DFY_DATA_0 }, 5794 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 5795 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 5796 + { PwrCmdWrite, 0x50700020, mmCP_DFY_DATA_0 }, 5797 + { PwrCmdWrite, 0x04e81324, mmCP_DFY_DATA_0 }, 5798 + { PwrCmdWrite, 0x18ac0024, mmCP_DFY_DATA_0 }, 5799 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 5800 + { PwrCmdWrite, 0x50600020, mmCP_DFY_DATA_0 }, 5801 + { PwrCmdWrite, 0xcc400078, mmCP_DFY_DATA_0 }, 5802 + { PwrCmdWrite, 0x30e40004, mmCP_DFY_DATA_0 }, 5803 + { PwrCmdWrite, 0x9a400007, mmCP_DFY_DATA_0 }, 5804 + { PwrCmdWrite, 0x7d71401a, mmCP_DFY_DATA_0 }, 5805 + { PwrCmdWrite, 0x596401fc, mmCP_DFY_DATA_0 }, 5806 + { PwrCmdWrite, 0x12640009, mmCP_DFY_DATA_0 }, 5807 + { PwrCmdWrite, 0x1b74008d, mmCP_DFY_DATA_0 }, 5808 + { PwrCmdWrite, 0x7e76400a, mmCP_DFY_DATA_0 }, 5809 + { PwrCmdWrite, 0x2a640000, mmCP_DFY_DATA_0 }, 5810 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 5811 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 5812 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 5813 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 5814 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 5815 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 5816 + { PwrCmdWrite, 0x8000132c, mmCP_DFY_DATA_0 }, 5817 + { PwrCmdWrite, 0x8000133b, mmCP_DFY_DATA_0 }, 5818 + { PwrCmdWrite, 0x80001344, mmCP_DFY_DATA_0 }, 5819 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 5820 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 5821 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5822 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 5823 + { PwrCmdWrite, 0xc42530b5, mmCP_DFY_DATA_0 }, 5824 + { PwrCmdWrite, 0x1a68003a, mmCP_DFY_DATA_0 }, 5825 + { PwrCmdWrite, 0x9a80fffe, mmCP_DFY_DATA_0 }, 5826 + { PwrCmdWrite, 0x2024003a, mmCP_DFY_DATA_0 }, 5827 + { PwrCmdWrite, 0xc418000e, mmCP_DFY_DATA_0 }, 5828 + { PwrCmdWrite, 0x25980700, mmCP_DFY_DATA_0 }, 5829 + { PwrCmdWrite, 0x11980014, mmCP_DFY_DATA_0 }, 5830 + { PwrCmdWrite, 0x7d19000a, mmCP_DFY_DATA_0 }, 5831 + { PwrCmdWrite, 0xcd0130b7, mmCP_DFY_DATA_0 }, 5832 + { PwrCmdWrite, 0xce4130b5, mmCP_DFY_DATA_0 }, 5833 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 5834 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 5835 + { PwrCmdWrite, 0xce40001c, mmCP_DFY_DATA_0 }, 5836 + { PwrCmdWrite, 0xd140001e, mmCP_DFY_DATA_0 }, 5837 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5838 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 5839 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 5840 + { PwrCmdWrite, 0xc4240011, mmCP_DFY_DATA_0 }, 5841 + { PwrCmdWrite, 0x7de6800f, mmCP_DFY_DATA_0 }, 5842 + { PwrCmdWrite, 0x9a80ffea, mmCP_DFY_DATA_0 }, 5843 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 5844 + { PwrCmdWrite, 0xce40001c, mmCP_DFY_DATA_0 }, 5845 + { PwrCmdWrite, 0xd140001e, mmCP_DFY_DATA_0 }, 5846 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5847 + { PwrCmdWrite, 0xc428000f, mmCP_DFY_DATA_0 }, 5848 + { PwrCmdWrite, 0x9a80ffff, mmCP_DFY_DATA_0 }, 5849 + { PwrCmdWrite, 0xc8240011, mmCP_DFY_DATA_0 }, 5850 + { PwrCmdWrite, 0x7de1c01a, mmCP_DFY_DATA_0 }, 5851 + { PwrCmdWrite, 0x7de6800f, mmCP_DFY_DATA_0 }, 5852 + { PwrCmdWrite, 0x9a80ffe0, mmCP_DFY_DATA_0 }, 5853 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 5854 + { PwrCmdWrite, 0x8c00104f, mmCP_DFY_DATA_0 }, 5855 + { PwrCmdWrite, 0x28182002, mmCP_DFY_DATA_0 }, 5856 + { PwrCmdWrite, 0xc430000d, mmCP_DFY_DATA_0 }, 5857 + { PwrCmdWrite, 0xc4340035, mmCP_DFY_DATA_0 }, 5858 + { PwrCmdWrite, 0xcd800013, mmCP_DFY_DATA_0 }, 5859 + { PwrCmdWrite, 0xc8140023, mmCP_DFY_DATA_0 }, 5860 + { PwrCmdWrite, 0xc4180081, mmCP_DFY_DATA_0 }, 5861 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 5862 + { PwrCmdWrite, 0xc4240004, mmCP_DFY_DATA_0 }, 5863 + { PwrCmdWrite, 0x11a00002, mmCP_DFY_DATA_0 }, 5864 + { PwrCmdWrite, 0x12640004, mmCP_DFY_DATA_0 }, 5865 + { PwrCmdWrite, 0x7d614011, mmCP_DFY_DATA_0 }, 5866 + { PwrCmdWrite, 0xc4100026, mmCP_DFY_DATA_0 }, 5867 + { PwrCmdWrite, 0x05980008, mmCP_DFY_DATA_0 }, 5868 + { PwrCmdWrite, 0x7ca4800a, mmCP_DFY_DATA_0 }, 5869 + { PwrCmdWrite, 0x7d1a0002, mmCP_DFY_DATA_0 }, 5870 + { PwrCmdWrite, 0x7cb0800a, mmCP_DFY_DATA_0 }, 5871 + { PwrCmdWrite, 0x3e280008, mmCP_DFY_DATA_0 }, 5872 + { PwrCmdWrite, 0x7cb4800a, mmCP_DFY_DATA_0 }, 5873 + { PwrCmdWrite, 0xc4300027, mmCP_DFY_DATA_0 }, 5874 + { PwrCmdWrite, 0x042c0008, mmCP_DFY_DATA_0 }, 5875 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 5876 + { PwrCmdWrite, 0xcf000024, mmCP_DFY_DATA_0 }, 5877 + { PwrCmdWrite, 0x20240030, mmCP_DFY_DATA_0 }, 5878 + { PwrCmdWrite, 0x7ca48001, mmCP_DFY_DATA_0 }, 5879 + { PwrCmdWrite, 0xcc800026, mmCP_DFY_DATA_0 }, 5880 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 5881 + { PwrCmdWrite, 0x1b4c00f8, mmCP_DFY_DATA_0 }, 5882 + { PwrCmdWrite, 0xcf400026, mmCP_DFY_DATA_0 }, 5883 + { PwrCmdWrite, 0xcc400026, mmCP_DFY_DATA_0 }, 5884 + { PwrCmdWrite, 0x28340000, mmCP_DFY_DATA_0 }, 5885 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 5886 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 5887 + { PwrCmdWrite, 0x507c0020, mmCP_DFY_DATA_0 }, 5888 + { PwrCmdWrite, 0x30e40004, mmCP_DFY_DATA_0 }, 5889 + { PwrCmdWrite, 0x9a400005, mmCP_DFY_DATA_0 }, 5890 + { PwrCmdWrite, 0x7d7d401a, mmCP_DFY_DATA_0 }, 5891 + { PwrCmdWrite, 0xd1400072, mmCP_DFY_DATA_0 }, 5892 + { PwrCmdWrite, 0xc8140072, mmCP_DFY_DATA_0 }, 5893 + { PwrCmdWrite, 0x557c0020, mmCP_DFY_DATA_0 }, 5894 + { PwrCmdWrite, 0x28342002, mmCP_DFY_DATA_0 }, 5895 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 5896 + { PwrCmdWrite, 0xcd400026, mmCP_DFY_DATA_0 }, 5897 + { PwrCmdWrite, 0xcfc00026, mmCP_DFY_DATA_0 }, 5898 + { PwrCmdWrite, 0xd4400026, mmCP_DFY_DATA_0 }, 5899 + { PwrCmdWrite, 0xcc000026, mmCP_DFY_DATA_0 }, 5900 + { PwrCmdWrite, 0x9a800005, mmCP_DFY_DATA_0 }, 5901 + { PwrCmdWrite, 0x32280000, mmCP_DFY_DATA_0 }, 5902 + { PwrCmdWrite, 0x9a800002, mmCP_DFY_DATA_0 }, 5903 + { PwrCmdWrite, 0x9a000000, mmCP_DFY_DATA_0 }, 5904 + { PwrCmdWrite, 0x7c018001, mmCP_DFY_DATA_0 }, 5905 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 5906 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 5907 + { PwrCmdWrite, 0x04380028, mmCP_DFY_DATA_0 }, 5908 + { PwrCmdWrite, 0xcec0003a, mmCP_DFY_DATA_0 }, 5909 + { PwrCmdWrite, 0xcf81a2a4, mmCP_DFY_DATA_0 }, 5910 + { PwrCmdWrite, 0x80001037, mmCP_DFY_DATA_0 }, 5911 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 5912 + { PwrCmdWrite, 0xc40c005e, mmCP_DFY_DATA_0 }, 5913 + { PwrCmdWrite, 0x94c007eb, mmCP_DFY_DATA_0 }, 5914 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 5915 + { PwrCmdWrite, 0x50500020, mmCP_DFY_DATA_0 }, 5916 + { PwrCmdWrite, 0x7d0d001a, mmCP_DFY_DATA_0 }, 5917 + { PwrCmdWrite, 0xd1000072, mmCP_DFY_DATA_0 }, 5918 + { PwrCmdWrite, 0xc8100072, mmCP_DFY_DATA_0 }, 5919 + { PwrCmdWrite, 0x591c01fc, mmCP_DFY_DATA_0 }, 5920 + { PwrCmdWrite, 0x11dc0009, mmCP_DFY_DATA_0 }, 5921 + { PwrCmdWrite, 0x45140210, mmCP_DFY_DATA_0 }, 5922 + { PwrCmdWrite, 0x595801fc, mmCP_DFY_DATA_0 }, 5923 + { PwrCmdWrite, 0x11980009, mmCP_DFY_DATA_0 }, 5924 + { PwrCmdWrite, 0x29dc0000, mmCP_DFY_DATA_0 }, 5925 + { PwrCmdWrite, 0xcdc0001c, mmCP_DFY_DATA_0 }, 5926 + { PwrCmdWrite, 0xd140001e, mmCP_DFY_DATA_0 }, 5927 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5928 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 5929 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 5930 + { PwrCmdWrite, 0xc4200011, mmCP_DFY_DATA_0 }, 5931 + { PwrCmdWrite, 0x1624001f, mmCP_DFY_DATA_0 }, 5932 + { PwrCmdWrite, 0x96400069, mmCP_DFY_DATA_0 }, 5933 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 5934 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 5935 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 5936 + { PwrCmdWrite, 0xce013249, mmCP_DFY_DATA_0 }, 5937 + { PwrCmdWrite, 0x1a307fe8, mmCP_DFY_DATA_0 }, 5938 + { PwrCmdWrite, 0xcf00000a, mmCP_DFY_DATA_0 }, 5939 + { PwrCmdWrite, 0x23304076, mmCP_DFY_DATA_0 }, 5940 + { PwrCmdWrite, 0xd1000001, mmCP_DFY_DATA_0 }, 5941 + { PwrCmdWrite, 0xcf000001, mmCP_DFY_DATA_0 }, 5942 + { PwrCmdWrite, 0xc41d3254, mmCP_DFY_DATA_0 }, 5943 + { PwrCmdWrite, 0xc4253256, mmCP_DFY_DATA_0 }, 5944 + { PwrCmdWrite, 0x18cc00e8, mmCP_DFY_DATA_0 }, 5945 + { PwrCmdWrite, 0x10cc0015, mmCP_DFY_DATA_0 }, 5946 + { PwrCmdWrite, 0x4514020c, mmCP_DFY_DATA_0 }, 5947 + { PwrCmdWrite, 0xd140001e, mmCP_DFY_DATA_0 }, 5948 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 5949 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 5950 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 5951 + { PwrCmdWrite, 0xc4200011, mmCP_DFY_DATA_0 }, 5952 + { PwrCmdWrite, 0xce013248, mmCP_DFY_DATA_0 }, 5953 + { PwrCmdWrite, 0x1a2001e8, mmCP_DFY_DATA_0 }, 5954 + { PwrCmdWrite, 0x12200014, mmCP_DFY_DATA_0 }, 5955 + { PwrCmdWrite, 0x2a204001, mmCP_DFY_DATA_0 }, 5956 + { PwrCmdWrite, 0xce000013, mmCP_DFY_DATA_0 }, 5957 + { PwrCmdWrite, 0x1a64003c, mmCP_DFY_DATA_0 }, 5958 + { PwrCmdWrite, 0x1264001f, mmCP_DFY_DATA_0 }, 5959 + { PwrCmdWrite, 0x11dc0009, mmCP_DFY_DATA_0 }, 5960 + { PwrCmdWrite, 0x15dc000b, mmCP_DFY_DATA_0 }, 5961 + { PwrCmdWrite, 0x7dcdc00a, mmCP_DFY_DATA_0 }, 5962 + { PwrCmdWrite, 0x7e5dc00a, mmCP_DFY_DATA_0 }, 5963 + { PwrCmdWrite, 0xcdc00100, mmCP_DFY_DATA_0 }, 5964 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 5965 + { PwrCmdWrite, 0xd8400010, mmCP_DFY_DATA_0 }, 5966 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 5967 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 5968 + { PwrCmdWrite, 0xcf00000d, mmCP_DFY_DATA_0 }, 5969 + { PwrCmdWrite, 0xcf00000a, mmCP_DFY_DATA_0 }, 5970 + { PwrCmdWrite, 0x8c001427, mmCP_DFY_DATA_0 }, 5971 + { PwrCmdWrite, 0x04340022, mmCP_DFY_DATA_0 }, 5972 + { PwrCmdWrite, 0x07740001, mmCP_DFY_DATA_0 }, 5973 + { PwrCmdWrite, 0x04300010, mmCP_DFY_DATA_0 }, 5974 + { PwrCmdWrite, 0xdf430000, mmCP_DFY_DATA_0 }, 5975 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 5976 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 5977 + { PwrCmdWrite, 0xd4412e01, mmCP_DFY_DATA_0 }, 5978 + { PwrCmdWrite, 0x0434001e, mmCP_DFY_DATA_0 }, 5979 + { PwrCmdWrite, 0xdf430000, mmCP_DFY_DATA_0 }, 5980 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 5981 + { PwrCmdWrite, 0xdf030000, mmCP_DFY_DATA_0 }, 5982 + { PwrCmdWrite, 0xd4412e40, mmCP_DFY_DATA_0 }, 5983 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 5984 + { PwrCmdWrite, 0xcc41c030, mmCP_DFY_DATA_0 }, 5985 + { PwrCmdWrite, 0xcc41c031, mmCP_DFY_DATA_0 }, 5986 + { PwrCmdWrite, 0x248dfffe, mmCP_DFY_DATA_0 }, 5987 + { PwrCmdWrite, 0xccc12e00, mmCP_DFY_DATA_0 }, 5988 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 5989 + { PwrCmdWrite, 0xcc812e00, mmCP_DFY_DATA_0 }, 5990 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 5991 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 5992 + { PwrCmdWrite, 0x8c00142b, mmCP_DFY_DATA_0 }, 5993 + { PwrCmdWrite, 0xd8000010, mmCP_DFY_DATA_0 }, 5994 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 5995 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 5996 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 5997 + { PwrCmdWrite, 0x45140248, mmCP_DFY_DATA_0 }, 5998 + { PwrCmdWrite, 0xd140001e, mmCP_DFY_DATA_0 }, 5999 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 6000 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 6001 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 6002 + { PwrCmdWrite, 0xc8200011, mmCP_DFY_DATA_0 }, 6003 + { PwrCmdWrite, 0xce013257, mmCP_DFY_DATA_0 }, 6004 + { PwrCmdWrite, 0x56200020, mmCP_DFY_DATA_0 }, 6005 + { PwrCmdWrite, 0xce013258, mmCP_DFY_DATA_0 }, 6006 + { PwrCmdWrite, 0x0434000c, mmCP_DFY_DATA_0 }, 6007 + { PwrCmdWrite, 0xdb000024, mmCP_DFY_DATA_0 }, 6008 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 6009 + { PwrCmdWrite, 0xd8000026, mmCP_DFY_DATA_0 }, 6010 + { PwrCmdWrite, 0xd8000026, mmCP_DFY_DATA_0 }, 6011 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 6012 + { PwrCmdWrite, 0x45540008, mmCP_DFY_DATA_0 }, 6013 + { PwrCmdWrite, 0xd140001e, mmCP_DFY_DATA_0 }, 6014 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 6015 + { PwrCmdWrite, 0xc418000f, mmCP_DFY_DATA_0 }, 6016 + { PwrCmdWrite, 0x9980ffff, mmCP_DFY_DATA_0 }, 6017 + { PwrCmdWrite, 0xc8200011, mmCP_DFY_DATA_0 }, 6018 + { PwrCmdWrite, 0xce013259, mmCP_DFY_DATA_0 }, 6019 + { PwrCmdWrite, 0x56200020, mmCP_DFY_DATA_0 }, 6020 + { PwrCmdWrite, 0xc0337fff, mmCP_DFY_DATA_0 }, 6021 + { PwrCmdWrite, 0x7f220009, mmCP_DFY_DATA_0 }, 6022 + { PwrCmdWrite, 0xce01325a, mmCP_DFY_DATA_0 }, 6023 + { PwrCmdWrite, 0x55300020, mmCP_DFY_DATA_0 }, 6024 + { PwrCmdWrite, 0x7d01c001, mmCP_DFY_DATA_0 }, 6025 + { PwrCmdWrite, 0x042c01d0, mmCP_DFY_DATA_0 }, 6026 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 6027 + { PwrCmdWrite, 0x06ec0004, mmCP_DFY_DATA_0 }, 6028 + { PwrCmdWrite, 0x7f01c001, mmCP_DFY_DATA_0 }, 6029 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 6030 + { PwrCmdWrite, 0x041c0002, mmCP_DFY_DATA_0 }, 6031 + { PwrCmdWrite, 0x042c01c8, mmCP_DFY_DATA_0 }, 6032 + { PwrCmdWrite, 0x8c000d61, mmCP_DFY_DATA_0 }, 6033 + { PwrCmdWrite, 0xc4380012, mmCP_DFY_DATA_0 }, 6034 + { PwrCmdWrite, 0x9b80ffff, mmCP_DFY_DATA_0 }, 6035 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 6036 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 6037 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 6038 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 6039 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 6040 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 6041 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 6042 + { PwrCmdWrite, 0x50500020, mmCP_DFY_DATA_0 }, 6043 + { PwrCmdWrite, 0x8c001427, mmCP_DFY_DATA_0 }, 6044 + { PwrCmdWrite, 0x7cd0c01a, mmCP_DFY_DATA_0 }, 6045 + { PwrCmdWrite, 0xc4200007, mmCP_DFY_DATA_0 }, 6046 + { PwrCmdWrite, 0xd0c00072, mmCP_DFY_DATA_0 }, 6047 + { PwrCmdWrite, 0xc8240072, mmCP_DFY_DATA_0 }, 6048 + { PwrCmdWrite, 0xd240001e, mmCP_DFY_DATA_0 }, 6049 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 6050 + { PwrCmdWrite, 0x19682011, mmCP_DFY_DATA_0 }, 6051 + { PwrCmdWrite, 0x5a6c01fc, mmCP_DFY_DATA_0 }, 6052 + { PwrCmdWrite, 0x12ec0009, mmCP_DFY_DATA_0 }, 6053 + { PwrCmdWrite, 0x7eeac00a, mmCP_DFY_DATA_0 }, 6054 + { PwrCmdWrite, 0x2aec0000, mmCP_DFY_DATA_0 }, 6055 + { PwrCmdWrite, 0xcec0001c, mmCP_DFY_DATA_0 }, 6056 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 6057 + { PwrCmdWrite, 0xc430000f, mmCP_DFY_DATA_0 }, 6058 + { PwrCmdWrite, 0x9b00ffff, mmCP_DFY_DATA_0 }, 6059 + { PwrCmdWrite, 0xc4180011, mmCP_DFY_DATA_0 }, 6060 + { PwrCmdWrite, 0x7c438001, mmCP_DFY_DATA_0 }, 6061 + { PwrCmdWrite, 0x99800007, mmCP_DFY_DATA_0 }, 6062 + { PwrCmdWrite, 0xdf830000, mmCP_DFY_DATA_0 }, 6063 + { PwrCmdWrite, 0xcfa0000c, mmCP_DFY_DATA_0 }, 6064 + { PwrCmdWrite, 0x8c00142b, mmCP_DFY_DATA_0 }, 6065 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 6066 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 6067 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 6068 + { PwrCmdWrite, 0x8c00142b, mmCP_DFY_DATA_0 }, 6069 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 6070 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 6071 + { PwrCmdWrite, 0xd8000012, mmCP_DFY_DATA_0 }, 6072 + { PwrCmdWrite, 0xc43c0008, mmCP_DFY_DATA_0 }, 6073 + { PwrCmdWrite, 0x9bc0ffff, mmCP_DFY_DATA_0 }, 6074 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6075 + { PwrCmdWrite, 0xd8400012, mmCP_DFY_DATA_0 }, 6076 + { PwrCmdWrite, 0xc43c0008, mmCP_DFY_DATA_0 }, 6077 + { PwrCmdWrite, 0x97c0ffff, mmCP_DFY_DATA_0 }, 6078 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6079 + { PwrCmdWrite, 0xc4380007, mmCP_DFY_DATA_0 }, 6080 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 6081 + { PwrCmdWrite, 0x17b80001, mmCP_DFY_DATA_0 }, 6082 + { PwrCmdWrite, 0x18d40038, mmCP_DFY_DATA_0 }, 6083 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 6084 + { PwrCmdWrite, 0x9b800004, mmCP_DFY_DATA_0 }, 6085 + { PwrCmdWrite, 0xd8400029, mmCP_DFY_DATA_0 }, 6086 + { PwrCmdWrite, 0xc414005e, mmCP_DFY_DATA_0 }, 6087 + { PwrCmdWrite, 0x9540073d, mmCP_DFY_DATA_0 }, 6088 + { PwrCmdWrite, 0x18c80066, mmCP_DFY_DATA_0 }, 6089 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 6090 + { PwrCmdWrite, 0x30880001, mmCP_DFY_DATA_0 }, 6091 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 6092 + { PwrCmdWrite, 0x94800008, mmCP_DFY_DATA_0 }, 6093 + { PwrCmdWrite, 0x8c00187c, mmCP_DFY_DATA_0 }, 6094 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 6095 + { PwrCmdWrite, 0xc42c0004, mmCP_DFY_DATA_0 }, 6096 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 6097 + { PwrCmdWrite, 0xcd910000, mmCP_DFY_DATA_0 }, 6098 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 6099 + { PwrCmdWrite, 0x7d410001, mmCP_DFY_DATA_0 }, 6100 + { PwrCmdWrite, 0x043c0000, mmCP_DFY_DATA_0 }, 6101 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 6102 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 6103 + { PwrCmdWrite, 0x04240001, mmCP_DFY_DATA_0 }, 6104 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 6105 + { PwrCmdWrite, 0x4220000c, mmCP_DFY_DATA_0 }, 6106 + { PwrCmdWrite, 0x0a640001, mmCP_DFY_DATA_0 }, 6107 + { PwrCmdWrite, 0xcc000078, mmCP_DFY_DATA_0 }, 6108 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 6109 + { PwrCmdWrite, 0x24e80007, mmCP_DFY_DATA_0 }, 6110 + { PwrCmdWrite, 0x24ec0010, mmCP_DFY_DATA_0 }, 6111 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6112 + { PwrCmdWrite, 0x9ac00006, mmCP_DFY_DATA_0 }, 6113 + { PwrCmdWrite, 0xc42c0004, mmCP_DFY_DATA_0 }, 6114 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 6115 + { PwrCmdWrite, 0xc5310000, mmCP_DFY_DATA_0 }, 6116 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 6117 + { PwrCmdWrite, 0x80001465, mmCP_DFY_DATA_0 }, 6118 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 6119 + { PwrCmdWrite, 0x7d15001a, mmCP_DFY_DATA_0 }, 6120 + { PwrCmdWrite, 0xd1000072, mmCP_DFY_DATA_0 }, 6121 + { PwrCmdWrite, 0xc82c0072, mmCP_DFY_DATA_0 }, 6122 + { PwrCmdWrite, 0xd2c0001e, mmCP_DFY_DATA_0 }, 6123 + { PwrCmdWrite, 0x18f02011, mmCP_DFY_DATA_0 }, 6124 + { PwrCmdWrite, 0x5aec01fc, mmCP_DFY_DATA_0 }, 6125 + { PwrCmdWrite, 0x12ec0009, mmCP_DFY_DATA_0 }, 6126 + { PwrCmdWrite, 0x7ef2c00a, mmCP_DFY_DATA_0 }, 6127 + { PwrCmdWrite, 0x2aec0000, mmCP_DFY_DATA_0 }, 6128 + { PwrCmdWrite, 0xcec0001c, mmCP_DFY_DATA_0 }, 6129 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 6130 + { PwrCmdWrite, 0xc42c000f, mmCP_DFY_DATA_0 }, 6131 + { PwrCmdWrite, 0x9ac0ffff, mmCP_DFY_DATA_0 }, 6132 + { PwrCmdWrite, 0xc4300011, mmCP_DFY_DATA_0 }, 6133 + { PwrCmdWrite, 0x96800012, mmCP_DFY_DATA_0 }, 6134 + { PwrCmdWrite, 0x12a80001, mmCP_DFY_DATA_0 }, 6135 + { PwrCmdWrite, 0x0aa80001, mmCP_DFY_DATA_0 }, 6136 + { PwrCmdWrite, 0x06a8146a, mmCP_DFY_DATA_0 }, 6137 + { PwrCmdWrite, 0x7f1f0009, mmCP_DFY_DATA_0 }, 6138 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 6139 + { PwrCmdWrite, 0x7f1b400f, mmCP_DFY_DATA_0 }, 6140 + { PwrCmdWrite, 0x80001478, mmCP_DFY_DATA_0 }, 6141 + { PwrCmdWrite, 0x7f1b400e, mmCP_DFY_DATA_0 }, 6142 + { PwrCmdWrite, 0x80001478, mmCP_DFY_DATA_0 }, 6143 + { PwrCmdWrite, 0x7f1b400c, mmCP_DFY_DATA_0 }, 6144 + { PwrCmdWrite, 0x8000147a, mmCP_DFY_DATA_0 }, 6145 + { PwrCmdWrite, 0x7f1b400d, mmCP_DFY_DATA_0 }, 6146 + { PwrCmdWrite, 0x8000147a, mmCP_DFY_DATA_0 }, 6147 + { PwrCmdWrite, 0x7f1b400f, mmCP_DFY_DATA_0 }, 6148 + { PwrCmdWrite, 0x8000147a, mmCP_DFY_DATA_0 }, 6149 + { PwrCmdWrite, 0x7f1b400e, mmCP_DFY_DATA_0 }, 6150 + { PwrCmdWrite, 0x8000147a, mmCP_DFY_DATA_0 }, 6151 + { PwrCmdWrite, 0x7f334002, mmCP_DFY_DATA_0 }, 6152 + { PwrCmdWrite, 0x97400014, mmCP_DFY_DATA_0 }, 6153 + { PwrCmdWrite, 0x8000147b, mmCP_DFY_DATA_0 }, 6154 + { PwrCmdWrite, 0x9b400012, mmCP_DFY_DATA_0 }, 6155 + { PwrCmdWrite, 0x9b800005, mmCP_DFY_DATA_0 }, 6156 + { PwrCmdWrite, 0x9bc0001f, mmCP_DFY_DATA_0 }, 6157 + { PwrCmdWrite, 0x7e024001, mmCP_DFY_DATA_0 }, 6158 + { PwrCmdWrite, 0x043c0001, mmCP_DFY_DATA_0 }, 6159 + { PwrCmdWrite, 0x8000144a, mmCP_DFY_DATA_0 }, 6160 + { PwrCmdWrite, 0xc40c0032, mmCP_DFY_DATA_0 }, 6161 + { PwrCmdWrite, 0xc438001d, mmCP_DFY_DATA_0 }, 6162 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 6163 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 6164 + { PwrCmdWrite, 0xc43d325b, mmCP_DFY_DATA_0 }, 6165 + { PwrCmdWrite, 0x1bb81ff0, mmCP_DFY_DATA_0 }, 6166 + { PwrCmdWrite, 0x7fbfc00a, mmCP_DFY_DATA_0 }, 6167 + { PwrCmdWrite, 0xcfc1325b, mmCP_DFY_DATA_0 }, 6168 + { PwrCmdWrite, 0xc411325d, mmCP_DFY_DATA_0 }, 6169 + { PwrCmdWrite, 0x251001ef, mmCP_DFY_DATA_0 }, 6170 + { PwrCmdWrite, 0xcd01325d, mmCP_DFY_DATA_0 }, 6171 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 6172 + { PwrCmdWrite, 0x94800007, mmCP_DFY_DATA_0 }, 6173 + { PwrCmdWrite, 0x8c00187c, mmCP_DFY_DATA_0 }, 6174 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 6175 + { PwrCmdWrite, 0xc42c0004, mmCP_DFY_DATA_0 }, 6176 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 6177 + { PwrCmdWrite, 0xcd910000, mmCP_DFY_DATA_0 }, 6178 + { PwrCmdWrite, 0xcec00008, mmCP_DFY_DATA_0 }, 6179 + { PwrCmdWrite, 0x9b800003, mmCP_DFY_DATA_0 }, 6180 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 6181 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 6182 + { PwrCmdWrite, 0xc40c0032, mmCP_DFY_DATA_0 }, 6183 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 6184 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 6185 + { PwrCmdWrite, 0xc40d325b, mmCP_DFY_DATA_0 }, 6186 + { PwrCmdWrite, 0x800012c2, mmCP_DFY_DATA_0 }, 6187 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 6188 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 6189 + { PwrCmdWrite, 0xc438001d, mmCP_DFY_DATA_0 }, 6190 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 6191 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 6192 + { PwrCmdWrite, 0x13f4000c, mmCP_DFY_DATA_0 }, 6193 + { PwrCmdWrite, 0x9bc00006, mmCP_DFY_DATA_0 }, 6194 + { PwrCmdWrite, 0xc43d3256, mmCP_DFY_DATA_0 }, 6195 + { PwrCmdWrite, 0x1bf0060b, mmCP_DFY_DATA_0 }, 6196 + { PwrCmdWrite, 0x1bfc0077, mmCP_DFY_DATA_0 }, 6197 + { PwrCmdWrite, 0x7ff3c00a, mmCP_DFY_DATA_0 }, 6198 + { PwrCmdWrite, 0x800014a9, mmCP_DFY_DATA_0 }, 6199 + { PwrCmdWrite, 0xc43d325a, mmCP_DFY_DATA_0 }, 6200 + { PwrCmdWrite, 0x1bfc0677, mmCP_DFY_DATA_0 }, 6201 + { PwrCmdWrite, 0x04300100, mmCP_DFY_DATA_0 }, 6202 + { PwrCmdWrite, 0x1bb81ff0, mmCP_DFY_DATA_0 }, 6203 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 6204 + { PwrCmdWrite, 0xc0328007, mmCP_DFY_DATA_0 }, 6205 + { PwrCmdWrite, 0x7fb7800a, mmCP_DFY_DATA_0 }, 6206 + { PwrCmdWrite, 0x13fc0017, mmCP_DFY_DATA_0 }, 6207 + { PwrCmdWrite, 0x7ff3c00a, mmCP_DFY_DATA_0 }, 6208 + { PwrCmdWrite, 0x7ffbc00a, mmCP_DFY_DATA_0 }, 6209 + { PwrCmdWrite, 0xcfc1325b, mmCP_DFY_DATA_0 }, 6210 + { PwrCmdWrite, 0xc03a0002, mmCP_DFY_DATA_0 }, 6211 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 6212 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6213 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 6214 + { PwrCmdWrite, 0xcf8130b5, mmCP_DFY_DATA_0 }, 6215 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 6216 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 6217 + { PwrCmdWrite, 0x043c0000, mmCP_DFY_DATA_0 }, 6218 + { PwrCmdWrite, 0xc414000e, mmCP_DFY_DATA_0 }, 6219 + { PwrCmdWrite, 0x29540008, mmCP_DFY_DATA_0 }, 6220 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 6221 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 6222 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 6223 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 6224 + { PwrCmdWrite, 0x7dd9c01a, mmCP_DFY_DATA_0 }, 6225 + { PwrCmdWrite, 0x45dc0390, mmCP_DFY_DATA_0 }, 6226 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 6227 + { PwrCmdWrite, 0x04183000, mmCP_DFY_DATA_0 }, 6228 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 6229 + { PwrCmdWrite, 0x1b380057, mmCP_DFY_DATA_0 }, 6230 + { PwrCmdWrite, 0x1b340213, mmCP_DFY_DATA_0 }, 6231 + { PwrCmdWrite, 0x1b300199, mmCP_DFY_DATA_0 }, 6232 + { PwrCmdWrite, 0x7f7b400a, mmCP_DFY_DATA_0 }, 6233 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 6234 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 6235 + { PwrCmdWrite, 0xd1c00025, mmCP_DFY_DATA_0 }, 6236 + { PwrCmdWrite, 0xcc800026, mmCP_DFY_DATA_0 }, 6237 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 6238 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 6239 + { PwrCmdWrite, 0x7c424001, mmCP_DFY_DATA_0 }, 6240 + { PwrCmdWrite, 0xce400026, mmCP_DFY_DATA_0 }, 6241 + { PwrCmdWrite, 0x7c428001, mmCP_DFY_DATA_0 }, 6242 + { PwrCmdWrite, 0xce800026, mmCP_DFY_DATA_0 }, 6243 + { PwrCmdWrite, 0x7c42c001, mmCP_DFY_DATA_0 }, 6244 + { PwrCmdWrite, 0xcec00026, mmCP_DFY_DATA_0 }, 6245 + { PwrCmdWrite, 0x7c430001, mmCP_DFY_DATA_0 }, 6246 + { PwrCmdWrite, 0xcf000026, mmCP_DFY_DATA_0 }, 6247 + { PwrCmdWrite, 0x7c434001, mmCP_DFY_DATA_0 }, 6248 + { PwrCmdWrite, 0xcf400026, mmCP_DFY_DATA_0 }, 6249 + { PwrCmdWrite, 0x7c438001, mmCP_DFY_DATA_0 }, 6250 + { PwrCmdWrite, 0xcf800026, mmCP_DFY_DATA_0 }, 6251 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 6252 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 6253 + { PwrCmdWrite, 0x04182000, mmCP_DFY_DATA_0 }, 6254 + { PwrCmdWrite, 0xcd813267, mmCP_DFY_DATA_0 }, 6255 + { PwrCmdWrite, 0xd840004f, mmCP_DFY_DATA_0 }, 6256 + { PwrCmdWrite, 0x1a0800fd, mmCP_DFY_DATA_0 }, 6257 + { PwrCmdWrite, 0x109c000a, mmCP_DFY_DATA_0 }, 6258 + { PwrCmdWrite, 0xc4193265, mmCP_DFY_DATA_0 }, 6259 + { PwrCmdWrite, 0x7dd9c00a, mmCP_DFY_DATA_0 }, 6260 + { PwrCmdWrite, 0xcdc13265, mmCP_DFY_DATA_0 }, 6261 + { PwrCmdWrite, 0x2620ffff, mmCP_DFY_DATA_0 }, 6262 + { PwrCmdWrite, 0xce080228, mmCP_DFY_DATA_0 }, 6263 + { PwrCmdWrite, 0x9880000e, mmCP_DFY_DATA_0 }, 6264 + { PwrCmdWrite, 0xce480250, mmCP_DFY_DATA_0 }, 6265 + { PwrCmdWrite, 0xce880258, mmCP_DFY_DATA_0 }, 6266 + { PwrCmdWrite, 0xd8080230, mmCP_DFY_DATA_0 }, 6267 + { PwrCmdWrite, 0xd8080238, mmCP_DFY_DATA_0 }, 6268 + { PwrCmdWrite, 0xd8080240, mmCP_DFY_DATA_0 }, 6269 + { PwrCmdWrite, 0xd8080248, mmCP_DFY_DATA_0 }, 6270 + { PwrCmdWrite, 0xd8080268, mmCP_DFY_DATA_0 }, 6271 + { PwrCmdWrite, 0xd8080270, mmCP_DFY_DATA_0 }, 6272 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 6273 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 6274 + { PwrCmdWrite, 0xd800004f, mmCP_DFY_DATA_0 }, 6275 + { PwrCmdWrite, 0x97c0ec75, mmCP_DFY_DATA_0 }, 6276 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6277 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 6278 + { PwrCmdWrite, 0x041c0010, mmCP_DFY_DATA_0 }, 6279 + { PwrCmdWrite, 0x26180001, mmCP_DFY_DATA_0 }, 6280 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6281 + { PwrCmdWrite, 0x16200001, mmCP_DFY_DATA_0 }, 6282 + { PwrCmdWrite, 0x95800002, mmCP_DFY_DATA_0 }, 6283 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 6284 + { PwrCmdWrite, 0x99c0fffb, mmCP_DFY_DATA_0 }, 6285 + { PwrCmdWrite, 0xccc80230, mmCP_DFY_DATA_0 }, 6286 + { PwrCmdWrite, 0xd8080238, mmCP_DFY_DATA_0 }, 6287 + { PwrCmdWrite, 0xd8080240, mmCP_DFY_DATA_0 }, 6288 + { PwrCmdWrite, 0xd8080248, mmCP_DFY_DATA_0 }, 6289 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 6290 + { PwrCmdWrite, 0xce480250, mmCP_DFY_DATA_0 }, 6291 + { PwrCmdWrite, 0xce880258, mmCP_DFY_DATA_0 }, 6292 + { PwrCmdWrite, 0x52a80020, mmCP_DFY_DATA_0 }, 6293 + { PwrCmdWrite, 0x7e6a401a, mmCP_DFY_DATA_0 }, 6294 + { PwrCmdWrite, 0x041c0020, mmCP_DFY_DATA_0 }, 6295 + { PwrCmdWrite, 0x66580001, mmCP_DFY_DATA_0 }, 6296 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6297 + { PwrCmdWrite, 0x56640001, mmCP_DFY_DATA_0 }, 6298 + { PwrCmdWrite, 0x95800002, mmCP_DFY_DATA_0 }, 6299 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 6300 + { PwrCmdWrite, 0x99c0fffb, mmCP_DFY_DATA_0 }, 6301 + { PwrCmdWrite, 0xccc80260, mmCP_DFY_DATA_0 }, 6302 + { PwrCmdWrite, 0xd8080268, mmCP_DFY_DATA_0 }, 6303 + { PwrCmdWrite, 0xd8080270, mmCP_DFY_DATA_0 }, 6304 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 6305 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 6306 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 6307 + { PwrCmdWrite, 0xcec80288, mmCP_DFY_DATA_0 }, 6308 + { PwrCmdWrite, 0xcf080290, mmCP_DFY_DATA_0 }, 6309 + { PwrCmdWrite, 0xcec80298, mmCP_DFY_DATA_0 }, 6310 + { PwrCmdWrite, 0xcf0802a0, mmCP_DFY_DATA_0 }, 6311 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 6312 + { PwrCmdWrite, 0x041c0010, mmCP_DFY_DATA_0 }, 6313 + { PwrCmdWrite, 0xcf4802a8, mmCP_DFY_DATA_0 }, 6314 + { PwrCmdWrite, 0x27580001, mmCP_DFY_DATA_0 }, 6315 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6316 + { PwrCmdWrite, 0x17740001, mmCP_DFY_DATA_0 }, 6317 + { PwrCmdWrite, 0x95800002, mmCP_DFY_DATA_0 }, 6318 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 6319 + { PwrCmdWrite, 0x99c0fffb, mmCP_DFY_DATA_0 }, 6320 + { PwrCmdWrite, 0xccc802b0, mmCP_DFY_DATA_0 }, 6321 + { PwrCmdWrite, 0xd80802b8, mmCP_DFY_DATA_0 }, 6322 + { PwrCmdWrite, 0x178c000b, mmCP_DFY_DATA_0 }, 6323 + { PwrCmdWrite, 0x27b8003f, mmCP_DFY_DATA_0 }, 6324 + { PwrCmdWrite, 0x7cf8c001, mmCP_DFY_DATA_0 }, 6325 + { PwrCmdWrite, 0xcf8802c0, mmCP_DFY_DATA_0 }, 6326 + { PwrCmdWrite, 0xccc802c8, mmCP_DFY_DATA_0 }, 6327 + { PwrCmdWrite, 0xcf8802d0, mmCP_DFY_DATA_0 }, 6328 + { PwrCmdWrite, 0xcf8802d8, mmCP_DFY_DATA_0 }, 6329 + { PwrCmdWrite, 0xd800004f, mmCP_DFY_DATA_0 }, 6330 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 6331 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6332 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 6333 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 6334 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 6335 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 6336 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 6337 + { PwrCmdWrite, 0xc43d3265, mmCP_DFY_DATA_0 }, 6338 + { PwrCmdWrite, 0x1bc800ea, mmCP_DFY_DATA_0 }, 6339 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 6340 + { PwrCmdWrite, 0x25b8ffff, mmCP_DFY_DATA_0 }, 6341 + { PwrCmdWrite, 0xc4930240, mmCP_DFY_DATA_0 }, 6342 + { PwrCmdWrite, 0xc48f0238, mmCP_DFY_DATA_0 }, 6343 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 6344 + { PwrCmdWrite, 0x24cc000f, mmCP_DFY_DATA_0 }, 6345 + { PwrCmdWrite, 0x7cd2800c, mmCP_DFY_DATA_0 }, 6346 + { PwrCmdWrite, 0x9a80000b, mmCP_DFY_DATA_0 }, 6347 + { PwrCmdWrite, 0xc5230309, mmCP_DFY_DATA_0 }, 6348 + { PwrCmdWrite, 0x2620ffff, mmCP_DFY_DATA_0 }, 6349 + { PwrCmdWrite, 0x7e3a400c, mmCP_DFY_DATA_0 }, 6350 + { PwrCmdWrite, 0x9a400004, mmCP_DFY_DATA_0 }, 6351 + { PwrCmdWrite, 0x05100001, mmCP_DFY_DATA_0 }, 6352 + { PwrCmdWrite, 0x2510000f, mmCP_DFY_DATA_0 }, 6353 + { PwrCmdWrite, 0x80001539, mmCP_DFY_DATA_0 }, 6354 + { PwrCmdWrite, 0xcd08034b, mmCP_DFY_DATA_0 }, 6355 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 6356 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 6357 + { PwrCmdWrite, 0xc48f0230, mmCP_DFY_DATA_0 }, 6358 + { PwrCmdWrite, 0xc4930240, mmCP_DFY_DATA_0 }, 6359 + { PwrCmdWrite, 0x98c00004, mmCP_DFY_DATA_0 }, 6360 + { PwrCmdWrite, 0xcd880353, mmCP_DFY_DATA_0 }, 6361 + { PwrCmdWrite, 0x8c00163f, mmCP_DFY_DATA_0 }, 6362 + { PwrCmdWrite, 0xc49b0353, mmCP_DFY_DATA_0 }, 6363 + { PwrCmdWrite, 0xc4930238, mmCP_DFY_DATA_0 }, 6364 + { PwrCmdWrite, 0xc48f0228, mmCP_DFY_DATA_0 }, 6365 + { PwrCmdWrite, 0x05100001, mmCP_DFY_DATA_0 }, 6366 + { PwrCmdWrite, 0x2510000f, mmCP_DFY_DATA_0 }, 6367 + { PwrCmdWrite, 0x7cd14005, mmCP_DFY_DATA_0 }, 6368 + { PwrCmdWrite, 0x25540001, mmCP_DFY_DATA_0 }, 6369 + { PwrCmdWrite, 0x99400004, mmCP_DFY_DATA_0 }, 6370 + { PwrCmdWrite, 0x05100001, mmCP_DFY_DATA_0 }, 6371 + { PwrCmdWrite, 0x2510000f, mmCP_DFY_DATA_0 }, 6372 + { PwrCmdWrite, 0x8000154f, mmCP_DFY_DATA_0 }, 6373 + { PwrCmdWrite, 0xc48f0230, mmCP_DFY_DATA_0 }, 6374 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 6375 + { PwrCmdWrite, 0xcd080238, mmCP_DFY_DATA_0 }, 6376 + { PwrCmdWrite, 0xcd08034b, mmCP_DFY_DATA_0 }, 6377 + { PwrCmdWrite, 0x08cc0001, mmCP_DFY_DATA_0 }, 6378 + { PwrCmdWrite, 0x2598ffff, mmCP_DFY_DATA_0 }, 6379 + { PwrCmdWrite, 0x3d200008, mmCP_DFY_DATA_0 }, 6380 + { PwrCmdWrite, 0xccc80230, mmCP_DFY_DATA_0 }, 6381 + { PwrCmdWrite, 0xcd900309, mmCP_DFY_DATA_0 }, 6382 + { PwrCmdWrite, 0xd8100319, mmCP_DFY_DATA_0 }, 6383 + { PwrCmdWrite, 0x04340801, mmCP_DFY_DATA_0 }, 6384 + { PwrCmdWrite, 0x2198003f, mmCP_DFY_DATA_0 }, 6385 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 6386 + { PwrCmdWrite, 0xcd910ce7, mmCP_DFY_DATA_0 }, 6387 + { PwrCmdWrite, 0xc4190ce6, mmCP_DFY_DATA_0 }, 6388 + { PwrCmdWrite, 0x7d918005, mmCP_DFY_DATA_0 }, 6389 + { PwrCmdWrite, 0x25980001, mmCP_DFY_DATA_0 }, 6390 + { PwrCmdWrite, 0x9580fffd, mmCP_DFY_DATA_0 }, 6391 + { PwrCmdWrite, 0x7d918004, mmCP_DFY_DATA_0 }, 6392 + { PwrCmdWrite, 0xcd810ce6, mmCP_DFY_DATA_0 }, 6393 + { PwrCmdWrite, 0x9a000003, mmCP_DFY_DATA_0 }, 6394 + { PwrCmdWrite, 0xcdd1054f, mmCP_DFY_DATA_0 }, 6395 + { PwrCmdWrite, 0x8000156e, mmCP_DFY_DATA_0 }, 6396 + { PwrCmdWrite, 0x090c0008, mmCP_DFY_DATA_0 }, 6397 + { PwrCmdWrite, 0xcdcd050e, mmCP_DFY_DATA_0 }, 6398 + { PwrCmdWrite, 0x040c0000, mmCP_DFY_DATA_0 }, 6399 + { PwrCmdWrite, 0x110c0014, mmCP_DFY_DATA_0 }, 6400 + { PwrCmdWrite, 0x28cc4001, mmCP_DFY_DATA_0 }, 6401 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 6402 + { PwrCmdWrite, 0xcc41230a, mmCP_DFY_DATA_0 }, 6403 + { PwrCmdWrite, 0xcc41230b, mmCP_DFY_DATA_0 }, 6404 + { PwrCmdWrite, 0xcc41230c, mmCP_DFY_DATA_0 }, 6405 + { PwrCmdWrite, 0xcc41230d, mmCP_DFY_DATA_0 }, 6406 + { PwrCmdWrite, 0xcc480329, mmCP_DFY_DATA_0 }, 6407 + { PwrCmdWrite, 0xcc48032a, mmCP_DFY_DATA_0 }, 6408 + { PwrCmdWrite, 0xcc4802e0, mmCP_DFY_DATA_0 }, 6409 + { PwrCmdWrite, 0xd8000055, mmCP_DFY_DATA_0 }, 6410 + { PwrCmdWrite, 0xc48f02e0, mmCP_DFY_DATA_0 }, 6411 + { PwrCmdWrite, 0x24d8003f, mmCP_DFY_DATA_0 }, 6412 + { PwrCmdWrite, 0x09940001, mmCP_DFY_DATA_0 }, 6413 + { PwrCmdWrite, 0x44100001, mmCP_DFY_DATA_0 }, 6414 + { PwrCmdWrite, 0x9580002c, mmCP_DFY_DATA_0 }, 6415 + { PwrCmdWrite, 0x95400005, mmCP_DFY_DATA_0 }, 6416 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 6417 + { PwrCmdWrite, 0x51100001, mmCP_DFY_DATA_0 }, 6418 + { PwrCmdWrite, 0x69100001, mmCP_DFY_DATA_0 }, 6419 + { PwrCmdWrite, 0x8000157f, mmCP_DFY_DATA_0 }, 6420 + { PwrCmdWrite, 0x24cc003f, mmCP_DFY_DATA_0 }, 6421 + { PwrCmdWrite, 0xc4970290, mmCP_DFY_DATA_0 }, 6422 + { PwrCmdWrite, 0xc49b0288, mmCP_DFY_DATA_0 }, 6423 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 6424 + { PwrCmdWrite, 0x7d59401a, mmCP_DFY_DATA_0 }, 6425 + { PwrCmdWrite, 0xc49b02a0, mmCP_DFY_DATA_0 }, 6426 + { PwrCmdWrite, 0xc49f0298, mmCP_DFY_DATA_0 }, 6427 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 6428 + { PwrCmdWrite, 0x7d9d801a, mmCP_DFY_DATA_0 }, 6429 + { PwrCmdWrite, 0x041c0040, mmCP_DFY_DATA_0 }, 6430 + { PwrCmdWrite, 0x04200000, mmCP_DFY_DATA_0 }, 6431 + { PwrCmdWrite, 0x7dcdc002, mmCP_DFY_DATA_0 }, 6432 + { PwrCmdWrite, 0x7d924019, mmCP_DFY_DATA_0 }, 6433 + { PwrCmdWrite, 0x7d26400c, mmCP_DFY_DATA_0 }, 6434 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6435 + { PwrCmdWrite, 0x9a400008, mmCP_DFY_DATA_0 }, 6436 + { PwrCmdWrite, 0x51100001, mmCP_DFY_DATA_0 }, 6437 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 6438 + { PwrCmdWrite, 0x99c0fffa, mmCP_DFY_DATA_0 }, 6439 + { PwrCmdWrite, 0xc48f0230, mmCP_DFY_DATA_0 }, 6440 + { PwrCmdWrite, 0xc4930240, mmCP_DFY_DATA_0 }, 6441 + { PwrCmdWrite, 0x8c00163f, mmCP_DFY_DATA_0 }, 6442 + { PwrCmdWrite, 0x80001579, mmCP_DFY_DATA_0 }, 6443 + { PwrCmdWrite, 0x7d010021, mmCP_DFY_DATA_0 }, 6444 + { PwrCmdWrite, 0x7d914019, mmCP_DFY_DATA_0 }, 6445 + { PwrCmdWrite, 0xc4930238, mmCP_DFY_DATA_0 }, 6446 + { PwrCmdWrite, 0x55580020, mmCP_DFY_DATA_0 }, 6447 + { PwrCmdWrite, 0xcd480298, mmCP_DFY_DATA_0 }, 6448 + { PwrCmdWrite, 0xcd8802a0, mmCP_DFY_DATA_0 }, 6449 + { PwrCmdWrite, 0x10d40010, mmCP_DFY_DATA_0 }, 6450 + { PwrCmdWrite, 0x12180016, mmCP_DFY_DATA_0 }, 6451 + { PwrCmdWrite, 0xc51f0309, mmCP_DFY_DATA_0 }, 6452 + { PwrCmdWrite, 0x7d95800a, mmCP_DFY_DATA_0 }, 6453 + { PwrCmdWrite, 0x7d62000a, mmCP_DFY_DATA_0 }, 6454 + { PwrCmdWrite, 0x7dd9c00a, mmCP_DFY_DATA_0 }, 6455 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6456 + { PwrCmdWrite, 0xcdd00309, mmCP_DFY_DATA_0 }, 6457 + { PwrCmdWrite, 0xce113320, mmCP_DFY_DATA_0 }, 6458 + { PwrCmdWrite, 0xc48f02e0, mmCP_DFY_DATA_0 }, 6459 + { PwrCmdWrite, 0xc49b02b0, mmCP_DFY_DATA_0 }, 6460 + { PwrCmdWrite, 0x18dc01e8, mmCP_DFY_DATA_0 }, 6461 + { PwrCmdWrite, 0x7dd9400e, mmCP_DFY_DATA_0 }, 6462 + { PwrCmdWrite, 0xc48f0230, mmCP_DFY_DATA_0 }, 6463 + { PwrCmdWrite, 0xc4930240, mmCP_DFY_DATA_0 }, 6464 + { PwrCmdWrite, 0x95c0001d, mmCP_DFY_DATA_0 }, 6465 + { PwrCmdWrite, 0x95400003, mmCP_DFY_DATA_0 }, 6466 + { PwrCmdWrite, 0x8c00163f, mmCP_DFY_DATA_0 }, 6467 + { PwrCmdWrite, 0x800015aa, mmCP_DFY_DATA_0 }, 6468 + { PwrCmdWrite, 0xc48f0238, mmCP_DFY_DATA_0 }, 6469 + { PwrCmdWrite, 0xc4a302b8, mmCP_DFY_DATA_0 }, 6470 + { PwrCmdWrite, 0x12240004, mmCP_DFY_DATA_0 }, 6471 + { PwrCmdWrite, 0x7e5e400a, mmCP_DFY_DATA_0 }, 6472 + { PwrCmdWrite, 0xc4ab02a8, mmCP_DFY_DATA_0 }, 6473 + { PwrCmdWrite, 0x04100000, mmCP_DFY_DATA_0 }, 6474 + { PwrCmdWrite, 0xce4c0319, mmCP_DFY_DATA_0 }, 6475 + { PwrCmdWrite, 0x7d9d8002, mmCP_DFY_DATA_0 }, 6476 + { PwrCmdWrite, 0x7ea14005, mmCP_DFY_DATA_0 }, 6477 + { PwrCmdWrite, 0x25540001, mmCP_DFY_DATA_0 }, 6478 + { PwrCmdWrite, 0x99400004, mmCP_DFY_DATA_0 }, 6479 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 6480 + { PwrCmdWrite, 0x2620000f, mmCP_DFY_DATA_0 }, 6481 + { PwrCmdWrite, 0x800015bc, mmCP_DFY_DATA_0 }, 6482 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6483 + { PwrCmdWrite, 0x04240001, mmCP_DFY_DATA_0 }, 6484 + { PwrCmdWrite, 0x7e624004, mmCP_DFY_DATA_0 }, 6485 + { PwrCmdWrite, 0x06200001, mmCP_DFY_DATA_0 }, 6486 + { PwrCmdWrite, 0x7d25000a, mmCP_DFY_DATA_0 }, 6487 + { PwrCmdWrite, 0x2620000f, mmCP_DFY_DATA_0 }, 6488 + { PwrCmdWrite, 0x99c0fff4, mmCP_DFY_DATA_0 }, 6489 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6490 + { PwrCmdWrite, 0xcd0d3330, mmCP_DFY_DATA_0 }, 6491 + { PwrCmdWrite, 0xce0802b8, mmCP_DFY_DATA_0 }, 6492 + { PwrCmdWrite, 0xcd8802b0, mmCP_DFY_DATA_0 }, 6493 + { PwrCmdWrite, 0xc4ab02e0, mmCP_DFY_DATA_0 }, 6494 + { PwrCmdWrite, 0x1aa807f0, mmCP_DFY_DATA_0 }, 6495 + { PwrCmdWrite, 0xc48f02d0, mmCP_DFY_DATA_0 }, 6496 + { PwrCmdWrite, 0xc49702d8, mmCP_DFY_DATA_0 }, 6497 + { PwrCmdWrite, 0xc49b02c8, mmCP_DFY_DATA_0 }, 6498 + { PwrCmdWrite, 0xc49f02c0, mmCP_DFY_DATA_0 }, 6499 + { PwrCmdWrite, 0x96800028, mmCP_DFY_DATA_0 }, 6500 + { PwrCmdWrite, 0x7d4e000f, mmCP_DFY_DATA_0 }, 6501 + { PwrCmdWrite, 0x9600000b, mmCP_DFY_DATA_0 }, 6502 + { PwrCmdWrite, 0x7d964002, mmCP_DFY_DATA_0 }, 6503 + { PwrCmdWrite, 0x7e6a000f, mmCP_DFY_DATA_0 }, 6504 + { PwrCmdWrite, 0x96000003, mmCP_DFY_DATA_0 }, 6505 + { PwrCmdWrite, 0x7d694001, mmCP_DFY_DATA_0 }, 6506 + { PwrCmdWrite, 0x800015e9, mmCP_DFY_DATA_0 }, 6507 + { PwrCmdWrite, 0x7cde4002, mmCP_DFY_DATA_0 }, 6508 + { PwrCmdWrite, 0x7e6a000f, mmCP_DFY_DATA_0 }, 6509 + { PwrCmdWrite, 0x96000008, mmCP_DFY_DATA_0 }, 6510 + { PwrCmdWrite, 0x7de94001, mmCP_DFY_DATA_0 }, 6511 + { PwrCmdWrite, 0x800015e9, mmCP_DFY_DATA_0 }, 6512 + { PwrCmdWrite, 0x7cd64002, mmCP_DFY_DATA_0 }, 6513 + { PwrCmdWrite, 0x7e6a000e, mmCP_DFY_DATA_0 }, 6514 + { PwrCmdWrite, 0x96000003, mmCP_DFY_DATA_0 }, 6515 + { PwrCmdWrite, 0x7d694001, mmCP_DFY_DATA_0 }, 6516 + { PwrCmdWrite, 0x800015e9, mmCP_DFY_DATA_0 }, 6517 + { PwrCmdWrite, 0xc48f0230, mmCP_DFY_DATA_0 }, 6518 + { PwrCmdWrite, 0xc4930240, mmCP_DFY_DATA_0 }, 6519 + { PwrCmdWrite, 0x8c00163f, mmCP_DFY_DATA_0 }, 6520 + { PwrCmdWrite, 0x800015cd, mmCP_DFY_DATA_0 }, 6521 + { PwrCmdWrite, 0xc4930238, mmCP_DFY_DATA_0 }, 6522 + { PwrCmdWrite, 0x7d698002, mmCP_DFY_DATA_0 }, 6523 + { PwrCmdWrite, 0xcd4802d8, mmCP_DFY_DATA_0 }, 6524 + { PwrCmdWrite, 0x129c0008, mmCP_DFY_DATA_0 }, 6525 + { PwrCmdWrite, 0xc50f0319, mmCP_DFY_DATA_0 }, 6526 + { PwrCmdWrite, 0x11a0000e, mmCP_DFY_DATA_0 }, 6527 + { PwrCmdWrite, 0x11140001, mmCP_DFY_DATA_0 }, 6528 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 6529 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 6530 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6531 + { PwrCmdWrite, 0x7e1e000a, mmCP_DFY_DATA_0 }, 6532 + { PwrCmdWrite, 0x1198000a, mmCP_DFY_DATA_0 }, 6533 + { PwrCmdWrite, 0xcd953300, mmCP_DFY_DATA_0 }, 6534 + { PwrCmdWrite, 0x7e0e000a, mmCP_DFY_DATA_0 }, 6535 + { PwrCmdWrite, 0x12a8000a, mmCP_DFY_DATA_0 }, 6536 + { PwrCmdWrite, 0xce953301, mmCP_DFY_DATA_0 }, 6537 + { PwrCmdWrite, 0xce100319, mmCP_DFY_DATA_0 }, 6538 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 6539 + { PwrCmdWrite, 0xc4b70280, mmCP_DFY_DATA_0 }, 6540 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 6541 + { PwrCmdWrite, 0x7f73800a, mmCP_DFY_DATA_0 }, 6542 + { PwrCmdWrite, 0x536c0020, mmCP_DFY_DATA_0 }, 6543 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 6544 + { PwrCmdWrite, 0x9780eb68, mmCP_DFY_DATA_0 }, 6545 + { PwrCmdWrite, 0x8c001608, mmCP_DFY_DATA_0 }, 6546 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 6547 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 6548 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 6549 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 6550 + { PwrCmdWrite, 0x043c0003, mmCP_DFY_DATA_0 }, 6551 + { PwrCmdWrite, 0x80001609, mmCP_DFY_DATA_0 }, 6552 + { PwrCmdWrite, 0x043c0001, mmCP_DFY_DATA_0 }, 6553 + { PwrCmdWrite, 0x30b40000, mmCP_DFY_DATA_0 }, 6554 + { PwrCmdWrite, 0x9b400011, mmCP_DFY_DATA_0 }, 6555 + { PwrCmdWrite, 0xc4b70258, mmCP_DFY_DATA_0 }, 6556 + { PwrCmdWrite, 0xc4b30250, mmCP_DFY_DATA_0 }, 6557 + { PwrCmdWrite, 0x53780020, mmCP_DFY_DATA_0 }, 6558 + { PwrCmdWrite, 0x7fb3801a, mmCP_DFY_DATA_0 }, 6559 + { PwrCmdWrite, 0x7faf8019, mmCP_DFY_DATA_0 }, 6560 + { PwrCmdWrite, 0x04300020, mmCP_DFY_DATA_0 }, 6561 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 6562 + { PwrCmdWrite, 0x67b40001, mmCP_DFY_DATA_0 }, 6563 + { PwrCmdWrite, 0x0b300001, mmCP_DFY_DATA_0 }, 6564 + { PwrCmdWrite, 0x57b80001, mmCP_DFY_DATA_0 }, 6565 + { PwrCmdWrite, 0x97400002, mmCP_DFY_DATA_0 }, 6566 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 6567 + { PwrCmdWrite, 0x9b00fffb, mmCP_DFY_DATA_0 }, 6568 + { PwrCmdWrite, 0xc4bb0260, mmCP_DFY_DATA_0 }, 6569 + { PwrCmdWrite, 0x7fab8001, mmCP_DFY_DATA_0 }, 6570 + { PwrCmdWrite, 0xcf880260, mmCP_DFY_DATA_0 }, 6571 + { PwrCmdWrite, 0x04300020, mmCP_DFY_DATA_0 }, 6572 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 6573 + { PwrCmdWrite, 0x66f40001, mmCP_DFY_DATA_0 }, 6574 + { PwrCmdWrite, 0x0b300001, mmCP_DFY_DATA_0 }, 6575 + { PwrCmdWrite, 0x56ec0001, mmCP_DFY_DATA_0 }, 6576 + { PwrCmdWrite, 0x97400005, mmCP_DFY_DATA_0 }, 6577 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 6578 + { PwrCmdWrite, 0xc4353247, mmCP_DFY_DATA_0 }, 6579 + { PwrCmdWrite, 0x7f7f4009, mmCP_DFY_DATA_0 }, 6580 + { PwrCmdWrite, 0x9b40fffe, mmCP_DFY_DATA_0 }, 6581 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 6582 + { PwrCmdWrite, 0x9b00fff7, mmCP_DFY_DATA_0 }, 6583 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6584 + { PwrCmdWrite, 0x269c0007, mmCP_DFY_DATA_0 }, 6585 + { PwrCmdWrite, 0x11dc0008, mmCP_DFY_DATA_0 }, 6586 + { PwrCmdWrite, 0x29dc0008, mmCP_DFY_DATA_0 }, 6587 + { PwrCmdWrite, 0x26a00018, mmCP_DFY_DATA_0 }, 6588 + { PwrCmdWrite, 0x12200003, mmCP_DFY_DATA_0 }, 6589 + { PwrCmdWrite, 0x7de1c00a, mmCP_DFY_DATA_0 }, 6590 + { PwrCmdWrite, 0x26a00060, mmCP_DFY_DATA_0 }, 6591 + { PwrCmdWrite, 0x06200020, mmCP_DFY_DATA_0 }, 6592 + { PwrCmdWrite, 0x16200001, mmCP_DFY_DATA_0 }, 6593 + { PwrCmdWrite, 0x7de1c00a, mmCP_DFY_DATA_0 }, 6594 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 6595 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6596 + { PwrCmdWrite, 0x269c0018, mmCP_DFY_DATA_0 }, 6597 + { PwrCmdWrite, 0x26a00007, mmCP_DFY_DATA_0 }, 6598 + { PwrCmdWrite, 0x26a40060, mmCP_DFY_DATA_0 }, 6599 + { PwrCmdWrite, 0x11dc0006, mmCP_DFY_DATA_0 }, 6600 + { PwrCmdWrite, 0x12200006, mmCP_DFY_DATA_0 }, 6601 + { PwrCmdWrite, 0x16640001, mmCP_DFY_DATA_0 }, 6602 + { PwrCmdWrite, 0x29dc0008, mmCP_DFY_DATA_0 }, 6603 + { PwrCmdWrite, 0x7de1c00a, mmCP_DFY_DATA_0 }, 6604 + { PwrCmdWrite, 0x7de5c00a, mmCP_DFY_DATA_0 }, 6605 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 6606 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6607 + { PwrCmdWrite, 0xc4b70228, mmCP_DFY_DATA_0 }, 6608 + { PwrCmdWrite, 0x05100001, mmCP_DFY_DATA_0 }, 6609 + { PwrCmdWrite, 0x04cc0001, mmCP_DFY_DATA_0 }, 6610 + { PwrCmdWrite, 0x2510000f, mmCP_DFY_DATA_0 }, 6611 + { PwrCmdWrite, 0xccc80230, mmCP_DFY_DATA_0 }, 6612 + { PwrCmdWrite, 0x7f514005, mmCP_DFY_DATA_0 }, 6613 + { PwrCmdWrite, 0x25540001, mmCP_DFY_DATA_0 }, 6614 + { PwrCmdWrite, 0x99400004, mmCP_DFY_DATA_0 }, 6615 + { PwrCmdWrite, 0x05100001, mmCP_DFY_DATA_0 }, 6616 + { PwrCmdWrite, 0x2510000f, mmCP_DFY_DATA_0 }, 6617 + { PwrCmdWrite, 0x80001644, mmCP_DFY_DATA_0 }, 6618 + { PwrCmdWrite, 0xc4b30248, mmCP_DFY_DATA_0 }, 6619 + { PwrCmdWrite, 0xcd080240, mmCP_DFY_DATA_0 }, 6620 + { PwrCmdWrite, 0x7f130005, mmCP_DFY_DATA_0 }, 6621 + { PwrCmdWrite, 0x27300001, mmCP_DFY_DATA_0 }, 6622 + { PwrCmdWrite, 0x9b000002, mmCP_DFY_DATA_0 }, 6623 + { PwrCmdWrite, 0x8c001688, mmCP_DFY_DATA_0 }, 6624 + { PwrCmdWrite, 0x8c00120d, mmCP_DFY_DATA_0 }, 6625 + { PwrCmdWrite, 0x8c001219, mmCP_DFY_DATA_0 }, 6626 + { PwrCmdWrite, 0x8c001232, mmCP_DFY_DATA_0 }, 6627 + { PwrCmdWrite, 0x04300001, mmCP_DFY_DATA_0 }, 6628 + { PwrCmdWrite, 0x04340801, mmCP_DFY_DATA_0 }, 6629 + { PwrCmdWrite, 0x7f130004, mmCP_DFY_DATA_0 }, 6630 + { PwrCmdWrite, 0xcf400013, mmCP_DFY_DATA_0 }, 6631 + { PwrCmdWrite, 0xcf01051e, mmCP_DFY_DATA_0 }, 6632 + { PwrCmdWrite, 0xc42d051f, mmCP_DFY_DATA_0 }, 6633 + { PwrCmdWrite, 0x7ed2c005, mmCP_DFY_DATA_0 }, 6634 + { PwrCmdWrite, 0x26ec0001, mmCP_DFY_DATA_0 }, 6635 + { PwrCmdWrite, 0x96c0fffd, mmCP_DFY_DATA_0 }, 6636 + { PwrCmdWrite, 0xcf01051f, mmCP_DFY_DATA_0 }, 6637 + { PwrCmdWrite, 0xd8000055, mmCP_DFY_DATA_0 }, 6638 + { PwrCmdWrite, 0xc5170309, mmCP_DFY_DATA_0 }, 6639 + { PwrCmdWrite, 0x195c07f0, mmCP_DFY_DATA_0 }, 6640 + { PwrCmdWrite, 0x196007f6, mmCP_DFY_DATA_0 }, 6641 + { PwrCmdWrite, 0x04340000, mmCP_DFY_DATA_0 }, 6642 + { PwrCmdWrite, 0x95c00008, mmCP_DFY_DATA_0 }, 6643 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6644 + { PwrCmdWrite, 0x04340001, mmCP_DFY_DATA_0 }, 6645 + { PwrCmdWrite, 0x95c00005, mmCP_DFY_DATA_0 }, 6646 + { PwrCmdWrite, 0x09dc0001, mmCP_DFY_DATA_0 }, 6647 + { PwrCmdWrite, 0x53740001, mmCP_DFY_DATA_0 }, 6648 + { PwrCmdWrite, 0x6b740001, mmCP_DFY_DATA_0 }, 6649 + { PwrCmdWrite, 0x80001665, mmCP_DFY_DATA_0 }, 6650 + { PwrCmdWrite, 0xc4a702a0, mmCP_DFY_DATA_0 }, 6651 + { PwrCmdWrite, 0xc4ab0298, mmCP_DFY_DATA_0 }, 6652 + { PwrCmdWrite, 0x52640020, mmCP_DFY_DATA_0 }, 6653 + { PwrCmdWrite, 0x7e6a401a, mmCP_DFY_DATA_0 }, 6654 + { PwrCmdWrite, 0x7f634014, mmCP_DFY_DATA_0 }, 6655 + { PwrCmdWrite, 0x7e76401a, mmCP_DFY_DATA_0 }, 6656 + { PwrCmdWrite, 0xc4300004, mmCP_DFY_DATA_0 }, 6657 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 6658 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6659 + { PwrCmdWrite, 0x56680020, mmCP_DFY_DATA_0 }, 6660 + { PwrCmdWrite, 0xd8113320, mmCP_DFY_DATA_0 }, 6661 + { PwrCmdWrite, 0xce480298, mmCP_DFY_DATA_0 }, 6662 + { PwrCmdWrite, 0xce8802a0, mmCP_DFY_DATA_0 }, 6663 + { PwrCmdWrite, 0xc5170319, mmCP_DFY_DATA_0 }, 6664 + { PwrCmdWrite, 0xc4b702b0, mmCP_DFY_DATA_0 }, 6665 + { PwrCmdWrite, 0x255c000f, mmCP_DFY_DATA_0 }, 6666 + { PwrCmdWrite, 0x7f5f4001, mmCP_DFY_DATA_0 }, 6667 + { PwrCmdWrite, 0xd8113330, mmCP_DFY_DATA_0 }, 6668 + { PwrCmdWrite, 0xcf4802b0, mmCP_DFY_DATA_0 }, 6669 + { PwrCmdWrite, 0x11340001, mmCP_DFY_DATA_0 }, 6670 + { PwrCmdWrite, 0x195c07e8, mmCP_DFY_DATA_0 }, 6671 + { PwrCmdWrite, 0x196007ee, mmCP_DFY_DATA_0 }, 6672 + { PwrCmdWrite, 0xd8353300, mmCP_DFY_DATA_0 }, 6673 + { PwrCmdWrite, 0x7e1e4001, mmCP_DFY_DATA_0 }, 6674 + { PwrCmdWrite, 0xd8353301, mmCP_DFY_DATA_0 }, 6675 + { PwrCmdWrite, 0xce4802d0, mmCP_DFY_DATA_0 }, 6676 + { PwrCmdWrite, 0xd8100309, mmCP_DFY_DATA_0 }, 6677 + { PwrCmdWrite, 0xd8100319, mmCP_DFY_DATA_0 }, 6678 + { PwrCmdWrite, 0xcf000008, mmCP_DFY_DATA_0 }, 6679 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6680 + { PwrCmdWrite, 0xc4970258, mmCP_DFY_DATA_0 }, 6681 + { PwrCmdWrite, 0xc48f0250, mmCP_DFY_DATA_0 }, 6682 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 6683 + { PwrCmdWrite, 0x7cd4c01a, mmCP_DFY_DATA_0 }, 6684 + { PwrCmdWrite, 0xc4af0280, mmCP_DFY_DATA_0 }, 6685 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 6686 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 6687 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 6688 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 6689 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 6690 + { PwrCmdWrite, 0x64d80001, mmCP_DFY_DATA_0 }, 6691 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 6692 + { PwrCmdWrite, 0x54cc0001, mmCP_DFY_DATA_0 }, 6693 + { PwrCmdWrite, 0x95800060, mmCP_DFY_DATA_0 }, 6694 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 6695 + { PwrCmdWrite, 0xc4193247, mmCP_DFY_DATA_0 }, 6696 + { PwrCmdWrite, 0x25980001, mmCP_DFY_DATA_0 }, 6697 + { PwrCmdWrite, 0x9580005c, mmCP_DFY_DATA_0 }, 6698 + { PwrCmdWrite, 0x7dc24001, mmCP_DFY_DATA_0 }, 6699 + { PwrCmdWrite, 0xc41d3248, mmCP_DFY_DATA_0 }, 6700 + { PwrCmdWrite, 0x25dc000f, mmCP_DFY_DATA_0 }, 6701 + { PwrCmdWrite, 0x7dd2000c, mmCP_DFY_DATA_0 }, 6702 + { PwrCmdWrite, 0x96000057, mmCP_DFY_DATA_0 }, 6703 + { PwrCmdWrite, 0xc41d3255, mmCP_DFY_DATA_0 }, 6704 + { PwrCmdWrite, 0xc435324f, mmCP_DFY_DATA_0 }, 6705 + { PwrCmdWrite, 0x7df5c00c, mmCP_DFY_DATA_0 }, 6706 + { PwrCmdWrite, 0x99c00004, mmCP_DFY_DATA_0 }, 6707 + { PwrCmdWrite, 0xc4193265, mmCP_DFY_DATA_0 }, 6708 + { PwrCmdWrite, 0x25980040, mmCP_DFY_DATA_0 }, 6709 + { PwrCmdWrite, 0x9580fffe, mmCP_DFY_DATA_0 }, 6710 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 6711 + { PwrCmdWrite, 0x1bb0003f, mmCP_DFY_DATA_0 }, 6712 + { PwrCmdWrite, 0x97000049, mmCP_DFY_DATA_0 }, 6713 + { PwrCmdWrite, 0x1bb000e8, mmCP_DFY_DATA_0 }, 6714 + { PwrCmdWrite, 0x33380003, mmCP_DFY_DATA_0 }, 6715 + { PwrCmdWrite, 0x9b800046, mmCP_DFY_DATA_0 }, 6716 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 6717 + { PwrCmdWrite, 0x9700000a, mmCP_DFY_DATA_0 }, 6718 + { PwrCmdWrite, 0xc4393260, mmCP_DFY_DATA_0 }, 6719 + { PwrCmdWrite, 0x1bb000e4, mmCP_DFY_DATA_0 }, 6720 + { PwrCmdWrite, 0x33300004, mmCP_DFY_DATA_0 }, 6721 + { PwrCmdWrite, 0x97000040, mmCP_DFY_DATA_0 }, 6722 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 6723 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 6724 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 6725 + { PwrCmdWrite, 0x800016f1, mmCP_DFY_DATA_0 }, 6726 + { PwrCmdWrite, 0xce400013, mmCP_DFY_DATA_0 }, 6727 + { PwrCmdWrite, 0xc033ffff, mmCP_DFY_DATA_0 }, 6728 + { PwrCmdWrite, 0x2f3000ff, mmCP_DFY_DATA_0 }, 6729 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 6730 + { PwrCmdWrite, 0x7f3b0009, mmCP_DFY_DATA_0 }, 6731 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 6732 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 6733 + { PwrCmdWrite, 0x27b800ff, mmCP_DFY_DATA_0 }, 6734 + { PwrCmdWrite, 0x9b80fffe, mmCP_DFY_DATA_0 }, 6735 + { PwrCmdWrite, 0xd8c00033, mmCP_DFY_DATA_0 }, 6736 + { PwrCmdWrite, 0xc4300009, mmCP_DFY_DATA_0 }, 6737 + { PwrCmdWrite, 0x27300008, mmCP_DFY_DATA_0 }, 6738 + { PwrCmdWrite, 0x9700fffe, mmCP_DFY_DATA_0 }, 6739 + { PwrCmdWrite, 0x1a7003e6, mmCP_DFY_DATA_0 }, 6740 + { PwrCmdWrite, 0x27380003, mmCP_DFY_DATA_0 }, 6741 + { PwrCmdWrite, 0x13b80004, mmCP_DFY_DATA_0 }, 6742 + { PwrCmdWrite, 0x27300003, mmCP_DFY_DATA_0 }, 6743 + { PwrCmdWrite, 0x13300003, mmCP_DFY_DATA_0 }, 6744 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 6745 + { PwrCmdWrite, 0x1a7000e8, mmCP_DFY_DATA_0 }, 6746 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 6747 + { PwrCmdWrite, 0x13300001, mmCP_DFY_DATA_0 }, 6748 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 6749 + { PwrCmdWrite, 0x07b80002, mmCP_DFY_DATA_0 }, 6750 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6751 + { PwrCmdWrite, 0x1a700064, mmCP_DFY_DATA_0 }, 6752 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 6753 + { PwrCmdWrite, 0x97000009, mmCP_DFY_DATA_0 }, 6754 + { PwrCmdWrite, 0x17b00005, mmCP_DFY_DATA_0 }, 6755 + { PwrCmdWrite, 0x07300003, mmCP_DFY_DATA_0 }, 6756 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 6757 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 6758 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6759 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 6760 + { PwrCmdWrite, 0x0b300003, mmCP_DFY_DATA_0 }, 6761 + { PwrCmdWrite, 0x800016df, mmCP_DFY_DATA_0 }, 6762 + { PwrCmdWrite, 0x17b00005, mmCP_DFY_DATA_0 }, 6763 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 6764 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 6765 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6766 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 6767 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 6768 + { PwrCmdWrite, 0x7fb30002, mmCP_DFY_DATA_0 }, 6769 + { PwrCmdWrite, 0xc4392083, mmCP_DFY_DATA_0 }, 6770 + { PwrCmdWrite, 0x7fb38005, mmCP_DFY_DATA_0 }, 6771 + { PwrCmdWrite, 0x27b80001, mmCP_DFY_DATA_0 }, 6772 + { PwrCmdWrite, 0x9b80ffdf, mmCP_DFY_DATA_0 }, 6773 + { PwrCmdWrite, 0xd8c00034, mmCP_DFY_DATA_0 }, 6774 + { PwrCmdWrite, 0xce400013, mmCP_DFY_DATA_0 }, 6775 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 6776 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 6777 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 6778 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 6779 + { PwrCmdWrite, 0x27b000ff, mmCP_DFY_DATA_0 }, 6780 + { PwrCmdWrite, 0x9b00ffca, mmCP_DFY_DATA_0 }, 6781 + { PwrCmdWrite, 0xd841325d, mmCP_DFY_DATA_0 }, 6782 + { PwrCmdWrite, 0x2030007b, mmCP_DFY_DATA_0 }, 6783 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 6784 + { PwrCmdWrite, 0x800016f2, mmCP_DFY_DATA_0 }, 6785 + { PwrCmdWrite, 0xd841325d, mmCP_DFY_DATA_0 }, 6786 + { PwrCmdWrite, 0x04300001, mmCP_DFY_DATA_0 }, 6787 + { PwrCmdWrite, 0x7f2b0014, mmCP_DFY_DATA_0 }, 6788 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 6789 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 6790 + { PwrCmdWrite, 0x9940ff9c, mmCP_DFY_DATA_0 }, 6791 + { PwrCmdWrite, 0x8c001608, mmCP_DFY_DATA_0 }, 6792 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 6793 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 6794 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6795 + { PwrCmdWrite, 0xd840004f, mmCP_DFY_DATA_0 }, 6796 + { PwrCmdWrite, 0xc414000e, mmCP_DFY_DATA_0 }, 6797 + { PwrCmdWrite, 0x29540008, mmCP_DFY_DATA_0 }, 6798 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 6799 + { PwrCmdWrite, 0xc43d3265, mmCP_DFY_DATA_0 }, 6800 + { PwrCmdWrite, 0x1bc800ea, mmCP_DFY_DATA_0 }, 6801 + { PwrCmdWrite, 0xd80802e9, mmCP_DFY_DATA_0 }, 6802 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 6803 + { PwrCmdWrite, 0x18fc0064, mmCP_DFY_DATA_0 }, 6804 + { PwrCmdWrite, 0x9bc00042, mmCP_DFY_DATA_0 }, 6805 + { PwrCmdWrite, 0xc4193246, mmCP_DFY_DATA_0 }, 6806 + { PwrCmdWrite, 0xc41d3245, mmCP_DFY_DATA_0 }, 6807 + { PwrCmdWrite, 0x51980020, mmCP_DFY_DATA_0 }, 6808 + { PwrCmdWrite, 0x7dd9801a, mmCP_DFY_DATA_0 }, 6809 + { PwrCmdWrite, 0x45980400, mmCP_DFY_DATA_0 }, 6810 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 6811 + { PwrCmdWrite, 0x043c3000, mmCP_DFY_DATA_0 }, 6812 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 6813 + { PwrCmdWrite, 0xc43d3267, mmCP_DFY_DATA_0 }, 6814 + { PwrCmdWrite, 0x9bc00001, mmCP_DFY_DATA_0 }, 6815 + { PwrCmdWrite, 0x1b380057, mmCP_DFY_DATA_0 }, 6816 + { PwrCmdWrite, 0x1b340213, mmCP_DFY_DATA_0 }, 6817 + { PwrCmdWrite, 0x1b300199, mmCP_DFY_DATA_0 }, 6818 + { PwrCmdWrite, 0x7f7b400a, mmCP_DFY_DATA_0 }, 6819 + { PwrCmdWrite, 0x7f73400a, mmCP_DFY_DATA_0 }, 6820 + { PwrCmdWrite, 0xcf400024, mmCP_DFY_DATA_0 }, 6821 + { PwrCmdWrite, 0x14f4001d, mmCP_DFY_DATA_0 }, 6822 + { PwrCmdWrite, 0xc4bf02e9, mmCP_DFY_DATA_0 }, 6823 + { PwrCmdWrite, 0x9bc0001c, mmCP_DFY_DATA_0 }, 6824 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 6825 + { PwrCmdWrite, 0x192807fa, mmCP_DFY_DATA_0 }, 6826 + { PwrCmdWrite, 0xc4bf0258, mmCP_DFY_DATA_0 }, 6827 + { PwrCmdWrite, 0xc4a70250, mmCP_DFY_DATA_0 }, 6828 + { PwrCmdWrite, 0x53fc0020, mmCP_DFY_DATA_0 }, 6829 + { PwrCmdWrite, 0x7e7e401a, mmCP_DFY_DATA_0 }, 6830 + { PwrCmdWrite, 0x042c0000, mmCP_DFY_DATA_0 }, 6831 + { PwrCmdWrite, 0x04300000, mmCP_DFY_DATA_0 }, 6832 + { PwrCmdWrite, 0x667c0001, mmCP_DFY_DATA_0 }, 6833 + { PwrCmdWrite, 0x56640001, mmCP_DFY_DATA_0 }, 6834 + { PwrCmdWrite, 0x06ec0001, mmCP_DFY_DATA_0 }, 6835 + { PwrCmdWrite, 0x97c0fffd, mmCP_DFY_DATA_0 }, 6836 + { PwrCmdWrite, 0x07300001, mmCP_DFY_DATA_0 }, 6837 + { PwrCmdWrite, 0x0aec0001, mmCP_DFY_DATA_0 }, 6838 + { PwrCmdWrite, 0x7eebc00c, mmCP_DFY_DATA_0 }, 6839 + { PwrCmdWrite, 0x06ec0001, mmCP_DFY_DATA_0 }, 6840 + { PwrCmdWrite, 0x97c0fff8, mmCP_DFY_DATA_0 }, 6841 + { PwrCmdWrite, 0x0b300001, mmCP_DFY_DATA_0 }, 6842 + { PwrCmdWrite, 0x43300007, mmCP_DFY_DATA_0 }, 6843 + { PwrCmdWrite, 0x53300002, mmCP_DFY_DATA_0 }, 6844 + { PwrCmdWrite, 0x7db30011, mmCP_DFY_DATA_0 }, 6845 + { PwrCmdWrite, 0xd3000025, mmCP_DFY_DATA_0 }, 6846 + { PwrCmdWrite, 0xc03ec005, mmCP_DFY_DATA_0 }, 6847 + { PwrCmdWrite, 0x2bfca200, mmCP_DFY_DATA_0 }, 6848 + { PwrCmdWrite, 0xcfc00026, mmCP_DFY_DATA_0 }, 6849 + { PwrCmdWrite, 0xccc00026, mmCP_DFY_DATA_0 }, 6850 + { PwrCmdWrite, 0xcd000026, mmCP_DFY_DATA_0 }, 6851 + { PwrCmdWrite, 0x192807fa, mmCP_DFY_DATA_0 }, 6852 + { PwrCmdWrite, 0xc01f007f, mmCP_DFY_DATA_0 }, 6853 + { PwrCmdWrite, 0x7d1d0009, mmCP_DFY_DATA_0 }, 6854 + { PwrCmdWrite, 0x2110007d, mmCP_DFY_DATA_0 }, 6855 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 6856 + { PwrCmdWrite, 0x203c003f, mmCP_DFY_DATA_0 }, 6857 + { PwrCmdWrite, 0xcfc13256, mmCP_DFY_DATA_0 }, 6858 + { PwrCmdWrite, 0x8c0017f5, mmCP_DFY_DATA_0 }, 6859 + { PwrCmdWrite, 0xcd013254, mmCP_DFY_DATA_0 }, 6860 + { PwrCmdWrite, 0x18fc01e8, mmCP_DFY_DATA_0 }, 6861 + { PwrCmdWrite, 0xcfc13248, mmCP_DFY_DATA_0 }, 6862 + { PwrCmdWrite, 0x8c00185b, mmCP_DFY_DATA_0 }, 6863 + { PwrCmdWrite, 0xd8413247, mmCP_DFY_DATA_0 }, 6864 + { PwrCmdWrite, 0x0b740001, mmCP_DFY_DATA_0 }, 6865 + { PwrCmdWrite, 0x9b40ffd5, mmCP_DFY_DATA_0 }, 6866 + { PwrCmdWrite, 0xd800004f, mmCP_DFY_DATA_0 }, 6867 + { PwrCmdWrite, 0xc4bf02e9, mmCP_DFY_DATA_0 }, 6868 + { PwrCmdWrite, 0x97c0ea24, mmCP_DFY_DATA_0 }, 6869 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 6870 + { PwrCmdWrite, 0x14d4001d, mmCP_DFY_DATA_0 }, 6871 + { PwrCmdWrite, 0xc4930260, mmCP_DFY_DATA_0 }, 6872 + { PwrCmdWrite, 0x7d52400e, mmCP_DFY_DATA_0 }, 6873 + { PwrCmdWrite, 0xc49f0258, mmCP_DFY_DATA_0 }, 6874 + { PwrCmdWrite, 0xc4a30250, mmCP_DFY_DATA_0 }, 6875 + { PwrCmdWrite, 0x51dc0020, mmCP_DFY_DATA_0 }, 6876 + { PwrCmdWrite, 0x7de1801a, mmCP_DFY_DATA_0 }, 6877 + { PwrCmdWrite, 0x96400017, mmCP_DFY_DATA_0 }, 6878 + { PwrCmdWrite, 0x7d534002, mmCP_DFY_DATA_0 }, 6879 + { PwrCmdWrite, 0xc4af0270, mmCP_DFY_DATA_0 }, 6880 + { PwrCmdWrite, 0x7dae4005, mmCP_DFY_DATA_0 }, 6881 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 6882 + { PwrCmdWrite, 0x32e0001f, mmCP_DFY_DATA_0 }, 6883 + { PwrCmdWrite, 0x9a400006, mmCP_DFY_DATA_0 }, 6884 + { PwrCmdWrite, 0x06ec0001, mmCP_DFY_DATA_0 }, 6885 + { PwrCmdWrite, 0x96000002, mmCP_DFY_DATA_0 }, 6886 + { PwrCmdWrite, 0x042c0000, mmCP_DFY_DATA_0 }, 6887 + { PwrCmdWrite, 0xcec80270, mmCP_DFY_DATA_0 }, 6888 + { PwrCmdWrite, 0x8000174f, mmCP_DFY_DATA_0 }, 6889 + { PwrCmdWrite, 0x0b740001, mmCP_DFY_DATA_0 }, 6890 + { PwrCmdWrite, 0x8c00178a, mmCP_DFY_DATA_0 }, 6891 + { PwrCmdWrite, 0x05100001, mmCP_DFY_DATA_0 }, 6892 + { PwrCmdWrite, 0x9b40fff3, mmCP_DFY_DATA_0 }, 6893 + { PwrCmdWrite, 0xc4af0280, mmCP_DFY_DATA_0 }, 6894 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 6895 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 6896 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 6897 + { PwrCmdWrite, 0x8c001608, mmCP_DFY_DATA_0 }, 6898 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 6899 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 6900 + { PwrCmdWrite, 0xc4ab0268, mmCP_DFY_DATA_0 }, 6901 + { PwrCmdWrite, 0x7daa4005, mmCP_DFY_DATA_0 }, 6902 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 6903 + { PwrCmdWrite, 0x32a0001f, mmCP_DFY_DATA_0 }, 6904 + { PwrCmdWrite, 0x9a400005, mmCP_DFY_DATA_0 }, 6905 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 6906 + { PwrCmdWrite, 0x96000002, mmCP_DFY_DATA_0 }, 6907 + { PwrCmdWrite, 0x24280000, mmCP_DFY_DATA_0 }, 6908 + { PwrCmdWrite, 0x80001765, mmCP_DFY_DATA_0 }, 6909 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 6910 + { PwrCmdWrite, 0xc01f007f, mmCP_DFY_DATA_0 }, 6911 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 6912 + { PwrCmdWrite, 0x7d1d0009, mmCP_DFY_DATA_0 }, 6913 + { PwrCmdWrite, 0x2110007d, mmCP_DFY_DATA_0 }, 6914 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 6915 + { PwrCmdWrite, 0xd8013256, mmCP_DFY_DATA_0 }, 6916 + { PwrCmdWrite, 0x8c0017f2, mmCP_DFY_DATA_0 }, 6917 + { PwrCmdWrite, 0xcd013254, mmCP_DFY_DATA_0 }, 6918 + { PwrCmdWrite, 0xc4113248, mmCP_DFY_DATA_0 }, 6919 + { PwrCmdWrite, 0x15100004, mmCP_DFY_DATA_0 }, 6920 + { PwrCmdWrite, 0x11100004, mmCP_DFY_DATA_0 }, 6921 + { PwrCmdWrite, 0xc4b3034b, mmCP_DFY_DATA_0 }, 6922 + { PwrCmdWrite, 0x7f13000a, mmCP_DFY_DATA_0 }, 6923 + { PwrCmdWrite, 0xcf013248, mmCP_DFY_DATA_0 }, 6924 + { PwrCmdWrite, 0xc4930260, mmCP_DFY_DATA_0 }, 6925 + { PwrCmdWrite, 0x8c001855, mmCP_DFY_DATA_0 }, 6926 + { PwrCmdWrite, 0x32a4001f, mmCP_DFY_DATA_0 }, 6927 + { PwrCmdWrite, 0xd8413247, mmCP_DFY_DATA_0 }, 6928 + { PwrCmdWrite, 0xd800004f, mmCP_DFY_DATA_0 }, 6929 + { PwrCmdWrite, 0x09100001, mmCP_DFY_DATA_0 }, 6930 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 6931 + { PwrCmdWrite, 0x96400002, mmCP_DFY_DATA_0 }, 6932 + { PwrCmdWrite, 0x24280000, mmCP_DFY_DATA_0 }, 6933 + { PwrCmdWrite, 0xcd080260, mmCP_DFY_DATA_0 }, 6934 + { PwrCmdWrite, 0xce880268, mmCP_DFY_DATA_0 }, 6935 + { PwrCmdWrite, 0x9940ffc0, mmCP_DFY_DATA_0 }, 6936 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 6937 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 6938 + { PwrCmdWrite, 0x7ec28001, mmCP_DFY_DATA_0 }, 6939 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 6940 + { PwrCmdWrite, 0x32e0001f, mmCP_DFY_DATA_0 }, 6941 + { PwrCmdWrite, 0xc4253247, mmCP_DFY_DATA_0 }, 6942 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 6943 + { PwrCmdWrite, 0x9640005e, mmCP_DFY_DATA_0 }, 6944 + { PwrCmdWrite, 0xc4293265, mmCP_DFY_DATA_0 }, 6945 + { PwrCmdWrite, 0xc4253255, mmCP_DFY_DATA_0 }, 6946 + { PwrCmdWrite, 0xc431324f, mmCP_DFY_DATA_0 }, 6947 + { PwrCmdWrite, 0x7e72400c, mmCP_DFY_DATA_0 }, 6948 + { PwrCmdWrite, 0x26a80040, mmCP_DFY_DATA_0 }, 6949 + { PwrCmdWrite, 0x9a400002, mmCP_DFY_DATA_0 }, 6950 + { PwrCmdWrite, 0x9680fff7, mmCP_DFY_DATA_0 }, 6951 + { PwrCmdWrite, 0xc429325b, mmCP_DFY_DATA_0 }, 6952 + { PwrCmdWrite, 0x1aa4003f, mmCP_DFY_DATA_0 }, 6953 + { PwrCmdWrite, 0x96400049, mmCP_DFY_DATA_0 }, 6954 + { PwrCmdWrite, 0x1aa400e8, mmCP_DFY_DATA_0 }, 6955 + { PwrCmdWrite, 0x32680003, mmCP_DFY_DATA_0 }, 6956 + { PwrCmdWrite, 0x9a800046, mmCP_DFY_DATA_0 }, 6957 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 6958 + { PwrCmdWrite, 0x9640000a, mmCP_DFY_DATA_0 }, 6959 + { PwrCmdWrite, 0xc4293260, mmCP_DFY_DATA_0 }, 6960 + { PwrCmdWrite, 0x1aa400e4, mmCP_DFY_DATA_0 }, 6961 + { PwrCmdWrite, 0x32640004, mmCP_DFY_DATA_0 }, 6962 + { PwrCmdWrite, 0x96400040, mmCP_DFY_DATA_0 }, 6963 + { PwrCmdWrite, 0xc425325d, mmCP_DFY_DATA_0 }, 6964 + { PwrCmdWrite, 0x26640010, mmCP_DFY_DATA_0 }, 6965 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 6966 + { PwrCmdWrite, 0x800017e2, mmCP_DFY_DATA_0 }, 6967 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 6968 + { PwrCmdWrite, 0xc027ffff, mmCP_DFY_DATA_0 }, 6969 + { PwrCmdWrite, 0x2e6400ff, mmCP_DFY_DATA_0 }, 6970 + { PwrCmdWrite, 0xc429325b, mmCP_DFY_DATA_0 }, 6971 + { PwrCmdWrite, 0x7e6a4009, mmCP_DFY_DATA_0 }, 6972 + { PwrCmdWrite, 0xce41325b, mmCP_DFY_DATA_0 }, 6973 + { PwrCmdWrite, 0xc429325b, mmCP_DFY_DATA_0 }, 6974 + { PwrCmdWrite, 0x26a800ff, mmCP_DFY_DATA_0 }, 6975 + { PwrCmdWrite, 0x9a80fffe, mmCP_DFY_DATA_0 }, 6976 + { PwrCmdWrite, 0xd8c00033, mmCP_DFY_DATA_0 }, 6977 + { PwrCmdWrite, 0xc4240009, mmCP_DFY_DATA_0 }, 6978 + { PwrCmdWrite, 0x26640008, mmCP_DFY_DATA_0 }, 6979 + { PwrCmdWrite, 0x9640fffe, mmCP_DFY_DATA_0 }, 6980 + { PwrCmdWrite, 0x19e403e6, mmCP_DFY_DATA_0 }, 6981 + { PwrCmdWrite, 0x26680003, mmCP_DFY_DATA_0 }, 6982 + { PwrCmdWrite, 0x12a80004, mmCP_DFY_DATA_0 }, 6983 + { PwrCmdWrite, 0x26640003, mmCP_DFY_DATA_0 }, 6984 + { PwrCmdWrite, 0x12640003, mmCP_DFY_DATA_0 }, 6985 + { PwrCmdWrite, 0x7ea68001, mmCP_DFY_DATA_0 }, 6986 + { PwrCmdWrite, 0x19e400e8, mmCP_DFY_DATA_0 }, 6987 + { PwrCmdWrite, 0x7ea68001, mmCP_DFY_DATA_0 }, 6988 + { PwrCmdWrite, 0x12640001, mmCP_DFY_DATA_0 }, 6989 + { PwrCmdWrite, 0x7ea68001, mmCP_DFY_DATA_0 }, 6990 + { PwrCmdWrite, 0x06a80002, mmCP_DFY_DATA_0 }, 6991 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 6992 + { PwrCmdWrite, 0x19e40064, mmCP_DFY_DATA_0 }, 6993 + { PwrCmdWrite, 0x32640002, mmCP_DFY_DATA_0 }, 6994 + { PwrCmdWrite, 0x96400009, mmCP_DFY_DATA_0 }, 6995 + { PwrCmdWrite, 0x16a40005, mmCP_DFY_DATA_0 }, 6996 + { PwrCmdWrite, 0x06640003, mmCP_DFY_DATA_0 }, 6997 + { PwrCmdWrite, 0xce412082, mmCP_DFY_DATA_0 }, 6998 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 6999 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7000 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7001 + { PwrCmdWrite, 0x0a640003, mmCP_DFY_DATA_0 }, 7002 + { PwrCmdWrite, 0x800017d0, mmCP_DFY_DATA_0 }, 7003 + { PwrCmdWrite, 0x16a40005, mmCP_DFY_DATA_0 }, 7004 + { PwrCmdWrite, 0xce412082, mmCP_DFY_DATA_0 }, 7005 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7006 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7007 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7008 + { PwrCmdWrite, 0x12640005, mmCP_DFY_DATA_0 }, 7009 + { PwrCmdWrite, 0x7ea64002, mmCP_DFY_DATA_0 }, 7010 + { PwrCmdWrite, 0xc4292083, mmCP_DFY_DATA_0 }, 7011 + { PwrCmdWrite, 0x7ea68005, mmCP_DFY_DATA_0 }, 7012 + { PwrCmdWrite, 0x26a80001, mmCP_DFY_DATA_0 }, 7013 + { PwrCmdWrite, 0x9a80ffdf, mmCP_DFY_DATA_0 }, 7014 + { PwrCmdWrite, 0xd8c00034, mmCP_DFY_DATA_0 }, 7015 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7016 + { PwrCmdWrite, 0xc425325d, mmCP_DFY_DATA_0 }, 7017 + { PwrCmdWrite, 0x26640010, mmCP_DFY_DATA_0 }, 7018 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 7019 + { PwrCmdWrite, 0xc429325b, mmCP_DFY_DATA_0 }, 7020 + { PwrCmdWrite, 0x26a400ff, mmCP_DFY_DATA_0 }, 7021 + { PwrCmdWrite, 0x9a40ffca, mmCP_DFY_DATA_0 }, 7022 + { PwrCmdWrite, 0xd841325d, mmCP_DFY_DATA_0 }, 7023 + { PwrCmdWrite, 0x2024007b, mmCP_DFY_DATA_0 }, 7024 + { PwrCmdWrite, 0xce41325b, mmCP_DFY_DATA_0 }, 7025 + { PwrCmdWrite, 0x800017e3, mmCP_DFY_DATA_0 }, 7026 + { PwrCmdWrite, 0xd841325d, mmCP_DFY_DATA_0 }, 7027 + { PwrCmdWrite, 0xc4a70280, mmCP_DFY_DATA_0 }, 7028 + { PwrCmdWrite, 0xc4ab0278, mmCP_DFY_DATA_0 }, 7029 + { PwrCmdWrite, 0x52640020, mmCP_DFY_DATA_0 }, 7030 + { PwrCmdWrite, 0x7e6a401a, mmCP_DFY_DATA_0 }, 7031 + { PwrCmdWrite, 0x04280001, mmCP_DFY_DATA_0 }, 7032 + { PwrCmdWrite, 0x7eae8014, mmCP_DFY_DATA_0 }, 7033 + { PwrCmdWrite, 0x7e6a401a, mmCP_DFY_DATA_0 }, 7034 + { PwrCmdWrite, 0x56680020, mmCP_DFY_DATA_0 }, 7035 + { PwrCmdWrite, 0xce480278, mmCP_DFY_DATA_0 }, 7036 + { PwrCmdWrite, 0xce880280, mmCP_DFY_DATA_0 }, 7037 + { PwrCmdWrite, 0x06ec0001, mmCP_DFY_DATA_0 }, 7038 + { PwrCmdWrite, 0x96000002, mmCP_DFY_DATA_0 }, 7039 + { PwrCmdWrite, 0x042c0000, mmCP_DFY_DATA_0 }, 7040 + { PwrCmdWrite, 0xcec80270, mmCP_DFY_DATA_0 }, 7041 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 7042 + { PwrCmdWrite, 0x7c438001, mmCP_DFY_DATA_0 }, 7043 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 7044 + { PwrCmdWrite, 0x800017fe, mmCP_DFY_DATA_0 }, 7045 + { PwrCmdWrite, 0xc4bf02e9, mmCP_DFY_DATA_0 }, 7046 + { PwrCmdWrite, 0x9bc00006, mmCP_DFY_DATA_0 }, 7047 + { PwrCmdWrite, 0x7c438001, mmCP_DFY_DATA_0 }, 7048 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 7049 + { PwrCmdWrite, 0xcf800026, mmCP_DFY_DATA_0 }, 7050 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 7051 + { PwrCmdWrite, 0x800017fe, mmCP_DFY_DATA_0 }, 7052 + { PwrCmdWrite, 0xc43b02eb, mmCP_DFY_DATA_0 }, 7053 + { PwrCmdWrite, 0xc42302ec, mmCP_DFY_DATA_0 }, 7054 + { PwrCmdWrite, 0xcf813245, mmCP_DFY_DATA_0 }, 7055 + { PwrCmdWrite, 0xce013246, mmCP_DFY_DATA_0 }, 7056 + { PwrCmdWrite, 0x52200020, mmCP_DFY_DATA_0 }, 7057 + { PwrCmdWrite, 0x7fa3801a, mmCP_DFY_DATA_0 }, 7058 + { PwrCmdWrite, 0x47b8020c, mmCP_DFY_DATA_0 }, 7059 + { PwrCmdWrite, 0x15e00008, mmCP_DFY_DATA_0 }, 7060 + { PwrCmdWrite, 0x1220000a, mmCP_DFY_DATA_0 }, 7061 + { PwrCmdWrite, 0x2a206032, mmCP_DFY_DATA_0 }, 7062 + { PwrCmdWrite, 0x513c001e, mmCP_DFY_DATA_0 }, 7063 + { PwrCmdWrite, 0x7e3e001a, mmCP_DFY_DATA_0 }, 7064 + { PwrCmdWrite, 0xc4bf02e9, mmCP_DFY_DATA_0 }, 7065 + { PwrCmdWrite, 0x9bc00005, mmCP_DFY_DATA_0 }, 7066 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 7067 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 7068 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 7069 + { PwrCmdWrite, 0x8000180f, mmCP_DFY_DATA_0 }, 7070 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 7071 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 7072 + { PwrCmdWrite, 0x1b3c0077, mmCP_DFY_DATA_0 }, 7073 + { PwrCmdWrite, 0x1b300199, mmCP_DFY_DATA_0 }, 7074 + { PwrCmdWrite, 0x7ff3000a, mmCP_DFY_DATA_0 }, 7075 + { PwrCmdWrite, 0x1330000a, mmCP_DFY_DATA_0 }, 7076 + { PwrCmdWrite, 0x2b300032, mmCP_DFY_DATA_0 }, 7077 + { PwrCmdWrite, 0x043c3000, mmCP_DFY_DATA_0 }, 7078 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 7079 + { PwrCmdWrite, 0xc43d3267, mmCP_DFY_DATA_0 }, 7080 + { PwrCmdWrite, 0xd200000b, mmCP_DFY_DATA_0 }, 7081 + { PwrCmdWrite, 0xc4200007, mmCP_DFY_DATA_0 }, 7082 + { PwrCmdWrite, 0xd3800002, mmCP_DFY_DATA_0 }, 7083 + { PwrCmdWrite, 0xcf000002, mmCP_DFY_DATA_0 }, 7084 + { PwrCmdWrite, 0xd8000040, mmCP_DFY_DATA_0 }, 7085 + { PwrCmdWrite, 0x96000002, mmCP_DFY_DATA_0 }, 7086 + { PwrCmdWrite, 0xd8400040, mmCP_DFY_DATA_0 }, 7087 + { PwrCmdWrite, 0xd8400018, mmCP_DFY_DATA_0 }, 7088 + { PwrCmdWrite, 0x043c2000, mmCP_DFY_DATA_0 }, 7089 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 7090 + { PwrCmdWrite, 0xd8000018, mmCP_DFY_DATA_0 }, 7091 + { PwrCmdWrite, 0xd8800010, mmCP_DFY_DATA_0 }, 7092 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7093 + { PwrCmdWrite, 0x7dc30001, mmCP_DFY_DATA_0 }, 7094 + { PwrCmdWrite, 0xdc1e0000, mmCP_DFY_DATA_0 }, 7095 + { PwrCmdWrite, 0x04380032, mmCP_DFY_DATA_0 }, 7096 + { PwrCmdWrite, 0xcf80000e, mmCP_DFY_DATA_0 }, 7097 + { PwrCmdWrite, 0x8c001427, mmCP_DFY_DATA_0 }, 7098 + { PwrCmdWrite, 0xcc413248, mmCP_DFY_DATA_0 }, 7099 + { PwrCmdWrite, 0xc43d3269, mmCP_DFY_DATA_0 }, 7100 + { PwrCmdWrite, 0x27fc000f, mmCP_DFY_DATA_0 }, 7101 + { PwrCmdWrite, 0x33fc0003, mmCP_DFY_DATA_0 }, 7102 + { PwrCmdWrite, 0x97c00011, mmCP_DFY_DATA_0 }, 7103 + { PwrCmdWrite, 0x043c001f, mmCP_DFY_DATA_0 }, 7104 + { PwrCmdWrite, 0xdfc30000, mmCP_DFY_DATA_0 }, 7105 + { PwrCmdWrite, 0xd4413249, mmCP_DFY_DATA_0 }, 7106 + { PwrCmdWrite, 0x7c43c001, mmCP_DFY_DATA_0 }, 7107 + { PwrCmdWrite, 0x7c43c001, mmCP_DFY_DATA_0 }, 7108 + { PwrCmdWrite, 0x043c0024, mmCP_DFY_DATA_0 }, 7109 + { PwrCmdWrite, 0x0bfc0021, mmCP_DFY_DATA_0 }, 7110 + { PwrCmdWrite, 0xdfc30000, mmCP_DFY_DATA_0 }, 7111 + { PwrCmdWrite, 0xd441326a, mmCP_DFY_DATA_0 }, 7112 + { PwrCmdWrite, 0x173c0008, mmCP_DFY_DATA_0 }, 7113 + { PwrCmdWrite, 0x1b300303, mmCP_DFY_DATA_0 }, 7114 + { PwrCmdWrite, 0x7f3f0001, mmCP_DFY_DATA_0 }, 7115 + { PwrCmdWrite, 0x043c0001, mmCP_DFY_DATA_0 }, 7116 + { PwrCmdWrite, 0x7ff3c004, mmCP_DFY_DATA_0 }, 7117 + { PwrCmdWrite, 0xcfc13084, mmCP_DFY_DATA_0 }, 7118 + { PwrCmdWrite, 0x80001842, mmCP_DFY_DATA_0 }, 7119 + { PwrCmdWrite, 0x043c0024, mmCP_DFY_DATA_0 }, 7120 + { PwrCmdWrite, 0xdfc30000, mmCP_DFY_DATA_0 }, 7121 + { PwrCmdWrite, 0xd4413249, mmCP_DFY_DATA_0 }, 7122 + { PwrCmdWrite, 0x7c43c001, mmCP_DFY_DATA_0 }, 7123 + { PwrCmdWrite, 0x23fc003f, mmCP_DFY_DATA_0 }, 7124 + { PwrCmdWrite, 0xcfc1326d, mmCP_DFY_DATA_0 }, 7125 + { PwrCmdWrite, 0x0bb80026, mmCP_DFY_DATA_0 }, 7126 + { PwrCmdWrite, 0xdf830000, mmCP_DFY_DATA_0 }, 7127 + { PwrCmdWrite, 0xd441326e, mmCP_DFY_DATA_0 }, 7128 + { PwrCmdWrite, 0x7c438001, mmCP_DFY_DATA_0 }, 7129 + { PwrCmdWrite, 0x7c438001, mmCP_DFY_DATA_0 }, 7130 + { PwrCmdWrite, 0xc4393265, mmCP_DFY_DATA_0 }, 7131 + { PwrCmdWrite, 0x1fb8ffc6, mmCP_DFY_DATA_0 }, 7132 + { PwrCmdWrite, 0xddc30000, mmCP_DFY_DATA_0 }, 7133 + { PwrCmdWrite, 0xcf813265, mmCP_DFY_DATA_0 }, 7134 + { PwrCmdWrite, 0x9a000003, mmCP_DFY_DATA_0 }, 7135 + { PwrCmdWrite, 0xcdc0000c, mmCP_DFY_DATA_0 }, 7136 + { PwrCmdWrite, 0x80001852, mmCP_DFY_DATA_0 }, 7137 + { PwrCmdWrite, 0xcdc0000d, mmCP_DFY_DATA_0 }, 7138 + { PwrCmdWrite, 0xce000010, mmCP_DFY_DATA_0 }, 7139 + { PwrCmdWrite, 0x8c00142b, mmCP_DFY_DATA_0 }, 7140 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 7141 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 7142 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 7143 + { PwrCmdWrite, 0xcdc13252, mmCP_DFY_DATA_0 }, 7144 + { PwrCmdWrite, 0xce013253, mmCP_DFY_DATA_0 }, 7145 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7146 + { PwrCmdWrite, 0x80001878, mmCP_DFY_DATA_0 }, 7147 + { PwrCmdWrite, 0xc49f02e9, mmCP_DFY_DATA_0 }, 7148 + { PwrCmdWrite, 0x99c00018, mmCP_DFY_DATA_0 }, 7149 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 7150 + { PwrCmdWrite, 0x7c420001, mmCP_DFY_DATA_0 }, 7151 + { PwrCmdWrite, 0xcdc13252, mmCP_DFY_DATA_0 }, 7152 + { PwrCmdWrite, 0xce013253, mmCP_DFY_DATA_0 }, 7153 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 7154 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 7155 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 7156 + { PwrCmdWrite, 0x043c3000, mmCP_DFY_DATA_0 }, 7157 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 7158 + { PwrCmdWrite, 0xc43d3267, mmCP_DFY_DATA_0 }, 7159 + { PwrCmdWrite, 0x97c0ffff, mmCP_DFY_DATA_0 }, 7160 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 7161 + { PwrCmdWrite, 0xce000026, mmCP_DFY_DATA_0 }, 7162 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 7163 + { PwrCmdWrite, 0xc41c0012, mmCP_DFY_DATA_0 }, 7164 + { PwrCmdWrite, 0x99c0ffff, mmCP_DFY_DATA_0 }, 7165 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 7166 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 7167 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 7168 + { PwrCmdWrite, 0x043c2000, mmCP_DFY_DATA_0 }, 7169 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 7170 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7171 + { PwrCmdWrite, 0x80001878, mmCP_DFY_DATA_0 }, 7172 + { PwrCmdWrite, 0xc41f02ed, mmCP_DFY_DATA_0 }, 7173 + { PwrCmdWrite, 0xc42302ee, mmCP_DFY_DATA_0 }, 7174 + { PwrCmdWrite, 0xcdc13252, mmCP_DFY_DATA_0 }, 7175 + { PwrCmdWrite, 0xce013253, mmCP_DFY_DATA_0 }, 7176 + { PwrCmdWrite, 0x04200001, mmCP_DFY_DATA_0 }, 7177 + { PwrCmdWrite, 0x7e2a0004, mmCP_DFY_DATA_0 }, 7178 + { PwrCmdWrite, 0xce013084, mmCP_DFY_DATA_0 }, 7179 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 7180 + { PwrCmdWrite, 0x28340001, mmCP_DFY_DATA_0 }, 7181 + { PwrCmdWrite, 0x313c0bcc, mmCP_DFY_DATA_0 }, 7182 + { PwrCmdWrite, 0x9bc00010, mmCP_DFY_DATA_0 }, 7183 + { PwrCmdWrite, 0x393c051f, mmCP_DFY_DATA_0 }, 7184 + { PwrCmdWrite, 0x9bc00004, mmCP_DFY_DATA_0 }, 7185 + { PwrCmdWrite, 0x3d3c050e, mmCP_DFY_DATA_0 }, 7186 + { PwrCmdWrite, 0x9bc0000c, mmCP_DFY_DATA_0 }, 7187 + { PwrCmdWrite, 0x97c0000c, mmCP_DFY_DATA_0 }, 7188 + { PwrCmdWrite, 0x393c0560, mmCP_DFY_DATA_0 }, 7189 + { PwrCmdWrite, 0x9bc00004, mmCP_DFY_DATA_0 }, 7190 + { PwrCmdWrite, 0x3d3c054f, mmCP_DFY_DATA_0 }, 7191 + { PwrCmdWrite, 0x9bc00007, mmCP_DFY_DATA_0 }, 7192 + { PwrCmdWrite, 0x97c00007, mmCP_DFY_DATA_0 }, 7193 + { PwrCmdWrite, 0x393c1538, mmCP_DFY_DATA_0 }, 7194 + { PwrCmdWrite, 0x9bc00005, mmCP_DFY_DATA_0 }, 7195 + { PwrCmdWrite, 0x3d3c1537, mmCP_DFY_DATA_0 }, 7196 + { PwrCmdWrite, 0x9bc00002, mmCP_DFY_DATA_0 }, 7197 + { PwrCmdWrite, 0x97c00002, mmCP_DFY_DATA_0 }, 7198 + { PwrCmdWrite, 0x2b740800, mmCP_DFY_DATA_0 }, 7199 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 7200 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 7201 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 7202 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 7203 + { PwrCmdWrite, 0xc43d3265, mmCP_DFY_DATA_0 }, 7204 + { PwrCmdWrite, 0x1bc800ea, mmCP_DFY_DATA_0 }, 7205 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 7206 + { PwrCmdWrite, 0x18e8007c, mmCP_DFY_DATA_0 }, 7207 + { PwrCmdWrite, 0x7c42c001, mmCP_DFY_DATA_0 }, 7208 + { PwrCmdWrite, 0x06a8189a, mmCP_DFY_DATA_0 }, 7209 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 7210 + { PwrCmdWrite, 0x8000189e, mmCP_DFY_DATA_0 }, 7211 + { PwrCmdWrite, 0x800018c5, mmCP_DFY_DATA_0 }, 7212 + { PwrCmdWrite, 0x800018f2, mmCP_DFY_DATA_0 }, 7213 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 7214 + { PwrCmdWrite, 0x7c414001, mmCP_DFY_DATA_0 }, 7215 + { PwrCmdWrite, 0x18d0007e, mmCP_DFY_DATA_0 }, 7216 + { PwrCmdWrite, 0x50580020, mmCP_DFY_DATA_0 }, 7217 + { PwrCmdWrite, 0x09200001, mmCP_DFY_DATA_0 }, 7218 + { PwrCmdWrite, 0x7d59401a, mmCP_DFY_DATA_0 }, 7219 + { PwrCmdWrite, 0xd1400072, mmCP_DFY_DATA_0 }, 7220 + { PwrCmdWrite, 0xc8140072, mmCP_DFY_DATA_0 }, 7221 + { PwrCmdWrite, 0x09240002, mmCP_DFY_DATA_0 }, 7222 + { PwrCmdWrite, 0x7c418001, mmCP_DFY_DATA_0 }, 7223 + { PwrCmdWrite, 0x7c41c001, mmCP_DFY_DATA_0 }, 7224 + { PwrCmdWrite, 0x99000011, mmCP_DFY_DATA_0 }, 7225 + { PwrCmdWrite, 0xc4340004, mmCP_DFY_DATA_0 }, 7226 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7227 + { PwrCmdWrite, 0xd8400008, mmCP_DFY_DATA_0 }, 7228 + { PwrCmdWrite, 0xc42130b5, mmCP_DFY_DATA_0 }, 7229 + { PwrCmdWrite, 0x1a24002c, mmCP_DFY_DATA_0 }, 7230 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 7231 + { PwrCmdWrite, 0x2020002c, mmCP_DFY_DATA_0 }, 7232 + { PwrCmdWrite, 0xc418000d, mmCP_DFY_DATA_0 }, 7233 + { PwrCmdWrite, 0x1198001c, mmCP_DFY_DATA_0 }, 7234 + { PwrCmdWrite, 0x10cc0004, mmCP_DFY_DATA_0 }, 7235 + { PwrCmdWrite, 0x14cc0004, mmCP_DFY_DATA_0 }, 7236 + { PwrCmdWrite, 0x7cd8c00a, mmCP_DFY_DATA_0 }, 7237 + { PwrCmdWrite, 0xccc130b7, mmCP_DFY_DATA_0 }, 7238 + { PwrCmdWrite, 0xce0130b5, mmCP_DFY_DATA_0 }, 7239 + { PwrCmdWrite, 0xcf400008, mmCP_DFY_DATA_0 }, 7240 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 7241 + { PwrCmdWrite, 0xd1400025, mmCP_DFY_DATA_0 }, 7242 + { PwrCmdWrite, 0x5978073a, mmCP_DFY_DATA_0 }, 7243 + { PwrCmdWrite, 0x2bb80002, mmCP_DFY_DATA_0 }, 7244 + { PwrCmdWrite, 0xcf800024, mmCP_DFY_DATA_0 }, 7245 + { PwrCmdWrite, 0xcd800026, mmCP_DFY_DATA_0 }, 7246 + { PwrCmdWrite, 0xcdc00026, mmCP_DFY_DATA_0 }, 7247 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 7248 + { PwrCmdWrite, 0x9600e8a8, mmCP_DFY_DATA_0 }, 7249 + { PwrCmdWrite, 0xc4300012, mmCP_DFY_DATA_0 }, 7250 + { PwrCmdWrite, 0x9b00ffff, mmCP_DFY_DATA_0 }, 7251 + { PwrCmdWrite, 0x9640e8a5, mmCP_DFY_DATA_0 }, 7252 + { PwrCmdWrite, 0x800018a9, mmCP_DFY_DATA_0 }, 7253 + { PwrCmdWrite, 0x04140000, mmCP_DFY_DATA_0 }, 7254 + { PwrCmdWrite, 0xc55b0309, mmCP_DFY_DATA_0 }, 7255 + { PwrCmdWrite, 0x3d5c0010, mmCP_DFY_DATA_0 }, 7256 + { PwrCmdWrite, 0x05540001, mmCP_DFY_DATA_0 }, 7257 + { PwrCmdWrite, 0x2598ffff, mmCP_DFY_DATA_0 }, 7258 + { PwrCmdWrite, 0x09780001, mmCP_DFY_DATA_0 }, 7259 + { PwrCmdWrite, 0x7dad800c, mmCP_DFY_DATA_0 }, 7260 + { PwrCmdWrite, 0x99c0ffd2, mmCP_DFY_DATA_0 }, 7261 + { PwrCmdWrite, 0x9580fff9, mmCP_DFY_DATA_0 }, 7262 + { PwrCmdWrite, 0xc4970258, mmCP_DFY_DATA_0 }, 7263 + { PwrCmdWrite, 0xc4930250, mmCP_DFY_DATA_0 }, 7264 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 7265 + { PwrCmdWrite, 0x7d15001a, mmCP_DFY_DATA_0 }, 7266 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 7267 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 7268 + { PwrCmdWrite, 0x442c0000, mmCP_DFY_DATA_0 }, 7269 + { PwrCmdWrite, 0x65180001, mmCP_DFY_DATA_0 }, 7270 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7271 + { PwrCmdWrite, 0x55100001, mmCP_DFY_DATA_0 }, 7272 + { PwrCmdWrite, 0x9580000b, mmCP_DFY_DATA_0 }, 7273 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7274 + { PwrCmdWrite, 0xc41d3248, mmCP_DFY_DATA_0 }, 7275 + { PwrCmdWrite, 0x04300001, mmCP_DFY_DATA_0 }, 7276 + { PwrCmdWrite, 0x7f2b0014, mmCP_DFY_DATA_0 }, 7277 + { PwrCmdWrite, 0x25dc000f, mmCP_DFY_DATA_0 }, 7278 + { PwrCmdWrite, 0x7df9c00c, mmCP_DFY_DATA_0 }, 7279 + { PwrCmdWrite, 0x95c00004, mmCP_DFY_DATA_0 }, 7280 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7281 + { PwrCmdWrite, 0xd8c13260, mmCP_DFY_DATA_0 }, 7282 + { PwrCmdWrite, 0xd901325d, mmCP_DFY_DATA_0 }, 7283 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 7284 + { PwrCmdWrite, 0x9940fff1, mmCP_DFY_DATA_0 }, 7285 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 7286 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 7287 + { PwrCmdWrite, 0x66d80001, mmCP_DFY_DATA_0 }, 7288 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7289 + { PwrCmdWrite, 0x56ec0001, mmCP_DFY_DATA_0 }, 7290 + { PwrCmdWrite, 0x95800005, mmCP_DFY_DATA_0 }, 7291 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7292 + { PwrCmdWrite, 0xc421325d, mmCP_DFY_DATA_0 }, 7293 + { PwrCmdWrite, 0x26240007, mmCP_DFY_DATA_0 }, 7294 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 7295 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 7296 + { PwrCmdWrite, 0x9940fff7, mmCP_DFY_DATA_0 }, 7297 + { PwrCmdWrite, 0x8000189e, mmCP_DFY_DATA_0 }, 7298 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 7299 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 7300 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7301 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7302 + { PwrCmdWrite, 0xc41d3254, mmCP_DFY_DATA_0 }, 7303 + { PwrCmdWrite, 0xc023007f, mmCP_DFY_DATA_0 }, 7304 + { PwrCmdWrite, 0x19e4003e, mmCP_DFY_DATA_0 }, 7305 + { PwrCmdWrite, 0x7de1c009, mmCP_DFY_DATA_0 }, 7306 + { PwrCmdWrite, 0x7dee000c, mmCP_DFY_DATA_0 }, 7307 + { PwrCmdWrite, 0x96400008, mmCP_DFY_DATA_0 }, 7308 + { PwrCmdWrite, 0x96000007, mmCP_DFY_DATA_0 }, 7309 + { PwrCmdWrite, 0xd8c13260, mmCP_DFY_DATA_0 }, 7310 + { PwrCmdWrite, 0xd901325d, mmCP_DFY_DATA_0 }, 7311 + { PwrCmdWrite, 0xc421325d, mmCP_DFY_DATA_0 }, 7312 + { PwrCmdWrite, 0x261c0007, mmCP_DFY_DATA_0 }, 7313 + { PwrCmdWrite, 0x99c0fffe, mmCP_DFY_DATA_0 }, 7314 + { PwrCmdWrite, 0x8000189e, mmCP_DFY_DATA_0 }, 7315 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 7316 + { PwrCmdWrite, 0x9940fff0, mmCP_DFY_DATA_0 }, 7317 + { PwrCmdWrite, 0x8000189e, mmCP_DFY_DATA_0 }, 7318 + { PwrCmdWrite, 0xc40c000e, mmCP_DFY_DATA_0 }, 7319 + { PwrCmdWrite, 0x28cc0008, mmCP_DFY_DATA_0 }, 7320 + { PwrCmdWrite, 0xccc00013, mmCP_DFY_DATA_0 }, 7321 + { PwrCmdWrite, 0xc43d3265, mmCP_DFY_DATA_0 }, 7322 + { PwrCmdWrite, 0x1bc800ea, mmCP_DFY_DATA_0 }, 7323 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 7324 + { PwrCmdWrite, 0x18e00064, mmCP_DFY_DATA_0 }, 7325 + { PwrCmdWrite, 0x06281911, mmCP_DFY_DATA_0 }, 7326 + { PwrCmdWrite, 0x14f4001d, mmCP_DFY_DATA_0 }, 7327 + { PwrCmdWrite, 0x24cc0003, mmCP_DFY_DATA_0 }, 7328 + { PwrCmdWrite, 0x86800000, mmCP_DFY_DATA_0 }, 7329 + { PwrCmdWrite, 0x80001915, mmCP_DFY_DATA_0 }, 7330 + { PwrCmdWrite, 0x800019af, mmCP_DFY_DATA_0 }, 7331 + { PwrCmdWrite, 0x80001a2b, mmCP_DFY_DATA_0 }, 7332 + { PwrCmdWrite, 0x8000016a, mmCP_DFY_DATA_0 }, 7333 + { PwrCmdWrite, 0xcc48032b, mmCP_DFY_DATA_0 }, 7334 + { PwrCmdWrite, 0xcc480333, mmCP_DFY_DATA_0 }, 7335 + { PwrCmdWrite, 0xcc48033b, mmCP_DFY_DATA_0 }, 7336 + { PwrCmdWrite, 0xcc480343, mmCP_DFY_DATA_0 }, 7337 + { PwrCmdWrite, 0x98800011, mmCP_DFY_DATA_0 }, 7338 + { PwrCmdWrite, 0xc4213246, mmCP_DFY_DATA_0 }, 7339 + { PwrCmdWrite, 0xc4253245, mmCP_DFY_DATA_0 }, 7340 + { PwrCmdWrite, 0x52200020, mmCP_DFY_DATA_0 }, 7341 + { PwrCmdWrite, 0x7e26401a, mmCP_DFY_DATA_0 }, 7342 + { PwrCmdWrite, 0x46640400, mmCP_DFY_DATA_0 }, 7343 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 7344 + { PwrCmdWrite, 0x04203000, mmCP_DFY_DATA_0 }, 7345 + { PwrCmdWrite, 0xce013267, mmCP_DFY_DATA_0 }, 7346 + { PwrCmdWrite, 0xc4213267, mmCP_DFY_DATA_0 }, 7347 + { PwrCmdWrite, 0x9a000001, mmCP_DFY_DATA_0 }, 7348 + { PwrCmdWrite, 0x1b3c0057, mmCP_DFY_DATA_0 }, 7349 + { PwrCmdWrite, 0x1b200213, mmCP_DFY_DATA_0 }, 7350 + { PwrCmdWrite, 0x1b300199, mmCP_DFY_DATA_0 }, 7351 + { PwrCmdWrite, 0x7e3e000a, mmCP_DFY_DATA_0 }, 7352 + { PwrCmdWrite, 0x7e32000a, mmCP_DFY_DATA_0 }, 7353 + { PwrCmdWrite, 0xce000024, mmCP_DFY_DATA_0 }, 7354 + { PwrCmdWrite, 0xc4970258, mmCP_DFY_DATA_0 }, 7355 + { PwrCmdWrite, 0xc4930250, mmCP_DFY_DATA_0 }, 7356 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 7357 + { PwrCmdWrite, 0x7d15001a, mmCP_DFY_DATA_0 }, 7358 + { PwrCmdWrite, 0xc4af0280, mmCP_DFY_DATA_0 }, 7359 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 7360 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 7361 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7362 + { PwrCmdWrite, 0x04180000, mmCP_DFY_DATA_0 }, 7363 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 7364 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 7365 + { PwrCmdWrite, 0x7f438001, mmCP_DFY_DATA_0 }, 7366 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7367 + { PwrCmdWrite, 0xc41d3247, mmCP_DFY_DATA_0 }, 7368 + { PwrCmdWrite, 0x25dc0001, mmCP_DFY_DATA_0 }, 7369 + { PwrCmdWrite, 0x95c00068, mmCP_DFY_DATA_0 }, 7370 + { PwrCmdWrite, 0xc4213254, mmCP_DFY_DATA_0 }, 7371 + { PwrCmdWrite, 0x1a1c003e, mmCP_DFY_DATA_0 }, 7372 + { PwrCmdWrite, 0x95c00065, mmCP_DFY_DATA_0 }, 7373 + { PwrCmdWrite, 0xc01f007f, mmCP_DFY_DATA_0 }, 7374 + { PwrCmdWrite, 0x7e1e0009, mmCP_DFY_DATA_0 }, 7375 + { PwrCmdWrite, 0x97800062, mmCP_DFY_DATA_0 }, 7376 + { PwrCmdWrite, 0x0bb80001, mmCP_DFY_DATA_0 }, 7377 + { PwrCmdWrite, 0x43bc0008, mmCP_DFY_DATA_0 }, 7378 + { PwrCmdWrite, 0x7fcbc001, mmCP_DFY_DATA_0 }, 7379 + { PwrCmdWrite, 0xc7df032b, mmCP_DFY_DATA_0 }, 7380 + { PwrCmdWrite, 0x7e1fc00c, mmCP_DFY_DATA_0 }, 7381 + { PwrCmdWrite, 0x97c0fffa, mmCP_DFY_DATA_0 }, 7382 + { PwrCmdWrite, 0x043c0101, mmCP_DFY_DATA_0 }, 7383 + { PwrCmdWrite, 0x94c00002, mmCP_DFY_DATA_0 }, 7384 + { PwrCmdWrite, 0x043c0102, mmCP_DFY_DATA_0 }, 7385 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7386 + { PwrCmdWrite, 0x1bb0003f, mmCP_DFY_DATA_0 }, 7387 + { PwrCmdWrite, 0x97000049, mmCP_DFY_DATA_0 }, 7388 + { PwrCmdWrite, 0x1bb000e8, mmCP_DFY_DATA_0 }, 7389 + { PwrCmdWrite, 0x33380003, mmCP_DFY_DATA_0 }, 7390 + { PwrCmdWrite, 0x9b800046, mmCP_DFY_DATA_0 }, 7391 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 7392 + { PwrCmdWrite, 0x97000009, mmCP_DFY_DATA_0 }, 7393 + { PwrCmdWrite, 0xc4393260, mmCP_DFY_DATA_0 }, 7394 + { PwrCmdWrite, 0x1bb000e4, mmCP_DFY_DATA_0 }, 7395 + { PwrCmdWrite, 0x33300004, mmCP_DFY_DATA_0 }, 7396 + { PwrCmdWrite, 0x97000040, mmCP_DFY_DATA_0 }, 7397 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 7398 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 7399 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 7400 + { PwrCmdWrite, 0x80001994, mmCP_DFY_DATA_0 }, 7401 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7402 + { PwrCmdWrite, 0xc033ffff, mmCP_DFY_DATA_0 }, 7403 + { PwrCmdWrite, 0x2f3000ff, mmCP_DFY_DATA_0 }, 7404 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7405 + { PwrCmdWrite, 0x7f3b0009, mmCP_DFY_DATA_0 }, 7406 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 7407 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7408 + { PwrCmdWrite, 0x27b800ff, mmCP_DFY_DATA_0 }, 7409 + { PwrCmdWrite, 0x9b80fffe, mmCP_DFY_DATA_0 }, 7410 + { PwrCmdWrite, 0xd8c00033, mmCP_DFY_DATA_0 }, 7411 + { PwrCmdWrite, 0xc4300009, mmCP_DFY_DATA_0 }, 7412 + { PwrCmdWrite, 0x27300008, mmCP_DFY_DATA_0 }, 7413 + { PwrCmdWrite, 0x9700fffe, mmCP_DFY_DATA_0 }, 7414 + { PwrCmdWrite, 0x19f003e6, mmCP_DFY_DATA_0 }, 7415 + { PwrCmdWrite, 0x27380003, mmCP_DFY_DATA_0 }, 7416 + { PwrCmdWrite, 0x13b80004, mmCP_DFY_DATA_0 }, 7417 + { PwrCmdWrite, 0x27300003, mmCP_DFY_DATA_0 }, 7418 + { PwrCmdWrite, 0x13300003, mmCP_DFY_DATA_0 }, 7419 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 7420 + { PwrCmdWrite, 0x19f000e8, mmCP_DFY_DATA_0 }, 7421 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 7422 + { PwrCmdWrite, 0x13300001, mmCP_DFY_DATA_0 }, 7423 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 7424 + { PwrCmdWrite, 0x07b80002, mmCP_DFY_DATA_0 }, 7425 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7426 + { PwrCmdWrite, 0x19f00064, mmCP_DFY_DATA_0 }, 7427 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 7428 + { PwrCmdWrite, 0x97000009, mmCP_DFY_DATA_0 }, 7429 + { PwrCmdWrite, 0x17b00005, mmCP_DFY_DATA_0 }, 7430 + { PwrCmdWrite, 0x07300003, mmCP_DFY_DATA_0 }, 7431 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 7432 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7433 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7434 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7435 + { PwrCmdWrite, 0x0b300003, mmCP_DFY_DATA_0 }, 7436 + { PwrCmdWrite, 0x80001982, mmCP_DFY_DATA_0 }, 7437 + { PwrCmdWrite, 0x17b00005, mmCP_DFY_DATA_0 }, 7438 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 7439 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7440 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7441 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7442 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 7443 + { PwrCmdWrite, 0x7fb30002, mmCP_DFY_DATA_0 }, 7444 + { PwrCmdWrite, 0xc4392083, mmCP_DFY_DATA_0 }, 7445 + { PwrCmdWrite, 0x7fb38005, mmCP_DFY_DATA_0 }, 7446 + { PwrCmdWrite, 0x27b80001, mmCP_DFY_DATA_0 }, 7447 + { PwrCmdWrite, 0x9b80ffdf, mmCP_DFY_DATA_0 }, 7448 + { PwrCmdWrite, 0xd8c00034, mmCP_DFY_DATA_0 }, 7449 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7450 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 7451 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 7452 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 7453 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7454 + { PwrCmdWrite, 0x27b000ff, mmCP_DFY_DATA_0 }, 7455 + { PwrCmdWrite, 0x9b00ffcb, mmCP_DFY_DATA_0 }, 7456 + { PwrCmdWrite, 0xcfc1325d, mmCP_DFY_DATA_0 }, 7457 + { PwrCmdWrite, 0x2030007b, mmCP_DFY_DATA_0 }, 7458 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 7459 + { PwrCmdWrite, 0x80001995, mmCP_DFY_DATA_0 }, 7460 + { PwrCmdWrite, 0xcfc1325d, mmCP_DFY_DATA_0 }, 7461 + { PwrCmdWrite, 0x04300001, mmCP_DFY_DATA_0 }, 7462 + { PwrCmdWrite, 0x7f2b0014, mmCP_DFY_DATA_0 }, 7463 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7464 + { PwrCmdWrite, 0x98800009, mmCP_DFY_DATA_0 }, 7465 + { PwrCmdWrite, 0x41bc0007, mmCP_DFY_DATA_0 }, 7466 + { PwrCmdWrite, 0x53fc0002, mmCP_DFY_DATA_0 }, 7467 + { PwrCmdWrite, 0x7e7fc011, mmCP_DFY_DATA_0 }, 7468 + { PwrCmdWrite, 0xd3c00025, mmCP_DFY_DATA_0 }, 7469 + { PwrCmdWrite, 0xd8000026, mmCP_DFY_DATA_0 }, 7470 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 7471 + { PwrCmdWrite, 0xc43c0012, mmCP_DFY_DATA_0 }, 7472 + { PwrCmdWrite, 0x9bc0ffff, mmCP_DFY_DATA_0 }, 7473 + { PwrCmdWrite, 0x653c0001, mmCP_DFY_DATA_0 }, 7474 + { PwrCmdWrite, 0x7dbd8001, mmCP_DFY_DATA_0 }, 7475 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 7476 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7477 + { PwrCmdWrite, 0x55100001, mmCP_DFY_DATA_0 }, 7478 + { PwrCmdWrite, 0x9940ff8f, mmCP_DFY_DATA_0 }, 7479 + { PwrCmdWrite, 0xc43c000e, mmCP_DFY_DATA_0 }, 7480 + { PwrCmdWrite, 0x2bfc0008, mmCP_DFY_DATA_0 }, 7481 + { PwrCmdWrite, 0xcfc00013, mmCP_DFY_DATA_0 }, 7482 + { PwrCmdWrite, 0x043c2000, mmCP_DFY_DATA_0 }, 7483 + { PwrCmdWrite, 0xcfc13267, mmCP_DFY_DATA_0 }, 7484 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 7485 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 7486 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 7487 + { PwrCmdWrite, 0x7c410001, mmCP_DFY_DATA_0 }, 7488 + { PwrCmdWrite, 0x04140000, mmCP_DFY_DATA_0 }, 7489 + { PwrCmdWrite, 0xc55b0309, mmCP_DFY_DATA_0 }, 7490 + { PwrCmdWrite, 0x3d5c0010, mmCP_DFY_DATA_0 }, 7491 + { PwrCmdWrite, 0x2598ffff, mmCP_DFY_DATA_0 }, 7492 + { PwrCmdWrite, 0x05540001, mmCP_DFY_DATA_0 }, 7493 + { PwrCmdWrite, 0x7d91800c, mmCP_DFY_DATA_0 }, 7494 + { PwrCmdWrite, 0x95c00003, mmCP_DFY_DATA_0 }, 7495 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 7496 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 7497 + { PwrCmdWrite, 0x9580fff8, mmCP_DFY_DATA_0 }, 7498 + { PwrCmdWrite, 0x09780001, mmCP_DFY_DATA_0 }, 7499 + { PwrCmdWrite, 0xc4970258, mmCP_DFY_DATA_0 }, 7500 + { PwrCmdWrite, 0xc4930250, mmCP_DFY_DATA_0 }, 7501 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 7502 + { PwrCmdWrite, 0x7d15001a, mmCP_DFY_DATA_0 }, 7503 + { PwrCmdWrite, 0xc4af0280, mmCP_DFY_DATA_0 }, 7504 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 7505 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 7506 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7507 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 7508 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 7509 + { PwrCmdWrite, 0x65180001, mmCP_DFY_DATA_0 }, 7510 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7511 + { PwrCmdWrite, 0x55100001, mmCP_DFY_DATA_0 }, 7512 + { PwrCmdWrite, 0x9580005d, mmCP_DFY_DATA_0 }, 7513 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7514 + { PwrCmdWrite, 0xc4253247, mmCP_DFY_DATA_0 }, 7515 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 7516 + { PwrCmdWrite, 0x04200101, mmCP_DFY_DATA_0 }, 7517 + { PwrCmdWrite, 0x96400058, mmCP_DFY_DATA_0 }, 7518 + { PwrCmdWrite, 0x7dc24001, mmCP_DFY_DATA_0 }, 7519 + { PwrCmdWrite, 0xc41d3248, mmCP_DFY_DATA_0 }, 7520 + { PwrCmdWrite, 0x25dc000f, mmCP_DFY_DATA_0 }, 7521 + { PwrCmdWrite, 0x7df9c00c, mmCP_DFY_DATA_0 }, 7522 + { PwrCmdWrite, 0x95c00053, mmCP_DFY_DATA_0 }, 7523 + { PwrCmdWrite, 0x94c00002, mmCP_DFY_DATA_0 }, 7524 + { PwrCmdWrite, 0x04200102, mmCP_DFY_DATA_0 }, 7525 + { PwrCmdWrite, 0x7e41c001, mmCP_DFY_DATA_0 }, 7526 + { PwrCmdWrite, 0xc425325b, mmCP_DFY_DATA_0 }, 7527 + { PwrCmdWrite, 0x1a70003f, mmCP_DFY_DATA_0 }, 7528 + { PwrCmdWrite, 0x97000049, mmCP_DFY_DATA_0 }, 7529 + { PwrCmdWrite, 0x1a7000e8, mmCP_DFY_DATA_0 }, 7530 + { PwrCmdWrite, 0x33240003, mmCP_DFY_DATA_0 }, 7531 + { PwrCmdWrite, 0x9a400046, mmCP_DFY_DATA_0 }, 7532 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 7533 + { PwrCmdWrite, 0x9700000a, mmCP_DFY_DATA_0 }, 7534 + { PwrCmdWrite, 0xc4253260, mmCP_DFY_DATA_0 }, 7535 + { PwrCmdWrite, 0x1a7000e4, mmCP_DFY_DATA_0 }, 7536 + { PwrCmdWrite, 0x33300004, mmCP_DFY_DATA_0 }, 7537 + { PwrCmdWrite, 0x97000040, mmCP_DFY_DATA_0 }, 7538 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 7539 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 7540 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 7541 + { PwrCmdWrite, 0x80001a21, mmCP_DFY_DATA_0 }, 7542 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7543 + { PwrCmdWrite, 0xc033ffff, mmCP_DFY_DATA_0 }, 7544 + { PwrCmdWrite, 0x2f3000ff, mmCP_DFY_DATA_0 }, 7545 + { PwrCmdWrite, 0xc425325b, mmCP_DFY_DATA_0 }, 7546 + { PwrCmdWrite, 0x7f270009, mmCP_DFY_DATA_0 }, 7547 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 7548 + { PwrCmdWrite, 0xc425325b, mmCP_DFY_DATA_0 }, 7549 + { PwrCmdWrite, 0x266400ff, mmCP_DFY_DATA_0 }, 7550 + { PwrCmdWrite, 0x9a40fffe, mmCP_DFY_DATA_0 }, 7551 + { PwrCmdWrite, 0xd8c00033, mmCP_DFY_DATA_0 }, 7552 + { PwrCmdWrite, 0xc4300009, mmCP_DFY_DATA_0 }, 7553 + { PwrCmdWrite, 0x27300008, mmCP_DFY_DATA_0 }, 7554 + { PwrCmdWrite, 0x9700fffe, mmCP_DFY_DATA_0 }, 7555 + { PwrCmdWrite, 0x19f003e6, mmCP_DFY_DATA_0 }, 7556 + { PwrCmdWrite, 0x27240003, mmCP_DFY_DATA_0 }, 7557 + { PwrCmdWrite, 0x12640004, mmCP_DFY_DATA_0 }, 7558 + { PwrCmdWrite, 0x27300003, mmCP_DFY_DATA_0 }, 7559 + { PwrCmdWrite, 0x13300003, mmCP_DFY_DATA_0 }, 7560 + { PwrCmdWrite, 0x7e724001, mmCP_DFY_DATA_0 }, 7561 + { PwrCmdWrite, 0x19f000e8, mmCP_DFY_DATA_0 }, 7562 + { PwrCmdWrite, 0x7e724001, mmCP_DFY_DATA_0 }, 7563 + { PwrCmdWrite, 0x13300001, mmCP_DFY_DATA_0 }, 7564 + { PwrCmdWrite, 0x7e724001, mmCP_DFY_DATA_0 }, 7565 + { PwrCmdWrite, 0x06640002, mmCP_DFY_DATA_0 }, 7566 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7567 + { PwrCmdWrite, 0x19f00064, mmCP_DFY_DATA_0 }, 7568 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 7569 + { PwrCmdWrite, 0x97000009, mmCP_DFY_DATA_0 }, 7570 + { PwrCmdWrite, 0x16700005, mmCP_DFY_DATA_0 }, 7571 + { PwrCmdWrite, 0x07300003, mmCP_DFY_DATA_0 }, 7572 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 7573 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7574 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7575 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7576 + { PwrCmdWrite, 0x0b300003, mmCP_DFY_DATA_0 }, 7577 + { PwrCmdWrite, 0x80001a0f, mmCP_DFY_DATA_0 }, 7578 + { PwrCmdWrite, 0x16700005, mmCP_DFY_DATA_0 }, 7579 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 7580 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7581 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7582 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7583 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 7584 + { PwrCmdWrite, 0x7e730002, mmCP_DFY_DATA_0 }, 7585 + { PwrCmdWrite, 0xc4252083, mmCP_DFY_DATA_0 }, 7586 + { PwrCmdWrite, 0x7e724005, mmCP_DFY_DATA_0 }, 7587 + { PwrCmdWrite, 0x26640001, mmCP_DFY_DATA_0 }, 7588 + { PwrCmdWrite, 0x9a40ffdf, mmCP_DFY_DATA_0 }, 7589 + { PwrCmdWrite, 0xd8c00034, mmCP_DFY_DATA_0 }, 7590 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7591 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 7592 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 7593 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 7594 + { PwrCmdWrite, 0xc425325b, mmCP_DFY_DATA_0 }, 7595 + { PwrCmdWrite, 0x267000ff, mmCP_DFY_DATA_0 }, 7596 + { PwrCmdWrite, 0x9b00ffca, mmCP_DFY_DATA_0 }, 7597 + { PwrCmdWrite, 0xce01325d, mmCP_DFY_DATA_0 }, 7598 + { PwrCmdWrite, 0x2030007b, mmCP_DFY_DATA_0 }, 7599 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 7600 + { PwrCmdWrite, 0x80001a22, mmCP_DFY_DATA_0 }, 7601 + { PwrCmdWrite, 0xce01325d, mmCP_DFY_DATA_0 }, 7602 + { PwrCmdWrite, 0x04300001, mmCP_DFY_DATA_0 }, 7603 + { PwrCmdWrite, 0x7f2b0014, mmCP_DFY_DATA_0 }, 7604 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7605 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 7606 + { PwrCmdWrite, 0x9940ff9f, mmCP_DFY_DATA_0 }, 7607 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 7608 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 7609 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 7610 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 7611 + { PwrCmdWrite, 0x8c001a31, mmCP_DFY_DATA_0 }, 7612 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 7613 + { PwrCmdWrite, 0xd8080278, mmCP_DFY_DATA_0 }, 7614 + { PwrCmdWrite, 0xd8080280, mmCP_DFY_DATA_0 }, 7615 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 7616 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 7617 + { PwrCmdWrite, 0xc4213246, mmCP_DFY_DATA_0 }, 7618 + { PwrCmdWrite, 0xc4253245, mmCP_DFY_DATA_0 }, 7619 + { PwrCmdWrite, 0x52200020, mmCP_DFY_DATA_0 }, 7620 + { PwrCmdWrite, 0x7e26401a, mmCP_DFY_DATA_0 }, 7621 + { PwrCmdWrite, 0x46640400, mmCP_DFY_DATA_0 }, 7622 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 7623 + { PwrCmdWrite, 0x04203000, mmCP_DFY_DATA_0 }, 7624 + { PwrCmdWrite, 0xce013267, mmCP_DFY_DATA_0 }, 7625 + { PwrCmdWrite, 0xc4213267, mmCP_DFY_DATA_0 }, 7626 + { PwrCmdWrite, 0x9a000001, mmCP_DFY_DATA_0 }, 7627 + { PwrCmdWrite, 0x1b180057, mmCP_DFY_DATA_0 }, 7628 + { PwrCmdWrite, 0x1b200213, mmCP_DFY_DATA_0 }, 7629 + { PwrCmdWrite, 0x1b300199, mmCP_DFY_DATA_0 }, 7630 + { PwrCmdWrite, 0x7e1a000a, mmCP_DFY_DATA_0 }, 7631 + { PwrCmdWrite, 0x7e32000a, mmCP_DFY_DATA_0 }, 7632 + { PwrCmdWrite, 0xce000024, mmCP_DFY_DATA_0 }, 7633 + { PwrCmdWrite, 0xc4970258, mmCP_DFY_DATA_0 }, 7634 + { PwrCmdWrite, 0xc4930250, mmCP_DFY_DATA_0 }, 7635 + { PwrCmdWrite, 0x51540020, mmCP_DFY_DATA_0 }, 7636 + { PwrCmdWrite, 0x7d15001a, mmCP_DFY_DATA_0 }, 7637 + { PwrCmdWrite, 0xc4af0280, mmCP_DFY_DATA_0 }, 7638 + { PwrCmdWrite, 0xc4b30278, mmCP_DFY_DATA_0 }, 7639 + { PwrCmdWrite, 0x52ec0020, mmCP_DFY_DATA_0 }, 7640 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7641 + { PwrCmdWrite, 0x04140020, mmCP_DFY_DATA_0 }, 7642 + { PwrCmdWrite, 0x04280000, mmCP_DFY_DATA_0 }, 7643 + { PwrCmdWrite, 0x65180001, mmCP_DFY_DATA_0 }, 7644 + { PwrCmdWrite, 0x95800060, mmCP_DFY_DATA_0 }, 7645 + { PwrCmdWrite, 0x8c001628, mmCP_DFY_DATA_0 }, 7646 + { PwrCmdWrite, 0xc4193247, mmCP_DFY_DATA_0 }, 7647 + { PwrCmdWrite, 0x25980001, mmCP_DFY_DATA_0 }, 7648 + { PwrCmdWrite, 0x04200101, mmCP_DFY_DATA_0 }, 7649 + { PwrCmdWrite, 0x94c00005, mmCP_DFY_DATA_0 }, 7650 + { PwrCmdWrite, 0x30f00005, mmCP_DFY_DATA_0 }, 7651 + { PwrCmdWrite, 0x04200005, mmCP_DFY_DATA_0 }, 7652 + { PwrCmdWrite, 0x9b000002, mmCP_DFY_DATA_0 }, 7653 + { PwrCmdWrite, 0x04200102, mmCP_DFY_DATA_0 }, 7654 + { PwrCmdWrite, 0x95800056, mmCP_DFY_DATA_0 }, 7655 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7656 + { PwrCmdWrite, 0x1bb0003f, mmCP_DFY_DATA_0 }, 7657 + { PwrCmdWrite, 0x97000049, mmCP_DFY_DATA_0 }, 7658 + { PwrCmdWrite, 0x1bb000e8, mmCP_DFY_DATA_0 }, 7659 + { PwrCmdWrite, 0x33380003, mmCP_DFY_DATA_0 }, 7660 + { PwrCmdWrite, 0x9b800046, mmCP_DFY_DATA_0 }, 7661 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 7662 + { PwrCmdWrite, 0x9700000a, mmCP_DFY_DATA_0 }, 7663 + { PwrCmdWrite, 0xc4393260, mmCP_DFY_DATA_0 }, 7664 + { PwrCmdWrite, 0x1bb000e4, mmCP_DFY_DATA_0 }, 7665 + { PwrCmdWrite, 0x33300004, mmCP_DFY_DATA_0 }, 7666 + { PwrCmdWrite, 0x97000040, mmCP_DFY_DATA_0 }, 7667 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 7668 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 7669 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 7670 + { PwrCmdWrite, 0x80001aa2, mmCP_DFY_DATA_0 }, 7671 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7672 + { PwrCmdWrite, 0xc033ffff, mmCP_DFY_DATA_0 }, 7673 + { PwrCmdWrite, 0x2f3000ff, mmCP_DFY_DATA_0 }, 7674 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7675 + { PwrCmdWrite, 0x7f3b0009, mmCP_DFY_DATA_0 }, 7676 + { PwrCmdWrite, 0xcf01325b, mmCP_DFY_DATA_0 }, 7677 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7678 + { PwrCmdWrite, 0x27b800ff, mmCP_DFY_DATA_0 }, 7679 + { PwrCmdWrite, 0x9b80fffe, mmCP_DFY_DATA_0 }, 7680 + { PwrCmdWrite, 0xd8c00033, mmCP_DFY_DATA_0 }, 7681 + { PwrCmdWrite, 0xc4300009, mmCP_DFY_DATA_0 }, 7682 + { PwrCmdWrite, 0x27300008, mmCP_DFY_DATA_0 }, 7683 + { PwrCmdWrite, 0x9700fffe, mmCP_DFY_DATA_0 }, 7684 + { PwrCmdWrite, 0x19f003e6, mmCP_DFY_DATA_0 }, 7685 + { PwrCmdWrite, 0x27380003, mmCP_DFY_DATA_0 }, 7686 + { PwrCmdWrite, 0x13b80004, mmCP_DFY_DATA_0 }, 7687 + { PwrCmdWrite, 0x27300003, mmCP_DFY_DATA_0 }, 7688 + { PwrCmdWrite, 0x13300003, mmCP_DFY_DATA_0 }, 7689 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 7690 + { PwrCmdWrite, 0x19f000e8, mmCP_DFY_DATA_0 }, 7691 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 7692 + { PwrCmdWrite, 0x13300001, mmCP_DFY_DATA_0 }, 7693 + { PwrCmdWrite, 0x7fb38001, mmCP_DFY_DATA_0 }, 7694 + { PwrCmdWrite, 0x07b80002, mmCP_DFY_DATA_0 }, 7695 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7696 + { PwrCmdWrite, 0x19f00064, mmCP_DFY_DATA_0 }, 7697 + { PwrCmdWrite, 0x33300002, mmCP_DFY_DATA_0 }, 7698 + { PwrCmdWrite, 0x97000009, mmCP_DFY_DATA_0 }, 7699 + { PwrCmdWrite, 0x17b00005, mmCP_DFY_DATA_0 }, 7700 + { PwrCmdWrite, 0x07300003, mmCP_DFY_DATA_0 }, 7701 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 7702 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7703 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7704 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7705 + { PwrCmdWrite, 0x0b300003, mmCP_DFY_DATA_0 }, 7706 + { PwrCmdWrite, 0x80001a90, mmCP_DFY_DATA_0 }, 7707 + { PwrCmdWrite, 0x17b00005, mmCP_DFY_DATA_0 }, 7708 + { PwrCmdWrite, 0xcf012082, mmCP_DFY_DATA_0 }, 7709 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7710 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7711 + { PwrCmdWrite, 0xcc01203f, mmCP_DFY_DATA_0 }, 7712 + { PwrCmdWrite, 0x13300005, mmCP_DFY_DATA_0 }, 7713 + { PwrCmdWrite, 0x7fb30002, mmCP_DFY_DATA_0 }, 7714 + { PwrCmdWrite, 0xc4392083, mmCP_DFY_DATA_0 }, 7715 + { PwrCmdWrite, 0x7fb38005, mmCP_DFY_DATA_0 }, 7716 + { PwrCmdWrite, 0x27b80001, mmCP_DFY_DATA_0 }, 7717 + { PwrCmdWrite, 0x9b80ffdf, mmCP_DFY_DATA_0 }, 7718 + { PwrCmdWrite, 0xd8c00034, mmCP_DFY_DATA_0 }, 7719 + { PwrCmdWrite, 0xcdc00013, mmCP_DFY_DATA_0 }, 7720 + { PwrCmdWrite, 0xc431325d, mmCP_DFY_DATA_0 }, 7721 + { PwrCmdWrite, 0x27300010, mmCP_DFY_DATA_0 }, 7722 + { PwrCmdWrite, 0x9b00fffe, mmCP_DFY_DATA_0 }, 7723 + { PwrCmdWrite, 0xc439325b, mmCP_DFY_DATA_0 }, 7724 + { PwrCmdWrite, 0x27b000ff, mmCP_DFY_DATA_0 }, 7725 + { PwrCmdWrite, 0x9b00ffca, mmCP_DFY_DATA_0 }, 7726 + { PwrCmdWrite, 0xce01325d, mmCP_DFY_DATA_0 }, 7727 + { PwrCmdWrite, 0x2030007b, mmCP_DFY_DATA_0 }, 7728 + { PwrCmdWrite, 0xcf00325b, mmCP_DFY_DATA_0 }, 7729 + { PwrCmdWrite, 0x80001aa3, mmCP_DFY_DATA_0 }, 7730 + { PwrCmdWrite, 0xce01325d, mmCP_DFY_DATA_0 }, 7731 + { PwrCmdWrite, 0x04300001, mmCP_DFY_DATA_0 }, 7732 + { PwrCmdWrite, 0x7f2b0014, mmCP_DFY_DATA_0 }, 7733 + { PwrCmdWrite, 0x7ef2c01a, mmCP_DFY_DATA_0 }, 7734 + { PwrCmdWrite, 0xc49b02e9, mmCP_DFY_DATA_0 }, 7735 + { PwrCmdWrite, 0x99800005, mmCP_DFY_DATA_0 }, 7736 + { PwrCmdWrite, 0xd2400025, mmCP_DFY_DATA_0 }, 7737 + { PwrCmdWrite, 0x4664001c, mmCP_DFY_DATA_0 }, 7738 + { PwrCmdWrite, 0xd8000026, mmCP_DFY_DATA_0 }, 7739 + { PwrCmdWrite, 0xd8400027, mmCP_DFY_DATA_0 }, 7740 + { PwrCmdWrite, 0x06a80001, mmCP_DFY_DATA_0 }, 7741 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7742 + { PwrCmdWrite, 0x55100001, mmCP_DFY_DATA_0 }, 7743 + { PwrCmdWrite, 0x9940ff9c, mmCP_DFY_DATA_0 }, 7744 + { PwrCmdWrite, 0xc49b02e9, mmCP_DFY_DATA_0 }, 7745 + { PwrCmdWrite, 0x99800008, mmCP_DFY_DATA_0 }, 7746 + { PwrCmdWrite, 0xc430000e, mmCP_DFY_DATA_0 }, 7747 + { PwrCmdWrite, 0x2b300008, mmCP_DFY_DATA_0 }, 7748 + { PwrCmdWrite, 0xcf000013, mmCP_DFY_DATA_0 }, 7749 + { PwrCmdWrite, 0x04302000, mmCP_DFY_DATA_0 }, 7750 + { PwrCmdWrite, 0xcf013267, mmCP_DFY_DATA_0 }, 7751 + { PwrCmdWrite, 0xc4313267, mmCP_DFY_DATA_0 }, 7752 + { PwrCmdWrite, 0x97000001, mmCP_DFY_DATA_0 }, 7753 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 7754 + { PwrCmdWrite, 0x244c00ff, mmCP_DFY_DATA_0 }, 7755 + { PwrCmdWrite, 0xcc4c0200, mmCP_DFY_DATA_0 }, 7756 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 7757 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 7758 + { PwrCmdWrite, 0xc44f0200, mmCP_DFY_DATA_0 }, 7759 + { PwrCmdWrite, 0xc410000b, mmCP_DFY_DATA_0 }, 7760 + { PwrCmdWrite, 0xc414000c, mmCP_DFY_DATA_0 }, 7761 + { PwrCmdWrite, 0x7d158010, mmCP_DFY_DATA_0 }, 7762 + { PwrCmdWrite, 0x059cc000, mmCP_DFY_DATA_0 }, 7763 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7764 + { PwrCmdWrite, 0xccdd0000, mmCP_DFY_DATA_0 }, 7765 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 7766 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 7767 + { PwrCmdWrite, 0xc40c0037, mmCP_DFY_DATA_0 }, 7768 + { PwrCmdWrite, 0x94c0ffff, mmCP_DFY_DATA_0 }, 7769 + { PwrCmdWrite, 0xcc000049, mmCP_DFY_DATA_0 }, 7770 + { PwrCmdWrite, 0xc40c003a, mmCP_DFY_DATA_0 }, 7771 + { PwrCmdWrite, 0x94c0ffff, mmCP_DFY_DATA_0 }, 7772 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 7773 + { PwrCmdWrite, 0x24d00001, mmCP_DFY_DATA_0 }, 7774 + { PwrCmdWrite, 0x9500e69a, mmCP_DFY_DATA_0 }, 7775 + { PwrCmdWrite, 0x18d0003b, mmCP_DFY_DATA_0 }, 7776 + { PwrCmdWrite, 0x18d40021, mmCP_DFY_DATA_0 }, 7777 + { PwrCmdWrite, 0x99400006, mmCP_DFY_DATA_0 }, 7778 + { PwrCmdWrite, 0xd840004a, mmCP_DFY_DATA_0 }, 7779 + { PwrCmdWrite, 0xc40c003c, mmCP_DFY_DATA_0 }, 7780 + { PwrCmdWrite, 0x94c0ffff, mmCP_DFY_DATA_0 }, 7781 + { PwrCmdWrite, 0x14cc0001, mmCP_DFY_DATA_0 }, 7782 + { PwrCmdWrite, 0x94c00028, mmCP_DFY_DATA_0 }, 7783 + { PwrCmdWrite, 0xd8000033, mmCP_DFY_DATA_0 }, 7784 + { PwrCmdWrite, 0xc438000b, mmCP_DFY_DATA_0 }, 7785 + { PwrCmdWrite, 0xc43c0009, mmCP_DFY_DATA_0 }, 7786 + { PwrCmdWrite, 0x27fc0001, mmCP_DFY_DATA_0 }, 7787 + { PwrCmdWrite, 0x97c0fffe, mmCP_DFY_DATA_0 }, 7788 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7789 + { PwrCmdWrite, 0xd841c07f, mmCP_DFY_DATA_0 }, 7790 + { PwrCmdWrite, 0xc43dc07f, mmCP_DFY_DATA_0 }, 7791 + { PwrCmdWrite, 0x1bfc0078, mmCP_DFY_DATA_0 }, 7792 + { PwrCmdWrite, 0x7ffbc00c, mmCP_DFY_DATA_0 }, 7793 + { PwrCmdWrite, 0x97c0fffd, mmCP_DFY_DATA_0 }, 7794 + { PwrCmdWrite, 0x99000004, mmCP_DFY_DATA_0 }, 7795 + { PwrCmdWrite, 0xc0120840, mmCP_DFY_DATA_0 }, 7796 + { PwrCmdWrite, 0x282c0040, mmCP_DFY_DATA_0 }, 7797 + { PwrCmdWrite, 0x80001ae8, mmCP_DFY_DATA_0 }, 7798 + { PwrCmdWrite, 0xc0121841, mmCP_DFY_DATA_0 }, 7799 + { PwrCmdWrite, 0x282c001a, mmCP_DFY_DATA_0 }, 7800 + { PwrCmdWrite, 0xcd01c07c, mmCP_DFY_DATA_0 }, 7801 + { PwrCmdWrite, 0xcc01c07d, mmCP_DFY_DATA_0 }, 7802 + { PwrCmdWrite, 0xcc01c08c, mmCP_DFY_DATA_0 }, 7803 + { PwrCmdWrite, 0xcc01c079, mmCP_DFY_DATA_0 }, 7804 + { PwrCmdWrite, 0xcc01c07e, mmCP_DFY_DATA_0 }, 7805 + { PwrCmdWrite, 0x04200004, mmCP_DFY_DATA_0 }, 7806 + { PwrCmdWrite, 0xcec0001b, mmCP_DFY_DATA_0 }, 7807 + { PwrCmdWrite, 0xd8400021, mmCP_DFY_DATA_0 }, 7808 + { PwrCmdWrite, 0x0a200001, mmCP_DFY_DATA_0 }, 7809 + { PwrCmdWrite, 0x9a00ffff, mmCP_DFY_DATA_0 }, 7810 + { PwrCmdWrite, 0xc425c07f, mmCP_DFY_DATA_0 }, 7811 + { PwrCmdWrite, 0x166c001f, mmCP_DFY_DATA_0 }, 7812 + { PwrCmdWrite, 0x04200004, mmCP_DFY_DATA_0 }, 7813 + { PwrCmdWrite, 0x9ac0fffb, mmCP_DFY_DATA_0 }, 7814 + { PwrCmdWrite, 0xc434000f, mmCP_DFY_DATA_0 }, 7815 + { PwrCmdWrite, 0x9b40ffff, mmCP_DFY_DATA_0 }, 7816 + { PwrCmdWrite, 0xd801c07f, mmCP_DFY_DATA_0 }, 7817 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7818 + { PwrCmdWrite, 0xc425c07f, mmCP_DFY_DATA_0 }, 7819 + { PwrCmdWrite, 0xce400078, mmCP_DFY_DATA_0 }, 7820 + { PwrCmdWrite, 0xd8000034, mmCP_DFY_DATA_0 }, 7821 + { PwrCmdWrite, 0x9940e66b, mmCP_DFY_DATA_0 }, 7822 + { PwrCmdWrite, 0xd800004a, mmCP_DFY_DATA_0 }, 7823 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 7824 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 7825 + { PwrCmdWrite, 0xc40c0036, mmCP_DFY_DATA_0 }, 7826 + { PwrCmdWrite, 0x24d00001, mmCP_DFY_DATA_0 }, 7827 + { PwrCmdWrite, 0x9900fffe, mmCP_DFY_DATA_0 }, 7828 + { PwrCmdWrite, 0x18cc0021, mmCP_DFY_DATA_0 }, 7829 + { PwrCmdWrite, 0xccc00047, mmCP_DFY_DATA_0 }, 7830 + { PwrCmdWrite, 0xcc000046, mmCP_DFY_DATA_0 }, 7831 + { PwrCmdWrite, 0xc40c0039, mmCP_DFY_DATA_0 }, 7832 + { PwrCmdWrite, 0x94c0ffff, mmCP_DFY_DATA_0 }, 7833 + { PwrCmdWrite, 0xc40c003d, mmCP_DFY_DATA_0 }, 7834 + { PwrCmdWrite, 0x98c0ffff, mmCP_DFY_DATA_0 }, 7835 + { PwrCmdWrite, 0x7c40c001, mmCP_DFY_DATA_0 }, 7836 + { PwrCmdWrite, 0x24d003ff, mmCP_DFY_DATA_0 }, 7837 + { PwrCmdWrite, 0x18d47fea, mmCP_DFY_DATA_0 }, 7838 + { PwrCmdWrite, 0x18d87ff4, mmCP_DFY_DATA_0 }, 7839 + { PwrCmdWrite, 0xcd00004c, mmCP_DFY_DATA_0 }, 7840 + { PwrCmdWrite, 0xcd40004e, mmCP_DFY_DATA_0 }, 7841 + { PwrCmdWrite, 0xcd80004d, mmCP_DFY_DATA_0 }, 7842 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7843 + { PwrCmdWrite, 0xcd41c405, mmCP_DFY_DATA_0 }, 7844 + { PwrCmdWrite, 0xc02a0001, mmCP_DFY_DATA_0 }, 7845 + { PwrCmdWrite, 0x2aa80001, mmCP_DFY_DATA_0 }, 7846 + { PwrCmdWrite, 0xce800013, mmCP_DFY_DATA_0 }, 7847 + { PwrCmdWrite, 0xcd01c406, mmCP_DFY_DATA_0 }, 7848 + { PwrCmdWrite, 0xcc01c406, mmCP_DFY_DATA_0 }, 7849 + { PwrCmdWrite, 0xcc01c406, mmCP_DFY_DATA_0 }, 7850 + { PwrCmdWrite, 0xc40c0006, mmCP_DFY_DATA_0 }, 7851 + { PwrCmdWrite, 0x98c0ffff, mmCP_DFY_DATA_0 }, 7852 + { PwrCmdWrite, 0xc414000e, mmCP_DFY_DATA_0 }, 7853 + { PwrCmdWrite, 0x29540008, mmCP_DFY_DATA_0 }, 7854 + { PwrCmdWrite, 0x295c0001, mmCP_DFY_DATA_0 }, 7855 + { PwrCmdWrite, 0xcd400013, mmCP_DFY_DATA_0 }, 7856 + { PwrCmdWrite, 0xd8c1325e, mmCP_DFY_DATA_0 }, 7857 + { PwrCmdWrite, 0xcdc0001a, mmCP_DFY_DATA_0 }, 7858 + { PwrCmdWrite, 0x11980002, mmCP_DFY_DATA_0 }, 7859 + { PwrCmdWrite, 0x4110000c, mmCP_DFY_DATA_0 }, 7860 + { PwrCmdWrite, 0xc0160800, mmCP_DFY_DATA_0 }, 7861 + { PwrCmdWrite, 0x7d15000a, mmCP_DFY_DATA_0 }, 7862 + { PwrCmdWrite, 0xc0164010, mmCP_DFY_DATA_0 }, 7863 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7864 + { PwrCmdWrite, 0xcd41c078, mmCP_DFY_DATA_0 }, 7865 + { PwrCmdWrite, 0xcc01c080, mmCP_DFY_DATA_0 }, 7866 + { PwrCmdWrite, 0xcc01c081, mmCP_DFY_DATA_0 }, 7867 + { PwrCmdWrite, 0xcd81c082, mmCP_DFY_DATA_0 }, 7868 + { PwrCmdWrite, 0xcc01c083, mmCP_DFY_DATA_0 }, 7869 + { PwrCmdWrite, 0xcd01c084, mmCP_DFY_DATA_0 }, 7870 + { PwrCmdWrite, 0xc40c0006, mmCP_DFY_DATA_0 }, 7871 + { PwrCmdWrite, 0x98c0ffff, mmCP_DFY_DATA_0 }, 7872 + { PwrCmdWrite, 0xd8400048, mmCP_DFY_DATA_0 }, 7873 + { PwrCmdWrite, 0xc40c003b, mmCP_DFY_DATA_0 }, 7874 + { PwrCmdWrite, 0x94c0ffff, mmCP_DFY_DATA_0 }, 7875 + { PwrCmdWrite, 0x80000c16, mmCP_DFY_DATA_0 }, 7876 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7877 + { PwrCmdWrite, 0xd801c40a, mmCP_DFY_DATA_0 }, 7878 + { PwrCmdWrite, 0xd901c40d, mmCP_DFY_DATA_0 }, 7879 + { PwrCmdWrite, 0xd801c410, mmCP_DFY_DATA_0 }, 7880 + { PwrCmdWrite, 0xd801c40e, mmCP_DFY_DATA_0 }, 7881 + { PwrCmdWrite, 0xd801c40f, mmCP_DFY_DATA_0 }, 7882 + { PwrCmdWrite, 0xc40c0040, mmCP_DFY_DATA_0 }, 7883 + { PwrCmdWrite, 0x04140001, mmCP_DFY_DATA_0 }, 7884 + { PwrCmdWrite, 0x09540001, mmCP_DFY_DATA_0 }, 7885 + { PwrCmdWrite, 0x9940ffff, mmCP_DFY_DATA_0 }, 7886 + { PwrCmdWrite, 0x04140096, mmCP_DFY_DATA_0 }, 7887 + { PwrCmdWrite, 0xd8400013, mmCP_DFY_DATA_0 }, 7888 + { PwrCmdWrite, 0xccc1c400, mmCP_DFY_DATA_0 }, 7889 + { PwrCmdWrite, 0xc411c401, mmCP_DFY_DATA_0 }, 7890 + { PwrCmdWrite, 0x9500fffa, mmCP_DFY_DATA_0 }, 7891 + { PwrCmdWrite, 0xc424003e, mmCP_DFY_DATA_0 }, 7892 + { PwrCmdWrite, 0x04d00001, mmCP_DFY_DATA_0 }, 7893 + { PwrCmdWrite, 0x11100002, mmCP_DFY_DATA_0 }, 7894 + { PwrCmdWrite, 0xcd01c40c, mmCP_DFY_DATA_0 }, 7895 + { PwrCmdWrite, 0xc0180034, mmCP_DFY_DATA_0 }, 7896 + { PwrCmdWrite, 0xcd81c411, mmCP_DFY_DATA_0 }, 7897 + { PwrCmdWrite, 0xd841c414, mmCP_DFY_DATA_0 }, 7898 + { PwrCmdWrite, 0x0a540001, mmCP_DFY_DATA_0 }, 7899 + { PwrCmdWrite, 0xcd41c412, mmCP_DFY_DATA_0 }, 7900 + { PwrCmdWrite, 0x2468000f, mmCP_DFY_DATA_0 }, 7901 + { PwrCmdWrite, 0xc419c416, mmCP_DFY_DATA_0 }, 7902 + { PwrCmdWrite, 0x41980003, mmCP_DFY_DATA_0 }, 7903 + { PwrCmdWrite, 0xc41c003f, mmCP_DFY_DATA_0 }, 7904 + { PwrCmdWrite, 0x7dda0001, mmCP_DFY_DATA_0 }, 7905 + { PwrCmdWrite, 0x12200002, mmCP_DFY_DATA_0 }, 7906 + { PwrCmdWrite, 0x10cc0002, mmCP_DFY_DATA_0 }, 7907 + { PwrCmdWrite, 0xccc1c40c, mmCP_DFY_DATA_0 }, 7908 + { PwrCmdWrite, 0xd901c411, mmCP_DFY_DATA_0 }, 7909 + { PwrCmdWrite, 0xce41c412, mmCP_DFY_DATA_0 }, 7910 + { PwrCmdWrite, 0xd8800013, mmCP_DFY_DATA_0 }, 7911 + { PwrCmdWrite, 0xce292e40, mmCP_DFY_DATA_0 }, 7912 + { PwrCmdWrite, 0xcc412e01, mmCP_DFY_DATA_0 }, 7913 + { PwrCmdWrite, 0xcc412e02, mmCP_DFY_DATA_0 }, 7914 + { PwrCmdWrite, 0xcc412e03, mmCP_DFY_DATA_0 }, 7915 + { PwrCmdWrite, 0xcc412e00, mmCP_DFY_DATA_0 }, 7916 + { PwrCmdWrite, 0x80000aa7, mmCP_DFY_DATA_0 }, 7917 + { PwrCmdWrite, 0xc43c0007, mmCP_DFY_DATA_0 }, 7918 + { PwrCmdWrite, 0xdc120000, mmCP_DFY_DATA_0 }, 7919 + { PwrCmdWrite, 0x31144000, mmCP_DFY_DATA_0 }, 7920 + { PwrCmdWrite, 0x95400005, mmCP_DFY_DATA_0 }, 7921 + { PwrCmdWrite, 0xdc030000, mmCP_DFY_DATA_0 }, 7922 + { PwrCmdWrite, 0xd800002a, mmCP_DFY_DATA_0 }, 7923 + { PwrCmdWrite, 0xcc3c000c, mmCP_DFY_DATA_0 }, 7924 + { PwrCmdWrite, 0x80001b70, mmCP_DFY_DATA_0 }, 7925 + { PwrCmdWrite, 0x33f80003, mmCP_DFY_DATA_0 }, 7926 + { PwrCmdWrite, 0xd4400078, mmCP_DFY_DATA_0 }, 7927 + { PwrCmdWrite, 0x9780e601, mmCP_DFY_DATA_0 }, 7928 + { PwrCmdWrite, 0x188cfff0, mmCP_DFY_DATA_0 }, 7929 + { PwrCmdWrite, 0x04e40002, mmCP_DFY_DATA_0 }, 7930 + { PwrCmdWrite, 0x80001190, mmCP_DFY_DATA_0 }, 7931 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 7932 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 7933 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 7934 + { PwrCmdWrite, 0x96400006, mmCP_DFY_DATA_0 }, 7935 + { PwrCmdWrite, 0x90000000, mmCP_DFY_DATA_0 }, 7936 + { PwrCmdWrite, 0xc424005e, mmCP_DFY_DATA_0 }, 7937 + { PwrCmdWrite, 0x96400003, mmCP_DFY_DATA_0 }, 7938 + { PwrCmdWrite, 0x7c408001, mmCP_DFY_DATA_0 }, 7939 + { PwrCmdWrite, 0x88000000, mmCP_DFY_DATA_0 }, 7940 + { PwrCmdWrite, 0x80001b74, mmCP_DFY_DATA_0 }, 7941 + { PwrCmdWrite, 0x80000168, mmCP_DFY_DATA_0 }, 7942 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7943 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7944 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7945 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7946 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7947 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7948 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7949 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7950 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7951 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 7952 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 7953 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 7954 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 7955 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 7956 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 7957 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 7958 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 7959 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 7960 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 7961 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 7962 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 7963 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 7964 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 7965 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 7966 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 7967 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 7968 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 7969 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 7970 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 7971 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 7972 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 7973 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 7974 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 7975 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 7976 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 7977 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 7978 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 7979 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 7980 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 7981 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 7982 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 7983 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 7984 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 7985 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 7986 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 7987 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 7988 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 7989 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 7990 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 7991 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 7992 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 7993 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 7994 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 7995 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 7996 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 7997 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 7998 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 7999 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8000 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8001 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8002 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8003 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8004 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8005 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8006 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8007 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8008 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8009 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8010 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8011 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8012 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8013 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8014 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8015 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8016 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8017 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8018 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8019 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8020 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8021 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8022 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8023 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8024 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8025 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8026 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8027 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8028 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8029 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8030 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8031 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8032 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8033 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8034 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8035 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8036 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8037 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8038 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8039 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8040 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8041 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8042 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8043 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8044 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8045 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8046 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8047 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8048 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8049 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8050 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8051 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8052 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8053 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8054 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8055 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8056 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8057 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8058 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8059 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8060 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8061 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8062 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8063 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8064 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8065 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8066 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8067 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8068 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8069 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8070 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8071 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8072 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8073 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8074 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8075 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8076 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8077 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8078 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8079 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8080 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8081 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8082 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8083 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8084 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8085 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8086 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8087 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8088 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8089 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8090 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8091 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8092 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8093 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8094 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8095 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8096 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8097 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8098 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8099 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8100 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8101 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8102 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8103 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8104 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8105 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8106 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8107 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8108 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8109 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8110 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8111 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8112 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8113 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8114 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8115 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8116 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8117 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8118 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8119 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8120 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8121 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8122 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8123 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8124 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8125 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8126 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8127 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8128 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8129 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8130 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8131 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8132 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8133 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8134 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8135 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8136 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8137 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8138 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8139 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8140 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8141 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8142 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8143 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8144 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8145 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8146 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8147 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8148 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8149 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8150 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8151 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8152 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8153 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8154 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8155 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8156 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8157 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8158 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8159 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8160 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8161 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8162 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8163 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8164 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8165 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8166 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8167 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8168 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8169 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8170 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8171 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8172 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8173 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8174 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8175 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8176 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8177 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8178 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8179 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8180 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8181 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8182 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8183 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8184 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8185 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8186 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8187 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8188 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8189 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8190 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8191 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8192 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8193 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8194 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8195 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8196 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8197 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8198 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8199 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8200 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8201 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8202 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8203 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8204 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8205 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8206 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8207 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8208 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8209 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8210 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8211 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8212 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8213 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8214 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8215 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8216 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8217 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8218 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8219 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8220 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8221 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8222 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8223 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8224 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8225 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8226 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8227 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8228 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8229 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8230 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8231 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8232 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8233 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8234 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8235 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8236 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8237 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8238 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8239 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8240 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8241 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8242 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8243 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8244 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8245 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8246 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8247 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8248 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8249 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8250 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8251 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8252 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8253 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8254 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8255 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8256 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8257 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8258 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8259 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8260 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8261 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8262 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8263 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8264 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8265 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8266 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8267 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8268 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8269 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8270 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8271 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8272 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8273 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8274 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8275 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8276 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8277 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8278 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8279 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8280 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8281 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8282 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8283 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8284 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8285 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8286 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8287 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8288 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8289 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8290 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8291 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8292 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8293 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8294 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8295 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8296 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8297 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8298 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8299 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8300 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8301 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8302 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8303 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8304 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8305 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8306 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8307 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8308 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8309 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8310 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8311 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8312 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8313 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8314 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8315 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8316 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8317 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8318 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8319 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8320 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8321 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8322 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8323 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8324 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8325 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8326 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8327 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8328 + { PwrCmdWrite, 0x92100004, mmCP_DFY_DATA_0 }, 8329 + { PwrCmdWrite, 0x92110501, mmCP_DFY_DATA_0 }, 8330 + { PwrCmdWrite, 0x92120206, mmCP_DFY_DATA_0 }, 8331 + { PwrCmdWrite, 0x92130703, mmCP_DFY_DATA_0 }, 8332 + { PwrCmdWrite, 0x92100400, mmCP_DFY_DATA_0 }, 8333 + { PwrCmdWrite, 0x92110105, mmCP_DFY_DATA_0 }, 8334 + { PwrCmdWrite, 0x92120602, mmCP_DFY_DATA_0 }, 8335 + { PwrCmdWrite, 0x92130307, mmCP_DFY_DATA_0 }, 8336 + { PwrCmdWrite, 0xbf810000, mmCP_DFY_DATA_0 }, 8337 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8338 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8339 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8340 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8341 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8342 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8343 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8344 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8345 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8346 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8347 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8348 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8349 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8350 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8351 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8352 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 8353 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_ADDR_HI }, 8354 + { PwrCmdWrite, 0x54106500, mmCP_DFY_ADDR_LO }, 8355 + { PwrCmdWrite, 0x7e000200, mmCP_DFY_DATA_0 }, 8356 + { PwrCmdWrite, 0x7e020204, mmCP_DFY_DATA_0 }, 8357 + { PwrCmdWrite, 0xc00a0505, mmCP_DFY_DATA_0 }, 8358 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8359 + { PwrCmdWrite, 0xbf8c007f, mmCP_DFY_DATA_0 }, 8360 + { PwrCmdWrite, 0xb8900904, mmCP_DFY_DATA_0 }, 8361 + { PwrCmdWrite, 0xb8911a04, mmCP_DFY_DATA_0 }, 8362 + { PwrCmdWrite, 0xb8920304, mmCP_DFY_DATA_0 }, 8363 + { PwrCmdWrite, 0xb8930b44, mmCP_DFY_DATA_0 }, 8364 + { PwrCmdWrite, 0x921c0d0c, mmCP_DFY_DATA_0 }, 8365 + { PwrCmdWrite, 0x921c1c13, mmCP_DFY_DATA_0 }, 8366 + { PwrCmdWrite, 0x921d0c12, mmCP_DFY_DATA_0 }, 8367 + { PwrCmdWrite, 0x811c1d1c, mmCP_DFY_DATA_0 }, 8368 + { PwrCmdWrite, 0x811c111c, mmCP_DFY_DATA_0 }, 8369 + { PwrCmdWrite, 0x921cff1c, mmCP_DFY_DATA_0 }, 8370 + { PwrCmdWrite, 0x00000400, mmCP_DFY_DATA_0 }, 8371 + { PwrCmdWrite, 0x921dff10, mmCP_DFY_DATA_0 }, 8372 + { PwrCmdWrite, 0x00000100, mmCP_DFY_DATA_0 }, 8373 + { PwrCmdWrite, 0x81181d1c, mmCP_DFY_DATA_0 }, 8374 + { PwrCmdWrite, 0x7e040218, mmCP_DFY_DATA_0 }, 8375 + { PwrCmdWrite, 0xe0701000, mmCP_DFY_DATA_0 }, 8376 + { PwrCmdWrite, 0x80050002, mmCP_DFY_DATA_0 }, 8377 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8378 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8379 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8380 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8381 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8382 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8383 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8384 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8385 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8386 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8387 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8388 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8389 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8390 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8391 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8392 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8393 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8394 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8395 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8396 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8397 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8398 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8399 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8400 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8401 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8402 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8403 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8404 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8405 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8406 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8407 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8408 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8409 + { PwrCmdWrite, 0xe0701000, mmCP_DFY_DATA_0 }, 8410 + { PwrCmdWrite, 0x80050102, mmCP_DFY_DATA_0 }, 8411 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8412 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8413 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8414 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8415 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8416 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8417 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8418 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8419 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8420 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8421 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8422 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8423 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8424 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8425 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8426 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8427 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8428 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8429 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8430 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8431 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8432 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8433 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8434 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8435 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8436 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8437 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8438 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8439 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8440 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8441 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8442 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8443 + { PwrCmdWrite, 0xe0701000, mmCP_DFY_DATA_0 }, 8444 + { PwrCmdWrite, 0x80050002, mmCP_DFY_DATA_0 }, 8445 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8446 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8447 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8448 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8449 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8450 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8451 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8452 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8453 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8454 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8455 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8456 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8457 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8458 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8459 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8460 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8461 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8462 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8463 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8464 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8465 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8466 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8467 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8468 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8469 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8470 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8471 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8472 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8473 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8474 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8475 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8476 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8477 + { PwrCmdWrite, 0xe0701000, mmCP_DFY_DATA_0 }, 8478 + { PwrCmdWrite, 0x80050102, mmCP_DFY_DATA_0 }, 8479 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8480 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8481 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8482 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8483 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8484 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8485 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8486 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8487 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8488 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8489 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8490 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8491 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8492 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8493 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8494 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8495 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8496 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8497 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8498 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8499 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8500 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8501 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8502 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8503 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8504 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8505 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8506 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8507 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8508 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8509 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8510 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8511 + { PwrCmdWrite, 0xe0701000, mmCP_DFY_DATA_0 }, 8512 + { PwrCmdWrite, 0x80050002, mmCP_DFY_DATA_0 }, 8513 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8514 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8515 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8516 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8517 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8518 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8519 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8520 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8521 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8522 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8523 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8524 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8525 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8526 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8527 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8528 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8529 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8530 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8531 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8532 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8533 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8534 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8535 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8536 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8537 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8538 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8539 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8540 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8541 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8542 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8543 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8544 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8545 + { PwrCmdWrite, 0xe0701000, mmCP_DFY_DATA_0 }, 8546 + { PwrCmdWrite, 0x80050102, mmCP_DFY_DATA_0 }, 8547 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8548 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8549 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8550 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8551 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8552 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8553 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8554 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8555 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8556 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8557 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8558 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8559 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8560 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8561 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8562 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8563 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8564 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8565 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8566 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8567 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8568 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8569 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8570 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8571 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8572 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8573 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8574 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8575 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8576 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8577 + { PwrCmdWrite, 0xe0501000, mmCP_DFY_DATA_0 }, 8578 + { PwrCmdWrite, 0x80050302, mmCP_DFY_DATA_0 }, 8579 + { PwrCmdWrite, 0xbf810000, mmCP_DFY_DATA_0 }, 8580 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8581 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8582 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8583 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8584 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8585 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8586 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8587 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8588 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8589 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8590 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8591 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8592 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8593 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8594 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8595 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 8596 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_ADDR_HI }, 8597 + { PwrCmdWrite, 0x54106900, mmCP_DFY_ADDR_LO }, 8598 + { PwrCmdWrite, 0x7e080200, mmCP_DFY_DATA_0 }, 8599 + { PwrCmdWrite, 0x7e100204, mmCP_DFY_DATA_0 }, 8600 + { PwrCmdWrite, 0xbefc00ff, mmCP_DFY_DATA_0 }, 8601 + { PwrCmdWrite, 0x00010000, mmCP_DFY_DATA_0 }, 8602 + { PwrCmdWrite, 0x24200087, mmCP_DFY_DATA_0 }, 8603 + { PwrCmdWrite, 0x262200ff, mmCP_DFY_DATA_0 }, 8604 + { PwrCmdWrite, 0x000001f0, mmCP_DFY_DATA_0 }, 8605 + { PwrCmdWrite, 0x20222282, mmCP_DFY_DATA_0 }, 8606 + { PwrCmdWrite, 0x28182111, mmCP_DFY_DATA_0 }, 8607 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8608 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8609 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8610 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8611 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8612 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8613 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8614 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8615 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8616 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8617 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8618 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8619 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8620 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8621 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8622 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8623 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8624 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8625 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8626 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8627 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8628 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8629 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8630 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8631 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8632 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8633 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8634 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8635 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8636 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8637 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8638 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8639 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8640 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8641 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8642 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8643 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8644 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8645 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8646 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8647 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8648 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8649 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8650 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8651 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8652 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8653 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8654 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8655 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8656 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8657 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8658 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8659 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8660 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8661 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8662 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8663 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8664 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8665 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8666 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8667 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8668 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8669 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8670 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8671 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8672 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8673 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8674 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8675 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8676 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8677 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8678 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8679 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8680 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8681 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8682 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8683 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8684 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8685 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8686 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8687 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8688 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8689 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8690 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8691 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8692 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8693 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8694 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8695 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8696 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8697 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8698 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8699 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8700 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8701 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8702 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8703 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8704 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8705 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8706 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8707 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8708 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8709 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8710 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8711 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8712 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8713 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8714 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8715 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8716 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8717 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8718 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8719 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8720 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8721 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8722 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8723 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8724 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8725 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8726 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8727 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8728 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8729 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8730 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8731 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8732 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8733 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8734 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8735 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8736 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8737 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8738 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8739 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8740 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8741 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8742 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8743 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8744 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8745 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8746 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8747 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8748 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8749 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8750 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8751 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8752 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8753 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8754 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8755 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8756 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8757 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8758 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8759 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8760 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8761 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8762 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8763 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8764 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8765 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8766 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8767 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8768 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8769 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8770 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8771 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8772 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8773 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8774 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8775 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8776 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8777 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8778 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8779 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8780 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8781 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8782 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8783 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8784 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8785 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8786 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8787 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8788 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8789 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8790 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8791 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8792 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8793 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8794 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8795 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8796 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8797 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8798 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8799 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8800 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8801 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8802 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8803 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8804 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8805 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8806 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8807 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8808 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8809 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8810 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8811 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8812 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8813 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8814 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8815 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8816 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8817 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8818 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8819 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8820 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8821 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8822 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8823 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8824 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8825 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8826 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8827 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8828 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8829 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8830 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8831 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8832 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8833 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8834 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8835 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8836 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8837 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8838 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8839 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8840 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8841 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8842 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8843 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8844 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8845 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8846 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8847 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8848 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8849 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8850 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8851 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8852 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8853 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8854 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8855 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8856 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8857 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8858 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8859 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8860 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8861 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8862 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8863 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8864 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8865 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8866 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8867 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8868 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8869 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8870 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8871 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8872 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8873 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8874 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8875 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8876 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8877 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8878 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8879 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8880 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8881 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8882 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8883 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8884 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8885 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8886 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8887 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8888 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8889 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8890 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8891 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8892 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8893 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8894 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8895 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8896 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8897 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8898 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8899 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8900 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8901 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8902 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8903 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8904 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8905 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8906 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8907 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8908 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8909 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8910 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8911 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8912 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8913 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8914 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8915 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8916 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8917 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8918 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8919 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8920 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8921 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8922 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8923 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8924 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8925 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8926 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8927 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8928 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8929 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8930 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8931 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8932 + { PwrCmdWrite, 0x0000040c, mmCP_DFY_DATA_0 }, 8933 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8934 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8935 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8936 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8937 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8938 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8939 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8940 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8941 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8942 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8943 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8944 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8945 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8946 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8947 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8948 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8949 + { PwrCmdWrite, 0xd81a0000, mmCP_DFY_DATA_0 }, 8950 + { PwrCmdWrite, 0x0000080c, mmCP_DFY_DATA_0 }, 8951 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8952 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8953 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8954 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8955 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8956 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8957 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8958 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8959 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8960 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8961 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8962 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8963 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8964 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8965 + { PwrCmdWrite, 0xd86c0000, mmCP_DFY_DATA_0 }, 8966 + { PwrCmdWrite, 0x1100000c, mmCP_DFY_DATA_0 }, 8967 + { PwrCmdWrite, 0xbf810000, mmCP_DFY_DATA_0 }, 8968 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8969 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8970 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8971 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8972 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8973 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8974 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8975 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8976 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8977 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8978 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8979 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8980 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8981 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8982 + { PwrCmdWrite, 0x80000004, mmCP_DFY_CNTL }, 8983 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_ADDR_HI }, 8984 + { PwrCmdWrite, 0x54116f00, mmCP_DFY_ADDR_LO }, 8985 + { PwrCmdWrite, 0xc0310800, mmCP_DFY_DATA_0 }, 8986 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8987 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8988 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8989 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8990 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8991 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8992 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8993 + { PwrCmdWrite, 0x00000040, mmCP_DFY_DATA_0 }, 8994 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 8995 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 8996 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 8997 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 8998 + { PwrCmdWrite, 0xb4540fe8, mmCP_DFY_DATA_0 }, 8999 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9000 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9001 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9002 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9003 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9004 + { PwrCmdWrite, 0x00000041, mmCP_DFY_DATA_0 }, 9005 + { PwrCmdWrite, 0x0000000c, mmCP_DFY_DATA_0 }, 9006 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9007 + { PwrCmdWrite, 0x07808000, mmCP_DFY_DATA_0 }, 9008 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9009 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9010 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9011 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9012 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9013 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9014 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9015 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9016 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9017 + { PwrCmdWrite, 0x00000002, mmCP_DFY_DATA_0 }, 9018 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9019 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9020 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9021 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9022 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9023 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9024 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9025 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9026 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9027 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9028 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9029 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9030 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9031 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9032 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9033 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9034 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9035 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9036 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9037 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9038 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9039 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9040 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9041 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9042 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9043 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9044 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9045 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9046 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9047 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9048 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9049 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9050 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9051 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9052 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9053 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9054 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9055 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9056 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9057 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9058 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9059 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9060 + { PwrCmdWrite, 0x540fee40, mmCP_DFY_DATA_0 }, 9061 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9062 + { PwrCmdWrite, 0x00000010, mmCP_DFY_DATA_0 }, 9063 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9064 + { PwrCmdWrite, 0x00000004, mmCP_DFY_DATA_0 }, 9065 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9066 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9067 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9068 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9069 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9070 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9071 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9072 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9073 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9074 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9075 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9076 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9077 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9078 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9079 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9080 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9081 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9082 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9083 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9084 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9085 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9086 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9087 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9088 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9089 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9090 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9091 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9092 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9093 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9094 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9095 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9096 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9097 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9098 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9099 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9100 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9101 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9102 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9103 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9104 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9105 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9106 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9107 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9108 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9109 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9110 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9111 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9112 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9113 + { PwrCmdWrite, 0x54116f00, mmCP_DFY_DATA_0 }, 9114 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9115 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9116 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9117 + { PwrCmdWrite, 0x00005301, mmCP_DFY_DATA_0 }, 9118 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9119 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9120 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9121 + { PwrCmdWrite, 0xb4540fef, mmCP_DFY_DATA_0 }, 9122 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9123 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9124 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9125 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9126 + { PwrCmdWrite, 0x540fee20, mmCP_DFY_DATA_0 }, 9127 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9128 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9129 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9130 + { PwrCmdWrite, 0x08000000, mmCP_DFY_DATA_0 }, 9131 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9132 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9133 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9134 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9135 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9136 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9137 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9138 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9139 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9140 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9141 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9142 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9143 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9144 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9145 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9146 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9147 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9148 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9149 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9150 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9151 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9152 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9153 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9154 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9155 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9156 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9157 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9158 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9159 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9160 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9161 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9162 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9163 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9164 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9165 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9166 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9167 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9168 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9169 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9170 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9171 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9172 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9173 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9174 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9175 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9176 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9177 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9178 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9179 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9180 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9181 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9182 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9183 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9184 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9185 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9186 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9187 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9188 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9189 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9190 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9191 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9192 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9193 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9194 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9195 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9196 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9197 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9198 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9199 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9200 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9201 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9202 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9203 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9204 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9205 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9206 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9207 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9208 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9209 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9210 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9211 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9212 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9213 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9214 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9215 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9216 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9217 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9218 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9219 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9220 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9221 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9222 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9223 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9224 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9225 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9226 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9227 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9228 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9229 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9230 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9231 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9232 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9233 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9234 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9235 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9236 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9237 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9238 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9239 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9240 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9241 + { PwrCmdWrite, 0xc0310800, mmCP_DFY_DATA_0 }, 9242 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9243 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9244 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9245 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9246 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9247 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9248 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9249 + { PwrCmdWrite, 0x00000040, mmCP_DFY_DATA_0 }, 9250 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9251 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9252 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9253 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9254 + { PwrCmdWrite, 0xb454105e, mmCP_DFY_DATA_0 }, 9255 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9256 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9257 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9258 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9259 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9260 + { PwrCmdWrite, 0x000000c0, mmCP_DFY_DATA_0 }, 9261 + { PwrCmdWrite, 0x00000010, mmCP_DFY_DATA_0 }, 9262 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9263 + { PwrCmdWrite, 0x07808000, mmCP_DFY_DATA_0 }, 9264 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9265 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9266 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9267 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9268 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9269 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9270 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9271 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9272 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9273 + { PwrCmdWrite, 0x00000002, mmCP_DFY_DATA_0 }, 9274 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9275 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9276 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9277 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9278 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9279 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9280 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9281 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9282 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9283 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9284 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9285 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9286 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9287 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9288 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9289 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9290 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9291 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9292 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9293 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9294 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9295 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9296 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9297 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9298 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9299 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9300 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9301 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9302 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9303 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9304 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9305 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9306 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9307 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9308 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9309 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9310 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9311 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9312 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9313 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9314 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9315 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9316 + { PwrCmdWrite, 0x540fee40, mmCP_DFY_DATA_0 }, 9317 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9318 + { PwrCmdWrite, 0x00000010, mmCP_DFY_DATA_0 }, 9319 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9320 + { PwrCmdWrite, 0x00000004, mmCP_DFY_DATA_0 }, 9321 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9322 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9323 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9324 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9325 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9326 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9327 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9328 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9329 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9330 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9331 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9332 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9333 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9334 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9335 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9336 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9337 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9338 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9339 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9340 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9341 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9342 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9343 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9344 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9345 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9346 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9347 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9348 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9349 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9350 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9351 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9352 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9353 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9354 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9355 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9356 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9357 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9358 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9359 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9360 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9361 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9362 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9363 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9364 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9365 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9366 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9367 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9368 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9369 + { PwrCmdWrite, 0x54117300, mmCP_DFY_DATA_0 }, 9370 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9371 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9372 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9373 + { PwrCmdWrite, 0x00005301, mmCP_DFY_DATA_0 }, 9374 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9375 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9376 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9377 + { PwrCmdWrite, 0xb4540fef, mmCP_DFY_DATA_0 }, 9378 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9379 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9380 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9381 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9382 + { PwrCmdWrite, 0x540fee20, mmCP_DFY_DATA_0 }, 9383 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9384 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9385 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9386 + { PwrCmdWrite, 0x08000000, mmCP_DFY_DATA_0 }, 9387 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9388 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9389 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9390 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9391 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9392 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9393 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9394 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9395 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9396 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9397 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9398 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9399 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9400 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9401 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9402 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9403 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9404 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9405 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9406 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9407 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9408 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9409 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9410 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9411 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9412 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9413 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9414 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9415 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9416 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9417 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9418 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9419 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9420 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9421 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9422 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9423 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9424 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9425 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9426 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9427 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9428 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9429 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9430 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9431 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9432 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9433 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9434 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9435 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9436 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9437 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9438 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9439 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9440 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9441 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9442 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9443 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9444 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9445 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9446 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9447 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9448 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9449 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9450 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9451 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9452 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9453 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9454 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9455 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9456 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9457 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9458 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9459 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9460 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9461 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9462 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9463 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9464 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9465 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9466 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9467 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9468 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9469 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9470 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9471 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9472 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9473 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9474 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9475 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9476 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9477 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9478 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9479 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9480 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9481 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9482 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9483 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9484 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9485 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9486 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9487 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9488 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9489 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9490 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9491 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9492 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9493 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9494 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9495 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9496 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9497 + { PwrCmdWrite, 0xc0310800, mmCP_DFY_DATA_0 }, 9498 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9499 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9500 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9501 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9502 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9503 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9504 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9505 + { PwrCmdWrite, 0x00000040, mmCP_DFY_DATA_0 }, 9506 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9507 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9508 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9509 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9510 + { PwrCmdWrite, 0xb4541065, mmCP_DFY_DATA_0 }, 9511 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9512 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9513 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9514 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9515 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9516 + { PwrCmdWrite, 0x00000500, mmCP_DFY_DATA_0 }, 9517 + { PwrCmdWrite, 0x0000001c, mmCP_DFY_DATA_0 }, 9518 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9519 + { PwrCmdWrite, 0x07808000, mmCP_DFY_DATA_0 }, 9520 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9521 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9522 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9523 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9524 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9525 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9526 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9527 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9528 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9529 + { PwrCmdWrite, 0x00000002, mmCP_DFY_DATA_0 }, 9530 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9531 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9532 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9533 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9534 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9535 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9536 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9537 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9538 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9539 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9540 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9541 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9542 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9543 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9544 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9545 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9546 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9547 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9548 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9549 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9550 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9551 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9552 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9553 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9554 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9555 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9556 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9557 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9558 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9559 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9560 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9561 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9562 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9563 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9564 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9565 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9566 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9567 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9568 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9569 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9570 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9571 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9572 + { PwrCmdWrite, 0x540fee40, mmCP_DFY_DATA_0 }, 9573 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9574 + { PwrCmdWrite, 0x00000010, mmCP_DFY_DATA_0 }, 9575 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9576 + { PwrCmdWrite, 0x00000004, mmCP_DFY_DATA_0 }, 9577 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9578 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9579 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9580 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9581 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9582 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9583 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9584 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9585 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9586 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9587 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9588 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9589 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9590 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9591 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9592 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9593 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9594 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9595 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9596 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9597 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9598 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9599 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9600 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9601 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9602 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9603 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9604 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9605 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9606 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9607 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9608 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9609 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9610 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9611 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9612 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9613 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9614 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9615 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9616 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9617 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9618 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9619 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9620 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9621 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9622 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9623 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9624 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9625 + { PwrCmdWrite, 0x54117700, mmCP_DFY_DATA_0 }, 9626 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9627 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9628 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9629 + { PwrCmdWrite, 0x00005301, mmCP_DFY_DATA_0 }, 9630 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9631 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9632 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9633 + { PwrCmdWrite, 0xb4540fef, mmCP_DFY_DATA_0 }, 9634 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9635 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9636 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9637 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9638 + { PwrCmdWrite, 0x540fee20, mmCP_DFY_DATA_0 }, 9639 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9640 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9641 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9642 + { PwrCmdWrite, 0x08000000, mmCP_DFY_DATA_0 }, 9643 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9644 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9645 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9646 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9647 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9648 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9649 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9650 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9651 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9652 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9653 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9654 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9655 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9656 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9657 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9658 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9659 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9660 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9661 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9662 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9663 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9664 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9665 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9666 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9667 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9668 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9669 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9670 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9671 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9672 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9673 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9674 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9675 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9676 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9677 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9678 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9679 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9680 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9681 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9682 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9683 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9684 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9685 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9686 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9687 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9688 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9689 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9690 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9691 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9692 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9693 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9694 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9695 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9696 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9697 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9698 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9699 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9700 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9701 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9702 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9703 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9704 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9705 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9706 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9707 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9708 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9709 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9710 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9711 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9712 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9713 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9714 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9715 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9716 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9717 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9718 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9719 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9720 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9721 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9722 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9723 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9724 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9725 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9726 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9727 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9728 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9729 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9730 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9731 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9732 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9733 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9734 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9735 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9736 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9737 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9738 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9739 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9740 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9741 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9742 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9743 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9744 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9745 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9746 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9747 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9748 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9749 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9750 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9751 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9752 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9753 + { PwrCmdWrite, 0xc0310800, mmCP_DFY_DATA_0 }, 9754 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9755 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9756 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9757 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9758 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9759 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9760 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9761 + { PwrCmdWrite, 0x00000040, mmCP_DFY_DATA_0 }, 9762 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9763 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9764 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9765 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9766 + { PwrCmdWrite, 0xb4541069, mmCP_DFY_DATA_0 }, 9767 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9768 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9769 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9770 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9771 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9772 + { PwrCmdWrite, 0x00000444, mmCP_DFY_DATA_0 }, 9773 + { PwrCmdWrite, 0x0000008a, mmCP_DFY_DATA_0 }, 9774 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9775 + { PwrCmdWrite, 0x07808000, mmCP_DFY_DATA_0 }, 9776 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9777 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9778 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9779 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9780 + { PwrCmdWrite, 0xffffffff, mmCP_DFY_DATA_0 }, 9781 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9782 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9783 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9784 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9785 + { PwrCmdWrite, 0x00000002, mmCP_DFY_DATA_0 }, 9786 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9787 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9788 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9789 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9790 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9791 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9792 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9793 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9794 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9795 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9796 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9797 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9798 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9799 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9800 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9801 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9802 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9803 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9804 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9805 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9806 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9807 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9808 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9809 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9810 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9811 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9812 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9813 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9814 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9815 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9816 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9817 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9818 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9819 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9820 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9821 + { PwrCmdWrite, 0xaaaaaaaa, mmCP_DFY_DATA_0 }, 9822 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9823 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9824 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9825 + { PwrCmdWrite, 0x55555555, mmCP_DFY_DATA_0 }, 9826 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9827 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9828 + { PwrCmdWrite, 0x540fee40, mmCP_DFY_DATA_0 }, 9829 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9830 + { PwrCmdWrite, 0x00000010, mmCP_DFY_DATA_0 }, 9831 + { PwrCmdWrite, 0x00000001, mmCP_DFY_DATA_0 }, 9832 + { PwrCmdWrite, 0x00000004, mmCP_DFY_DATA_0 }, 9833 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9834 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9835 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9836 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9837 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9838 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9839 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9840 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9841 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9842 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9843 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9844 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9845 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9846 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9847 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9848 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9849 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9850 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9851 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9852 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9853 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9854 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9855 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9856 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9857 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9858 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9859 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9860 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9861 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9862 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9863 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9864 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9865 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9866 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9867 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9868 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9869 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9870 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9871 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9872 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9873 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9874 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9875 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9876 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9877 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9878 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9879 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9880 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9881 + { PwrCmdWrite, 0x54117b00, mmCP_DFY_DATA_0 }, 9882 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9883 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9884 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9885 + { PwrCmdWrite, 0x00005301, mmCP_DFY_DATA_0 }, 9886 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9887 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9888 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9889 + { PwrCmdWrite, 0xb4540fef, mmCP_DFY_DATA_0 }, 9890 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9891 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9892 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9893 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9894 + { PwrCmdWrite, 0x540fee20, mmCP_DFY_DATA_0 }, 9895 + { PwrCmdWrite, 0x000000b4, mmCP_DFY_DATA_0 }, 9896 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9897 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9898 + { PwrCmdWrite, 0x08000000, mmCP_DFY_DATA_0 }, 9899 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9900 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9901 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9902 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9903 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9904 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9905 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9906 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9907 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9908 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9909 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9910 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9911 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9912 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9913 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9914 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9915 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9916 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9917 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9918 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9919 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9920 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9921 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9922 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9923 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9924 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9925 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9926 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9927 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9928 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9929 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9930 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9931 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9932 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9933 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9934 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9935 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9936 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9937 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9938 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9939 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9940 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9941 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9942 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9943 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9944 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9945 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9946 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9947 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9948 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9949 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9950 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9951 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9952 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9953 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9954 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9955 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9956 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9957 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9958 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9959 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9960 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9961 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9962 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9963 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9964 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9965 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9966 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9967 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9968 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9969 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9970 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9971 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9972 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9973 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9974 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9975 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9976 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9977 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9978 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9979 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9980 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9981 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9982 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9983 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9984 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9985 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9986 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9987 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9988 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9989 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9990 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9991 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9992 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9993 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9994 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9995 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9996 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9997 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9998 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 9999 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10000 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10001 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10002 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10003 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10004 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10005 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10006 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10007 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10008 + { PwrCmdWrite, 0x00000000, mmCP_DFY_DATA_0 }, 10009 + { PwrCmdWrite, 0x00000000, mmCP_MEC_CNTL }, 10010 + { PwrCmdWrite, 0x00000000, mmCP_MEC_CNTL }, 10011 + { PwrCmdWrite, 0x00000004, mmSRBM_GFX_CNTL }, 10012 + { PwrCmdWrite, 0x54116f00, mmCP_MQD_BASE_ADDR }, 10013 + { PwrCmdWrite, 0x000000b4, mmCP_MQD_BASE_ADDR_HI }, 10014 + { PwrCmdWrite, 0xb4540fef, mmCP_HQD_PQ_BASE }, 10015 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_BASE_HI }, 10016 + { PwrCmdWrite, 0x540fee20, mmCP_HQD_PQ_WPTR_POLL_ADDR }, 10017 + { PwrCmdWrite, 0x000000b4, mmCP_HQD_PQ_WPTR_POLL_ADDR_HI }, 10018 + { PwrCmdWrite, 0x00005301, mmCP_HQD_PERSISTENT_STATE }, 10019 + { PwrCmdWrite, 0x00010000, mmCP_HQD_VMID }, 10020 + { PwrCmdWrite, 0xc8318509, mmCP_HQD_PQ_CONTROL }, 10021 + { PwrCmdWrite, 0x00000005, mmSRBM_GFX_CNTL }, 10022 + { PwrCmdWrite, 0x54117300, mmCP_MQD_BASE_ADDR }, 10023 + { PwrCmdWrite, 0x000000b4, mmCP_MQD_BASE_ADDR_HI }, 10024 + { PwrCmdWrite, 0xb4540fef, mmCP_HQD_PQ_BASE }, 10025 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_BASE_HI }, 10026 + { PwrCmdWrite, 0x540fee20, mmCP_HQD_PQ_WPTR_POLL_ADDR }, 10027 + { PwrCmdWrite, 0x000000b4, mmCP_HQD_PQ_WPTR_POLL_ADDR_HI }, 10028 + { PwrCmdWrite, 0x00005301, mmCP_HQD_PERSISTENT_STATE }, 10029 + { PwrCmdWrite, 0x00010000, mmCP_HQD_VMID }, 10030 + { PwrCmdWrite, 0xc8318509, mmCP_HQD_PQ_CONTROL }, 10031 + { PwrCmdWrite, 0x00000006, mmSRBM_GFX_CNTL }, 10032 + { PwrCmdWrite, 0x54117700, mmCP_MQD_BASE_ADDR }, 10033 + { PwrCmdWrite, 0x000000b4, mmCP_MQD_BASE_ADDR_HI }, 10034 + { PwrCmdWrite, 0xb4540fef, mmCP_HQD_PQ_BASE }, 10035 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_BASE_HI }, 10036 + { PwrCmdWrite, 0x540fee20, mmCP_HQD_PQ_WPTR_POLL_ADDR }, 10037 + { PwrCmdWrite, 0x000000b4, mmCP_HQD_PQ_WPTR_POLL_ADDR_HI }, 10038 + { PwrCmdWrite, 0x00005301, mmCP_HQD_PERSISTENT_STATE }, 10039 + { PwrCmdWrite, 0x00010000, mmCP_HQD_VMID }, 10040 + { PwrCmdWrite, 0xc8318509, mmCP_HQD_PQ_CONTROL }, 10041 + { PwrCmdWrite, 0x00000007, mmSRBM_GFX_CNTL }, 10042 + { PwrCmdWrite, 0x54117b00, mmCP_MQD_BASE_ADDR }, 10043 + { PwrCmdWrite, 0x000000b4, mmCP_MQD_BASE_ADDR_HI }, 10044 + { PwrCmdWrite, 0xb4540fef, mmCP_HQD_PQ_BASE }, 10045 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_BASE_HI }, 10046 + { PwrCmdWrite, 0x540fee20, mmCP_HQD_PQ_WPTR_POLL_ADDR }, 10047 + { PwrCmdWrite, 0x000000b4, mmCP_HQD_PQ_WPTR_POLL_ADDR_HI }, 10048 + { PwrCmdWrite, 0x00005301, mmCP_HQD_PERSISTENT_STATE }, 10049 + { PwrCmdWrite, 0x00010000, mmCP_HQD_VMID }, 10050 + { PwrCmdWrite, 0xc8318509, mmCP_HQD_PQ_CONTROL }, 10051 + { PwrCmdWrite, 0x00000004, mmSRBM_GFX_CNTL }, 10052 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10053 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10054 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10055 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10056 + { PwrCmdWrite, 0x00000104, mmSRBM_GFX_CNTL }, 10057 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10058 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10059 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10060 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10061 + { PwrCmdWrite, 0x00000204, mmSRBM_GFX_CNTL }, 10062 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10063 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10064 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10065 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10066 + { PwrCmdWrite, 0x00000304, mmSRBM_GFX_CNTL }, 10067 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10068 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10069 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10070 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10071 + { PwrCmdWrite, 0x00000404, mmSRBM_GFX_CNTL }, 10072 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10073 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10074 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10075 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10076 + { PwrCmdWrite, 0x00000504, mmSRBM_GFX_CNTL }, 10077 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10078 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10079 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10080 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10081 + { PwrCmdWrite, 0x00000604, mmSRBM_GFX_CNTL }, 10082 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10083 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10084 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10085 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10086 + { PwrCmdWrite, 0x00000704, mmSRBM_GFX_CNTL }, 10087 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10088 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10089 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10090 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10091 + { PwrCmdWrite, 0x00000005, mmSRBM_GFX_CNTL }, 10092 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10093 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10094 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10095 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10096 + { PwrCmdWrite, 0x00000105, mmSRBM_GFX_CNTL }, 10097 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10098 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10099 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10100 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10101 + { PwrCmdWrite, 0x00000205, mmSRBM_GFX_CNTL }, 10102 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10103 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10104 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10105 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10106 + { PwrCmdWrite, 0x00000305, mmSRBM_GFX_CNTL }, 10107 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10108 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10109 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10110 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10111 + { PwrCmdWrite, 0x00000405, mmSRBM_GFX_CNTL }, 10112 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10113 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10114 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10115 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10116 + { PwrCmdWrite, 0x00000505, mmSRBM_GFX_CNTL }, 10117 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10118 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10119 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10120 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10121 + { PwrCmdWrite, 0x00000605, mmSRBM_GFX_CNTL }, 10122 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10123 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10124 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10125 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10126 + { PwrCmdWrite, 0x00000705, mmSRBM_GFX_CNTL }, 10127 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10128 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10129 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10130 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10131 + { PwrCmdWrite, 0x00000006, mmSRBM_GFX_CNTL }, 10132 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10133 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10134 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10135 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10136 + { PwrCmdWrite, 0x00000106, mmSRBM_GFX_CNTL }, 10137 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10138 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10139 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10140 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10141 + { PwrCmdWrite, 0x00000206, mmSRBM_GFX_CNTL }, 10142 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10143 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10144 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10145 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10146 + { PwrCmdWrite, 0x00000306, mmSRBM_GFX_CNTL }, 10147 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10148 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10149 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10150 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10151 + { PwrCmdWrite, 0x00000406, mmSRBM_GFX_CNTL }, 10152 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10153 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10154 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10155 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10156 + { PwrCmdWrite, 0x00000506, mmSRBM_GFX_CNTL }, 10157 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10158 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10159 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10160 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10161 + { PwrCmdWrite, 0x00000606, mmSRBM_GFX_CNTL }, 10162 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10163 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10164 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10165 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10166 + { PwrCmdWrite, 0x00000706, mmSRBM_GFX_CNTL }, 10167 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10168 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10169 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10170 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10171 + { PwrCmdWrite, 0x00000007, mmSRBM_GFX_CNTL }, 10172 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10173 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10174 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10175 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10176 + { PwrCmdWrite, 0x00000107, mmSRBM_GFX_CNTL }, 10177 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10178 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10179 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10180 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10181 + { PwrCmdWrite, 0x00000207, mmSRBM_GFX_CNTL }, 10182 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10183 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10184 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10185 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10186 + { PwrCmdWrite, 0x00000307, mmSRBM_GFX_CNTL }, 10187 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10188 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10189 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10190 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10191 + { PwrCmdWrite, 0x00000407, mmSRBM_GFX_CNTL }, 10192 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10193 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10194 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10195 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10196 + { PwrCmdWrite, 0x00000507, mmSRBM_GFX_CNTL }, 10197 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10198 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10199 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10200 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10201 + { PwrCmdWrite, 0x00000607, mmSRBM_GFX_CNTL }, 10202 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10203 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10204 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10205 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10206 + { PwrCmdWrite, 0x00000707, mmSRBM_GFX_CNTL }, 10207 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10208 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10209 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10210 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10211 + { PwrCmdWrite, 0x00000008, mmSRBM_GFX_CNTL }, 10212 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10213 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10214 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10215 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10216 + { PwrCmdWrite, 0x00000108, mmSRBM_GFX_CNTL }, 10217 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10218 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10219 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10220 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10221 + { PwrCmdWrite, 0x00000208, mmSRBM_GFX_CNTL }, 10222 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10223 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10224 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10225 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10226 + { PwrCmdWrite, 0x00000308, mmSRBM_GFX_CNTL }, 10227 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10228 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10229 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10230 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10231 + { PwrCmdWrite, 0x00000408, mmSRBM_GFX_CNTL }, 10232 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10233 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10234 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10235 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10236 + { PwrCmdWrite, 0x00000508, mmSRBM_GFX_CNTL }, 10237 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10238 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10239 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10240 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10241 + { PwrCmdWrite, 0x00000608, mmSRBM_GFX_CNTL }, 10242 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10243 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10244 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10245 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10246 + { PwrCmdWrite, 0x00000708, mmSRBM_GFX_CNTL }, 10247 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10248 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10249 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10250 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10251 + { PwrCmdWrite, 0x00000009, mmSRBM_GFX_CNTL }, 10252 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10253 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10254 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10255 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10256 + { PwrCmdWrite, 0x00000109, mmSRBM_GFX_CNTL }, 10257 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10258 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10259 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10260 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10261 + { PwrCmdWrite, 0x00000209, mmSRBM_GFX_CNTL }, 10262 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10263 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10264 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10265 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10266 + { PwrCmdWrite, 0x00000309, mmSRBM_GFX_CNTL }, 10267 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10268 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10269 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10270 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10271 + { PwrCmdWrite, 0x00000409, mmSRBM_GFX_CNTL }, 10272 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10273 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10274 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10275 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10276 + { PwrCmdWrite, 0x00000509, mmSRBM_GFX_CNTL }, 10277 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10278 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10279 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10280 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10281 + { PwrCmdWrite, 0x00000609, mmSRBM_GFX_CNTL }, 10282 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10283 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10284 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10285 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10286 + { PwrCmdWrite, 0x00000709, mmSRBM_GFX_CNTL }, 10287 + { PwrCmdWrite, 0x00000000, mmCP_HQD_ACTIVE }, 10288 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_RPTR }, 10289 + { PwrCmdWrite, 0x00000000, mmCP_HQD_PQ_WPTR }, 10290 + { PwrCmdWrite, 0x00000001, mmCP_HQD_ACTIVE }, 10291 + { PwrCmdWrite, 0x00000004, mmSRBM_GFX_CNTL }, 10292 + { PwrCmdWrite, 0x01010101, mmCP_PQ_WPTR_POLL_CNTL1 }, 10293 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 10294 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 10295 + { PwrCmdWrite, 0x00000000, mmGRBM_STATUS }, 10296 + { PwrCmdEnd, 0x00000000, 0x00000000 }, 10297 + }; 10298 + 10299 + #endif
+720
drivers/gpu/drm/amd/powerplay/inc/smu73.h
··· 1 + /* 2 + * Copyright 2015 Advanced Micro Devices, Inc. 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a 5 + * copy of this software and associated documentation files (the "Software"), 6 + * to deal in the Software without restriction, including without limitation 7 + * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 + * and/or sell copies of the Software, and to permit persons to whom the 9 + * Software is furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 + * OTHER DEALINGS IN THE SOFTWARE. 21 + * 22 + */ 23 + #ifndef _SMU73_H_ 24 + #define _SMU73_H_ 25 + 26 + #pragma pack(push, 1) 27 + enum SID_OPTION { 28 + SID_OPTION_HI, 29 + SID_OPTION_LO, 30 + SID_OPTION_COUNT 31 + }; 32 + 33 + enum Poly3rdOrderCoeff { 34 + LEAKAGE_TEMPERATURE_SCALAR, 35 + LEAKAGE_VOLTAGE_SCALAR, 36 + DYNAMIC_VOLTAGE_SCALAR, 37 + POLY_3RD_ORDER_COUNT 38 + }; 39 + 40 + struct SMU7_Poly3rdOrder_Data 41 + { 42 + int32_t a; 43 + int32_t b; 44 + int32_t c; 45 + int32_t d; 46 + uint8_t a_shift; 47 + uint8_t b_shift; 48 + uint8_t c_shift; 49 + uint8_t x_shift; 50 + }; 51 + 52 + typedef struct SMU7_Poly3rdOrder_Data SMU7_Poly3rdOrder_Data; 53 + 54 + struct Power_Calculator_Data 55 + { 56 + uint16_t NoLoadVoltage; 57 + uint16_t LoadVoltage; 58 + uint16_t Resistance; 59 + uint16_t Temperature; 60 + uint16_t BaseLeakage; 61 + uint16_t LkgTempScalar; 62 + uint16_t LkgVoltScalar; 63 + uint16_t LkgAreaScalar; 64 + uint16_t LkgPower; 65 + uint16_t DynVoltScalar; 66 + uint32_t Cac; 67 + uint32_t DynPower; 68 + uint32_t TotalCurrent; 69 + uint32_t TotalPower; 70 + }; 71 + 72 + typedef struct Power_Calculator_Data PowerCalculatorData_t; 73 + 74 + struct Gc_Cac_Weight_Data 75 + { 76 + uint8_t index; 77 + uint32_t value; 78 + }; 79 + 80 + typedef struct Gc_Cac_Weight_Data GcCacWeight_Data; 81 + 82 + 83 + typedef struct { 84 + uint32_t high; 85 + uint32_t low; 86 + } data_64_t; 87 + 88 + typedef struct { 89 + data_64_t high; 90 + data_64_t low; 91 + } data_128_t; 92 + 93 + #define SMU__NUM_SCLK_DPM_STATE 8 94 + #define SMU__NUM_MCLK_DPM_LEVELS 4 95 + #define SMU__NUM_LCLK_DPM_LEVELS 8 96 + #define SMU__NUM_PCIE_DPM_LEVELS 8 97 + 98 + #define SMU7_CONTEXT_ID_SMC 1 99 + #define SMU7_CONTEXT_ID_VBIOS 2 100 + 101 + #define SMU73_MAX_LEVELS_VDDC 16 102 + #define SMU73_MAX_LEVELS_VDDGFX 16 103 + #define SMU73_MAX_LEVELS_VDDCI 8 104 + #define SMU73_MAX_LEVELS_MVDD 4 105 + 106 + #define SMU_MAX_SMIO_LEVELS 4 107 + 108 + #define SMU73_MAX_LEVELS_GRAPHICS SMU__NUM_SCLK_DPM_STATE // SCLK + SQ DPM + ULV 109 + #define SMU73_MAX_LEVELS_MEMORY SMU__NUM_MCLK_DPM_LEVELS // MCLK Levels DPM 110 + #define SMU73_MAX_LEVELS_GIO SMU__NUM_LCLK_DPM_LEVELS // LCLK Levels 111 + #define SMU73_MAX_LEVELS_LINK SMU__NUM_PCIE_DPM_LEVELS // PCIe speed and number of lanes. 112 + #define SMU73_MAX_LEVELS_UVD 8 // VCLK/DCLK levels for UVD. 113 + #define SMU73_MAX_LEVELS_VCE 8 // ECLK levels for VCE. 114 + #define SMU73_MAX_LEVELS_ACP 8 // ACLK levels for ACP. 115 + #define SMU73_MAX_LEVELS_SAMU 8 // SAMCLK levels for SAMU. 116 + #define SMU73_MAX_ENTRIES_SMIO 32 // Number of entries in SMIO table. 117 + 118 + #define DPM_NO_LIMIT 0 119 + #define DPM_NO_UP 1 120 + #define DPM_GO_DOWN 2 121 + #define DPM_GO_UP 3 122 + 123 + #define SMU7_FIRST_DPM_GRAPHICS_LEVEL 0 124 + #define SMU7_FIRST_DPM_MEMORY_LEVEL 0 125 + 126 + #define GPIO_CLAMP_MODE_VRHOT 1 127 + #define GPIO_CLAMP_MODE_THERM 2 128 + #define GPIO_CLAMP_MODE_DC 4 129 + 130 + #define SCRATCH_B_TARG_PCIE_INDEX_SHIFT 0 131 + #define SCRATCH_B_TARG_PCIE_INDEX_MASK (0x7<<SCRATCH_B_TARG_PCIE_INDEX_SHIFT) 132 + #define SCRATCH_B_CURR_PCIE_INDEX_SHIFT 3 133 + #define SCRATCH_B_CURR_PCIE_INDEX_MASK (0x7<<SCRATCH_B_CURR_PCIE_INDEX_SHIFT) 134 + #define SCRATCH_B_TARG_UVD_INDEX_SHIFT 6 135 + #define SCRATCH_B_TARG_UVD_INDEX_MASK (0x7<<SCRATCH_B_TARG_UVD_INDEX_SHIFT) 136 + #define SCRATCH_B_CURR_UVD_INDEX_SHIFT 9 137 + #define SCRATCH_B_CURR_UVD_INDEX_MASK (0x7<<SCRATCH_B_CURR_UVD_INDEX_SHIFT) 138 + #define SCRATCH_B_TARG_VCE_INDEX_SHIFT 12 139 + #define SCRATCH_B_TARG_VCE_INDEX_MASK (0x7<<SCRATCH_B_TARG_VCE_INDEX_SHIFT) 140 + #define SCRATCH_B_CURR_VCE_INDEX_SHIFT 15 141 + #define SCRATCH_B_CURR_VCE_INDEX_MASK (0x7<<SCRATCH_B_CURR_VCE_INDEX_SHIFT) 142 + #define SCRATCH_B_TARG_ACP_INDEX_SHIFT 18 143 + #define SCRATCH_B_TARG_ACP_INDEX_MASK (0x7<<SCRATCH_B_TARG_ACP_INDEX_SHIFT) 144 + #define SCRATCH_B_CURR_ACP_INDEX_SHIFT 21 145 + #define SCRATCH_B_CURR_ACP_INDEX_MASK (0x7<<SCRATCH_B_CURR_ACP_INDEX_SHIFT) 146 + #define SCRATCH_B_TARG_SAMU_INDEX_SHIFT 24 147 + #define SCRATCH_B_TARG_SAMU_INDEX_MASK (0x7<<SCRATCH_B_TARG_SAMU_INDEX_SHIFT) 148 + #define SCRATCH_B_CURR_SAMU_INDEX_SHIFT 27 149 + #define SCRATCH_B_CURR_SAMU_INDEX_MASK (0x7<<SCRATCH_B_CURR_SAMU_INDEX_SHIFT) 150 + 151 + // Virtualization Defines 152 + #define CG_XDMA_MASK 0x1 153 + #define CG_XDMA_SHIFT 0 154 + #define CG_UVD_MASK 0x2 155 + #define CG_UVD_SHIFT 1 156 + #define CG_VCE_MASK 0x4 157 + #define CG_VCE_SHIFT 2 158 + #define CG_SAMU_MASK 0x8 159 + #define CG_SAMU_SHIFT 3 160 + #define CG_GFX_MASK 0x10 161 + #define CG_GFX_SHIFT 4 162 + #define CG_SDMA_MASK 0x20 163 + #define CG_SDMA_SHIFT 5 164 + #define CG_HDP_MASK 0x40 165 + #define CG_HDP_SHIFT 6 166 + #define CG_MC_MASK 0x80 167 + #define CG_MC_SHIFT 7 168 + #define CG_DRM_MASK 0x100 169 + #define CG_DRM_SHIFT 8 170 + #define CG_ROM_MASK 0x200 171 + #define CG_ROM_SHIFT 9 172 + #define CG_BIF_MASK 0x400 173 + #define CG_BIF_SHIFT 10 174 + 175 + #define SMU73_DTE_ITERATIONS 5 176 + #define SMU73_DTE_SOURCES 3 177 + #define SMU73_DTE_SINKS 1 178 + #define SMU73_NUM_CPU_TES 0 179 + #define SMU73_NUM_GPU_TES 1 180 + #define SMU73_NUM_NON_TES 2 181 + #define SMU73_DTE_FAN_SCALAR_MIN 0x100 182 + #define SMU73_DTE_FAN_SCALAR_MAX 0x166 183 + #define SMU73_DTE_FAN_TEMP_MAX 93 184 + #define SMU73_DTE_FAN_TEMP_MIN 83 185 + 186 + #define SMU73_THERMAL_INPUT_LOOP_COUNT 6 187 + #define SMU73_THERMAL_CLAMP_MODE_COUNT 8 188 + 189 + 190 + struct SMU7_HystController_Data 191 + { 192 + uint16_t waterfall_up; 193 + uint16_t waterfall_down; 194 + uint16_t waterfall_limit; 195 + uint16_t release_cnt; 196 + uint16_t release_limit; 197 + uint16_t spare; 198 + }; 199 + 200 + typedef struct SMU7_HystController_Data SMU7_HystController_Data; 201 + 202 + struct SMU73_PIDController 203 + { 204 + uint32_t Ki; 205 + int32_t LFWindupUpperLim; 206 + int32_t LFWindupLowerLim; 207 + uint32_t StatePrecision; 208 + 209 + uint32_t LfPrecision; 210 + uint32_t LfOffset; 211 + uint32_t MaxState; 212 + uint32_t MaxLfFraction; 213 + uint32_t StateShift; 214 + }; 215 + 216 + typedef struct SMU73_PIDController SMU73_PIDController; 217 + 218 + struct SMU7_LocalDpmScoreboard 219 + { 220 + uint32_t PercentageBusy; 221 + 222 + int32_t PIDError; 223 + int32_t PIDIntegral; 224 + int32_t PIDOutput; 225 + 226 + uint32_t SigmaDeltaAccum; 227 + uint32_t SigmaDeltaOutput; 228 + uint32_t SigmaDeltaLevel; 229 + 230 + uint32_t UtilizationSetpoint; 231 + 232 + uint8_t TdpClampMode; 233 + uint8_t TdcClampMode; 234 + uint8_t ThermClampMode; 235 + uint8_t VoltageBusy; 236 + 237 + int8_t CurrLevel; 238 + int8_t TargLevel; 239 + uint8_t LevelChangeInProgress; 240 + uint8_t UpHyst; 241 + 242 + uint8_t DownHyst; 243 + uint8_t VoltageDownHyst; 244 + uint8_t DpmEnable; 245 + uint8_t DpmRunning; 246 + 247 + uint8_t DpmForce; 248 + uint8_t DpmForceLevel; 249 + uint8_t DisplayWatermark; 250 + uint8_t McArbIndex; 251 + 252 + uint32_t MinimumPerfSclk; 253 + 254 + uint8_t AcpiReq; 255 + uint8_t AcpiAck; 256 + uint8_t GfxClkSlow; 257 + uint8_t GpioClampMode; 258 + 259 + uint8_t spare2; 260 + uint8_t EnabledLevelsChange; 261 + uint8_t DteClampMode; 262 + uint8_t FpsClampMode; 263 + 264 + uint16_t LevelResidencyCounters [SMU73_MAX_LEVELS_GRAPHICS]; 265 + uint16_t LevelSwitchCounters [SMU73_MAX_LEVELS_GRAPHICS]; 266 + 267 + void (*TargetStateCalculator)(uint8_t); 268 + void (*SavedTargetStateCalculator)(uint8_t); 269 + 270 + uint16_t AutoDpmInterval; 271 + uint16_t AutoDpmRange; 272 + 273 + uint8_t FpsEnabled; 274 + uint8_t MaxPerfLevel; 275 + uint8_t AllowLowClkInterruptToHost; 276 + uint8_t FpsRunning; 277 + 278 + uint32_t MaxAllowedFrequency; 279 + 280 + uint32_t FilteredSclkFrequency; 281 + uint32_t LastSclkFrequency; 282 + uint32_t FilteredSclkFrequencyCnt; 283 + 284 + uint8_t LedEnable; 285 + uint8_t LedPin0; 286 + uint8_t LedPin1; 287 + uint8_t LedPin2; 288 + uint32_t LedAndMask; 289 + 290 + uint16_t FpsAlpha; 291 + uint16_t DeltaTime; 292 + uint32_t CurrentFps; 293 + uint32_t FilteredFps; 294 + uint32_t FrameCount; 295 + uint32_t FrameCountLast; 296 + uint16_t FpsTargetScalar; 297 + uint16_t FpsWaterfallLimitScalar; 298 + uint16_t FpsAlphaScalar; 299 + uint16_t spare8; 300 + SMU7_HystController_Data HystControllerData; 301 + }; 302 + 303 + typedef struct SMU7_LocalDpmScoreboard SMU7_LocalDpmScoreboard; 304 + 305 + #define SMU7_MAX_VOLTAGE_CLIENTS 12 306 + 307 + typedef uint8_t (*VoltageChangeHandler_t)(uint16_t, uint8_t); 308 + 309 + #define VDDC_MASK 0x00007FFF 310 + #define VDDC_SHIFT 0 311 + #define VDDCI_MASK 0x3FFF8000 312 + #define VDDCI_SHIFT 15 313 + #define PHASES_MASK 0xC0000000 314 + #define PHASES_SHIFT 30 315 + 316 + typedef uint32_t SMU_VoltageLevel; 317 + 318 + struct SMU7_VoltageScoreboard 319 + { 320 + SMU_VoltageLevel TargetVoltage; 321 + uint16_t MaxVid; 322 + uint8_t HighestVidOffset; 323 + uint8_t CurrentVidOffset; 324 + 325 + uint16_t CurrentVddc; 326 + uint16_t CurrentVddci; 327 + 328 + 329 + uint8_t ControllerBusy; 330 + uint8_t CurrentVid; 331 + uint8_t CurrentVddciVid; 332 + uint8_t padding; 333 + 334 + SMU_VoltageLevel RequestedVoltage[SMU7_MAX_VOLTAGE_CLIENTS]; 335 + SMU_VoltageLevel TargetVoltageState; 336 + uint8_t EnabledRequest[SMU7_MAX_VOLTAGE_CLIENTS]; 337 + 338 + uint8_t padding2; 339 + uint8_t padding3; 340 + uint8_t ControllerEnable; 341 + uint8_t ControllerRunning; 342 + uint16_t CurrentStdVoltageHiSidd; 343 + uint16_t CurrentStdVoltageLoSidd; 344 + uint8_t OverrideVoltage; 345 + uint8_t padding4; 346 + uint8_t padding5; 347 + uint8_t CurrentPhases; 348 + 349 + VoltageChangeHandler_t ChangeVddc; 350 + 351 + VoltageChangeHandler_t ChangeVddci; 352 + VoltageChangeHandler_t ChangePhase; 353 + VoltageChangeHandler_t ChangeMvdd; 354 + 355 + VoltageChangeHandler_t functionLinks[6]; 356 + 357 + uint16_t * VddcFollower1; 358 + 359 + int16_t Driver_OD_RequestedVidOffset1; 360 + int16_t Driver_OD_RequestedVidOffset2; 361 + 362 + }; 363 + 364 + typedef struct SMU7_VoltageScoreboard SMU7_VoltageScoreboard; 365 + 366 + // ------------------------------------------------------------------------------------------------------------------------- 367 + #define SMU7_MAX_PCIE_LINK_SPEEDS 3 /* 0:Gen1 1:Gen2 2:Gen3 */ 368 + 369 + struct SMU7_PCIeLinkSpeedScoreboard 370 + { 371 + uint8_t DpmEnable; 372 + uint8_t DpmRunning; 373 + uint8_t DpmForce; 374 + uint8_t DpmForceLevel; 375 + 376 + uint8_t CurrentLinkSpeed; 377 + uint8_t EnabledLevelsChange; 378 + uint16_t AutoDpmInterval; 379 + 380 + uint16_t AutoDpmRange; 381 + uint16_t AutoDpmCount; 382 + 383 + uint8_t DpmMode; 384 + uint8_t AcpiReq; 385 + uint8_t AcpiAck; 386 + uint8_t CurrentLinkLevel; 387 + 388 + }; 389 + 390 + typedef struct SMU7_PCIeLinkSpeedScoreboard SMU7_PCIeLinkSpeedScoreboard; 391 + 392 + // -------------------------------------------------------- CAC table ------------------------------------------------------ 393 + #define SMU7_LKGE_LUT_NUM_OF_TEMP_ENTRIES 16 394 + #define SMU7_LKGE_LUT_NUM_OF_VOLT_ENTRIES 16 395 + 396 + #define SMU7_SCALE_I 7 397 + #define SMU7_SCALE_R 12 398 + 399 + struct SMU7_PowerScoreboard 400 + { 401 + uint32_t GpuPower; 402 + 403 + uint32_t VddcPower; 404 + uint32_t VddcVoltage; 405 + uint32_t VddcCurrent; 406 + 407 + uint32_t MvddPower; 408 + uint32_t MvddVoltage; 409 + uint32_t MvddCurrent; 410 + 411 + uint32_t RocPower; 412 + 413 + uint16_t Telemetry_1_slope; 414 + uint16_t Telemetry_2_slope; 415 + int32_t Telemetry_1_offset; 416 + int32_t Telemetry_2_offset; 417 + }; 418 + typedef struct SMU7_PowerScoreboard SMU7_PowerScoreboard; 419 + 420 + // For FeatureEnables: 421 + #define SMU7_SCLK_DPM_CONFIG_MASK 0x01 422 + #define SMU7_VOLTAGE_CONTROLLER_CONFIG_MASK 0x02 423 + #define SMU7_THERMAL_CONTROLLER_CONFIG_MASK 0x04 424 + #define SMU7_MCLK_DPM_CONFIG_MASK 0x08 425 + #define SMU7_UVD_DPM_CONFIG_MASK 0x10 426 + #define SMU7_VCE_DPM_CONFIG_MASK 0x20 427 + #define SMU7_ACP_DPM_CONFIG_MASK 0x40 428 + #define SMU7_SAMU_DPM_CONFIG_MASK 0x80 429 + #define SMU7_PCIEGEN_DPM_CONFIG_MASK 0x100 430 + 431 + #define SMU7_ACP_MCLK_HANDSHAKE_DISABLE 0x00000001 432 + #define SMU7_ACP_SCLK_HANDSHAKE_DISABLE 0x00000002 433 + #define SMU7_UVD_MCLK_HANDSHAKE_DISABLE 0x00000100 434 + #define SMU7_UVD_SCLK_HANDSHAKE_DISABLE 0x00000200 435 + #define SMU7_VCE_MCLK_HANDSHAKE_DISABLE 0x00010000 436 + #define SMU7_VCE_SCLK_HANDSHAKE_DISABLE 0x00020000 437 + 438 + // All 'soft registers' should be uint32_t. 439 + struct SMU73_SoftRegisters 440 + { 441 + uint32_t RefClockFrequency; 442 + uint32_t PmTimerPeriod; 443 + uint32_t FeatureEnables; 444 + 445 + uint32_t PreVBlankGap; 446 + uint32_t VBlankTimeout; 447 + uint32_t TrainTimeGap; 448 + 449 + uint32_t MvddSwitchTime; 450 + uint32_t LongestAcpiTrainTime; 451 + uint32_t AcpiDelay; 452 + uint32_t G5TrainTime; 453 + uint32_t DelayMpllPwron; 454 + uint32_t VoltageChangeTimeout; 455 + 456 + uint32_t HandshakeDisables; 457 + 458 + uint8_t DisplayPhy1Config; 459 + uint8_t DisplayPhy2Config; 460 + uint8_t DisplayPhy3Config; 461 + uint8_t DisplayPhy4Config; 462 + 463 + uint8_t DisplayPhy5Config; 464 + uint8_t DisplayPhy6Config; 465 + uint8_t DisplayPhy7Config; 466 + uint8_t DisplayPhy8Config; 467 + 468 + uint32_t AverageGraphicsActivity; 469 + uint32_t AverageMemoryActivity; 470 + uint32_t AverageGioActivity; 471 + 472 + uint8_t SClkDpmEnabledLevels; 473 + uint8_t MClkDpmEnabledLevels; 474 + uint8_t LClkDpmEnabledLevels; 475 + uint8_t PCIeDpmEnabledLevels; 476 + 477 + uint8_t UVDDpmEnabledLevels; 478 + uint8_t SAMUDpmEnabledLevels; 479 + uint8_t ACPDpmEnabledLevels; 480 + uint8_t VCEDpmEnabledLevels; 481 + 482 + uint32_t DRAM_LOG_ADDR_H; 483 + uint32_t DRAM_LOG_ADDR_L; 484 + uint32_t DRAM_LOG_PHY_ADDR_H; 485 + uint32_t DRAM_LOG_PHY_ADDR_L; 486 + uint32_t DRAM_LOG_BUFF_SIZE; 487 + uint32_t UlvEnterCount; 488 + uint32_t UlvTime; 489 + uint32_t UcodeLoadStatus; 490 + uint32_t Reserved[2]; 491 + 492 + }; 493 + 494 + typedef struct SMU73_SoftRegisters SMU73_SoftRegisters; 495 + 496 + struct SMU73_Firmware_Header 497 + { 498 + uint32_t Digest[5]; 499 + uint32_t Version; 500 + uint32_t HeaderSize; 501 + uint32_t Flags; 502 + uint32_t EntryPoint; 503 + uint32_t CodeSize; 504 + uint32_t ImageSize; 505 + 506 + uint32_t Rtos; 507 + uint32_t SoftRegisters; 508 + uint32_t DpmTable; 509 + uint32_t FanTable; 510 + uint32_t CacConfigTable; 511 + uint32_t CacStatusTable; 512 + 513 + 514 + uint32_t mcRegisterTable; 515 + 516 + 517 + uint32_t mcArbDramTimingTable; 518 + 519 + 520 + 521 + 522 + uint32_t PmFuseTable; 523 + uint32_t Globals; 524 + uint32_t ClockStretcherTable; 525 + uint32_t Reserved[41]; 526 + uint32_t Signature; 527 + }; 528 + 529 + typedef struct SMU73_Firmware_Header SMU73_Firmware_Header; 530 + 531 + #define SMU7_FIRMWARE_HEADER_LOCATION 0x20000 532 + 533 + enum DisplayConfig { 534 + PowerDown = 1, 535 + DP54x4, 536 + DP54x2, 537 + DP54x1, 538 + DP27x4, 539 + DP27x2, 540 + DP27x1, 541 + HDMI297, 542 + HDMI162, 543 + LVDS, 544 + DP324x4, 545 + DP324x2, 546 + DP324x1 547 + }; 548 + 549 + 550 + #define MC_BLOCK_COUNT 1 551 + #define CPL_BLOCK_COUNT 5 552 + #define SE_BLOCK_COUNT 15 553 + #define GC_BLOCK_COUNT 24 554 + 555 + struct SMU7_Local_Cac { 556 + uint8_t BlockId; 557 + uint8_t SignalId; 558 + uint8_t Threshold; 559 + uint8_t Padding; 560 + }; 561 + 562 + typedef struct SMU7_Local_Cac SMU7_Local_Cac; 563 + 564 + struct SMU7_Local_Cac_Table { 565 + 566 + SMU7_Local_Cac CplLocalCac[CPL_BLOCK_COUNT]; 567 + SMU7_Local_Cac McLocalCac[MC_BLOCK_COUNT]; 568 + SMU7_Local_Cac SeLocalCac[SE_BLOCK_COUNT]; 569 + SMU7_Local_Cac GcLocalCac[GC_BLOCK_COUNT]; 570 + }; 571 + 572 + typedef struct SMU7_Local_Cac_Table SMU7_Local_Cac_Table; 573 + 574 + #if !defined(SMC_MICROCODE) 575 + #pragma pack(pop) 576 + #endif 577 + 578 + // Description of Clock Gating bitmask for Tonga: 579 + // System Clock Gating 580 + #define CG_SYS_BITMASK_FIRST_BIT 0 // First bit of Sys CG bitmask 581 + #define CG_SYS_BITMASK_LAST_BIT 9 // Last bit of Sys CG bitmask 582 + #define CG_SYS_BIF_MGLS_SHIFT 0 583 + #define CG_SYS_ROM_SHIFT 1 584 + #define CG_SYS_MC_MGCG_SHIFT 2 585 + #define CG_SYS_MC_MGLS_SHIFT 3 586 + #define CG_SYS_SDMA_MGCG_SHIFT 4 587 + #define CG_SYS_SDMA_MGLS_SHIFT 5 588 + #define CG_SYS_DRM_MGCG_SHIFT 6 589 + #define CG_SYS_HDP_MGCG_SHIFT 7 590 + #define CG_SYS_HDP_MGLS_SHIFT 8 591 + #define CG_SYS_DRM_MGLS_SHIFT 9 592 + 593 + #define CG_SYS_BIF_MGLS_MASK 0x1 594 + #define CG_SYS_ROM_MASK 0x2 595 + #define CG_SYS_MC_MGCG_MASK 0x4 596 + #define CG_SYS_MC_MGLS_MASK 0x8 597 + #define CG_SYS_SDMA_MGCG_MASK 0x10 598 + #define CG_SYS_SDMA_MGLS_MASK 0x20 599 + #define CG_SYS_DRM_MGCG_MASK 0x40 600 + #define CG_SYS_HDP_MGCG_MASK 0x80 601 + #define CG_SYS_HDP_MGLS_MASK 0x100 602 + #define CG_SYS_DRM_MGLS_MASK 0x200 603 + 604 + // Graphics Clock Gating 605 + #define CG_GFX_BITMASK_FIRST_BIT 16 // First bit of Gfx CG bitmask 606 + #define CG_GFX_BITMASK_LAST_BIT 20 // Last bit of Gfx CG bitmask 607 + #define CG_GFX_CGCG_SHIFT 16 608 + #define CG_GFX_CGLS_SHIFT 17 609 + #define CG_CPF_MGCG_SHIFT 18 610 + #define CG_RLC_MGCG_SHIFT 19 611 + #define CG_GFX_OTHERS_MGCG_SHIFT 20 612 + 613 + #define CG_GFX_CGCG_MASK 0x00010000 614 + #define CG_GFX_CGLS_MASK 0x00020000 615 + #define CG_CPF_MGCG_MASK 0x00040000 616 + #define CG_RLC_MGCG_MASK 0x00080000 617 + #define CG_GFX_OTHERS_MGCG_MASK 0x00100000 618 + 619 + 620 + 621 + // Voltage Regulator Configuration 622 + // VR Config info is contained in dpmTable.VRConfig 623 + 624 + #define VRCONF_VDDC_MASK 0x000000FF 625 + #define VRCONF_VDDC_SHIFT 0 626 + #define VRCONF_VDDGFX_MASK 0x0000FF00 627 + #define VRCONF_VDDGFX_SHIFT 8 628 + #define VRCONF_VDDCI_MASK 0x00FF0000 629 + #define VRCONF_VDDCI_SHIFT 16 630 + #define VRCONF_MVDD_MASK 0xFF000000 631 + #define VRCONF_MVDD_SHIFT 24 632 + 633 + #define VR_MERGED_WITH_VDDC 0 634 + #define VR_SVI2_PLANE_1 1 635 + #define VR_SVI2_PLANE_2 2 636 + #define VR_SMIO_PATTERN_1 3 637 + #define VR_SMIO_PATTERN_2 4 638 + #define VR_STATIC_VOLTAGE 5 639 + 640 + // Clock Stretcher Configuration 641 + 642 + #define CLOCK_STRETCHER_MAX_ENTRIES 0x4 643 + #define CKS_LOOKUPTable_MAX_ENTRIES 0x4 644 + 645 + // The 'settings' field is subdivided in the following way: 646 + #define CLOCK_STRETCHER_SETTING_DDT_MASK 0x01 647 + #define CLOCK_STRETCHER_SETTING_DDT_SHIFT 0x0 648 + #define CLOCK_STRETCHER_SETTING_STRETCH_AMOUNT_MASK 0x1E 649 + #define CLOCK_STRETCHER_SETTING_STRETCH_AMOUNT_SHIFT 0x1 650 + #define CLOCK_STRETCHER_SETTING_ENABLE_MASK 0x80 651 + #define CLOCK_STRETCHER_SETTING_ENABLE_SHIFT 0x7 652 + 653 + struct SMU_ClockStretcherDataTableEntry { 654 + uint8_t minVID; 655 + uint8_t maxVID; 656 + 657 + 658 + uint16_t setting; 659 + }; 660 + typedef struct SMU_ClockStretcherDataTableEntry SMU_ClockStretcherDataTableEntry; 661 + 662 + struct SMU_ClockStretcherDataTable { 663 + SMU_ClockStretcherDataTableEntry ClockStretcherDataTableEntry[CLOCK_STRETCHER_MAX_ENTRIES]; 664 + }; 665 + typedef struct SMU_ClockStretcherDataTable SMU_ClockStretcherDataTable; 666 + 667 + struct SMU_CKS_LOOKUPTableEntry { 668 + uint16_t minFreq; 669 + uint16_t maxFreq; 670 + 671 + uint8_t setting; 672 + uint8_t padding[3]; 673 + }; 674 + typedef struct SMU_CKS_LOOKUPTableEntry SMU_CKS_LOOKUPTableEntry; 675 + 676 + struct SMU_CKS_LOOKUPTable { 677 + SMU_CKS_LOOKUPTableEntry CKS_LOOKUPTableEntry[CKS_LOOKUPTable_MAX_ENTRIES]; 678 + }; 679 + typedef struct SMU_CKS_LOOKUPTable SMU_CKS_LOOKUPTable; 680 + 681 + struct AgmAvfsData_t { 682 + uint16_t avgPsmCount[28]; 683 + uint16_t minPsmCount[28]; 684 + }; 685 + typedef struct AgmAvfsData_t AgmAvfsData_t; 686 + 687 + // AVFS DEFINES 688 + 689 + enum VFT_COLUMNS { 690 + SCLK0, 691 + SCLK1, 692 + SCLK2, 693 + SCLK3, 694 + SCLK4, 695 + SCLK5, 696 + SCLK6, 697 + SCLK7, 698 + 699 + NUM_VFT_COLUMNS 700 + }; 701 + 702 + #define TEMP_RANGE_MAXSTEPS 12 703 + struct VFT_CELL_t { 704 + uint16_t Voltage; 705 + }; 706 + 707 + typedef struct VFT_CELL_t VFT_CELL_t; 708 + 709 + struct VFT_TABLE_t { 710 + VFT_CELL_t Cell[TEMP_RANGE_MAXSTEPS][NUM_VFT_COLUMNS]; 711 + uint16_t AvfsGbv [NUM_VFT_COLUMNS]; 712 + uint16_t BtcGbv [NUM_VFT_COLUMNS]; 713 + uint16_t Temperature [TEMP_RANGE_MAXSTEPS]; 714 + 715 + uint8_t NumTemperatureSteps; 716 + uint8_t padding[3]; 717 + }; 718 + typedef struct VFT_TABLE_t VFT_TABLE_t; 719 + 720 + #endif
+799
drivers/gpu/drm/amd/powerplay/inc/smu73_discrete.h
··· 1 + /* 2 + * Copyright 2015 Advanced Micro Devices, Inc. 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a 5 + * copy of this software and associated documentation files (the "Software"), 6 + * to deal in the Software without restriction, including without limitation 7 + * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 + * and/or sell copies of the Software, and to permit persons to whom the 9 + * Software is furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included in 12 + * all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 + * OTHER DEALINGS IN THE SOFTWARE. 21 + * 22 + */ 23 + #ifndef _SMU73_DISCRETE_H_ 24 + #define _SMU73_DISCRETE_H_ 25 + 26 + #include "smu73.h" 27 + 28 + #pragma pack(push, 1) 29 + 30 + struct SMIO_Pattern 31 + { 32 + uint16_t Voltage; 33 + uint8_t Smio; 34 + uint8_t padding; 35 + }; 36 + 37 + typedef struct SMIO_Pattern SMIO_Pattern; 38 + 39 + struct SMIO_Table 40 + { 41 + SMIO_Pattern Pattern[SMU_MAX_SMIO_LEVELS]; 42 + }; 43 + 44 + typedef struct SMIO_Table SMIO_Table; 45 + 46 + struct SMU73_Discrete_GraphicsLevel { 47 + uint32_t MinVoltage; 48 + 49 + uint32_t SclkFrequency; 50 + 51 + uint8_t pcieDpmLevel; 52 + uint8_t DeepSleepDivId; 53 + uint16_t ActivityLevel; 54 + uint32_t CgSpllFuncCntl3; 55 + uint32_t CgSpllFuncCntl4; 56 + uint32_t SpllSpreadSpectrum; 57 + uint32_t SpllSpreadSpectrum2; 58 + uint32_t CcPwrDynRm; 59 + uint32_t CcPwrDynRm1; 60 + uint8_t SclkDid; 61 + uint8_t DisplayWatermark; 62 + uint8_t EnabledForActivity; 63 + uint8_t EnabledForThrottle; 64 + uint8_t UpHyst; 65 + uint8_t DownHyst; 66 + uint8_t VoltageDownHyst; 67 + uint8_t PowerThrottle; 68 + }; 69 + 70 + typedef struct SMU73_Discrete_GraphicsLevel SMU73_Discrete_GraphicsLevel; 71 + 72 + struct SMU73_Discrete_ACPILevel { 73 + uint32_t Flags; 74 + uint32_t MinVoltage; 75 + uint32_t SclkFrequency; 76 + uint8_t SclkDid; 77 + uint8_t DisplayWatermark; 78 + uint8_t DeepSleepDivId; 79 + uint8_t padding; 80 + uint32_t CgSpllFuncCntl; 81 + uint32_t CgSpllFuncCntl2; 82 + uint32_t CgSpllFuncCntl3; 83 + uint32_t CgSpllFuncCntl4; 84 + uint32_t SpllSpreadSpectrum; 85 + uint32_t SpllSpreadSpectrum2; 86 + uint32_t CcPwrDynRm; 87 + uint32_t CcPwrDynRm1; 88 + }; 89 + 90 + typedef struct SMU73_Discrete_ACPILevel SMU73_Discrete_ACPILevel; 91 + 92 + struct SMU73_Discrete_Ulv { 93 + uint32_t CcPwrDynRm; 94 + uint32_t CcPwrDynRm1; 95 + uint16_t VddcOffset; 96 + uint8_t VddcOffsetVid; 97 + uint8_t VddcPhase; 98 + uint32_t Reserved; 99 + }; 100 + 101 + typedef struct SMU73_Discrete_Ulv SMU73_Discrete_Ulv; 102 + 103 + struct SMU73_Discrete_MemoryLevel 104 + { 105 + uint32_t MinVoltage; 106 + uint32_t MinMvdd; 107 + 108 + uint32_t MclkFrequency; 109 + 110 + uint8_t StutterEnable; 111 + uint8_t FreqRange; 112 + uint8_t EnabledForThrottle; 113 + uint8_t EnabledForActivity; 114 + 115 + uint8_t UpHyst; 116 + uint8_t DownHyst; 117 + uint8_t VoltageDownHyst; 118 + uint8_t padding; 119 + 120 + uint16_t ActivityLevel; 121 + uint8_t DisplayWatermark; 122 + uint8_t MclkDivider; 123 + }; 124 + 125 + typedef struct SMU73_Discrete_MemoryLevel SMU73_Discrete_MemoryLevel; 126 + 127 + struct SMU73_Discrete_LinkLevel 128 + { 129 + uint8_t PcieGenSpeed; ///< 0:PciE-gen1 1:PciE-gen2 2:PciE-gen3 130 + uint8_t PcieLaneCount; ///< 1=x1, 2=x2, 3=x4, 4=x8, 5=x12, 6=x16 131 + uint8_t EnabledForActivity; 132 + uint8_t SPC; 133 + uint32_t DownThreshold; 134 + uint32_t UpThreshold; 135 + uint32_t Reserved; 136 + }; 137 + 138 + typedef struct SMU73_Discrete_LinkLevel SMU73_Discrete_LinkLevel; 139 + 140 + 141 + // MC ARB DRAM Timing registers. 142 + struct SMU73_Discrete_MCArbDramTimingTableEntry 143 + { 144 + uint32_t McArbDramTiming; 145 + uint32_t McArbDramTiming2; 146 + uint8_t McArbBurstTime; 147 + uint8_t TRRDS; 148 + uint8_t TRRDL; 149 + uint8_t padding; 150 + }; 151 + 152 + typedef struct SMU73_Discrete_MCArbDramTimingTableEntry SMU73_Discrete_MCArbDramTimingTableEntry; 153 + 154 + struct SMU73_Discrete_MCArbDramTimingTable 155 + { 156 + SMU73_Discrete_MCArbDramTimingTableEntry entries[SMU__NUM_SCLK_DPM_STATE][SMU__NUM_MCLK_DPM_LEVELS]; 157 + }; 158 + 159 + typedef struct SMU73_Discrete_MCArbDramTimingTable SMU73_Discrete_MCArbDramTimingTable; 160 + 161 + // UVD VCLK/DCLK state (level) definition. 162 + struct SMU73_Discrete_UvdLevel 163 + { 164 + uint32_t VclkFrequency; 165 + uint32_t DclkFrequency; 166 + uint32_t MinVoltage; 167 + uint8_t VclkDivider; 168 + uint8_t DclkDivider; 169 + uint8_t padding[2]; 170 + }; 171 + 172 + typedef struct SMU73_Discrete_UvdLevel SMU73_Discrete_UvdLevel; 173 + 174 + // Clocks for other external blocks (VCE, ACP, SAMU). 175 + struct SMU73_Discrete_ExtClkLevel 176 + { 177 + uint32_t Frequency; 178 + uint32_t MinVoltage; 179 + uint8_t Divider; 180 + uint8_t padding[3]; 181 + }; 182 + 183 + typedef struct SMU73_Discrete_ExtClkLevel SMU73_Discrete_ExtClkLevel; 184 + 185 + struct SMU73_Discrete_StateInfo 186 + { 187 + uint32_t SclkFrequency; 188 + uint32_t MclkFrequency; 189 + uint32_t VclkFrequency; 190 + uint32_t DclkFrequency; 191 + uint32_t SamclkFrequency; 192 + uint32_t AclkFrequency; 193 + uint32_t EclkFrequency; 194 + uint16_t MvddVoltage; 195 + uint16_t padding16; 196 + uint8_t DisplayWatermark; 197 + uint8_t McArbIndex; 198 + uint8_t McRegIndex; 199 + uint8_t SeqIndex; 200 + uint8_t SclkDid; 201 + int8_t SclkIndex; 202 + int8_t MclkIndex; 203 + uint8_t PCIeGen; 204 + 205 + }; 206 + 207 + typedef struct SMU73_Discrete_StateInfo SMU73_Discrete_StateInfo; 208 + 209 + struct SMU73_Discrete_DpmTable 210 + { 211 + // Multi-DPM controller settings 212 + SMU73_PIDController GraphicsPIDController; 213 + SMU73_PIDController MemoryPIDController; 214 + SMU73_PIDController LinkPIDController; 215 + 216 + uint32_t SystemFlags; 217 + 218 + // SMIO masks for voltage and phase controls 219 + uint32_t VRConfig; 220 + uint32_t SmioMask1; 221 + uint32_t SmioMask2; 222 + SMIO_Table SmioTable1; 223 + SMIO_Table SmioTable2; 224 + 225 + uint32_t MvddLevelCount; 226 + 227 + 228 + uint8_t BapmVddcVidHiSidd [SMU73_MAX_LEVELS_VDDC]; 229 + uint8_t BapmVddcVidLoSidd [SMU73_MAX_LEVELS_VDDC]; 230 + uint8_t BapmVddcVidHiSidd2 [SMU73_MAX_LEVELS_VDDC]; 231 + 232 + uint8_t GraphicsDpmLevelCount; 233 + uint8_t MemoryDpmLevelCount; 234 + uint8_t LinkLevelCount; 235 + uint8_t MasterDeepSleepControl; 236 + 237 + uint8_t UvdLevelCount; 238 + uint8_t VceLevelCount; 239 + uint8_t AcpLevelCount; 240 + uint8_t SamuLevelCount; 241 + 242 + uint8_t ThermOutGpio; 243 + uint8_t ThermOutPolarity; 244 + uint8_t ThermOutMode; 245 + uint8_t BootPhases; 246 + uint32_t Reserved[4]; 247 + 248 + // State table entries for each DPM state 249 + SMU73_Discrete_GraphicsLevel GraphicsLevel [SMU73_MAX_LEVELS_GRAPHICS]; 250 + SMU73_Discrete_MemoryLevel MemoryACPILevel; 251 + SMU73_Discrete_MemoryLevel MemoryLevel [SMU73_MAX_LEVELS_MEMORY]; 252 + SMU73_Discrete_LinkLevel LinkLevel [SMU73_MAX_LEVELS_LINK]; 253 + SMU73_Discrete_ACPILevel ACPILevel; 254 + SMU73_Discrete_UvdLevel UvdLevel [SMU73_MAX_LEVELS_UVD]; 255 + SMU73_Discrete_ExtClkLevel VceLevel [SMU73_MAX_LEVELS_VCE]; 256 + SMU73_Discrete_ExtClkLevel AcpLevel [SMU73_MAX_LEVELS_ACP]; 257 + SMU73_Discrete_ExtClkLevel SamuLevel [SMU73_MAX_LEVELS_SAMU]; 258 + SMU73_Discrete_Ulv Ulv; 259 + 260 + uint32_t SclkStepSize; 261 + uint32_t Smio [SMU73_MAX_ENTRIES_SMIO]; 262 + 263 + uint8_t UvdBootLevel; 264 + uint8_t VceBootLevel; 265 + uint8_t AcpBootLevel; 266 + uint8_t SamuBootLevel; 267 + 268 + uint8_t GraphicsBootLevel; 269 + uint8_t GraphicsVoltageChangeEnable; 270 + uint8_t GraphicsThermThrottleEnable; 271 + uint8_t GraphicsInterval; 272 + 273 + uint8_t VoltageInterval; 274 + uint8_t ThermalInterval; 275 + uint16_t TemperatureLimitHigh; 276 + 277 + uint16_t TemperatureLimitLow; 278 + uint8_t MemoryBootLevel; 279 + uint8_t MemoryVoltageChangeEnable; 280 + 281 + uint16_t BootMVdd; 282 + uint8_t MemoryInterval; 283 + uint8_t MemoryThermThrottleEnable; 284 + 285 + uint16_t VoltageResponseTime; 286 + uint16_t PhaseResponseTime; 287 + 288 + uint8_t PCIeBootLinkLevel; 289 + uint8_t PCIeGenInterval; 290 + uint8_t DTEInterval; 291 + uint8_t DTEMode; 292 + 293 + uint8_t SVI2Enable; 294 + uint8_t VRHotGpio; 295 + uint8_t AcDcGpio; 296 + uint8_t ThermGpio; 297 + 298 + uint16_t PPM_PkgPwrLimit; 299 + uint16_t PPM_TemperatureLimit; 300 + 301 + uint16_t DefaultTdp; 302 + uint16_t TargetTdp; 303 + 304 + uint16_t FpsHighThreshold; 305 + uint16_t FpsLowThreshold; 306 + 307 + uint16_t TemperatureLimitEdge; 308 + uint16_t TemperatureLimitHotspot; 309 + uint16_t TemperatureLimitLiquid1; 310 + uint16_t TemperatureLimitLiquid2; 311 + uint16_t TemperatureLimitVrVddc; 312 + uint16_t TemperatureLimitVrMvdd; 313 + uint16_t TemperatureLimitPlx; 314 + 315 + uint16_t FanGainEdge; 316 + uint16_t FanGainHotspot; 317 + uint16_t FanGainLiquid; 318 + uint16_t FanGainVrVddc; 319 + uint16_t FanGainVrMvdd; 320 + uint16_t FanGainPlx; 321 + uint16_t FanGainHbm; 322 + 323 + uint8_t Liquid1_I2C_address; 324 + uint8_t Liquid2_I2C_address; 325 + uint8_t Vr_I2C_address; 326 + uint8_t Plx_I2C_address; 327 + 328 + uint8_t GeminiMode; 329 + uint8_t spare17[3]; 330 + uint32_t GeminiApertureHigh; 331 + uint32_t GeminiApertureLow; 332 + 333 + uint8_t Liquid_I2C_LineSCL; 334 + uint8_t Liquid_I2C_LineSDA; 335 + uint8_t Vr_I2C_LineSCL; 336 + uint8_t Vr_I2C_LineSDA; 337 + uint8_t Plx_I2C_LineSCL; 338 + uint8_t Plx_I2C_LineSDA; 339 + 340 + uint8_t spare1253[2]; 341 + uint32_t spare123[2]; 342 + 343 + uint8_t DTEAmbientTempBase; 344 + uint8_t DTETjOffset; 345 + uint8_t GpuTjMax; 346 + uint8_t GpuTjHyst; 347 + 348 + uint16_t BootVddc; 349 + uint16_t BootVddci; 350 + 351 + uint32_t BAPM_TEMP_GRADIENT; 352 + 353 + uint32_t LowSclkInterruptThreshold; 354 + uint32_t VddGfxReChkWait; 355 + 356 + uint8_t ClockStretcherAmount; 357 + uint8_t Sclk_CKS_masterEn0_7; 358 + uint8_t Sclk_CKS_masterEn8_15; 359 + uint8_t DPMFreezeAndForced; 360 + 361 + uint8_t Sclk_voltageOffset[8]; 362 + 363 + SMU_ClockStretcherDataTable ClockStretcherDataTable; 364 + SMU_CKS_LOOKUPTable CKS_LOOKUPTable; 365 + }; 366 + 367 + typedef struct SMU73_Discrete_DpmTable SMU73_Discrete_DpmTable; 368 + 369 + 370 + // --------------------------------------------------- Fan Table ----------------------------------------------------------- 371 + struct SMU73_Discrete_FanTable 372 + { 373 + uint16_t FdoMode; 374 + int16_t TempMin; 375 + int16_t TempMed; 376 + int16_t TempMax; 377 + int16_t Slope1; 378 + int16_t Slope2; 379 + int16_t FdoMin; 380 + int16_t HystUp; 381 + int16_t HystDown; 382 + int16_t HystSlope; 383 + int16_t TempRespLim; 384 + int16_t TempCurr; 385 + int16_t SlopeCurr; 386 + int16_t PwmCurr; 387 + uint32_t RefreshPeriod; 388 + int16_t FdoMax; 389 + uint8_t TempSrc; 390 + int8_t Padding; 391 + }; 392 + 393 + typedef struct SMU73_Discrete_FanTable SMU73_Discrete_FanTable; 394 + 395 + #define SMU7_DISCRETE_GPIO_SCLK_DEBUG 4 396 + #define SMU7_DISCRETE_GPIO_SCLK_DEBUG_BIT (0x1 << SMU7_DISCRETE_GPIO_SCLK_DEBUG) 397 + 398 + 399 + 400 + struct SMU7_MclkDpmScoreboard 401 + { 402 + 403 + uint32_t PercentageBusy; 404 + 405 + int32_t PIDError; 406 + int32_t PIDIntegral; 407 + int32_t PIDOutput; 408 + 409 + uint32_t SigmaDeltaAccum; 410 + uint32_t SigmaDeltaOutput; 411 + uint32_t SigmaDeltaLevel; 412 + 413 + uint32_t UtilizationSetpoint; 414 + 415 + uint8_t TdpClampMode; 416 + uint8_t TdcClampMode; 417 + uint8_t ThermClampMode; 418 + uint8_t VoltageBusy; 419 + 420 + int8_t CurrLevel; 421 + int8_t TargLevel; 422 + uint8_t LevelChangeInProgress; 423 + uint8_t UpHyst; 424 + 425 + uint8_t DownHyst; 426 + uint8_t VoltageDownHyst; 427 + uint8_t DpmEnable; 428 + uint8_t DpmRunning; 429 + 430 + uint8_t DpmForce; 431 + uint8_t DpmForceLevel; 432 + uint8_t DisplayWatermark; 433 + uint8_t McArbIndex; 434 + 435 + uint32_t MinimumPerfMclk; 436 + 437 + uint8_t AcpiReq; 438 + uint8_t AcpiAck; 439 + uint8_t MclkSwitchInProgress; 440 + uint8_t MclkSwitchCritical; 441 + 442 + uint8_t IgnoreVBlank; 443 + uint8_t TargetMclkIndex; 444 + uint8_t TargetMvddIndex; 445 + uint8_t MclkSwitchResult; 446 + 447 + uint16_t VbiFailureCount; 448 + uint8_t VbiWaitCounter; 449 + uint8_t EnabledLevelsChange; 450 + 451 + uint16_t LevelResidencyCounters [SMU73_MAX_LEVELS_MEMORY]; 452 + uint16_t LevelSwitchCounters [SMU73_MAX_LEVELS_MEMORY]; 453 + 454 + void (*TargetStateCalculator)(uint8_t); 455 + void (*SavedTargetStateCalculator)(uint8_t); 456 + 457 + uint16_t AutoDpmInterval; 458 + uint16_t AutoDpmRange; 459 + 460 + uint16_t VbiTimeoutCount; 461 + uint16_t MclkSwitchingTime; 462 + 463 + uint8_t fastSwitch; 464 + uint8_t Save_PIC_VDDGFX_EXIT; 465 + uint8_t Save_PIC_VDDGFX_ENTER; 466 + uint8_t padding; 467 + 468 + }; 469 + 470 + typedef struct SMU7_MclkDpmScoreboard SMU7_MclkDpmScoreboard; 471 + 472 + struct SMU7_UlvScoreboard 473 + { 474 + uint8_t EnterUlv; 475 + uint8_t ExitUlv; 476 + uint8_t UlvActive; 477 + uint8_t WaitingForUlv; 478 + uint8_t UlvEnable; 479 + uint8_t UlvRunning; 480 + uint8_t UlvMasterEnable; 481 + uint8_t padding; 482 + uint32_t UlvAbortedCount; 483 + uint32_t UlvTimeStamp; 484 + }; 485 + 486 + typedef struct SMU7_UlvScoreboard SMU7_UlvScoreboard; 487 + 488 + struct VddgfxSavedRegisters 489 + { 490 + uint32_t GPU_DBG[3]; 491 + uint32_t MEC_BaseAddress_Hi; 492 + uint32_t MEC_BaseAddress_Lo; 493 + uint32_t THM_TMON0_CTRL2__RDIR_PRESENT; 494 + uint32_t THM_TMON1_CTRL2__RDIR_PRESENT; 495 + uint32_t CP_INT_CNTL; 496 + }; 497 + 498 + typedef struct VddgfxSavedRegisters VddgfxSavedRegisters; 499 + 500 + struct SMU7_VddGfxScoreboard 501 + { 502 + uint8_t VddGfxEnable; 503 + uint8_t VddGfxActive; 504 + uint8_t VPUResetOccured; 505 + uint8_t padding; 506 + 507 + uint32_t VddGfxEnteredCount; 508 + uint32_t VddGfxAbortedCount; 509 + 510 + uint32_t VddGfxVid; 511 + 512 + VddgfxSavedRegisters SavedRegisters; 513 + }; 514 + 515 + typedef struct SMU7_VddGfxScoreboard SMU7_VddGfxScoreboard; 516 + 517 + struct SMU7_TdcLimitScoreboard { 518 + uint8_t Enable; 519 + uint8_t Running; 520 + uint16_t Alpha; 521 + uint32_t FilteredIddc; 522 + uint32_t IddcLimit; 523 + uint32_t IddcHyst; 524 + SMU7_HystController_Data HystControllerData; 525 + }; 526 + 527 + typedef struct SMU7_TdcLimitScoreboard SMU7_TdcLimitScoreboard; 528 + 529 + struct SMU7_PkgPwrLimitScoreboard { 530 + uint8_t Enable; 531 + uint8_t Running; 532 + uint16_t Alpha; 533 + uint32_t FilteredPkgPwr; 534 + uint32_t Limit; 535 + uint32_t Hyst; 536 + uint32_t LimitFromDriver; 537 + SMU7_HystController_Data HystControllerData; 538 + }; 539 + 540 + typedef struct SMU7_PkgPwrLimitScoreboard SMU7_PkgPwrLimitScoreboard; 541 + 542 + struct SMU7_BapmScoreboard { 543 + uint32_t source_powers[SMU73_DTE_SOURCES]; 544 + uint32_t source_powers_last[SMU73_DTE_SOURCES]; 545 + int32_t entity_temperatures[SMU73_NUM_GPU_TES]; 546 + int32_t initial_entity_temperatures[SMU73_NUM_GPU_TES]; 547 + int32_t Limit; 548 + int32_t Hyst; 549 + int32_t therm_influence_coeff_table[SMU73_DTE_ITERATIONS * SMU73_DTE_SOURCES * SMU73_DTE_SINKS * 2]; 550 + int32_t therm_node_table[SMU73_DTE_ITERATIONS * SMU73_DTE_SOURCES * SMU73_DTE_SINKS]; 551 + uint16_t ConfigTDPPowerScalar; 552 + uint16_t FanSpeedPowerScalar; 553 + uint16_t OverDrivePowerScalar; 554 + uint16_t OverDriveLimitScalar; 555 + uint16_t FinalPowerScalar; 556 + uint8_t VariantID; 557 + uint8_t spare997; 558 + 559 + SMU7_HystController_Data HystControllerData; 560 + 561 + int32_t temperature_gradient_slope; 562 + int32_t temperature_gradient; 563 + uint32_t measured_temperature; 564 + }; 565 + 566 + 567 + typedef struct SMU7_BapmScoreboard SMU7_BapmScoreboard; 568 + 569 + struct SMU7_AcpiScoreboard { 570 + uint32_t SavedInterruptMask[2]; 571 + uint8_t LastACPIRequest; 572 + uint8_t CgBifResp; 573 + uint8_t RequestType; 574 + uint8_t Padding; 575 + SMU73_Discrete_ACPILevel D0Level; 576 + }; 577 + 578 + typedef struct SMU7_AcpiScoreboard SMU7_AcpiScoreboard; 579 + 580 + struct SMU_QuadraticCoeffs { 581 + int32_t m1; 582 + uint32_t b; 583 + 584 + int16_t m2; 585 + uint8_t m1_shift; 586 + uint8_t m2_shift; 587 + }; 588 + 589 + typedef struct SMU_QuadraticCoeffs SMU_QuadraticCoeffs; 590 + 591 + struct SMU73_Discrete_PmFuses { 592 + /* dw0-dw1 */ 593 + uint8_t BapmVddCVidHiSidd[8]; 594 + 595 + /* dw2-dw3 */ 596 + uint8_t BapmVddCVidLoSidd[8]; 597 + 598 + /* dw4-dw5 */ 599 + uint8_t VddCVid[8]; 600 + 601 + /* dw1*/ 602 + uint8_t SviLoadLineEn; 603 + uint8_t SviLoadLineVddC; 604 + uint8_t SviLoadLineTrimVddC; 605 + uint8_t SviLoadLineOffsetVddC; 606 + 607 + /* dw2 */ 608 + uint16_t TDC_VDDC_PkgLimit; 609 + uint8_t TDC_VDDC_ThrottleReleaseLimitPerc; 610 + uint8_t TDC_MAWt; 611 + 612 + /* dw3 */ 613 + uint8_t TdcWaterfallCtl; 614 + uint8_t LPMLTemperatureMin; 615 + uint8_t LPMLTemperatureMax; 616 + uint8_t Reserved; 617 + 618 + /* dw4-dw7 */ 619 + uint8_t LPMLTemperatureScaler[16]; 620 + 621 + /* dw8-dw9 */ 622 + int16_t FuzzyFan_ErrorSetDelta; 623 + int16_t FuzzyFan_ErrorRateSetDelta; 624 + int16_t FuzzyFan_PwmSetDelta; 625 + uint16_t Reserved6; 626 + 627 + /* dw10-dw14 */ 628 + uint8_t GnbLPML[16]; 629 + 630 + /* dw15 */ 631 + uint8_t GnbLPMLMaxVid; 632 + uint8_t GnbLPMLMinVid; 633 + uint8_t Reserved1[2]; 634 + 635 + /* dw16 */ 636 + uint16_t BapmVddCBaseLeakageHiSidd; 637 + uint16_t BapmVddCBaseLeakageLoSidd; 638 + 639 + /* AVFS */ 640 + uint16_t VFT_Temp[3]; 641 + uint16_t padding; 642 + 643 + SMU_QuadraticCoeffs VFT_ATE[3]; 644 + 645 + SMU_QuadraticCoeffs AVFS_GB; 646 + SMU_QuadraticCoeffs ATE_ACBTC_GB; 647 + 648 + SMU_QuadraticCoeffs P2V; 649 + 650 + uint32_t PsmCharzFreq; 651 + 652 + uint16_t InversionVoltage; 653 + uint16_t PsmCharzTemp; 654 + 655 + uint32_t EnabledAvfsModules; 656 + }; 657 + 658 + typedef struct SMU73_Discrete_PmFuses SMU73_Discrete_PmFuses; 659 + 660 + struct SMU7_Discrete_Log_Header_Table { 661 + uint32_t version; 662 + uint32_t asic_id; 663 + uint16_t flags; 664 + uint16_t entry_size; 665 + uint32_t total_size; 666 + uint32_t num_of_entries; 667 + uint8_t type; 668 + uint8_t mode; 669 + uint8_t filler_0[2]; 670 + uint32_t filler_1[2]; 671 + }; 672 + 673 + typedef struct SMU7_Discrete_Log_Header_Table SMU7_Discrete_Log_Header_Table; 674 + 675 + struct SMU7_Discrete_Log_Cntl { 676 + uint8_t Enabled; 677 + uint8_t Type; 678 + uint8_t padding[2]; 679 + uint32_t BufferSize; 680 + uint32_t SamplesLogged; 681 + uint32_t SampleSize; 682 + uint32_t AddrL; 683 + uint32_t AddrH; 684 + }; 685 + 686 + typedef struct SMU7_Discrete_Log_Cntl SMU7_Discrete_Log_Cntl; 687 + 688 + #define CAC_ACC_NW_NUM_OF_SIGNALS 87 689 + 690 + struct SMU7_Discrete_Cac_Collection_Table { 691 + uint32_t temperature; 692 + uint32_t cac_acc_nw[CAC_ACC_NW_NUM_OF_SIGNALS]; 693 + }; 694 + 695 + typedef struct SMU7_Discrete_Cac_Collection_Table SMU7_Discrete_Cac_Collection_Table; 696 + 697 + struct SMU7_Discrete_Cac_Verification_Table { 698 + uint32_t VddcTotalPower; 699 + uint32_t VddcLeakagePower; 700 + uint32_t VddcConstantPower; 701 + uint32_t VddcGfxDynamicPower; 702 + uint32_t VddcUvdDynamicPower; 703 + uint32_t VddcVceDynamicPower; 704 + uint32_t VddcAcpDynamicPower; 705 + uint32_t VddcPcieDynamicPower; 706 + uint32_t VddcDceDynamicPower; 707 + uint32_t VddcCurrent; 708 + uint32_t VddcVoltage; 709 + uint32_t VddciTotalPower; 710 + uint32_t VddciLeakagePower; 711 + uint32_t VddciConstantPower; 712 + uint32_t VddciDynamicPower; 713 + uint32_t Vddr1TotalPower; 714 + uint32_t Vddr1LeakagePower; 715 + uint32_t Vddr1ConstantPower; 716 + uint32_t Vddr1DynamicPower; 717 + uint32_t spare[4]; 718 + uint32_t temperature; 719 + }; 720 + 721 + typedef struct SMU7_Discrete_Cac_Verification_Table SMU7_Discrete_Cac_Verification_Table; 722 + 723 + struct SMU7_Discrete_Pm_Status_Table { 724 + //Thermal entities 725 + int32_t T_meas_max[SMU73_THERMAL_INPUT_LOOP_COUNT]; 726 + int32_t T_meas_acc[SMU73_THERMAL_INPUT_LOOP_COUNT]; 727 + int32_t T_meas_acc_cnt[SMU73_THERMAL_INPUT_LOOP_COUNT]; 728 + uint32_t T_hbm_acc; 729 + 730 + //Voltage domains 731 + uint32_t I_calc_max; 732 + uint32_t I_calc_acc; 733 + uint32_t P_meas_acc; 734 + uint32_t V_meas_load_acc; 735 + uint32_t I_meas_acc; 736 + uint32_t P_meas_acc_vddci; 737 + uint32_t V_meas_load_acc_vddci; 738 + uint32_t I_meas_acc_vddci; 739 + 740 + //Frequency 741 + uint16_t Sclk_dpm_residency[8]; 742 + uint16_t Uvd_dpm_residency[8]; 743 + uint16_t Vce_dpm_residency[8]; 744 + 745 + //Chip 746 + uint32_t P_roc_acc; 747 + uint32_t PkgPwr_max; 748 + uint32_t PkgPwr_acc; 749 + uint32_t MclkSwitchingTime_max; 750 + uint32_t MclkSwitchingTime_acc; 751 + uint32_t FanPwm_acc; 752 + uint32_t FanRpm_acc; 753 + uint32_t Gfx_busy_acc; 754 + uint32_t Mc_busy_acc; 755 + uint32_t Fps_acc; 756 + 757 + uint32_t AccCnt; 758 + }; 759 + 760 + typedef struct SMU7_Discrete_Pm_Status_Table SMU7_Discrete_Pm_Status_Table; 761 + 762 + //FIXME THESE NEED TO BE UPDATED 763 + #define SMU7_SCLK_CAC 0x561 764 + #define SMU7_MCLK_CAC 0xF9 765 + #define SMU7_VCLK_CAC 0x2DE 766 + #define SMU7_DCLK_CAC 0x2DE 767 + #define SMU7_ECLK_CAC 0x25E 768 + #define SMU7_ACLK_CAC 0x25E 769 + #define SMU7_SAMCLK_CAC 0x25E 770 + #define SMU7_DISPCLK_CAC 0x100 771 + #define SMU7_CAC_CONSTANT 0x2EE3430 772 + #define SMU7_CAC_CONSTANT_SHIFT 18 773 + 774 + #define SMU7_VDDCI_MCLK_CONST 1765 775 + #define SMU7_VDDCI_MCLK_CONST_SHIFT 16 776 + #define SMU7_VDDCI_VDDCI_CONST 50958 777 + #define SMU7_VDDCI_VDDCI_CONST_SHIFT 14 778 + #define SMU7_VDDCI_CONST 11781 779 + #define SMU7_VDDCI_STROBE_PWR 1331 780 + 781 + #define SMU7_VDDR1_CONST 693 782 + #define SMU7_VDDR1_CAC_WEIGHT 20 783 + #define SMU7_VDDR1_CAC_WEIGHT_SHIFT 19 784 + #define SMU7_VDDR1_STROBE_PWR 512 785 + 786 + #define SMU7_AREA_COEFF_UVD 0xA78 787 + #define SMU7_AREA_COEFF_VCE 0x190A 788 + #define SMU7_AREA_COEFF_ACP 0x22D1 789 + #define SMU7_AREA_COEFF_SAMU 0x534 790 + 791 + //ThermOutMode values 792 + #define SMU7_THERM_OUT_MODE_DISABLE 0x0 793 + #define SMU7_THERM_OUT_MODE_THERM_ONLY 0x1 794 + #define SMU7_THERM_OUT_MODE_THERM_VRHOT 0x2 795 + 796 + #pragma pack(pop) 797 + 798 + #endif 799 +