Message ID | 1563290089-11085-11-git-send-email-aisheng.dong@nxp.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | arm64: dts: imx8: architecture improvement and adding imx8qm support | expand |
On Tue, Jul 16, 2019 at 12:37 PM Dong Aisheng <aisheng.dong@nxp.com> wrote: > > The CONN SS of MX8QM is mostly the same as MX8QXP except it has one more > USB HSIC module support. So we can fully reuse the exist CONN SS dtsi. > Add <soc>-ss-conn.dtsi with compatible string updated according to > imx8-ss-conn.dtsi. Subject and commit log does not match what the patch is actually doing.
On Wed, Jul 17, 2019 at 3:31 AM Fabio Estevam <festevam@gmail.com> wrote: > > On Tue, Jul 16, 2019 at 12:37 PM Dong Aisheng <aisheng.dong@nxp.com> wrote: > > > > The CONN SS of MX8QM is mostly the same as MX8QXP except it has one more > > USB HSIC module support. So we can fully reuse the exist CONN SS dtsi. > > Add <soc>-ss-conn.dtsi with compatible string updated according to > > imx8-ss-conn.dtsi. > > Subject and commit log does not match what the patch is actually doing. What 'not match' did you mean? Regards Aisheng
On 16/07/19, Dong Aisheng wrote: > The CONN SS of MX8QM is mostly the same as MX8QXP except it has one more > USB HSIC module support. So we can fully reuse the exist CONN SS dtsi. > Add <soc>-ss-conn.dtsi with compatible string updated according to > imx8-ss-conn.dtsi. > +&usdhc1 { > + compatible = "fsl,imx8qm-usdhc", "fsl,imx7d-usdhc"; > +}; > + > +&usdhc2 { > + compatible = "fsl,imx8qm-usdhc", "fsl,imx7d-usdhc"; > +}; I need to add here for my imx8qm-rom7720-a1 board: &usdhc3 { compatible = "fsl,imx8qm-usdhc", "fsl,imx7d-usdhc"; }; I'll prepare a patch for that on top of yours. Best Regards, Oliver
diff --git a/arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi b/arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi new file mode 100644 index 0000000..00ae820 --- /dev/null +++ b/arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright 2019 NXP + * Dong Aisheng <aisheng.dong@nxp.com> + */ + +&fec1 { + compatible = "fsl,imx8qm-fec", "fsl,imx6sx-fec"; +}; + +&fec2 { + compatible = "fsl,imx8qm-fec", "fsl,imx6sx-fec"; +}; + +&usdhc1 { + compatible = "fsl,imx8qm-usdhc", "fsl,imx7d-usdhc"; +}; + +&usdhc2 { + compatible = "fsl,imx8qm-usdhc", "fsl,imx7d-usdhc"; +};
The CONN SS of MX8QM is mostly the same as MX8QXP except it has one more USB HSIC module support. So we can fully reuse the exist CONN SS dtsi. Add <soc>-ss-conn.dtsi with compatible string updated according to imx8-ss-conn.dtsi. Cc: Rob Herring <robh+dt@kernel.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Cc: Shawn Guo <shawnguo@kernel.org> Cc: Sascha Hauer <kernel@pengutronix.de> Cc: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com> --- ChangeLog: v1->v2: * change to the new two cell scu clk binding --- arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi