Date: Mon, 10 Apr 2017 02:46:39 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r316670 - head/sys/arm/freescale/imx Message-ID: <201704100246.v3A2kdUH077667@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704100246.v3A2kdUH077667>