Angel Pons has submitted this change. ( https://review.coreboot.org/c/coreboot/+/47605 )
Change subject: nb/intel/sandybridge: Rename receive enable functions ......................................................................
nb/intel/sandybridge: Rename receive enable functions
Give these functions more meaningful names.
Change-Id: I6b308120d4185a3bc448213a925d5cee0d4d8bd9 Signed-off-by: Angel Pons th3fanbus@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/47605 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Arthur Heymans arthur@aheymans.xyz --- M src/northbridge/intel/sandybridge/raminit_common.c 1 file changed, 6 insertions(+), 6 deletions(-)
Approvals: build bot (Jenkins): Verified Arthur Heymans: Looks good to me, approved
diff --git a/src/northbridge/intel/sandybridge/raminit_common.c b/src/northbridge/intel/sandybridge/raminit_common.c index f2f92c3..95e7718 100644 --- a/src/northbridge/intel/sandybridge/raminit_common.c +++ b/src/northbridge/intel/sandybridge/raminit_common.c @@ -1101,7 +1101,7 @@ return ret; }
-static void discover_timA_coarse(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) +static void find_rcven_pi_coarse(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) { int timA; int statistics[NUM_LANES][128]; @@ -1131,7 +1131,7 @@ } }
-static void discover_timA_fine(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) +static void fine_tune_rcven_pi(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) { int timA_delta; int statistics[NUM_LANES][51]; @@ -1177,7 +1177,7 @@ } }
-static int discover_402x(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) +static int find_roundtrip_latency(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) { int works[NUM_LANES]; int lane; @@ -1337,7 +1337,7 @@ ctrl->timings[channel][slotrank].roundtrip_latency = 55; program_timings(ctrl, channel);
- discover_timA_coarse(ctrl, channel, slotrank, upperA); + find_rcven_pi_coarse(ctrl, channel, slotrank, upperA);
all_high = 1; some_high = 0; @@ -1367,13 +1367,13 @@
prev = get_logic_delay_delta(ctrl, channel, slotrank);
- err = discover_402x(ctrl, channel, slotrank, upperA); + err = find_roundtrip_latency(ctrl, channel, slotrank, upperA); if (err) return err;
prev = align_rt_io_latency(ctrl, channel, slotrank, prev);
- discover_timA_fine(ctrl, channel, slotrank, upperA); + fine_tune_rcven_pi(ctrl, channel, slotrank, upperA);
prev = align_rt_io_latency(ctrl, channel, slotrank, prev);