Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
925 B
Diff
26 lines
925 B
Diff
From f429fc1a072d4bb35e622a1012a5a52914eba4e3 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Thu, 19 Oct 2023 10:34:58 +0100
|
|
Subject: [PATCH] drm/connector: Change DRM card alias from underscore to
|
|
hyphen
|
|
|
|
Apparently aliases are only allowed lower case and hyphens,
|
|
so swap the use of underscore to hyphen.
|
|
|
|
Fixes: 3aa1f2477545 ("drm: Look for an alias for the displays to use as the DRM device name")
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/drm_connector.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/drm_connector.c
|
|
+++ b/drivers/gpu/drm/drm_connector.c
|
|
@@ -112,7 +112,7 @@ static struct drm_conn_prop_enum_list dr
|
|
};
|
|
|
|
#define MAX_DT_NODE_NAME_LEN 20
|
|
-#define DT_DRM_NODE_PREFIX "drm_"
|
|
+#define DT_DRM_NODE_PREFIX "drm-"
|
|
|
|
static void drm_connector_get_of_name(int type, char *node_name, int length)
|
|
{
|