From: Sven Peter via B4 Relay <devnull+sven.svenpeter.dev@kernel.org>
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Janne Grunau <j@jannau.net>,
Alyssa Rosenzweig <alyssa@rosenzweig.io>,
Neal Gompa <neal@gompa.dev>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>
Cc: linux-kernel@vger.kernel.org, asahi@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org, Sven Peter <sven@svenpeter.dev>
Subject: [PATCH 5/7] arm64: dts: apple: t8103: Add eFuses node
Date: Sat, 10 May 2025 07:44:45 +0000 [thread overview]
Message-ID: <20250510-nvmem-dt-v1-5-eccfa6e33f6a@svenpeter.dev> (raw)
In-Reply-To: <20250510-nvmem-dt-v1-0-eccfa6e33f6a@svenpeter.dev>
From: Sven Peter <sven@svenpeter.dev>
Add the eFuse controller and the nvmem cells required for both Type-C
PHYs.
Signed-off-by: Sven Peter <sven@svenpeter.dev>
---
arch/arm64/boot/dts/apple/t8103.dtsi | 102 +++++++++++++++++++++++++++++++++++
1 file changed, 102 insertions(+)
diff --git a/arch/arm64/boot/dts/apple/t8103.dtsi b/arch/arm64/boot/dts/apple/t8103.dtsi
index 97b6a067394e311ed19392a34237c74936dbb7d7..e7ca9204a9a2fedc70111fdd8ed3f7e8e4f8d266 100644
--- a/arch/arm64/boot/dts/apple/t8103.dtsi
+++ b/arch/arm64/boot/dts/apple/t8103.dtsi
@@ -854,6 +854,108 @@ nvme@27bcc0000 {
resets = <&ps_ans2>;
};
+ efuse@23d2bc000 {
+ compatible = "apple,t8103-efuses", "apple,efuses";
+ reg = <0x2 0x3d2bc000 0x0 0x1000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ atcphy0_auspll_rodco_bias_adjust: efuse@430,26 {
+ reg = <0x430 4>;
+ bits = <26 3>;
+ };
+
+ atcphy0_auspll_rodco_encap: efuse@430,29 {
+ reg = <0x430 4>;
+ bits = <29 2>;
+ };
+
+ atcphy0_auspll_dtc_vreg_adjust: efuse@430,31 {
+ reg = <0x430 8>;
+ bits = <31 3>;
+ };
+
+ atcphy0_auspll_fracn_dll_start_capcode: efuse@434,2 {
+ reg = <0x434 4>;
+ bits = <2 2>;
+ };
+
+ atcphy0_aus_cmn_shm_vreg_trim: efuse@434,4 {
+ reg = <0x434 4>;
+ bits = <4 5>;
+ };
+
+ atcphy0_cio3pll_dco_coarsebin0: efuse@434,9 {
+ reg = <0x434 4>;
+ bits = <9 6>;
+ };
+
+ atcphy0_cio3pll_dco_coarsebin1: efuse@434,15 {
+ reg = <0x434 4>;
+ bits = <15 6>;
+ };
+
+ atcphy0_cio3pll_dll_start_capcode: efuse@434,21 {
+ reg = <0x434 4>;
+ bits = <21 2>;
+ };
+
+ atcphy0_cio3pll_dtc_vreg_adjust: efuse@434,23 {
+ reg = <0x434 0x4>;
+ bits = <23 3>;
+ };
+
+ atcphy1_auspll_rodco_bias_adjust: efuse@438,4 {
+ reg = <0x438 4>;
+ bits = <4 3>;
+ };
+
+ atcphy1_auspll_rodco_encap: efuse@438,7 {
+ reg = <0x438 4>;
+ bits = <7 2>;
+ };
+
+ atcphy1_auspll_dtc_vreg_adjust: efuse@438,9 {
+ reg = <0x438 4>;
+ bits = <9 3>;
+ };
+
+ atcphy1_auspll_fracn_dll_start_capcode: efuse@438,12 {
+ reg = <0x438 4>;
+ bits = <12 2>;
+ };
+
+ atcphy1_aus_cmn_shm_vreg_trim: efuse@438,14 {
+ reg = <0x438 4>;
+ bits = <14 5>;
+ };
+
+ atcphy1_cio3pll_dco_coarsebin0: efuse@438,19 {
+ reg = <0x438 4>;
+ bits = <19 6>;
+ };
+
+ atcphy1_cio3pll_dco_coarsebin1: efuse@438,25 {
+ reg = <0x438 4>;
+ bits = <25 6>;
+ };
+
+ atcphy1_cio3pll_dll_start_capcode: efuse@438,31 {
+ reg = <0x438 4>;
+ bits = <31 1>;
+ };
+
+ atcphy1_cio3pll_dll_start_capcode_workaround: efuse@43c,0 {
+ reg = <0x43c 0x4>;
+ bits = <0 1>;
+ };
+
+ atcphy1_cio3pll_dtc_vreg_adjust: efuse@43c,1 {
+ reg = <0x43c 0x4>;
+ bits = <1 3>;
+ };
+ };
+
pcie0_dart_0: iommu@681008000 {
compatible = "apple,t8103-dart";
reg = <0x6 0x81008000 0x0 0x4000>;
--
2.34.1
next prev parent reply other threads:[~2025-05-10 7:45 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-10 7:44 [PATCH 0/7] Support exposing bits of any byte as NVMEM cells Sven Peter via B4 Relay
2025-05-10 7:44 ` [PATCH 1/7] nvmem: core: allow bit offset > 8 Sven Peter via B4 Relay
2025-05-10 7:44 ` [PATCH 2/7] nvmem: core: round up to word_size Sven Peter via B4 Relay
2025-05-10 7:44 ` [PATCH 3/7] Revert "nvmem: core: Print error on wrong bits DT property" Sven Peter via B4 Relay
2025-05-10 7:44 ` [PATCH 4/7] dt-bindings: nvmem: apple: Add T8112 compatible Sven Peter via B4 Relay
2025-05-14 20:34 ` Rob Herring
2025-05-10 7:44 ` Sven Peter via B4 Relay [this message]
2025-05-10 7:44 ` [PATCH 6/7] arm64: dts: apple: t600x: Add eFuses node Sven Peter via B4 Relay
2025-05-10 7:44 ` [PATCH 7/7] arm64: dts: apple: t8112: " Sven Peter via B4 Relay
2025-05-12 12:49 ` [PATCH 0/7] Support exposing bits of any byte as NVMEM cells Rob Herring (Arm)
2025-05-14 20:32 ` Rob Herring
2025-05-14 20:38 ` Sven Peter
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=20250510-nvmem-dt-v1-5-eccfa6e33f6a@svenpeter.dev \
--to=devnull+sven.svenpeter.dev@kernel.org \
--cc=alyssa@rosenzweig.io \
--cc=asahi@lists.linux.dev \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=j@jannau.net \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=neal@gompa.dev \
--cc=robh@kernel.org \
--cc=srinivas.kandagatla@linaro.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