]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/panfrost: Bump the driver version to 1.6
authorFaith Ekstrand <faith.ekstrand@collabora.com>
Mon, 8 Dec 2025 10:08:40 +0000 (11:08 +0100)
committerBoris Brezillon <boris.brezillon@collabora.com>
Tue, 9 Dec 2025 12:09:37 +0000 (13:09 +0100)
Bump the driver version to reflect the new cached-CPU mapping
capability.

v2:
- Quickly describe what the new version exposes in the commit message

v3:
- Add Steve's R-b

v4:
- No changes

v5:
- No changes

v6:
- No changes

v7:
- No changes

v8:
- No changes

Signed-off-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Link: https://patch.msgid.link/20251208100841.730527-14-boris.brezillon@collabora.com
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
drivers/gpu/drm/panfrost/panfrost_drv.c

index 34969179544c5fd4b3b2ec4a815801c7555e604f..b95120682a72b4aafeadd1b80f67785611df0809 100644 (file)
@@ -928,6 +928,9 @@ static void panfrost_debugfs_init(struct drm_minor *minor)
  * - 1.4 - adds SET_LABEL_BO
  * - 1.5 - adds JM_CTX_{CREATE,DESTROY} ioctls and extend SUBMIT to allow
  *        context creation with configurable priorities/affinity
+ * - 1.6 - adds PANFROST_BO_MAP_WB, PANFROST_IOCTL_SYNC_BO,
+ *        PANFROST_IOCTL_QUERY_BO_INFO and
+ *        DRM_PANFROST_PARAM_SELECTED_COHERENCY
  */
 static const struct drm_driver panfrost_drm_driver = {
        .driver_features        = DRIVER_RENDER | DRIVER_GEM | DRIVER_SYNCOBJ,
@@ -940,7 +943,7 @@ static const struct drm_driver panfrost_drm_driver = {
        .name                   = "panfrost",
        .desc                   = "panfrost DRM",
        .major                  = 1,
-       .minor                  = 5,
+       .minor                  = 6,
 
        .gem_create_object      = panfrost_gem_create_object,
        .gem_prime_import       = panfrost_gem_prime_import,