From: Vasant Hegde <vasant.hegde@amd.com>
To: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>,
jgg@nvidia.com, nicolinc@nvidia.com
Cc: linux-kernel@vger.kernel.org, robin.murphy@arm.com,
will@kernel.org, joro@8bytes.org, kevin.tian@intel.com,
jsnitsel@redhat.com, iommu@lists.linux.dev,
santosh.shukla@amd.com, sairaj.arunkodilkar@amd.com,
jon.grimm@amd.com, prashanthpra@google.com, wvw@google.com,
wnliu@google.com, gptran@google.com, kpsingh@google.com
Subject: Re: [PATCH v4] iommu/amd: Add support for hw_info for iommu capability query
Date: Thu, 11 Sep 2025 22:28:52 +0530 [thread overview]
Message-ID: <a9725264-8d8a-4970-a519-4ca415ce21ee@amd.com> (raw)
In-Reply-To: <20250904193112.7418-1-suravee.suthikulpanit@amd.com>
On 9/5/2025 1:01 AM, Suravee Suthikulpanit wrote:
> AMD IOMMU Extended Feature (EFR) and Extended Feature 2 (EFR2) registers
> specify features supported by each IOMMU hardware instance.
> The IOMMU driver checks each feature-specific bits before enabling
> each feature at run time.
>
> For IOMMUFD, the hypervisor passes the raw value of amd_iommu_efr and
> amd_iommu_efr2 to VMM via iommufd IOMMU_DEVICE_GET_HW_INFO ioctl.
>
> Reviewed-by: Nicolin Chen <nicolinc@nvidia.com>
> Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
> ---
.../...
> diff --git a/drivers/iommu/amd/iommufd.c b/drivers/iommu/amd/iommufd.c
> new file mode 100644
> index 000000000000..72eaaa923d04
> --- /dev/null
> +++ b/drivers/iommu/amd/iommufd.c
> @@ -0,0 +1,31 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Copyright (C) 2025 Advanced Micro Devices, Inc.
> + */
> +
> +#include <linux/iommu.h>
> +
> +#include "iommufd.h"
> +#include "amd_iommu.h"
> +#include "amd_iommu_types.h"
> +
> +void *amd_iommufd_hw_info(struct device *dev, u32 *length, u32 *type)
> +{
> + struct iommu_hw_info_amd *hwinfo;
> +
> + if (*type != IOMMU_HW_INFO_TYPE_DEFAULT &&
> + *type != IOMMU_HW_INFO_TYPE_AMD)
> + return ERR_PTR(-EOPNOTSUPP);
> +
> + hwinfo = kzalloc(sizeof(*hwinfo), GFP_KERNEL);
> + if (!hwinfo)
> + return ERR_PTR(-ENOMEM);
> +
> + *length = sizeof(*hwinfo);
> + *type = IOMMU_HW_INFO_TYPE_AMD;
> +
> + hwinfo->efr = amd_iommu_efr;
> + hwinfo->efr2 = amd_iommu_efr2;
> +
> + return hwinfo;
> +}
> diff --git a/drivers/iommu/amd/iommufd.h b/drivers/iommu/amd/iommufd.h
> new file mode 100644
> index 000000000000..8b726482778b
> --- /dev/null
> +++ b/drivers/iommu/amd/iommufd.h
> @@ -0,0 +1,15 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +/*
> + * Copyright (C) 2025 Advanced Micro Devices, Inc.
> + */
> +
> +#ifndef AMD_IOMMUFD_H
> +#define AMD_IOMMUFD_H
> +
> +#if IS_ENABLED(CONFIG_IOMMUFD)
It should be `CONFIG_AMD_IOMMU_IOMMUFD`
Otherwise patch looks good to me.
Reviewed-by: Vasant Hegde <vasant.hegde@amd.com>
-Vasant
next prev parent reply other threads:[~2025-09-11 16:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-04 19:31 [PATCH v4] iommu/amd: Add support for hw_info for iommu capability query Suravee Suthikulpanit
2025-09-09 2:23 ` kernel test robot
2025-09-11 16:58 ` Vasant Hegde [this message]
2025-09-23 17:55 ` Jason Gunthorpe
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=a9725264-8d8a-4970-a519-4ca415ce21ee@amd.com \
--to=vasant.hegde@amd.com \
--cc=gptran@google.com \
--cc=iommu@lists.linux.dev \
--cc=jgg@nvidia.com \
--cc=jon.grimm@amd.com \
--cc=joro@8bytes.org \
--cc=jsnitsel@redhat.com \
--cc=kevin.tian@intel.com \
--cc=kpsingh@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nicolinc@nvidia.com \
--cc=prashanthpra@google.com \
--cc=robin.murphy@arm.com \
--cc=sairaj.arunkodilkar@amd.com \
--cc=santosh.shukla@amd.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=will@kernel.org \
--cc=wnliu@google.com \
--cc=wvw@google.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