From ed86191ec8a612b4e32b8a8b472ad8c8aa75c6e8 Mon Sep 17 00:00:00 2001 From: hanabbi Date: Thu, 22 Jun 2023 15:56:02 +0900 Subject: [PATCH] fix latency --- .../stratosphere/loader/source/oc/mtc_timing_value.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp b/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp index ad5f8f15..c096757a 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/mtc_timing_value.hpp @@ -103,8 +103,8 @@ namespace ams::ldr::oc { namespace pcv::erista { // tCK_avg (average clock period) in ns const double tCK_avg = 1000'000. / C.eristaEmcMaxClock; - const u32 WL = 16 - 2*TIMING_PRESET_SEVEN; //? - const u32 RL = 36 - 4*TIMING_PRESET_SEVEN; //? + const u32 WL = 18 - 2*TIMING_PRESET_SEVEN; //? + const u32 RL = 40 - 4*TIMING_PRESET_SEVEN; //? // minimum number of cycles from any read command to any write command, irrespective of bank const u32 R2W = CEIL (RL + CEIL(tDQSCK_max/tCK_avg) + BL/2 - WL + tWPRE + FLOOR(tRPST)) + 6;