From patchwork Sun Aug 25 15:32:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113517 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 8FCAE112C for ; Sun, 25 Aug 2019 15:33:20 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 37E9321744 for ; Sun, 25 Aug 2019 15:33:20 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="Os2bzyt7" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 37E9321744 Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+410+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:19 -0700 X-Received: by mail.kernel.org (Postfix) id ED9ED20870; Sun, 25 Aug 2019 15:33:18 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id AA3B4206DD; Sun, 25 Aug 2019 15:33:16 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 1/7] i.MX drivers update for 5.4 Date: Sun, 25 Aug 2019 17:32:31 +0200 Message-Id: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747199; bh=0ndDJiSDbDht4SdQZQhnbtSH6B4ckn3SpuWaE7sEp28=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=Os2bzyt7+HI2idCyH3eaSAUSs80dYbmDTRB+tD2DvsjFFDvOe5ASZ31pCjiVtzU+X6b COpx2qkymZjXK+76//LbcGDF4a4DfnzQjOjsvQFG34jSvryYBJxQXg4dJF0oCN9viQfUc QZ4lLmuNPOGcO1W33YHuZz/i11CMmB7KKFQ= The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-5.4 for you to fetch changes up to 968c6f4b3c21e9fae9b49cc91214a01b4827625d: soc: imx: gpcv2: Print the correct error code (2019-08-24 22:41:08 +0200) ---------------------------------------------------------------- i.MX drivers update for 5.4: - A series from Anson Huang to add UID support for i.MX8 SoC and SCU drivers. - A series from Daniel Baluta to add DSP IPC driver for communication between host AP (Linux) and the firmware running on DSP embedded in i.MX8 SoCs. - A small fix for GPCv2 error code printing. - Switch from module_platform_driver_probe() to module_platform_driver() for imx-weim driver, as we need the driver to probe again when device is present later. - Add optional burst clock mode support for imx-weim driver. ---------------------------------------------------------------- Anson Huang (3): soc: imx8: Add i.MX8MQ UID(unique identifier) support soc: imx8: Add i.MX8MM UID(unique identifier) support soc: imx-scu: Add SoC UID(unique identifier) support Daniel Baluta (4): firmware: imx: scu-pd: Rename mu PD range to mu_a firmware: imx: scu-pd: Add mu13 b side PD range firmware: imx: scu-pd: Add IRQSTR_DSP PD range firmware: imx: Add DSP IPC protocol interface Guido Günther (1): soc: imx: gpcv2: Print the correct error code Sascha Hauer (1): bus: imx-weim: use module_platform_driver() Sven Van Asbroeck (1): bus: imx-weim: optionally enable burst clock mode drivers/bus/imx-weim.c | 24 +++++- drivers/firmware/imx/Kconfig | 11 +++ drivers/firmware/imx/Makefile | 1 + drivers/firmware/imx/imx-dsp.c | 155 +++++++++++++++++++++++++++++++++++++++ drivers/firmware/imx/scu-pd.c | 4 +- drivers/soc/imx/gpcv2.c | 2 +- drivers/soc/imx/soc-imx-scu.c | 39 ++++++++++ drivers/soc/imx/soc-imx8.c | 45 ++++++++++++ include/linux/firmware/imx/dsp.h | 67 +++++++++++++++++ 9 files changed, 342 insertions(+), 6 deletions(-) create mode 100644 drivers/firmware/imx/imx-dsp.c create mode 100644 include/linux/firmware/imx/dsp.h -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#410): https://linux.kernel.org/g/patchwork-soc/message/410 Mute This Topic: https://linux.kernel.org/mt/33023046/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=- From patchwork Sun Aug 25 15:32:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113519 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 828EA112C for ; Sun, 25 Aug 2019 15:33:22 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5C71C206DD for ; Sun, 25 Aug 2019 15:33:22 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="fFQOkT2y" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5C71C206DD Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+411+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:21 -0700 X-Received: by mail.kernel.org (Postfix) id 99A5421744; Sun, 25 Aug 2019 15:33:21 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 5671A2173E; Sun, 25 Aug 2019 15:33:19 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 2/7] i.MX SoC changes for 5.4 Date: Sun, 25 Aug 2019 17:32:32 +0200 Message-Id: <20190825153237.28829-2-shawnguo@kernel.org> In-Reply-To: <20190825153237.28829-1-shawnguo@kernel.org> References: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747202; bh=DkkXR0uQRe7VBCRa+JK0tQzlMOnKfd375Cv3qFiufms=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=fFQOkT2yCPj5vCh8+JNVvbqvcAwI2HsT+G/OM2vT0T2ErV01DBU9OhtweyMfAJUyglK lwTHN+dTcPsJnAm9k6vj38mlFNrvLoG5PnIFgUSDwf2tM10r9pbs5a0/VE8i0un1LoadC UAvD00mXAKEwdeyTK489QFWolIicxRWY5pM= The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.4 for you to fetch changes up to acf993a0f22215dbc1d39f974e3053d6b4f4e594: ARM: imx: stop adjusting ar8031 phy tx delay (2019-08-24 20:30:22 +0200) ---------------------------------------------------------------- i.MX SoC changes for 5.4: - Drop AR8031 PHY TX delay adjusting from i.MX7D machine code, as it's superfluous due to the recent changes to Atheros AT803X driver. - Select TIMER_IMX_SYS_CTR for arm64 ARCH_MXC platform, since the system counter is needed as broadcast timer for cpuidle support. ---------------------------------------------------------------- André Draszik (1): ARM: imx: stop adjusting ar8031 phy tx delay Anson Huang (1): arm64: Enable TIMER_IMX_SYS_CTR for ARCH_MXC platforms arch/arm/mach-imx/mach-imx7d.c | 6 ------ arch/arm64/Kconfig.platforms | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#411): https://linux.kernel.org/g/patchwork-soc/message/411 Mute This Topic: https://linux.kernel.org/mt/33023047/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=- From patchwork Sun Aug 25 15:32:33 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113523 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 48BD01395 for ; Sun, 25 Aug 2019 15:33:25 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 225452173E for ; Sun, 25 Aug 2019 15:33:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="HbqCgdU/" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 225452173E Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+412+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:24 -0700 X-Received: by mail.kernel.org (Postfix) id 4E84721848; Sun, 25 Aug 2019 15:33:24 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 03D24217F4; Sun, 25 Aug 2019 15:33:21 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 3/7] i.MX DT bindings update for 5.4 Date: Sun, 25 Aug 2019 17:32:33 +0200 Message-Id: <20190825153237.28829-3-shawnguo@kernel.org> In-Reply-To: <20190825153237.28829-1-shawnguo@kernel.org> References: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747204; bh=AI1okdOx9v9WIGkbT3xpdRFB4bb4dCGr6UsJ6tWZ/d4=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=HbqCgdU//5XacMpOy10IrYjMCjP0ZaIXvEJQMvgc08YE0Lc0cJyyPz1UZI+BVJAEXn4 dtUKItkHizkfPxEz6ujMF3mr08gZs8qIdQPDZZVquBQrjATH+/qAmbuUP12VuwHnmXRWV FeAAVThaHdKjCTdd5HrVqWPeXDr7rSbb+WA= The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-bindings-5.4 for you to fetch changes up to 8d5fc0b95fd1542c575ac64457bd17d74a206497: dt-bindings: arm: fsl: Add Kontron i.MX6UL N6310 compatibles (2019-08-24 22:44:48 +0200) ---------------------------------------------------------------- i.MX DT bindings update for 5.4 - Add SoC bindings for i.MX8MN. - Add board bindings for pico-pi-imx8m, Hummingboard Pulse, imx8mq nitrogen, i.MX8QXP AI_ML, ls1046a-frwy etc. - Add vendor prefix for Anvo-Systems and Einfochips. - Update LPUART bindings for i.MX8QXP clock requirement. - Update imx-weim bindings for optional burst clock mode support. - Update EEPROM bindings for Anvo ANV32E61W device support. ---------------------------------------------------------------- Andra Danciu (1): dt-bindings: arm: fsl: Add the pico-pi-imx8m board Andrey Smirnov (1): dt-bindings: arm: fsl: Add support for ZII i.MX7 RMU2 board Anson Huang (1): dt-bindings: arm: imx: Add the soc binding for i.MX8MN Baruch Siach (1): dt-bindings: arm: fsl: add Hummingboard Pulse Chuanhua Han (1): dt-bindings: fsl: dspi: Add fsl,ls1088a-dspi compatible string Fugang Duan (1): dt-bindings: serial: lpuart: add the clock requirement for imx8qxp Gary Bisson (1): dt-bindings: arm: imx: add imx8mq nitrogen support Krzysztof Kozlowski (3): dt-bindings: vendor-prefixes: Add Anvo-Systems dt-bindings: eeprom: at25: Add Anvo ANV32E61W dt-bindings: arm: fsl: Add Kontron i.MX6UL N6310 compatibles Manivannan Sadhasivam (2): dt-bindings: Add Vendor prefix for Einfochips dt-bindings: arm: Document i.MX8QXP AI_ML board binding Pramod Kumar (1): dt-bindings: arm: nxp: Add device tree binding for ls1046a-frwy board Sven Van Asbroeck (1): dt-bindings: bus: imx-weim: document optional burst clock mode Documentation/devicetree/bindings/arm/fsl.yaml | 26 ++++++++++++++++++++++ Documentation/devicetree/bindings/bus/imx-weim.txt | 4 ++++ Documentation/devicetree/bindings/eeprom/at25.txt | 1 + .../devicetree/bindings/serial/fsl-lpuart.txt | 5 ++++- .../devicetree/bindings/spi/spi-fsl-dspi.txt | 1 + .../devicetree/bindings/vendor-prefixes.yaml | 4 ++++ 6 files changed, 40 insertions(+), 1 deletion(-) -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#412): https://linux.kernel.org/g/patchwork-soc/message/412 Mute This Topic: https://linux.kernel.org/mt/33023049/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=- From patchwork Sun Aug 25 15:32:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113525 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 1C3DF112C for ; Sun, 25 Aug 2019 15:33:28 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E9E2D2190F for ; Sun, 25 Aug 2019 15:33:27 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="omnsBq+A" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E9E2D2190F Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+413+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:27 -0700 X-Received: by mail.kernel.org (Postfix) id 46B6F20870; Sun, 25 Aug 2019 15:33:27 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BED81206DD; Sun, 25 Aug 2019 15:33:24 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stephen Boyd , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 4/7] i.MX device tree update with new clocks Date: Sun, 25 Aug 2019 17:32:34 +0200 Message-Id: <20190825153237.28829-4-shawnguo@kernel.org> In-Reply-To: <20190825153237.28829-1-shawnguo@kernel.org> References: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747207; bh=4YyyH8IpkzR1rJYoZTLsB30mrUagAB9SLYqI1oqWxyA=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=omnsBq+AZMCBI6bLeXojHXlJN05pPr6Xo6G6IlEXo2uf+GpTsPbNVttgGFSViYkifai bbkAvaOQim4w3fA8x6pH/NHQ6PsBKV/Whppn+hC155gYVaiw3g/Q7zrC29ZOI1WEqt+fN eUPG5B2Wv6xFs/qVROtVn2bBuF8bSEMOqZE= Hi, This is the device tree update with new clocks, so clock commit 6ad7cb7122ce ("clk: imx8: Add DSP related clocks") gets pulled in here as dependency, from i.MX clock branch I sent to Stephen. Please consider to pull, thanks! Shawn The following changes since commit 6ad7cb7122cee4d3e672e58bf542b070b9363c15: clk: imx8: Add DSP related clocks (2019-08-03 09:16:02 +0200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt-clkdep-5.4 for you to fetch changes up to cd42fa171d913627acb631ddf8b2a5d3a3d7e6ee: arm64: dts: imx8qxp: Add DSP DT node (2019-08-19 16:16:02 +0200) ---------------------------------------------------------------- i.MX device tree update with new clocks: - A series from Anson Huang to add i.MX8MN SoC and DDR4 EVK board device tree support. - Add DSP device tree support for i.MX8QXP SoC. ---------------------------------------------------------------- Anson Huang (6): arm64: dts: freescale: Add i.MX8MN dtsi support arm64: dts: imx8mn: Add gpio-ranges property arm64: dts: freescale: Add i.MX8MN DDR4 EVK board support arm64: dts: imx8mn-ddr4-evk: Add i2c1 support arm64: dts: imx8mn-ddr4-evk: Add rohm,bd71847 PMIC support arm64: dts: imx8mn: Add cpu-freq support Daniel Baluta (1): arm64: dts: imx8qxp: Add DSP DT node arch/arm64/boot/dts/freescale/Makefile | 1 + arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts | 348 ++++++++++ arch/arm64/boot/dts/freescale/imx8mn.dtsi | 758 ++++++++++++++++++++++ arch/arm64/boot/dts/freescale/imx8qxp-mek.dts | 4 + arch/arm64/boot/dts/freescale/imx8qxp.dtsi | 32 + 5 files changed, 1143 insertions(+) create mode 100644 arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mn.dtsi -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#413): https://linux.kernel.org/g/patchwork-soc/message/413 Mute This Topic: https://linux.kernel.org/mt/33023050/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=- From patchwork Sun Aug 25 15:32:35 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113527 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 847531395 for ; Sun, 25 Aug 2019 15:33:31 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5E3FC206DD for ; Sun, 25 Aug 2019 15:33:31 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="l3ZMg4BT" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5E3FC206DD Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+414+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:30 -0700 X-Received: by mail.kernel.org (Postfix) id 415922190F; Sun, 25 Aug 2019 15:33:30 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id B70D12173E; Sun, 25 Aug 2019 15:33:27 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 5/7] i.MX arm32 device tree changes for 5.4 Date: Sun, 25 Aug 2019 17:32:35 +0200 Message-Id: <20190825153237.28829-5-shawnguo@kernel.org> In-Reply-To: <20190825153237.28829-1-shawnguo@kernel.org> References: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747211; bh=w2hMiYyK97wd38+2Q856FOfh+1fbQXbTjeh9168pJn8=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=l3ZMg4BTAPFNjnbMBMOLdkl4azZq5UuDWiUm7BBn4e04eP7QGRHaBSQFjt4ZIS8oMjj fl0fynOSeDjCUriRy7x+KP5WX2HOCrT4unOFPuXmMaOnyWruDISGqb6Pmq0x0Q1gQjDsc kdnye4AxPC7txlpza/tnpoLyJJKyZx02Okw= The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt-5.4 for you to fetch changes up to b04f537caab4deae1b839438e8fd5ed4bc598b43: ARM: dts: vf610-zii-scu4-aib: Configure IRQ line for GPIO expander (2019-08-25 09:15:17 +0200) ---------------------------------------------------------------- i.MX arm32 device tree changes for 5.4: - New board support: ZII i.MX7 RMU2, Kontron i.MX6UL N6310, and PHYTEC phyBOARD-Segin based on i.MX6ULL. - A series from Andrey Smirnov to update vf610-zii boards on I2C pinmux, switch watchdog, GPIO expander IRQ. - Move GIC node into soc node for i.MX6 SoCs. - Add OV5645 camera support for imx6qdl-wandboard board. - Drop unneeded snvs_pwrkey node for imx7d-zii-rpu2 and imx7-colibri. - Use simple-mfd instead of simple-bus for i.MX6 ANATOP. - Move the native-mode property inside the display-timings node for various i.MX25 and i.MX27 boards. - Add EDMA devices for i.MX7ULP SoC. - A series from Stefan Riedmueller to update imx6ul-phytec-segin board on various devices. - Use OF graph to describe the display for opos6uldev board. - Misc random updates on i.MX7/6 boards. ---------------------------------------------------------------- Alexandre Belloni (1): ARM: dts: pbab01: correct rtc vendor Andrey Smirnov (7): ARM: dts: Add ZII support for ZII i.MX7 RMU2 board ARM: dts: vf610-zii-spb4: Drop unused pinctrl_i2c1 pinmux config ARM: dts: vf610-zii-scu4-aib: Fix pinctrl_i2c1's identation ARM: dts: vf610-zii-scu4-aib: Drop unused pinctrl_i2c3 pinmux config ARM: vf610-zii-cfu1: Add node for switch watchdog ARM: dts: vf610-zii-cfu1: Slow I2C0 down to 100 kHz ARM: dts: vf610-zii-scu4-aib: Configure IRQ line for GPIO expander André Draszik (2): ARM: dts: imx7d: cl-som-imx7: make ethernet work again ARM: dts: imx7d: cl-som-imx7: add compatible for phy Anson Huang (4): ARM: dts: imx6sx: move GIC to right location in DT ARM: dts: imx6sl: move GIC to right location in DT ARM: dts: imx6ul: move GIC to right location in DT ARM: dts: imx6sll: move GIC to right location in DT Ezequiel Garcia (1): ARM: dts: imx6qdl-wandboard: Add OV5645 camera support Fabio Estevam (3): ARM: dts: imx7d-zii-rpu2: Remove unneeded snvs_pwrkey node ARM: dts: imx7-colibri: Remove unneeded snvs_pwrkey node ARM: dts: imx6qdl-nit6xlite: Remove invalid properties Krzysztof Kozlowski (2): ARM: dts: imx: Cleanup style around assignment operator ARM: dts: imx6ul-kontron-n6310: Add Kontron i.MX6UL N6310 SoM and boards Marcel Ziswiler (1): ARM: dts: imx7-colibri: make sure module supplies are always on Marco Felsch (2): ARM: dts: imx6: replace simple-bus by simple-mfd for anatop ARM: dts: imx6: drop gpmi-nand address and size cells Marek Vasut (1): ARM: dts: imx53: Update LCD panel node on M53Menlo Martin Kaiser (9): ARM: dts: imx25-pdk: native-mode is part of display-timings ARM: dts: imx27 phyCARD-S: native-mode is part of display-timings ARM: dts: imx25: mbimxsd25: native-mode is part of display-timings ARM: dts: eukrea-mbimxsd27: native-mode is part of display-timings ARM: dts: mbimxsd25: native-mode is part of display-timings ARM: dts: imx27-phytec-phycore-rdk: native-mode is part of display-timings ARM: dts: edb7211: native-mode is part of display-timings ARM: dts: apf27dev: native-mode is part of display-timings ARM: dts: imx25: mbimxsd25: native-mode is part of display-timings Oleksandr Suvorov (1): ARM: dts: imx7-colibri: add recovery for I2C for iMX7 Philippe Schenker (3): ARM: dts: imx7-colibri: prepare module device tree for FlexCAN ARM: dts: imx7-colibri: Add sleep pinctrl to ethernet ARM: dts: imx6qdl-colibri: add phy to fec Robin Gong (3): ARM: dts: imx6ul: add dma support on ecspi ARM: dts: imx6sll: correct sdma compatible ARM: dts: imx7ulp: add edma device node Stefan Agner (1): ARM: dts: imx7-colibri: disable HS400 Stefan Riedmueller (10): ARM: dts: imx6ul: phyboard-segin: Rename dts to PHYTEC name scheme ARM: dts: imx6ul: segin: Add boot media to dts filename ARM: dts: imx6ul: segin: Reduce eth drive strength ARM: dts: imx6ul: segin: Fix LED naming for phyCORE and PEB-EVAL-01 ARM: dts: imx6ul: segin: Make FEC and ethphy configurable in dts ARM: dts: imx6ul: segin: Only enable NAND if it is populated ARM: dts: imx6ul: phycore: Add eMMC at usdhc2 ARM: dts: imx6ul: segin: Move ECSPI interface to board include file ARM: dts: imx6ul: segin: Move machine include to dts files ARM: dts: imx6ull: Add support for PHYTEC phyBOARD-Segin with i.MX 6ULL Sébastien Szymanski (2): ARM: dts: opos6uldev: use OF graph to describe the display ARM: dts: imx6ul: Add csi node arch/arm/boot/dts/Makefile | 8 +- arch/arm/boot/dts/ep7211-edb7211.dts | 2 +- .../imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts | 2 +- .../imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts | 2 +- .../imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts | 2 +- arch/arm/boot/dts/imx25-pdk.dts | 2 +- arch/arm/boot/dts/imx27-apf27dev.dts | 2 +- .../boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts | 2 +- arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts | 2 +- arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts | 2 +- arch/arm/boot/dts/imx53-m53menlo.dts | 3 +- arch/arm/boot/dts/imx6qdl-colibri.dtsi | 11 + arch/arm/boot/dts/imx6qdl-nit6xlite.dtsi | 2 - arch/arm/boot/dts/imx6qdl-phytec-pbab01.dtsi | 2 +- arch/arm/boot/dts/imx6qdl-wandboard.dtsi | 73 +++- arch/arm/boot/dts/imx6qdl.dtsi | 4 +- arch/arm/boot/dts/imx6sl.dtsi | 18 +- arch/arm/boot/dts/imx6sll.dtsi | 24 +- arch/arm/boot/dts/imx6sx.dtsi | 22 +- arch/arm/boot/dts/imx6ul-kontron-n6310-s-43.dts | 102 +++++ arch/arm/boot/dts/imx6ul-kontron-n6310-s.dts | 420 +++++++++++++++++++++ arch/arm/boot/dts/imx6ul-kontron-n6310-som.dtsi | 134 +++++++ arch/arm/boot/dts/imx6ul-opos6uldev.dts | 37 +- ...-pcl063.dtsi => imx6ul-phytec-phycore-som.dtsi} | 53 ++- ...ull.dts => imx6ul-phytec-segin-ff-rdk-nand.dts} | 42 ++- ...1.dtsi => imx6ul-phytec-segin-peb-eval-01.dtsi} | 16 +- ...hyboard-segin.dtsi => imx6ul-phytec-segin.dtsi} | 31 +- arch/arm/boot/dts/imx6ul.dtsi | 53 ++- arch/arm/boot/dts/imx6ull-phytec-phycore-som.dtsi | 24 ++ .../boot/dts/imx6ull-phytec-segin-ff-rdk-emmc.dts | 93 +++++ .../boot/dts/imx6ull-phytec-segin-ff-rdk-nand.dts | 93 +++++ .../boot/dts/imx6ull-phytec-segin-lc-rdk-nand.dts | 45 +++ .../boot/dts/imx6ull-phytec-segin-peb-eval-01.dtsi | 19 + arch/arm/boot/dts/imx6ull-phytec-segin.dtsi | 38 ++ arch/arm/boot/dts/imx7-colibri.dtsi | 86 ++++- arch/arm/boot/dts/imx7d-cl-som-imx7.dts | 6 +- arch/arm/boot/dts/imx7d-zii-rmu2.dts | 357 ++++++++++++++++++ arch/arm/boot/dts/imx7d-zii-rpu2.dts | 4 - arch/arm/boot/dts/imx7d.dtsi | 4 +- arch/arm/boot/dts/imx7s.dtsi | 6 +- arch/arm/boot/dts/imx7ulp.dtsi | 36 +- arch/arm/boot/dts/vf610-zii-cfu1.dts | 21 +- arch/arm/boot/dts/vf610-zii-scu4-aib.dts | 12 +- arch/arm/boot/dts/vf610-zii-spb4.dts | 7 - 44 files changed, 1741 insertions(+), 183 deletions(-) create mode 100644 arch/arm/boot/dts/imx6ul-kontron-n6310-s-43.dts create mode 100644 arch/arm/boot/dts/imx6ul-kontron-n6310-s.dts create mode 100644 arch/arm/boot/dts/imx6ul-kontron-n6310-som.dtsi rename arch/arm/boot/dts/{imx6ul-phytec-pcl063.dtsi => imx6ul-phytec-phycore-som.dtsi} (71%) rename arch/arm/boot/dts/{imx6ul-phytec-phyboard-segin-full.dts => imx6ul-phytec-segin-ff-rdk-nand.dts} (51%) rename arch/arm/boot/dts/{imx6ul-phytec-peb-eval-01.dtsi => imx6ul-phytec-segin-peb-eval-01.dtsi} (84%) rename arch/arm/boot/dts/{imx6ul-phytec-phyboard-segin.dtsi => imx6ul-phytec-segin.dtsi} (91%) create mode 100644 arch/arm/boot/dts/imx6ull-phytec-phycore-som.dtsi create mode 100644 arch/arm/boot/dts/imx6ull-phytec-segin-ff-rdk-emmc.dts create mode 100644 arch/arm/boot/dts/imx6ull-phytec-segin-ff-rdk-nand.dts create mode 100644 arch/arm/boot/dts/imx6ull-phytec-segin-lc-rdk-nand.dts create mode 100644 arch/arm/boot/dts/imx6ull-phytec-segin-peb-eval-01.dtsi create mode 100644 arch/arm/boot/dts/imx6ull-phytec-segin.dtsi create mode 100644 arch/arm/boot/dts/imx7d-zii-rmu2.dts -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#414): https://linux.kernel.org/g/patchwork-soc/message/414 Mute This Topic: https://linux.kernel.org/mt/33023051/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=- From patchwork Sun Aug 25 15:32:36 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113529 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 C7E2D1395 for ; Sun, 25 Aug 2019 15:33:33 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A1FFC22CED for ; Sun, 25 Aug 2019 15:33:33 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="F4D4jj3b" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A1FFC22CED Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+415+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:33 -0700 X-Received: by mail.kernel.org (Postfix) id 05F29217F4; Sun, 25 Aug 2019 15:33:33 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id B21B221744; Sun, 25 Aug 2019 15:33:30 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 6/7] i.MX arm64 device tree update for 5.4 Date: Sun, 25 Aug 2019 17:32:36 +0200 Message-Id: <20190825153237.28829-6-shawnguo@kernel.org> In-Reply-To: <20190825153237.28829-1-shawnguo@kernel.org> References: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747213; bh=NxooqzOy5CYihJyt1w6BWko16Xaz9TUhdQYREWILa/g=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=F4D4jj3bre055mB7yDhbNHTyXNuV2E2Nu6KgyOBS4cSTEXtR4nUMmkaB/3ptWK33yMU DtFAcHurO0nmjQCBQnZ/EPWKyMlfYJxo0/LghDPH3djtIGA7GS5LEUyOZLAZaKtb0bN1c 3HplR6y1ckTmxStUCPFjITfBuqNIlH3zWQc= The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt64-5.4 for you to fetch changes up to 215701807e53a379e1c9b2e6401676779ef85ea0: arm64: dts: imx8mq: Add mux controller to iomuxc_gpr (2019-08-24 22:47:07 +0200) ---------------------------------------------------------------- i.MX arm64 device tree update for 5.4: - New board support: i.MX8MQ Nitrogen8m, Hummingboard Pulse, PICO-PI-IMX8M, i.MX8QXP AI_ML, and LS1046A FRWY board. - Add gpio-ranges for GPIO devices on i.MX8MQ and i.MX8MM. - Update OPP table according to latest data sheet and add opp-suspend to OPP table for i.MX8MQ and i.MX8MM. - Add IDEL states for i.MX8MM SoC. - Correct I2C clock divider for Layerscape SoCs. - Add series alias and LPUART baud clock for i.MX8QXP SoC. - Add MIPI D-PHY device for i.MX8MQ and enable it on imx8mq-librem5 board. - Enable USB1 and Type-C support for i.MX8MM EVK board. - Add Thermal Monitor Unit support for LS1028A SoC. - Misc small update and correction on Layerscape and i.MX8 support. ---------------------------------------------------------------- Abel Vesa (1): arm64: dts: imx8mm: Init rates and parents configs for clocks Anson Huang (9): arm64: dts: imx8mq: Add gpio-ranges property arm64: dts: imx8mm: Add gpio-ranges property arm64: dts: imx8mm: Add "fsl,imx8mq-src" as src's fallback compatible arm64: dts: imx8mm: Correct OPP table according to latest datasheet arm64: dts: imx8mq: Correct OPP table according to latest datasheet arm64: dts: imx8mq: Add clock for TMU node arm64: dts: imx8mq: Add opp-suspend property to OPP table arm64: dts: imx8mm: Add opp-suspend property to OPP table arm64: dts: imx8mm: Enable cpu-idle driver Ashish Kumar (1): arm64: dts: ls1028a: Add esdhc node in dts Chuanhua Han (7): arm64: dts: ls1088a: Revise gpio registers to little-endian arm64: dts: ls1088a: Fix incorrect I2C clock divider arm64: dts: ls1012a: Fix incorrect I2C clock divider arm64: dts: ls1028a: Fix incorrect I2C clock divider arm64: dts: lx2160a: Fix incorrect I2C clock divider arm64: dts: ls1088a: Add the DSPI controller node arm64: dts: ls1088a-qds: Add the spi-flash nodes under the DSPI controller Daniel Baluta (1): arm64: dts: imx8mq-evk: Unbypass audio_pll1 Fabio Estevam (1): arm64: dts: imx8mm-evk: Remove invalid properties Fugang Duan (2): arm64: dts: imx8qxp: add lpuart baud clock arm64: dts: imx8qxp: add serial alias Gary Bisson (1): arm64: dts: imx: Add i.mx8mq nitrogen8m basic dts support Guido Günther (3): arm64: dts: imx8mq: Add MIPI D-PHY arm64: dts: imx8mq-librem5: Enable MIPI D-PHY arm64: dts: imx8mq: Add mux controller to iomuxc_gpr Ioana Ciornei (1): arm64: dts: add the console node for DPAA2 platforms Jon Nettleton (1): arm64: dts: fsl: add support for Hummingboard Pulse Leonard Crestez (1): arm64: dts: imx8m: Add ddr-pmu nodes Li Jun (3): arm64: dts: imx8mm: Remove setting for IMX8MM_CLK_USB_CORE_REF arm64: dts: imx8mm-evk: enable usb1 and typec support arm64: dts: imx8mq: correct usb controller clocks Lucas Stach (1): arm64: dts: rdu3: add UCS1002 charge controller node Manivannan Sadhasivam (1): arm64: dts: freescale: Add support for i.MX8QXP AI_ML board Pramod Kumar (1): arm64: dts: nxp: add ls1046a-frwy board support Richard Hu (1): arm64: dts: fsl: pico-pi: Add a device tree for the PICO-PI-IMX8M Song Hui (2): arm64: dts: ls1028a: fix gpio nodes arm64: dts: ls1088a: update gpio compatible Wen He (2): arm64: dts: ls1028a: Add optional property node for Mali DP500 arm64: dts: ls1028a: Add properties node for Display output pixel clock Yuantian Tang (1): arm64: dts: ls1028a: Add Thermal Monitor Unit node arch/arm64/boot/dts/freescale/Makefile | 5 + arch/arm64/boot/dts/freescale/fsl-ls1012a.dtsi | 4 +- arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts | 8 + arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dts | 13 + arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi | 151 +++++++- arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dts | 155 ++++++++ arch/arm64/boot/dts/freescale/fsl-ls1088a-qds.dts | 33 ++ arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 38 +- arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi | 5 + arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi | 21 +- arch/arm64/boot/dts/freescale/imx8mm-evk.dts | 68 +++- arch/arm64/boot/dts/freescale/imx8mm.dtsi | 61 ++- arch/arm64/boot/dts/freescale/imx8mq-evk.dts | 6 +- .../dts/freescale/imx8mq-hummingboard-pulse.dts | 256 +++++++++++++ .../boot/dts/freescale/imx8mq-librem5-devkit.dts | 4 + arch/arm64/boot/dts/freescale/imx8mq-nitrogen.dts | 405 ++++++++++++++++++++ arch/arm64/boot/dts/freescale/imx8mq-pico-pi.dts | 413 +++++++++++++++++++++ arch/arm64/boot/dts/freescale/imx8mq-sr-som.dtsi | 309 +++++++++++++++ .../arm64/boot/dts/freescale/imx8mq-zii-ultra.dtsi | 46 ++- arch/arm64/boot/dts/freescale/imx8mq.dtsi | 52 ++- arch/arm64/boot/dts/freescale/imx8qxp-ai_ml.dts | 249 +++++++++++++ arch/arm64/boot/dts/freescale/imx8qxp.dtsi | 23 +- 22 files changed, 2241 insertions(+), 84 deletions(-) create mode 100644 arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mq-hummingboard-pulse.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mq-nitrogen.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mq-pico-pi.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mq-sr-som.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8qxp-ai_ml.dts -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#415): https://linux.kernel.org/g/patchwork-soc/message/415 Mute This Topic: https://linux.kernel.org/mt/33023052/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=- From patchwork Sun Aug 25 15:32:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 11113531 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 856D7112C for ; Sun, 25 Aug 2019 15:33:36 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5F77721744 for ; Sun, 25 Aug 2019 15:33:36 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=linux.kernel.org header.i=@linux.kernel.org header.b="CCVk4DB7" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5F77721744 Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+26986+416+1554929+3438807@linux.kernel.org X-Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by groups.io with SMTP; Sun, 25 Aug 2019 08:33:35 -0700 X-Received: by mail.kernel.org (Postfix) id BC84520850; Sun, 25 Aug 2019 15:33:35 +0000 (UTC) X-Received: from X250.getinternet.no (cm-84.211.118.175.getinternet.no [84.211.118.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 78C2D21848; Sun, 25 Aug 2019 15:33:33 +0000 (UTC) From: Shawn Guo To: Linuxkernel+Patchwork-Soc via Email Integration Cc: Shawn Guo , Stefan Agner , Li Yang , linux-imx@nxp.com, kernel@pengutronix.de, Fabio Estevam , linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 7/7] i.MX defconfig update for 5.4 Date: Sun, 25 Aug 2019 17:32:37 +0200 Message-Id: <20190825153237.28829-7-shawnguo@kernel.org> In-Reply-To: <20190825153237.28829-1-shawnguo@kernel.org> References: <20190825153237.28829-1-shawnguo@kernel.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: patchwork-soc@linux.kernel.org List-Id: Mailing-List: list patchwork-soc@linux.kernel.org; contact patchwork-soc+owner@linux.kernel.org Delivered-To: mailing list patchwork-soc@linux.kernel.org Reply-To: patchwork-soc+owner@linux.kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux.kernel.org; q=dns/txt; s=20140610; t=1566747216; bh=0pIUhdoZXzeuCxJp3K79X+gWvePYiAvLwmccPqVPhX4=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=CCVk4DB7vGe7htOf6q+9QdeaMBLZC/NoyLBIhGzb/mXXqX2N2eSDIYRYAVYRJpBtkrl hZ3ETk9Pyc/gh2uu33kPosY5eVXQC+D5mee4JXjPqPuCM9eA3R764Ij7wSrEpHiiRIQP2 l5Znq7+E0UiSyWxaM/TSk+q9UluXCOBSng8= The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-defconfig-5.4 for you to fetch changes up to cd1b1264632a3fe739016843005e49e42c60be55: arm64: defconfig: CONFIG_DRM_ETNAVIV=m (2019-08-03 17:15:37 +0200) ---------------------------------------------------------------- i.MX defconfig update for 5.4: - Enable pinctrl and clock driver support for i.MX8MN SoC. - Enable SDMA support for i.MX8MQ and i.MX8MM SoC, including FW_LOADER_USER_HELPER and FW_LOADER_USER_HELPER_FALLBACK to support SDMA firmware loading via udev. - Enable module build of i.MX8 DDR PMU driver and ETNAVIV GPU driver. - Enable module build of OV5645 camera driver in imx_v6_v7_defconfig. ---------------------------------------------------------------- Anson Huang (2): arm64: defconfig: Select CONFIG_PINCTRL_IMX8MN by default arm64: defconfig: Select CONFIG_CLK_IMX8MN by default Christian Gmeiner (1): arm64: defconfig: CONFIG_DRM_ETNAVIV=m Fabio Estevam (1): ARM: imx_v6_v7_defconfig: Select the OV5645 camera driver Leonard Crestez (1): arm64: defconfig: Build imx8 ddr pmu as module Robin Gong (1): arm64: defconfig: Enable SDMA on i.mx8mq/8mm arch/arm/configs/imx_v6_v7_defconfig | 1 + arch/arm64/configs/defconfig | 7 +++++++ 2 files changed, 8 insertions(+) -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#416): https://linux.kernel.org/g/patchwork-soc/message/416 Mute This Topic: https://linux.kernel.org/mt/33023053/1554929 Group Owner: patchwork-soc+owner@linux.kernel.org Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub [patchwork-linux-kernel-org@patchwork.kernel.org] -=-=-=-=-=-=-=-=-=-=-=-