}
EXPORT_SYMBOL_GPL(v4l2_subdev_s_stream_helper);
-int v4l2_subdev_get_frame_desc_passthrough(struct v4l2_subdev *sd,
- unsigned int pad,
- struct v4l2_mbus_frame_desc *fd)
+int __v4l2_subdev_get_frame_desc_passthrough(struct v4l2_subdev *sd,
+ struct v4l2_subdev_state *state,
+ unsigned int pad,
+ struct v4l2_mbus_frame_desc *fd)
{
struct media_pad *local_sink_pad;
struct v4l2_subdev_route *route;
- struct v4l2_subdev_state *state;
struct device *dev = sd->dev;
int ret = 0;
+ lockdep_assert_held(state->lock);
+
if (WARN_ON(!(sd->entity.pads[pad].flags & MEDIA_PAD_FL_SOURCE)))
return -EINVAL;
- state = v4l2_subdev_lock_and_get_active_state(sd);
-
/* Iterate over sink pads */
media_entity_for_each_pad(&sd->entity, local_sink_pad) {
struct v4l2_mbus_frame_desc source_fd;
if (IS_ERR(remote_source_pad)) {
dev_dbg(dev, "Failed to find remote pad for sink pad %u\n",
local_sink_pad->index);
- ret = PTR_ERR(remote_source_pad);
- goto out_unlock;
+ return PTR_ERR(remote_source_pad);
}
remote_sd = media_entity_to_v4l2_subdev(remote_source_pad->entity);
- if (!remote_sd) {
- ret = -EINVAL;
- goto out_unlock;
- }
+ if (!remote_sd)
+ return -EINVAL;
ret = v4l2_subdev_call(remote_sd, pad,
get_frame_desc,
dev_err(dev,
"Failed to get frame desc from remote subdev %s\n",
remote_sd->name);
- goto out_unlock;
+ return ret;
}
have_source_fd = true;
dev_err(dev,
"Frame desc type mismatch: %u != %u\n",
fd->type, source_fd.type);
- ret = -EPIPE;
- goto out_unlock;
+ return -EPIPE;
}
}
dev_dbg(dev,
"Failed to find stream %u from source frame desc\n",
route->sink_stream);
- ret = -EPIPE;
- goto out_unlock;
+ return -EPIPE;
}
if (fd->num_entries >= V4L2_FRAME_DESC_ENTRY_MAX) {
dev_dbg(dev, "Frame desc entry limit reached\n");
- ret = -ENOSPC;
- goto out_unlock;
+ return -ENOSPC;
}
fd->entry[fd->num_entries] = *source_entry;
}
}
-out_unlock:
+ return 0;
+}
+EXPORT_SYMBOL_GPL(__v4l2_subdev_get_frame_desc_passthrough);
+
+int v4l2_subdev_get_frame_desc_passthrough(struct v4l2_subdev *sd,
+ unsigned int pad,
+ struct v4l2_mbus_frame_desc *fd)
+{
+ struct v4l2_subdev_state *state;
+ int ret;
+
+ state = v4l2_subdev_lock_and_get_active_state(sd);
+
+ ret = __v4l2_subdev_get_frame_desc_passthrough(sd, state, pad, fd);
+
v4l2_subdev_unlock_state(state);
return ret;
int v4l2_subdev_s_stream_helper(struct v4l2_subdev *sd, int enable);
/**
- * v4l2_subdev_get_frame_desc_passthrough() - Helper to implement the subdev
- * get_frame_desc operation in simple passthrough cases
+ * __v4l2_subdev_get_frame_desc_passthrough - Helper to implement the
+ * subdev get_frame_desc operation in simple passthrough cases
* @sd: The subdevice
+ * @state: The locked subdevice active state
* @pad: The source pad index
* @fd: The mbus frame desc
*
- * This helper implements get_frame_desc operation for subdevices that pass
- * streams through without modification. It can be assigned directly as the
- * .get_frame_desc callback in &v4l2_subdev_pad_ops.
+ * This helper implements the get_frame_desc operation for subdevices that pass
+ * streams through without modification.
*
* The helper iterates over the subdevice's sink pads, calls get_frame_desc on
* the remote subdevice connected to each sink pad, and collects the frame desc
* sink pads are involved and the upstream sources report different frame desc
* types, -EPIPE is returned.
*
+ * The caller must hold the subdevice's active state lock. This variant is
+ * intended for drivers that need to perform additional work around the
+ * passthrough frame descriptor collection. Drivers that do not need any
+ * customization should use v4l2_subdev_get_frame_desc_passthrough() instead.
+ *
+ * Return: 0 on success, or a negative error code otherwise.
+ */
+int __v4l2_subdev_get_frame_desc_passthrough(struct v4l2_subdev *sd,
+ struct v4l2_subdev_state *state,
+ unsigned int pad,
+ struct v4l2_mbus_frame_desc *fd);
+
+/**
+ * v4l2_subdev_get_frame_desc_passthrough() - Helper to implement the subdev
+ * get_frame_desc operation in simple passthrough cases
+ * @sd: The subdevice
+ * @pad: The source pad index
+ * @fd: The mbus frame desc
+ *
+ * This function locks the subdevice's active state, calls
+ * __v4l2_subdev_get_frame_desc_passthrough(), and unlocks the state.
+ *
+ * This function can be assigned directly as the .get_frame_desc callback in
+ * &v4l2_subdev_pad_ops for subdevices that pass streams through without
+ * modification. Drivers that need to perform additional work should use
+ * __v4l2_subdev_get_frame_desc_passthrough() in their custom
+ * .get_frame_desc implementation instead.
+ *
* Return: 0 on success, or a negative error code otherwise.
*/
int v4l2_subdev_get_frame_desc_passthrough(struct v4l2_subdev *sd,