Commit a500a3311529ca79cfd51f1e223e77a94c78fbf1

Authored by Breno Lima
Committed by Stefano Babic
1 parent ff3a5fc46d

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

board/freescale/mx6sabresd/mx6sabresd.c
... ... @@ -755,8 +755,8 @@
755 755 writel(0xF00000CF, &iomux->gpr[4]);
756 756 if (is_mx6dqp()) {
757 757 /* set IPU AXI-id1 Qos=0x1 AXI-id0/2/3 Qos=0x7 */
758   - writel(0x007F007F, &iomux->gpr[6]);
759   - writel(0x007F007F, &iomux->gpr[7]);
  758 + writel(0x77177717, &iomux->gpr[6]);
  759 + writel(0x77177717, &iomux->gpr[7]);
760 760 } else {
761 761 /* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
762 762 writel(0x007F007F, &iomux->gpr[6]);