From patchwork Sat May 23 03:25:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11566525 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 63442912 for ; Sat, 23 May 2020 03:25:24 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 3CF97207D8; Sat, 23 May 2020 03:25:24 +0000 (UTC) Delivered-To: soc@kernel.org Received: from localhost.localdomain (80.251.214.228.16clouds.com [80.251.214.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 81AC920735; Sat, 23 May 2020 03:25:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1590204324; bh=v5W6fZaPfz4a58m6MYwvwTgaXlvz9RDpxHXsCEdZb3Y=; h=From:List-Id:To:Cc:Subject:Date:From; b=1DUaf517h8RG3h7yoHXCHpJB23dLMCkesPtSsdRJ7HR0XapClakMfMo259SCB/k8u t0fXNLpLFq22ODwO3wJ3zP3GAIRBUQlZ4PUjhSIxYVJTe46L0LgJsReaW1CZafBf/u izyo9K5OwajrzvDJNod8wMzF4j5RMxzQHz0QMu8M= From: Shawn Guo List-Id: To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo , Fabio Estevam , Stefan Agner , Li Yang , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 1/6] i.MX drivers update for 5.8 Date: Sat, 23 May 2020 11:25:11 +0800 Message-Id: <20200523032516.11016-1-shawnguo@kernel.org> X-Mailer: git-send-email 2.17.1 The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136: Linux 5.7-rc1 (2020-04-12 12:35:55 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-5.8 for you to fetch changes up to 89f12d6509bff004852c51cb713a439a86816b24: firmware: imx: scu: Fix possible memory leak in imx_scu_probe() (2020-05-20 11:33:08 +0800) ---------------------------------------------------------------- i.MX drivers update for 5.8: - Optimize imx-scu driver to use one TX and one RX instead of four for talking to SCU. - Fix one possible message header corruption where the response is longer than the request. - Move System Control defines into dt-bindings header, so that DT can use them as well. - A couple of small fixups. ---------------------------------------------------------------- Anson Huang (1): soc: imx8m: No need to put node when of_find_compatible_node() failed Dong Aisheng (2): dt-bindings: firmware: imx: Move system control into dt-binding headfile dt-bindings: firmware: imx: Add more system controls and PM clock types Franck LENORMAND (1): firmware: imx: scu: Fix corruption of header Peng Fan (1): firmware: imx-scu: Support one TX and one RX Wei Yongjun (1): firmware: imx: scu: Fix possible memory leak in imx_scu_probe() drivers/firmware/imx/imx-scu.c | 64 ++++++++++++++++++------- drivers/soc/imx/soc-imx8m.c | 7 ++- drivers/thermal/imx_sc_thermal.c | 2 +- include/dt-bindings/firmware/imx/rsrc.h | 84 +++++++++++++++++++++++++++++++++ include/linux/firmware/imx/sci.h | 1 - include/linux/firmware/imx/types.h | 65 ------------------------- 6 files changed, 136 insertions(+), 87 deletions(-) delete mode 100644 include/linux/firmware/imx/types.h From patchwork Sat May 23 03:25:12 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11566527 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5327E912 for ; Sat, 23 May 2020 03:25:26 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 38DFE207F7; Sat, 23 May 2020 03:25:26 +0000 (UTC) Delivered-To: soc@kernel.org Received: from localhost.localdomain (80.251.214.228.16clouds.com [80.251.214.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 87211207DA; Sat, 23 May 2020 03:25:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1590204326; bh=pgmHYKarOtcYKHCkf/Nmd0V0W2Vpc+GT3cgCyL7fYII=; h=From:List-Id:To:Cc:Subject:Date:In-Reply-To:References:From; b=U6U/KJFXugk/qHANGFAwpr/aRD/QFWDslO66xH8c7dedk9hQirsV6gz9xMkTRZqgC yWG50/yWrK+uq+7G0DxKH4W04ZWlUv2ik9Vazmbh6CzyzvR4iobe9O6ZpVuDLjJtU+ +kq9Vjo5jyDX4mzoFO23SvoQz10iq9Y0nLFdB3I0= From: Shawn Guo List-Id: To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo , Fabio Estevam , Stefan Agner , Li Yang , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 2/6] i.MX SoC changes for 5.8 Date: Sat, 23 May 2020 11:25:12 +0800 Message-Id: <20200523032516.11016-2-shawnguo@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200523032516.11016-1-shawnguo@kernel.org> References: <20200523032516.11016-1-shawnguo@kernel.org> The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136: Linux 5.7-rc1 (2020-04-12 12:35:55 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.8 for you to fetch changes up to 52102a3ba6a617449f4b057880d73be93310a7c7: soc: imx: move cpu code to drivers/soc/imx (2020-05-20 23:03:50 +0800) ---------------------------------------------------------------- i.MX SoC changes for 5.8: - Add soc device support for Vybrid/VF platform. - Move the i.MX soc device registration code from mach-imx to drivers/soc/imx for possible future consolidation with i.MX8 code. - A small fixup to make pcm970_sja1000_platform_data static. ---------------------------------------------------------------- Andrey Smirnov (1): ARM: vf610: report soc info via soc device Ma Feng (1): ARM: imx: pcm037: make pcm970_sja1000_platform_data static Peng Fan (3): ARM: imx: use device_initcall for imx_soc_device_init ARM: imx: move cpu definitions into a header soc: imx: move cpu code to drivers/soc/imx arch/arm/mach-imx/common.h | 1 - arch/arm/mach-imx/cpu.c | 159 -------------------------------- arch/arm/mach-imx/mach-imx6q.c | 8 +- arch/arm/mach-imx/mach-imx6sl.c | 8 +- arch/arm/mach-imx/mach-imx6sx.c | 8 +- arch/arm/mach-imx/mach-imx6ul.c | 8 +- arch/arm/mach-imx/mach-imx7d.c | 6 -- arch/arm/mach-imx/mach-imx7ulp.c | 2 +- arch/arm/mach-imx/mach-pcm037.c | 2 +- arch/arm/mach-imx/mach-vf610.c | 47 ++++++++++ arch/arm/mach-imx/mxc.h | 22 +---- drivers/soc/imx/Makefile | 3 + drivers/soc/imx/soc-imx.c | 192 +++++++++++++++++++++++++++++++++++++++ include/soc/imx/cpu.h | 36 ++++++++ 14 files changed, 285 insertions(+), 217 deletions(-) create mode 100644 drivers/soc/imx/soc-imx.c create mode 100644 include/soc/imx/cpu.h From patchwork Sat May 23 03:25:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11566529 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 42A8960D for ; Sat, 23 May 2020 03:25:28 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 3EC0E20814; Sat, 23 May 2020 03:25:28 +0000 (UTC) Delivered-To: soc@kernel.org Received: from localhost.localdomain (80.251.214.228.16clouds.com [80.251.214.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8A85B207F9; Sat, 23 May 2020 03:25:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1590204328; bh=m60nbC4z7ubmLUMA6y264pefUHFAusbjRVV42+hehAY=; h=From:List-Id:To:Cc:Subject:Date:In-Reply-To:References:From; b=i3urj4DVG2YYdBvYrOc72phFhwcyMkjRd6dCQHs4L3wCSy2uReMV6WAqNtXm3LCRg CJEMwvcAVnEdhU5syE1i6QmrIW1OVplw3x03wSaZqHl0Psx2NEZJX+yz3R75E5ohZ1 8Q8sOSjIT6iOJCpGWBwgzt4rmRXD6vNZEkFSqP+Y= From: Shawn Guo List-Id: To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo , Fabio Estevam , Stefan Agner , Li Yang , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 3/6] i.MX bindings change for 5.8 Date: Sat, 23 May 2020 11:25:13 +0800 Message-Id: <20200523032516.11016-3-shawnguo@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200523032516.11016-1-shawnguo@kernel.org> References: <20200523032516.11016-1-shawnguo@kernel.org> The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136: Linux 5.7-rc1 (2020-04-12 12:35:55 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-bindings-5.8 for you to fetch changes up to 9c4b24db828a560789bfe8f58495f9df5bfe36b0: dt-bindings: arm: imx: add kontron smarc to schema (2020-04-25 09:53:11 +0800) ---------------------------------------------------------------- i.MX bindings change for 5.8: - Add Kontron SMARC module compatibles to DT schema. - Add Colibri iMX6S/DL V1.1x devicetree compatibles. ---------------------------------------------------------------- Igor Opaniuk (1): dt-bindings: arm: fsl: add nxp based toradex colibri bindings Marco Felsch (1): dt-bindings: arm: imx: add kontron smarc to schema Documentation/devicetree/bindings/arm/fsl.yaml | 4 ++++ 1 file changed, 4 insertions(+) From patchwork Sat May 23 03:25:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11566531 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 478C4912 for ; Sat, 23 May 2020 03:25:30 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 4347F20812; Sat, 23 May 2020 03:25:30 +0000 (UTC) Delivered-To: soc@kernel.org Received: from localhost.localdomain (80.251.214.228.16clouds.com [80.251.214.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8F205207FB; Sat, 23 May 2020 03:25:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1590204330; bh=3WdTmOuKf6fFvVXSqYttIJJ/VtEzIFW5ujo2Ca2bRME=; h=From:List-Id:To:Cc:Subject:Date:In-Reply-To:References:From; b=lIZQ45XBzNsJKeLkJvaDthpohtVvDrVOtIXOAQM+SKV/TTMSfuDp43q7qdo+iGk01 /QuMbWGPaivDNhMQNog7PtCHCLwQMDeqpizaXzmdqEcEFUf6kSWfdu9qnBDM8chPew msa7LbBWZKfAHaxFsEhc12TYPlNa4fB9WbR2Iv4Y= From: Shawn Guo List-Id: To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo , Fabio Estevam , Stefan Agner , Li Yang , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 4/6] i.MX device tree changes for 5.8 Date: Sat, 23 May 2020 11:25:14 +0800 Message-Id: <20200523032516.11016-4-shawnguo@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200523032516.11016-1-shawnguo@kernel.org> References: <20200523032516.11016-1-shawnguo@kernel.org> MIME-Version: 1.0 The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136: Linux 5.7-rc1 (2020-04-12 12:35:55 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt-5.8 for you to fetch changes up to 103515d91832bb837159c37f0cb69d59d68a1dc2: ARM: dts: imx53-cx9020: Group port definitions for the dvi-converter (2020-05-20 10:57:14 +0800) ---------------------------------------------------------------- i.MX device tree changes for 5.8: - A series from Anson Huang updating SRC devices to match bindings schema definition. - Correct CPU supply name and add cpu1 supply for i.MX7D. - Convert thermal device to use nvmem interface to get fuse data for imx6qdl and imx6sl. - A series from Tim Harvey to update imx6qdl-gw devices, adding support of LSM9DS1 IIO imu/magn, USB OTG, bcm4330-bt, etc. - Add input MUX for ENET2 MDIO into IMX7D pin functions. - Misc random device addition or update. ---------------------------------------------------------------- Andreas Kemnade (1): ARM: dts: e60k02: add interrupt for PMIC Anson Huang (9): ARM: dts: imx7: Correct CPU supply name ARM: dts: imx7d: Add cpu1 supply ARM: dts: imx51: Add src node interrupt ARM: dts: imx53: Add src node interrupt ARM: dts: imx6qdl: Use nvmem interface to get fuse data ARM: dts: imx6sl: Use nvmem interface to get fuse data ARM: dts: imx: make src node name generic ARM: dts: imx50: Add src node interrupt ARM: dts: imx5: make src node name generic Fabio Estevam (1): ARM: dts: imx50: Remove unused iomuxc-gpr node Igor Opaniuk (1): ARM: dts: colibri: introduce device trees with UHS-I support Kuldeep Singh (1): arm: dts: ls1021atwr: Add QSPI node properties Marek Vasut (1): ARM: dts: imx6q-dhcom: Add DH 560-200 display unit support Ricardo Cañuelo (1): ARM: dts: imx53-cx9020: Group port definitions for the dvi-converter Russell King (1): ARM: dts: imx6-sr-som: add ethernet PHY configuration Steffen Trumtrar (1): ARM: dts: imx7d-pinfunc: add input mux for ENET2 mdio Tim Harvey (5): ARM: dts: imx6qdl-gw552x: add USB OTG support ARM: dts: imx6qdl-gw560x: add lsm9ds1 iio imu/magn support ARM: dts: imx6qdl-gw5904: add lsm9ds1 iio imu/magn support ARM: dts: imx6qdl-gw5910: add support for bcm4330-bt ARM: dts: imx6qdl-gw5910: fix wlan regulator arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/e60k02.dtsi | 2 + arch/arm/boot/dts/imx50.dtsi | 8 +- arch/arm/boot/dts/imx51.dtsi | 3 +- arch/arm/boot/dts/imx53-cx9020.dts | 25 ++--- arch/arm/boot/dts/imx53.dtsi | 3 +- arch/arm/boot/dts/imx6dl-colibri-v1_1-eval-v3.dts | 31 ++++++ arch/arm/boot/dts/imx6q-dhcom-pdk2.dts | 115 +++++++++++++++++++++- arch/arm/boot/dts/imx6qdl-colibri-v1_1-uhs.dtsi | 44 +++++++++ arch/arm/boot/dts/imx6qdl-colibri.dtsi | 11 ++- arch/arm/boot/dts/imx6qdl-gw552x.dtsi | 14 +++ arch/arm/boot/dts/imx6qdl-gw560x.dtsi | 31 ++++++ arch/arm/boot/dts/imx6qdl-gw5904.dtsi | 31 ++++++ arch/arm/boot/dts/imx6qdl-gw5910.dtsi | 35 +++---- arch/arm/boot/dts/imx6qdl-sr-som.dtsi | 11 +++ arch/arm/boot/dts/imx6qdl.dtsi | 13 ++- arch/arm/boot/dts/imx6sl.dtsi | 13 ++- arch/arm/boot/dts/imx6sx.dtsi | 2 +- arch/arm/boot/dts/imx6ul.dtsi | 2 +- arch/arm/boot/dts/imx7-tqma7.dtsi | 2 +- arch/arm/boot/dts/imx7d-cl-som-imx7.dts | 4 + arch/arm/boot/dts/imx7d-colibri.dtsi | 4 + arch/arm/boot/dts/imx7d-nitrogen7.dts | 4 + arch/arm/boot/dts/imx7d-pinfunc.h | 2 +- arch/arm/boot/dts/imx7d-sdb.dts | 4 + arch/arm/boot/dts/imx7d-tqma7.dtsi | 4 + arch/arm/boot/dts/imx7d-zii-rmu2.dts | 2 +- arch/arm/boot/dts/imx7d-zii-rpu2.dts | 2 +- arch/arm/boot/dts/imx7s.dtsi | 2 +- arch/arm/boot/dts/ls1021a-twr.dts | 14 +++ 30 files changed, 384 insertions(+), 55 deletions(-) create mode 100644 arch/arm/boot/dts/imx6dl-colibri-v1_1-eval-v3.dts create mode 100644 arch/arm/boot/dts/imx6qdl-colibri-v1_1-uhs.dtsi From patchwork Sat May 23 03:25:15 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11566533 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 4FC3960D for ; Sat, 23 May 2020 03:25:32 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 4BAA420825; Sat, 23 May 2020 03:25:32 +0000 (UTC) Delivered-To: soc@kernel.org Received: from localhost.localdomain (80.251.214.228.16clouds.com [80.251.214.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9375620849; Sat, 23 May 2020 03:25:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1590204332; bh=pcOxCV9tvCilx3E4+uKd6O+RHVYRJTe9hKGhvSTd+nQ=; h=From:List-Id:To:Cc:Subject:Date:In-Reply-To:References:From; b=E+hOtejO6hdCVIH54asFfJJh5YIlChH7xHjydz3AlQB70w7FIUthOSCjlGX2vU0fR taBMdDwn0bGoPKX11fMOmvSG9TENUsJGLWfWtHp+eq+2ihCa1m+M/fPQFeJ2mDqZOd Np1kK8Vd6wu0iJPh28B8L/O2Uhyrv39R7g5NGDIo= From: Shawn Guo List-Id: To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo , Fabio Estevam , Stefan Agner , Li Yang , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 5/6] i.MX arm64 device tree changes for 5.8 Date: Sat, 23 May 2020 11:25:15 +0800 Message-Id: <20200523032516.11016-5-shawnguo@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200523032516.11016-1-shawnguo@kernel.org> References: <20200523032516.11016-1-shawnguo@kernel.org> MIME-Version: 1.0 The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136: Linux 5.7-rc1 (2020-04-12 12:35:55 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt64-5.8 for you to fetch changes up to 48ffd4ebc1daf7eac054cf282ed0c2632abc2e20: arm64: dts: Add ds26522 node to dts to ls1043ardb (2020-05-20 23:00:47 +0800) ---------------------------------------------------------------- i.MX arm64 device tree changes: - New support of Beacon i.MX8m-Mini development kit. - Add secondary cpus supply on imx8mm-evk and imx8mn-ddr4-evk for completeness. - Add thermal zones for imx8mp and lx2160a, PMIC thermal zone for imx8qxp-mek board. - Update VDD_ARM 1.2GHz setpoint voltage for imx8mn. - Add SRC device interrupt for i.MX8 SoCs. - Use 0.9V for VDD_GPU on imx8mq-librem5-devkit, since there is no need to support overclocking to 1GHz. - Update imx8qxp SCU device to use MU channel with less interrupt triggering, one RX interrupt for a RX and one TX interrupt for a TX. - Specify DMA channels for LS1028A DSPI controllers. - Add QE and DS26522 device support for fsl-ls1043a-rdb board. - Misc random update and cleanup. ---------------------------------------------------------------- Adam Ford (1): arm64: dts: imx: Add Beacon i.MX8m-Mini development kit Anson Huang (8): arm64: dts: imx8mm-evk: Add secondary cpus supply arm64: dts: imx8mn-ddr4-evk: Add secondary cpus supply arm64: dts: imx8mp: Add thermal zones support arm64: dts: imx8qxp-mek: Sort labels alphabetically arm64: dts: imx8qxp-mek: Add PMIC thermal zone support arm64: dts: imx8mn: Update VDD_ARM 1.2GHz setpoint voltage arm64: dts: imx8mq: Add src node interrupts arm64: dts: imx8mp: Add src node interrupts Fabio Estevam (1): arm64: dts: imx8qxp-mek: Do not use underscore in node name Fugang Duan (1): arm64: dts: imx8mp: add "fsl,imx6sx-fec" compatible string Guido Günther (2): arm64: dts: imx8mq-librem5-devkit: Use 0.9V for VDD_GPU arm64: dts: imx8mq-librem5-devkit: Don't use underscore in node name Kuldeep Singh (1): arm64: dts: ls1012a: Add QSPI node properties Matt Porter (1): arm64: dts: imx8mm: specify #sound-dai-cells for SAI nodes Michael Walle (2): arm64: dts: freescale: sl28: enable LPUART1 arm64: dts: ls1028a: sl28: keep switch port names consistent Peng Fan (2): arm64: dts: imx8qxp: support scu mailbox channel arm64: dts: imx8m: assign clocks for A53 Vladimir Oltean (1): arm64: dts: ls1028a: Specify the DMA channels for the DSPI controllers Yangbo Lu (2): arm64: dts: fsl: add fsl,extts-fifo property for fman ptp arm64: dts: ls1043a-rdb: add compatible for board Yuantian Tang (1): arm64: dts: lx2160a: add more thermal zone support Zhao Qiang (2): arm64: dts: add qe node to ls1043ardb arm64: dts: Add ds26522 node to dts to ls1043ardb arch/arm64/boot/dts/freescale/fsl-ls1012a-frdm.dts | 15 + arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dts | 15 + arch/arm64/boot/dts/freescale/fsl-ls1012a-qds.dts | 15 + arch/arm64/boot/dts/freescale/fsl-ls1012a-rdb.dts | 15 + arch/arm64/boot/dts/freescale/fsl-ls1012a.dtsi | 13 + .../freescale/fsl-ls1028a-kontron-sl28-var2.dts | 4 +- .../dts/freescale/fsl-ls1028a-kontron-sl28.dts | 5 + arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi | 6 + arch/arm64/boot/dts/freescale/fsl-ls1043a-rdb.dts | 33 ++ arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi | 65 ++++ arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi | 130 ++++++- .../dts/freescale/imx8mm-beacon-baseboard.dtsi | 285 ++++++++++++++ .../arm64/boot/dts/freescale/imx8mm-beacon-kit.dts | 19 + .../boot/dts/freescale/imx8mm-beacon-som.dtsi | 410 +++++++++++++++++++++ arch/arm64/boot/dts/freescale/imx8mm-evk.dts | 12 + arch/arm64/boot/dts/freescale/imx8mm.dtsi | 14 +- arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts | 12 + arch/arm64/boot/dts/freescale/imx8mn.dtsi | 12 +- arch/arm64/boot/dts/freescale/imx8mp.dtsi | 88 ++++- .../boot/dts/freescale/imx8mq-librem5-devkit.dts | 4 +- arch/arm64/boot/dts/freescale/imx8mq.dtsi | 10 +- arch/arm64/boot/dts/freescale/imx8qxp-mek.dts | 95 +++-- arch/arm64/boot/dts/freescale/imx8qxp.dtsi | 18 +- arch/arm64/boot/dts/freescale/qoriq-fman3-0.dtsi | 1 + 24 files changed, 1231 insertions(+), 65 deletions(-) create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-beacon-baseboard.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-beacon-kit.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi From patchwork Sat May 23 03:25:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11566535 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5516860D for ; Sat, 23 May 2020 03:25:34 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 5176D20826; Sat, 23 May 2020 03:25:34 +0000 (UTC) Delivered-To: soc@kernel.org Received: from localhost.localdomain (80.251.214.228.16clouds.com [80.251.214.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9ED88207F9; Sat, 23 May 2020 03:25:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1590204334; bh=y3zY9Oq6PihXsEzJGDsQ9Zh9SdcheJcvQMAXNtaIdWA=; h=From:List-Id:To:Cc:Subject:Date:In-Reply-To:References:From; b=pS6WmitEKqwNvPQbf8q9upppltL/ZiYHRSol+WuKgi1Lbj6r0cVG4Xpzvf/nfWwS0 bb4j2hOo8MI276qnRoviFoPzps58D/7x79tzbF6Byi6CA63aWQMPNt6731d3Ngvx99 BMAIcZpO2ZMp+7D8CZKNi+l19w5Z3pUaL+3wC+/4= From: Shawn Guo List-Id: To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo , Fabio Estevam , Stefan Agner , Li Yang , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 6/6] i.MX defconfig update for 5.8 Date: Sat, 23 May 2020 11:25:16 +0800 Message-Id: <20200523032516.11016-6-shawnguo@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200523032516.11016-1-shawnguo@kernel.org> References: <20200523032516.11016-1-shawnguo@kernel.org> The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136: Linux 5.7-rc1 (2020-04-12 12:35:55 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-defconfig-5.8 for you to fetch changes up to 5b4bf802427e3f49b9bca5e02ec7154e4d3d63ad: ARM: imx_v6_v7_defconfig: extend RN5T618 PMIC family support (2020-05-20 09:29:07 +0800) ---------------------------------------------------------------- i.MX defconfig update for 5.8: - Enable RTC and ADC support of RN5T618 PMIC in imx_v6_v7_defconfig. - Enable i.MX8DXL pinctrl driver support in arm64 defconfig. ---------------------------------------------------------------- Andreas Kemnade (1): ARM: imx_v6_v7_defconfig: extend RN5T618 PMIC family support Anson Huang (1): arm64: defconfig: Enable CONFIG_PINCTRL_IMX8DXL by default arch/arm/configs/imx_v6_v7_defconfig | 2 ++ arch/arm64/configs/defconfig | 1 + 2 files changed, 3 insertions(+)