0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-22 04:56:15 +00:00
openwrt/target/linux/bcm27xx/patches-6.6/950-0654-drm-Look-for-an-alias-for-the-displays-to-use-as-the.patch
Álvaro Fernández Rojas 8c405cdccc bcm27xx: add 6.6 kernel patches
The patches were generated from the RPi repo with the following command:
git format-patch v6.6.34..rpi-6.1.y

Some patches needed rebasing and, as usual, the applied and reverted, wireless
drivers, Github workflows, READMEs and defconfigs patches were removed.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2024-06-18 18:52:49 +02:00

118 lines
3.3 KiB
Diff

From 8a0b731a055fe663061231e1715f83bcd83be59d Mon Sep 17 00:00:00 2001
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
Date: Thu, 28 Sep 2023 18:27:09 +0100
Subject: [PATCH 0654/1085] drm: Look for an alias for the displays to use as
the DRM device name
Allow DT aliases of eg DSI2 to force make DRM allocate the
display with the requested name.
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
---
drivers/gpu/drm/drm_connector.c | 61 ++++++++++++++++++++++++++++++---
1 file changed, 57 insertions(+), 4 deletions(-)
--- a/drivers/gpu/drm/drm_connector.c
+++ b/drivers/gpu/drm/drm_connector.c
@@ -33,6 +33,7 @@
#include <drm/drm_sysfs.h>
#include <drm/drm_utils.h>
+#include <linux/of.h>
#include <linux/property.h>
#include <linux/uaccess.h>
@@ -83,6 +84,7 @@ struct drm_conn_prop_enum_list {
int type;
const char *name;
struct ida ida;
+ int first_dyn_num;
};
/*
@@ -112,12 +114,41 @@ static struct drm_conn_prop_enum_list dr
{ DRM_MODE_CONNECTOR_USB, "USB" },
};
+#define MAX_DT_NODE_NAME_LEN 20
+#define DT_DRM_NODE_PREFIX "drm_"
+
+static void drm_connector_get_of_name(int type, char *node_name, int length)
+{
+ int i = 0;
+
+ strcpy(node_name, DT_DRM_NODE_PREFIX);
+
+ do {
+ node_name[i + strlen(DT_DRM_NODE_PREFIX)] =
+ tolower(drm_connector_enum_list[type].name[i]);
+
+ } while (drm_connector_enum_list[type].name[i++] &&
+ i < length);
+
+ node_name[length - 1] = '\0';
+}
+
void drm_connector_ida_init(void)
{
- int i;
+ int i, id;
+ char node_name[MAX_DT_NODE_NAME_LEN];
- for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
+ for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) {
ida_init(&drm_connector_enum_list[i].ida);
+
+ drm_connector_get_of_name(i, node_name, MAX_DT_NODE_NAME_LEN);
+
+ id = of_alias_get_highest_id(node_name);
+ if (id > 0)
+ drm_connector_enum_list[i].first_dyn_num = id + 1;
+ else
+ drm_connector_enum_list[i].first_dyn_num = 1;
+ }
}
void drm_connector_ida_destroy(void)
@@ -225,7 +256,9 @@ static int __drm_connector_init(struct d
struct i2c_adapter *ddc)
{
struct drm_mode_config *config = &dev->mode_config;
+ char node_name[MAX_DT_NODE_NAME_LEN];
int ret;
+ int id;
struct ida *connector_ida =
&drm_connector_enum_list[connector_type].ida;
@@ -255,8 +288,28 @@ static int __drm_connector_init(struct d
ret = 0;
connector->connector_type = connector_type;
- connector->connector_type_id =
- ida_alloc_min(connector_ida, 1, GFP_KERNEL);
+ connector->connector_type_id = 0;
+
+ drm_connector_get_of_name(connector_type, node_name, MAX_DT_NODE_NAME_LEN);
+ id = of_alias_get_id(dev->dev->of_node, node_name);
+ if (id > 0) {
+ /* Try and allocate the requested ID
+ * Valid range is 1 to 31, hence ignoring 0 as an error
+ */
+ int type_id = ida_alloc_range(connector_ida, id, id, GFP_KERNEL);
+
+ if (type_id > 0)
+ connector->connector_type_id = type_id;
+ else
+ drm_err(dev, "Failed to acquire type ID %d for interface type %s, ret %d\n",
+ id, drm_connector_enum_list[connector_type].name,
+ type_id);
+ }
+ if (!connector->connector_type_id)
+ connector->connector_type_id =
+ ida_alloc_min(connector_ida,
+ drm_connector_enum_list[connector_type].first_dyn_num,
+ GFP_KERNEL);
if (connector->connector_type_id < 0) {
ret = connector->connector_type_id;
goto out_put_id;