GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / media / video / pxa_camera.c
blob941cd631295ee279e9899f63289c093e6faf0aea
1 /*
2 * V4L2 Driver for PXA camera host
4 * Copyright (C) 2006, Sascha Hauer, Pengutronix
5 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/io.h>
16 #include <linux/delay.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/errno.h>
19 #include <linux/fs.h>
20 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/mm.h>
23 #include <linux/moduleparam.h>
24 #include <linux/time.h>
25 #include <linux/version.h>
26 #include <linux/device.h>
27 #include <linux/platform_device.h>
28 #include <linux/clk.h>
29 #include <linux/sched.h>
30 #include <linux/slab.h>
32 #include <media/v4l2-common.h>
33 #include <media/v4l2-dev.h>
34 #include <media/videobuf-dma-sg.h>
35 #include <media/soc_camera.h>
36 #include <media/soc_mediabus.h>
38 #include <linux/videodev2.h>
40 #include <mach/dma.h>
41 #include <mach/camera.h>
43 #define PXA_CAM_VERSION_CODE KERNEL_VERSION(0, 0, 5)
44 #define PXA_CAM_DRV_NAME "pxa27x-camera"
46 /* Camera Interface */
47 #define CICR0 0x0000
48 #define CICR1 0x0004
49 #define CICR2 0x0008
50 #define CICR3 0x000C
51 #define CICR4 0x0010
52 #define CISR 0x0014
53 #define CIFR 0x0018
54 #define CITOR 0x001C
55 #define CIBR0 0x0028
56 #define CIBR1 0x0030
57 #define CIBR2 0x0038
59 #define CICR0_DMAEN (1 << 31) /* DMA request enable */
60 #define CICR0_PAR_EN (1 << 30) /* Parity enable */
61 #define CICR0_SL_CAP_EN (1 << 29) /* Capture enable for slave mode */
62 #define CICR0_ENB (1 << 28) /* Camera interface enable */
63 #define CICR0_DIS (1 << 27) /* Camera interface disable */
64 #define CICR0_SIM (0x7 << 24) /* Sensor interface mode mask */
65 #define CICR0_TOM (1 << 9) /* Time-out mask */
66 #define CICR0_RDAVM (1 << 8) /* Receive-data-available mask */
67 #define CICR0_FEM (1 << 7) /* FIFO-empty mask */
68 #define CICR0_EOLM (1 << 6) /* End-of-line mask */
69 #define CICR0_PERRM (1 << 5) /* Parity-error mask */
70 #define CICR0_QDM (1 << 4) /* Quick-disable mask */
71 #define CICR0_CDM (1 << 3) /* Disable-done mask */
72 #define CICR0_SOFM (1 << 2) /* Start-of-frame mask */
73 #define CICR0_EOFM (1 << 1) /* End-of-frame mask */
74 #define CICR0_FOM (1 << 0) /* FIFO-overrun mask */
76 #define CICR1_TBIT (1 << 31) /* Transparency bit */
77 #define CICR1_RGBT_CONV (0x3 << 29) /* RGBT conversion mask */
78 #define CICR1_PPL (0x7ff << 15) /* Pixels per line mask */
79 #define CICR1_RGB_CONV (0x7 << 12) /* RGB conversion mask */
80 #define CICR1_RGB_F (1 << 11) /* RGB format */
81 #define CICR1_YCBCR_F (1 << 10) /* YCbCr format */
82 #define CICR1_RGB_BPP (0x7 << 7) /* RGB bis per pixel mask */
83 #define CICR1_RAW_BPP (0x3 << 5) /* Raw bis per pixel mask */
84 #define CICR1_COLOR_SP (0x3 << 3) /* Color space mask */
85 #define CICR1_DW (0x7 << 0) /* Data width mask */
87 #define CICR2_BLW (0xff << 24) /* Beginning-of-line pixel clock
88 wait count mask */
89 #define CICR2_ELW (0xff << 16) /* End-of-line pixel clock
90 wait count mask */
91 #define CICR2_HSW (0x3f << 10) /* Horizontal sync pulse width mask */
92 #define CICR2_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
93 wait count mask */
94 #define CICR2_FSW (0x7 << 0) /* Frame stabilization
95 wait count mask */
97 #define CICR3_BFW (0xff << 24) /* Beginning-of-frame line clock
98 wait count mask */
99 #define CICR3_EFW (0xff << 16) /* End-of-frame line clock
100 wait count mask */
101 #define CICR3_VSW (0x3f << 10) /* Vertical sync pulse width mask */
102 #define CICR3_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
103 wait count mask */
104 #define CICR3_LPF (0x7ff << 0) /* Lines per frame mask */
106 #define CICR4_MCLK_DLY (0x3 << 24) /* MCLK Data Capture Delay mask */
107 #define CICR4_PCLK_EN (1 << 23) /* Pixel clock enable */
108 #define CICR4_PCP (1 << 22) /* Pixel clock polarity */
109 #define CICR4_HSP (1 << 21) /* Horizontal sync polarity */
110 #define CICR4_VSP (1 << 20) /* Vertical sync polarity */
111 #define CICR4_MCLK_EN (1 << 19) /* MCLK enable */
112 #define CICR4_FR_RATE (0x7 << 8) /* Frame rate mask */
113 #define CICR4_DIV (0xff << 0) /* Clock divisor mask */
115 #define CISR_FTO (1 << 15) /* FIFO time-out */
116 #define CISR_RDAV_2 (1 << 14) /* Channel 2 receive data available */
117 #define CISR_RDAV_1 (1 << 13) /* Channel 1 receive data available */
118 #define CISR_RDAV_0 (1 << 12) /* Channel 0 receive data available */
119 #define CISR_FEMPTY_2 (1 << 11) /* Channel 2 FIFO empty */
120 #define CISR_FEMPTY_1 (1 << 10) /* Channel 1 FIFO empty */
121 #define CISR_FEMPTY_0 (1 << 9) /* Channel 0 FIFO empty */
122 #define CISR_EOL (1 << 8) /* End of line */
123 #define CISR_PAR_ERR (1 << 7) /* Parity error */
124 #define CISR_CQD (1 << 6) /* Camera interface quick disable */
125 #define CISR_CDD (1 << 5) /* Camera interface disable done */
126 #define CISR_SOF (1 << 4) /* Start of frame */
127 #define CISR_EOF (1 << 3) /* End of frame */
128 #define CISR_IFO_2 (1 << 2) /* FIFO overrun for Channel 2 */
129 #define CISR_IFO_1 (1 << 1) /* FIFO overrun for Channel 1 */
130 #define CISR_IFO_0 (1 << 0) /* FIFO overrun for Channel 0 */
132 #define CIFR_FLVL2 (0x7f << 23) /* FIFO 2 level mask */
133 #define CIFR_FLVL1 (0x7f << 16) /* FIFO 1 level mask */
134 #define CIFR_FLVL0 (0xff << 8) /* FIFO 0 level mask */
135 #define CIFR_THL_0 (0x3 << 4) /* Threshold Level for Channel 0 FIFO */
136 #define CIFR_RESET_F (1 << 3) /* Reset input FIFOs */
137 #define CIFR_FEN2 (1 << 2) /* FIFO enable for channel 2 */
138 #define CIFR_FEN1 (1 << 1) /* FIFO enable for channel 1 */
139 #define CIFR_FEN0 (1 << 0) /* FIFO enable for channel 0 */
141 #define CICR0_SIM_MP (0 << 24)
142 #define CICR0_SIM_SP (1 << 24)
143 #define CICR0_SIM_MS (2 << 24)
144 #define CICR0_SIM_EP (3 << 24)
145 #define CICR0_SIM_ES (4 << 24)
147 #define CICR1_DW_VAL(x) ((x) & CICR1_DW) /* Data bus width */
148 #define CICR1_PPL_VAL(x) (((x) << 15) & CICR1_PPL) /* Pixels per line */
149 #define CICR1_COLOR_SP_VAL(x) (((x) << 3) & CICR1_COLOR_SP) /* color space */
150 #define CICR1_RGB_BPP_VAL(x) (((x) << 7) & CICR1_RGB_BPP) /* bpp for rgb */
151 #define CICR1_RGBT_CONV_VAL(x) (((x) << 29) & CICR1_RGBT_CONV) /* rgbt conv */
153 #define CICR2_BLW_VAL(x) (((x) << 24) & CICR2_BLW) /* Beginning-of-line pixel clock wait count */
154 #define CICR2_ELW_VAL(x) (((x) << 16) & CICR2_ELW) /* End-of-line pixel clock wait count */
155 #define CICR2_HSW_VAL(x) (((x) << 10) & CICR2_HSW) /* Horizontal sync pulse width */
156 #define CICR2_BFPW_VAL(x) (((x) << 3) & CICR2_BFPW) /* Beginning-of-frame pixel clock wait count */
157 #define CICR2_FSW_VAL(x) (((x) << 0) & CICR2_FSW) /* Frame stabilization wait count */
159 #define CICR3_BFW_VAL(x) (((x) << 24) & CICR3_BFW) /* Beginning-of-frame line clock wait count */
160 #define CICR3_EFW_VAL(x) (((x) << 16) & CICR3_EFW) /* End-of-frame line clock wait count */
161 #define CICR3_VSW_VAL(x) (((x) << 11) & CICR3_VSW) /* Vertical sync pulse width */
162 #define CICR3_LPF_VAL(x) (((x) << 0) & CICR3_LPF) /* Lines per frame */
164 #define CICR0_IRQ_MASK (CICR0_TOM | CICR0_RDAVM | CICR0_FEM | CICR0_EOLM | \
165 CICR0_PERRM | CICR0_QDM | CICR0_CDM | CICR0_SOFM | \
166 CICR0_EOFM | CICR0_FOM)
169 * Structures
171 enum pxa_camera_active_dma {
172 DMA_Y = 0x1,
173 DMA_U = 0x2,
174 DMA_V = 0x4,
177 /* descriptor needed for the PXA DMA engine */
178 struct pxa_cam_dma {
179 dma_addr_t sg_dma;
180 struct pxa_dma_desc *sg_cpu;
181 size_t sg_size;
182 int sglen;
185 /* buffer for one video frame */
186 struct pxa_buffer {
187 /* common v4l buffer stuff -- must be first */
188 struct videobuf_buffer vb;
189 enum v4l2_mbus_pixelcode code;
190 /* our descriptor lists for Y, U and V channels */
191 struct pxa_cam_dma dmas[3];
192 int inwork;
193 enum pxa_camera_active_dma active_dma;
196 struct pxa_camera_dev {
197 struct soc_camera_host soc_host;
199 * PXA27x is only supposed to handle one camera on its Quick Capture
200 * interface. If anyone ever builds hardware to enable more than
201 * one camera, they will have to modify this driver too
203 struct soc_camera_device *icd;
204 struct clk *clk;
206 unsigned int irq;
207 void __iomem *base;
209 int channels;
210 unsigned int dma_chans[3];
212 struct pxacamera_platform_data *pdata;
213 struct resource *res;
214 unsigned long platform_flags;
215 unsigned long ciclk;
216 unsigned long mclk;
217 u32 mclk_divisor;
219 struct list_head capture;
221 spinlock_t lock;
223 struct pxa_buffer *active;
224 struct pxa_dma_desc *sg_tail[3];
226 u32 save_cicr[5];
229 struct pxa_cam {
230 unsigned long flags;
233 static const char *pxa_cam_driver_description = "PXA_Camera";
235 static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
238 * Videobuf operations
240 static int pxa_videobuf_setup(struct videobuf_queue *vq, unsigned int *count,
241 unsigned int *size)
243 struct soc_camera_device *icd = vq->priv_data;
244 int bytes_per_line = soc_mbus_bytes_per_line(icd->user_width,
245 icd->current_fmt->host_fmt);
247 if (bytes_per_line < 0)
248 return bytes_per_line;
250 dev_dbg(icd->dev.parent, "count=%d, size=%d\n", *count, *size);
252 *size = bytes_per_line * icd->user_height;
254 if (0 == *count)
255 *count = 32;
256 if (*size * *count > vid_limit * 1024 * 1024)
257 *count = (vid_limit * 1024 * 1024) / *size;
259 return 0;
262 static void free_buffer(struct videobuf_queue *vq, struct pxa_buffer *buf)
264 struct soc_camera_device *icd = vq->priv_data;
265 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
266 struct videobuf_dmabuf *dma = videobuf_to_dma(&buf->vb);
267 int i;
269 BUG_ON(in_interrupt());
271 dev_dbg(icd->dev.parent, "%s (vb=0x%p) 0x%08lx %d\n", __func__,
272 &buf->vb, buf->vb.baddr, buf->vb.bsize);
275 * This waits until this buffer is out of danger, i.e., until it is no
276 * longer in STATE_QUEUED or STATE_ACTIVE
278 videobuf_waiton(&buf->vb, 0, 0);
279 videobuf_dma_unmap(vq->dev, dma);
280 videobuf_dma_free(dma);
282 for (i = 0; i < ARRAY_SIZE(buf->dmas); i++) {
283 if (buf->dmas[i].sg_cpu)
284 dma_free_coherent(ici->v4l2_dev.dev,
285 buf->dmas[i].sg_size,
286 buf->dmas[i].sg_cpu,
287 buf->dmas[i].sg_dma);
288 buf->dmas[i].sg_cpu = NULL;
291 buf->vb.state = VIDEOBUF_NEEDS_INIT;
294 static int calculate_dma_sglen(struct scatterlist *sglist, int sglen,
295 int sg_first_ofs, int size)
297 int i, offset, dma_len, xfer_len;
298 struct scatterlist *sg;
300 offset = sg_first_ofs;
301 for_each_sg(sglist, sg, sglen, i) {
302 dma_len = sg_dma_len(sg);
304 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
305 xfer_len = roundup(min(dma_len - offset, size), 8);
307 size = max(0, size - xfer_len);
308 offset = 0;
309 if (size == 0)
310 break;
313 BUG_ON(size != 0);
314 return i + 1;
318 * pxa_init_dma_channel - init dma descriptors
319 * @pcdev: pxa camera device
320 * @buf: pxa buffer to find pxa dma channel
321 * @dma: dma video buffer
322 * @channel: dma channel (0 => 'Y', 1 => 'U', 2 => 'V')
323 * @cibr: camera Receive Buffer Register
324 * @size: bytes to transfer
325 * @sg_first: first element of sg_list
326 * @sg_first_ofs: offset in first element of sg_list
328 * Prepares the pxa dma descriptors to transfer one camera channel.
329 * Beware sg_first and sg_first_ofs are both input and output parameters.
331 * Returns 0 or -ENOMEM if no coherent memory is available
333 static int pxa_init_dma_channel(struct pxa_camera_dev *pcdev,
334 struct pxa_buffer *buf,
335 struct videobuf_dmabuf *dma, int channel,
336 int cibr, int size,
337 struct scatterlist **sg_first, int *sg_first_ofs)
339 struct pxa_cam_dma *pxa_dma = &buf->dmas[channel];
340 struct device *dev = pcdev->soc_host.v4l2_dev.dev;
341 struct scatterlist *sg;
342 int i, offset, sglen;
343 int dma_len = 0, xfer_len = 0;
345 if (pxa_dma->sg_cpu)
346 dma_free_coherent(dev, pxa_dma->sg_size,
347 pxa_dma->sg_cpu, pxa_dma->sg_dma);
349 sglen = calculate_dma_sglen(*sg_first, dma->sglen,
350 *sg_first_ofs, size);
352 pxa_dma->sg_size = (sglen + 1) * sizeof(struct pxa_dma_desc);
353 pxa_dma->sg_cpu = dma_alloc_coherent(dev, pxa_dma->sg_size,
354 &pxa_dma->sg_dma, GFP_KERNEL);
355 if (!pxa_dma->sg_cpu)
356 return -ENOMEM;
358 pxa_dma->sglen = sglen;
359 offset = *sg_first_ofs;
361 dev_dbg(dev, "DMA: sg_first=%p, sglen=%d, ofs=%d, dma.desc=%x\n",
362 *sg_first, sglen, *sg_first_ofs, pxa_dma->sg_dma);
365 for_each_sg(*sg_first, sg, sglen, i) {
366 dma_len = sg_dma_len(sg);
368 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
369 xfer_len = roundup(min(dma_len - offset, size), 8);
371 size = max(0, size - xfer_len);
373 pxa_dma->sg_cpu[i].dsadr = pcdev->res->start + cibr;
374 pxa_dma->sg_cpu[i].dtadr = sg_dma_address(sg) + offset;
375 pxa_dma->sg_cpu[i].dcmd =
376 DCMD_FLOWSRC | DCMD_BURST8 | DCMD_INCTRGADDR | xfer_len;
377 #ifdef DEBUG
378 if (!i)
379 pxa_dma->sg_cpu[i].dcmd |= DCMD_STARTIRQEN;
380 #endif
381 pxa_dma->sg_cpu[i].ddadr =
382 pxa_dma->sg_dma + (i + 1) * sizeof(struct pxa_dma_desc);
384 dev_vdbg(dev, "DMA: desc.%08x->@phys=0x%08x, len=%d\n",
385 pxa_dma->sg_dma + i * sizeof(struct pxa_dma_desc),
386 sg_dma_address(sg) + offset, xfer_len);
387 offset = 0;
389 if (size == 0)
390 break;
393 pxa_dma->sg_cpu[sglen].ddadr = DDADR_STOP;
394 pxa_dma->sg_cpu[sglen].dcmd = DCMD_FLOWSRC | DCMD_BURST8 | DCMD_ENDIRQEN;
397 * Handle 1 special case :
398 * - in 3 planes (YUV422P format), we might finish with xfer_len equal
399 * to dma_len (end on PAGE boundary). In this case, the sg element
400 * for next plane should be the next after the last used to store the
401 * last scatter gather RAM page
403 if (xfer_len >= dma_len) {
404 *sg_first_ofs = xfer_len - dma_len;
405 *sg_first = sg_next(sg);
406 } else {
407 *sg_first_ofs = xfer_len;
408 *sg_first = sg;
411 return 0;
414 static void pxa_videobuf_set_actdma(struct pxa_camera_dev *pcdev,
415 struct pxa_buffer *buf)
417 buf->active_dma = DMA_Y;
418 if (pcdev->channels == 3)
419 buf->active_dma |= DMA_U | DMA_V;
423 * Please check the DMA prepared buffer structure in :
424 * Documentation/video4linux/pxa_camera.txt
425 * Please check also in pxa_camera_check_link_miss() to understand why DMA chain
426 * modification while DMA chain is running will work anyway.
428 static int pxa_videobuf_prepare(struct videobuf_queue *vq,
429 struct videobuf_buffer *vb, enum v4l2_field field)
431 struct soc_camera_device *icd = vq->priv_data;
432 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
433 struct pxa_camera_dev *pcdev = ici->priv;
434 struct device *dev = pcdev->soc_host.v4l2_dev.dev;
435 struct pxa_buffer *buf = container_of(vb, struct pxa_buffer, vb);
436 int ret;
437 int size_y, size_u = 0, size_v = 0;
438 int bytes_per_line = soc_mbus_bytes_per_line(icd->user_width,
439 icd->current_fmt->host_fmt);
441 if (bytes_per_line < 0)
442 return bytes_per_line;
444 dev_dbg(dev, "%s (vb=0x%p) 0x%08lx %d\n", __func__,
445 vb, vb->baddr, vb->bsize);
447 /* Added list head initialization on alloc */
448 WARN_ON(!list_empty(&vb->queue));
450 #ifdef DEBUG
452 * This can be useful if you want to see if we actually fill
453 * the buffer with something
455 memset((void *)vb->baddr, 0xaa, vb->bsize);
456 #endif
458 BUG_ON(NULL == icd->current_fmt);
461 * I think, in buf_prepare you only have to protect global data,
462 * the actual buffer is yours
464 buf->inwork = 1;
466 if (buf->code != icd->current_fmt->code ||
467 vb->width != icd->user_width ||
468 vb->height != icd->user_height ||
469 vb->field != field) {
470 buf->code = icd->current_fmt->code;
471 vb->width = icd->user_width;
472 vb->height = icd->user_height;
473 vb->field = field;
474 vb->state = VIDEOBUF_NEEDS_INIT;
477 vb->size = bytes_per_line * vb->height;
478 if (0 != vb->baddr && vb->bsize < vb->size) {
479 ret = -EINVAL;
480 goto out;
483 if (vb->state == VIDEOBUF_NEEDS_INIT) {
484 int size = vb->size;
485 int next_ofs = 0;
486 struct videobuf_dmabuf *dma = videobuf_to_dma(vb);
487 struct scatterlist *sg;
489 ret = videobuf_iolock(vq, vb, NULL);
490 if (ret)
491 goto fail;
493 if (pcdev->channels == 3) {
494 size_y = size / 2;
495 size_u = size_v = size / 4;
496 } else {
497 size_y = size;
500 sg = dma->sglist;
502 /* init DMA for Y channel */
503 ret = pxa_init_dma_channel(pcdev, buf, dma, 0, CIBR0, size_y,
504 &sg, &next_ofs);
505 if (ret) {
506 dev_err(dev, "DMA initialization for Y/RGB failed\n");
507 goto fail;
510 /* init DMA for U channel */
511 if (size_u)
512 ret = pxa_init_dma_channel(pcdev, buf, dma, 1, CIBR1,
513 size_u, &sg, &next_ofs);
514 if (ret) {
515 dev_err(dev, "DMA initialization for U failed\n");
516 goto fail_u;
519 /* init DMA for V channel */
520 if (size_v)
521 ret = pxa_init_dma_channel(pcdev, buf, dma, 2, CIBR2,
522 size_v, &sg, &next_ofs);
523 if (ret) {
524 dev_err(dev, "DMA initialization for V failed\n");
525 goto fail_v;
528 vb->state = VIDEOBUF_PREPARED;
531 buf->inwork = 0;
532 pxa_videobuf_set_actdma(pcdev, buf);
534 return 0;
536 fail_v:
537 dma_free_coherent(dev, buf->dmas[1].sg_size,
538 buf->dmas[1].sg_cpu, buf->dmas[1].sg_dma);
539 fail_u:
540 dma_free_coherent(dev, buf->dmas[0].sg_size,
541 buf->dmas[0].sg_cpu, buf->dmas[0].sg_dma);
542 fail:
543 free_buffer(vq, buf);
544 out:
545 buf->inwork = 0;
546 return ret;
550 * pxa_dma_start_channels - start DMA channel for active buffer
551 * @pcdev: pxa camera device
553 * Initialize DMA channels to the beginning of the active video buffer, and
554 * start these channels.
556 static void pxa_dma_start_channels(struct pxa_camera_dev *pcdev)
558 int i;
559 struct pxa_buffer *active;
561 active = pcdev->active;
563 for (i = 0; i < pcdev->channels; i++) {
564 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
565 "%s (channel=%d) ddadr=%08x\n", __func__,
566 i, active->dmas[i].sg_dma);
567 DDADR(pcdev->dma_chans[i]) = active->dmas[i].sg_dma;
568 DCSR(pcdev->dma_chans[i]) = DCSR_RUN;
572 static void pxa_dma_stop_channels(struct pxa_camera_dev *pcdev)
574 int i;
576 for (i = 0; i < pcdev->channels; i++) {
577 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
578 "%s (channel=%d)\n", __func__, i);
579 DCSR(pcdev->dma_chans[i]) = 0;
583 static void pxa_dma_add_tail_buf(struct pxa_camera_dev *pcdev,
584 struct pxa_buffer *buf)
586 int i;
587 struct pxa_dma_desc *buf_last_desc;
589 for (i = 0; i < pcdev->channels; i++) {
590 buf_last_desc = buf->dmas[i].sg_cpu + buf->dmas[i].sglen;
591 buf_last_desc->ddadr = DDADR_STOP;
593 if (pcdev->sg_tail[i])
594 /* Link the new buffer to the old tail */
595 pcdev->sg_tail[i]->ddadr = buf->dmas[i].sg_dma;
597 /* Update the channel tail */
598 pcdev->sg_tail[i] = buf_last_desc;
603 * pxa_camera_start_capture - start video capturing
604 * @pcdev: camera device
606 * Launch capturing. DMA channels should not be active yet. They should get
607 * activated at the end of frame interrupt, to capture only whole frames, and
608 * never begin the capture of a partial frame.
610 static void pxa_camera_start_capture(struct pxa_camera_dev *pcdev)
612 unsigned long cicr0;
614 dev_dbg(pcdev->soc_host.v4l2_dev.dev, "%s\n", __func__);
615 /* Enable End-Of-Frame Interrupt */
616 cicr0 = __raw_readl(pcdev->base + CICR0) | CICR0_ENB;
617 cicr0 &= ~CICR0_EOFM;
618 __raw_writel(cicr0, pcdev->base + CICR0);
621 static void pxa_camera_stop_capture(struct pxa_camera_dev *pcdev)
623 unsigned long cicr0;
625 pxa_dma_stop_channels(pcdev);
627 cicr0 = __raw_readl(pcdev->base + CICR0) & ~CICR0_ENB;
628 __raw_writel(cicr0, pcdev->base + CICR0);
630 pcdev->active = NULL;
631 dev_dbg(pcdev->soc_host.v4l2_dev.dev, "%s\n", __func__);
634 /* Called under spinlock_irqsave(&pcdev->lock, ...) */
635 static void pxa_videobuf_queue(struct videobuf_queue *vq,
636 struct videobuf_buffer *vb)
638 struct soc_camera_device *icd = vq->priv_data;
639 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
640 struct pxa_camera_dev *pcdev = ici->priv;
641 struct pxa_buffer *buf = container_of(vb, struct pxa_buffer, vb);
643 dev_dbg(icd->dev.parent, "%s (vb=0x%p) 0x%08lx %d active=%p\n",
644 __func__, vb, vb->baddr, vb->bsize, pcdev->active);
646 list_add_tail(&vb->queue, &pcdev->capture);
648 vb->state = VIDEOBUF_ACTIVE;
649 pxa_dma_add_tail_buf(pcdev, buf);
651 if (!pcdev->active)
652 pxa_camera_start_capture(pcdev);
655 static void pxa_videobuf_release(struct videobuf_queue *vq,
656 struct videobuf_buffer *vb)
658 struct pxa_buffer *buf = container_of(vb, struct pxa_buffer, vb);
659 #ifdef DEBUG
660 struct soc_camera_device *icd = vq->priv_data;
661 struct device *dev = icd->dev.parent;
663 dev_dbg(dev, "%s (vb=0x%p) 0x%08lx %d\n", __func__,
664 vb, vb->baddr, vb->bsize);
666 switch (vb->state) {
667 case VIDEOBUF_ACTIVE:
668 dev_dbg(dev, "%s (active)\n", __func__);
669 break;
670 case VIDEOBUF_QUEUED:
671 dev_dbg(dev, "%s (queued)\n", __func__);
672 break;
673 case VIDEOBUF_PREPARED:
674 dev_dbg(dev, "%s (prepared)\n", __func__);
675 break;
676 default:
677 dev_dbg(dev, "%s (unknown)\n", __func__);
678 break;
680 #endif
682 free_buffer(vq, buf);
685 static void pxa_camera_wakeup(struct pxa_camera_dev *pcdev,
686 struct videobuf_buffer *vb,
687 struct pxa_buffer *buf)
689 int i;
691 /* _init is used to debug races, see comment in pxa_camera_reqbufs() */
692 list_del_init(&vb->queue);
693 vb->state = VIDEOBUF_DONE;
694 do_gettimeofday(&vb->ts);
695 vb->field_count++;
696 wake_up(&vb->done);
697 dev_dbg(pcdev->soc_host.v4l2_dev.dev, "%s dequeud buffer (vb=0x%p)\n",
698 __func__, vb);
700 if (list_empty(&pcdev->capture)) {
701 pxa_camera_stop_capture(pcdev);
702 for (i = 0; i < pcdev->channels; i++)
703 pcdev->sg_tail[i] = NULL;
704 return;
707 pcdev->active = list_entry(pcdev->capture.next,
708 struct pxa_buffer, vb.queue);
712 * pxa_camera_check_link_miss - check missed DMA linking
713 * @pcdev: camera device
715 * The DMA chaining is done with DMA running. This means a tiny temporal window
716 * remains, where a buffer is queued on the chain, while the chain is already
717 * stopped. This means the tailed buffer would never be transfered by DMA.
718 * This function restarts the capture for this corner case, where :
719 * - DADR() == DADDR_STOP
720 * - a videobuffer is queued on the pcdev->capture list
722 * Please check the "DMA hot chaining timeslice issue" in
723 * Documentation/video4linux/pxa_camera.txt
725 * Context: should only be called within the dma irq handler
727 static void pxa_camera_check_link_miss(struct pxa_camera_dev *pcdev)
729 int i, is_dma_stopped = 1;
731 for (i = 0; i < pcdev->channels; i++)
732 if (DDADR(pcdev->dma_chans[i]) != DDADR_STOP)
733 is_dma_stopped = 0;
734 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
735 "%s : top queued buffer=%p, dma_stopped=%d\n",
736 __func__, pcdev->active, is_dma_stopped);
737 if (pcdev->active && is_dma_stopped)
738 pxa_camera_start_capture(pcdev);
741 static void pxa_camera_dma_irq(int channel, struct pxa_camera_dev *pcdev,
742 enum pxa_camera_active_dma act_dma)
744 struct device *dev = pcdev->soc_host.v4l2_dev.dev;
745 struct pxa_buffer *buf;
746 unsigned long flags;
747 u32 status, camera_status, overrun;
748 struct videobuf_buffer *vb;
750 spin_lock_irqsave(&pcdev->lock, flags);
752 status = DCSR(channel);
753 DCSR(channel) = status;
755 camera_status = __raw_readl(pcdev->base + CISR);
756 overrun = CISR_IFO_0;
757 if (pcdev->channels == 3)
758 overrun |= CISR_IFO_1 | CISR_IFO_2;
760 if (status & DCSR_BUSERR) {
761 dev_err(dev, "DMA Bus Error IRQ!\n");
762 goto out;
765 if (!(status & (DCSR_ENDINTR | DCSR_STARTINTR))) {
766 dev_err(dev, "Unknown DMA IRQ source, status: 0x%08x\n",
767 status);
768 goto out;
772 * pcdev->active should not be NULL in DMA irq handler.
774 * But there is one corner case : if capture was stopped due to an
775 * overrun of channel 1, and at that same channel 2 was completed.
777 * When handling the overrun in DMA irq for channel 1, we'll stop the
778 * capture and restart it (and thus set pcdev->active to NULL). But the
779 * DMA irq handler will already be pending for channel 2. So on entering
780 * the DMA irq handler for channel 2 there will be no active buffer, yet
781 * that is normal.
783 if (!pcdev->active)
784 goto out;
786 vb = &pcdev->active->vb;
787 buf = container_of(vb, struct pxa_buffer, vb);
788 WARN_ON(buf->inwork || list_empty(&vb->queue));
790 dev_dbg(dev, "%s channel=%d %s%s(vb=0x%p) dma.desc=%x\n",
791 __func__, channel, status & DCSR_STARTINTR ? "SOF " : "",
792 status & DCSR_ENDINTR ? "EOF " : "", vb, DDADR(channel));
794 if (status & DCSR_ENDINTR) {
796 * It's normal if the last frame creates an overrun, as there
797 * are no more DMA descriptors to fetch from QCI fifos
799 if (camera_status & overrun &&
800 !list_is_last(pcdev->capture.next, &pcdev->capture)) {
801 dev_dbg(dev, "FIFO overrun! CISR: %x\n",
802 camera_status);
803 pxa_camera_stop_capture(pcdev);
804 pxa_camera_start_capture(pcdev);
805 goto out;
807 buf->active_dma &= ~act_dma;
808 if (!buf->active_dma) {
809 pxa_camera_wakeup(pcdev, vb, buf);
810 pxa_camera_check_link_miss(pcdev);
814 out:
815 spin_unlock_irqrestore(&pcdev->lock, flags);
818 static void pxa_camera_dma_irq_y(int channel, void *data)
820 struct pxa_camera_dev *pcdev = data;
821 pxa_camera_dma_irq(channel, pcdev, DMA_Y);
824 static void pxa_camera_dma_irq_u(int channel, void *data)
826 struct pxa_camera_dev *pcdev = data;
827 pxa_camera_dma_irq(channel, pcdev, DMA_U);
830 static void pxa_camera_dma_irq_v(int channel, void *data)
832 struct pxa_camera_dev *pcdev = data;
833 pxa_camera_dma_irq(channel, pcdev, DMA_V);
836 static struct videobuf_queue_ops pxa_videobuf_ops = {
837 .buf_setup = pxa_videobuf_setup,
838 .buf_prepare = pxa_videobuf_prepare,
839 .buf_queue = pxa_videobuf_queue,
840 .buf_release = pxa_videobuf_release,
843 static void pxa_camera_init_videobuf(struct videobuf_queue *q,
844 struct soc_camera_device *icd)
846 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
847 struct pxa_camera_dev *pcdev = ici->priv;
850 * We must pass NULL as dev pointer, then all pci_* dma operations
851 * transform to normal dma_* ones.
853 videobuf_queue_sg_init(q, &pxa_videobuf_ops, NULL, &pcdev->lock,
854 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_NONE,
855 sizeof(struct pxa_buffer), icd);
858 static u32 mclk_get_divisor(struct platform_device *pdev,
859 struct pxa_camera_dev *pcdev)
861 unsigned long mclk = pcdev->mclk;
862 struct device *dev = &pdev->dev;
863 u32 div;
864 unsigned long lcdclk;
866 lcdclk = clk_get_rate(pcdev->clk);
867 pcdev->ciclk = lcdclk;
869 /* mclk <= ciclk / 4 (27.4.2) */
870 if (mclk > lcdclk / 4) {
871 mclk = lcdclk / 4;
872 dev_warn(dev, "Limiting master clock to %lu\n", mclk);
875 /* We verify mclk != 0, so if anyone breaks it, here comes their Oops */
876 div = (lcdclk + 2 * mclk - 1) / (2 * mclk) - 1;
878 /* If we're not supplying MCLK, leave it at 0 */
879 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
880 pcdev->mclk = lcdclk / (2 * (div + 1));
882 dev_dbg(dev, "LCD clock %luHz, target freq %luHz, divisor %u\n",
883 lcdclk, mclk, div);
885 return div;
888 static void recalculate_fifo_timeout(struct pxa_camera_dev *pcdev,
889 unsigned long pclk)
891 /* We want a timeout > 1 pixel time, not ">=" */
892 u32 ciclk_per_pixel = pcdev->ciclk / pclk + 1;
894 __raw_writel(ciclk_per_pixel, pcdev->base + CITOR);
897 static void pxa_camera_activate(struct pxa_camera_dev *pcdev)
899 u32 cicr4 = 0;
901 /* disable all interrupts */
902 __raw_writel(0x3ff, pcdev->base + CICR0);
904 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
905 cicr4 |= CICR4_PCLK_EN;
906 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
907 cicr4 |= CICR4_MCLK_EN;
908 if (pcdev->platform_flags & PXA_CAMERA_PCP)
909 cicr4 |= CICR4_PCP;
910 if (pcdev->platform_flags & PXA_CAMERA_HSP)
911 cicr4 |= CICR4_HSP;
912 if (pcdev->platform_flags & PXA_CAMERA_VSP)
913 cicr4 |= CICR4_VSP;
915 __raw_writel(pcdev->mclk_divisor | cicr4, pcdev->base + CICR4);
917 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
918 /* Initialise the timeout under the assumption pclk = mclk */
919 recalculate_fifo_timeout(pcdev, pcdev->mclk);
920 else
921 /* "Safe default" - 13MHz */
922 recalculate_fifo_timeout(pcdev, 13000000);
924 clk_enable(pcdev->clk);
927 static void pxa_camera_deactivate(struct pxa_camera_dev *pcdev)
929 clk_disable(pcdev->clk);
932 static irqreturn_t pxa_camera_irq(int irq, void *data)
934 struct pxa_camera_dev *pcdev = data;
935 unsigned long status, cifr, cicr0;
936 struct pxa_buffer *buf;
937 struct videobuf_buffer *vb;
939 status = __raw_readl(pcdev->base + CISR);
940 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
941 "Camera interrupt status 0x%lx\n", status);
943 if (!status)
944 return IRQ_NONE;
946 __raw_writel(status, pcdev->base + CISR);
948 if (status & CISR_EOF) {
949 /* Reset the FIFOs */
950 cifr = __raw_readl(pcdev->base + CIFR) | CIFR_RESET_F;
951 __raw_writel(cifr, pcdev->base + CIFR);
953 pcdev->active = list_first_entry(&pcdev->capture,
954 struct pxa_buffer, vb.queue);
955 vb = &pcdev->active->vb;
956 buf = container_of(vb, struct pxa_buffer, vb);
957 pxa_videobuf_set_actdma(pcdev, buf);
959 pxa_dma_start_channels(pcdev);
961 cicr0 = __raw_readl(pcdev->base + CICR0) | CICR0_EOFM;
962 __raw_writel(cicr0, pcdev->base + CICR0);
965 return IRQ_HANDLED;
969 * The following two functions absolutely depend on the fact, that
970 * there can be only one camera on PXA quick capture interface
971 * Called with .video_lock held
973 static int pxa_camera_add_device(struct soc_camera_device *icd)
975 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
976 struct pxa_camera_dev *pcdev = ici->priv;
978 if (pcdev->icd)
979 return -EBUSY;
981 pxa_camera_activate(pcdev);
983 pcdev->icd = icd;
985 dev_info(icd->dev.parent, "PXA Camera driver attached to camera %d\n",
986 icd->devnum);
988 return 0;
991 /* Called with .video_lock held */
992 static void pxa_camera_remove_device(struct soc_camera_device *icd)
994 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
995 struct pxa_camera_dev *pcdev = ici->priv;
997 BUG_ON(icd != pcdev->icd);
999 dev_info(icd->dev.parent, "PXA Camera driver detached from camera %d\n",
1000 icd->devnum);
1002 /* disable capture, disable interrupts */
1003 __raw_writel(0x3ff, pcdev->base + CICR0);
1005 /* Stop DMA engine */
1006 DCSR(pcdev->dma_chans[0]) = 0;
1007 DCSR(pcdev->dma_chans[1]) = 0;
1008 DCSR(pcdev->dma_chans[2]) = 0;
1010 pxa_camera_deactivate(pcdev);
1012 pcdev->icd = NULL;
1015 static int test_platform_param(struct pxa_camera_dev *pcdev,
1016 unsigned char buswidth, unsigned long *flags)
1019 * Platform specified synchronization and pixel clock polarities are
1020 * only a recommendation and are only used during probing. The PXA270
1021 * quick capture interface supports both.
1023 *flags = (pcdev->platform_flags & PXA_CAMERA_MASTER ?
1024 SOCAM_MASTER : SOCAM_SLAVE) |
1025 SOCAM_HSYNC_ACTIVE_HIGH |
1026 SOCAM_HSYNC_ACTIVE_LOW |
1027 SOCAM_VSYNC_ACTIVE_HIGH |
1028 SOCAM_VSYNC_ACTIVE_LOW |
1029 SOCAM_DATA_ACTIVE_HIGH |
1030 SOCAM_PCLK_SAMPLE_RISING |
1031 SOCAM_PCLK_SAMPLE_FALLING;
1033 /* If requested data width is supported by the platform, use it */
1034 switch (buswidth) {
1035 case 10:
1036 if (!(pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_10))
1037 return -EINVAL;
1038 *flags |= SOCAM_DATAWIDTH_10;
1039 break;
1040 case 9:
1041 if (!(pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_9))
1042 return -EINVAL;
1043 *flags |= SOCAM_DATAWIDTH_9;
1044 break;
1045 case 8:
1046 if (!(pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_8))
1047 return -EINVAL;
1048 *flags |= SOCAM_DATAWIDTH_8;
1049 break;
1050 default:
1051 return -EINVAL;
1054 return 0;
1057 static void pxa_camera_setup_cicr(struct soc_camera_device *icd,
1058 unsigned long flags, __u32 pixfmt)
1060 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1061 struct pxa_camera_dev *pcdev = ici->priv;
1062 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1063 unsigned long dw, bpp;
1064 u32 cicr0, cicr1, cicr2, cicr3, cicr4 = 0, y_skip_top;
1065 int ret = v4l2_subdev_call(sd, sensor, g_skip_top_lines, &y_skip_top);
1067 if (ret < 0)
1068 y_skip_top = 0;
1071 * Datawidth is now guaranteed to be equal to one of the three values.
1072 * We fix bit-per-pixel equal to data-width...
1074 switch (flags & SOCAM_DATAWIDTH_MASK) {
1075 case SOCAM_DATAWIDTH_10:
1076 dw = 4;
1077 bpp = 0x40;
1078 break;
1079 case SOCAM_DATAWIDTH_9:
1080 dw = 3;
1081 bpp = 0x20;
1082 break;
1083 default:
1085 * Actually it can only be 8 now,
1086 * default is just to silence compiler warnings
1088 case SOCAM_DATAWIDTH_8:
1089 dw = 2;
1090 bpp = 0;
1093 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
1094 cicr4 |= CICR4_PCLK_EN;
1095 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
1096 cicr4 |= CICR4_MCLK_EN;
1097 if (flags & SOCAM_PCLK_SAMPLE_FALLING)
1098 cicr4 |= CICR4_PCP;
1099 if (flags & SOCAM_HSYNC_ACTIVE_LOW)
1100 cicr4 |= CICR4_HSP;
1101 if (flags & SOCAM_VSYNC_ACTIVE_LOW)
1102 cicr4 |= CICR4_VSP;
1104 cicr0 = __raw_readl(pcdev->base + CICR0);
1105 if (cicr0 & CICR0_ENB)
1106 __raw_writel(cicr0 & ~CICR0_ENB, pcdev->base + CICR0);
1108 cicr1 = CICR1_PPL_VAL(icd->user_width - 1) | bpp | dw;
1110 switch (pixfmt) {
1111 case V4L2_PIX_FMT_YUV422P:
1112 pcdev->channels = 3;
1113 cicr1 |= CICR1_YCBCR_F;
1115 * Normally, pxa bus wants as input UYVY format. We allow all
1116 * reorderings of the YUV422 format, as no processing is done,
1117 * and the YUV stream is just passed through without any
1118 * transformation. Note that UYVY is the only format that
1119 * should be used if pxa framebuffer Overlay2 is used.
1121 case V4L2_PIX_FMT_UYVY:
1122 case V4L2_PIX_FMT_VYUY:
1123 case V4L2_PIX_FMT_YUYV:
1124 case V4L2_PIX_FMT_YVYU:
1125 cicr1 |= CICR1_COLOR_SP_VAL(2);
1126 break;
1127 case V4L2_PIX_FMT_RGB555:
1128 cicr1 |= CICR1_RGB_BPP_VAL(1) | CICR1_RGBT_CONV_VAL(2) |
1129 CICR1_TBIT | CICR1_COLOR_SP_VAL(1);
1130 break;
1131 case V4L2_PIX_FMT_RGB565:
1132 cicr1 |= CICR1_COLOR_SP_VAL(1) | CICR1_RGB_BPP_VAL(2);
1133 break;
1136 cicr2 = 0;
1137 cicr3 = CICR3_LPF_VAL(icd->user_height - 1) |
1138 CICR3_BFW_VAL(min((u32)255, y_skip_top));
1139 cicr4 |= pcdev->mclk_divisor;
1141 __raw_writel(cicr1, pcdev->base + CICR1);
1142 __raw_writel(cicr2, pcdev->base + CICR2);
1143 __raw_writel(cicr3, pcdev->base + CICR3);
1144 __raw_writel(cicr4, pcdev->base + CICR4);
1146 /* CIF interrupts are not used, only DMA */
1147 cicr0 = (cicr0 & CICR0_ENB) | (pcdev->platform_flags & PXA_CAMERA_MASTER ?
1148 CICR0_SIM_MP : (CICR0_SL_CAP_EN | CICR0_SIM_SP));
1149 cicr0 |= CICR0_DMAEN | CICR0_IRQ_MASK;
1150 __raw_writel(cicr0, pcdev->base + CICR0);
1153 static int pxa_camera_set_bus_param(struct soc_camera_device *icd, __u32 pixfmt)
1155 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1156 struct pxa_camera_dev *pcdev = ici->priv;
1157 unsigned long bus_flags, camera_flags, common_flags;
1158 const struct soc_mbus_pixelfmt *fmt;
1159 int ret;
1160 struct pxa_cam *cam = icd->host_priv;
1162 fmt = soc_mbus_get_fmtdesc(icd->current_fmt->code);
1163 if (!fmt)
1164 return -EINVAL;
1166 ret = test_platform_param(pcdev, fmt->bits_per_sample, &bus_flags);
1167 if (ret < 0)
1168 return ret;
1170 camera_flags = icd->ops->query_bus_param(icd);
1172 common_flags = soc_camera_bus_param_compatible(camera_flags, bus_flags);
1173 if (!common_flags)
1174 return -EINVAL;
1176 pcdev->channels = 1;
1178 /* Make choises, based on platform preferences */
1179 if ((common_flags & SOCAM_HSYNC_ACTIVE_HIGH) &&
1180 (common_flags & SOCAM_HSYNC_ACTIVE_LOW)) {
1181 if (pcdev->platform_flags & PXA_CAMERA_HSP)
1182 common_flags &= ~SOCAM_HSYNC_ACTIVE_HIGH;
1183 else
1184 common_flags &= ~SOCAM_HSYNC_ACTIVE_LOW;
1187 if ((common_flags & SOCAM_VSYNC_ACTIVE_HIGH) &&
1188 (common_flags & SOCAM_VSYNC_ACTIVE_LOW)) {
1189 if (pcdev->platform_flags & PXA_CAMERA_VSP)
1190 common_flags &= ~SOCAM_VSYNC_ACTIVE_HIGH;
1191 else
1192 common_flags &= ~SOCAM_VSYNC_ACTIVE_LOW;
1195 if ((common_flags & SOCAM_PCLK_SAMPLE_RISING) &&
1196 (common_flags & SOCAM_PCLK_SAMPLE_FALLING)) {
1197 if (pcdev->platform_flags & PXA_CAMERA_PCP)
1198 common_flags &= ~SOCAM_PCLK_SAMPLE_RISING;
1199 else
1200 common_flags &= ~SOCAM_PCLK_SAMPLE_FALLING;
1203 cam->flags = common_flags;
1205 ret = icd->ops->set_bus_param(icd, common_flags);
1206 if (ret < 0)
1207 return ret;
1209 pxa_camera_setup_cicr(icd, common_flags, pixfmt);
1211 return 0;
1214 static int pxa_camera_try_bus_param(struct soc_camera_device *icd,
1215 unsigned char buswidth)
1217 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1218 struct pxa_camera_dev *pcdev = ici->priv;
1219 unsigned long bus_flags, camera_flags;
1220 int ret = test_platform_param(pcdev, buswidth, &bus_flags);
1222 if (ret < 0)
1223 return ret;
1225 camera_flags = icd->ops->query_bus_param(icd);
1227 return soc_camera_bus_param_compatible(camera_flags, bus_flags) ? 0 : -EINVAL;
1230 static const struct soc_mbus_pixelfmt pxa_camera_formats[] = {
1232 .fourcc = V4L2_PIX_FMT_YUV422P,
1233 .name = "Planar YUV422 16 bit",
1234 .bits_per_sample = 8,
1235 .packing = SOC_MBUS_PACKING_2X8_PADHI,
1236 .order = SOC_MBUS_ORDER_LE,
1240 /* This will be corrected as we get more formats */
1241 static bool pxa_camera_packing_supported(const struct soc_mbus_pixelfmt *fmt)
1243 return fmt->packing == SOC_MBUS_PACKING_NONE ||
1244 (fmt->bits_per_sample == 8 &&
1245 fmt->packing == SOC_MBUS_PACKING_2X8_PADHI) ||
1246 (fmt->bits_per_sample > 8 &&
1247 fmt->packing == SOC_MBUS_PACKING_EXTEND16);
1250 static int pxa_camera_get_formats(struct soc_camera_device *icd, unsigned int idx,
1251 struct soc_camera_format_xlate *xlate)
1253 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1254 struct device *dev = icd->dev.parent;
1255 int formats = 0, ret;
1256 struct pxa_cam *cam;
1257 enum v4l2_mbus_pixelcode code;
1258 const struct soc_mbus_pixelfmt *fmt;
1260 ret = v4l2_subdev_call(sd, video, enum_mbus_fmt, idx, &code);
1261 if (ret < 0)
1262 /* No more formats */
1263 return 0;
1265 fmt = soc_mbus_get_fmtdesc(code);
1266 if (!fmt) {
1267 dev_err(dev, "Invalid format code #%u: %d\n", idx, code);
1268 return 0;
1271 /* This also checks support for the requested bits-per-sample */
1272 ret = pxa_camera_try_bus_param(icd, fmt->bits_per_sample);
1273 if (ret < 0)
1274 return 0;
1276 if (!icd->host_priv) {
1277 cam = kzalloc(sizeof(*cam), GFP_KERNEL);
1278 if (!cam)
1279 return -ENOMEM;
1281 icd->host_priv = cam;
1282 } else {
1283 cam = icd->host_priv;
1286 switch (code) {
1287 case V4L2_MBUS_FMT_UYVY8_2X8:
1288 formats++;
1289 if (xlate) {
1290 xlate->host_fmt = &pxa_camera_formats[0];
1291 xlate->code = code;
1292 xlate++;
1293 dev_dbg(dev, "Providing format %s using code %d\n",
1294 pxa_camera_formats[0].name, code);
1296 case V4L2_MBUS_FMT_VYUY8_2X8:
1297 case V4L2_MBUS_FMT_YUYV8_2X8:
1298 case V4L2_MBUS_FMT_YVYU8_2X8:
1299 case V4L2_MBUS_FMT_RGB565_2X8_LE:
1300 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE:
1301 if (xlate)
1302 dev_dbg(dev, "Providing format %s packed\n",
1303 fmt->name);
1304 break;
1305 default:
1306 if (!pxa_camera_packing_supported(fmt))
1307 return 0;
1308 if (xlate)
1309 dev_dbg(dev,
1310 "Providing format %s in pass-through mode\n",
1311 fmt->name);
1314 /* Generic pass-through */
1315 formats++;
1316 if (xlate) {
1317 xlate->host_fmt = fmt;
1318 xlate->code = code;
1319 xlate++;
1322 return formats;
1325 static void pxa_camera_put_formats(struct soc_camera_device *icd)
1327 kfree(icd->host_priv);
1328 icd->host_priv = NULL;
1331 static int pxa_camera_check_frame(u32 width, u32 height)
1333 /* limit to pxa hardware capabilities */
1334 return height < 32 || height > 2048 || width < 48 || width > 2048 ||
1335 (width & 0x01);
1338 static int pxa_camera_set_crop(struct soc_camera_device *icd,
1339 struct v4l2_crop *a)
1341 struct v4l2_rect *rect = &a->c;
1342 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1343 struct pxa_camera_dev *pcdev = ici->priv;
1344 struct device *dev = icd->dev.parent;
1345 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1346 struct soc_camera_sense sense = {
1347 .master_clock = pcdev->mclk,
1348 .pixel_clock_max = pcdev->ciclk / 4,
1350 struct v4l2_mbus_framefmt mf;
1351 struct pxa_cam *cam = icd->host_priv;
1352 u32 fourcc = icd->current_fmt->host_fmt->fourcc;
1353 int ret;
1355 /* If PCLK is used to latch data from the sensor, check sense */
1356 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
1357 icd->sense = &sense;
1359 ret = v4l2_subdev_call(sd, video, s_crop, a);
1361 icd->sense = NULL;
1363 if (ret < 0) {
1364 dev_warn(dev, "Failed to crop to %ux%u@%u:%u\n",
1365 rect->width, rect->height, rect->left, rect->top);
1366 return ret;
1369 ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
1370 if (ret < 0)
1371 return ret;
1373 if (pxa_camera_check_frame(mf.width, mf.height)) {
1374 v4l_bound_align_image(&mf.width, 48, 2048, 1,
1375 &mf.height, 32, 2048, 0,
1376 fourcc == V4L2_PIX_FMT_YUV422P ? 4 : 0);
1377 ret = v4l2_subdev_call(sd, video, s_mbus_fmt, &mf);
1378 if (ret < 0)
1379 return ret;
1381 if (pxa_camera_check_frame(mf.width, mf.height)) {
1382 dev_warn(icd->dev.parent,
1383 "Inconsistent state. Use S_FMT to repair\n");
1384 return -EINVAL;
1388 if (sense.flags & SOCAM_SENSE_PCLK_CHANGED) {
1389 if (sense.pixel_clock > sense.pixel_clock_max) {
1390 dev_err(dev,
1391 "pixel clock %lu set by the camera too high!",
1392 sense.pixel_clock);
1393 return -EIO;
1395 recalculate_fifo_timeout(pcdev, sense.pixel_clock);
1398 icd->user_width = mf.width;
1399 icd->user_height = mf.height;
1401 pxa_camera_setup_cicr(icd, cam->flags, fourcc);
1403 return ret;
1406 static int pxa_camera_set_fmt(struct soc_camera_device *icd,
1407 struct v4l2_format *f)
1409 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1410 struct pxa_camera_dev *pcdev = ici->priv;
1411 struct device *dev = icd->dev.parent;
1412 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1413 const struct soc_camera_format_xlate *xlate = NULL;
1414 struct soc_camera_sense sense = {
1415 .master_clock = pcdev->mclk,
1416 .pixel_clock_max = pcdev->ciclk / 4,
1418 struct v4l2_pix_format *pix = &f->fmt.pix;
1419 struct v4l2_mbus_framefmt mf;
1420 int ret;
1422 xlate = soc_camera_xlate_by_fourcc(icd, pix->pixelformat);
1423 if (!xlate) {
1424 dev_warn(dev, "Format %x not found\n", pix->pixelformat);
1425 return -EINVAL;
1428 /* If PCLK is used to latch data from the sensor, check sense */
1429 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
1430 /* The caller holds a mutex. */
1431 icd->sense = &sense;
1433 mf.width = pix->width;
1434 mf.height = pix->height;
1435 mf.field = pix->field;
1436 mf.colorspace = pix->colorspace;
1437 mf.code = xlate->code;
1439 ret = v4l2_subdev_call(sd, video, s_mbus_fmt, &mf);
1441 if (mf.code != xlate->code)
1442 return -EINVAL;
1444 icd->sense = NULL;
1446 if (ret < 0) {
1447 dev_warn(dev, "Failed to configure for format %x\n",
1448 pix->pixelformat);
1449 } else if (pxa_camera_check_frame(mf.width, mf.height)) {
1450 dev_warn(dev,
1451 "Camera driver produced an unsupported frame %dx%d\n",
1452 mf.width, mf.height);
1453 ret = -EINVAL;
1454 } else if (sense.flags & SOCAM_SENSE_PCLK_CHANGED) {
1455 if (sense.pixel_clock > sense.pixel_clock_max) {
1456 dev_err(dev,
1457 "pixel clock %lu set by the camera too high!",
1458 sense.pixel_clock);
1459 return -EIO;
1461 recalculate_fifo_timeout(pcdev, sense.pixel_clock);
1464 if (ret < 0)
1465 return ret;
1467 pix->width = mf.width;
1468 pix->height = mf.height;
1469 pix->field = mf.field;
1470 pix->colorspace = mf.colorspace;
1471 icd->current_fmt = xlate;
1473 return ret;
1476 static int pxa_camera_try_fmt(struct soc_camera_device *icd,
1477 struct v4l2_format *f)
1479 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
1480 const struct soc_camera_format_xlate *xlate;
1481 struct v4l2_pix_format *pix = &f->fmt.pix;
1482 struct v4l2_mbus_framefmt mf;
1483 __u32 pixfmt = pix->pixelformat;
1484 int ret;
1486 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1487 if (!xlate) {
1488 dev_warn(icd->dev.parent, "Format %x not found\n", pixfmt);
1489 return -EINVAL;
1493 * Limit to pxa hardware capabilities. YUV422P planar format requires
1494 * images size to be a multiple of 16 bytes. If not, zeros will be
1495 * inserted between Y and U planes, and U and V planes, which violates
1496 * the YUV422P standard.
1498 v4l_bound_align_image(&pix->width, 48, 2048, 1,
1499 &pix->height, 32, 2048, 0,
1500 pixfmt == V4L2_PIX_FMT_YUV422P ? 4 : 0);
1502 pix->bytesperline = soc_mbus_bytes_per_line(pix->width,
1503 xlate->host_fmt);
1504 if (pix->bytesperline < 0)
1505 return pix->bytesperline;
1506 pix->sizeimage = pix->height * pix->bytesperline;
1508 /* limit to sensor capabilities */
1509 mf.width = pix->width;
1510 mf.height = pix->height;
1511 mf.field = pix->field;
1512 mf.colorspace = pix->colorspace;
1513 mf.code = xlate->code;
1515 ret = v4l2_subdev_call(sd, video, try_mbus_fmt, &mf);
1516 if (ret < 0)
1517 return ret;
1519 pix->width = mf.width;
1520 pix->height = mf.height;
1521 pix->colorspace = mf.colorspace;
1523 switch (mf.field) {
1524 case V4L2_FIELD_ANY:
1525 case V4L2_FIELD_NONE:
1526 pix->field = V4L2_FIELD_NONE;
1527 break;
1528 default:
1529 /* TODO: support interlaced at least in pass-through mode */
1530 dev_err(icd->dev.parent, "Field type %d unsupported.\n",
1531 mf.field);
1532 return -EINVAL;
1535 return ret;
1538 static int pxa_camera_reqbufs(struct soc_camera_file *icf,
1539 struct v4l2_requestbuffers *p)
1541 int i;
1544 * This is for locking debugging only. I removed spinlocks and now I
1545 * check whether .prepare is ever called on a linked buffer, or whether
1546 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
1547 * it hadn't triggered
1549 for (i = 0; i < p->count; i++) {
1550 struct pxa_buffer *buf = container_of(icf->vb_vidq.bufs[i],
1551 struct pxa_buffer, vb);
1552 buf->inwork = 0;
1553 INIT_LIST_HEAD(&buf->vb.queue);
1556 return 0;
1559 static unsigned int pxa_camera_poll(struct file *file, poll_table *pt)
1561 struct soc_camera_file *icf = file->private_data;
1562 struct pxa_buffer *buf;
1564 buf = list_entry(icf->vb_vidq.stream.next, struct pxa_buffer,
1565 vb.stream);
1567 poll_wait(file, &buf->vb.done, pt);
1569 if (buf->vb.state == VIDEOBUF_DONE ||
1570 buf->vb.state == VIDEOBUF_ERROR)
1571 return POLLIN|POLLRDNORM;
1573 return 0;
1576 static int pxa_camera_querycap(struct soc_camera_host *ici,
1577 struct v4l2_capability *cap)
1579 /* cap->name is set by the firendly caller:-> */
1580 strlcpy(cap->card, pxa_cam_driver_description, sizeof(cap->card));
1581 cap->version = PXA_CAM_VERSION_CODE;
1582 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1584 return 0;
1587 static int pxa_camera_suspend(struct soc_camera_device *icd, pm_message_t state)
1589 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1590 struct pxa_camera_dev *pcdev = ici->priv;
1591 int i = 0, ret = 0;
1593 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR0);
1594 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR1);
1595 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR2);
1596 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR3);
1597 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR4);
1599 if ((pcdev->icd) && (pcdev->icd->ops->suspend))
1600 ret = pcdev->icd->ops->suspend(pcdev->icd, state);
1602 return ret;
1605 static int pxa_camera_resume(struct soc_camera_device *icd)
1607 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1608 struct pxa_camera_dev *pcdev = ici->priv;
1609 int i = 0, ret = 0;
1611 DRCMR(68) = pcdev->dma_chans[0] | DRCMR_MAPVLD;
1612 DRCMR(69) = pcdev->dma_chans[1] | DRCMR_MAPVLD;
1613 DRCMR(70) = pcdev->dma_chans[2] | DRCMR_MAPVLD;
1615 __raw_writel(pcdev->save_cicr[i++] & ~CICR0_ENB, pcdev->base + CICR0);
1616 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR1);
1617 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR2);
1618 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR3);
1619 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR4);
1621 if ((pcdev->icd) && (pcdev->icd->ops->resume))
1622 ret = pcdev->icd->ops->resume(pcdev->icd);
1624 /* Restart frame capture if active buffer exists */
1625 if (!ret && pcdev->active)
1626 pxa_camera_start_capture(pcdev);
1628 return ret;
1631 static struct soc_camera_host_ops pxa_soc_camera_host_ops = {
1632 .owner = THIS_MODULE,
1633 .add = pxa_camera_add_device,
1634 .remove = pxa_camera_remove_device,
1635 .suspend = pxa_camera_suspend,
1636 .resume = pxa_camera_resume,
1637 .set_crop = pxa_camera_set_crop,
1638 .get_formats = pxa_camera_get_formats,
1639 .put_formats = pxa_camera_put_formats,
1640 .set_fmt = pxa_camera_set_fmt,
1641 .try_fmt = pxa_camera_try_fmt,
1642 .init_videobuf = pxa_camera_init_videobuf,
1643 .reqbufs = pxa_camera_reqbufs,
1644 .poll = pxa_camera_poll,
1645 .querycap = pxa_camera_querycap,
1646 .set_bus_param = pxa_camera_set_bus_param,
1649 static int __devinit pxa_camera_probe(struct platform_device *pdev)
1651 struct pxa_camera_dev *pcdev;
1652 struct resource *res;
1653 void __iomem *base;
1654 int irq;
1655 int err = 0;
1657 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1658 irq = platform_get_irq(pdev, 0);
1659 if (!res || irq < 0) {
1660 err = -ENODEV;
1661 goto exit;
1664 pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
1665 if (!pcdev) {
1666 dev_err(&pdev->dev, "Could not allocate pcdev\n");
1667 err = -ENOMEM;
1668 goto exit;
1671 pcdev->clk = clk_get(&pdev->dev, NULL);
1672 if (IS_ERR(pcdev->clk)) {
1673 err = PTR_ERR(pcdev->clk);
1674 goto exit_kfree;
1677 pcdev->res = res;
1679 pcdev->pdata = pdev->dev.platform_data;
1680 pcdev->platform_flags = pcdev->pdata->flags;
1681 if (!(pcdev->platform_flags & (PXA_CAMERA_DATAWIDTH_8 |
1682 PXA_CAMERA_DATAWIDTH_9 | PXA_CAMERA_DATAWIDTH_10))) {
1684 * Platform hasn't set available data widths. This is bad.
1685 * Warn and use a default.
1687 dev_warn(&pdev->dev, "WARNING! Platform hasn't set available "
1688 "data widths, using default 10 bit\n");
1689 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_10;
1691 pcdev->mclk = pcdev->pdata->mclk_10khz * 10000;
1692 if (!pcdev->mclk) {
1693 dev_warn(&pdev->dev,
1694 "mclk == 0! Please, fix your platform data. "
1695 "Using default 20MHz\n");
1696 pcdev->mclk = 20000000;
1699 pcdev->mclk_divisor = mclk_get_divisor(pdev, pcdev);
1701 INIT_LIST_HEAD(&pcdev->capture);
1702 spin_lock_init(&pcdev->lock);
1705 * Request the regions.
1707 if (!request_mem_region(res->start, resource_size(res),
1708 PXA_CAM_DRV_NAME)) {
1709 err = -EBUSY;
1710 goto exit_clk;
1713 base = ioremap(res->start, resource_size(res));
1714 if (!base) {
1715 err = -ENOMEM;
1716 goto exit_release;
1718 pcdev->irq = irq;
1719 pcdev->base = base;
1721 /* request dma */
1722 err = pxa_request_dma("CI_Y", DMA_PRIO_HIGH,
1723 pxa_camera_dma_irq_y, pcdev);
1724 if (err < 0) {
1725 dev_err(&pdev->dev, "Can't request DMA for Y\n");
1726 goto exit_iounmap;
1728 pcdev->dma_chans[0] = err;
1729 dev_dbg(&pdev->dev, "got DMA channel %d\n", pcdev->dma_chans[0]);
1731 err = pxa_request_dma("CI_U", DMA_PRIO_HIGH,
1732 pxa_camera_dma_irq_u, pcdev);
1733 if (err < 0) {
1734 dev_err(&pdev->dev, "Can't request DMA for U\n");
1735 goto exit_free_dma_y;
1737 pcdev->dma_chans[1] = err;
1738 dev_dbg(&pdev->dev, "got DMA channel (U) %d\n", pcdev->dma_chans[1]);
1740 err = pxa_request_dma("CI_V", DMA_PRIO_HIGH,
1741 pxa_camera_dma_irq_v, pcdev);
1742 if (err < 0) {
1743 dev_err(&pdev->dev, "Can't request DMA for V\n");
1744 goto exit_free_dma_u;
1746 pcdev->dma_chans[2] = err;
1747 dev_dbg(&pdev->dev, "got DMA channel (V) %d\n", pcdev->dma_chans[2]);
1749 DRCMR(68) = pcdev->dma_chans[0] | DRCMR_MAPVLD;
1750 DRCMR(69) = pcdev->dma_chans[1] | DRCMR_MAPVLD;
1751 DRCMR(70) = pcdev->dma_chans[2] | DRCMR_MAPVLD;
1753 /* request irq */
1754 err = request_irq(pcdev->irq, pxa_camera_irq, 0, PXA_CAM_DRV_NAME,
1755 pcdev);
1756 if (err) {
1757 dev_err(&pdev->dev, "Camera interrupt register failed \n");
1758 goto exit_free_dma;
1761 pcdev->soc_host.drv_name = PXA_CAM_DRV_NAME;
1762 pcdev->soc_host.ops = &pxa_soc_camera_host_ops;
1763 pcdev->soc_host.priv = pcdev;
1764 pcdev->soc_host.v4l2_dev.dev = &pdev->dev;
1765 pcdev->soc_host.nr = pdev->id;
1767 err = soc_camera_host_register(&pcdev->soc_host);
1768 if (err)
1769 goto exit_free_irq;
1771 return 0;
1773 exit_free_irq:
1774 free_irq(pcdev->irq, pcdev);
1775 exit_free_dma:
1776 pxa_free_dma(pcdev->dma_chans[2]);
1777 exit_free_dma_u:
1778 pxa_free_dma(pcdev->dma_chans[1]);
1779 exit_free_dma_y:
1780 pxa_free_dma(pcdev->dma_chans[0]);
1781 exit_iounmap:
1782 iounmap(base);
1783 exit_release:
1784 release_mem_region(res->start, resource_size(res));
1785 exit_clk:
1786 clk_put(pcdev->clk);
1787 exit_kfree:
1788 kfree(pcdev);
1789 exit:
1790 return err;
1793 static int __devexit pxa_camera_remove(struct platform_device *pdev)
1795 struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
1796 struct pxa_camera_dev *pcdev = container_of(soc_host,
1797 struct pxa_camera_dev, soc_host);
1798 struct resource *res;
1800 clk_put(pcdev->clk);
1802 pxa_free_dma(pcdev->dma_chans[0]);
1803 pxa_free_dma(pcdev->dma_chans[1]);
1804 pxa_free_dma(pcdev->dma_chans[2]);
1805 free_irq(pcdev->irq, pcdev);
1807 soc_camera_host_unregister(soc_host);
1809 iounmap(pcdev->base);
1811 res = pcdev->res;
1812 release_mem_region(res->start, resource_size(res));
1814 kfree(pcdev);
1816 dev_info(&pdev->dev, "PXA Camera driver unloaded\n");
1818 return 0;
1821 static struct platform_driver pxa_camera_driver = {
1822 .driver = {
1823 .name = PXA_CAM_DRV_NAME,
1825 .probe = pxa_camera_probe,
1826 .remove = __devexit_p(pxa_camera_remove),
1830 static int __init pxa_camera_init(void)
1832 return platform_driver_register(&pxa_camera_driver);
1835 static void __exit pxa_camera_exit(void)
1837 platform_driver_unregister(&pxa_camera_driver);
1840 module_init(pxa_camera_init);
1841 module_exit(pxa_camera_exit);
1843 MODULE_DESCRIPTION("PXA27x SoC Camera Host driver");
1844 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1845 MODULE_LICENSE("GPL");
1846 MODULE_ALIAS("platform:" PXA_CAM_DRV_NAME);