All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Wilson <chris@chris-wilson.co.uk>
To: intel-gfx@lists.freedesktop.org
Subject: [RFCv2 07/19] drm/i915: Mock the GEM device for self-testing
Date: Tue, 20 Dec 2016 13:08:02 +0000	[thread overview]
Message-ID: <20161220130814.10213-7-chris@chris-wilson.co.uk> (raw)
In-Reply-To: <20161220130814.10213-1-chris@chris-wilson.co.uk>

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/i915_gem.c                  |   1 +
 drivers/gpu/drm/i915/selftests/mock_gem_device.c | 109 +++++++++++++++++++++++
 drivers/gpu/drm/i915/selftests/mock_gem_device.h |   8 ++
 drivers/gpu/drm/i915/selftests/mock_gem_object.h |   8 ++
 4 files changed, 126 insertions(+)
 create mode 100644 drivers/gpu/drm/i915/selftests/mock_gem_device.c
 create mode 100644 drivers/gpu/drm/i915/selftests/mock_gem_device.h
 create mode 100644 drivers/gpu/drm/i915/selftests/mock_gem_object.h

diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 4547d4cd2064..f52f1aafb4b9 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -4976,4 +4976,5 @@ i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
 
 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
 #include "selftests/scatterlist.c"
+#include "selftests/mock_gem_device.c"
 #endif
diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.c b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
new file mode 100644
index 000000000000..95cf1d845bf1
--- /dev/null
+++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
@@ -0,0 +1,109 @@
+/*
+ * Copyright © 2016 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ */
+
+#include <linux/pm_runtime.h>
+
+#include "mock_gem_device.h"
+#include "mock_gem_object.h"
+
+static void mock_device_release(struct drm_device *dev)
+{
+	struct drm_i915_private *i915 = to_i915(dev);
+
+	rcu_barrier();
+	while (flush_work(&i915->mm.free_work))
+		rcu_barrier();
+
+	kmem_cache_destroy(i915->objects);
+	put_device(&i915->drm.pdev->dev);
+}
+
+static struct drm_driver mock_driver = {
+	.name = "mock",
+	.driver_features = DRIVER_GEM,
+	.release = mock_device_release,
+
+	.gem_close_object = i915_gem_close_object,
+	.gem_free_object_unlocked = i915_gem_free_object,
+};
+
+static void release_dev(struct device *dev)
+{
+	struct pci_dev *pdev = to_pci_dev(dev);
+
+	kfree(pdev);
+}
+
+struct drm_i915_private *mock_gem_device(void)
+{
+	struct drm_i915_private *i915;
+	struct pci_dev *pdev;
+	int err;
+
+	i915 = kzalloc(sizeof(*i915), GFP_TEMPORARY);
+	if (!i915)
+		return NULL;
+
+	pdev = kzalloc(sizeof(*pdev), GFP_TEMPORARY);
+	if (!pdev) {
+		kfree(i915);
+		return NULL;
+	}
+
+	device_initialize(&pdev->dev);
+	pdev->dev.release = release_dev;
+	dev_set_name(&pdev->dev, "mock");
+	dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
+
+	pm_runtime_dont_use_autosuspend(&pdev->dev);
+	pm_runtime_get_sync(&pdev->dev);
+	pci_set_drvdata(pdev, i915);
+
+	err = drm_dev_init(&i915->drm, &mock_driver, &pdev->dev);
+	if (err) {
+		pr_err("Failed to initialise mock GEM device: err=%d\n", err);
+		put_device(&pdev->dev);
+		kfree(i915);
+		return NULL;
+	}
+	i915->drm.pdev = pdev;
+	i915->drm.dev_private = i915;
+
+	mkwrite_device_info(i915)->gen = -1;
+
+	spin_lock_init(&i915->mm.object_stat_lock);
+
+	INIT_WORK(&i915->mm.free_work, __i915_gem_free_work);
+	init_llist_head(&i915->mm.free_list);
+
+	i915->objects = KMEM_CACHE(mock_object, SLAB_HWCACHE_ALIGN);
+	if (!i915->objects)
+		goto err_device;
+
+	return i915;
+
+err_device:
+	kfree(i915);
+	return NULL;
+}
diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.h b/drivers/gpu/drm/i915/selftests/mock_gem_device.h
new file mode 100644
index 000000000000..7ff7c848f731
--- /dev/null
+++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.h
@@ -0,0 +1,8 @@
+#ifndef __MOCK_GEM_DEVICE_H__
+#define __MOCK_GEM_DEVICE_H__
+
+#include "i915_drv.h"
+
+struct drm_i915_private *mock_gem_device(void);
+
+#endif /* !__MOCK_GEM_DEVICE_H__ */
diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_object.h b/drivers/gpu/drm/i915/selftests/mock_gem_object.h
new file mode 100644
index 000000000000..9fbf67321662
--- /dev/null
+++ b/drivers/gpu/drm/i915/selftests/mock_gem_object.h
@@ -0,0 +1,8 @@
+#ifndef __MOCK_GEM_OBJECT_H__
+#define __MOCK_GEM_OBJECT_H__
+
+struct mock_object {
+	struct drm_i915_gem_object base;
+};
+
+#endif /* !__MOCK_GEM_OBJECT_H__ */
-- 
2.11.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2016-12-20 13:08 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-20 13:07 [RFCv2 01/19] drm/i915: Provide a hook for selftests Chris Wilson
2016-12-20 13:07 ` [RFCv2 02/19] kselftests: Exercise hw-independent mock tests for i915.ko Chris Wilson
2016-12-20 13:07 ` [RFCv2 03/19] drm/i915: Add some selftests for sg_table manipulation Chris Wilson
2016-12-20 13:07 ` [RFCv2 04/19] drm/i915: Add unit tests for the breadcrumb rbtree, insert/remove Chris Wilson
2016-12-20 13:08 ` [RFCv2 05/19] drm/i915: Add unit tests for the breadcrumb rbtree, completion Chris Wilson
2016-12-20 13:08 ` [RFCv2 06/19] drm/i915: Add unit tests for the breadcrumb rbtree, wakeups Chris Wilson
2016-12-20 13:08 ` Chris Wilson [this message]
2017-01-09 15:10   ` [RFCv2 07/19] drm/i915: Mock the GEM device for self-testing Matthew Auld
2016-12-20 13:08 ` [RFCv2 08/19] drm/i915: Mock a GGTT " Chris Wilson
2017-01-09 15:16   ` Matthew Auld
2017-01-10 12:33     ` Chris Wilson
2016-12-20 13:08 ` [RFCv2 09/19] drm/i915: Mock infrastructure for request emission Chris Wilson
2016-12-20 13:08 ` [RFCv2 10/19] drm/i915: Add selftests for i915_gem_request Chris Wilson
2016-12-20 13:08 ` [RFCv2 11/19] drm/i915: Add a simple request selftest for waiting Chris Wilson
2016-12-20 13:08 ` [RFCv2 12/19] drm/i915: Add a simple fence selftest to i915_gem_request Chris Wilson
2016-12-20 13:08 ` [RFCv2 13/19] drm/i915: Add selftests for object allocation, phys Chris Wilson
2016-12-20 13:08 ` [RFCv2 14/19] drm/i915: Move uncore selfchecks to live selftest infrastructure Chris Wilson
2017-01-11 18:21   ` Matthew Auld
2016-12-20 13:08 ` [RFCv2 15/19] drm/i915: Test all fw tables during mock selftests Chris Wilson
2017-01-11 18:22   ` Matthew Auld
2016-12-20 13:08 ` [RFCv2 16/19] drm/i915: Sanity check all registers for matching fw domains Chris Wilson
2017-01-11 18:25   ` Matthew Auld
2017-01-11 18:39     ` Chris Wilson
2017-01-11 19:08   ` Matthew Auld
2016-12-20 13:08 ` [RFCv2 17/19] drm/i915: Add some mock tests for dmabuf interop Chris Wilson
2017-01-10 19:12   ` Matthew Auld
2016-12-20 13:08 ` [RFCv2 18/19] drm/i915: Add initial selftests for i915_gem_gtt Chris Wilson
2017-01-10 19:32   ` Matthew Auld
2016-12-20 13:08 ` [RFCv2 19/19] drm/i915: Initial selftests for exercising eviction Chris Wilson
2017-01-10 19:49   ` Matthew Auld
2016-12-20 14:16 ` ✓ Fi.CI.BAT: success for series starting with [RFCv2,01/19] drm/i915: Provide a hook for selftests Patchwork
2017-01-11 18:17 ` [RFCv2 01/19] " Tvrtko Ursulin
2017-01-11 18:34   ` Chris Wilson

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=20161220130814.10213-7-chris@chris-wilson.co.uk \
    --to=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    /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.