From patchwork Mon Feb 28 20:17:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Stach X-Patchwork-Id: 12763779 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 38885C433F5 for ; Mon, 28 Feb 2022 20:19:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=46SkbghOXt/8+uQXKE9wL6q6M8u5ky/demIgbmBxfjo=; b=EY86J1YGSanIJC pQXkQLesrtKm0P/wJzCNJ3c8IGuBjq12ay/JsXwDzFZAclGaN/qOl9oDtEPVB5mwjj8uqq5ynZcAy Tcj2CNu9o4bxWaryVz8FTyfUy1K3zlDuxyw1Pth0BgxCFdBGz9jUKsmkBLfhbDg8Z/SKo8jglC45J 0KC/nfAXOvj019oDJCod8KRQPC9GtJOMjxla9+uLxFM8jW9lCeXep0rMuJBAMGnd4BunpX1GimKc6 JMR4nb3jYWXD3YbYOV+s1PjH4O5vY4pGGYkTuDMyxfUkvEVm9n1MzNEh2OJw1T0MnofS3DGEpVfhi YuuT80tMgNc3F0pXLqIw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nOmSz-00DyvY-3T; Mon, 28 Feb 2022 20:17:57 +0000 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nOmSv-00Dys4-Ap for linux-arm-kernel@lists.infradead.org; Mon, 28 Feb 2022 20:17:54 +0000 Received: from dude03.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::39]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1nOmSa-0003aH-O2; Mon, 28 Feb 2022 21:17:32 +0100 From: Lucas Stach To: Shawn Guo , Rob Herring Cc: Pengutronix Kernel Team , NXP Linux Team , Marek Vasut , Laurent Pinchart , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, patchwork-lst@pengutronix.de Subject: [PATCH v3 0/7] i.MX8MP GPC and blk-ctrl Date: Mon, 28 Feb 2022 21:17:24 +0100 Message-Id: <20220228201731.3330192-1-l.stach@pengutronix.de> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2a0a:edc0:0:1101:1d::39 X-SA-Exim-Mail-From: l.stach@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220228_121753_378475_F7E0CCAD X-CRM114-Status: UNSURE ( 9.35 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi all, third and hopefully last revision of this patchset. The dt-binding patches are dropped, as Shawn already picked them up. I fixed up all the review comments received by Laurent and Marek. Regards, Lucas Lucas Stach (7): soc: imx: gpcv2: add PGC control register indirection soc: imx: gpcv2: add support for i.MX8MP power domains soc: imx: add i.MX8MP HSIO blk-ctrl dt-bindings: usb: dwc3-imx8mp: add power domain property arm64: dts: imx8mp: add HSIO power-domains arm64: dts: imx8mp: add GPU power domains arm64: dts: imx8mp: add GPU nodes .../bindings/usb/fsl,imx8mp-dwc3.yaml | 6 + arch/arm64/boot/dts/freescale/imx8mp.dtsi | 129 ++++- drivers/soc/imx/Makefile | 1 + drivers/soc/imx/gpcv2.c | 430 ++++++++++++++++- drivers/soc/imx/imx8mp-blk-ctrl.c | 446 ++++++++++++++++++ 5 files changed, 994 insertions(+), 18 deletions(-) create mode 100644 drivers/soc/imx/imx8mp-blk-ctrl.c Tested-by: Laurent Pinchart