All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Biggers <ebiggers@kernel.org>
To: Md Sadre Alam <quic_mdalam@quicinc.com>
Cc: adrian.hunter@intel.com, ulf.hansson@linaro.org,
	linux-arm-msm@vger.kernel.org, linux-mmc@vger.kernel.org,
	linux-kernel@vger.kernel.org, quic_varada@quicinc.com
Subject: Re: [PATCH v2] mmc: sdhci-msm: Enable ICE support for non-cmdq eMMC devices
Date: Tue, 21 Oct 2025 22:44:23 -0700	[thread overview]
Message-ID: <20251022054423.GB35717@sol> (raw)
In-Reply-To: <abe89411-e590-29df-e9e9-b50402e08aac@quicinc.com>

On Wed, Oct 22, 2025 at 10:49:23AM +0530, Md Sadre Alam wrote:
> Hi,
> 
> On 10/17/2025 11:08 PM, Eric Biggers wrote:
> > On Tue, Oct 14, 2025 at 03:05:03PM +0530, Md Sadre Alam wrote:
> > > Enable Inline Crypto Engine (ICE) support for eMMC devices that operate
> > > without Command Queue Engine (CQE).This allows hardware-accelerated
> > > encryption and decryption for standard (non-CMDQ) requests.
> > > 
> > > This patch:
> > > - Adds ICE register definitions for non-CMDQ crypto configuration
> > > - Implements a per-request crypto setup via sdhci_msm_ice_cfg()
> > > - Hooks into the request path via mmc_host_ops.request
> > > - Initializes ICE hardware during CQE setup for compatible platforms
> > > 
> > > With this, non-CMDQ eMMC devices can benefit from inline encryption,
> > > improving performance for encrypted I/O while maintaining compatibility
> > > with existing CQE crypto support.
> > > 
> > > Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com>
> > 
> > How was this tested?
> I tested this using fscrypt on a Phison eMMC device. However, since that
> particular eMMC does not support CMDQ, inline encryption (ICE) was bypassed
> during testing.

What do you mean by "inline encryption (ICE) was bypassed during
testing"?

> +static int sdhci_msm_ice_cfg(struct sdhci_host *host, struct mmc_request *mrq,
> +			     u32 slot)

Could you also remove the unused 'slot' parameter from this function?

> > > @@ -2185,6 +2241,18 @@ static int sdhci_msm_cqe_add_host(struct sdhci_host *host,
> > >   	if (ret)
> > >   		goto cleanup;
> > > +	/* Initialize ICE for non-CMDQ eMMC devices */
> > > +	config = sdhci_readl(host, HC_VENDOR_SPECIFIC_FUNC4);
> > > +	config &= ~DISABLE_CRYPTO;
> > > +	sdhci_writel(host, config, HC_VENDOR_SPECIFIC_FUNC4);
> > > +	ice_cap = cqhci_readl(cq_host, CQHCI_CAP);
> > > +	if (ice_cap & ICE_HCI_SUPPORT) {
> > > +		config = cqhci_readl(cq_host, CQHCI_CFG);
> > > +		config |= CRYPTO_GENERAL_ENABLE;
> > > +		cqhci_writel(cq_host, config, CQHCI_CFG);
> > > +	}
> > > +	sdhci_msm_ice_enable(msm_host);
> > 
> > This is after __sdhci_add_host() was called, which is probably too late.
> ok,I’ll move the ICE initialization earlier in the probe flow, ideally
> before __sdhci_add_host() is called.
> > 
> > > +#ifdef CONFIG_MMC_CRYPTO
> > > +	host->mmc_host_ops.request = sdhci_msm_request;
> > > +#endif
> > >   	/* Set the timeout value to max possible */
> > >   	host->max_timeout_count = 0xF;
> > 
> > A lot of the code in this patch also seems to actually run on
> > CQE-capable hosts.  Can you explain?  Why is it needed?  Is there any
> > change in behavior on them?
> Thanks for raising this. You're right that some parts of the patch interact
> with CQE-related structures, such as cqhci_host, even on CQE-capable hosts.
> However, the intent is to reuse existing CQE infrastructure (like register
> access helpers and memory-mapped regions) to configure ICE for non-CMDQ
> requests.
> 
> Importantly, actual CQE functionality is only enabled if the eMMC device
> advertises CMDQ support. For devices without CMDQ, the CQE engine remains
> disabled, and the request path falls back to standard non-CMDQ flow. In this
> case, we're simply leveraging the CQE register space to program ICE
> parameters.
> 
> So while the code runs on CQE-capable hosts, there's no change in behavior
> for CMDQ-enabled devices — the patch does not interfere with CQE operation.
> It only enables ICE for non-CMDQ requests when supported by the platform.

So, we're dealing only with hosts that do support a command queue, but
support eMMC devices either with or without using it?

Could you explain why sdhci_msm_ice_enable() is called twice: once from
sdhci_msm_cqe_add_host() and once from sdhci_msm_cqe_enable()?

- Eric

  reply	other threads:[~2025-10-22  5:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-14  9:35 [PATCH v2] mmc: sdhci-msm: Enable ICE support for non-cmdq eMMC devices Md Sadre Alam
2025-10-16  7:08 ` Adrian Hunter
2025-10-17 13:06 ` Ulf Hansson
2025-10-17 17:38 ` Eric Biggers
2025-10-22  5:19   ` Md Sadre Alam
2025-10-22  5:44     ` Eric Biggers [this message]
2025-10-22  6:32       ` Md Sadre Alam

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=20251022054423.GB35717@sol \
    --to=ebiggers@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=quic_mdalam@quicinc.com \
    --cc=quic_varada@quicinc.com \
    --cc=ulf.hansson@linaro.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.