mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
d6d8851d12
Manually rebased: bcm27xx/patches-5.15/950-0421-Support-RPi-DPI-interface-in-mode6-for-18-bit-color.patch bcm27xx/patches-5.15/950-0706-media-i2c-imx219-Scale-the-pixel-clock-rate-for-the-.patch ramips/patches-5.15/810-uvc-add-iPassion-iP2970-support.patch Removed upstreamed: bcm27xx/patches-5.15/950-0707-drm-vc4-For-DPI-MEDIA_BUS_FMT_RGB565_1X16-is-mode-1-.patch[1] bcm27xx/patches-5.15/950-0596-drm-vc4-dpi-Add-option-for-inverting-pixel-clock-and.patch[2] ipq807x/0006-v5.16-arm64-dts-qcom-Fix-IPQ8074-PCIe-PHY-nodes.patch [3] ipq807x/0034-v6.1-arm64-dts-qcom-ipq8074-fix-PCIe-PHY-serdes-size.patch [4] ipq807x/0103-arm64-dts-qcom-ipq8074-fix-Gen2-PCIe-QMP-PHY.patch [5] ipq807x/0104-arm64-dts-qcom-ipq8074-fix-Gen3-PCIe-QMP-PHY.patch [6] ipq807x/0105-arm64-dts-qcom-ipq8074-correct-Gen2-PCIe-ranges.patch [7] ipq807x/0108-arm64-dts-qcom-ipq8074-fix-Gen3-PCIe-node.patch [8] ipq807x/0109-arm64-dts-qcom-ipq8074-correct-PCIe-QMP-PHY-output-c.patch [9] ipq807x/0132-arm64-dts-qcom-ipq8074-correct-USB3-QMP-PHY-s-clock-.patch [10] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.99&id=d2991e6b30020e286f2dd9d3b4f43548c547caa6 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/drivers/gpu/drm/vc4/vc4_dpi.c?h=v5.15.100&id=8e04aaffb6de5f1ae61de7b671c1531172ccf429 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=a55a645aa303a3f7ec37db69822d5420657626da 4. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=d9df682bcea57fa25f37bbf17eae56fa05662635 5. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=7e6eeb5fb3aa9e5feffdb6e137dcc06f5f6410e1 6. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=e88204931d9a60634cd50bbc679f045439c4b91d 7. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=1563af0f28afd3b6d64ac79a2aecced3969c90bf 8. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=feb8c71f015d416f1afe90e1f62cf51e47376c67 9. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=69c7a270357a7d50ffd3471b14c60250041200e3 10. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/arch/arm64/boot/dts/qcom/ipq8074.dtsi?h=v5.15.99&id=dd3d021ae5471d98adf81f1e897431c8657d0a18 Build system: x86_64 Build-tested: bcm2711/RPi4B, ramips/tplink_archer-a6-v3 Run-tested: bcm2711/RPi4B, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Tested-by: Robert Marko <robimarko@gmail.com> #ipq807x/Dynalink WRX36 Tested-by: Stefan Lippers-Hollmann <s.l-h@gmx.de> #ipq807x/ax3600, x86_64/FW-7543B, ath79/tl-wdr3600, ipq806x/g10, ipq806x/nbg6817
445 lines
14 KiB
Diff
445 lines
14 KiB
Diff
From 5976ef1d81c8d474eddb55103f29a686f84f22f1 Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Mon, 25 Oct 2021 16:11:09 +0200
|
|
Subject: [PATCH] drm/vc4: hdmi: Use a mutex to prevent concurrent
|
|
framework access
|
|
|
|
The vc4 HDMI controller registers into the KMS, CEC and ALSA
|
|
frameworks.
|
|
|
|
However, no particular care is done to prevent the concurrent execution
|
|
of different framework hooks from happening at the same time.
|
|
|
|
In order to protect against that scenario, let's introduce a mutex that
|
|
relevant ALSA and KMS hooks will need to take to prevent concurrent
|
|
execution.
|
|
|
|
CEC is left out at the moment though, since the .get_modes and .detect
|
|
KMS hooks, when running cec_s_phys_addr_from_edid, can end up calling
|
|
CEC's .adap_enable hook. This introduces some reentrancy that isn't easy
|
|
to deal with properly.
|
|
|
|
The CEC hooks also don't share much state with the rest of the driver:
|
|
the registers are entirely separate, we don't share any variable, the
|
|
only thing that can conflict is the CEC clock divider setup that can be
|
|
affected by a mode set.
|
|
|
|
However, after discussing it, it looks like CEC should be able to
|
|
recover from this if it was to happen.
|
|
|
|
Link: https://lore.kernel.org/r/20211025141113.702757-6-maxime@cerno.tech
|
|
Fixes: bb7d78568814 ("drm/vc4: Add HDMI audio support")
|
|
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_hdmi.c | 118 +++++++++++++++++++++++++++++++--
|
|
drivers/gpu/drm/vc4/vc4_hdmi.h | 14 ++++
|
|
2 files changed, 126 insertions(+), 6 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hdmi.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hdmi.c
|
|
@@ -192,6 +192,8 @@ vc4_hdmi_connector_detect(struct drm_con
|
|
struct vc4_hdmi *vc4_hdmi = connector_to_vc4_hdmi(connector);
|
|
bool connected = false;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
WARN_ON(pm_runtime_resume_and_get(&vc4_hdmi->pdev->dev));
|
|
|
|
if (vc4_hdmi->hpd_gpio) {
|
|
@@ -222,11 +224,13 @@ vc4_hdmi_connector_detect(struct drm_con
|
|
|
|
vc4_hdmi_enable_scrambling(&vc4_hdmi->encoder.base.base);
|
|
pm_runtime_put(&vc4_hdmi->pdev->dev);
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
return connector_status_connected;
|
|
}
|
|
|
|
cec_phys_addr_invalidate(vc4_hdmi->cec_adap);
|
|
pm_runtime_put(&vc4_hdmi->pdev->dev);
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
return connector_status_disconnected;
|
|
}
|
|
|
|
@@ -243,10 +247,14 @@ static int vc4_hdmi_connector_get_modes(
|
|
int ret = 0;
|
|
struct edid *edid;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
edid = drm_get_edid(connector, vc4_hdmi->ddc);
|
|
cec_s_phys_addr_from_edid(vc4_hdmi->cec_adap, edid);
|
|
- if (!edid)
|
|
- return -ENODEV;
|
|
+ if (!edid) {
|
|
+ ret = -ENODEV;
|
|
+ goto out;
|
|
+ }
|
|
|
|
vc4_encoder->hdmi_monitor = drm_detect_hdmi_monitor(edid);
|
|
|
|
@@ -266,6 +274,9 @@ static int vc4_hdmi_connector_get_modes(
|
|
}
|
|
}
|
|
|
|
+out:
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
+
|
|
return ret;
|
|
}
|
|
|
|
@@ -482,6 +493,8 @@ static void vc4_hdmi_set_avi_infoframe(s
|
|
union hdmi_infoframe frame;
|
|
int ret;
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
+
|
|
ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
|
|
connector, mode);
|
|
if (ret < 0) {
|
|
@@ -533,6 +546,8 @@ static void vc4_hdmi_set_hdr_infoframe(s
|
|
struct drm_connector_state *conn_state = connector->state;
|
|
union hdmi_infoframe frame;
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
+
|
|
if (!vc4_hdmi->variant->supports_hdr)
|
|
return;
|
|
|
|
@@ -549,6 +564,8 @@ static void vc4_hdmi_set_infoframes(stru
|
|
{
|
|
struct vc4_hdmi *vc4_hdmi = encoder_to_vc4_hdmi(encoder);
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
+
|
|
vc4_hdmi_set_avi_infoframe(encoder);
|
|
vc4_hdmi_set_spd_infoframe(encoder);
|
|
/*
|
|
@@ -568,6 +585,8 @@ static bool vc4_hdmi_supports_scrambling
|
|
struct vc4_hdmi *vc4_hdmi = encoder_to_vc4_hdmi(encoder);
|
|
struct drm_display_info *display = &vc4_hdmi->connector.display_info;
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
+
|
|
if (!vc4_encoder->hdmi_monitor)
|
|
return false;
|
|
|
|
@@ -586,6 +605,8 @@ static void vc4_hdmi_enable_scrambling(s
|
|
struct vc4_hdmi *vc4_hdmi = encoder_to_vc4_hdmi(encoder);
|
|
unsigned long flags;
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
+
|
|
if (!vc4_hdmi_supports_scrambling(encoder, mode))
|
|
return;
|
|
|
|
@@ -655,6 +676,8 @@ static void vc4_hdmi_encoder_post_crtc_d
|
|
struct vc4_hdmi *vc4_hdmi = encoder_to_vc4_hdmi(encoder);
|
|
unsigned long flags;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
|
|
HDMI_WRITE(HDMI_RAM_PACKET_CONFIG, 0);
|
|
@@ -671,6 +694,8 @@ static void vc4_hdmi_encoder_post_crtc_d
|
|
spin_unlock_irqrestore(&vc4_hdmi->hw_lock, flags);
|
|
|
|
vc4_hdmi_disable_scrambling(encoder);
|
|
+
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
}
|
|
|
|
static void vc4_hdmi_encoder_post_crtc_powerdown(struct drm_encoder *encoder,
|
|
@@ -680,6 +705,8 @@ static void vc4_hdmi_encoder_post_crtc_p
|
|
unsigned long flags;
|
|
int ret;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
HDMI_WRITE(HDMI_VID_CTL,
|
|
HDMI_READ(HDMI_VID_CTL) | VC4_HD_VID_CTL_BLANKPIX);
|
|
@@ -694,6 +721,8 @@ static void vc4_hdmi_encoder_post_crtc_p
|
|
ret = pm_runtime_put(&vc4_hdmi->pdev->dev);
|
|
if (ret < 0)
|
|
DRM_ERROR("Failed to release power domain: %d\n", ret);
|
|
+
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
}
|
|
|
|
static void vc4_hdmi_encoder_disable(struct drm_encoder *encoder)
|
|
@@ -996,6 +1025,8 @@ static void vc4_hdmi_encoder_pre_crtc_co
|
|
unsigned long flags;
|
|
int ret;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
/*
|
|
* As stated in RPi's vc4 firmware "HDMI state machine (HSM) clock must
|
|
* be faster than pixel clock, infinitesimally faster, tested in
|
|
@@ -1016,13 +1047,13 @@ static void vc4_hdmi_encoder_pre_crtc_co
|
|
ret = clk_set_min_rate(vc4_hdmi->hsm_clock, hsm_rate);
|
|
if (ret) {
|
|
DRM_ERROR("Failed to set HSM clock rate: %d\n", ret);
|
|
- return;
|
|
+ goto out;
|
|
}
|
|
|
|
ret = pm_runtime_resume_and_get(&vc4_hdmi->pdev->dev);
|
|
if (ret < 0) {
|
|
DRM_ERROR("Failed to retain power domain: %d\n", ret);
|
|
- return;
|
|
+ goto out;
|
|
}
|
|
|
|
ret = clk_set_rate(vc4_hdmi->pixel_clock, pixel_rate);
|
|
@@ -1074,13 +1105,16 @@ static void vc4_hdmi_encoder_pre_crtc_co
|
|
if (vc4_hdmi->variant->set_timings)
|
|
vc4_hdmi->variant->set_timings(vc4_hdmi, conn_state, mode);
|
|
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
+
|
|
return;
|
|
|
|
err_disable_pixel_clock:
|
|
clk_disable_unprepare(vc4_hdmi->pixel_clock);
|
|
err_put_runtime_pm:
|
|
pm_runtime_put(&vc4_hdmi->pdev->dev);
|
|
-
|
|
+out:
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
return;
|
|
}
|
|
|
|
@@ -1092,6 +1126,8 @@ static void vc4_hdmi_encoder_pre_crtc_en
|
|
struct vc4_hdmi *vc4_hdmi = encoder_to_vc4_hdmi(encoder);
|
|
unsigned long flags;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
if (vc4_encoder->hdmi_monitor &&
|
|
drm_default_rgb_quant_range(mode) == HDMI_QUANTIZATION_RANGE_LIMITED) {
|
|
if (vc4_hdmi->variant->csc_setup)
|
|
@@ -1108,6 +1144,8 @@ static void vc4_hdmi_encoder_pre_crtc_en
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
HDMI_WRITE(HDMI_FIFO_CTL, VC4_HDMI_FIFO_CTL_MASTER_SLAVE_N);
|
|
spin_unlock_irqrestore(&vc4_hdmi->hw_lock, flags);
|
|
+
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
}
|
|
|
|
static void vc4_hdmi_encoder_post_crtc_enable(struct drm_encoder *encoder,
|
|
@@ -1121,6 +1159,8 @@ static void vc4_hdmi_encoder_post_crtc_e
|
|
unsigned long flags;
|
|
int ret;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
|
|
HDMI_WRITE(HDMI_VID_CTL,
|
|
@@ -1180,6 +1220,8 @@ static void vc4_hdmi_encoder_post_crtc_e
|
|
|
|
vc4_hdmi_recenter_fifo(vc4_hdmi);
|
|
vc4_hdmi_enable_scrambling(encoder);
|
|
+
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
}
|
|
|
|
static void vc4_hdmi_encoder_enable(struct drm_encoder *encoder)
|
|
@@ -1323,6 +1365,7 @@ static void vc4_hdmi_set_n_cts(struct vc
|
|
u32 n, cts;
|
|
u64 tmp;
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
lockdep_assert_held(&vc4_hdmi->hw_lock);
|
|
|
|
n = 128 * samplerate / 1000;
|
|
@@ -1356,13 +1399,17 @@ static int vc4_hdmi_audio_startup(struct
|
|
struct drm_encoder *encoder = &vc4_hdmi->encoder.base.base;
|
|
unsigned long flags;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
/*
|
|
* If the HDMI encoder hasn't probed, or the encoder is
|
|
* currently in DVI mode, treat the codec dai as missing.
|
|
*/
|
|
if (!encoder->crtc || !(HDMI_READ(HDMI_RAM_PACKET_CONFIG) &
|
|
- VC4_HDMI_RAM_PACKET_ENABLE))
|
|
+ VC4_HDMI_RAM_PACKET_ENABLE)) {
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
return -ENODEV;
|
|
+ }
|
|
|
|
vc4_hdmi->audio.streaming = true;
|
|
|
|
@@ -1378,6 +1425,8 @@ static int vc4_hdmi_audio_startup(struct
|
|
if (vc4_hdmi->variant->phy_rng_enable)
|
|
vc4_hdmi->variant->phy_rng_enable(vc4_hdmi);
|
|
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
+
|
|
return 0;
|
|
}
|
|
|
|
@@ -1388,6 +1437,8 @@ static void vc4_hdmi_audio_reset(struct
|
|
unsigned long flags;
|
|
int ret;
|
|
|
|
+ lockdep_assert_held(&vc4_hdmi->mutex);
|
|
+
|
|
vc4_hdmi->audio.streaming = false;
|
|
ret = vc4_hdmi_stop_packet(encoder, HDMI_INFOFRAME_TYPE_AUDIO, false);
|
|
if (ret)
|
|
@@ -1407,6 +1458,8 @@ static void vc4_hdmi_audio_shutdown(stru
|
|
struct vc4_hdmi *vc4_hdmi = dev_get_drvdata(dev);
|
|
unsigned long flags;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
|
|
HDMI_WRITE(HDMI_MAI_CTL,
|
|
@@ -1421,6 +1474,8 @@ static void vc4_hdmi_audio_shutdown(stru
|
|
|
|
vc4_hdmi->audio.streaming = false;
|
|
vc4_hdmi_audio_reset(vc4_hdmi);
|
|
+
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
}
|
|
|
|
static int sample_rate_to_mai_fmt(int samplerate)
|
|
@@ -1479,6 +1534,8 @@ static int vc4_hdmi_audio_prepare(struct
|
|
dev_dbg(dev, "%s: %u Hz, %d bit, %d channels\n", __func__,
|
|
sample_rate, params->sample_width, channels);
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
+
|
|
vc4_hdmi_audio_set_mai_clock(vc4_hdmi, sample_rate);
|
|
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
@@ -1533,6 +1590,8 @@ static int vc4_hdmi_audio_prepare(struct
|
|
memcpy(&vc4_hdmi->audio.infoframe, ¶ms->cea, sizeof(params->cea));
|
|
vc4_hdmi_set_audio_infoframe(encoder);
|
|
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
+
|
|
return 0;
|
|
}
|
|
|
|
@@ -1575,7 +1634,9 @@ static int vc4_hdmi_audio_get_eld(struct
|
|
struct vc4_hdmi *vc4_hdmi = dev_get_drvdata(dev);
|
|
struct drm_connector *connector = &vc4_hdmi->connector;
|
|
|
|
+ mutex_lock(&vc4_hdmi->mutex);
|
|
memcpy(buf, connector->eld, min(sizeof(connector->eld), len));
|
|
+ mutex_unlock(&vc4_hdmi->mutex);
|
|
|
|
return 0;
|
|
}
|
|
@@ -1912,6 +1973,17 @@ static int vc4_hdmi_cec_enable(struct ce
|
|
u32 val;
|
|
int ret;
|
|
|
|
+ /*
|
|
+ * NOTE: This function should really take vc4_hdmi->mutex, but doing so
|
|
+ * results in a reentrancy since cec_s_phys_addr_from_edid() called in
|
|
+ * .detect or .get_modes might call .adap_enable, which leads to this
|
|
+ * function being called with that mutex held.
|
|
+ *
|
|
+ * Concurrency is not an issue for the moment since we don't share any
|
|
+ * state with KMS, so we can ignore the lock for now, but we need to
|
|
+ * keep it in mind if we were to change that assumption.
|
|
+ */
|
|
+
|
|
ret = pm_runtime_resume_and_get(&vc4_hdmi->pdev->dev);
|
|
if (ret)
|
|
return ret;
|
|
@@ -1958,6 +2030,17 @@ static int vc4_hdmi_cec_disable(struct c
|
|
struct vc4_hdmi *vc4_hdmi = cec_get_drvdata(adap);
|
|
unsigned long flags;
|
|
|
|
+ /*
|
|
+ * NOTE: This function should really take vc4_hdmi->mutex, but doing so
|
|
+ * results in a reentrancy since cec_s_phys_addr_from_edid() called in
|
|
+ * .detect or .get_modes might call .adap_enable, which leads to this
|
|
+ * function being called with that mutex held.
|
|
+ *
|
|
+ * Concurrency is not an issue for the moment since we don't share any
|
|
+ * state with KMS, so we can ignore the lock for now, but we need to
|
|
+ * keep it in mind if we were to change that assumption.
|
|
+ */
|
|
+
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
|
|
if (!vc4_hdmi->variant->external_irq_controller)
|
|
@@ -1986,6 +2069,17 @@ static int vc4_hdmi_cec_adap_log_addr(st
|
|
struct vc4_hdmi *vc4_hdmi = cec_get_drvdata(adap);
|
|
unsigned long flags;
|
|
|
|
+ /*
|
|
+ * NOTE: This function should really take vc4_hdmi->mutex, but doing so
|
|
+ * results in a reentrancy since cec_s_phys_addr_from_edid() called in
|
|
+ * .detect or .get_modes might call .adap_enable, which leads to this
|
|
+ * function being called with that mutex held.
|
|
+ *
|
|
+ * Concurrency is not an issue for the moment since we don't share any
|
|
+ * state with KMS, so we can ignore the lock for now, but we need to
|
|
+ * keep it in mind if we were to change that assumption.
|
|
+ */
|
|
+
|
|
spin_lock_irqsave(&vc4_hdmi->hw_lock, flags);
|
|
HDMI_WRITE(HDMI_CEC_CNTRL_1,
|
|
(HDMI_READ(HDMI_CEC_CNTRL_1) & ~VC4_HDMI_CEC_ADDR_MASK) |
|
|
@@ -2004,6 +2098,17 @@ static int vc4_hdmi_cec_adap_transmit(st
|
|
u32 val;
|
|
unsigned int i;
|
|
|
|
+ /*
|
|
+ * NOTE: This function should really take vc4_hdmi->mutex, but doing so
|
|
+ * results in a reentrancy since cec_s_phys_addr_from_edid() called in
|
|
+ * .detect or .get_modes might call .adap_enable, which leads to this
|
|
+ * function being called with that mutex held.
|
|
+ *
|
|
+ * Concurrency is not an issue for the moment since we don't share any
|
|
+ * state with KMS, so we can ignore the lock for now, but we need to
|
|
+ * keep it in mind if we were to change that assumption.
|
|
+ */
|
|
+
|
|
if (msg->len > 16) {
|
|
drm_err(dev, "Attempting to transmit too much data (%d)\n", msg->len);
|
|
return -ENOMEM;
|
|
@@ -2360,6 +2465,7 @@ static int vc4_hdmi_bind(struct device *
|
|
vc4_hdmi = devm_kzalloc(dev, sizeof(*vc4_hdmi), GFP_KERNEL);
|
|
if (!vc4_hdmi)
|
|
return -ENOMEM;
|
|
+ mutex_init(&vc4_hdmi->mutex);
|
|
spin_lock_init(&vc4_hdmi->hw_lock);
|
|
INIT_DELAYED_WORK(&vc4_hdmi->scrambling_work, vc4_hdmi_scrambling_wq);
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hdmi.h
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hdmi.h
|
|
@@ -184,6 +184,20 @@ struct vc4_hdmi {
|
|
* @hw_lock: Spinlock protecting device register access.
|
|
*/
|
|
spinlock_t hw_lock;
|
|
+
|
|
+ /**
|
|
+ * @mutex: Mutex protecting the driver access across multiple
|
|
+ * frameworks (KMS, ALSA).
|
|
+ *
|
|
+ * NOTE: While supported, CEC has been left out since
|
|
+ * cec_s_phys_addr_from_edid() might call .adap_enable and lead to a
|
|
+ * reentrancy issue between .get_modes (or .detect) and .adap_enable.
|
|
+ * Since we don't share any state between the CEC hooks and KMS', it's
|
|
+ * not a big deal. The only trouble might come from updating the CEC
|
|
+ * clock divider which might be affected by a modeset, but CEC should
|
|
+ * be resilient to that.
|
|
+ */
|
|
+ struct mutex mutex;
|
|
};
|
|
|
|
static inline struct vc4_hdmi *
|