svn commit: r316670 - head/sys/arm/freescale/imx

Ian Lepore ian at FreeBSD.org
Mon Apr 10 02:46:40 UTC 2017


Author: ian
Date: Mon Apr 10 02:46:39 2017
New Revision: 316670
URL: https://svnweb.freebsd.org/changeset/base/316670

Log:
  Add support for imx6ul soc.

Modified:
  head/sys/arm/freescale/imx/imx_iomux.c

Modified: head/sys/arm/freescale/imx/imx_iomux.c
==============================================================================
--- head/sys/arm/freescale/imx/imx_iomux.c	Mon Apr 10 01:28:01 2017	(r316669)
+++ head/sys/arm/freescale/imx/imx_iomux.c	Mon Apr 10 02:46:39 2017	(r316670)
@@ -79,6 +79,7 @@ static struct ofw_compat_data compat_dat
 	{"fsl,imx6dl-iomuxc",	true},
 	{"fsl,imx6q-iomuxc",	true},
 	{"fsl,imx6sl-iomuxc",	true},
+	{"fsl,imx6ul-iomuxc",	true},
 	{"fsl,imx6sx-iomuxc",	true},
 	{"fsl,imx53-iomuxc",	true},
 	{"fsl,imx51-iomuxc",	true},
@@ -223,6 +224,9 @@ iomux_attach(device_t dev)
 	case IMXSOC_6Q:
 		sc->last_gpreg = 13;
 		break;
+	case IMXSOC_6UL:
+		sc->last_gpreg = 14;
+		break;
 	default:
 		device_printf(dev, "Unknown SoC type\n");
 		return (ENXIO);


More information about the svn-src-head mailing list