mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 17:48:58 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
32 lines
1.5 KiB
Diff
32 lines
1.5 KiB
Diff
From 07288c2bd9733dc9317c5f9b02980a59a05ce3af Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
Date: Tue, 7 May 2019 12:13:34 +0100
|
|
Subject: [PATCH] drm: vc4: Log flags in fkms mode set
|
|
|
|
The flags contain info such as limited/full range RGB, aspect
|
|
ratio, and a fwe other useful things.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_firmware_kms.c | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_firmware_kms.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_firmware_kms.c
|
|
@@ -685,12 +685,13 @@ static void vc4_crtc_mode_set_nofb(struc
|
|
return;
|
|
}
|
|
|
|
- DRM_DEBUG_KMS("Setting mode for display num %u mode name %s, clk %d, h(disp %d, start %d, end %d, total %d, skew %d) v(disp %d, start %d, end %d, total %d, scan %d), vrefresh %d, par %u\n",
|
|
+ DRM_DEBUG_KMS("Setting mode for display num %u mode name %s, clk %d, h(disp %d, start %d, end %d, total %d, skew %d) v(disp %d, start %d, end %d, total %d, scan %d), vrefresh %d, par %u, flags 0x%04x\n",
|
|
vc4_crtc->display_number, mode->name, mode->clock,
|
|
mode->hdisplay, mode->hsync_start, mode->hsync_end,
|
|
mode->htotal, mode->hskew, mode->vdisplay,
|
|
mode->vsync_start, mode->vsync_end, mode->vtotal,
|
|
- mode->vscan, mode->vrefresh, mode->picture_aspect_ratio);
|
|
+ mode->vscan, mode->vrefresh, mode->picture_aspect_ratio,
|
|
+ mode->flags);
|
|
mb.timings.display = vc4_crtc->display_number;
|
|
|
|
mb.timings.video_id_code = frame.avi.video_code;
|