From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Armin Wolf <W_Armin@gmx.de>
Cc: Shyam-sundar.S-k@amd.com,
Mika Westerberg <mika.westerberg@linux.intel.com>,
sathyanarayanan.kuppuswamy@linux.intel.com,
Hans de Goede <hdegoede@redhat.com>,
platform-driver-x86@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 2/3] platform/x86/amd/pmf: Do not use readl() for policy buffer access
Date: Tue, 27 Feb 2024 14:59:23 +0200 (EET) [thread overview]
Message-ID: <e2b81849-3435-3efb-f2da-b74ac7f99a50@linux.intel.com> (raw)
In-Reply-To: <20240223163901.13504-2-W_Armin@gmx.de>
On Fri, 23 Feb 2024, Armin Wolf wrote:
> The policy buffer is allocated using normal memory allocation
> functions, so readl() should not be used on it.
>
> Use get_unaligned_le32() instead.
>
> Compile-tested only.
>
> Signed-off-by: Armin Wolf <W_Armin@gmx.de>
> ---
> drivers/platform/x86/amd/pmf/tee-if.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/x86/amd/pmf/tee-if.c b/drivers/platform/x86/amd/pmf/tee-if.c
> index 16973bebf55f..3220b6580270 100644
> --- a/drivers/platform/x86/amd/pmf/tee-if.c
> +++ b/drivers/platform/x86/amd/pmf/tee-if.c
> @@ -11,6 +11,7 @@
> #include <linux/debugfs.h>
> #include <linux/tee_drv.h>
> #include <linux/uuid.h>
> +#include <asm/unaligned.h>
> #include "pmf.h"
>
> #define MAX_TEE_PARAM 4
> @@ -249,8 +250,8 @@ static int amd_pmf_start_policy_engine(struct amd_pmf_dev *dev)
> u32 cookie, length;
> int res;
>
> - cookie = readl(dev->policy_buf + POLICY_COOKIE_OFFSET);
> - length = readl(dev->policy_buf + POLICY_COOKIE_LEN);
> + cookie = get_unaligned_le32(dev->policy_buf + POLICY_COOKIE_OFFSET);
> + length = get_unaligned_le32(dev->policy_buf + POLICY_COOKIE_LEN);
I don't understand you need _unaligned_ here, the offsets should be dword
aligned, no?
#define POLICY_COOKIE_OFFSET 0x10
#define POLICY_COOKIE_LEN 0x14
--
i.
next prev parent reply other threads:[~2024-02-27 12:59 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-23 16:38 [PATCH v2 1/3] platform/x86/amd/pmf: Add missing __iomem attribute to policy_base Armin Wolf
2024-02-23 16:39 ` [PATCH v2 2/3] platform/x86/amd/pmf: Do not use readl() for policy buffer access Armin Wolf
2024-02-27 12:59 ` Ilpo Järvinen [this message]
2024-02-27 13:41 ` Armin Wolf
2024-02-23 16:39 ` [PATCH v2 3/3] platform/x86: intel_scu_ipcutil: Make scu static Armin Wolf
2024-02-26 6:39 ` Mika Westerberg
2024-02-27 13:06 ` Ilpo Järvinen
2024-02-26 6:41 ` [PATCH v2 1/3] platform/x86/amd/pmf: Add missing __iomem attribute to policy_base Kuppuswamy Sathyanarayanan
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=e2b81849-3435-3efb-f2da-b74ac7f99a50@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=Shyam-sundar.S-k@amd.com \
--cc=W_Armin@gmx.de \
--cc=hdegoede@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mika.westerberg@linux.intel.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=sathyanarayanan.kuppuswamy@linux.intel.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