
Hi Mark,
On 12/21/21 5:30 PM, Mark Kettenis wrote:
From: Jaehoon Chung jh80.chung@samsung.com 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