From: "José Expósito" <jose.exposito89@gmail.com>
To: igt-dev@lists.freedesktop.org
Cc: louis.chauvet@bootlin.com, "José Expósito" <jose.exposito89@gmail.com>
Subject: [PATCH i-g-t v2 25/43] lib/vkms: Create VKMS device from static config
Date: Thu, 13 Mar 2025 18:33:00 +0100 [thread overview]
Message-ID: <20250313173318.5818-26-jose.exposito89@gmail.com> (raw)
In-Reply-To: <20250313173318.5818-1-jose.exposito89@gmail.com>
In order to make the process of creating new VKMS devices as simple as
possible and in a declarative way, create a set of structures
representing a VKMS device configuration and a function that reads them
and applies the configuration.
In addition, add a test using this new function that checks that
creating a device without planes fails.
Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com>
Signed-off-by: José Expósito <jose.exposito89@gmail.com>
---
lib/igt_vkms.c | 88 ++++++++++++++++++++++++++++++++++++++
lib/igt_vkms.h | 43 +++++++++++++++++++
tests/vkms/vkms_configfs.c | 40 +++++++++++++++++
3 files changed, 171 insertions(+)
diff --git a/lib/igt_vkms.c b/lib/igt_vkms.c
index 2cd78fc95..ccc6910c4 100644
--- a/lib/igt_vkms.c
+++ b/lib/igt_vkms.c
@@ -466,6 +466,94 @@ igt_vkms_t *igt_vkms_device_create(const char *name)
return dev;
}
+/**
+ * igt_vkms_device_create_from_config:
+ * @cfg: Device configuration
+ *
+ * Create a VKMS device and set all the parameters specified by the
+ * configuration.
+ */
+igt_vkms_t *igt_vkms_device_create_from_config(igt_vkms_config_t *cfg)
+{
+ igt_vkms_t *dev;
+ igt_vkms_plane_config_t *plane;
+ igt_vkms_crtc_config_t *crtc;
+ igt_vkms_encoder_config_t *encoder;
+ igt_vkms_connector_config_t *connector;
+ const char *name;
+ int n, i;
+
+ igt_debug("Creating device from configuration:\n");
+ igt_debug("\t- Device name: %s\n", cfg->device_name);
+
+ dev = igt_vkms_device_create(cfg->device_name);
+ if (!dev)
+ return NULL;
+
+ for (n = 0; (crtc = &cfg->crtcs[n])->name; n++) {
+ igt_debug("\t- CRTC %d:\n", n);
+ igt_debug("\t\t- name: %s\n", crtc->name);
+ igt_debug("\t\t- writeback: %d\n", crtc->writeback);
+
+ igt_vkms_device_add_crtc(dev, crtc->name);
+ igt_vkms_crtc_set_writeback_enabled(dev, crtc->name,
+ crtc->writeback);
+ }
+
+ for (n = 0; (plane = &cfg->planes[n])->name; n++) {
+ igt_debug("\t- Plane %d:\n", n);
+ igt_debug("\t\t- name: %s\n", plane->name);
+ igt_debug("\t\t- type: %d\n", plane->type);
+ igt_debug("\t\t- possible_crtcs:\n");
+
+ igt_vkms_device_add_plane(dev, plane->name);
+ igt_vkms_plane_set_type(dev, plane->name, plane->type);
+
+ for (i = 0; (name = plane->possible_crtcs[i]); i++) {
+ igt_debug("\t\t\t- %s\n", name);
+
+ igt_vkms_plane_attach_crtc(dev, plane->name, name);
+ }
+ }
+
+ for (n = 0; (encoder = &cfg->encoders[n])->name; n++) {
+ igt_debug("\t- Encoder %d:\n", n);
+ igt_debug("\t\t- name: %s\n", encoder->name);
+ igt_debug("\t\t- possible_crtcs:\n");
+
+ igt_vkms_device_add_encoder(dev, encoder->name);
+
+ for (i = 0; (name = encoder->possible_crtcs[i]); i++) {
+ igt_debug("\t\t\t- %s\n", name);
+
+ igt_vkms_encoder_attach_crtc(dev, encoder->name, name);
+ }
+ }
+
+ for (n = 0; (connector = &cfg->connectors[n])->name; n++) {
+ if (connector->status == 0)
+ connector->status = DRM_MODE_CONNECTED;
+
+ igt_debug("\t- Connector %d:\n", n);
+ igt_debug("\t\t- name: %s\n", connector->name);
+ igt_debug("\t\t- status: %d\n", connector->status);
+ igt_debug("\t\t- possible_encoders:\n");
+
+ igt_vkms_device_add_connector(dev, connector->name);
+ igt_vkms_connector_set_status(dev, connector->name,
+ connector->status);
+
+ for (i = 0; (name = connector->possible_encoders[i]); i++) {
+ igt_debug("\t\t\t- %s\n", name);
+
+ igt_vkms_connector_attach_encoder(dev, connector->name,
+ name);
+ }
+ }
+
+ return dev;
+}
+
static int detach_pipeline_items(const char *path, const struct stat *info,
const int typeflag, struct FTW *pathinfo)
{
diff --git a/lib/igt_vkms.h b/lib/igt_vkms.h
index 42134c82e..1e077caa8 100644
--- a/lib/igt_vkms.h
+++ b/lib/igt_vkms.h
@@ -10,6 +10,8 @@
#include <stdbool.h>
+#define VKMS_MAX_PIPELINE_ITEMS 40
+
/**
* igt_vkms_t:
* @path: VKMS root directory inside configfs mounted directory
@@ -20,6 +22,46 @@ typedef struct igt_vkms {
char *path;
} igt_vkms_t;
+typedef struct igt_vkms_crtc_config {
+ const char *name;
+ bool writeback; /* Default: false */
+} igt_vkms_crtc_config_t;
+
+typedef struct igt_vkms_plane_config {
+ const char *name;
+ int type; /* Default: DRM_PLANE_TYPE_OVERLAY */
+ const char *possible_crtcs[VKMS_MAX_PIPELINE_ITEMS];
+} igt_vkms_plane_config_t;
+
+typedef struct igt_vkms_encoder_config {
+ const char *name;
+ const char *possible_crtcs[VKMS_MAX_PIPELINE_ITEMS];
+} igt_vkms_encoder_config_t;
+
+typedef struct igt_vkms_connector_config {
+ const char *name;
+ int status; /* Default: DRM_MODE_CONNECTED */
+ const char *possible_encoders[VKMS_MAX_PIPELINE_ITEMS];
+} igt_vkms_connector_config_t;
+
+/**
+ * igt_vkms_config_t:
+ * @device_name: Device name
+ * @planes: NULL terminated list of plane configurations
+ * @crtcs: NULL terminated list of CRTC configurations
+ * @encoders: NULL terminated list of encoders configurations
+ * @connectors: NULL terminated list of connector configurations
+ *
+ * Structure used to create a VKMS device from a static configuration.
+ */
+typedef struct igt_vkms_config {
+ const char *device_name;
+ igt_vkms_plane_config_t planes[VKMS_MAX_PIPELINE_ITEMS];
+ igt_vkms_crtc_config_t crtcs[VKMS_MAX_PIPELINE_ITEMS];
+ igt_vkms_encoder_config_t encoders[VKMS_MAX_PIPELINE_ITEMS];
+ igt_vkms_connector_config_t connectors[VKMS_MAX_PIPELINE_ITEMS];
+} igt_vkms_config_t;
+
void igt_require_vkms_configfs(void);
void igt_vkms_get_device_enabled_path(igt_vkms_t *dev, char *path, size_t len);
@@ -46,6 +88,7 @@ void igt_vkms_get_connector_possible_encoders_path(igt_vkms_t *dev,
size_t len);
igt_vkms_t *igt_vkms_device_create(const char *name);
+igt_vkms_t *igt_vkms_device_create_from_config(igt_vkms_config_t *cfg);
void igt_vkms_device_destroy(igt_vkms_t *dev);
void igt_vkms_destroy_all_devices(void);
diff --git a/tests/vkms/vkms_configfs.c b/tests/vkms/vkms_configfs.c
index c2cb9dbc0..355f8b72a 100644
--- a/tests/vkms/vkms_configfs.c
+++ b/tests/vkms/vkms_configfs.c
@@ -812,6 +812,45 @@ static void test_enable_no_pipeline_items(void)
igt_vkms_device_destroy(dev);
}
+/**
+ * SUBTEST: enable-no-planes
+ * Description: Try to enable a VKMS device without adding planes and test that
+ * it fails.
+ */
+
+static void test_enable_no_planes(void)
+{
+ igt_vkms_t *dev;
+
+ igt_vkms_config_t cfg = {
+ .device_name = __func__,
+ .planes = { },
+ .crtcs = {
+ { .name = "crtc0" },
+ { .name = "crtc1" },
+ },
+ .encoders = {
+ { .name = "encoder0", .possible_crtcs = { "crtc0" } },
+ { .name = "encoder1", .possible_crtcs = { "crtc1" } },
+ },
+ .connectors = {
+ {
+ .name = "connector0",
+ .possible_encoders = { "encoder0", "encoder1" },
+ },
+ },
+ };
+
+ dev = igt_vkms_device_create_from_config(&cfg);
+ igt_assert(dev);
+
+ igt_vkms_device_set_enabled(dev, true);
+ igt_assert(!igt_vkms_device_is_enabled(dev));
+ igt_assert(!device_exists(__func__));
+
+ igt_vkms_device_destroy(dev);
+}
+
igt_main
{
struct {
@@ -838,6 +877,7 @@ igt_main
{ "attach-encoder-to-crtc", test_attach_encoder_to_crtc },
{ "attach-connector-to-encoder", test_attach_connector_to_encoder },
{ "enable-no-pipeline-items", test_enable_no_pipeline_items },
+ { "enable-no-planes", test_enable_no_planes },
};
igt_fixture {
--
2.48.1
next prev parent reply other threads:[~2025-03-13 17:33 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-13 17:32 [PATCH i-g-t v2 00/43] VKMS configfs tests José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 01/43] lib/drmtest: Add VKMS as a known driver type José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 02/43] lib/igt_debugfs: Move is_mountpoint() to igt_aux José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 03/43] lib/igt_configfs: Add helper to mount configfs José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 04/43] lib/vkms: Add minimal VKMS library and test device default files José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 05/43] lib/vkms: Allow to enable/disable VKMS devices José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 06/43] tests/vkms_configfs: Test device invalid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 07/43] lib/vkms: Test plane default files José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 08/43] lib/vkms: Test plane default values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 09/43] lib/vkms: Test plane invalid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 10/43] tests/vkms_configfs: Test plane valid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 11/43] lib/vkms: Test CRTC default files José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 12/43] lib/vkms: Test CRTC default values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 13/43] lib/vkms: Test CRTC invalid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 14/43] tests/vkms_configfs: Test CRTC valid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 15/43] lib/vkms: Test encoder default files José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 16/43] lib/vkms: Test connector " José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 17/43] lib/vkms: Test connector default values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 18/43] lib/vkms: Test connector invalid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 19/43] tests/vkms_configfs: Test connector valid values José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 20/43] lib/vkms: Test attaching planes to CRTCs José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 21/43] lib/vkms: Test attaching encoders " José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 22/43] lib/vkms: Test attaching connectors to encoders José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 23/43] lib/igt_device_scan: Allow to find device by sysname José Expósito
2025-06-11 11:09 ` Kamil Konieczny
2025-07-15 10:27 ` José Expósito
2025-03-13 17:32 ` [PATCH i-g-t v2 24/43] tests/vkms_configfs: Test enablement without pipeline items José Expósito
2025-03-13 17:33 ` José Expósito [this message]
2025-03-13 17:33 ` [PATCH i-g-t v2 26/43] tests/vkms_configfs: Test adding too many planes José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 27/43] tests/vkms_configfs: Test not adding a primary plane José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 28/43] tests/vkms_configfs: Test adding multiple primary planes José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 29/43] tests/vkms_configfs: Test adding multiple cursor planes José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 30/43] tests/vkms_configfs: Test adding a plane without possible CRTCs José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 31/43] tests/vkms_configfs: Test enabling a device without CRTCs José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 32/43] tests/vkms_configfs: Test enabling a device with too many CRTCs José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 33/43] tests/vkms_configfs: Test enabling a device without encoders José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 34/43] tests/vkms_configfs: Test enabling a device with too many encoders José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 35/43] tests/vkms_configfs: Test adding an encoder without possible CRTCs José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 36/43] tests/vkms_configfs: Test adding a CRTC without encoders José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 37/43] tests/vkms_configfs: Test enabling a device without connectors José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 38/43] tests/vkms_configfs: Test enabling a device with too many connectors José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 39/43] lib/vkms: Test changing enabled device planes José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 40/43] lib/vkms: Test changing enabled device CRTCs José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 41/43] lib/vkms: Test changing enabled device encoders José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 42/43] lib/vkms: Test changing enabled device connectors José Expósito
2025-03-13 17:33 ` [PATCH i-g-t v2 43/43] tests/vkms_configfs: Test connector hot-plug José Expósito
2025-03-14 16:54 ` ✗ Xe.CI.Full: failure for VKMS configfs tests (rev4) Patchwork
2025-03-15 0:05 ` ✓ Xe.CI.BAT: success for VKMS configfs tests (rev5) Patchwork
2025-03-15 0:30 ` ✓ i915.CI.BAT: " Patchwork
2025-03-15 9:06 ` ✗ Xe.CI.Full: failure " Patchwork
2025-03-15 11:32 ` ✗ i915.CI.Full: " 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=20250313173318.5818-26-jose.exposito89@gmail.com \
--to=jose.exposito89@gmail.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=louis.chauvet@bootlin.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