* [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain
@ 2012-10-17 21:17 Tom Mingarelli
2012-10-17 21:19 ` Mingarelli, Thomas
2012-10-21 20:27 ` Craig Hada
0 siblings, 2 replies; 3+ messages in thread
From: Tom Mingarelli @ 2012-10-17 21:17 UTC (permalink / raw)
To: Alex Williamson, David Woodhouse, Don Dutile
Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Shuah Khan,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Tom Mingarelli
This patch is to prevent devices that have RMRRs associated with them to
not be placed into the SI Domain during init. We don't put USB devices
into this category, however. This fixes the issue where the RMRR info
for devices being placed in and out of the SI Domain gets lost.
Signed-off-by: Thomas Mingarelli <thomas.mingarelli-VXdhtT5mjnY@public.gmane.org>
Tested-by: Shuah Khan <shuah.khan-VXdhtT5mjnY@public.gmane.org>
----
PATCH v1: https://lkml.org/lkml/2012/6/15/204
PATCH v2: https://lkml.org/lkml/2012/9/18/354
drivers/iommu/intel-iommu.c | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff -up ./drivers/iommu/intel-iommu.c.ORIG ./drivers/iommu/intel-iommu.c
--- ./drivers/iommu/intel-iommu.c.ORIG 2012-10-16 09:34:23.148089944 -0500
+++ ./drivers/iommu/intel-iommu.c 2012-10-17 20:41:40.509642356 -0500
@@ -2320,8 +2320,38 @@ static int domain_add_dev_info(struct dm
return 0;
}
+static bool device_has_rmrr(struct pci_dev *dev)
+{
+ struct dmar_rmrr_unit *rmrr;
+ int i;
+
+ for_each_rmrr_units(rmrr) {
+ for (i = 0; i < rmrr->devices_cnt; i++) {
+ /*
+ * Here we are just concerned with checking each device
+ * that has an RMRR associated with it and not allow it
+ * to be placed into the SI Domain during startup.
+ */
+ if (rmrr->devices[i] == dev)
+ return true;
+ }
+ }
+ return false;
+}
+
static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
{
+
+ /*
+ * This is where we will refuse any device that has an
+ * RMRR associated with it and is not a USB device and
+ * NOT allow it to be placed into the SI Domain. We don't
+ * need a separate bit for this because it could be ANY device.
+ */
+ if (device_has_rmrr(pdev) &&
+ (pdev->class >> 8) != PCI_CLASS_SERIAL_USB)
+ return 0;
+
if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
return 1;
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain
2012-10-17 21:17 [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain Tom Mingarelli
@ 2012-10-17 21:19 ` Mingarelli, Thomas
2012-10-21 20:27 ` Craig Hada
1 sibling, 0 replies; 3+ messages in thread
From: Mingarelli, Thomas @ 2012-10-17 21:19 UTC (permalink / raw)
To: Mingarelli, Thomas, Alex Williamson, David Woodhouse, Don Dutile
Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Khan, Shuah, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
I meant to edit the preamble with no reference to init. This patch will prevent any device with an RMRR association from getting placed into the SI Domain and any time.
Tom
-----Original Message-----
From: Mingarelli, Thomas
Sent: Wednesday, October 17, 2012 4:17 PM
To: Alex Williamson; David Woodhouse; Don Dutile
Cc: Khan, Shuah; Mingarelli, Thomas; Knippers, Linda; iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org; linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain
This patch is to prevent devices that have RMRRs associated with them to
not be placed into the SI Domain during init. We don't put USB devices
into this category, however. This fixes the issue where the RMRR info
for devices being placed in and out of the SI Domain gets lost.
Signed-off-by: Thomas Mingarelli <thomas.mingarelli-VXdhtT5mjnY@public.gmane.org>
Tested-by: Shuah Khan <shuah.khan-VXdhtT5mjnY@public.gmane.org>
----
PATCH v1: https://lkml.org/lkml/2012/6/15/204
PATCH v2: https://lkml.org/lkml/2012/9/18/354
drivers/iommu/intel-iommu.c | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff -up ./drivers/iommu/intel-iommu.c.ORIG ./drivers/iommu/intel-iommu.c
--- ./drivers/iommu/intel-iommu.c.ORIG 2012-10-16 09:34:23.148089944 -0500
+++ ./drivers/iommu/intel-iommu.c 2012-10-17 20:41:40.509642356 -0500
@@ -2320,8 +2320,38 @@ static int domain_add_dev_info(struct dm
return 0;
}
+static bool device_has_rmrr(struct pci_dev *dev)
+{
+ struct dmar_rmrr_unit *rmrr;
+ int i;
+
+ for_each_rmrr_units(rmrr) {
+ for (i = 0; i < rmrr->devices_cnt; i++) {
+ /*
+ * Here we are just concerned with checking each device
+ * that has an RMRR associated with it and not allow it
+ * to be placed into the SI Domain during startup.
+ */
+ if (rmrr->devices[i] == dev)
+ return true;
+ }
+ }
+ return false;
+}
+
static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
{
+
+ /*
+ * This is where we will refuse any device that has an
+ * RMRR associated with it and is not a USB device and
+ * NOT allow it to be placed into the SI Domain. We don't
+ * need a separate bit for this because it could be ANY device.
+ */
+ if (device_has_rmrr(pdev) &&
+ (pdev->class >> 8) != PCI_CLASS_SERIAL_USB)
+ return 0;
+
if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
return 1;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain
2012-10-17 21:17 [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain Tom Mingarelli
2012-10-17 21:19 ` Mingarelli, Thomas
@ 2012-10-21 20:27 ` Craig Hada
1 sibling, 0 replies; 3+ messages in thread
From: Craig Hada @ 2012-10-21 20:27 UTC (permalink / raw)
To: Tom Mingarelli
Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Shuah Khan, David Woodhouse
On 10/17/2012 2:17 PM, Tom Mingarelli wrote:
> This patch is to prevent devices that have RMRRs associated with them to
> not be placed into the SI Domain during init. We don't put USB devices
> into this category, however. This fixes the issue where the RMRR info
> for devices being placed in and out of the SI Domain gets lost.
>
> Signed-off-by: Thomas Mingarelli <thomas.mingarelli-VXdhtT5mjnY@public.gmane.org>
> Tested-by: Shuah Khan <shuah.khan-VXdhtT5mjnY@public.gmane.org>
> ----
> PATCH v1: https://lkml.org/lkml/2012/6/15/204
> PATCH v2: https://lkml.org/lkml/2012/9/18/354
>
>
> drivers/iommu/intel-iommu.c | 30 ++++++++++++++++++++++++++++++
> 1 files changed, 30 insertions(+), 0 deletions(-)
>
> diff -up ./drivers/iommu/intel-iommu.c.ORIG ./drivers/iommu/intel-iommu.c
> --- ./drivers/iommu/intel-iommu.c.ORIG 2012-10-16 09:34:23.148089944 -0500
> +++ ./drivers/iommu/intel-iommu.c 2012-10-17 20:41:40.509642356 -0500
> @@ -2320,8 +2320,38 @@ static int domain_add_dev_info(struct dm
> return 0;
> }
>
> +static bool device_has_rmrr(struct pci_dev *dev)
> +{
> + struct dmar_rmrr_unit *rmrr;
> + int i;
> +
> + for_each_rmrr_units(rmrr) {
> + for (i = 0; i < rmrr->devices_cnt; i++) {
> + /*
> + * Here we are just concerned with checking each device
> + * that has an RMRR associated with it and not allow it
> + * to be placed into the SI Domain during startup.
> + */
> + if (rmrr->devices[i] == dev)
> + return true;
> + }
> + }
> + return false;
> +}
> +
> static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
> {
> +
> + /*
> + * This is where we will refuse any device that has an
> + * RMRR associated with it and is not a USB device and
> + * NOT allow it to be placed into the SI Domain. We don't
> + * need a separate bit for this because it could be ANY device.
> + */
> + if (device_has_rmrr(pdev) &&
> + (pdev->class >> 8) != PCI_CLASS_SERIAL_USB)
> + return 0;
> +
> if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
> return 1;
>
> _______________________________________________
> iommu mailing list
> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linuxfoundation.org/mailman/listinfo/iommu
> .
>
I applied this patch to my system and booted with IOMMU pass through
mode enabled. Without the patch my system would panic or wedge. I also
applied a be2net patch I'm working on and was able to get successful
netperf runs with IOMMU pass through mode enabled.
-Craig
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-21 20:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-17 21:17 [PATCH v3] Prevent devices with RMRRs from being placed into SI Domain Tom Mingarelli
2012-10-17 21:19 ` Mingarelli, Thomas
2012-10-21 20:27 ` Craig Hada
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).