diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-08-28 19:18:38 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-31 20:23:34 +0200 |
commit | 195c26810d103e69adc629fa72b6eec33f2dd901 (patch) | |
tree | bc5b292a2281998b7d4fd7097e8aada90f0ae58e /src/soc/broadcom/cygnus | |
parent | ba28e8d73b143def8dfe7c0dc7cfcbce83c601a1 (diff) | |
download | coreboot-195c26810d103e69adc629fa72b6eec33f2dd901.tar.xz |
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>
Reviewed-on: https://review.coreboot.org/16343
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/soc/broadcom/cygnus')
-rw-r--r-- | src/soc/broadcom/cygnus/ddr_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/broadcom/cygnus/ddr_init.c b/src/soc/broadcom/cygnus/ddr_init.c index c31635c955..bc39b2ae33 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); |