On 08/18/2016 07:53 AM, Wu, Songjun wrote:
> Hi Hans,
>
> Thank you for the patch.
>
> On 8/17/2016 14:29, Hans Verkuil wrote:
>> From: Hans Verkuil <[email protected]>
>>
>> This patch converts the atmel-isi driver from a soc-camera driver to a driver
>> that is stand-alone.
>>
>> Signed-off-by: Hans Verkuil <[email protected]>
>> ---
>> drivers/media/platform/soc_camera/Kconfig | 3 +-
>> drivers/media/platform/soc_camera/atmel-isi.c | 1216
>> +++++++++++++++----------
>> 2 files changed, 721 insertions(+), 498 deletions(-)
>>
>> diff --git a/drivers/media/platform/soc_camera/Kconfig
>> b/drivers/media/platform/soc_camera/Kconfig
>> index 39f6641..f74e358 100644
>> --- a/drivers/media/platform/soc_camera/Kconfig
>> +++ b/drivers/media/platform/soc_camera/Kconfig
>> @@ -54,9 +54,8 @@ config VIDEO_SH_MOBILE_CEU
>>
>> config VIDEO_ATMEL_ISI
>> tristate "ATMEL Image Sensor Interface (ISI) support"
>> - depends on VIDEO_DEV && SOC_CAMERA
>> + depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && OF && HAS_DMA
>> depends on ARCH_AT91 || COMPILE_TEST
>> - depends on HAS_DMA
>> select VIDEOBUF2_DMA_CONTIG
>> ---help---
>> This module makes the ATMEL Image Sensor Interface available
>> diff --git a/drivers/media/platform/soc_camera/atmel-isi.c
>> b/drivers/media/platform/soc_camera/atmel-isi.c
>> index 30211f6..9947acb 100644
>> --- a/drivers/media/platform/soc_camera/atmel-isi.c
>> +++ b/drivers/media/platform/soc_camera/atmel-isi.c
>> +
>> static int atmel_isi_probe(struct platform_device *pdev)
>> {
>> int irq;
>> struct atmel_isi *isi;
>> + struct vb2_queue *q;
>> struct resource *regs;
>> int ret, i;
>> - struct soc_camera_host *soc_host;
>>
>> isi = devm_kzalloc(&pdev->dev, sizeof(struct atmel_isi), GFP_KERNEL);
>> if (!isi) {
>> @@ -1044,20 +1216,65 @@ static int atmel_isi_probe(struct platform_device
>> *pdev)
>> return ret;
>>
>> isi->active = NULL;
>> - spin_lock_init(&isi->lock);
>> + isi->dev = &pdev->dev;
>> + mutex_init(&isi->lock);
>> + spin_lock_init(&isi->irqlock);
>> INIT_LIST_HEAD(&isi->video_buffer_list);
>> INIT_LIST_HEAD(&isi->dma_desc_head);
>>
>> + q = &isi->queue;
>> +
>> + /* Initialize the top-level structure */
>> + ret = v4l2_device_register(&pdev->dev, &isi->v4l2_dev);
>> + if (ret)
>> + return ret;
>> +
>> + isi->vdev = video_device_alloc();
>> + if (isi->vdev == NULL) {
>> + ret = -ENOMEM;
>> + goto err_vdev_alloc;
>> + }
> If video device is unregistered, the ISI driver must be reloaded when
> registering a new video device.
> So '*vdev' can be replaced by 'vdev', or move the code above to
> isi_graph_notify_complete.
I'm afraid I don't understand what you mean. Can you clarify?
Regards,
Hans
>
>> +
>> + /* video node */
>> + isi->vdev->fops = &isi_fops;
>> + isi->vdev->v4l2_dev = &isi->v4l2_dev;
>> + isi->vdev->queue = &isi->queue;
>> + strlcpy(isi->vdev->name, KBUILD_MODNAME, sizeof(isi->vdev->name));
>> + isi->vdev->release = video_device_release;
>> + isi->vdev->ioctl_ops = &isi_ioctl_ops;
>> + isi->vdev->lock = &isi->lock;
>> + isi->vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
>> + V4L2_CAP_READWRITE;
>> + video_set_drvdata(isi->vdev, isi);
>> +
>> + /* buffer queue */
>> + q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
>> + q->io_modes = VB2_MMAP | VB2_READ | VB2_DMABUF;
>> + q->lock = &isi->lock;
>> + q->drv_priv = isi;
>> + q->buf_struct_size = sizeof(struct frame_buffer);
>> + q->ops = &isi_video_qops;
>> + q->mem_ops = &vb2_dma_contig_memops;
>> + q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
>> + q->min_buffers_needed = 2;
>> + q->dev = &pdev->dev;
>> +
>> + ret = vb2_queue_init(q);
>> + if (ret < 0) {
>> + dev_err(&pdev->dev, "failed to initialize VB2 queue\n");
>> + goto err_vb2_queue;
>> + }
>
> Regards,
> Songjun Wu
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html