mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
251a382c28
Deleted (upstreamed): generic/backport-5.15/400-mtdblock-warn-if-opened-on-NAND.patch [01] generic/backport-5.15/420-v5.19-01-mtd-spinand-gigadevice-fix-Quad-IO-for-GD5F1GQ5UExxG.patch [02] bcm27xx/patches-5.15/950-0029-Revert-mailbox-avoid-timer-start-from-callback.patch [03] bcm27xx/patches-5.15/950-0417-bcm2711_thermal-Don-t-clamp-temperature-at-zero.patch [04] bcm27xx/patches-5.15/950-0740-drm-vc4-hvs-Fix-frame-count-register-readout.patch [05] bcm27xx/patches-5.15/950-0755-drm-vc4-hvs-Reset-muxes-at-probe-time.patch [06] bcm27xx/patches-5.15/950-0759-drm-vc4-txp-Don-t-set-TXP_VSTART_AT_EOF.patch [07] bcm27xx/patches-5.15/950-0760-drm-vc4-txp-Force-alpha-to-be-0xff-if-it-s-disabled.patch [08] bcm53xx/patches-5.15/031-v5.17-0005-ARM-dts-BCM5301X-update-CRU-block-description.patch [09] mediatek/patches-5.15/102-mt7629-enable-arch-timer.patch [10] Manually rebased: bcm27xx/patches-5.15/950-0741-drm-vc4-hvs-Use-pointer-to-HVS-in-HVS_READ-and-HVS_W.patch [01] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=f41c9418c5898c01634675150696da290fb86796 [02] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=d5b66645305c6f3a1b2cf75cee4157b07f293309 [03] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=119f99209d8531359bcb935f252ec435f9d21b13 [04] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=c4e1280abead1552e1764684079a43e222ccd163 [05] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=08465a1889cb48ec64431e9db745b5be15399251 [06] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=0e26a6da02e63b75b629573d13966c36aa6264f0 [07] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=01c9020b2e7c85e394879f34851805179ac3d1d8 [08] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=d47f85cc0171a5d3c5bd8cbb8a98983ca3357cbd [09] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=5151f24ac937ff7eb1f078257c66e3c0f0296010 [10] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=ffea838686b82fbb2801cdfad6ba5309d15c032d Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
115 lines
3.7 KiB
Diff
115 lines
3.7 KiB
Diff
From db56206e77d1a71c145669dc41d0ada496ea8e4f Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Wed, 28 Apr 2021 12:32:10 +0200
|
|
Subject: [PATCH] drm/vc4: Add debugfs node that dumps the vc5 gamma
|
|
PWL entries
|
|
|
|
This helps with debugging the conversion from a 256 point gamma LUT to
|
|
16 point PWL entries as used by the BCM2711.
|
|
|
|
Co-developed-by: Juerg Haefliger <juergh@canonical.com>
|
|
Signed-off-by: Juerg Haefliger <juergh@canonical.com>
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_hvs.c | 81 +++++++++++++++++++++++++++++++++++
|
|
1 file changed, 81 insertions(+)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hvs.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hvs.c
|
|
@@ -134,6 +134,84 @@ static int vc4_hvs_debugfs_dlist(struct
|
|
return 0;
|
|
}
|
|
|
|
+static int vc5_hvs_debugfs_gamma(struct seq_file *m, void *data)
|
|
+{
|
|
+ struct drm_info_node *node = m->private;
|
|
+ struct drm_device *dev = node->minor->dev;
|
|
+ struct vc4_dev *vc4 = to_vc4_dev(dev);
|
|
+ struct drm_printer p = drm_seq_file_printer(m);
|
|
+ unsigned int i, chan;
|
|
+ u32 dispstat, dispbkgndx;
|
|
+
|
|
+ for (chan = 0; chan < SCALER_CHANNELS_COUNT; chan++) {
|
|
+ u32 x_c, grad;
|
|
+ u32 offset = SCALER5_DSPGAMMA_START +
|
|
+ chan * SCALER5_DSPGAMMA_CHAN_OFFSET;
|
|
+
|
|
+ dispstat = VC4_GET_FIELD(HVS_READ(SCALER_DISPSTATX(chan)),
|
|
+ SCALER_DISPSTATX_MODE);
|
|
+ if (dispstat == SCALER_DISPSTATX_MODE_DISABLED ||
|
|
+ dispstat == SCALER_DISPSTATX_MODE_EOF) {
|
|
+ drm_printf(&p, "HVS channel %u: Channel disabled\n", chan);
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ dispbkgndx = HVS_READ(SCALER_DISPBKGNDX(chan));
|
|
+ if (!(dispbkgndx & SCALER_DISPBKGND_GAMMA)) {
|
|
+ drm_printf(&p, "HVS channel %u: Gamma disabled\n", chan);
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ drm_printf(&p, "HVS channel %u:\n", chan);
|
|
+ drm_printf(&p, " red:\n");
|
|
+ for (i = 0; i < SCALER5_DSPGAMMA_NUM_POINTS; i++, offset += 8) {
|
|
+ x_c = HVS_READ(offset);
|
|
+ grad = HVS_READ(offset + 4);
|
|
+ drm_printf(&p, " %08x %08x - x %u, c %u, grad %u\n",
|
|
+ x_c, grad,
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_X),
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_C),
|
|
+ grad);
|
|
+ }
|
|
+ drm_printf(&p, " green:\n");
|
|
+ for (i = 0; i < SCALER5_DSPGAMMA_NUM_POINTS; i++, offset += 8) {
|
|
+ x_c = HVS_READ(offset);
|
|
+ grad = HVS_READ(offset + 4);
|
|
+ drm_printf(&p, " %08x %08x - x %u, c %u, grad %u\n",
|
|
+ x_c, grad,
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_X),
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_C),
|
|
+ grad);
|
|
+ }
|
|
+ drm_printf(&p, " blue:\n");
|
|
+ for (i = 0; i < SCALER5_DSPGAMMA_NUM_POINTS; i++, offset += 8) {
|
|
+ x_c = HVS_READ(offset);
|
|
+ grad = HVS_READ(offset + 4);
|
|
+ drm_printf(&p, " %08x %08x - x %u, c %u, grad %u\n",
|
|
+ x_c, grad,
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_X),
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_C),
|
|
+ grad);
|
|
+ }
|
|
+
|
|
+ /* Alpha only valid on channel 2 */
|
|
+ if (chan != 2)
|
|
+ continue;
|
|
+
|
|
+ drm_printf(&p, " alpha:\n");
|
|
+ for (i = 0; i < SCALER5_DSPGAMMA_NUM_POINTS; i++, offset += 8) {
|
|
+ x_c = HVS_READ(offset);
|
|
+ grad = HVS_READ(offset + 4);
|
|
+ drm_printf(&p, " %08x %08x - x %u, c %u, grad %u\n",
|
|
+ x_c, grad,
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_X),
|
|
+ VC4_GET_FIELD(x_c, SCALER5_DSPGAMMA_OFF_C),
|
|
+ grad);
|
|
+ }
|
|
+ }
|
|
+ return 0;
|
|
+}
|
|
+
|
|
/* The filter kernel is composed of dwords each containing 3 9-bit
|
|
* signed integers packed next to each other.
|
|
*/
|
|
@@ -848,6 +926,9 @@ static int vc4_hvs_bind(struct device *d
|
|
NULL);
|
|
vc4_debugfs_add_file(drm, "hvs_dlists", vc4_hvs_debugfs_dlist,
|
|
NULL);
|
|
+ if (hvs->hvs5)
|
|
+ vc4_debugfs_add_file(drm, "hvs_gamma", vc5_hvs_debugfs_gamma,
|
|
+ NULL);
|
|
|
|
return 0;
|
|
}
|