Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16343
-gerrit
commit 0ffd4ca19c6ffdcb18d4c3978e924c14502044d7 Author: Elyes HAOUAS ehaouas@noos.fr Date: Sun Aug 28 19:18:38 2016 +0200
soc/broadcom/cygnus/ddr_init.c: Correct typo in POWER ON and POWER OK.
Change-Id: I5b69a8429eb2f7add08bc134d5d2366a1afe6a4f Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/soc/broadcom/cygnus/ddr_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/soc/broadcom/cygnus/ddr_init.c b/src/soc/broadcom/cygnus/ddr_init.c index 7fa2a56..7488750 100644 --- a/src/soc/broadcom/cygnus/ddr_init.c +++ b/src/soc/broadcom/cygnus/ddr_init.c @@ -317,14 +317,14 @@ int cygnus_phy_powerup(void)
if(reg32_read((volatile uint32_t *)CRMU_IHOST_POR_WAKEUP_FLAG)==0) { - /* Step 1: POWRON */ + /* Step 1: POWER ON */ data = reg32_read((volatile uint32_t *)CRMU_DDR_PHY_AON_CTRL); data |= 0x8;// assert power ON reg32_write((volatile uint32_t *)CRMU_DDR_PHY_AON_CTRL, data);
__udelay(2);
- /* Step 2: POWROK */ + /* Step 2: POWER OK */ data |= 0x10;// assert power OK reg32_write((volatile uint32_t *)CRMU_DDR_PHY_AON_CTRL, data);