summaryrefslogtreecommitdiffstats
path: root/sys/arm
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2014-10-26 16:02:35 +0000
committerian <ian@FreeBSD.org>2014-10-26 16:02:35 +0000
commit4666b07fe934c30e4dcb3c0fdf09c91c5ca9fae7 (patch)
treebbb92d47232a4a2f198b8f6564b7a3885932ddbd /sys/arm
parent33a82acb89d08cd729ba83c2091d0fd2f5e2c412 (diff)
downloadFreeBSD-src-4666b07fe934c30e4dcb3c0fdf09c91c5ca9fae7.zip
FreeBSD-src-4666b07fe934c30e4dcb3c0fdf09c91c5ca9fae7.tar.gz
MFC r273561:
Install a temporary workaround to avoid problems in fdt data with linux's workaround for an imx6 chip erratum by using gpio1_6 as an interrupt.
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/freescale/imx/imx6_machdep.c36
1 files changed, 35 insertions, 1 deletions
diff --git a/sys/arm/freescale/imx/imx6_machdep.c b/sys/arm/freescale/imx/imx6_machdep.c
index be0ae67..2335f7d 100644
--- a/sys/arm/freescale/imx/imx6_machdep.c
+++ b/sys/arm/freescale/imx/imx6_machdep.c
@@ -53,8 +53,39 @@ struct fdt_fixup_entry fdt_fixup_table[] = {
{ NULL, NULL }
};
+static uint32_t gpio1_node;
+
+/*
+ * Work around the linux workaround for imx6 erratum 006687, in which some
+ * ethernet interrupts don't go to the GPC and thus won't wake the system from
+ * Wait mode. We don't use Wait mode (which halts the GIC, leaving only GPC
+ * interrupts able to wake the system), so we don't experience the bug at all.
+ * The linux workaround is to reconfigure GPIO1_6 as the ENET interrupt by
+ * writing magic values to an undocumented IOMUX register, then letting the gpio
+ * interrupt driver notify the ethernet driver. We'll be able to do all that
+ * (even though we don't need to) once the INTRNG project is committed and the
+ * imx_gpio driver becomes an interrupt driver. Until then, this crazy little
+ * workaround watches for requests to map an interrupt 6 with the interrupt
+ * controller node referring to gpio1, and it substitutes the proper ffec
+ * interrupt number.
+ */
+static int
+imx6_decode_fdt(uint32_t iparent, uint32_t *intr, int *interrupt,
+ int *trig, int *pol)
+{
+
+ if (fdt32_to_cpu(intr[0]) == 6 &&
+ OF_node_from_xref(iparent) == gpio1_node) {
+ *interrupt = 150;
+ *trig = INTR_TRIGGER_CONFORM;
+ *pol = INTR_POLARITY_CONFORM;
+ return (0);
+ }
+ return (gic_decode_fdt(iparent, intr, interrupt, trig, pol));
+}
+
fdt_pic_decode_t fdt_pic_table[] = {
- &gic_decode_fdt,
+ &imx6_decode_fdt,
NULL
};
@@ -83,6 +114,9 @@ void
initarm_late_init(void)
{
+ /* Cache the gpio1 node handle for imx6_decode_fdt() workaround code. */
+ gpio1_node = OF_node_from_xref(
+ OF_finddevice("/soc/aips-bus@02000000/gpio@0209c000"));
}
/*
OpenPOWER on IntegriCloud