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>
This commit is contained in:
parent
1999bc5d00
commit
fe276fb250
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue