From: Nick Chan <towinchenmi@gmail.com>
To: Hector Martin <marcan@marcan.st>, Sven Peter <sven@svenpeter.dev>,
Alyssa Rosenzweig <alyssa@rosenzweig.io>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
asahi@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Nick Chan <towinchenmi@gmail.com>
Subject: [PATCH asahi-soc/dt v3 00/10] Add PMGR nodes for Apple A7-A11 SoCs
Date: Sun, 3 Nov 2024 15:31:11 +0800 [thread overview]
Message-ID: <20241103073319.30672-1-towinchenmi@gmail.com> (raw)
This series adds the PMGR nodes and all known power state subnodes for
Apple A7-A11 SoCs, along with the associated dt-bindings.
Changes since v2:
- Removed "apple,always-on" property from "ps_pmp" from s8001, t8011,
t8015 power domains. It is not on at boot. (Mixed up with ps_pms which
is required to be on)
- Add asahi-soc/dt back into the subject prefix, missing from v2.
Link to v2: https://lore.kernel.org/asahi/20241102011004.59339-1-towinchenmi@gmail.com
Changes since v1:
- Removed "framebuffer0" dt aliases. It is not standard and not needed.
Link to v1: https://lore.kernel.org/asahi/20241029010526.42052-1-towinchenmi@gmail.com
Nick Chan
---
Nick Chan (10):
dt-bindings: arm: apple: apple,pmgr: Add A7-A11 compatibles
dt-bindings: arm: apple: apple,pmgr-pwrstate: Add A7-A11 compatibles
arm64: dts: apple: s5l8960x: Add PMGR node
arm64: dts: apple: t7000: Add PMGR node
arm64: dts: apple: t7001: Add PMGR node
arm64: dts: apple: s8000: Add PMGR nodes
arm64: dts: apple: s8001: Add PMGR nodes
arm64: dts: apple: t8010: Add PMGR nodes
arm64: dts: apple: t8011: Add PMGR nodes
arm64: dts: apple: t8015: Add PMGR nodes
.../bindings/arm/apple/apple,pmgr.yaml | 5 +
.../bindings/power/apple,pmgr-pwrstate.yaml | 5 +
arch/arm64/boot/dts/apple/s5l8960x-5s.dtsi | 4 +
arch/arm64/boot/dts/apple/s5l8960x-air1.dtsi | 4 +
arch/arm64/boot/dts/apple/s5l8960x-mini2.dtsi | 4 +
arch/arm64/boot/dts/apple/s5l8960x-pmgr.dtsi | 610 ++++++++++++
arch/arm64/boot/dts/apple/s5l8960x.dtsi | 13 +
arch/arm64/boot/dts/apple/s8000-pmgr.dtsi | 757 ++++++++++++++
arch/arm64/boot/dts/apple/s8000.dtsi | 22 +
arch/arm64/boot/dts/apple/s8001-common.dtsi | 1 +
.../arm64/boot/dts/apple/s8001-j98a-j99a.dtsi | 26 +
arch/arm64/boot/dts/apple/s8001-j98a.dts | 1 +
arch/arm64/boot/dts/apple/s8001-j99a.dts | 1 +
arch/arm64/boot/dts/apple/s8001-pmgr.dtsi | 822 ++++++++++++++++
arch/arm64/boot/dts/apple/s8001.dtsi | 22 +
arch/arm64/boot/dts/apple/s800x-6s.dtsi | 4 +
arch/arm64/boot/dts/apple/s800x-ipad5.dtsi | 4 +
arch/arm64/boot/dts/apple/s800x-se.dtsi | 4 +
arch/arm64/boot/dts/apple/t7000-6.dtsi | 4 +
arch/arm64/boot/dts/apple/t7000-j42d.dts | 1 +
arch/arm64/boot/dts/apple/t7000-mini4.dtsi | 4 +
arch/arm64/boot/dts/apple/t7000-n102.dts | 4 +
arch/arm64/boot/dts/apple/t7000-pmgr.dtsi | 641 ++++++++++++
arch/arm64/boot/dts/apple/t7000.dtsi | 14 +
arch/arm64/boot/dts/apple/t7001-air2.dtsi | 1 +
arch/arm64/boot/dts/apple/t7001-pmgr.dtsi | 650 ++++++++++++
arch/arm64/boot/dts/apple/t7001.dtsi | 13 +
arch/arm64/boot/dts/apple/t8010-7.dtsi | 4 +
arch/arm64/boot/dts/apple/t8010-ipad6.dtsi | 4 +
arch/arm64/boot/dts/apple/t8010-n112.dts | 4 +
arch/arm64/boot/dts/apple/t8010-pmgr.dtsi | 772 +++++++++++++++
arch/arm64/boot/dts/apple/t8010.dtsi | 22 +
arch/arm64/boot/dts/apple/t8011-common.dtsi | 1 +
arch/arm64/boot/dts/apple/t8011-pmgr.dtsi | 806 +++++++++++++++
arch/arm64/boot/dts/apple/t8011-pro2.dtsi | 8 +
arch/arm64/boot/dts/apple/t8011.dtsi | 22 +
arch/arm64/boot/dts/apple/t8015-common.dtsi | 1 +
arch/arm64/boot/dts/apple/t8015-pmgr.dtsi | 930 ++++++++++++++++++
arch/arm64/boot/dts/apple/t8015.dtsi | 21 +
39 files changed, 6236 insertions(+)
create mode 100644 arch/arm64/boot/dts/apple/s5l8960x-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/s8000-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/s8001-j98a-j99a.dtsi
create mode 100644 arch/arm64/boot/dts/apple/s8001-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/t7000-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/t7001-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/t8010-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/t8011-pmgr.dtsi
create mode 100644 arch/arm64/boot/dts/apple/t8015-pmgr.dtsi
base-commit: 5c9de6f45db36b8a74c12e448cf9db87c97bf1e5
--
2.47.0
next reply other threads:[~2024-11-03 7:33 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-03 7:31 Nick Chan [this message]
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 01/10] dt-bindings: arm: apple: apple,pmgr: Add A7-A11 compatibles Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 02/10] dt-bindings: arm: apple: apple,pmgr-pwrstate: " Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 03/10] arm64: dts: apple: s5l8960x: Add PMGR node Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 04/10] arm64: dts: apple: t7000: " Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 05/10] arm64: dts: apple: t7001: " Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 06/10] arm64: dts: apple: s8000: Add PMGR nodes Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 07/10] arm64: dts: apple: s8001: " Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 08/10] arm64: dts: apple: t8010: " Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 09/10] arm64: dts: apple: t8011: " Nick Chan
2024-11-03 7:31 ` [PATCH asahi-soc/dt v3 10/10] arm64: dts: apple: t8015: " Nick Chan
2024-11-11 13:21 ` [PATCH asahi-soc/dt v3 00/10] Add PMGR nodes for Apple A7-A11 SoCs Nick Chan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241103073319.30672-1-towinchenmi@gmail.com \
--to=towinchenmi@gmail.com \
--cc=alyssa@rosenzweig.io \
--cc=asahi@lists.linux.dev \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcan@marcan.st \
--cc=robh@kernel.org \
--cc=sven@svenpeter.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox