mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-11 16:31:15 +00:00
media: rkisp1: Fix sensor source pad retrieval at bound time
When a sensor is bound, its source pad is retrieved in the .bound() operation with a call to media_entity_get_fwnode_pad(). The function should be called with the source endpoint fwnode of the sensor, but is instead called with the sensor's device fwnode. Fix this, which involves storing a reference to the source endpoint fwnode in the rkisp1_sensor_async structure, and thus implementing the subdev notifier .destroy() operation to release the reference. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Dafna Hirschfeld <dafna@fastmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
124b89f85e
commit
b0b8ab684d
@ -117,6 +117,7 @@ struct rkisp1_info {
|
|||||||
*
|
*
|
||||||
* @asd: async_subdev variable for the sensor
|
* @asd: async_subdev variable for the sensor
|
||||||
* @index: index of the sensor (counting sensor found in DT)
|
* @index: index of the sensor (counting sensor found in DT)
|
||||||
|
* @source_ep: fwnode for the sensor source endpoint
|
||||||
* @lanes: number of lanes
|
* @lanes: number of lanes
|
||||||
* @mbus_type: type of bus (currently only CSI2 is supported)
|
* @mbus_type: type of bus (currently only CSI2 is supported)
|
||||||
* @mbus_flags: media bus (V4L2_MBUS_*) flags
|
* @mbus_flags: media bus (V4L2_MBUS_*) flags
|
||||||
@ -127,6 +128,7 @@ struct rkisp1_info {
|
|||||||
struct rkisp1_sensor_async {
|
struct rkisp1_sensor_async {
|
||||||
struct v4l2_async_subdev asd;
|
struct v4l2_async_subdev asd;
|
||||||
unsigned int index;
|
unsigned int index;
|
||||||
|
struct fwnode_handle *source_ep;
|
||||||
unsigned int lanes;
|
unsigned int lanes;
|
||||||
enum v4l2_mbus_type mbus_type;
|
enum v4l2_mbus_type mbus_type;
|
||||||
unsigned int mbus_flags;
|
unsigned int mbus_flags;
|
||||||
|
|||||||
@ -138,7 +138,7 @@ static int rkisp1_subdev_notifier_bound(struct v4l2_async_notifier *notifier,
|
|||||||
phy_init(s_asd->dphy);
|
phy_init(s_asd->dphy);
|
||||||
|
|
||||||
/* Create the link to the sensor. */
|
/* Create the link to the sensor. */
|
||||||
source_pad = media_entity_get_fwnode_pad(&sd->entity, sd->fwnode,
|
source_pad = media_entity_get_fwnode_pad(&sd->entity, s_asd->source_ep,
|
||||||
MEDIA_PAD_FL_SOURCE);
|
MEDIA_PAD_FL_SOURCE);
|
||||||
if (source_pad < 0) {
|
if (source_pad < 0) {
|
||||||
dev_err(rkisp1->dev, "failed to find source pad for %s\n",
|
dev_err(rkisp1->dev, "failed to find source pad for %s\n",
|
||||||
@ -170,10 +170,19 @@ static int rkisp1_subdev_notifier_complete(struct v4l2_async_notifier *notifier)
|
|||||||
return v4l2_device_register_subdev_nodes(&rkisp1->v4l2_dev);
|
return v4l2_device_register_subdev_nodes(&rkisp1->v4l2_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void rkisp1_subdev_notifier_destroy(struct v4l2_async_subdev *asd)
|
||||||
|
{
|
||||||
|
struct rkisp1_sensor_async *rk_asd =
|
||||||
|
container_of(asd, struct rkisp1_sensor_async, asd);
|
||||||
|
|
||||||
|
fwnode_handle_put(rk_asd->source_ep);
|
||||||
|
}
|
||||||
|
|
||||||
static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops = {
|
static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops = {
|
||||||
.bound = rkisp1_subdev_notifier_bound,
|
.bound = rkisp1_subdev_notifier_bound,
|
||||||
.unbind = rkisp1_subdev_notifier_unbind,
|
.unbind = rkisp1_subdev_notifier_unbind,
|
||||||
.complete = rkisp1_subdev_notifier_complete,
|
.complete = rkisp1_subdev_notifier_complete,
|
||||||
|
.destroy = rkisp1_subdev_notifier_destroy,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int rkisp1_subdev_notifier_register(struct rkisp1_device *rkisp1)
|
static int rkisp1_subdev_notifier_register(struct rkisp1_device *rkisp1)
|
||||||
@ -190,6 +199,7 @@ static int rkisp1_subdev_notifier_register(struct rkisp1_device *rkisp1)
|
|||||||
.bus_type = V4L2_MBUS_CSI2_DPHY
|
.bus_type = V4L2_MBUS_CSI2_DPHY
|
||||||
};
|
};
|
||||||
struct rkisp1_sensor_async *rk_asd;
|
struct rkisp1_sensor_async *rk_asd;
|
||||||
|
struct fwnode_handle *source = NULL;
|
||||||
struct fwnode_handle *ep;
|
struct fwnode_handle *ep;
|
||||||
|
|
||||||
ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(rkisp1->dev),
|
ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(rkisp1->dev),
|
||||||
@ -202,15 +212,24 @@ static int rkisp1_subdev_notifier_register(struct rkisp1_device *rkisp1)
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto err_parse;
|
goto err_parse;
|
||||||
|
|
||||||
rk_asd = v4l2_async_nf_add_fwnode_remote(ntf, ep,
|
source = fwnode_graph_get_remote_endpoint(ep);
|
||||||
struct
|
if (!source) {
|
||||||
rkisp1_sensor_async);
|
dev_err(rkisp1->dev,
|
||||||
|
"endpoint %pfw has no remote endpoint\n",
|
||||||
|
ep);
|
||||||
|
ret = -ENODEV;
|
||||||
|
goto err_parse;
|
||||||
|
}
|
||||||
|
|
||||||
|
rk_asd = v4l2_async_nf_add_fwnode(ntf, source,
|
||||||
|
struct rkisp1_sensor_async);
|
||||||
if (IS_ERR(rk_asd)) {
|
if (IS_ERR(rk_asd)) {
|
||||||
ret = PTR_ERR(rk_asd);
|
ret = PTR_ERR(rk_asd);
|
||||||
goto err_parse;
|
goto err_parse;
|
||||||
}
|
}
|
||||||
|
|
||||||
rk_asd->index = index++;
|
rk_asd->index = index++;
|
||||||
|
rk_asd->source_ep = source;
|
||||||
rk_asd->mbus_type = vep.bus_type;
|
rk_asd->mbus_type = vep.bus_type;
|
||||||
rk_asd->mbus_flags = vep.bus.mipi_csi2.flags;
|
rk_asd->mbus_flags = vep.bus.mipi_csi2.flags;
|
||||||
rk_asd->lanes = vep.bus.mipi_csi2.num_data_lanes;
|
rk_asd->lanes = vep.bus.mipi_csi2.num_data_lanes;
|
||||||
@ -225,6 +244,7 @@ static int rkisp1_subdev_notifier_register(struct rkisp1_device *rkisp1)
|
|||||||
continue;
|
continue;
|
||||||
err_parse:
|
err_parse:
|
||||||
fwnode_handle_put(ep);
|
fwnode_handle_put(ep);
|
||||||
|
fwnode_handle_put(source);
|
||||||
v4l2_async_nf_cleanup(ntf);
|
v4l2_async_nf_cleanup(ntf);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user