mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2026-07-31 08:38:30 -05:00
Fix tRP measurement on Intel LPDDR5 laptop
Use tRPpb instead of tRPab
This commit is contained in:
@@ -106,7 +106,7 @@ void get_imc_config_intel_mtl(void)
|
||||
imc.tRCD = (*ptr >> 22) & 0xFF;
|
||||
|
||||
ptr = (uintptr_t*)(mchbar_addr + offset + MTL_MMR_CH0_PRE_REG);
|
||||
imc.tRP = (*ptr >> 10) & 0xFF;
|
||||
imc.tRP = *ptr & 0xFF;
|
||||
|
||||
ptr32 = (uint32_t*)((uintptr_t)mchbar_addr + offset + MTL_MMR_CH0_PRE_REG + 4);
|
||||
imc.tRAS = (*ptr32 >> 13) & 0x1FF;
|
||||
|
||||
Reference in New Issue
Block a user