From: Tom Rini <trini@ti.com>
Date: Thu, 5 Jun 2014 15:15:27 +0000 (-0400)
Subject: am43xx: Only read the MPU frequency bits of CTRL_DEV_ATTR
X-Git-Tag: v2025.01-rc5-pxa1908~15240^2^2~3
X-Git-Url: http://git.dujemihanovic.xyz/img/html/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=feca6e676e99102d2044b4baea433b7e6784189f;p=u-boot.git

am43xx: Only read the MPU frequency bits of CTRL_DEV_ATTR

Signed-off-by: Tom Rini <trini@ti.com>
---

diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c
index 587fd76859..b635d691bf 100644
--- a/board/ti/am43xx/board.c
+++ b/board/ti/am43xx/board.c
@@ -302,7 +302,10 @@ static u32 get_sys_clk_index(void)
 static int get_opp_offset(int max_off, int min_off)
 {
 	struct ctrl_stat *ctrl = (struct ctrl_stat *)CTRL_BASE;
-	int opp = readl(&ctrl->dev_attr), offset, i;
+	int opp, offset, i;
+
+	/* Bits 0:11 are defined to be the MPU_MAX_FREQ */
+	opp = readl(&ctrl->dev_attr) & ~0xFFFFF000;
 
 	for (i = max_off; i >= min_off; i--) {
 		offset = opp & (1 << i);