Merge branch 'acpi-ec'
[linux-drm-fsl-dcu.git] / drivers / media / platform / soc_camera / atmel-isi.c
1 /*
2  * Copyright (c) 2011 Atmel Corporation
3  * Josh Wu, <josh.wu@atmel.com>
4  *
5  * Based on previous work by Lars Haring, <lars.haring@atmel.com>
6  * and Sedji Gaouaou
7  * Based on the bttv driver for Bt848 with respective copyright holders
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #include <linux/clk.h>
15 #include <linux/completion.h>
16 #include <linux/delay.h>
17 #include <linux/fs.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <linux/slab.h>
24
25 #include <media/atmel-isi.h>
26 #include <media/soc_camera.h>
27 #include <media/soc_mediabus.h>
28 #include <media/v4l2-of.h>
29 #include <media/videobuf2-dma-contig.h>
30
31 #define MAX_BUFFER_NUM                  32
32 #define MAX_SUPPORT_WIDTH               2048
33 #define MAX_SUPPORT_HEIGHT              2048
34 #define VID_LIMIT_BYTES                 (16 * 1024 * 1024)
35 #define MIN_FRAME_RATE                  15
36 #define FRAME_INTERVAL_MILLI_SEC        (1000 / MIN_FRAME_RATE)
37 #define ISI_DEFAULT_MCLK_FREQ           25000000
38
39 /* Frame buffer descriptor */
40 struct fbd {
41         /* Physical address of the frame buffer */
42         u32 fb_address;
43         /* DMA Control Register(only in HISI2) */
44         u32 dma_ctrl;
45         /* Physical address of the next fbd */
46         u32 next_fbd_address;
47 };
48
49 static void set_dma_ctrl(struct fbd *fb_desc, u32 ctrl)
50 {
51         fb_desc->dma_ctrl = ctrl;
52 }
53
54 struct isi_dma_desc {
55         struct list_head list;
56         struct fbd *p_fbd;
57         dma_addr_t fbd_phys;
58 };
59
60 /* Frame buffer data */
61 struct frame_buffer {
62         struct vb2_buffer vb;
63         struct isi_dma_desc *p_dma_desc;
64         struct list_head list;
65 };
66
67 struct atmel_isi {
68         /* Protects the access of variables shared with the ISR */
69         spinlock_t                      lock;
70         void __iomem                    *regs;
71
72         int                             sequence;
73
74         struct vb2_alloc_ctx            *alloc_ctx;
75
76         /* Allocate descriptors for dma buffer use */
77         struct fbd                      *p_fb_descriptors;
78         dma_addr_t                      fb_descriptors_phys;
79         struct                          list_head dma_desc_head;
80         struct isi_dma_desc             dma_desc[MAX_BUFFER_NUM];
81
82         struct completion               complete;
83         /* ISI peripherial clock */
84         struct clk                      *pclk;
85         /* ISI_MCK, feed to camera sensor to generate pixel clock */
86         struct clk                      *mck;
87         unsigned int                    irq;
88
89         struct isi_platform_data        pdata;
90         u16                             width_flags;    /* max 12 bits */
91
92         struct list_head                video_buffer_list;
93         struct frame_buffer             *active;
94
95         struct soc_camera_host          soc_host;
96 };
97
98 static void isi_writel(struct atmel_isi *isi, u32 reg, u32 val)
99 {
100         writel(val, isi->regs + reg);
101 }
102 static u32 isi_readl(struct atmel_isi *isi, u32 reg)
103 {
104         return readl(isi->regs + reg);
105 }
106
107 static int configure_geometry(struct atmel_isi *isi, u32 width,
108                         u32 height, u32 code)
109 {
110         u32 cfg2, cr;
111
112         switch (code) {
113         /* YUV, including grey */
114         case MEDIA_BUS_FMT_Y8_1X8:
115                 cr = ISI_CFG2_GRAYSCALE;
116                 break;
117         case MEDIA_BUS_FMT_VYUY8_2X8:
118                 cr = ISI_CFG2_YCC_SWAP_MODE_3;
119                 break;
120         case MEDIA_BUS_FMT_UYVY8_2X8:
121                 cr = ISI_CFG2_YCC_SWAP_MODE_2;
122                 break;
123         case MEDIA_BUS_FMT_YVYU8_2X8:
124                 cr = ISI_CFG2_YCC_SWAP_MODE_1;
125                 break;
126         case MEDIA_BUS_FMT_YUYV8_2X8:
127                 cr = ISI_CFG2_YCC_SWAP_DEFAULT;
128                 break;
129         /* RGB, TODO */
130         default:
131                 return -EINVAL;
132         }
133
134         isi_writel(isi, ISI_CTRL, ISI_CTRL_DIS);
135
136         cfg2 = isi_readl(isi, ISI_CFG2);
137         /* Set YCC swap mode */
138         cfg2 &= ~ISI_CFG2_YCC_SWAP_MODE_MASK;
139         cfg2 |= cr;
140         /* Set width */
141         cfg2 &= ~(ISI_CFG2_IM_HSIZE_MASK);
142         cfg2 |= ((width - 1) << ISI_CFG2_IM_HSIZE_OFFSET) &
143                         ISI_CFG2_IM_HSIZE_MASK;
144         /* Set height */
145         cfg2 &= ~(ISI_CFG2_IM_VSIZE_MASK);
146         cfg2 |= ((height - 1) << ISI_CFG2_IM_VSIZE_OFFSET)
147                         & ISI_CFG2_IM_VSIZE_MASK;
148         isi_writel(isi, ISI_CFG2, cfg2);
149
150         return 0;
151 }
152
153 static irqreturn_t atmel_isi_handle_streaming(struct atmel_isi *isi)
154 {
155         if (isi->active) {
156                 struct vb2_buffer *vb = &isi->active->vb;
157                 struct frame_buffer *buf = isi->active;
158
159                 list_del_init(&buf->list);
160                 v4l2_get_timestamp(&vb->v4l2_buf.timestamp);
161                 vb->v4l2_buf.sequence = isi->sequence++;
162                 vb2_buffer_done(vb, VB2_BUF_STATE_DONE);
163         }
164
165         if (list_empty(&isi->video_buffer_list)) {
166                 isi->active = NULL;
167         } else {
168                 /* start next dma frame. */
169                 isi->active = list_entry(isi->video_buffer_list.next,
170                                         struct frame_buffer, list);
171                 isi_writel(isi, ISI_DMA_C_DSCR,
172                         (u32)isi->active->p_dma_desc->fbd_phys);
173                 isi_writel(isi, ISI_DMA_C_CTRL,
174                         ISI_DMA_CTRL_FETCH | ISI_DMA_CTRL_DONE);
175                 isi_writel(isi, ISI_DMA_CHER, ISI_DMA_CHSR_C_CH);
176         }
177         return IRQ_HANDLED;
178 }
179
180 /* ISI interrupt service routine */
181 static irqreturn_t isi_interrupt(int irq, void *dev_id)
182 {
183         struct atmel_isi *isi = dev_id;
184         u32 status, mask, pending;
185         irqreturn_t ret = IRQ_NONE;
186
187         spin_lock(&isi->lock);
188
189         status = isi_readl(isi, ISI_STATUS);
190         mask = isi_readl(isi, ISI_INTMASK);
191         pending = status & mask;
192
193         if (pending & ISI_CTRL_SRST) {
194                 complete(&isi->complete);
195                 isi_writel(isi, ISI_INTDIS, ISI_CTRL_SRST);
196                 ret = IRQ_HANDLED;
197         } else if (pending & ISI_CTRL_DIS) {
198                 complete(&isi->complete);
199                 isi_writel(isi, ISI_INTDIS, ISI_CTRL_DIS);
200                 ret = IRQ_HANDLED;
201         } else {
202                 if (likely(pending & ISI_SR_CXFR_DONE))
203                         ret = atmel_isi_handle_streaming(isi);
204         }
205
206         spin_unlock(&isi->lock);
207         return ret;
208 }
209
210 #define WAIT_ISI_RESET          1
211 #define WAIT_ISI_DISABLE        0
212 static int atmel_isi_wait_status(struct atmel_isi *isi, int wait_reset)
213 {
214         unsigned long timeout;
215         /*
216          * The reset or disable will only succeed if we have a
217          * pixel clock from the camera.
218          */
219         init_completion(&isi->complete);
220
221         if (wait_reset) {
222                 isi_writel(isi, ISI_INTEN, ISI_CTRL_SRST);
223                 isi_writel(isi, ISI_CTRL, ISI_CTRL_SRST);
224         } else {
225                 isi_writel(isi, ISI_INTEN, ISI_CTRL_DIS);
226                 isi_writel(isi, ISI_CTRL, ISI_CTRL_DIS);
227         }
228
229         timeout = wait_for_completion_timeout(&isi->complete,
230                         msecs_to_jiffies(100));
231         if (timeout == 0)
232                 return -ETIMEDOUT;
233
234         return 0;
235 }
236
237 /* ------------------------------------------------------------------
238         Videobuf operations
239    ------------------------------------------------------------------*/
240 static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
241                                 unsigned int *nbuffers, unsigned int *nplanes,
242                                 unsigned int sizes[], void *alloc_ctxs[])
243 {
244         struct soc_camera_device *icd = soc_camera_from_vb2q(vq);
245         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
246         struct atmel_isi *isi = ici->priv;
247         unsigned long size;
248
249         size = icd->sizeimage;
250
251         if (!*nbuffers || *nbuffers > MAX_BUFFER_NUM)
252                 *nbuffers = MAX_BUFFER_NUM;
253
254         if (size * *nbuffers > VID_LIMIT_BYTES)
255                 *nbuffers = VID_LIMIT_BYTES / size;
256
257         *nplanes = 1;
258         sizes[0] = size;
259         alloc_ctxs[0] = isi->alloc_ctx;
260
261         isi->sequence = 0;
262         isi->active = NULL;
263
264         dev_dbg(icd->parent, "%s, count=%d, size=%ld\n", __func__,
265                 *nbuffers, size);
266
267         return 0;
268 }
269
270 static int buffer_init(struct vb2_buffer *vb)
271 {
272         struct frame_buffer *buf = container_of(vb, struct frame_buffer, vb);
273
274         buf->p_dma_desc = NULL;
275         INIT_LIST_HEAD(&buf->list);
276
277         return 0;
278 }
279
280 static int buffer_prepare(struct vb2_buffer *vb)
281 {
282         struct soc_camera_device *icd = soc_camera_from_vb2q(vb->vb2_queue);
283         struct frame_buffer *buf = container_of(vb, struct frame_buffer, vb);
284         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
285         struct atmel_isi *isi = ici->priv;
286         unsigned long size;
287         struct isi_dma_desc *desc;
288
289         size = icd->sizeimage;
290
291         if (vb2_plane_size(vb, 0) < size) {
292                 dev_err(icd->parent, "%s data will not fit into plane (%lu < %lu)\n",
293                                 __func__, vb2_plane_size(vb, 0), size);
294                 return -EINVAL;
295         }
296
297         vb2_set_plane_payload(&buf->vb, 0, size);
298
299         if (!buf->p_dma_desc) {
300                 if (list_empty(&isi->dma_desc_head)) {
301                         dev_err(icd->parent, "Not enough dma descriptors.\n");
302                         return -EINVAL;
303                 } else {
304                         /* Get an available descriptor */
305                         desc = list_entry(isi->dma_desc_head.next,
306                                                 struct isi_dma_desc, list);
307                         /* Delete the descriptor since now it is used */
308                         list_del_init(&desc->list);
309
310                         /* Initialize the dma descriptor */
311                         desc->p_fbd->fb_address =
312                                         vb2_dma_contig_plane_dma_addr(vb, 0);
313                         desc->p_fbd->next_fbd_address = 0;
314                         set_dma_ctrl(desc->p_fbd, ISI_DMA_CTRL_WB);
315
316                         buf->p_dma_desc = desc;
317                 }
318         }
319         return 0;
320 }
321
322 static void buffer_cleanup(struct vb2_buffer *vb)
323 {
324         struct soc_camera_device *icd = soc_camera_from_vb2q(vb->vb2_queue);
325         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
326         struct atmel_isi *isi = ici->priv;
327         struct frame_buffer *buf = container_of(vb, struct frame_buffer, vb);
328
329         /* This descriptor is available now and we add to head list */
330         if (buf->p_dma_desc)
331                 list_add(&buf->p_dma_desc->list, &isi->dma_desc_head);
332 }
333
334 static void start_dma(struct atmel_isi *isi, struct frame_buffer *buffer)
335 {
336         u32 ctrl, cfg1;
337
338         cfg1 = isi_readl(isi, ISI_CFG1);
339         /* Enable irq: cxfr for the codec path, pxfr for the preview path */
340         isi_writel(isi, ISI_INTEN,
341                         ISI_SR_CXFR_DONE | ISI_SR_PXFR_DONE);
342
343         /* Check if already in a frame */
344         if (isi_readl(isi, ISI_STATUS) & ISI_CTRL_CDC) {
345                 dev_err(isi->soc_host.icd->parent, "Already in frame handling.\n");
346                 return;
347         }
348
349         isi_writel(isi, ISI_DMA_C_DSCR, (u32)buffer->p_dma_desc->fbd_phys);
350         isi_writel(isi, ISI_DMA_C_CTRL, ISI_DMA_CTRL_FETCH | ISI_DMA_CTRL_DONE);
351         isi_writel(isi, ISI_DMA_CHER, ISI_DMA_CHSR_C_CH);
352
353         cfg1 &= ~ISI_CFG1_FRATE_DIV_MASK;
354         /* Enable linked list */
355         cfg1 |= isi->pdata.frate | ISI_CFG1_DISCR;
356
357         /* Enable codec path and ISI */
358         ctrl = ISI_CTRL_CDC | ISI_CTRL_EN;
359         isi_writel(isi, ISI_CTRL, ctrl);
360         isi_writel(isi, ISI_CFG1, cfg1);
361 }
362
363 static void buffer_queue(struct vb2_buffer *vb)
364 {
365         struct soc_camera_device *icd = soc_camera_from_vb2q(vb->vb2_queue);
366         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
367         struct atmel_isi *isi = ici->priv;
368         struct frame_buffer *buf = container_of(vb, struct frame_buffer, vb);
369         unsigned long flags = 0;
370
371         spin_lock_irqsave(&isi->lock, flags);
372         list_add_tail(&buf->list, &isi->video_buffer_list);
373
374         if (isi->active == NULL) {
375                 isi->active = buf;
376                 if (vb2_is_streaming(vb->vb2_queue))
377                         start_dma(isi, buf);
378         }
379         spin_unlock_irqrestore(&isi->lock, flags);
380 }
381
382 static int start_streaming(struct vb2_queue *vq, unsigned int count)
383 {
384         struct soc_camera_device *icd = soc_camera_from_vb2q(vq);
385         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
386         struct atmel_isi *isi = ici->priv;
387         int ret;
388
389         /* Reset ISI */
390         ret = atmel_isi_wait_status(isi, WAIT_ISI_RESET);
391         if (ret < 0) {
392                 dev_err(icd->parent, "Reset ISI timed out\n");
393                 return ret;
394         }
395         /* Disable all interrupts */
396         isi_writel(isi, ISI_INTDIS, (u32)~0UL);
397
398         spin_lock_irq(&isi->lock);
399         /* Clear any pending interrupt */
400         isi_readl(isi, ISI_STATUS);
401
402         if (count)
403                 start_dma(isi, isi->active);
404         spin_unlock_irq(&isi->lock);
405
406         return 0;
407 }
408
409 /* abort streaming and wait for last buffer */
410 static void stop_streaming(struct vb2_queue *vq)
411 {
412         struct soc_camera_device *icd = soc_camera_from_vb2q(vq);
413         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
414         struct atmel_isi *isi = ici->priv;
415         struct frame_buffer *buf, *node;
416         int ret = 0;
417         unsigned long timeout;
418
419         spin_lock_irq(&isi->lock);
420         isi->active = NULL;
421         /* Release all active buffers */
422         list_for_each_entry_safe(buf, node, &isi->video_buffer_list, list) {
423                 list_del_init(&buf->list);
424                 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
425         }
426         spin_unlock_irq(&isi->lock);
427
428         timeout = jiffies + FRAME_INTERVAL_MILLI_SEC * HZ;
429         /* Wait until the end of the current frame. */
430         while ((isi_readl(isi, ISI_STATUS) & ISI_CTRL_CDC) &&
431                         time_before(jiffies, timeout))
432                 msleep(1);
433
434         if (time_after(jiffies, timeout)) {
435                 dev_err(icd->parent,
436                         "Timeout waiting for finishing codec request\n");
437                 return;
438         }
439
440         /* Disable interrupts */
441         isi_writel(isi, ISI_INTDIS,
442                         ISI_SR_CXFR_DONE | ISI_SR_PXFR_DONE);
443
444         /* Disable ISI and wait for it is done */
445         ret = atmel_isi_wait_status(isi, WAIT_ISI_DISABLE);
446         if (ret < 0)
447                 dev_err(icd->parent, "Disable ISI timed out\n");
448 }
449
450 static struct vb2_ops isi_video_qops = {
451         .queue_setup            = queue_setup,
452         .buf_init               = buffer_init,
453         .buf_prepare            = buffer_prepare,
454         .buf_cleanup            = buffer_cleanup,
455         .buf_queue              = buffer_queue,
456         .start_streaming        = start_streaming,
457         .stop_streaming         = stop_streaming,
458         .wait_prepare           = soc_camera_unlock,
459         .wait_finish            = soc_camera_lock,
460 };
461
462 /* ------------------------------------------------------------------
463         SOC camera operations for the device
464    ------------------------------------------------------------------*/
465 static int isi_camera_init_videobuf(struct vb2_queue *q,
466                                      struct soc_camera_device *icd)
467 {
468         q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
469         q->io_modes = VB2_MMAP;
470         q->drv_priv = icd;
471         q->buf_struct_size = sizeof(struct frame_buffer);
472         q->ops = &isi_video_qops;
473         q->mem_ops = &vb2_dma_contig_memops;
474         q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
475
476         return vb2_queue_init(q);
477 }
478
479 static int isi_camera_set_fmt(struct soc_camera_device *icd,
480                               struct v4l2_format *f)
481 {
482         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
483         struct atmel_isi *isi = ici->priv;
484         struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
485         const struct soc_camera_format_xlate *xlate;
486         struct v4l2_pix_format *pix = &f->fmt.pix;
487         struct v4l2_mbus_framefmt mf;
488         int ret;
489
490         xlate = soc_camera_xlate_by_fourcc(icd, pix->pixelformat);
491         if (!xlate) {
492                 dev_warn(icd->parent, "Format %x not found\n",
493                          pix->pixelformat);
494                 return -EINVAL;
495         }
496
497         dev_dbg(icd->parent, "Plan to set format %dx%d\n",
498                         pix->width, pix->height);
499
500         mf.width        = pix->width;
501         mf.height       = pix->height;
502         mf.field        = pix->field;
503         mf.colorspace   = pix->colorspace;
504         mf.code         = xlate->code;
505
506         ret = v4l2_subdev_call(sd, video, s_mbus_fmt, &mf);
507         if (ret < 0)
508                 return ret;
509
510         if (mf.code != xlate->code)
511                 return -EINVAL;
512
513         ret = configure_geometry(isi, pix->width, pix->height, xlate->code);
514         if (ret < 0)
515                 return ret;
516
517         pix->width              = mf.width;
518         pix->height             = mf.height;
519         pix->field              = mf.field;
520         pix->colorspace         = mf.colorspace;
521         icd->current_fmt        = xlate;
522
523         dev_dbg(icd->parent, "Finally set format %dx%d\n",
524                 pix->width, pix->height);
525
526         return ret;
527 }
528
529 static int isi_camera_try_fmt(struct soc_camera_device *icd,
530                               struct v4l2_format *f)
531 {
532         struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
533         const struct soc_camera_format_xlate *xlate;
534         struct v4l2_pix_format *pix = &f->fmt.pix;
535         struct v4l2_mbus_framefmt mf;
536         u32 pixfmt = pix->pixelformat;
537         int ret;
538
539         xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
540         if (pixfmt && !xlate) {
541                 dev_warn(icd->parent, "Format %x not found\n", pixfmt);
542                 return -EINVAL;
543         }
544
545         /* limit to Atmel ISI hardware capabilities */
546         if (pix->height > MAX_SUPPORT_HEIGHT)
547                 pix->height = MAX_SUPPORT_HEIGHT;
548         if (pix->width > MAX_SUPPORT_WIDTH)
549                 pix->width = MAX_SUPPORT_WIDTH;
550
551         /* limit to sensor capabilities */
552         mf.width        = pix->width;
553         mf.height       = pix->height;
554         mf.field        = pix->field;
555         mf.colorspace   = pix->colorspace;
556         mf.code         = xlate->code;
557
558         ret = v4l2_subdev_call(sd, video, try_mbus_fmt, &mf);
559         if (ret < 0)
560                 return ret;
561
562         pix->width      = mf.width;
563         pix->height     = mf.height;
564         pix->colorspace = mf.colorspace;
565
566         switch (mf.field) {
567         case V4L2_FIELD_ANY:
568                 pix->field = V4L2_FIELD_NONE;
569                 break;
570         case V4L2_FIELD_NONE:
571                 break;
572         default:
573                 dev_err(icd->parent, "Field type %d unsupported.\n",
574                         mf.field);
575                 ret = -EINVAL;
576         }
577
578         return ret;
579 }
580
581 static const struct soc_mbus_pixelfmt isi_camera_formats[] = {
582         {
583                 .fourcc                 = V4L2_PIX_FMT_YUYV,
584                 .name                   = "Packed YUV422 16 bit",
585                 .bits_per_sample        = 8,
586                 .packing                = SOC_MBUS_PACKING_2X8_PADHI,
587                 .order                  = SOC_MBUS_ORDER_LE,
588                 .layout                 = SOC_MBUS_LAYOUT_PACKED,
589         },
590 };
591
592 /* This will be corrected as we get more formats */
593 static bool isi_camera_packing_supported(const struct soc_mbus_pixelfmt *fmt)
594 {
595         return  fmt->packing == SOC_MBUS_PACKING_NONE ||
596                 (fmt->bits_per_sample == 8 &&
597                  fmt->packing == SOC_MBUS_PACKING_2X8_PADHI) ||
598                 (fmt->bits_per_sample > 8 &&
599                  fmt->packing == SOC_MBUS_PACKING_EXTEND16);
600 }
601
602 #define ISI_BUS_PARAM (V4L2_MBUS_MASTER |       \
603                 V4L2_MBUS_HSYNC_ACTIVE_HIGH |   \
604                 V4L2_MBUS_HSYNC_ACTIVE_LOW |    \
605                 V4L2_MBUS_VSYNC_ACTIVE_HIGH |   \
606                 V4L2_MBUS_VSYNC_ACTIVE_LOW |    \
607                 V4L2_MBUS_PCLK_SAMPLE_RISING |  \
608                 V4L2_MBUS_PCLK_SAMPLE_FALLING | \
609                 V4L2_MBUS_DATA_ACTIVE_HIGH)
610
611 static int isi_camera_try_bus_param(struct soc_camera_device *icd,
612                                     unsigned char buswidth)
613 {
614         struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
615         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
616         struct atmel_isi *isi = ici->priv;
617         struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
618         unsigned long common_flags;
619         int ret;
620
621         ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
622         if (!ret) {
623                 common_flags = soc_mbus_config_compatible(&cfg,
624                                                           ISI_BUS_PARAM);
625                 if (!common_flags) {
626                         dev_warn(icd->parent,
627                                  "Flags incompatible: camera 0x%x, host 0x%x\n",
628                                  cfg.flags, ISI_BUS_PARAM);
629                         return -EINVAL;
630                 }
631         } else if (ret != -ENOIOCTLCMD) {
632                 return ret;
633         }
634
635         if ((1 << (buswidth - 1)) & isi->width_flags)
636                 return 0;
637         return -EINVAL;
638 }
639
640
641 static int isi_camera_get_formats(struct soc_camera_device *icd,
642                                   unsigned int idx,
643                                   struct soc_camera_format_xlate *xlate)
644 {
645         struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
646         int formats = 0, ret;
647         /* sensor format */
648         u32 code;
649         /* soc camera host format */
650         const struct soc_mbus_pixelfmt *fmt;
651
652         ret = v4l2_subdev_call(sd, video, enum_mbus_fmt, idx, &code);
653         if (ret < 0)
654                 /* No more formats */
655                 return 0;
656
657         fmt = soc_mbus_get_fmtdesc(code);
658         if (!fmt) {
659                 dev_err(icd->parent,
660                         "Invalid format code #%u: %d\n", idx, code);
661                 return 0;
662         }
663
664         /* This also checks support for the requested bits-per-sample */
665         ret = isi_camera_try_bus_param(icd, fmt->bits_per_sample);
666         if (ret < 0) {
667                 dev_err(icd->parent,
668                         "Fail to try the bus parameters.\n");
669                 return 0;
670         }
671
672         switch (code) {
673         case MEDIA_BUS_FMT_UYVY8_2X8:
674         case MEDIA_BUS_FMT_VYUY8_2X8:
675         case MEDIA_BUS_FMT_YUYV8_2X8:
676         case MEDIA_BUS_FMT_YVYU8_2X8:
677                 formats++;
678                 if (xlate) {
679                         xlate->host_fmt = &isi_camera_formats[0];
680                         xlate->code     = code;
681                         xlate++;
682                         dev_dbg(icd->parent, "Providing format %s using code %d\n",
683                                 isi_camera_formats[0].name, code);
684                 }
685                 break;
686         default:
687                 if (!isi_camera_packing_supported(fmt))
688                         return 0;
689                 if (xlate)
690                         dev_dbg(icd->parent,
691                                 "Providing format %s in pass-through mode\n",
692                                 fmt->name);
693         }
694
695         /* Generic pass-through */
696         formats++;
697         if (xlate) {
698                 xlate->host_fmt = fmt;
699                 xlate->code     = code;
700                 xlate++;
701         }
702
703         return formats;
704 }
705
706 static int isi_camera_add_device(struct soc_camera_device *icd)
707 {
708         dev_dbg(icd->parent, "Atmel ISI Camera driver attached to camera %d\n",
709                  icd->devnum);
710
711         return 0;
712 }
713
714 static void isi_camera_remove_device(struct soc_camera_device *icd)
715 {
716         dev_dbg(icd->parent, "Atmel ISI Camera driver detached from camera %d\n",
717                  icd->devnum);
718 }
719
720 /* Called with .host_lock held */
721 static int isi_camera_clock_start(struct soc_camera_host *ici)
722 {
723         struct atmel_isi *isi = ici->priv;
724         int ret;
725
726         ret = clk_prepare_enable(isi->pclk);
727         if (ret)
728                 return ret;
729
730         if (!IS_ERR(isi->mck)) {
731                 ret = clk_prepare_enable(isi->mck);
732                 if (ret) {
733                         clk_disable_unprepare(isi->pclk);
734                         return ret;
735                 }
736         }
737
738         return 0;
739 }
740
741 /* Called with .host_lock held */
742 static void isi_camera_clock_stop(struct soc_camera_host *ici)
743 {
744         struct atmel_isi *isi = ici->priv;
745
746         if (!IS_ERR(isi->mck))
747                 clk_disable_unprepare(isi->mck);
748         clk_disable_unprepare(isi->pclk);
749 }
750
751 static unsigned int isi_camera_poll(struct file *file, poll_table *pt)
752 {
753         struct soc_camera_device *icd = file->private_data;
754
755         return vb2_poll(&icd->vb2_vidq, file, pt);
756 }
757
758 static int isi_camera_querycap(struct soc_camera_host *ici,
759                                struct v4l2_capability *cap)
760 {
761         strcpy(cap->driver, "atmel-isi");
762         strcpy(cap->card, "Atmel Image Sensor Interface");
763         cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
764         cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
765
766         return 0;
767 }
768
769 static int isi_camera_set_bus_param(struct soc_camera_device *icd)
770 {
771         struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
772         struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
773         struct atmel_isi *isi = ici->priv;
774         struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
775         unsigned long common_flags;
776         int ret;
777         u32 cfg1 = 0;
778
779         ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
780         if (!ret) {
781                 common_flags = soc_mbus_config_compatible(&cfg,
782                                                           ISI_BUS_PARAM);
783                 if (!common_flags) {
784                         dev_warn(icd->parent,
785                                  "Flags incompatible: camera 0x%x, host 0x%x\n",
786                                  cfg.flags, ISI_BUS_PARAM);
787                         return -EINVAL;
788                 }
789         } else if (ret != -ENOIOCTLCMD) {
790                 return ret;
791         } else {
792                 common_flags = ISI_BUS_PARAM;
793         }
794         dev_dbg(icd->parent, "Flags cam: 0x%x host: 0x%x common: 0x%lx\n",
795                 cfg.flags, ISI_BUS_PARAM, common_flags);
796
797         /* Make choises, based on platform preferences */
798         if ((common_flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) &&
799             (common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)) {
800                 if (isi->pdata.hsync_act_low)
801                         common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_HIGH;
802                 else
803                         common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_LOW;
804         }
805
806         if ((common_flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) &&
807             (common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)) {
808                 if (isi->pdata.vsync_act_low)
809                         common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_HIGH;
810                 else
811                         common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_LOW;
812         }
813
814         if ((common_flags & V4L2_MBUS_PCLK_SAMPLE_RISING) &&
815             (common_flags & V4L2_MBUS_PCLK_SAMPLE_FALLING)) {
816                 if (isi->pdata.pclk_act_falling)
817                         common_flags &= ~V4L2_MBUS_PCLK_SAMPLE_RISING;
818                 else
819                         common_flags &= ~V4L2_MBUS_PCLK_SAMPLE_FALLING;
820         }
821
822         cfg.flags = common_flags;
823         ret = v4l2_subdev_call(sd, video, s_mbus_config, &cfg);
824         if (ret < 0 && ret != -ENOIOCTLCMD) {
825                 dev_dbg(icd->parent, "camera s_mbus_config(0x%lx) returned %d\n",
826                         common_flags, ret);
827                 return ret;
828         }
829
830         /* set bus param for ISI */
831         if (common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)
832                 cfg1 |= ISI_CFG1_HSYNC_POL_ACTIVE_LOW;
833         if (common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)
834                 cfg1 |= ISI_CFG1_VSYNC_POL_ACTIVE_LOW;
835         if (common_flags & V4L2_MBUS_PCLK_SAMPLE_FALLING)
836                 cfg1 |= ISI_CFG1_PIXCLK_POL_ACTIVE_FALLING;
837
838         if (isi->pdata.has_emb_sync)
839                 cfg1 |= ISI_CFG1_EMB_SYNC;
840         if (isi->pdata.full_mode)
841                 cfg1 |= ISI_CFG1_FULL_MODE;
842
843         isi_writel(isi, ISI_CTRL, ISI_CTRL_DIS);
844         isi_writel(isi, ISI_CFG1, cfg1);
845
846         return 0;
847 }
848
849 static struct soc_camera_host_ops isi_soc_camera_host_ops = {
850         .owner          = THIS_MODULE,
851         .add            = isi_camera_add_device,
852         .remove         = isi_camera_remove_device,
853         .clock_start    = isi_camera_clock_start,
854         .clock_stop     = isi_camera_clock_stop,
855         .set_fmt        = isi_camera_set_fmt,
856         .try_fmt        = isi_camera_try_fmt,
857         .get_formats    = isi_camera_get_formats,
858         .init_videobuf2 = isi_camera_init_videobuf,
859         .poll           = isi_camera_poll,
860         .querycap       = isi_camera_querycap,
861         .set_bus_param  = isi_camera_set_bus_param,
862 };
863
864 /* -----------------------------------------------------------------------*/
865 static int atmel_isi_remove(struct platform_device *pdev)
866 {
867         struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
868         struct atmel_isi *isi = container_of(soc_host,
869                                         struct atmel_isi, soc_host);
870
871         soc_camera_host_unregister(soc_host);
872         vb2_dma_contig_cleanup_ctx(isi->alloc_ctx);
873         dma_free_coherent(&pdev->dev,
874                         sizeof(struct fbd) * MAX_BUFFER_NUM,
875                         isi->p_fb_descriptors,
876                         isi->fb_descriptors_phys);
877
878         return 0;
879 }
880
881 static int atmel_isi_probe_dt(struct atmel_isi *isi,
882                         struct platform_device *pdev)
883 {
884         struct device_node *np= pdev->dev.of_node;
885         struct v4l2_of_endpoint ep;
886         int err;
887
888         /* Default settings for ISI */
889         isi->pdata.full_mode = 1;
890         isi->pdata.mck_hz = ISI_DEFAULT_MCLK_FREQ;
891         isi->pdata.frate = ISI_CFG1_FRATE_CAPTURE_ALL;
892
893         np = of_graph_get_next_endpoint(np, NULL);
894         if (!np) {
895                 dev_err(&pdev->dev, "Could not find the endpoint\n");
896                 return -EINVAL;
897         }
898
899         err = v4l2_of_parse_endpoint(np, &ep);
900         if (err) {
901                 dev_err(&pdev->dev, "Could not parse the endpoint\n");
902                 goto err_probe_dt;
903         }
904
905         switch (ep.bus.parallel.bus_width) {
906         case 8:
907                 isi->pdata.data_width_flags = ISI_DATAWIDTH_8;
908                 break;
909         case 10:
910                 isi->pdata.data_width_flags =
911                                 ISI_DATAWIDTH_8 | ISI_DATAWIDTH_10;
912                 break;
913         default:
914                 dev_err(&pdev->dev, "Unsupported bus width: %d\n",
915                                 ep.bus.parallel.bus_width);
916                 err = -EINVAL;
917                 goto err_probe_dt;
918         }
919
920 err_probe_dt:
921         of_node_put(np);
922
923         return err;
924 }
925
926 static int atmel_isi_probe(struct platform_device *pdev)
927 {
928         unsigned int irq;
929         struct atmel_isi *isi;
930         struct resource *regs;
931         int ret, i;
932         struct device *dev = &pdev->dev;
933         struct soc_camera_host *soc_host;
934         struct isi_platform_data *pdata;
935
936         pdata = dev->platform_data;
937         if ((!pdata || !pdata->data_width_flags) && !pdev->dev.of_node) {
938                 dev_err(&pdev->dev,
939                         "No config available for Atmel ISI\n");
940                 return -EINVAL;
941         }
942
943         isi = devm_kzalloc(&pdev->dev, sizeof(struct atmel_isi), GFP_KERNEL);
944         if (!isi) {
945                 dev_err(&pdev->dev, "Can't allocate interface!\n");
946                 return -ENOMEM;
947         }
948
949         isi->pclk = devm_clk_get(&pdev->dev, "isi_clk");
950         if (IS_ERR(isi->pclk))
951                 return PTR_ERR(isi->pclk);
952
953         if (pdata) {
954                 memcpy(&isi->pdata, pdata, sizeof(isi->pdata));
955         } else {
956                 ret = atmel_isi_probe_dt(isi, pdev);
957                 if (ret)
958                         return ret;
959         }
960
961         isi->active = NULL;
962         spin_lock_init(&isi->lock);
963         INIT_LIST_HEAD(&isi->video_buffer_list);
964         INIT_LIST_HEAD(&isi->dma_desc_head);
965
966         /* ISI_MCK is the sensor master clock. It should be handled by the
967          * sensor driver directly, as the ISI has no use for that clock. Make
968          * the clock optional here while platforms transition to the correct
969          * model.
970          */
971         isi->mck = devm_clk_get(dev, "isi_mck");
972         if (!IS_ERR(isi->mck)) {
973                 /* Set ISI_MCK's frequency, it should be faster than pixel
974                  * clock.
975                  */
976                 ret = clk_set_rate(isi->mck, isi->pdata.mck_hz);
977                 if (ret < 0)
978                         return ret;
979         }
980
981         isi->p_fb_descriptors = dma_alloc_coherent(&pdev->dev,
982                                 sizeof(struct fbd) * MAX_BUFFER_NUM,
983                                 &isi->fb_descriptors_phys,
984                                 GFP_KERNEL);
985         if (!isi->p_fb_descriptors) {
986                 dev_err(&pdev->dev, "Can't allocate descriptors!\n");
987                 return -ENOMEM;
988         }
989
990         for (i = 0; i < MAX_BUFFER_NUM; i++) {
991                 isi->dma_desc[i].p_fbd = isi->p_fb_descriptors + i;
992                 isi->dma_desc[i].fbd_phys = isi->fb_descriptors_phys +
993                                         i * sizeof(struct fbd);
994                 list_add(&isi->dma_desc[i].list, &isi->dma_desc_head);
995         }
996
997         isi->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
998         if (IS_ERR(isi->alloc_ctx)) {
999                 ret = PTR_ERR(isi->alloc_ctx);
1000                 goto err_alloc_ctx;
1001         }
1002
1003         regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1004         isi->regs = devm_ioremap_resource(&pdev->dev, regs);
1005         if (IS_ERR(isi->regs)) {
1006                 ret = PTR_ERR(isi->regs);
1007                 goto err_ioremap;
1008         }
1009
1010         if (isi->pdata.data_width_flags & ISI_DATAWIDTH_8)
1011                 isi->width_flags = 1 << 7;
1012         if (isi->pdata.data_width_flags & ISI_DATAWIDTH_10)
1013                 isi->width_flags |= 1 << 9;
1014
1015         isi_writel(isi, ISI_CTRL, ISI_CTRL_DIS);
1016
1017         irq = platform_get_irq(pdev, 0);
1018         if (IS_ERR_VALUE(irq)) {
1019                 ret = irq;
1020                 goto err_req_irq;
1021         }
1022
1023         ret = devm_request_irq(&pdev->dev, irq, isi_interrupt, 0, "isi", isi);
1024         if (ret) {
1025                 dev_err(&pdev->dev, "Unable to request irq %d\n", irq);
1026                 goto err_req_irq;
1027         }
1028         isi->irq = irq;
1029
1030         soc_host                = &isi->soc_host;
1031         soc_host->drv_name      = "isi-camera";
1032         soc_host->ops           = &isi_soc_camera_host_ops;
1033         soc_host->priv          = isi;
1034         soc_host->v4l2_dev.dev  = &pdev->dev;
1035         soc_host->nr            = pdev->id;
1036
1037         if (isi->pdata.asd_sizes) {
1038                 soc_host->asd = isi->pdata.asd;
1039                 soc_host->asd_sizes = isi->pdata.asd_sizes;
1040         }
1041
1042         ret = soc_camera_host_register(soc_host);
1043         if (ret) {
1044                 dev_err(&pdev->dev, "Unable to register soc camera host\n");
1045                 goto err_register_soc_camera_host;
1046         }
1047         return 0;
1048
1049 err_register_soc_camera_host:
1050 err_req_irq:
1051 err_ioremap:
1052         vb2_dma_contig_cleanup_ctx(isi->alloc_ctx);
1053 err_alloc_ctx:
1054         dma_free_coherent(&pdev->dev,
1055                         sizeof(struct fbd) * MAX_BUFFER_NUM,
1056                         isi->p_fb_descriptors,
1057                         isi->fb_descriptors_phys);
1058
1059         return ret;
1060 }
1061
1062 static const struct of_device_id atmel_isi_of_match[] = {
1063         { .compatible = "atmel,at91sam9g45-isi" },
1064         { }
1065 };
1066 MODULE_DEVICE_TABLE(of, atmel_isi_of_match);
1067
1068 static struct platform_driver atmel_isi_driver = {
1069         .remove         = atmel_isi_remove,
1070         .driver         = {
1071                 .name = "atmel_isi",
1072                 .of_match_table = of_match_ptr(atmel_isi_of_match),
1073         },
1074 };
1075
1076 module_platform_driver_probe(atmel_isi_driver, atmel_isi_probe);
1077
1078 MODULE_AUTHOR("Josh Wu <josh.wu@atmel.com>");
1079 MODULE_DESCRIPTION("The V4L2 driver for Atmel Linux");
1080 MODULE_LICENSE("GPL");
1081 MODULE_SUPPORTED_DEVICE("video");