public inbox for linux-crypto@vger.kernel.org
 help / color / mirror / Atom feed
From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: "Mario Limonciello (AMD)" <superm1@kernel.org>
Cc: Tom Lendacky <thomas.lendacky@amd.com>,
	 Herbert Xu <herbert@gondor.apana.org.au>,
	 Shyam Sundar S K <Shyam-sundar.S-k@amd.com>,
	 Rijo Thomas <Rijo-john.Thomas@amd.com>,
	John Allen <john.allen@amd.com>,
	 "David S . Miller" <davem@davemloft.net>,
	Hans de Goede <hansg@kernel.org>,
	 "open list:AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER"
	<linux-crypto@vger.kernel.org>,
	 "open list:AMD PMF DRIVER" <platform-driver-x86@vger.kernel.org>,
	 Lars Francke <lars.francke@gmail.com>,
	Yijun Shen <Yijun.Shen@dell.com>,
	 Devaraj Rangasamy <Devaraj.Rangasamy@amd.com>
Subject: Re: [PATCH v6 0/5] Fixes for PMF and CCP drivers after S4
Date: Tue, 20 Jan 2026 17:50:17 +0200 (EET)	[thread overview]
Message-ID: <93beb504-e6f0-00f5-d974-6293f51839d5@linux.intel.com> (raw)
In-Reply-To: <20260116041132.153674-1-superm1@kernel.org>

On Thu, 15 Jan 2026, Mario Limonciello (AMD) wrote:

> Lars Francke reported that the PMF driver fails to work afer S4 with:
>   ccp 0000:c3:00.2: tee: command 0x5 timed out, disabling PSP
> 
> This is because there is a TA loaded to the TEE environment that
> is lost during S4.  The TEE rings need to be reinitialized and the
> TA needs to be reloaded.
> 
> This series adds those flows to the PMF and CCP drivers.
> 
> v5->v6:
>  * Fix Tom's feedback on patch 3/5
> 
> Mario Limonciello (AMD) (4):
>   crypto: ccp - Declare PSP dead if PSP_CMD_TEE_RING_INIT fails
>   crypto: ccp - Add an S4 restore flow
>   crypto: ccp - Factor out ring destroy handling to a helper
>   crypto: ccp - Send PSP_CMD_TEE_RING_DESTROY when PSP_CMD_TEE_RING_INIT
>     fails
> 
> Shyam Sundar S K (1):
>   platform/x86/amd/pmf: Prevent TEE errors after hibernate
> 
>  drivers/crypto/ccp/psp-dev.c          | 11 +++++
>  drivers/crypto/ccp/sp-dev.c           | 12 ++++++
>  drivers/crypto/ccp/sp-dev.h           |  3 ++
>  drivers/crypto/ccp/sp-pci.c           | 16 ++++++-
>  drivers/crypto/ccp/tee-dev.c          | 56 ++++++++++++++++++------
>  drivers/crypto/ccp/tee-dev.h          |  1 +
>  drivers/platform/x86/amd/pmf/core.c   | 62 ++++++++++++++++++++++++++-
>  drivers/platform/x86/amd/pmf/pmf.h    | 10 +++++
>  drivers/platform/x86/amd/pmf/tee-if.c | 12 ++----
>  include/linux/psp.h                   |  1 +
>  10 files changed, 161 insertions(+), 23 deletions(-)

I've applied this to the review-ilpo-next branch (and reorganized the 
NPU metrics to come after this series as these seemed to have a context 
conflict).

-- 
 i.


      parent reply	other threads:[~2026-01-20 15:50 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-16  4:11 [PATCH v6 0/5] Fixes for PMF and CCP drivers after S4 Mario Limonciello (AMD)
2026-01-16  4:11 ` [PATCH v6 1/5] platform/x86/amd/pmf: Prevent TEE errors after hibernate Mario Limonciello (AMD)
2026-01-16  4:11 ` [PATCH v6 2/5] crypto: ccp - Declare PSP dead if PSP_CMD_TEE_RING_INIT fails Mario Limonciello (AMD)
2026-01-18 15:23   ` Shyam Sundar S K
2026-01-19 14:10   ` Tom Lendacky
2026-01-16  4:11 ` [PATCH v6 3/5] crypto: ccp - Add an S4 restore flow Mario Limonciello (AMD)
2026-01-18 15:31   ` Shyam Sundar S K
2026-01-19 14:12   ` Tom Lendacky
2026-01-16  4:11 ` [PATCH v6 4/5] crypto: ccp - Factor out ring destroy handling to a helper Mario Limonciello (AMD)
2026-01-18 15:30   ` Shyam Sundar S K
2026-01-19 14:16   ` Tom Lendacky
2026-01-16  4:11 ` [PATCH v6 5/5] crypto: ccp - Send PSP_CMD_TEE_RING_DESTROY when PSP_CMD_TEE_RING_INIT fails Mario Limonciello (AMD)
2026-01-18 15:30   ` Shyam Sundar S K
2026-01-19 14:16   ` Tom Lendacky
2026-01-20 15:50 ` Ilpo Järvinen [this message]

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=93beb504-e6f0-00f5-d974-6293f51839d5@linux.intel.com \
    --to=ilpo.jarvinen@linux.intel.com \
    --cc=Devaraj.Rangasamy@amd.com \
    --cc=Rijo-john.Thomas@amd.com \
    --cc=Shyam-sundar.S-k@amd.com \
    --cc=Yijun.Shen@dell.com \
    --cc=davem@davemloft.net \
    --cc=hansg@kernel.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=john.allen@amd.com \
    --cc=lars.francke@gmail.com \
    --cc=linux-crypto@vger.kernel.org \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=superm1@kernel.org \
    --cc=thomas.lendacky@amd.com \
    /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