diff options
-rw-r--r-- | src/northbridge/amd/amdmct/mct/mct_d.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/northbridge/amd/amdmct/mct/mct_d.c b/src/northbridge/amd/amdmct/mct/mct_d.c index 4233705241..402b5d93a5 100644 --- a/src/northbridge/amd/amdmct/mct/mct_d.c +++ b/src/northbridge/amd/amdmct/mct/mct_d.c @@ -2426,8 +2426,11 @@ static void mct_DramInit(struct MCTStatStruc *pMCTstat, val = Get_NB32(pDCTstat->dev_dct, 0x8C + (0x100 * dct)); val &= ~(1 << DisAutoRefresh); + Set_NB32(pDCTstat->dev_dct, 0x8C + (0x100 * dct), val); val |= 1 << DisAutoRefresh; + Set_NB32(pDCTstat->dev_dct, 0x8C + (0x100 * dct), val); val &= ~(1 << DisAutoRefresh); + Set_NB32(pDCTstat->dev_dct, 0x8C + (0x100 * dct), val); } } } |