From: Leander Kieweg <kieweg.leander@gmail.com>
To: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org
Cc: airlied@gmail.com, simona@ffwll.ch,
maarten.lankhorst@linux.intel.com, mripard@kernel.org,
tzimmermann@suse.de, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, Leander Kieweg <kieweg.leander@gmail.com>
Subject: [RFC PATCH 3/3] NOT FOR MERGE: drm/glanda: Add x86 platform test device
Date: Tue, 14 Jul 2026 12:11:45 +0200 [thread overview]
Message-ID: <20260714101146.200416-4-kieweg.leander@gmail.com> (raw)
In-Reply-To: <20260714101146.200416-1-kieweg.leander@gmail.com>
Register a mock platform device on x86 architectures to allow
testing the GlandaGPU driver inside QEMU without cross-compiling.
Signed-off-by: Leander Kieweg <kieweg.leander@gmail.com>
---
drivers/gpu/drm/tiny/Kconfig | 14 ++++++++++++
drivers/gpu/drm/tiny/glandagpu.c | 39 ++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/drivers/gpu/drm/tiny/Kconfig b/drivers/gpu/drm/tiny/Kconfig
index 7a15bf95a..156713746 100644
--- a/drivers/gpu/drm/tiny/Kconfig
+++ b/drivers/gpu/drm/tiny/Kconfig
@@ -67,6 +67,20 @@ config DRM_GLANDA
basic modesetting, dumb buffers, and simple 2D drawing
acceleration via custom hardware IOCTLs.
+config DRM_GLANDA_X86_TEST
+ bool "Register a fixed-address test device on x86 (QEMU only)"
+ depends on DRM_GLANDA && X86
+ default n
+ help
+ Registers a platform device at a hardcoded physical address
+ (0xC0000000) for testing GlandaGPU against a QEMU-based digital
+ twin without needing a devicetree.
+
+ WARNING: this blindly ioremaps a fixed physical address range.
+ Do NOT enable this on real x86 hardware. This exists solely to
+ let reviewers test the driver in QEMU without cross-compiling
+ an ARM kernel/rootfs. Leave disabled otherwise.
+
config DRM_GM12U320
tristate "GM12U320 driver for USB projectors"
depends on DRM && USB && MMU
diff --git a/drivers/gpu/drm/tiny/glandagpu.c b/drivers/gpu/drm/tiny/glandagpu.c
index 8f87ae096..c1e9370f2 100644
--- a/drivers/gpu/drm/tiny/glandagpu.c
+++ b/drivers/gpu/drm/tiny/glandagpu.c
@@ -741,6 +741,34 @@ static struct platform_driver glandagpu_driver = {
.remove = glandagpu_remove,
};
+#ifdef CONFIG_DRM_GLANDA_X86_TEST
+static struct platform_device *pdev_x86;
+
+static struct resource glandagpu_resources[] = {
+ [0] = { /* Single resource covering VRAM and MMIO. */
+ .start = BRIDGE_BASE,
+ .end = GLANDA_BASE_SIZE,
+ .flags = IORESOURCE_MEM,},
+ [1] = { /* IRQ */
+ .start = 11,
+ .end = 11,
+ .flags = IORESOURCE_IRQ,},
+};
+
+static int glandagpu_register_x86_test_device(void)
+{
+ pdev_x86 = platform_device_register_simple("glandagpu", -1,
+ glandagpu_resources,
+ ARRAY_SIZE(glandagpu_resources));
+ if (IS_ERR(pdev_x86)) {
+ pr_err("GlandaGPU: Failed to register platform device\n");
+ return PTR_ERR(pdev_x86);
+ }
+
+ return 0;
+}
+#endif
+
static int __init glandagpu_init(void)
{
int ret;
@@ -750,6 +778,13 @@ static int __init glandagpu_init(void)
pr_err("GlandaGPU: Failed to register platform driver\n");
return ret;
}
+#ifdef CONFIG_DRM_GLANDA_X86_TEST
+ ret = glandagpu_register_x86_test_device();
+ if (ret) {
+ platform_driver_unregister(&glandagpu_driver);
+ return ret;
+ }
+#endif
pr_info("GlandaGPU: Module loaded successfully\n");
return 0;
@@ -757,6 +792,10 @@ static int __init glandagpu_init(void)
static void __exit glandagpu_exit(void)
{
+#ifdef CONFIG_DRM_GLANDA_X86_TEST
+ if (pdev_x86)
+ platform_device_unregister(pdev_x86);
+#endif
platform_driver_unregister(&glandagpu_driver);
pr_info("GlandaGPU: Module unloaded\n");
}
--
2.43.0
next prev parent reply other threads:[~2026-07-14 10:13 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 10:11 [RFC PATCH 0/3] drm: Add DRM driver for GlandaGPU (VHDL soft-IP GPU) Leander Kieweg
2026-07-14 10:11 ` [RFC PATCH 1/3] dt-bindings: display: Add GlandaGPU binding Leander Kieweg
2026-07-14 10:23 ` sashiko-bot
2026-07-14 10:11 ` [RFC PATCH 2/3] drm/glanda: Add initial DRM driver for GlandaGPU Leander Kieweg
2026-07-14 10:33 ` sashiko-bot
2026-07-14 12:14 ` Uwe Kleine-König
2026-07-14 10:11 ` Leander Kieweg [this message]
2026-07-14 10:47 ` [RFC PATCH 3/3] NOT FOR MERGE: drm/glanda: Add x86 platform test device sashiko-bot
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=20260714101146.200416-4-kieweg.leander@gmail.com \
--to=kieweg.leander@gmail.com \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=krzk+dt@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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