From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9F0EBC433EF for ; Tue, 21 Dec 2021 08:30:13 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 9AFCD81C08; Tue, 21 Dec 2021 09:30:11 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=xs4all.nl Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id DE19A8192E; Tue, 21 Dec 2021 09:30:09 +0100 (CET) Received: from sibelius.xs4all.nl (sibelius.xs4all.nl [83.163.83.176]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 4EA908192E for ; Tue, 21 Dec 2021 09:30:06 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=xs4all.nl Authentication-Results: phobos.denx.de; spf=fail smtp.mailfrom=mark.kettenis@xs4all.nl Received: from localhost (bloch.sibelius.xs4all.nl [local]) by bloch.sibelius.xs4all.nl (OpenSMTPD) with ESMTPA id 295f6926; Tue, 21 Dec 2021 09:30:05 +0100 (CET) Date: Tue, 21 Dec 2021 09:30:05 +0100 (CET) From: Mark Kettenis To: Jaehoon Chung Cc: kettenis@openbsd.org, u-boot@lists.denx.de, sjg@chromium.org In-Reply-To: (message from Jaehoon Chung on Tue, 21 Dec 2021 08:00:38 +0900) Subject: Re: [PATCH 0/3] Apple M1 power management controller support References: <20211206190305.8107-1-kettenis@openbsd.org> Message-ID: X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean > From: Jaehoon Chung > Date: Tue, 21 Dec 2021 08:00:38 +0900 Hello Jaehoon, > Dear Mark, > > On 12/7/21 4:03 AM, Mark Kettenis wrote: > > This series adds support for the power management controller found on > > Apple SoCs based on the device tree bindings submitted to upstream > > Linux. This is needed to enable power domains for devices that > > haven't been enabled by earlier boot stages. > > Is there any patch before applied this patchset? This is based on next, with the watchdog patch applied: https://patchwork.ozlabs.org/project/uboot/list/?series=271919 The drivers are independent, but I suppose you get conflicts in Kconfig and maybe the device tree without that series applied. Cheers, Mark > > > > > > Mark Kettenis (3): > > arm: dts: apple: Update Apple M1 device trees > > arm: dts: apple: Add u-boot,dm-pre-reloc properties > > power: domain: Add Apple pmgr driver > > > > arch/arm/Kconfig | 4 + > > arch/arm/dts/Makefile | 5 +- > > arch/arm/dts/t8103-j274-u-boot.dtsi | 1 + > > arch/arm/dts/t8103-j274.dts | 122 +-- > > arch/arm/dts/t8103-j293-u-boot.dtsi | 1 + > > arch/arm/dts/t8103-j293.dts | 92 +-- > > arch/arm/dts/t8103-j313-u-boot.dtsi | 1 + > > arch/arm/dts/t8103-j313.dts | 57 ++ > > arch/arm/dts/t8103-j456-u-boot.dtsi | 1 + > > arch/arm/dts/t8103-j456.dts | 71 ++ > > arch/arm/dts/t8103-j457-u-boot.dtsi | 1 + > > arch/arm/dts/t8103-j457.dts | 59 ++ > > arch/arm/dts/t8103-jxxx.dtsi | 140 ++++ > > arch/arm/dts/t8103-pmgr.dtsi | 1136 +++++++++++++++++++++++++++ > > arch/arm/dts/t8103-u-boot.dtsi | 25 + > > arch/arm/dts/t8103.dtsi | 585 +++++++------- > > drivers/mailbox/Kconfig | 9 + > > drivers/mailbox/Makefile | 1 + > > drivers/power/domain/Kconfig | 8 + > > drivers/power/domain/Makefile | 1 + > > drivers/power/domain/apple-pmgr.c | 113 +++ > > 21 files changed, 2005 insertions(+), 428 deletions(-) > > create mode 100644 arch/arm/dts/t8103-j274-u-boot.dtsi > > create mode 100644 arch/arm/dts/t8103-j293-u-boot.dtsi > > create mode 100644 arch/arm/dts/t8103-j313-u-boot.dtsi > > create mode 100644 arch/arm/dts/t8103-j313.dts > > create mode 100644 arch/arm/dts/t8103-j456-u-boot.dtsi > > create mode 100644 arch/arm/dts/t8103-j456.dts > > create mode 100644 arch/arm/dts/t8103-j457-u-boot.dtsi > > create mode 100644 arch/arm/dts/t8103-j457.dts > > create mode 100644 arch/arm/dts/t8103-jxxx.dtsi > > create mode 100644 arch/arm/dts/t8103-pmgr.dtsi > > create mode 100644 arch/arm/dts/t8103-u-boot.dtsi > > create mode 100644 drivers/power/domain/apple-pmgr.c > > > >