Message ID | 20200217191619.28976-3-dafna.hirschfeld@collabora.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fix fwnode API usage and remove v4l2_mbus_config field | expand |
Hi Dafna, Thanks for the patch. Please see my comments below. On 2/17/20 4:16 PM, Dafna Hirschfeld wrote: > don't call 'v4l2_async_notifier_parse_fwnode_endpoints_by_port' > in order to register async subdevices. Instead call > 'v4l2_fwnode_endpoint_parse' to parse the remote endpoints > and then register each async subdev with > 'v4l2_async_notifier_add_fwnode_remote_subdev' > > Also remove the relevant item in the TODO file > > Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com> > --- > drivers/staging/media/rkisp1/TODO | 3 - > drivers/staging/media/rkisp1/rkisp1-dev.c | 96 ++++++++++++++--------- > 2 files changed, 57 insertions(+), 42 deletions(-) > > diff --git a/drivers/staging/media/rkisp1/TODO b/drivers/staging/media/rkisp1/TODO > index 03cd9a4e70f7..8c4d50b5b5fc 100644 > --- a/drivers/staging/media/rkisp1/TODO > +++ b/drivers/staging/media/rkisp1/TODO > @@ -1,7 +1,4 @@ > * Fix serialization on subdev ops. > -* Don't use v4l2_async_notifier_parse_fwnode_endpoints_by_port(). > -e.g. isp_parse_of_endpoints in drivers/media/platform/omap3isp/isp.c > -cio2_parse_firmware in drivers/media/pci/intel/ipu3/ipu3-cio2.c. > * Fix pad format size for statistics and parameters entities. > * Use threaded interrupt for rkisp1_stats_isr(), remove work queue. > * Fix checkpatch errors. > diff --git a/drivers/staging/media/rkisp1/rkisp1-dev.c b/drivers/staging/media/rkisp1/rkisp1-dev.c > index 72ab08a4e42d..922f7bb83530 100644 > --- a/drivers/staging/media/rkisp1/rkisp1-dev.c > +++ b/drivers/staging/media/rkisp1/rkisp1-dev.c > @@ -234,35 +234,6 @@ static int rkisp1_subdev_notifier_complete(struct v4l2_async_notifier *notifier) > return ret; > } > > -static int rkisp1_fwnode_parse(struct device *dev, > - struct v4l2_fwnode_endpoint *vep, > - struct v4l2_async_subdev *asd) > -{ > - struct rkisp1_sensor_async *s_asd = > - container_of(asd, struct rkisp1_sensor_async, asd); > - > - if (vep->bus_type != V4L2_MBUS_CSI2_DPHY) { > - dev_err(dev, "Only CSI2 bus type is currently supported\n"); > - return -EINVAL; > - } > - > - if (vep->base.port != 0) { > - dev_err(dev, "The ISP has only port 0\n"); > - return -EINVAL; > - } > - > - s_asd->mbus_type = vep->bus_type; > - s_asd->lanes = vep->bus.mipi_csi2.num_data_lanes; > - > - /* Parallel bus is currently not supported */ > - s_asd->parallel_bus_flags = 0; > - > - if (s_asd->lanes < 1 || s_asd->lanes > 4) > - return -EINVAL; > - > - return 0; > -} > - > static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops = { > .bound = rkisp1_subdev_notifier_bound, > .unbind = rkisp1_subdev_notifier_unbind, > @@ -272,23 +243,70 @@ static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops = > static int rkisp1_subdev_notifier(struct rkisp1_device *rkisp1) > { > struct v4l2_async_notifier *ntf = &rkisp1->notifier; > - struct device *dev = rkisp1->dev; > + int next_id = 0; > int ret; > > v4l2_async_notifier_init(ntf); > > - ret = v4l2_async_notifier_parse_fwnode_endpoints_by_port(dev, ntf, > - sizeof(struct rkisp1_sensor_async), > - 0, rkisp1_fwnode_parse); > - if (ret) > - return ret; > + while (1) { > + struct v4l2_fwnode_endpoint vep = { > + .bus_type = V4L2_MBUS_CSI2_DPHY > + }; > + struct rkisp1_sensor_async *rk_asd = NULL; > + struct fwnode_handle *ep; > > - if (list_empty(&ntf->asd_list)) > - return -ENODEV; > + ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(rkisp1->dev), > + 0, next_id, FWNODE_GRAPH_ENDPOINT_NEXT); > > - ntf->ops = &rkisp1_subdev_notifier_ops; > + if (!ep) { > + if (next_id == 0) > + dev_warn(rkisp1->dev, "no remote subdevice found\n"); This check can be done after the loop, then you can remove the curly braces. Also, please use if (!next_id) > + break; > + } > > - return v4l2_async_notifier_register(&rkisp1->v4l2_dev, ntf); > + ret = v4l2_fwnode_endpoint_parse(ep, &vep); > + if (ret) > + goto err_parse; > + > + rk_asd = kzalloc(sizeof(*rk_asd), GFP_KERNEL); > + if (!rk_asd) { > + ret = -ENOMEM; > + goto err_parse; > + } > + > + rk_asd->lanes = vep.bus.mipi_csi2.num_data_lanes; > + rk_asd->mbus_type = vep.bus_type; > + > + /* Parallel bus is currently not supported */ > + rk_asd->parallel_bus_flags = 0; > + ret = v4l2_async_notifier_add_fwnode_remote_subdev(ntf, ep, > + &rk_asd->asd); > + if (ret) > + goto err_parse; > + > + dev_dbg(rkisp1->dev, "registered ep id %d with %d lanes\n", > + vep.base.id, rk_asd->lanes); > + > + next_id = vep.base.id + 1; > + > + fwnode_handle_put(ep); > + > + continue; > +err_parse: > + fwnode_handle_put(ep); > + kfree(rk_asd); > + v4l2_async_notifier_cleanup(ntf); > + return ret; > + } > + > + ntf->ops = &rkisp1_subdev_notifier_ops; > + ret = v4l2_async_notifier_register(&rkisp1->v4l2_dev, ntf); > + if (ret) > + goto end; This is the only place you use the end label, so you could just do a simple: if (ret) { v4l2_async_notifier_cleanup(ntf); return ret; } return 0; > + return 0; > +end: > + v4l2_async_notifier_cleanup(ntf); > + return ret; > } > > /* ---------------------------------------------------------------------------- > Regards, Helen
diff --git a/drivers/staging/media/rkisp1/TODO b/drivers/staging/media/rkisp1/TODO index 03cd9a4e70f7..8c4d50b5b5fc 100644 --- a/drivers/staging/media/rkisp1/TODO +++ b/drivers/staging/media/rkisp1/TODO @@ -1,7 +1,4 @@ * Fix serialization on subdev ops. -* Don't use v4l2_async_notifier_parse_fwnode_endpoints_by_port(). -e.g. isp_parse_of_endpoints in drivers/media/platform/omap3isp/isp.c -cio2_parse_firmware in drivers/media/pci/intel/ipu3/ipu3-cio2.c. * Fix pad format size for statistics and parameters entities. * Use threaded interrupt for rkisp1_stats_isr(), remove work queue. * Fix checkpatch errors. diff --git a/drivers/staging/media/rkisp1/rkisp1-dev.c b/drivers/staging/media/rkisp1/rkisp1-dev.c index 72ab08a4e42d..922f7bb83530 100644 --- a/drivers/staging/media/rkisp1/rkisp1-dev.c +++ b/drivers/staging/media/rkisp1/rkisp1-dev.c @@ -234,35 +234,6 @@ static int rkisp1_subdev_notifier_complete(struct v4l2_async_notifier *notifier) return ret; } -static int rkisp1_fwnode_parse(struct device *dev, - struct v4l2_fwnode_endpoint *vep, - struct v4l2_async_subdev *asd) -{ - struct rkisp1_sensor_async *s_asd = - container_of(asd, struct rkisp1_sensor_async, asd); - - if (vep->bus_type != V4L2_MBUS_CSI2_DPHY) { - dev_err(dev, "Only CSI2 bus type is currently supported\n"); - return -EINVAL; - } - - if (vep->base.port != 0) { - dev_err(dev, "The ISP has only port 0\n"); - return -EINVAL; - } - - s_asd->mbus_type = vep->bus_type; - s_asd->lanes = vep->bus.mipi_csi2.num_data_lanes; - - /* Parallel bus is currently not supported */ - s_asd->parallel_bus_flags = 0; - - if (s_asd->lanes < 1 || s_asd->lanes > 4) - return -EINVAL; - - return 0; -} - static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops = { .bound = rkisp1_subdev_notifier_bound, .unbind = rkisp1_subdev_notifier_unbind, @@ -272,23 +243,70 @@ static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops = static int rkisp1_subdev_notifier(struct rkisp1_device *rkisp1) { struct v4l2_async_notifier *ntf = &rkisp1->notifier; - struct device *dev = rkisp1->dev; + int next_id = 0; int ret; v4l2_async_notifier_init(ntf); - ret = v4l2_async_notifier_parse_fwnode_endpoints_by_port(dev, ntf, - sizeof(struct rkisp1_sensor_async), - 0, rkisp1_fwnode_parse); - if (ret) - return ret; + while (1) { + struct v4l2_fwnode_endpoint vep = { + .bus_type = V4L2_MBUS_CSI2_DPHY + }; + struct rkisp1_sensor_async *rk_asd = NULL; + struct fwnode_handle *ep; - if (list_empty(&ntf->asd_list)) - return -ENODEV; + ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(rkisp1->dev), + 0, next_id, FWNODE_GRAPH_ENDPOINT_NEXT); - ntf->ops = &rkisp1_subdev_notifier_ops; + if (!ep) { + if (next_id == 0) + dev_warn(rkisp1->dev, "no remote subdevice found\n"); + break; + } - return v4l2_async_notifier_register(&rkisp1->v4l2_dev, ntf); + ret = v4l2_fwnode_endpoint_parse(ep, &vep); + if (ret) + goto err_parse; + + rk_asd = kzalloc(sizeof(*rk_asd), GFP_KERNEL); + if (!rk_asd) { + ret = -ENOMEM; + goto err_parse; + } + + rk_asd->lanes = vep.bus.mipi_csi2.num_data_lanes; + rk_asd->mbus_type = vep.bus_type; + + /* Parallel bus is currently not supported */ + rk_asd->parallel_bus_flags = 0; + ret = v4l2_async_notifier_add_fwnode_remote_subdev(ntf, ep, + &rk_asd->asd); + if (ret) + goto err_parse; + + dev_dbg(rkisp1->dev, "registered ep id %d with %d lanes\n", + vep.base.id, rk_asd->lanes); + + next_id = vep.base.id + 1; + + fwnode_handle_put(ep); + + continue; +err_parse: + fwnode_handle_put(ep); + kfree(rk_asd); + v4l2_async_notifier_cleanup(ntf); + return ret; + } + + ntf->ops = &rkisp1_subdev_notifier_ops; + ret = v4l2_async_notifier_register(&rkisp1->v4l2_dev, ntf); + if (ret) + goto end; + return 0; +end: + v4l2_async_notifier_cleanup(ntf); + return ret; } /* ----------------------------------------------------------------------------
don't call 'v4l2_async_notifier_parse_fwnode_endpoints_by_port' in order to register async subdevices. Instead call 'v4l2_fwnode_endpoint_parse' to parse the remote endpoints and then register each async subdev with 'v4l2_async_notifier_add_fwnode_remote_subdev' Also remove the relevant item in the TODO file Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com> --- drivers/staging/media/rkisp1/TODO | 3 - drivers/staging/media/rkisp1/rkisp1-dev.c | 96 ++++++++++++++--------- 2 files changed, 57 insertions(+), 42 deletions(-)