mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
9703a2adcc
Refresh all patches on top of kernel 5.10.138. The following patches were applied upstream: bcm27xx/patches-5.10/950-0311-drm-vc4-Adopt-the-dma-configuration-from-the-HVS-or-.patch bcm27xx/patches-5.10/950-0317-vc4_hdmi-Remove-firmware-logic-for-MAI-threshold-set.patch bcm27xx/patches-5.10/950-0346-drm-vc4-A-present-but-empty-dmas-disables-audio.patch bcm27xx/patches-5.10/950-0354-drm-vc4-Add-the-2711-HVS-as-a-suitable-DMA-node.patch bcm27xx/patches-5.10/950-0413-drm-vc4-hdmi-Don-t-access-the-connector-state-in-res.patch bcm27xx/patches-5.10/950-0505-vc4-drm-Avoid-full-hdmi-audio-fifo-writes.patch bcm27xx/patches-5.10/950-0512-vc4-drm-vc4_plane-Remove-subpixel-positioning-check.patch bcm27xx/patches-5.10/950-0560-drm-vc4-drv-Remove-the-DSI-pointer-in-vc4_drv.patch bcm27xx/patches-5.10/950-0561-drm-vc4-dsi-Use-snprintf-for-the-PHY-clocks-instead-.patch bcm27xx/patches-5.10/950-0562-drm-vc4-dsi-Introduce-a-variant-structure.patch bcm27xx/patches-5.10/950-0565-drm-vc4-Correct-pixel-order-for-DSI0.patch bcm27xx/patches-5.10/950-0566-drm-vc4-Register-dsi0-as-the-correct-vc4-encoder-typ.patch bcm27xx/patches-5.10/950-0567-drm-vc4-Fix-dsi0-interrupt-support.patch bcm27xx/patches-5.10/950-0568-drm-vc4-Add-correct-stop-condition-to-vc4_dsi_encode.patch bcm27xx/patches-5.10/950-0647-drm-vc4-Fix-timings-for-interlaced-modes.patch bcm27xx/patches-5.10/950-0695-drm-vc4-Fix-margin-calculations-for-the-right-bottom.patch Upstream sets the pixel clock to 340MHz now, do not set it to 600MHz any more. bcm27xx/patches-5.10/950-0576-drm-vc4-hdmi-Raise-the-maximum-clock-rate.patch Fixes:89956c6532
("kernel: bump 5.10 to 5.10.138") Fixes:4209c33ae2
("kernel: bump 5.10 to 5.10.137") Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
59 lines
2.1 KiB
Diff
59 lines
2.1 KiB
Diff
From 7b6cfdfc74c7e9c00060a0c4146a6358b261f7db Mon Sep 17 00:00:00 2001
|
|
From: Matthias Reichl <hias@horus.com>
|
|
Date: Thu, 19 Mar 2020 20:00:35 +0100
|
|
Subject: [PATCH] drm/vc4: move setup from hw_params to prepare
|
|
|
|
Configuring HDMI audio registers in prepare allows us to take
|
|
IEC958 bits into account which are set by the alsa hook after
|
|
the hw_params call.
|
|
|
|
Signed-off-by: Matthias Reichl <hias@horus.com>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_hdmi.c | 20 +++++++++++---------
|
|
1 file changed, 11 insertions(+), 9 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hdmi.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hdmi.c
|
|
@@ -1035,9 +1035,8 @@ static int sample_rate_to_mai_fmt(int sa
|
|
}
|
|
|
|
/* HDMI audio codec callbacks */
|
|
-static int vc4_hdmi_audio_hw_params(struct snd_pcm_substream *substream,
|
|
- struct snd_pcm_hw_params *params,
|
|
- struct snd_soc_dai *dai)
|
|
+static int vc4_hdmi_audio_prepare(struct snd_pcm_substream *substream,
|
|
+ struct snd_soc_dai *dai)
|
|
{
|
|
struct vc4_hdmi *vc4_hdmi = dai_to_hdmi(dai);
|
|
struct drm_encoder *encoder = &vc4_hdmi->encoder.base.base;
|
|
@@ -1050,12 +1049,15 @@ static int vc4_hdmi_audio_hw_params(stru
|
|
if (substream != vc4_hdmi->audio.substream)
|
|
return -EINVAL;
|
|
|
|
- dev_dbg(dev, "%s: %u Hz, %d bit, %d channels\n", __func__,
|
|
- params_rate(params), params_width(params),
|
|
- params_channels(params));
|
|
+ dev_dbg(dev, "%s: %u Hz, %d bit, %d channels AES0=%02x\n",
|
|
+ __func__,
|
|
+ substream->runtime->rate,
|
|
+ snd_pcm_format_width(substream->runtime->format),
|
|
+ substream->runtime->channels,
|
|
+ vc4_hdmi->audio.iec_status[0]);
|
|
|
|
- vc4_hdmi->audio.channels = params_channels(params);
|
|
- vc4_hdmi->audio.samplerate = params_rate(params);
|
|
+ vc4_hdmi->audio.channels = substream->runtime->channels;
|
|
+ vc4_hdmi->audio.samplerate = substream->runtime->rate;
|
|
|
|
HDMI_WRITE(HDMI_MAI_CTL,
|
|
VC4_HD_MAI_CTL_RESET |
|
|
@@ -1267,7 +1269,7 @@ static const struct snd_soc_component_dr
|
|
static const struct snd_soc_dai_ops vc4_hdmi_audio_dai_ops = {
|
|
.startup = vc4_hdmi_audio_startup,
|
|
.shutdown = vc4_hdmi_audio_shutdown,
|
|
- .hw_params = vc4_hdmi_audio_hw_params,
|
|
+ .prepare = vc4_hdmi_audio_prepare,
|
|
.set_fmt = vc4_hdmi_audio_set_fmt,
|
|
.trigger = vc4_hdmi_audio_trigger,
|
|
};
|