linux-trace-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Cc: Jithu Joseph <jithu.joseph@intel.com>,
	Hans de Goede <hdegoede@redhat.com>,
	 Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>,  Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>,
	 x86@kernel.org, Steven Rostedt <rostedt@goodmis.org>,
	 Masami Hiramatsu <mhiramat@kernel.org>,
	Ashok Raj <ashok.raj@intel.com>,  Tony Luck <tony.luck@intel.com>,
	linux-trace-kernel@vger.kernel.org,
	 platform-driver-x86@vger.kernel.org,
	 Shankar Ravi V <ravi.v.shankar@intel.com>
Subject: Re: [PATCH v2 1/4] platform/x86/intel/ifs: Refactor MSR usage in IFS test code
Date: Thu, 11 Jul 2024 11:51:10 +0300 (EEST)	[thread overview]
Message-ID: <c6b49d6b-0b1f-07b4-c5ad-a4afd6a39744@linux.intel.com> (raw)
In-Reply-To: <20240711000233.684642-2-sathyanarayanan.kuppuswamy@linux.intel.com>

[-- Attachment #1: Type: text/plain, Size: 7389 bytes --]

On Wed, 10 Jul 2024, Kuppuswamy Sathyanarayanan wrote:

> IFS tests such as Scan at Field (SAF) or Structural Based Functional
> Test at Field (SBAF), require the user to load a test image. The image
> loading process is similar across these tests, with the only difference
> being MSR addresses used. To reuse the code between these tests, remove
> the hard coding of MSR addresses and allow the driver to pass the MSR
> addresses per IFS test (via driver device data).
> 
> Add a new structure named "struct ifs_test_msrs" to specify the
> test-specific MSR addresses. Each IFS test will provide this structure,
> enabling them to reuse the common code.
> 
> This is a preliminary patch in preparation for the addition of SBAF
> support.
> 
> Reviewed-by: Ashok Raj <ashok.raj@intel.com>
> Reviewed-by: Tony Luck <tony.luck@intel.com>
> Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>

Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

-- 
 i.

> ---
>  drivers/platform/x86/intel/ifs/ifs.h  | 25 +++++++++++++++++++++++++
>  drivers/platform/x86/intel/ifs/core.c |  9 +++++++++
>  drivers/platform/x86/intel/ifs/load.c | 24 ++++++++++++++----------
>  3 files changed, 48 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/platform/x86/intel/ifs/ifs.h b/drivers/platform/x86/intel/ifs/ifs.h
> index 56b9f3e3cf76..738cbc7a5d00 100644
> --- a/drivers/platform/x86/intel/ifs/ifs.h
> +++ b/drivers/platform/x86/intel/ifs/ifs.h
> @@ -266,6 +266,22 @@ struct ifs_test_caps {
>  	int	test_num;
>  };
>  
> +/**
> + * struct ifs_test_msrs - MSRs used in IFS tests
> + * @copy_hashes: Copy test hash data
> + * @copy_hashes_status: Status of copied test hash data
> + * @copy_chunks: Copy chunks of the test data
> + * @copy_chunks_status: Status of the copied test data chunks
> + * @test_ctrl: Control the test attributes
> + */
> +struct ifs_test_msrs {
> +	u32	copy_hashes;
> +	u32	copy_hashes_status;
> +	u32	copy_chunks;
> +	u32	copy_chunks_status;
> +	u32	test_ctrl;
> +};
> +
>  /**
>   * struct ifs_data - attributes related to intel IFS driver
>   * @loaded_version: stores the currently loaded ifs image version.
> @@ -299,6 +315,7 @@ struct ifs_work {
>  
>  struct ifs_device {
>  	const struct ifs_test_caps *test_caps;
> +	const struct ifs_test_msrs *test_msrs;
>  	struct ifs_data rw_data;
>  	struct miscdevice misc;
>  };
> @@ -319,6 +336,14 @@ static inline const struct ifs_test_caps *ifs_get_test_caps(struct device *dev)
>  	return d->test_caps;
>  }
>  
> +static inline const struct ifs_test_msrs *ifs_get_test_msrs(struct device *dev)
> +{
> +	struct miscdevice *m = dev_get_drvdata(dev);
> +	struct ifs_device *d = container_of(m, struct ifs_device, misc);
> +
> +	return d->test_msrs;
> +}
> +
>  extern bool *ifs_pkg_auth;
>  int ifs_load_firmware(struct device *dev);
>  int do_core_test(int cpu, struct device *dev);
> diff --git a/drivers/platform/x86/intel/ifs/core.c b/drivers/platform/x86/intel/ifs/core.c
> index 7b11198d85a1..1a7ca74abb61 100644
> --- a/drivers/platform/x86/intel/ifs/core.c
> +++ b/drivers/platform/x86/intel/ifs/core.c
> @@ -40,9 +40,18 @@ static const struct ifs_test_caps array_test = {
>  	.test_num = IFS_TYPE_ARRAY_BIST,
>  };
>  
> +static const struct ifs_test_msrs scan_msrs = {
> +	.copy_hashes = MSR_COPY_SCAN_HASHES,
> +	.copy_hashes_status = MSR_SCAN_HASHES_STATUS,
> +	.copy_chunks = MSR_AUTHENTICATE_AND_COPY_CHUNK,
> +	.copy_chunks_status = MSR_CHUNKS_AUTHENTICATION_STATUS,
> +	.test_ctrl = MSR_SAF_CTRL,
> +};
> +
>  static struct ifs_device ifs_devices[] = {
>  	[IFS_TYPE_SAF] = {
>  		.test_caps = &scan_test,
> +		.test_msrs = &scan_msrs,
>  		.misc = {
>  			.name = "intel_ifs_0",
>  			.minor = MISC_DYNAMIC_MINOR,
> diff --git a/drivers/platform/x86/intel/ifs/load.c b/drivers/platform/x86/intel/ifs/load.c
> index 39f19cb51749..ad0c107f0922 100644
> --- a/drivers/platform/x86/intel/ifs/load.c
> +++ b/drivers/platform/x86/intel/ifs/load.c
> @@ -118,15 +118,17 @@ static void copy_hashes_authenticate_chunks(struct work_struct *work)
>  	union ifs_scan_hashes_status hashes_status;
>  	union ifs_chunks_auth_status chunk_status;
>  	struct device *dev = local_work->dev;
> +	const struct ifs_test_msrs *msrs;
>  	int i, num_chunks, chunk_size;
>  	struct ifs_data *ifsd;
>  	u64 linear_addr, base;
>  	u32 err_code;
>  
>  	ifsd = ifs_get_data(dev);
> +	msrs = ifs_get_test_msrs(dev);
>  	/* run scan hash copy */
> -	wrmsrl(MSR_COPY_SCAN_HASHES, ifs_hash_ptr);
> -	rdmsrl(MSR_SCAN_HASHES_STATUS, hashes_status.data);
> +	wrmsrl(msrs->copy_hashes, ifs_hash_ptr);
> +	rdmsrl(msrs->copy_hashes_status, hashes_status.data);
>  
>  	/* enumerate the scan image information */
>  	num_chunks = hashes_status.num_chunks;
> @@ -147,8 +149,8 @@ static void copy_hashes_authenticate_chunks(struct work_struct *work)
>  		linear_addr = base + i * chunk_size;
>  		linear_addr |= i;
>  
> -		wrmsrl(MSR_AUTHENTICATE_AND_COPY_CHUNK, linear_addr);
> -		rdmsrl(MSR_CHUNKS_AUTHENTICATION_STATUS, chunk_status.data);
> +		wrmsrl(msrs->copy_chunks, linear_addr);
> +		rdmsrl(msrs->copy_chunks_status, chunk_status.data);
>  
>  		ifsd->valid_chunks = chunk_status.valid_chunks;
>  		err_code = chunk_status.error_code;
> @@ -180,6 +182,7 @@ static int copy_hashes_authenticate_chunks_gen2(struct device *dev)
>  	union ifs_scan_hashes_status_gen2 hashes_status;
>  	union ifs_chunks_auth_status_gen2 chunk_status;
>  	u32 err_code, valid_chunks, total_chunks;
> +	const struct ifs_test_msrs *msrs;
>  	int i, num_chunks, chunk_size;
>  	union meta_data *ifs_meta;
>  	int starting_chunk_nr;
> @@ -189,10 +192,11 @@ static int copy_hashes_authenticate_chunks_gen2(struct device *dev)
>  	int retry_count;
>  
>  	ifsd = ifs_get_data(dev);
> +	msrs = ifs_get_test_msrs(dev);
>  
>  	if (need_copy_scan_hashes(ifsd)) {
> -		wrmsrl(MSR_COPY_SCAN_HASHES, ifs_hash_ptr);
> -		rdmsrl(MSR_SCAN_HASHES_STATUS, hashes_status.data);
> +		wrmsrl(msrs->copy_hashes, ifs_hash_ptr);
> +		rdmsrl(msrs->copy_hashes_status, hashes_status.data);
>  
>  		/* enumerate the scan image information */
>  		chunk_size = hashes_status.chunk_size * SZ_1K;
> @@ -212,8 +216,8 @@ static int copy_hashes_authenticate_chunks_gen2(struct device *dev)
>  	}
>  
>  	if (ifsd->generation >= IFS_GEN_STRIDE_AWARE) {
> -		wrmsrl(MSR_SAF_CTRL, INVALIDATE_STRIDE);
> -		rdmsrl(MSR_CHUNKS_AUTHENTICATION_STATUS, chunk_status.data);
> +		wrmsrl(msrs->test_ctrl, INVALIDATE_STRIDE);
> +		rdmsrl(msrs->copy_chunks_status, chunk_status.data);
>  		if (chunk_status.valid_chunks != 0) {
>  			dev_err(dev, "Couldn't invalidate installed stride - %d\n",
>  				chunk_status.valid_chunks);
> @@ -234,9 +238,9 @@ static int copy_hashes_authenticate_chunks_gen2(struct device *dev)
>  		chunk_table[1] = linear_addr;
>  		do {
>  			local_irq_disable();
> -			wrmsrl(MSR_AUTHENTICATE_AND_COPY_CHUNK, (u64)chunk_table);
> +			wrmsrl(msrs->copy_chunks, (u64)chunk_table);
>  			local_irq_enable();
> -			rdmsrl(MSR_CHUNKS_AUTHENTICATION_STATUS, chunk_status.data);
> +			rdmsrl(msrs->copy_chunks_status, chunk_status.data);
>  			err_code = chunk_status.error_code;
>  		} while (err_code == AUTH_INTERRUPTED_ERROR && --retry_count);
>  
> 

  reply	other threads:[~2024-07-11  8:51 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-11  0:02 [PATCH v2 0/4] Add SBAF test to IFS Kuppuswamy Sathyanarayanan
2024-07-11  0:02 ` [PATCH v2 1/4] platform/x86/intel/ifs: Refactor MSR usage in IFS test code Kuppuswamy Sathyanarayanan
2024-07-11  8:51   ` Ilpo Järvinen [this message]
2024-07-11  0:02 ` [PATCH v2 2/4] platform/x86/intel/ifs: Add SBAF test image loading support Kuppuswamy Sathyanarayanan
2024-07-11  9:01   ` Ilpo Järvinen
2024-07-11  0:02 ` [PATCH v2 3/4] platform/x86/intel/ifs: Add SBAF test support Kuppuswamy Sathyanarayanan
2024-07-11  9:44   ` Ilpo Järvinen
2024-07-11 15:58     ` Kuppuswamy Sathyanarayanan
2024-07-12  3:04       ` Joseph, Jithu
2024-07-12  8:24       ` Ilpo Järvinen
2024-07-11 21:21     ` Ashok Raj
2024-07-12  3:18       ` Joseph, Jithu
2024-07-11  0:02 ` [PATCH v2 4/4] trace: platform/x86/intel/ifs: Add SBAF trace support Kuppuswamy Sathyanarayanan
2024-07-11  9:45   ` Ilpo Järvinen
2024-07-11 23:26   ` Steven Rostedt

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=c6b49d6b-0b1f-07b4-c5ad-a4afd6a39744@linux.intel.com \
    --to=ilpo.jarvinen@linux.intel.com \
    --cc=ashok.raj@intel.com \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=hdegoede@redhat.com \
    --cc=jithu.joseph@intel.com \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=mingo@redhat.com \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=ravi.v.shankar@intel.com \
    --cc=rostedt@goodmis.org \
    --cc=sathyanarayanan.kuppuswamy@linux.intel.com \
    --cc=tglx@linutronix.de \
    --cc=tony.luck@intel.com \
    --cc=x86@kernel.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).