aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-09-18 00:36:07 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-02-18 10:12:18 +0000
commitfe276fb250df01aadc85ca8a6d6d0091bcf7dc93 (patch)
treedc3e7716313e78111d09b6a226e68454598425bd
parent1999bc5d001aa57f18fa264d9101afc7174baf26 (diff)
nb/intel/sandybridge: Clean up `dram_freq` function
The thing that this function initializes is the MPLL (Memory PLL). So, call it by its name. Also add a missing newline in a printk, and update a comment on the callsite of this function. Tested on Asus P8Z77-V LX2, still boots. Change-Id: I86ab643bc87253554346dfed3630eb9ddbd44eb3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45502 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
-rw-r--r--src/northbridge/intel/sandybridge/raminit_native.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/northbridge/intel/sandybridge/raminit_native.c b/src/northbridge/intel/sandybridge/raminit_native.c
index 9961e89069..4c1fb8fe17 100644
--- a/src/northbridge/intel/sandybridge/raminit_native.c
+++ b/src/northbridge/intel/sandybridge/raminit_native.c
@@ -555,7 +555,7 @@ static void dram_freq(ramctr_timing *ctrl)
if (ctrl->tCK > TCK_400MHZ) {
printk(BIOS_ERR,
"DRAM frequency is under lowest supported frequency (400 MHz). "
- "Increasing to 400 MHz as last resort");
+ "Increasing to 400 MHz as last resort.\n");
ctrl->tCK = TCK_400MHZ;
}
@@ -563,11 +563,11 @@ static void dram_freq(ramctr_timing *ctrl)
u8 val2;
u32 reg1 = 0;
- /* Step 1 - Set target PCU frequency */
+ /* Step 1 - Determine target MPLL frequency */
find_cas_tck(ctrl);
/*
- * The PLL will never lock if the required frequency is already set.
+ * The MPLL will never lock if the requested frequency is already set.
* Exit early to prevent a system hang.
*/
reg1 = MCHBAR32(MC_BIOS_DATA);
@@ -575,15 +575,15 @@ static void dram_freq(ramctr_timing *ctrl)
if (val2)
return;
- /* Step 2 - Select frequency in the MCU */
+ /* Step 2 - Request MPLL frequency through the PCU */
reg1 = ctrl->FRQ;
if (ctrl->base_freq == 100)
- reg1 |= (1 << 8); /* Enable 100Mhz REF clock */
+ reg1 |= (1 << 8); /* Use 100MHz reference clock */
- reg1 |= (1 << 31); /* set running bit */
+ reg1 |= (1 << 31); /* Set running bit */
MCHBAR32(MC_BIOS_REQ) = reg1;
int i = 0;
- printk(BIOS_DEBUG, "PLL busy... ");
+ printk(BIOS_DEBUG, "MPLL busy... ");
while (reg1 & (1 << 31)) {
udelay(10);
i++;
@@ -595,11 +595,11 @@ static void dram_freq(ramctr_timing *ctrl)
reg1 = MCHBAR32(MC_BIOS_DATA);
val2 = (u8) reg1;
if (val2 >= ctrl->FRQ) {
- printk(BIOS_DEBUG, "MCU frequency is set at : %d MHz\n",
+ printk(BIOS_DEBUG, "MPLL frequency is set at : %d MHz\n",
(1000 << 8) / ctrl->tCK);
return;
}
- printk(BIOS_DEBUG, "PLL didn't lock. Retrying at lower frequency\n");
+ printk(BIOS_DEBUG, "MPLL didn't lock. Retrying at lower frequency\n");
ctrl->tCK++;
}
}
@@ -661,7 +661,7 @@ int try_init_dram_ddr3(ramctr_timing *ctrl, int fast_boot, int s3resume, int me_
dram_dimm_mapping(ctrl);
}
- /* Set MC frequency */
+ /* Set MPLL frequency */
dram_freq(ctrl);
if (!fast_boot) {