* [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco
@ 2026-07-07 7:11 Kuldeep Singh
2026-07-07 7:11 ` [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC Kuldeep Singh
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Kuldeep Singh @ 2026-07-07 7:11 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: Kuldeep Singh, linux-arm-msm, devicetree, linux-kernel,
Neeraj Soni
The series is combination of below 2 series sent in past. Since, both
need to be picked together, combine them and send as one series.
- https://lore.kernel.org/lkml/20260608041650.541502-1-neeraj.soni@oss.qualcomm.com/
- https://lore.kernel.org/linux-arm-msm/20260409-ice_emmc_clock_addition-v2-0-90bbcc057361@oss.qualcomm.com/
Document and wire the SDHCI to ICE relationship on Qualcomm platforms
where ICE is modelled as a dedicated DT node.
This series:
- adds the qcom,ice phandle to the SDHCI binding and enforces the
qcom,ice vs embedded-reg modelling rule,
- enables ICE for kodiak and monaco by wiring SDHC to the dedicated ICE
node,
- adds interface clock and power-domain requirements for the ICE node in
affected DTS files.
How this series was tested:
- make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \
DT_SCHEMA_FILES=Documentation/devicetree/bindings/mmc/qcom,sdhci-msm.yaml \
dt_binding_check
- make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- CHECK_DTBS=y \
qcom/monaco-arduino-monza.dtb qcom/monaco-evk.dtb \
qcom/qcm6490-fairphone-fp5.dtb qcom/qcm6490-idp.dtb \
qcom/qcm6490-particle-tachyon.dtb qcom/qcm6490-shift-otter.dtb \
qcom/qcs6490-radxa-dragon-q6a.dtb qcom/qcs6490-rb3gen2.dtb \
qcom/qcs6490-thundercomm-minipc-g1iot.dtb \
qcom/qcs6490-thundercomm-rubikpi3.dtb qcom/qcs8300-ride.dtb \
qcom/sc7280-crd-r3.dtb qcom/sc7280-herobrine-crd-pro.dtb \
qcom/sc7280-herobrine-crd.dtb qcom/sc7280-herobrine-evoker-lte.dtb \
qcom/sc7280-herobrine-evoker.dtb qcom/sc7280-herobrine-herobrine-r1.dtb \
qcom/sc7280-herobrine-villager-r0.dtb \
qcom/sc7280-herobrine-villager-r1-lte.dtb \
qcom/sc7280-herobrine-villager-r1.dtb \
qcom/sc7280-herobrine-zombie-lte.dtb \
qcom/sc7280-herobrine-zombie-nvme-lte.dtb \
qcom/sc7280-herobrine-zombie-nvme.dtb qcom/sc7280-herobrine-zombie.dtb \
qcom/sc7280-idp.dtb qcom/sc7280-idp2.dtb \
qcom/sm7325-motorola-dubai.dtb qcom/sm7325-nothing-spacewar.dtb
Signed-off-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
---
Changes in v9:
- Rebased on linux-next tag next-20260706 (base commit 8e9685d3c41c).
- Drop dt-bindings as already picked in -next by Ulf.
- Enable ice node default for sdhc and ufs and validate DT schema(with
dt-bindings applied locally).
- Link to v8: https://patch.msgid.link/20260629-ice_emmc_support-v8-0-1a26e1717b85@oss.qualcomm.com
Changes in v8:
- Added iface clock, clock-names, power-domain and disabled status in
kodiak and monaco ICE nodes.
- Enabled ICE in board DTS files where SDHC is enabled while keeping SoC
ICE nodes disabled by default.
- Updated trailers to reflect co-development and sender sign-off order.
- Revalidated with dt_binding_check and CHECK_DTBS for all impacted DTS.
- Link to v7: https://lore.kernel.org/all/20260608041650.541502-1-neeraj.soni@oss.qualcomm.com/
Changes in v7:
- Rebased on latest linux-next (sdhci-msm.yaml renamed to qcom,sdhci-msm.yaml).
- Added links for previous versions.
- Link to v6: https://lore.kernel.org/all/20260310113557.348502-1-neeraj.soni@oss.qualcomm.com/
Changes in v6:
- Wrapped commit message for patch (1/3) as per Linux coding guidelines.
- Signed off the patch (3/3).
- Link to v5: https://lore.kernel.org/all/20260306093332.4193993-1-neeraj.soni@oss.qualcomm.com/
Changes in v5:
- Updated the constraint for SDHCI 'v4' vs rest to reflect the 'qcom,ice'
constraint.
- Link to v4: https://lore.kernel.org/all/20260217052526.2335759-1-neeraj.soni@oss.qualcomm.com/
Changes in v4:
- Added a new patch (3/3) for device tree changes for Monaco SoC.
- Updated commit subject of cover letter to reflect "monaco".
- Removed the text description of constraints from "description:" for "qcom,ice" and
wrapped the code.
- Corrected the schema code to reflect the constraint of "qcom,ice" usage properly.
- Link to v3: https://lore.kernel.org/all/20260206112053.3287756-1-neeraj.soni@oss.qualcomm.com/
Changes in v3:
- Described the purpose for phandle in "description:" for "qcom,ice".
- Re-added the "if: required:" description for "qcom,ice" with proper
encoding.
- Corrected the uppercase for base address and reg address space for ICE DT node.
- Link to v2: https://lore.kernel.org/all/20260114094848.3790487-1-neeraj.soni@oss.qualcomm.com/
Changes in v2:
- Removed the "if: required:" description for "qcom,ice" dt-binding
as the ICE node is optional.
- Corrected the ICE dt node entry according to the dt-binding description.
- Added test details.
- Link to v1: https://lore.kernel.org/all/20251124111914.3187803-1-neeraj.soni@oss.qualcomm.com/
Changes in v1:
- Updated the dt-binding for ICE node.
- Added the dt node for ICE for kodiak.
To: Bjorn Andersson <andersson@kernel.org>
To: Konrad Dybcio <konradybcio@kernel.org>
To: Rob Herring <robh@kernel.org>
To: Krzysztof Kozlowski <krzk+dt@kernel.org>
To: Conor Dooley <conor+dt@kernel.org>
Cc: linux-arm-msm@vger.kernel.org
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
Neeraj Soni (2):
arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC
arm64: dts: qcom: monaco: enable inline crypto engine for SDHC
arch/arm64/boot/dts/qcom/kodiak.dtsi | 13 +++++++++++++
arch/arm64/boot/dts/qcom/monaco.dtsi | 13 +++++++++++++
2 files changed, 26 insertions(+)
---
base-commit: 8e9685d3c41c35dd1b37df70d854137abcb2fbac
change-id: 20260629-ice_emmc_support-b24c84cb5054
Best regards,
--
Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC
2026-07-07 7:11 [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
@ 2026-07-07 7:11 ` Kuldeep Singh
2026-07-07 7:55 ` sashiko-bot
2026-07-29 14:16 ` Konrad Dybcio
2026-07-07 7:11 ` [PATCH v9 2/2] arm64: dts: qcom: monaco: " Kuldeep Singh
2026-07-21 7:13 ` [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
2 siblings, 2 replies; 12+ messages in thread
From: Kuldeep Singh @ 2026-07-07 7:11 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: Kuldeep Singh, linux-arm-msm, devicetree, linux-kernel,
Neeraj Soni
From: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
Add the dedicated ICE node for kodiak and reference it from the SDHC
controller via qcom,ice.
Also, define power-domains and clocks properties similar to the UFS
node.
Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
Co-developed-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
Signed-off-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/kodiak.dtsi | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/kodiak.dtsi b/arch/arm64/boot/dts/qcom/kodiak.dtsi
index 90e50c245c0c..3692be65cc21 100644
--- a/arch/arm64/boot/dts/qcom/kodiak.dtsi
+++ b/arch/arm64/boot/dts/qcom/kodiak.dtsi
@@ -1050,6 +1050,8 @@ sdhc_1: mmc@7c4000 {
qcom,dll-config = <0x0007642c>;
qcom,ddr-config = <0x80040868>;
+ qcom,ice = <&sdhc_ice>;
+
mmc-ddr-1_8v;
mmc-hs200-1_8v;
mmc-hs400-1_8v;
@@ -1076,6 +1078,17 @@ opp-384000000 {
};
};
+ sdhc_ice: crypto@7c8000 {
+ compatible = "qcom,sc7280-inline-crypto-engine",
+ "qcom,inline-crypto-engine";
+ reg = <0x0 0x007c8000 0x0 0x18000>;
+ clocks = <&gcc GCC_SDCC1_ICE_CORE_CLK>,
+ <&gcc GCC_SDCC1_AHB_CLK>;
+ clock-names = "core",
+ "iface";
+ power-domains = <&rpmhpd SC7280_CX>;
+ };
+
gpi_dma0: dma-controller@900000 {
#dma-cells = <3>;
compatible = "qcom,sc7280-gpi-dma", "qcom,sm6350-gpi-dma";
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v9 2/2] arm64: dts: qcom: monaco: enable inline crypto engine for SDHC
2026-07-07 7:11 [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
2026-07-07 7:11 ` [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC Kuldeep Singh
@ 2026-07-07 7:11 ` Kuldeep Singh
2026-07-07 8:05 ` sashiko-bot
2026-07-29 14:16 ` Konrad Dybcio
2026-07-21 7:13 ` [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
2 siblings, 2 replies; 12+ messages in thread
From: Kuldeep Singh @ 2026-07-07 7:11 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: Kuldeep Singh, linux-arm-msm, devicetree, linux-kernel,
Neeraj Soni
From: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
Add the dedicated ICE node for monaco and reference it from the SDHC
controller via qcom,ice.
Also, define power-domains and clocks properties similar to the UFS
node.
Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
Co-developed-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
Signed-off-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/monaco.dtsi | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/monaco.dtsi b/arch/arm64/boot/dts/qcom/monaco.dtsi
index 400c75437978..ffb13d61ee36 100644
--- a/arch/arm64/boot/dts/qcom/monaco.dtsi
+++ b/arch/arm64/boot/dts/qcom/monaco.dtsi
@@ -4864,6 +4864,8 @@ &mc_virt SLAVE_EBI1 QCOM_ICC_TAG_ALWAYS>,
supports-cqe;
dma-coherent;
+ qcom,ice = <&sdhc_ice>;
+
mmc-ddr-1_8v;
mmc-hs200-1_8v;
mmc-hs400-1_8v;
@@ -4896,6 +4898,17 @@ opp-384000000 {
};
};
+ sdhc_ice: crypto@87c8000 {
+ compatible = "qcom,qcs8300-inline-crypto-engine",
+ "qcom,inline-crypto-engine";
+ reg = <0x0 0x087c8000 0x0 0x18000>;
+ clocks = <&gcc GCC_SDCC1_ICE_CORE_CLK>,
+ <&gcc GCC_SDCC1_AHB_CLK>;
+ clock-names = "core",
+ "iface";
+ power-domains = <&rpmhpd RPMHPD_CX>;
+ };
+
usb_1_hsphy: phy@8904000 {
compatible = "qcom,qcs8300-usb-hs-phy",
"qcom,usb-snps-hs-7nm-phy";
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC
2026-07-07 7:11 ` [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC Kuldeep Singh
@ 2026-07-07 7:55 ` sashiko-bot
2026-07-07 8:41 ` Kuldeep Singh
2026-07-29 14:16 ` Konrad Dybcio
1 sibling, 1 reply; 12+ messages in thread
From: sashiko-bot @ 2026-07-07 7:55 UTC (permalink / raw)
To: Kuldeep Singh; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The `qcom,ice` property is added to the SDHC controller node (`sdhc_1`) but is completely missing from the `qcom,sdhci-msm.yaml` device tree binding schema.
--
--- Patch [1]: [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC ---
commit d2f9d6d523de87c6105a372982b5405f3d09ebde
Author: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC
This commit adds a dedicated inline crypto engine (ICE) node for kodiak and
references it from the SDHC controller via the qcom,ice property. It also
sets up the necessary power domains and clocks.
> diff --git a/arch/arm64/boot/dts/qcom/kodiak.dtsi b/arch/arm64/boot/dts/qcom/kodiak.dtsi
> index 90e50c245c0cb..3692be65cc21b 100644
> --- a/arch/arm64/boot/dts/qcom/kodiak.dtsi
> +++ b/arch/arm64/boot/dts/qcom/kodiak.dtsi
[ ... ]
> @@ -1050,6 +1050,8 @@ sdhc_1: mmc@7c4000 {
> qcom,dll-config = <0x0007642c>;
> qcom,ddr-config = <0x80040868>;
>
> + qcom,ice = <&sdhc_ice>;
[Severity: Low]
Does this new property trigger a dtbs_check validation error?
The Documentation/devicetree/bindings/mmc/qcom,sdhci-msm.yaml schema uses
unevaluatedProperties: false. Because the qcom,ice property is not
currently documented in that schema, adding it to the SDHC controller node
here causes make dtbs_check to report a validation failure.
Should the binding schema be updated to include qcom,ice alongside this
device tree change?
> +
> mmc-ddr-1_8v;
> mmc-hs200-1_8v;
> mmc-hs400-1_8v;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260707-ice_emmc_support-v9-0-701c86f3c25b@oss.qualcomm.com?part=1
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 2/2] arm64: dts: qcom: monaco: enable inline crypto engine for SDHC
2026-07-07 7:11 ` [PATCH v9 2/2] arm64: dts: qcom: monaco: " Kuldeep Singh
@ 2026-07-07 8:05 ` sashiko-bot
2026-07-29 14:16 ` Konrad Dybcio
1 sibling, 0 replies; 12+ messages in thread
From: sashiko-bot @ 2026-07-07 8:05 UTC (permalink / raw)
To: Kuldeep Singh; +Cc: devicetree, robh, conor+dt
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The `qcom,ice` property is used in the SDHC node, but it is not documented in the `qcom,sdhci-msm.yaml` binding schema.
--
--- Patch [2]: [PATCH v9 2/2] arm64: dts: qcom: monaco: enable inline crypto engine for SDHC ---
commit f78e20bb65841709496ac90470aafd18132c8970
Author: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
arm64: dts: qcom: monaco: enable inline crypto engine for SDHC
This patch adds a dedicated Inline Crypto Engine (ICE) node for the
monaco platform. It references the new node from the SDHC controller
using the qcom,ice property and defines power-domains and clocks.
> diff --git a/arch/arm64/boot/dts/qcom/monaco.dtsi b/arch/arm64/boot/dts/qcom/monaco.dtsi
> index 400c754379783..ffb13d61ee36d 100644
> --- a/arch/arm64/boot/dts/qcom/monaco.dtsi
> +++ b/arch/arm64/boot/dts/qcom/monaco.dtsi
> @@ -4864,6 +4864,8 @@ &mc_virt SLAVE_EBI1 QCOM_ICC_TAG_ALWAYS>,
> supports-cqe;
> dma-coherent;
>
> + qcom,ice = <&sdhc_ice>;
[Severity: Low]
Will this undocumented qcom,ice property cause dtbs_check warnings?
Looking at the qcom,sdhci-msm.yaml binding schema, the qcom,ice property
doesn't appear to be defined. Since the schema enforces
unevaluatedProperties: false, adding this property here might trigger
validation warnings during the build.
Should this property be added to the devicetree bindings first?
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260707-ice_emmc_support-v9-0-701c86f3c25b@oss.qualcomm.com?part=2
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC
2026-07-07 7:55 ` sashiko-bot
@ 2026-07-07 8:41 ` Kuldeep Singh
0 siblings, 0 replies; 12+ messages in thread
From: Kuldeep Singh @ 2026-07-07 8:41 UTC (permalink / raw)
To: sashiko-reviews; +Cc: robh, conor+dt, devicetree
>> diff --git a/arch/arm64/boot/dts/qcom/kodiak.dtsi b/arch/arm64/boot/dts/qcom/kodiak.dtsi
>> index 90e50c245c0cb..3692be65cc21b 100644
>> --- a/arch/arm64/boot/dts/qcom/kodiak.dtsi
>> +++ b/arch/arm64/boot/dts/qcom/kodiak.dtsi
> [ ... ]
>> @@ -1050,6 +1050,8 @@ sdhc_1: mmc@7c4000 {
>> qcom,dll-config = <0x0007642c>;
>> qcom,ddr-config = <0x80040868>;
>>
>> + qcom,ice = <&sdhc_ice>;
>
> [Severity: Low]
> Does this new property trigger a dtbs_check validation error?
>
> The Documentation/devicetree/bindings/mmc/qcom,sdhci-msm.yaml schema uses
> unevaluatedProperties: false. Because the qcom,ice property is not
> currently documented in that schema, adding it to the SDHC controller node
> here causes make dtbs_check to report a validation failure.
>
> Should the binding schema be updated to include qcom,ice alongside this
> device tree change?
As mentioned in cover letter too, dt-bindings with qcom,ice property is
accepted hence, sent v9 without bindings change.
Validated dtbs_check locally, taking dt-bindings as base kodiak/monaco
DT didn't give any error.
--
Regards
Kuldeep
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco
2026-07-07 7:11 [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
2026-07-07 7:11 ` [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC Kuldeep Singh
2026-07-07 7:11 ` [PATCH v9 2/2] arm64: dts: qcom: monaco: " Kuldeep Singh
@ 2026-07-21 7:13 ` Kuldeep Singh
2026-08-24 8:43 ` Kuldeep Singh
2 siblings, 1 reply; 12+ messages in thread
From: Kuldeep Singh @ 2026-07-21 7:13 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Neeraj Soni
On 07-07-2026 12:41, Kuldeep Singh wrote:
> The series is combination of below 2 series sent in past. Since, both
> need to be picked together, combine them and send as one series.
> - https://lore.kernel.org/lkml/20260608041650.541502-1-neeraj.soni@oss.qualcomm.com/
> - https://lore.kernel.org/linux-arm-msm/20260409-ice_emmc_clock_addition-v2-0-90bbcc057361@oss.qualcomm.com/
>
> Document and wire the SDHCI to ICE relationship on Qualcomm platforms
> where ICE is modelled as a dedicated DT node.
>
> This series:
> - adds the qcom,ice phandle to the SDHCI binding and enforces the
> qcom,ice vs embedded-reg modelling rule,
> - enables ICE for kodiak and monaco by wiring SDHC to the dedicated ICE
> node,
> - adds interface clock and power-domain requirements for the ICE node in
> affected DTS files.
Konrad/Bjorn, could you please review and let me know for any comments.
--
Regards
Kuldeep
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC
2026-07-07 7:11 ` [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC Kuldeep Singh
2026-07-07 7:55 ` sashiko-bot
@ 2026-07-29 14:16 ` Konrad Dybcio
1 sibling, 0 replies; 12+ messages in thread
From: Konrad Dybcio @ 2026-07-29 14:16 UTC (permalink / raw)
To: Kuldeep Singh, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Neeraj Soni
On 7/7/26 9:11 AM, Kuldeep Singh wrote:
> From: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
>
> Add the dedicated ICE node for kodiak and reference it from the SDHC
> controller via qcom,ice.
>
> Also, define power-domains and clocks properties similar to the UFS
> node.
>
> Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
> Co-developed-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
> Signed-off-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 2/2] arm64: dts: qcom: monaco: enable inline crypto engine for SDHC
2026-07-07 7:11 ` [PATCH v9 2/2] arm64: dts: qcom: monaco: " Kuldeep Singh
2026-07-07 8:05 ` sashiko-bot
@ 2026-07-29 14:16 ` Konrad Dybcio
1 sibling, 0 replies; 12+ messages in thread
From: Konrad Dybcio @ 2026-07-29 14:16 UTC (permalink / raw)
To: Kuldeep Singh, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Neeraj Soni
On 7/7/26 9:11 AM, Kuldeep Singh wrote:
> From: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
>
> Add the dedicated ICE node for monaco and reference it from the SDHC
> controller via qcom,ice.
>
> Also, define power-domains and clocks properties similar to the UFS
> node.
>
> Signed-off-by: Neeraj Soni <neeraj.soni@oss.qualcomm.com>
> Co-developed-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
> Signed-off-by: Kuldeep Singh <kuldeep.singh@oss.qualcomm.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco
2026-07-21 7:13 ` [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
@ 2026-08-24 8:43 ` Kuldeep Singh
2026-08-24 9:21 ` Konrad Dybcio
0 siblings, 1 reply; 12+ messages in thread
From: Kuldeep Singh @ 2026-08-24 8:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Neeraj Soni
On 21-07-2026 12:43, Kuldeep Singh wrote:
> On 07-07-2026 12:41, Kuldeep Singh wrote:
>> The series is combination of below 2 series sent in past. Since, both
>> need to be picked together, combine them and send as one series.
>> - https://lore.kernel.org/lkml/20260608041650.541502-1-neeraj.soni@oss.qualcomm.com/
>> - https://lore.kernel.org/linux-arm-msm/20260409-ice_emmc_clock_addition-v2-0-90bbcc057361@oss.qualcomm.com/
>>
>> Document and wire the SDHCI to ICE relationship on Qualcomm platforms
>> where ICE is modelled as a dedicated DT node.
>>
>> This series:
>> - adds the qcom,ice phandle to the SDHCI binding and enforces the
>> qcom,ice vs embedded-reg modelling rule,
>> - enables ICE for kodiak and monaco by wiring SDHC to the dedicated ICE
>> node,
>> - adds interface clock and power-domain requirements for the ICE node in
>> affected DTS files.
>
> Konrad/Bjorn, could you please review and let me know for any comments.
Thanks Konrad for review.
Bjorn, can you please help in picking patch for v7.3-rc1.
--
Regards
Kuldeep
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco
2026-08-24 8:43 ` Kuldeep Singh
@ 2026-08-24 9:21 ` Konrad Dybcio
2026-08-24 10:18 ` Kuldeep Singh
0 siblings, 1 reply; 12+ messages in thread
From: Konrad Dybcio @ 2026-08-24 9:21 UTC (permalink / raw)
To: Kuldeep Singh, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Neeraj Soni
On 8/24/26 10:43 AM, Kuldeep Singh wrote:
> On 21-07-2026 12:43, Kuldeep Singh wrote:
>> On 07-07-2026 12:41, Kuldeep Singh wrote:
>>> The series is combination of below 2 series sent in past. Since, both
>>> need to be picked together, combine them and send as one series.
>>> - https://lore.kernel.org/lkml/20260608041650.541502-1-neeraj.soni@oss.qualcomm.com/
>>> - https://lore.kernel.org/linux-arm-msm/20260409-ice_emmc_clock_addition-v2-0-90bbcc057361@oss.qualcomm.com/
>>>
>>> Document and wire the SDHCI to ICE relationship on Qualcomm platforms
>>> where ICE is modelled as a dedicated DT node.
>>>
>>> This series:
>>> - adds the qcom,ice phandle to the SDHCI binding and enforces the
>>> qcom,ice vs embedded-reg modelling rule,
>>> - enables ICE for kodiak and monaco by wiring SDHC to the dedicated ICE
>>> node,
>>> - adds interface clock and power-domain requirements for the ICE node in
>>> affected DTS files.
>>
>> Konrad/Bjorn, could you please review and let me know for any comments.
> Thanks Konrad for review.
> Bjorn, can you please help in picking patch for v7.3-rc1.
I'm afraid you're unfamiliar with the release process and have
mismatched expectations. The feature development of 7.3 on
maintainer trees is done already and the RCs will only pull in
fixes to the new code.
After v7.3-rc1 is released (and we expect that to happen next
Sunday), for-next branches will be created atop it and maintainers
will be able to accept patches targetting v7.4
Konrad
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco
2026-08-24 9:21 ` Konrad Dybcio
@ 2026-08-24 10:18 ` Kuldeep Singh
0 siblings, 0 replies; 12+ messages in thread
From: Kuldeep Singh @ 2026-08-24 10:18 UTC (permalink / raw)
To: Konrad Dybcio, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Neeraj Soni
> I'm afraid you're unfamiliar with the release process and have
> mismatched expectations. The feature development of 7.3 on
> maintainer trees is done already and the RCs will only pull in
> fixes to the new code.
Sure konrad, what I am more afraid here is that patch was in ready to
accept state but somehow got *missed/skipped* to pull in maintainer tree.
I think i was well before that timeline but still couldn't have this
patch in(for v7.3). Not sure if something to change at my end.
Can we atleast pull in for v7.4 now?
--
Regards
Kuldeep
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-08-24 10:18 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-07 7:11 [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
2026-07-07 7:11 ` [PATCH v9 1/2] arm64: dts: qcom: kodiak: enable inline crypto engine for SDHC Kuldeep Singh
2026-07-07 7:55 ` sashiko-bot
2026-07-07 8:41 ` Kuldeep Singh
2026-07-29 14:16 ` Konrad Dybcio
2026-07-07 7:11 ` [PATCH v9 2/2] arm64: dts: qcom: monaco: " Kuldeep Singh
2026-07-07 8:05 ` sashiko-bot
2026-07-29 14:16 ` Konrad Dybcio
2026-07-21 7:13 ` [PATCH v9 0/2] Enable sdhc inline crypto engine for kodiak and monaco Kuldeep Singh
2026-08-24 8:43 ` Kuldeep Singh
2026-08-24 9:21 ` Konrad Dybcio
2026-08-24 10:18 ` Kuldeep Singh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox