diff options
author | Peng Fan <Peng.Fan@freescale.com> | 2014-11-24 10:30:38 +0800 |
---|---|---|
committer | Peng Fan <Peng.Fan@freescale.com> | 2014-11-24 10:33:35 +0800 |
commit | 0168d205fae0c0cd76b8964a0bbfa2e2b67c699d (patch) | |
tree | 6c397438ac71815ef1a43ab9f17638c94b6d4e52 | |
parent | bb1fdd8b0bd49c92d813eecbdd60dc6c28309572 (diff) | |
download | u-boot-imx-0168d205fae0c0cd76b8964a0bbfa2e2b67c699d.zip u-boot-imx-0168d205fae0c0cd76b8964a0bbfa2e2b67c699d.tar.gz u-boot-imx-0168d205fae0c0cd76b8964a0bbfa2e2b67c699d.tar.bz2 |
MLK-9898 imx:mx6 fix ana2 offset of fuse bank1
According to RM, there is 16bytes between offset ana1 and offset ana2.
So should add 3 int hole 'u32 reserved[3]' between ana1 and ana2.
Also add the reserved bytes for ana2 in this patch.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
(cherry picked from commit b0fd5f272895dfb0891872c099df7eef1519f729)
-rw-r--r-- | arch/arm/include/asm/arch-mx6/imx-regs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h b/arch/arm/include/asm/arch-mx6/imx-regs.h index ed520ec..fd85803 100644 --- a/arch/arm/include/asm/arch-mx6/imx-regs.h +++ b/arch/arm/include/asm/arch-mx6/imx-regs.h @@ -601,7 +601,9 @@ struct fuse_bank0_regs { struct fuse_bank1_regs { u32 mem[0x18]; u32 ana1; + u32 rsvd1[3]; u32 ana2; + u32 rsvd2[3]; }; #ifdef CONFIG_MX6SX |