From: Bean Huo <huobean@gmail.com>
To: Avri Altman <Avri.Altman@sandisk.com>,
"avri.altman@wdc.com" <avri.altman@wdc.com>,
"bvanassche@acm.org" <bvanassche@acm.org>,
"alim.akhtar@samsung.com" <alim.akhtar@samsung.com>,
"jejb@linux.ibm.com" <jejb@linux.ibm.com>,
"martin.petersen@oracle.com" <martin.petersen@oracle.com>,
"can.guo@oss.qualcomm.com" <can.guo@oss.qualcomm.com>,
"ulf.hansson@linaro.org" <ulf.hansson@linaro.org>,
"beanhuo@micron.com" <beanhuo@micron.com>,
"jens.wiklander@linaro.org" <jens.wiklander@linaro.org>
Cc: "linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 3/3] scsi: ufs: core: Add OP-TEE based RPMB driver for UFS devices
Date: Wed, 08 Oct 2025 13:47:00 +0200 [thread overview]
Message-ID: <5f12fdaaa49aad21403a0a9b96d2b8b3a6d3ca1e.camel@gmail.com> (raw)
In-Reply-To: <PH7PR16MB6196ADF912182709D465970DE5E6A@PH7PR16MB6196.namprd16.prod.outlook.com>
On Wed, 2025-10-01 at 10:06 +0000, Avri Altman wrote:
> > From: Bean Huo <beanhuo@micron.com>
> >
> > This patch adds OP-TEE based RPMB support for UFS devices. This enables
> > secure RPMB operations on UFS devices through OP-TEE, providing the same
> > functionality available for eMMC devices and extending kernel-based secure
> > storage support to UFS-based systems.
> >
> > Benefits of OP-TEE based RPMB implementation:
> > - Eliminates dependency on userspace supplicant for RPMB access
> > - Enables early boot secure storage access (e.g., fTPM, secure UEFI
> > variables)
> > - Provides kernel-level RPMB access as soon as UFS driver is initialized
> > - Removes complex initramfs dependencies and boot ordering requirements
> > - Ensures reliable and deterministic secure storage operations
> > - Supports both built-in and modular fTPM configurations
> >
> > Co-developed-by: Can Guo <can.guo@oss.qualcomm.com>
> > Signed-off-by: Can Guo <can.guo@oss.qualcomm.com>
> > Signed-off-by: Bean Huo <beanhuo@micron.com>
> Reviewed-by: Avri Altman <avri.altman@sandisk.com>
>
> Nit: Would it make sense to simplify things, e.g. :
> Instead of struct list_head rpmbs;
> Use:
> struct ufs_rpmb_dev *rpmbs[4];
Hi Avri,
I am working on the next version, seems we should keep struct list_head rpmbs.
On the hot path, runtime RPMB I/O operations use dev_get_drvdata(dev) to get the
device pointer directly, never searching through hba->rpmbs. Array's O(1) direct
access advantage is therefore irrelevant. and the list is only accessed during
probe/remove (one-time operations at boot/shutdown) where performance
differences are negligible. The list iterates only over active regions without
NULL checks, while an array requires checking all 4 slots.
List uses 16 bytes per active region, array uses 32 bytes (4 × 8-byte pointers)
regardless of how many regions are active, most of UFS devices only enabled 1-2
RPMB regions, making the list more memory-efficient, right?
how do you think?
Kind regards,
Bean
next prev parent reply other threads:[~2025-10-08 11:47 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-01 6:08 [PATCH v2 0/3] Add OP-TEE based RPMB driver for UFS devices Bean Huo
2025-10-01 6:08 ` [PATCH v2 1/3] rpmb: move rpmb_frame struct and constants to common header Bean Huo
2025-10-01 9:48 ` Avri Altman
2025-10-01 19:43 ` Bart Van Assche
2025-10-06 10:07 ` Jens Wiklander
2025-10-06 10:21 ` Ulf Hansson
2025-10-06 10:54 ` Bean Huo
2025-10-01 6:08 ` [PATCH v2 2/3] scsi: ufs: core: fix incorrect buffer duplication in ufshcd_read_string_desc() Bean Huo
2025-10-01 10:03 ` Avri Altman
2025-10-02 4:31 ` Bean Huo
2025-10-01 19:43 ` Bart Van Assche
2025-10-01 6:08 ` [PATCH v2 3/3] scsi: ufs: core: Add OP-TEE based RPMB driver for UFS devices Bean Huo
2025-10-01 7:50 ` Jens Wiklander
2025-10-02 13:37 ` Bean Huo
2025-10-08 15:07 ` Bean Huo
2025-10-13 8:21 ` Jens Wiklander
2025-10-13 12:04 ` Bean Huo
2025-10-13 12:22 ` Jens Wiklander
2025-10-13 15:42 ` Bean Huo
2025-10-13 15:53 ` Jens Wiklander
2025-10-23 11:32 ` Bean Huo
2025-10-01 10:06 ` Avri Altman
2025-10-02 13:19 ` Bean Huo
2025-10-08 11:47 ` Bean Huo [this message]
2025-10-08 12:16 ` Avri Altman
2025-10-01 19:51 ` Bart Van Assche
2025-10-02 13:38 ` Bean Huo
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=5f12fdaaa49aad21403a0a9b96d2b8b3a6d3ca1e.camel@gmail.com \
--to=huobean@gmail.com \
--cc=Avri.Altman@sandisk.com \
--cc=alim.akhtar@samsung.com \
--cc=avri.altman@wdc.com \
--cc=beanhuo@micron.com \
--cc=bvanassche@acm.org \
--cc=can.guo@oss.qualcomm.com \
--cc=jejb@linux.ibm.com \
--cc=jens.wiklander@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).