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 37D64C433EF for ; Thu, 23 Dec 2021 21:37:42 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 41535833C3; Thu, 23 Dec 2021 22:37:40 +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 D9F6983112; Thu, 23 Dec 2021 22:37:38 +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 B675483112 for ; Thu, 23 Dec 2021 22:37:35 +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 4be334fe; Thu, 23 Dec 2021 22:37:34 +0100 (CET) Date: Thu, 23 Dec 2021 22:37:34 +0100 (CET) From: Mark Kettenis To: Jaehoon Chung Cc: jh80.chung@samsung.com, kettenis@openbsd.org, u-boot@lists.denx.de, sjg@chromium.org In-Reply-To: <0c11af3c-b37f-cd7e-a200-e5f99d360c7a@gmail.com> (message from Jaehoon Chung on Wed, 22 Dec 2021 18:56:18 +0900) Subject: Re: [PATCH 0/3] Apple M1 power management controller support References: <20211206190305.8107-1-kettenis@openbsd.org> <0c11af3c-b37f-cd7e-a200-e5f99d360c7a@gmail.com> 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: Wed, 22 Dec 2021 18:56:18 +0900 Dear Jaehoon, Just noticed that I accidentally included some unrelated driver/mailbox changes in the first patch from this series. So I sent a v2 without those. Thanks, Mark > Hi Mark, > > On 12/21/21 5:30 PM, Mark Kettenis wrote: > >> 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. > > Thanks for sharing information. I will check on next branch. > > Best Regards, > Jaehoon Chung > > > > > 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 > >>> > >> > >