mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
2e715fb4fc
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>
20 lines
639 B
Diff
20 lines
639 B
Diff
From 18bc419d38eda06ded78c7b702c0e21e5af8f24c Mon Sep 17 00:00:00 2001
|
|
From: Iago Toral Quiroga <itoral@igalia.com>
|
|
Date: Thu, 2 Mar 2023 11:54:45 +0100
|
|
Subject: [PATCH] drm/v3d: add brcm,2712-v3d as a compatible V3D device
|
|
|
|
---
|
|
drivers/gpu/drm/v3d/v3d_drv.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/gpu/drm/v3d/v3d_drv.c
|
|
+++ b/drivers/gpu/drm/v3d/v3d_drv.c
|
|
@@ -193,6 +193,7 @@ static const struct drm_driver v3d_drm_d
|
|
};
|
|
|
|
static const struct of_device_id v3d_of_match[] = {
|
|
+ { .compatible = "brcm,2712-v3d" },
|
|
{ .compatible = "brcm,2711-v3d" },
|
|
{ .compatible = "brcm,7268-v3d" },
|
|
{ .compatible = "brcm,7278-v3d" },
|