media: vivid: don't set HDMI TX controls if there are no HDMI outputs
authorHans Verkuil <hverkuil-cisco@xs4all.nl>
Mon, 24 Jun 2024 09:52:59 +0000 (12:52 +0300)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 28 Jun 2024 06:00:29 +0000 (08:00 +0200)
When setting the EDID it would attempt to update two controls
that are only present if there is an HDMI output configured.

If there isn't any (e.g. when the vivid module is loaded with
node_types=1), then calling VIDIOC_S_EDID would crash.

Fix this by first checking if outputs are present.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/test-drivers/vivid/vivid-vid-cap.c

index 3a3041a0378f1f9b276cebb1ca5cc86c7e3de811..afa0dc5bcdae12cbfb50fb1486400c4b786e7220 100644 (file)
@@ -1554,8 +1554,10 @@ int vidioc_s_edid(struct file *file, void *_fh,
                return -EINVAL;
        if (edid->blocks == 0) {
                dev->edid_blocks = 0;
-               v4l2_ctrl_s_ctrl(dev->ctrl_tx_edid_present, 0);
-               v4l2_ctrl_s_ctrl(dev->ctrl_tx_hotplug, 0);
+               if (dev->num_outputs) {
+                       v4l2_ctrl_s_ctrl(dev->ctrl_tx_edid_present, 0);
+                       v4l2_ctrl_s_ctrl(dev->ctrl_tx_hotplug, 0);
+               }
                phys_addr = CEC_PHYS_ADDR_INVALID;
                goto set_phys_addr;
        }
@@ -1579,8 +1581,10 @@ int vidioc_s_edid(struct file *file, void *_fh,
                        display_present |=
                                dev->display_present[i] << j++;
 
-       v4l2_ctrl_s_ctrl(dev->ctrl_tx_edid_present, display_present);
-       v4l2_ctrl_s_ctrl(dev->ctrl_tx_hotplug, display_present);
+       if (dev->num_outputs) {
+               v4l2_ctrl_s_ctrl(dev->ctrl_tx_edid_present, display_present);
+               v4l2_ctrl_s_ctrl(dev->ctrl_tx_hotplug, display_present);
+       }
 
 set_phys_addr:
        /* TODO: a proper hotplug detect cycle should be emulated here */