All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: Tomas Winkler <tomas.winkler@intel.com>,
	Alexander Usyskin <alexander.usyskin@intel.com>,
	Matthew Auld <matthew.auld@intel.com>,
	Alan Previn <alan.previn.teres.alexis@intel.com>
Subject: [Intel-gfx] [PATCH] drm/i915/gsc: allocate extended operational memory in LMEM
Date: Wed,  7 Sep 2022 11:24:23 -0700	[thread overview]
Message-ID: <20220907182423.657391-1-daniele.ceraolospurio@intel.com> (raw)
In-Reply-To: <20220907155813.1427526-16-tomas.winkler@intel.com>

From: Tomas Winkler <tomas.winkler@intel.com>

GSC requires more operational memory than available on chip.
Reserve 4M of LMEM for GSC operation. The memory is provided to the
GSC as struct resource to the auxiliary data of the child device.

v2: use I915_BO_ALLOC_CPU_CLEAR to clear the allocated memory instead of
doing a manual memset (Matt)

Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
---
 drivers/gpu/drm/i915/gt/intel_gsc.c | 79 ++++++++++++++++++++++++++---
 drivers/gpu/drm/i915/gt/intel_gsc.h |  3 ++
 2 files changed, 75 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_gsc.c b/drivers/gpu/drm/i915/gt/intel_gsc.c
index e1040c8f2fd3..7af6db3194dd 100644
--- a/drivers/gpu/drm/i915/gt/intel_gsc.c
+++ b/drivers/gpu/drm/i915/gt/intel_gsc.c
@@ -7,6 +7,7 @@
 #include <linux/mei_aux.h>
 #include "i915_drv.h"
 #include "i915_reg.h"
+#include "gem/i915_gem_region.h"
 #include "gt/intel_gsc.h"
 #include "gt/intel_gt.h"
 
@@ -36,12 +37,56 @@ static int gsc_irq_init(int irq)
 	return irq_set_chip_data(irq, NULL);
 }
 
+static int
+gsc_ext_om_alloc(struct intel_gsc *gsc, struct intel_gsc_intf *intf, size_t size)
+{
+	struct intel_gt *gt = gsc_to_gt(gsc);
+	struct drm_i915_gem_object *obj;
+	int err;
+
+	obj = i915_gem_object_create_lmem(gt->i915, size,
+					  I915_BO_ALLOC_CONTIGUOUS |
+					  I915_BO_ALLOC_CPU_CLEAR);
+	if (IS_ERR(obj)) {
+		drm_err(&gt->i915->drm, "Failed to allocate gsc memory\n");
+		return PTR_ERR(obj);
+	}
+
+	err = i915_gem_object_pin_pages_unlocked(obj);
+	if (err) {
+		drm_err(&gt->i915->drm, "Failed to pin pages for gsc memory\n");
+		goto out_put;
+	}
+
+	intf->gem_obj = obj;
+
+	return 0;
+
+out_put:
+	i915_gem_object_put(obj);
+	return err;
+}
+
+static void gsc_ext_om_destroy(struct intel_gsc_intf *intf)
+{
+	struct drm_i915_gem_object *obj = fetch_and_zero(&intf->gem_obj);
+
+	if (!obj)
+		return;
+
+	if (i915_gem_object_has_pinned_pages(obj))
+		i915_gem_object_unpin_pages(obj);
+
+	i915_gem_object_put(obj);
+}
+
 struct gsc_def {
 	const char *name;
 	unsigned long bar;
 	size_t bar_size;
 	bool use_polling;
 	bool slow_firmware;
+	size_t lmem_size;
 };
 
 /* gsc resources and definitions (HECI1 and HECI2) */
@@ -74,6 +119,7 @@ static const struct gsc_def gsc_def_dg2[] = {
 		.name = "mei-gsc",
 		.bar = DG2_GSC_HECI1_BASE,
 		.bar_size = GSC_BAR_LENGTH,
+		.lmem_size = SZ_4M,
 	},
 	{
 		.name = "mei-gscfi",
@@ -90,26 +136,32 @@ static void gsc_release_dev(struct device *dev)
 	kfree(adev);
 }
 
-static void gsc_destroy_one(struct intel_gsc_intf *intf)
+static void gsc_destroy_one(struct drm_i915_private *i915,
+			    struct intel_gsc *gsc, unsigned int intf_id)
 {
+	struct intel_gsc_intf *intf = &gsc->intf[intf_id];
+
 	if (intf->adev) {
 		auxiliary_device_delete(&intf->adev->aux_dev);
 		auxiliary_device_uninit(&intf->adev->aux_dev);
 		intf->adev = NULL;
 	}
+
 	if (intf->irq >= 0)
 		irq_free_desc(intf->irq);
 	intf->irq = -1;
+
+	gsc_ext_om_destroy(intf);
 }
 
-static void gsc_init_one(struct drm_i915_private *i915,
-			 struct intel_gsc_intf *intf,
+static void gsc_init_one(struct drm_i915_private *i915, struct intel_gsc *gsc,
 			 unsigned int intf_id)
 {
 	struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
 	struct mei_aux_device *adev;
 	struct auxiliary_device *aux_dev;
 	const struct gsc_def *def;
+	struct intel_gsc_intf *intf = &gsc->intf[intf_id];
 	int ret;
 
 	intf->irq = -1;
@@ -141,7 +193,7 @@ static void gsc_init_one(struct drm_i915_private *i915,
 	intf->irq = irq_alloc_desc(0);
 	if (intf->irq < 0) {
 		drm_err(&i915->drm, "gsc irq error %d\n", intf->irq);
-		return;
+		goto fail;
 	}
 
 	ret = gsc_irq_init(intf->irq);
@@ -155,6 +207,19 @@ static void gsc_init_one(struct drm_i915_private *i915,
 	if (!adev)
 		goto fail;
 
+	if (def->lmem_size) {
+		drm_dbg(&i915->drm, "setting up GSC lmem\n");
+
+		if (gsc_ext_om_alloc(gsc, intf, def->lmem_size)) {
+			drm_err(&i915->drm, "setting up gsc extended operational memory failed\n");
+			kfree(adev);
+			goto fail;
+		}
+
+		adev->ext_op_mem.start = i915_gem_object_get_dma_address(intf->gem_obj, 0);
+		adev->ext_op_mem.end = adev->ext_op_mem.start + def->lmem_size;
+	}
+
 	adev->irq = intf->irq;
 	adev->bar.parent = &pdev->resource[0];
 	adev->bar.start = def->bar + pdev->resource[0].start;
@@ -188,7 +253,7 @@ static void gsc_init_one(struct drm_i915_private *i915,
 
 	return;
 fail:
-	gsc_destroy_one(intf);
+	gsc_destroy_one(i915, gsc, intf->id);
 }
 
 static void gsc_irq_handler(struct intel_gt *gt, unsigned int intf_id)
@@ -229,7 +294,7 @@ void intel_gsc_init(struct intel_gsc *gsc, struct drm_i915_private *i915)
 		return;
 
 	for (i = 0; i < INTEL_GSC_NUM_INTERFACES; i++)
-		gsc_init_one(i915, &gsc->intf[i], i);
+		gsc_init_one(i915, gsc, i);
 }
 
 void intel_gsc_fini(struct intel_gsc *gsc)
@@ -241,5 +306,5 @@ void intel_gsc_fini(struct intel_gsc *gsc)
 		return;
 
 	for (i = 0; i < INTEL_GSC_NUM_INTERFACES; i++)
-		gsc_destroy_one(&gsc->intf[i]);
+		gsc_destroy_one(gt->i915, gsc, i);
 }
diff --git a/drivers/gpu/drm/i915/gt/intel_gsc.h b/drivers/gpu/drm/i915/gt/intel_gsc.h
index 68582f912b21..fcac1775e9c3 100644
--- a/drivers/gpu/drm/i915/gt/intel_gsc.h
+++ b/drivers/gpu/drm/i915/gt/intel_gsc.h
@@ -20,11 +20,14 @@ struct mei_aux_device;
 
 /**
  * struct intel_gsc - graphics security controller
+ *
+ * @gem_obj: scratch memory GSC operations
  * @intf : gsc interface
  */
 struct intel_gsc {
 	struct intel_gsc_intf {
 		struct mei_aux_device *adev;
+		struct drm_i915_gem_object *gem_obj;
 		int irq;
 		unsigned int id;
 	} intf[INTEL_GSC_NUM_INTERFACES];
-- 
2.37.2


  reply	other threads:[~2022-09-07 18:24 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-07 15:57 [PATCH v8 00/16] GSC support for XeHP SDV and DG2 Tomas Winkler
2022-09-07 15:57 ` [Intel-gfx] " Tomas Winkler
2022-09-07 15:57 ` [PATCH v8 01/16] drm/i915/gsc: skip irq initialization if using polling Tomas Winkler
2022-09-07 15:57   ` [Intel-gfx] " Tomas Winkler
2022-09-07 15:57 ` [PATCH v8 02/16] mei: add kdoc for struct mei_aux_device Tomas Winkler
2022-09-07 15:57   ` [Intel-gfx] " Tomas Winkler
2022-09-07 18:58   ` Ceraolo Spurio, Daniele
2022-09-07 18:58     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [PATCH v8 03/16] mei: add slow_firmware flag to the mei auxiliary device Tomas Winkler
2022-09-07 15:58   ` [Intel-gfx] " Tomas Winkler
2022-09-07 15:58 ` [PATCH v8 04/16] drm/i915/gsc: add slow_firmware flag to the gsc device definition Tomas Winkler
2022-09-07 15:58   ` [Intel-gfx] " Tomas Winkler
2022-09-07 15:58 ` [PATCH v8 05/16] drm/i915/gsc: add GSC XeHP SDV platform definition Tomas Winkler
2022-09-07 15:58   ` [Intel-gfx] " Tomas Winkler
2022-09-07 19:02   ` Ceraolo Spurio, Daniele
2022-09-07 19:02     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [PATCH v8 06/16] mei: gsc: use polling instead of interrupts Tomas Winkler
2022-09-07 15:58   ` [Intel-gfx] " Tomas Winkler
2022-09-07 19:04   ` Ceraolo Spurio, Daniele
2022-09-07 19:04     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [PATCH v8 07/16] mei: gsc: wait for reset thread on stop Tomas Winkler
2022-09-07 15:58   ` [Intel-gfx] " Tomas Winkler
2022-09-07 19:06   ` Ceraolo Spurio, Daniele
2022-09-07 19:06     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 08/16] mei: extend timeouts on slow devices Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 19:12   ` [Intel-gfx] " Ceraolo Spurio, Daniele
2022-09-07 19:12     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 09/16] mei: bus: export common mkhi definitions into a separate header Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 19:19   ` [Intel-gfx] " Ceraolo Spurio, Daniele
2022-09-07 19:19     ` Ceraolo Spurio, Daniele
2022-09-07 19:48     ` Winkler, Tomas
2022-09-07 19:48       ` Winkler, Tomas
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 10/16] mei: mkhi: add memory ready command Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 15:58 ` [PATCH v8 11/16] mei: gsc: setup gsc extended operational memory Tomas Winkler
2022-09-07 15:58   ` [Intel-gfx] " Tomas Winkler
2022-09-07 19:23   ` Ceraolo Spurio, Daniele
2022-09-07 19:23     ` [Intel-gfx] " Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 12/16] mei: gsc: add transition to PXP mode in resume flow Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 19:23   ` Ceraolo Spurio, Daniele
2022-09-07 19:23     ` [Intel-gfx] " Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 13/16] mei: drop ready bits check after start Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 21:23   ` [Intel-gfx] " Ceraolo Spurio, Daniele
2022-09-07 21:23     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 14/16] mei: debugfs: add pxp mode to devstate in debugfs Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 19:26   ` [Intel-gfx] " Ceraolo Spurio, Daniele
2022-09-07 19:26     ` Ceraolo Spurio, Daniele
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 15/16] drm/i915/gsc: allocate extended operational memory in LMEM Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 18:24   ` Daniele Ceraolo Spurio [this message]
2022-09-07 15:58 ` [Intel-gfx] [PATCH v8 16/16] HAX: drm/i915: force INTEL_MEI_GSC on for CI Tomas Winkler
2022-09-07 15:58   ` Tomas Winkler
2022-09-07 16:26 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for GSC support for XeHP SDV and DG2 (rev3) Patchwork
2022-09-07 16:26 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-09-07 16:41 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-09-07 18:47 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for GSC support for XeHP SDV and DG2 (rev4) Patchwork
2022-09-07 18:47 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-09-07 19:08 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork

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=20220907182423.657391-1-daniele.ceraolospurio@intel.com \
    --to=daniele.ceraolospurio@intel.com \
    --cc=alan.previn.teres.alexis@intel.com \
    --cc=alexander.usyskin@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=matthew.auld@intel.com \
    --cc=tomas.winkler@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.