Skip to content
Snippets Groups Projects
Commit 40e911cb authored by Nitin Garg's avatar Nitin Garg Committed by Leonard Crestez
Browse files

MLK-17597-1: i.MX8MQ workaround affecting other SoCs


Fix iMX8MQ workaround to be specific to that
machine.

Signed-off-by: default avatarNitin Garg <nitin.garg@nxp.com>
(cherry picked from commit 5fc32461)
parent dab8af15
No related branches found
No related tags found
No related merge requests found
......@@ -1327,8 +1327,11 @@ static int __init gic_of_init(struct device_node *node, struct device_node *pare
rdist_regs[i].phys_base = res.start;
}
/* sw workaround for IPI can't wakeup CORE ERRATA(ERR011171) on i.MX8MQ */
iomuxc_gpr_base = of_iomap(node, 2);
if (of_machine_is_compatible("fsl,imx8mq")) {
/* sw workaround for IPI can't wakeup CORE
ERRATA(ERR011171) on i.MX8MQ */
iomuxc_gpr_base = of_iomap(node, 2);
}
if (of_property_read_u64(node, "redistributor-stride", &redist_stride))
redist_stride = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment