Skip to content

Commit

Permalink
omap: emif: deal with rams that return duplicate mr data on all byte …
Browse files Browse the repository at this point in the history
…lanes

Some rams (Micron for example) return duplicate mr data on all byte lanes.

Users of the get_mr function currently don't deal with this duplicated
data gracefully.  This patch detects the duplicated data and returns only
the expected 8 bit mr data.

Signed-off-by: Steve Sakoman <[email protected]>
  • Loading branch information
sakoman authored and albert-aribaud-u-boot committed Jul 7, 2012
1 parent 38f25b1 commit 55c1284
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion arch/arm/cpu/armv7/omap-common/emif-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,12 @@ static inline u32 get_mr(u32 base, u32 cs, u32 mr_addr)
mr = readl(&emif->emif_lpddr2_mode_reg_data);
debug("get_mr: EMIF%d cs %d mr %08x val 0x%x\n", emif_num(base),
cs, mr_addr, mr);
return mr;
if (((mr & 0x0000ff00) >> 8) == (mr & 0xff) &&
((mr & 0x00ff0000) >> 16) == (mr & 0xff) &&
((mr & 0xff000000) >> 24) == (mr & 0xff))
return mr & 0xff;
else
return mr;
}

static inline void set_mr(u32 base, u32 cs, u32 mr_addr, u32 mr_val)
Expand Down

0 comments on commit 55c1284

Please sign in to comment.