summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorBreno Lima <breno.lima@nxp.com>2017-08-02 17:03:49 (GMT)
committerStefano Babic <sbabic@denx.de>2017-08-16 09:43:15 (GMT)
commita500a3311529ca79cfd51f1e223e77a94c78fbf1 (patch)
tree8b50586970a13e3d31e2098b2cacda8437cc7e0a /board
parentff3a5fc46d492fd46d392c73f4c58cb3060d4fd6 (diff)
downloadu-boot-a500a3311529ca79cfd51f1e223e77a94c78fbf1.tar.xz
mx6sabresd: Fix IOMUXC_GPR6 and IOMUXC_GPR7 values
The IPU AXI QoS for the i.MX6QP and i.MX6DP processors have to be set as commented in the code: /* set IPU AXI-id1 Qos=0x1 AXI-id0/2/3 Qos=0x7 */ Set IOMUXC_GPR6 and IOMUXC_GPR7 to 0x77177717 instead of 0x007F007F. Signed-off-by: Breno Lima <breno.lima@nxp.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6sabresd/mx6sabresd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c
index e416042..5329c3b 100644
--- a/board/freescale/mx6sabresd/mx6sabresd.c
+++ b/board/freescale/mx6sabresd/mx6sabresd.c
@@ -755,8 +755,8 @@ static void gpr_init(void)
writel(0xF00000CF, &iomux->gpr[4]);
if (is_mx6dqp()) {
/* set IPU AXI-id1 Qos=0x1 AXI-id0/2/3 Qos=0x7 */
- writel(0x007F007F, &iomux->gpr[6]);
- writel(0x007F007F, &iomux->gpr[7]);
+ writel(0x77177717, &iomux->gpr[6]);
+ writel(0x77177717, &iomux->gpr[7]);
} else {
/* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
writel(0x007F007F, &iomux->gpr[6]);