mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +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>
25 lines
689 B
Diff
25 lines
689 B
Diff
From 22fb30936524ae96151789741885edbc45efb53d Mon Sep 17 00:00:00 2001
|
|
From: Iago Toral Quiroga <itoral@igalia.com>
|
|
Date: Thu, 2 Mar 2023 11:52:08 +0100
|
|
Subject: [PATCH] drm/v3d: update UAPI to match user-space for V3D 7.x
|
|
|
|
V3D t.x takes a new parameter to configure TFU jobs that needs
|
|
to be provided by user space.
|
|
---
|
|
include/uapi/drm/v3d_drm.h | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- a/include/uapi/drm/v3d_drm.h
|
|
+++ b/include/uapi/drm/v3d_drm.h
|
|
@@ -319,6 +319,10 @@ struct drm_v3d_submit_tfu {
|
|
|
|
/* Pointer to an array of ioctl extensions*/
|
|
__u64 extensions;
|
|
+
|
|
+ struct {
|
|
+ __u32 ioc;
|
|
+ } v71;
|
|
};
|
|
|
|
/* Submits a compute shader for dispatch. This job will block on any
|