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>
16 #include <linux/delay.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/errno.h>
20 #include <linux/interrupt.h>
21 #include <linux/kernel.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>
30 #include <media/v4l2-common.h>
31 #include <media/v4l2-dev.h>
32 #include <media/videobuf-dma-sg.h>
33 #include <media/soc_camera.h>
35 #include <linux/videodev2.h>
38 #include <mach/camera.h>
40 #define PXA_CAM_VERSION_CODE KERNEL_VERSION(0, 0, 5)
41 #define PXA_CAM_DRV_NAME "pxa27x-camera"
43 /* Camera Interface */
56 #define CICR0_DMAEN (1 << 31) /* DMA request enable */
57 #define CICR0_PAR_EN (1 << 30) /* Parity enable */
58 #define CICR0_SL_CAP_EN (1 << 29) /* Capture enable for slave mode */
59 #define CICR0_ENB (1 << 28) /* Camera interface enable */
60 #define CICR0_DIS (1 << 27) /* Camera interface disable */
61 #define CICR0_SIM (0x7 << 24) /* Sensor interface mode mask */
62 #define CICR0_TOM (1 << 9) /* Time-out mask */
63 #define CICR0_RDAVM (1 << 8) /* Receive-data-available mask */
64 #define CICR0_FEM (1 << 7) /* FIFO-empty mask */
65 #define CICR0_EOLM (1 << 6) /* End-of-line mask */
66 #define CICR0_PERRM (1 << 5) /* Parity-error mask */
67 #define CICR0_QDM (1 << 4) /* Quick-disable mask */
68 #define CICR0_CDM (1 << 3) /* Disable-done mask */
69 #define CICR0_SOFM (1 << 2) /* Start-of-frame mask */
70 #define CICR0_EOFM (1 << 1) /* End-of-frame mask */
71 #define CICR0_FOM (1 << 0) /* FIFO-overrun mask */
73 #define CICR1_TBIT (1 << 31) /* Transparency bit */
74 #define CICR1_RGBT_CONV (0x3 << 29) /* RGBT conversion mask */
75 #define CICR1_PPL (0x7ff << 15) /* Pixels per line mask */
76 #define CICR1_RGB_CONV (0x7 << 12) /* RGB conversion mask */
77 #define CICR1_RGB_F (1 << 11) /* RGB format */
78 #define CICR1_YCBCR_F (1 << 10) /* YCbCr format */
79 #define CICR1_RGB_BPP (0x7 << 7) /* RGB bis per pixel mask */
80 #define CICR1_RAW_BPP (0x3 << 5) /* Raw bis per pixel mask */
81 #define CICR1_COLOR_SP (0x3 << 3) /* Color space mask */
82 #define CICR1_DW (0x7 << 0) /* Data width mask */
84 #define CICR2_BLW (0xff << 24) /* Beginning-of-line pixel clock
86 #define CICR2_ELW (0xff << 16) /* End-of-line pixel clock
88 #define CICR2_HSW (0x3f << 10) /* Horizontal sync pulse width mask */
89 #define CICR2_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
91 #define CICR2_FSW (0x7 << 0) /* Frame stabilization
94 #define CICR3_BFW (0xff << 24) /* Beginning-of-frame line clock
96 #define CICR3_EFW (0xff << 16) /* End-of-frame line clock
98 #define CICR3_VSW (0x3f << 10) /* Vertical sync pulse width mask */
99 #define CICR3_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
101 #define CICR3_LPF (0x7ff << 0) /* Lines per frame mask */
103 #define CICR4_MCLK_DLY (0x3 << 24) /* MCLK Data Capture Delay mask */
104 #define CICR4_PCLK_EN (1 << 23) /* Pixel clock enable */
105 #define CICR4_PCP (1 << 22) /* Pixel clock polarity */
106 #define CICR4_HSP (1 << 21) /* Horizontal sync polarity */
107 #define CICR4_VSP (1 << 20) /* Vertical sync polarity */
108 #define CICR4_MCLK_EN (1 << 19) /* MCLK enable */
109 #define CICR4_FR_RATE (0x7 << 8) /* Frame rate mask */
110 #define CICR4_DIV (0xff << 0) /* Clock divisor mask */
112 #define CISR_FTO (1 << 15) /* FIFO time-out */
113 #define CISR_RDAV_2 (1 << 14) /* Channel 2 receive data available */
114 #define CISR_RDAV_1 (1 << 13) /* Channel 1 receive data available */
115 #define CISR_RDAV_0 (1 << 12) /* Channel 0 receive data available */
116 #define CISR_FEMPTY_2 (1 << 11) /* Channel 2 FIFO empty */
117 #define CISR_FEMPTY_1 (1 << 10) /* Channel 1 FIFO empty */
118 #define CISR_FEMPTY_0 (1 << 9) /* Channel 0 FIFO empty */
119 #define CISR_EOL (1 << 8) /* End of line */
120 #define CISR_PAR_ERR (1 << 7) /* Parity error */
121 #define CISR_CQD (1 << 6) /* Camera interface quick disable */
122 #define CISR_CDD (1 << 5) /* Camera interface disable done */
123 #define CISR_SOF (1 << 4) /* Start of frame */
124 #define CISR_EOF (1 << 3) /* End of frame */
125 #define CISR_IFO_2 (1 << 2) /* FIFO overrun for Channel 2 */
126 #define CISR_IFO_1 (1 << 1) /* FIFO overrun for Channel 1 */
127 #define CISR_IFO_0 (1 << 0) /* FIFO overrun for Channel 0 */
129 #define CIFR_FLVL2 (0x7f << 23) /* FIFO 2 level mask */
130 #define CIFR_FLVL1 (0x7f << 16) /* FIFO 1 level mask */
131 #define CIFR_FLVL0 (0xff << 8) /* FIFO 0 level mask */
132 #define CIFR_THL_0 (0x3 << 4) /* Threshold Level for Channel 0 FIFO */
133 #define CIFR_RESET_F (1 << 3) /* Reset input FIFOs */
134 #define CIFR_FEN2 (1 << 2) /* FIFO enable for channel 2 */
135 #define CIFR_FEN1 (1 << 1) /* FIFO enable for channel 1 */
136 #define CIFR_FEN0 (1 << 0) /* FIFO enable for channel 0 */
138 #define CICR0_SIM_MP (0 << 24)
139 #define CICR0_SIM_SP (1 << 24)
140 #define CICR0_SIM_MS (2 << 24)
141 #define CICR0_SIM_EP (3 << 24)
142 #define CICR0_SIM_ES (4 << 24)
144 #define CICR1_DW_VAL(x) ((x) & CICR1_DW) /* Data bus width */
145 #define CICR1_PPL_VAL(x) (((x) << 15) & CICR1_PPL) /* Pixels per line */
146 #define CICR1_COLOR_SP_VAL(x) (((x) << 3) & CICR1_COLOR_SP) /* color space */
147 #define CICR1_RGB_BPP_VAL(x) (((x) << 7) & CICR1_RGB_BPP) /* bpp for rgb */
148 #define CICR1_RGBT_CONV_VAL(x) (((x) << 29) & CICR1_RGBT_CONV) /* rgbt conv */
150 #define CICR2_BLW_VAL(x) (((x) << 24) & CICR2_BLW) /* Beginning-of-line pixel clock wait count */
151 #define CICR2_ELW_VAL(x) (((x) << 16) & CICR2_ELW) /* End-of-line pixel clock wait count */
152 #define CICR2_HSW_VAL(x) (((x) << 10) & CICR2_HSW) /* Horizontal sync pulse width */
153 #define CICR2_BFPW_VAL(x) (((x) << 3) & CICR2_BFPW) /* Beginning-of-frame pixel clock wait count */
154 #define CICR2_FSW_VAL(x) (((x) << 0) & CICR2_FSW) /* Frame stabilization wait count */
156 #define CICR3_BFW_VAL(x) (((x) << 24) & CICR3_BFW) /* Beginning-of-frame line clock wait count */
157 #define CICR3_EFW_VAL(x) (((x) << 16) & CICR3_EFW) /* End-of-frame line clock wait count */
158 #define CICR3_VSW_VAL(x) (((x) << 11) & CICR3_VSW) /* Vertical sync pulse width */
159 #define CICR3_LPF_VAL(x) (((x) << 0) & CICR3_LPF) /* Lines per frame */
161 #define CICR0_IRQ_MASK (CICR0_TOM | CICR0_RDAVM | CICR0_FEM | CICR0_EOLM | \
162 CICR0_PERRM | CICR0_QDM | CICR0_CDM | CICR0_SOFM | \
163 CICR0_EOFM | CICR0_FOM)
168 enum pxa_camera_active_dma
{
174 /* descriptor needed for the PXA DMA engine */
177 struct pxa_dma_desc
*sg_cpu
;
182 /* buffer for one video frame */
184 /* common v4l buffer stuff -- must be first */
185 struct videobuf_buffer vb
;
187 const struct soc_camera_data_format
*fmt
;
189 /* our descriptor lists for Y, U and V channels */
190 struct pxa_cam_dma dmas
[3];
194 enum pxa_camera_active_dma active_dma
;
197 struct pxa_camera_dev
{
198 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 */
202 struct soc_camera_device
*icd
;
209 unsigned int dma_chans
[3];
211 struct pxacamera_platform_data
*pdata
;
212 struct resource
*res
;
213 unsigned long platform_flags
;
218 struct list_head capture
;
222 struct pxa_buffer
*active
;
223 struct pxa_dma_desc
*sg_tail
[3];
232 static const char *pxa_cam_driver_description
= "PXA_Camera";
234 static unsigned int vid_limit
= 16; /* Video memory limit, in Mb */
237 * Videobuf operations
239 static int pxa_videobuf_setup(struct videobuf_queue
*vq
, unsigned int *count
,
242 struct soc_camera_device
*icd
= vq
->priv_data
;
244 dev_dbg(icd
->dev
.parent
, "count=%d, size=%d\n", *count
, *size
);
246 *size
= roundup(icd
->user_width
* icd
->user_height
*
247 ((icd
->current_fmt
->depth
+ 7) >> 3), 8);
251 while (*size
* *count
> vid_limit
* 1024 * 1024)
257 static void free_buffer(struct videobuf_queue
*vq
, struct pxa_buffer
*buf
)
259 struct soc_camera_device
*icd
= vq
->priv_data
;
260 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
261 struct videobuf_dmabuf
*dma
= videobuf_to_dma(&buf
->vb
);
264 BUG_ON(in_interrupt());
266 dev_dbg(icd
->dev
.parent
, "%s (vb=0x%p) 0x%08lx %d\n", __func__
,
267 &buf
->vb
, buf
->vb
.baddr
, buf
->vb
.bsize
);
269 /* This waits until this buffer is out of danger, i.e., until it is no
270 * longer in STATE_QUEUED or STATE_ACTIVE */
271 videobuf_waiton(&buf
->vb
, 0, 0);
272 videobuf_dma_unmap(vq
, dma
);
273 videobuf_dma_free(dma
);
275 for (i
= 0; i
< ARRAY_SIZE(buf
->dmas
); i
++) {
276 if (buf
->dmas
[i
].sg_cpu
)
277 dma_free_coherent(ici
->v4l2_dev
.dev
,
278 buf
->dmas
[i
].sg_size
,
280 buf
->dmas
[i
].sg_dma
);
281 buf
->dmas
[i
].sg_cpu
= NULL
;
284 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
287 static int calculate_dma_sglen(struct scatterlist
*sglist
, int sglen
,
288 int sg_first_ofs
, int size
)
290 int i
, offset
, dma_len
, xfer_len
;
291 struct scatterlist
*sg
;
293 offset
= sg_first_ofs
;
294 for_each_sg(sglist
, sg
, sglen
, i
) {
295 dma_len
= sg_dma_len(sg
);
297 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
298 xfer_len
= roundup(min(dma_len
- offset
, size
), 8);
300 size
= max(0, size
- xfer_len
);
311 * pxa_init_dma_channel - init dma descriptors
312 * @pcdev: pxa camera device
313 * @buf: pxa buffer to find pxa dma channel
314 * @dma: dma video buffer
315 * @channel: dma channel (0 => 'Y', 1 => 'U', 2 => 'V')
316 * @cibr: camera Receive Buffer Register
317 * @size: bytes to transfer
318 * @sg_first: first element of sg_list
319 * @sg_first_ofs: offset in first element of sg_list
321 * Prepares the pxa dma descriptors to transfer one camera channel.
322 * Beware sg_first and sg_first_ofs are both input and output parameters.
324 * Returns 0 or -ENOMEM if no coherent memory is available
326 static int pxa_init_dma_channel(struct pxa_camera_dev
*pcdev
,
327 struct pxa_buffer
*buf
,
328 struct videobuf_dmabuf
*dma
, int channel
,
330 struct scatterlist
**sg_first
, int *sg_first_ofs
)
332 struct pxa_cam_dma
*pxa_dma
= &buf
->dmas
[channel
];
333 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
334 struct scatterlist
*sg
;
335 int i
, offset
, sglen
;
336 int dma_len
= 0, xfer_len
= 0;
339 dma_free_coherent(dev
, pxa_dma
->sg_size
,
340 pxa_dma
->sg_cpu
, pxa_dma
->sg_dma
);
342 sglen
= calculate_dma_sglen(*sg_first
, dma
->sglen
,
343 *sg_first_ofs
, size
);
345 pxa_dma
->sg_size
= (sglen
+ 1) * sizeof(struct pxa_dma_desc
);
346 pxa_dma
->sg_cpu
= dma_alloc_coherent(dev
, pxa_dma
->sg_size
,
347 &pxa_dma
->sg_dma
, GFP_KERNEL
);
348 if (!pxa_dma
->sg_cpu
)
351 pxa_dma
->sglen
= sglen
;
352 offset
= *sg_first_ofs
;
354 dev_dbg(dev
, "DMA: sg_first=%p, sglen=%d, ofs=%d, dma.desc=%x\n",
355 *sg_first
, sglen
, *sg_first_ofs
, pxa_dma
->sg_dma
);
358 for_each_sg(*sg_first
, sg
, sglen
, i
) {
359 dma_len
= sg_dma_len(sg
);
361 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
362 xfer_len
= roundup(min(dma_len
- offset
, size
), 8);
364 size
= max(0, size
- xfer_len
);
366 pxa_dma
->sg_cpu
[i
].dsadr
= pcdev
->res
->start
+ cibr
;
367 pxa_dma
->sg_cpu
[i
].dtadr
= sg_dma_address(sg
) + offset
;
368 pxa_dma
->sg_cpu
[i
].dcmd
=
369 DCMD_FLOWSRC
| DCMD_BURST8
| DCMD_INCTRGADDR
| xfer_len
;
372 pxa_dma
->sg_cpu
[i
].dcmd
|= DCMD_STARTIRQEN
;
374 pxa_dma
->sg_cpu
[i
].ddadr
=
375 pxa_dma
->sg_dma
+ (i
+ 1) * sizeof(struct pxa_dma_desc
);
377 dev_vdbg(dev
, "DMA: desc.%08x->@phys=0x%08x, len=%d\n",
378 pxa_dma
->sg_dma
+ i
* sizeof(struct pxa_dma_desc
),
379 sg_dma_address(sg
) + offset
, xfer_len
);
386 pxa_dma
->sg_cpu
[sglen
].ddadr
= DDADR_STOP
;
387 pxa_dma
->sg_cpu
[sglen
].dcmd
= DCMD_FLOWSRC
| DCMD_BURST8
| DCMD_ENDIRQEN
;
390 * Handle 1 special case :
391 * - in 3 planes (YUV422P format), we might finish with xfer_len equal
392 * to dma_len (end on PAGE boundary). In this case, the sg element
393 * for next plane should be the next after the last used to store the
394 * last scatter gather RAM page
396 if (xfer_len
>= dma_len
) {
397 *sg_first_ofs
= xfer_len
- dma_len
;
398 *sg_first
= sg_next(sg
);
400 *sg_first_ofs
= xfer_len
;
407 static void pxa_videobuf_set_actdma(struct pxa_camera_dev
*pcdev
,
408 struct pxa_buffer
*buf
)
410 buf
->active_dma
= DMA_Y
;
411 if (pcdev
->channels
== 3)
412 buf
->active_dma
|= DMA_U
| DMA_V
;
416 * Please check the DMA prepared buffer structure in :
417 * Documentation/video4linux/pxa_camera.txt
418 * Please check also in pxa_camera_check_link_miss() to understand why DMA chain
419 * modification while DMA chain is running will work anyway.
421 static int pxa_videobuf_prepare(struct videobuf_queue
*vq
,
422 struct videobuf_buffer
*vb
, enum v4l2_field field
)
424 struct soc_camera_device
*icd
= vq
->priv_data
;
425 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
426 struct pxa_camera_dev
*pcdev
= ici
->priv
;
427 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
428 struct pxa_buffer
*buf
= container_of(vb
, struct pxa_buffer
, vb
);
430 int size_y
, size_u
= 0, size_v
= 0;
432 dev_dbg(dev
, "%s (vb=0x%p) 0x%08lx %d\n", __func__
,
433 vb
, vb
->baddr
, vb
->bsize
);
435 /* Added list head initialization on alloc */
436 WARN_ON(!list_empty(&vb
->queue
));
439 /* This can be useful if you want to see if we actually fill
440 * the buffer with something */
441 memset((void *)vb
->baddr
, 0xaa, vb
->bsize
);
444 BUG_ON(NULL
== icd
->current_fmt
);
446 /* I think, in buf_prepare you only have to protect global data,
447 * the actual buffer is yours */
450 if (buf
->fmt
!= icd
->current_fmt
||
451 vb
->width
!= icd
->user_width
||
452 vb
->height
!= icd
->user_height
||
453 vb
->field
!= field
) {
454 buf
->fmt
= icd
->current_fmt
;
455 vb
->width
= icd
->user_width
;
456 vb
->height
= icd
->user_height
;
458 vb
->state
= VIDEOBUF_NEEDS_INIT
;
461 vb
->size
= vb
->width
* vb
->height
* ((buf
->fmt
->depth
+ 7) >> 3);
462 if (0 != vb
->baddr
&& vb
->bsize
< vb
->size
) {
467 if (vb
->state
== VIDEOBUF_NEEDS_INIT
) {
470 struct videobuf_dmabuf
*dma
= videobuf_to_dma(vb
);
471 struct scatterlist
*sg
;
473 ret
= videobuf_iolock(vq
, vb
, NULL
);
477 if (pcdev
->channels
== 3) {
479 size_u
= size_v
= size
/ 4;
486 /* init DMA for Y channel */
487 ret
= pxa_init_dma_channel(pcdev
, buf
, dma
, 0, CIBR0
, size_y
,
490 dev_err(dev
, "DMA initialization for Y/RGB failed\n");
494 /* init DMA for U channel */
496 ret
= pxa_init_dma_channel(pcdev
, buf
, dma
, 1, CIBR1
,
497 size_u
, &sg
, &next_ofs
);
499 dev_err(dev
, "DMA initialization for U failed\n");
503 /* init DMA for V channel */
505 ret
= pxa_init_dma_channel(pcdev
, buf
, dma
, 2, CIBR2
,
506 size_v
, &sg
, &next_ofs
);
508 dev_err(dev
, "DMA initialization for V failed\n");
512 vb
->state
= VIDEOBUF_PREPARED
;
516 pxa_videobuf_set_actdma(pcdev
, buf
);
521 dma_free_coherent(dev
, buf
->dmas
[1].sg_size
,
522 buf
->dmas
[1].sg_cpu
, buf
->dmas
[1].sg_dma
);
524 dma_free_coherent(dev
, buf
->dmas
[0].sg_size
,
525 buf
->dmas
[0].sg_cpu
, buf
->dmas
[0].sg_dma
);
527 free_buffer(vq
, buf
);
534 * pxa_dma_start_channels - start DMA channel for active buffer
535 * @pcdev: pxa camera device
537 * Initialize DMA channels to the beginning of the active video buffer, and
538 * start these channels.
540 static void pxa_dma_start_channels(struct pxa_camera_dev
*pcdev
)
543 struct pxa_buffer
*active
;
545 active
= pcdev
->active
;
547 for (i
= 0; i
< pcdev
->channels
; i
++) {
548 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
549 "%s (channel=%d) ddadr=%08x\n", __func__
,
550 i
, active
->dmas
[i
].sg_dma
);
551 DDADR(pcdev
->dma_chans
[i
]) = active
->dmas
[i
].sg_dma
;
552 DCSR(pcdev
->dma_chans
[i
]) = DCSR_RUN
;
556 static void pxa_dma_stop_channels(struct pxa_camera_dev
*pcdev
)
560 for (i
= 0; i
< pcdev
->channels
; i
++) {
561 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
562 "%s (channel=%d)\n", __func__
, i
);
563 DCSR(pcdev
->dma_chans
[i
]) = 0;
567 static void pxa_dma_add_tail_buf(struct pxa_camera_dev
*pcdev
,
568 struct pxa_buffer
*buf
)
571 struct pxa_dma_desc
*buf_last_desc
;
573 for (i
= 0; i
< pcdev
->channels
; i
++) {
574 buf_last_desc
= buf
->dmas
[i
].sg_cpu
+ buf
->dmas
[i
].sglen
;
575 buf_last_desc
->ddadr
= DDADR_STOP
;
577 if (pcdev
->sg_tail
[i
])
578 /* Link the new buffer to the old tail */
579 pcdev
->sg_tail
[i
]->ddadr
= buf
->dmas
[i
].sg_dma
;
581 /* Update the channel tail */
582 pcdev
->sg_tail
[i
] = buf_last_desc
;
587 * pxa_camera_start_capture - start video capturing
588 * @pcdev: camera device
590 * Launch capturing. DMA channels should not be active yet. They should get
591 * activated at the end of frame interrupt, to capture only whole frames, and
592 * never begin the capture of a partial frame.
594 static void pxa_camera_start_capture(struct pxa_camera_dev
*pcdev
)
596 unsigned long cicr0
, cifr
;
598 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
, "%s\n", __func__
);
599 /* Reset the FIFOs */
600 cifr
= __raw_readl(pcdev
->base
+ CIFR
) | CIFR_RESET_F
;
601 __raw_writel(cifr
, pcdev
->base
+ CIFR
);
602 /* Enable End-Of-Frame Interrupt */
603 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) | CICR0_ENB
;
604 cicr0
&= ~CICR0_EOFM
;
605 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
608 static void pxa_camera_stop_capture(struct pxa_camera_dev
*pcdev
)
612 pxa_dma_stop_channels(pcdev
);
614 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) & ~CICR0_ENB
;
615 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
617 pcdev
->active
= NULL
;
618 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
, "%s\n", __func__
);
621 /* Called under spinlock_irqsave(&pcdev->lock, ...) */
622 static void pxa_videobuf_queue(struct videobuf_queue
*vq
,
623 struct videobuf_buffer
*vb
)
625 struct soc_camera_device
*icd
= vq
->priv_data
;
626 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
627 struct pxa_camera_dev
*pcdev
= ici
->priv
;
628 struct pxa_buffer
*buf
= container_of(vb
, struct pxa_buffer
, vb
);
630 dev_dbg(icd
->dev
.parent
, "%s (vb=0x%p) 0x%08lx %d active=%p\n",
631 __func__
, vb
, vb
->baddr
, vb
->bsize
, pcdev
->active
);
633 list_add_tail(&vb
->queue
, &pcdev
->capture
);
635 vb
->state
= VIDEOBUF_ACTIVE
;
636 pxa_dma_add_tail_buf(pcdev
, buf
);
639 pxa_camera_start_capture(pcdev
);
642 static void pxa_videobuf_release(struct videobuf_queue
*vq
,
643 struct videobuf_buffer
*vb
)
645 struct pxa_buffer
*buf
= container_of(vb
, struct pxa_buffer
, vb
);
647 struct soc_camera_device
*icd
= vq
->priv_data
;
648 struct device
*dev
= icd
->dev
.parent
;
650 dev_dbg(dev
, "%s (vb=0x%p) 0x%08lx %d\n", __func__
,
651 vb
, vb
->baddr
, vb
->bsize
);
654 case VIDEOBUF_ACTIVE
:
655 dev_dbg(dev
, "%s (active)\n", __func__
);
657 case VIDEOBUF_QUEUED
:
658 dev_dbg(dev
, "%s (queued)\n", __func__
);
660 case VIDEOBUF_PREPARED
:
661 dev_dbg(dev
, "%s (prepared)\n", __func__
);
664 dev_dbg(dev
, "%s (unknown)\n", __func__
);
669 free_buffer(vq
, buf
);
672 static void pxa_camera_wakeup(struct pxa_camera_dev
*pcdev
,
673 struct videobuf_buffer
*vb
,
674 struct pxa_buffer
*buf
)
678 /* _init is used to debug races, see comment in pxa_camera_reqbufs() */
679 list_del_init(&vb
->queue
);
680 vb
->state
= VIDEOBUF_DONE
;
681 do_gettimeofday(&vb
->ts
);
684 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
, "%s dequeud buffer (vb=0x%p)\n",
687 if (list_empty(&pcdev
->capture
)) {
688 pxa_camera_stop_capture(pcdev
);
689 for (i
= 0; i
< pcdev
->channels
; i
++)
690 pcdev
->sg_tail
[i
] = NULL
;
694 pcdev
->active
= list_entry(pcdev
->capture
.next
,
695 struct pxa_buffer
, vb
.queue
);
699 * pxa_camera_check_link_miss - check missed DMA linking
700 * @pcdev: camera device
702 * The DMA chaining is done with DMA running. This means a tiny temporal window
703 * remains, where a buffer is queued on the chain, while the chain is already
704 * stopped. This means the tailed buffer would never be transfered by DMA.
705 * This function restarts the capture for this corner case, where :
706 * - DADR() == DADDR_STOP
707 * - a videobuffer is queued on the pcdev->capture list
709 * Please check the "DMA hot chaining timeslice issue" in
710 * Documentation/video4linux/pxa_camera.txt
712 * Context: should only be called within the dma irq handler
714 static void pxa_camera_check_link_miss(struct pxa_camera_dev
*pcdev
)
716 int i
, is_dma_stopped
= 1;
718 for (i
= 0; i
< pcdev
->channels
; i
++)
719 if (DDADR(pcdev
->dma_chans
[i
]) != DDADR_STOP
)
721 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
722 "%s : top queued buffer=%p, dma_stopped=%d\n",
723 __func__
, pcdev
->active
, is_dma_stopped
);
724 if (pcdev
->active
&& is_dma_stopped
)
725 pxa_camera_start_capture(pcdev
);
728 static void pxa_camera_dma_irq(int channel
, struct pxa_camera_dev
*pcdev
,
729 enum pxa_camera_active_dma act_dma
)
731 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
732 struct pxa_buffer
*buf
;
734 u32 status
, camera_status
, overrun
;
735 struct videobuf_buffer
*vb
;
737 spin_lock_irqsave(&pcdev
->lock
, flags
);
739 status
= DCSR(channel
);
740 DCSR(channel
) = status
;
742 camera_status
= __raw_readl(pcdev
->base
+ CISR
);
743 overrun
= CISR_IFO_0
;
744 if (pcdev
->channels
== 3)
745 overrun
|= CISR_IFO_1
| CISR_IFO_2
;
747 if (status
& DCSR_BUSERR
) {
748 dev_err(dev
, "DMA Bus Error IRQ!\n");
752 if (!(status
& (DCSR_ENDINTR
| DCSR_STARTINTR
))) {
753 dev_err(dev
, "Unknown DMA IRQ source, status: 0x%08x\n",
759 * pcdev->active should not be NULL in DMA irq handler.
761 * But there is one corner case : if capture was stopped due to an
762 * overrun of channel 1, and at that same channel 2 was completed.
764 * When handling the overrun in DMA irq for channel 1, we'll stop the
765 * capture and restart it (and thus set pcdev->active to NULL). But the
766 * DMA irq handler will already be pending for channel 2. So on entering
767 * the DMA irq handler for channel 2 there will be no active buffer, yet
773 vb
= &pcdev
->active
->vb
;
774 buf
= container_of(vb
, struct pxa_buffer
, vb
);
775 WARN_ON(buf
->inwork
|| list_empty(&vb
->queue
));
777 dev_dbg(dev
, "%s channel=%d %s%s(vb=0x%p) dma.desc=%x\n",
778 __func__
, channel
, status
& DCSR_STARTINTR
? "SOF " : "",
779 status
& DCSR_ENDINTR
? "EOF " : "", vb
, DDADR(channel
));
781 if (status
& DCSR_ENDINTR
) {
783 * It's normal if the last frame creates an overrun, as there
784 * are no more DMA descriptors to fetch from QCI fifos
786 if (camera_status
& overrun
&&
787 !list_is_last(pcdev
->capture
.next
, &pcdev
->capture
)) {
788 dev_dbg(dev
, "FIFO overrun! CISR: %x\n",
790 pxa_camera_stop_capture(pcdev
);
791 pxa_camera_start_capture(pcdev
);
794 buf
->active_dma
&= ~act_dma
;
795 if (!buf
->active_dma
) {
796 pxa_camera_wakeup(pcdev
, vb
, buf
);
797 pxa_camera_check_link_miss(pcdev
);
802 spin_unlock_irqrestore(&pcdev
->lock
, flags
);
805 static void pxa_camera_dma_irq_y(int channel
, void *data
)
807 struct pxa_camera_dev
*pcdev
= data
;
808 pxa_camera_dma_irq(channel
, pcdev
, DMA_Y
);
811 static void pxa_camera_dma_irq_u(int channel
, void *data
)
813 struct pxa_camera_dev
*pcdev
= data
;
814 pxa_camera_dma_irq(channel
, pcdev
, DMA_U
);
817 static void pxa_camera_dma_irq_v(int channel
, void *data
)
819 struct pxa_camera_dev
*pcdev
= data
;
820 pxa_camera_dma_irq(channel
, pcdev
, DMA_V
);
823 static struct videobuf_queue_ops pxa_videobuf_ops
= {
824 .buf_setup
= pxa_videobuf_setup
,
825 .buf_prepare
= pxa_videobuf_prepare
,
826 .buf_queue
= pxa_videobuf_queue
,
827 .buf_release
= pxa_videobuf_release
,
830 static void pxa_camera_init_videobuf(struct videobuf_queue
*q
,
831 struct soc_camera_device
*icd
)
833 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
834 struct pxa_camera_dev
*pcdev
= ici
->priv
;
836 /* We must pass NULL as dev pointer, then all pci_* dma operations
837 * transform to normal dma_* ones. */
838 videobuf_queue_sg_init(q
, &pxa_videobuf_ops
, NULL
, &pcdev
->lock
,
839 V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FIELD_NONE
,
840 sizeof(struct pxa_buffer
), icd
);
843 static u32
mclk_get_divisor(struct platform_device
*pdev
,
844 struct pxa_camera_dev
*pcdev
)
846 unsigned long mclk
= pcdev
->mclk
;
847 struct device
*dev
= &pdev
->dev
;
849 unsigned long lcdclk
;
851 lcdclk
= clk_get_rate(pcdev
->clk
);
852 pcdev
->ciclk
= lcdclk
;
854 /* mclk <= ciclk / 4 (27.4.2) */
855 if (mclk
> lcdclk
/ 4) {
857 dev_warn(dev
, "Limiting master clock to %lu\n", mclk
);
860 /* We verify mclk != 0, so if anyone breaks it, here comes their Oops */
861 div
= (lcdclk
+ 2 * mclk
- 1) / (2 * mclk
) - 1;
863 /* If we're not supplying MCLK, leave it at 0 */
864 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
865 pcdev
->mclk
= lcdclk
/ (2 * (div
+ 1));
867 dev_dbg(dev
, "LCD clock %luHz, target freq %luHz, divisor %u\n",
873 static void recalculate_fifo_timeout(struct pxa_camera_dev
*pcdev
,
876 /* We want a timeout > 1 pixel time, not ">=" */
877 u32 ciclk_per_pixel
= pcdev
->ciclk
/ pclk
+ 1;
879 __raw_writel(ciclk_per_pixel
, pcdev
->base
+ CITOR
);
882 static void pxa_camera_activate(struct pxa_camera_dev
*pcdev
)
884 struct pxacamera_platform_data
*pdata
= pcdev
->pdata
;
885 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
888 dev_dbg(dev
, "Registered platform device at %p data %p\n",
891 if (pdata
&& pdata
->init
) {
892 dev_dbg(dev
, "%s: Init gpios\n", __func__
);
896 /* disable all interrupts */
897 __raw_writel(0x3ff, pcdev
->base
+ CICR0
);
899 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
900 cicr4
|= CICR4_PCLK_EN
;
901 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
902 cicr4
|= CICR4_MCLK_EN
;
903 if (pcdev
->platform_flags
& PXA_CAMERA_PCP
)
905 if (pcdev
->platform_flags
& PXA_CAMERA_HSP
)
907 if (pcdev
->platform_flags
& PXA_CAMERA_VSP
)
910 __raw_writel(pcdev
->mclk_divisor
| cicr4
, pcdev
->base
+ CICR4
);
912 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
913 /* Initialise the timeout under the assumption pclk = mclk */
914 recalculate_fifo_timeout(pcdev
, pcdev
->mclk
);
916 /* "Safe default" - 13MHz */
917 recalculate_fifo_timeout(pcdev
, 13000000);
919 clk_enable(pcdev
->clk
);
922 static void pxa_camera_deactivate(struct pxa_camera_dev
*pcdev
)
924 clk_disable(pcdev
->clk
);
927 static irqreturn_t
pxa_camera_irq(int irq
, void *data
)
929 struct pxa_camera_dev
*pcdev
= data
;
930 unsigned long status
, cicr0
;
931 struct pxa_buffer
*buf
;
932 struct videobuf_buffer
*vb
;
934 status
= __raw_readl(pcdev
->base
+ CISR
);
935 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
936 "Camera interrupt status 0x%lx\n", status
);
941 __raw_writel(status
, pcdev
->base
+ CISR
);
943 if (status
& CISR_EOF
) {
944 pcdev
->active
= list_first_entry(&pcdev
->capture
,
945 struct pxa_buffer
, vb
.queue
);
946 vb
= &pcdev
->active
->vb
;
947 buf
= container_of(vb
, struct pxa_buffer
, vb
);
948 pxa_videobuf_set_actdma(pcdev
, buf
);
950 pxa_dma_start_channels(pcdev
);
952 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) | CICR0_EOFM
;
953 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
960 * The following two functions absolutely depend on the fact, that
961 * there can be only one camera on PXA quick capture interface
962 * Called with .video_lock held
964 static int pxa_camera_add_device(struct soc_camera_device
*icd
)
966 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
967 struct pxa_camera_dev
*pcdev
= ici
->priv
;
972 pxa_camera_activate(pcdev
);
976 dev_info(icd
->dev
.parent
, "PXA Camera driver attached to camera %d\n",
982 /* Called with .video_lock held */
983 static void pxa_camera_remove_device(struct soc_camera_device
*icd
)
985 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
986 struct pxa_camera_dev
*pcdev
= ici
->priv
;
988 BUG_ON(icd
!= pcdev
->icd
);
990 dev_info(icd
->dev
.parent
, "PXA Camera driver detached from camera %d\n",
993 /* disable capture, disable interrupts */
994 __raw_writel(0x3ff, pcdev
->base
+ CICR0
);
996 /* Stop DMA engine */
997 DCSR(pcdev
->dma_chans
[0]) = 0;
998 DCSR(pcdev
->dma_chans
[1]) = 0;
999 DCSR(pcdev
->dma_chans
[2]) = 0;
1001 pxa_camera_deactivate(pcdev
);
1006 static int test_platform_param(struct pxa_camera_dev
*pcdev
,
1007 unsigned char buswidth
, unsigned long *flags
)
1010 * Platform specified synchronization and pixel clock polarities are
1011 * only a recommendation and are only used during probing. The PXA270
1012 * quick capture interface supports both.
1014 *flags
= (pcdev
->platform_flags
& PXA_CAMERA_MASTER
?
1015 SOCAM_MASTER
: SOCAM_SLAVE
) |
1016 SOCAM_HSYNC_ACTIVE_HIGH
|
1017 SOCAM_HSYNC_ACTIVE_LOW
|
1018 SOCAM_VSYNC_ACTIVE_HIGH
|
1019 SOCAM_VSYNC_ACTIVE_LOW
|
1020 SOCAM_DATA_ACTIVE_HIGH
|
1021 SOCAM_PCLK_SAMPLE_RISING
|
1022 SOCAM_PCLK_SAMPLE_FALLING
;
1024 /* If requested data width is supported by the platform, use it */
1027 if (!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_10
))
1029 *flags
|= SOCAM_DATAWIDTH_10
;
1032 if (!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_9
))
1034 *flags
|= SOCAM_DATAWIDTH_9
;
1037 if (!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_8
))
1039 *flags
|= SOCAM_DATAWIDTH_8
;
1048 static void pxa_camera_setup_cicr(struct soc_camera_device
*icd
,
1049 unsigned long flags
, __u32 pixfmt
)
1051 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1052 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1053 unsigned long dw
, bpp
;
1054 u32 cicr0
, cicr1
, cicr2
, cicr3
, cicr4
= 0;
1056 /* Datawidth is now guaranteed to be equal to one of the three values.
1057 * We fix bit-per-pixel equal to data-width... */
1058 switch (flags
& SOCAM_DATAWIDTH_MASK
) {
1059 case SOCAM_DATAWIDTH_10
:
1063 case SOCAM_DATAWIDTH_9
:
1068 /* Actually it can only be 8 now,
1069 * default is just to silence compiler warnings */
1070 case SOCAM_DATAWIDTH_8
:
1075 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1076 cicr4
|= CICR4_PCLK_EN
;
1077 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
1078 cicr4
|= CICR4_MCLK_EN
;
1079 if (flags
& SOCAM_PCLK_SAMPLE_FALLING
)
1081 if (flags
& SOCAM_HSYNC_ACTIVE_LOW
)
1083 if (flags
& SOCAM_VSYNC_ACTIVE_LOW
)
1086 cicr0
= __raw_readl(pcdev
->base
+ CICR0
);
1087 if (cicr0
& CICR0_ENB
)
1088 __raw_writel(cicr0
& ~CICR0_ENB
, pcdev
->base
+ CICR0
);
1090 cicr1
= CICR1_PPL_VAL(icd
->user_width
- 1) | bpp
| dw
;
1093 case V4L2_PIX_FMT_YUV422P
:
1094 pcdev
->channels
= 3;
1095 cicr1
|= CICR1_YCBCR_F
;
1097 * Normally, pxa bus wants as input UYVY format. We allow all
1098 * reorderings of the YUV422 format, as no processing is done,
1099 * and the YUV stream is just passed through without any
1100 * transformation. Note that UYVY is the only format that
1101 * should be used if pxa framebuffer Overlay2 is used.
1103 case V4L2_PIX_FMT_UYVY
:
1104 case V4L2_PIX_FMT_VYUY
:
1105 case V4L2_PIX_FMT_YUYV
:
1106 case V4L2_PIX_FMT_YVYU
:
1107 cicr1
|= CICR1_COLOR_SP_VAL(2);
1109 case V4L2_PIX_FMT_RGB555
:
1110 cicr1
|= CICR1_RGB_BPP_VAL(1) | CICR1_RGBT_CONV_VAL(2) |
1111 CICR1_TBIT
| CICR1_COLOR_SP_VAL(1);
1113 case V4L2_PIX_FMT_RGB565
:
1114 cicr1
|= CICR1_COLOR_SP_VAL(1) | CICR1_RGB_BPP_VAL(2);
1119 cicr3
= CICR3_LPF_VAL(icd
->user_height
- 1) |
1120 CICR3_BFW_VAL(min((unsigned short)255, icd
->y_skip_top
));
1121 cicr4
|= pcdev
->mclk_divisor
;
1123 __raw_writel(cicr1
, pcdev
->base
+ CICR1
);
1124 __raw_writel(cicr2
, pcdev
->base
+ CICR2
);
1125 __raw_writel(cicr3
, pcdev
->base
+ CICR3
);
1126 __raw_writel(cicr4
, pcdev
->base
+ CICR4
);
1128 /* CIF interrupts are not used, only DMA */
1129 cicr0
= (cicr0
& CICR0_ENB
) | (pcdev
->platform_flags
& PXA_CAMERA_MASTER
?
1130 CICR0_SIM_MP
: (CICR0_SL_CAP_EN
| CICR0_SIM_SP
));
1131 cicr0
|= CICR0_DMAEN
| CICR0_IRQ_MASK
;
1132 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
1135 static int pxa_camera_set_bus_param(struct soc_camera_device
*icd
, __u32 pixfmt
)
1137 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1138 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1139 unsigned long bus_flags
, camera_flags
, common_flags
;
1140 int ret
= test_platform_param(pcdev
, icd
->buswidth
, &bus_flags
);
1141 struct pxa_cam
*cam
= icd
->host_priv
;
1146 camera_flags
= icd
->ops
->query_bus_param(icd
);
1148 common_flags
= soc_camera_bus_param_compatible(camera_flags
, bus_flags
);
1152 pcdev
->channels
= 1;
1154 /* Make choises, based on platform preferences */
1155 if ((common_flags
& SOCAM_HSYNC_ACTIVE_HIGH
) &&
1156 (common_flags
& SOCAM_HSYNC_ACTIVE_LOW
)) {
1157 if (pcdev
->platform_flags
& PXA_CAMERA_HSP
)
1158 common_flags
&= ~SOCAM_HSYNC_ACTIVE_HIGH
;
1160 common_flags
&= ~SOCAM_HSYNC_ACTIVE_LOW
;
1163 if ((common_flags
& SOCAM_VSYNC_ACTIVE_HIGH
) &&
1164 (common_flags
& SOCAM_VSYNC_ACTIVE_LOW
)) {
1165 if (pcdev
->platform_flags
& PXA_CAMERA_VSP
)
1166 common_flags
&= ~SOCAM_VSYNC_ACTIVE_HIGH
;
1168 common_flags
&= ~SOCAM_VSYNC_ACTIVE_LOW
;
1171 if ((common_flags
& SOCAM_PCLK_SAMPLE_RISING
) &&
1172 (common_flags
& SOCAM_PCLK_SAMPLE_FALLING
)) {
1173 if (pcdev
->platform_flags
& PXA_CAMERA_PCP
)
1174 common_flags
&= ~SOCAM_PCLK_SAMPLE_RISING
;
1176 common_flags
&= ~SOCAM_PCLK_SAMPLE_FALLING
;
1179 cam
->flags
= common_flags
;
1181 ret
= icd
->ops
->set_bus_param(icd
, common_flags
);
1185 pxa_camera_setup_cicr(icd
, common_flags
, pixfmt
);
1190 static int pxa_camera_try_bus_param(struct soc_camera_device
*icd
,
1191 unsigned char buswidth
)
1193 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1194 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1195 unsigned long bus_flags
, camera_flags
;
1196 int ret
= test_platform_param(pcdev
, buswidth
, &bus_flags
);
1201 camera_flags
= icd
->ops
->query_bus_param(icd
);
1203 return soc_camera_bus_param_compatible(camera_flags
, bus_flags
) ? 0 : -EINVAL
;
1206 static const struct soc_camera_data_format pxa_camera_formats
[] = {
1208 .name
= "Planar YUV422 16 bit",
1210 .fourcc
= V4L2_PIX_FMT_YUV422P
,
1211 .colorspace
= V4L2_COLORSPACE_JPEG
,
1215 static bool buswidth_supported(struct soc_camera_device
*icd
, int depth
)
1217 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1218 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1222 return !!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_8
);
1224 return !!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_9
);
1226 return !!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_10
);
1231 static int required_buswidth(const struct soc_camera_data_format
*fmt
)
1233 switch (fmt
->fourcc
) {
1234 case V4L2_PIX_FMT_UYVY
:
1235 case V4L2_PIX_FMT_VYUY
:
1236 case V4L2_PIX_FMT_YUYV
:
1237 case V4L2_PIX_FMT_YVYU
:
1238 case V4L2_PIX_FMT_RGB565
:
1239 case V4L2_PIX_FMT_RGB555
:
1246 static int pxa_camera_get_formats(struct soc_camera_device
*icd
, int idx
,
1247 struct soc_camera_format_xlate
*xlate
)
1249 struct device
*dev
= icd
->dev
.parent
;
1250 int formats
= 0, buswidth
, ret
;
1251 struct pxa_cam
*cam
;
1253 buswidth
= required_buswidth(icd
->formats
+ idx
);
1255 if (!buswidth_supported(icd
, buswidth
))
1258 ret
= pxa_camera_try_bus_param(icd
, buswidth
);
1262 if (!icd
->host_priv
) {
1263 cam
= kzalloc(sizeof(*cam
), GFP_KERNEL
);
1267 icd
->host_priv
= cam
;
1269 cam
= icd
->host_priv
;
1272 switch (icd
->formats
[idx
].fourcc
) {
1273 case V4L2_PIX_FMT_UYVY
:
1276 xlate
->host_fmt
= &pxa_camera_formats
[0];
1277 xlate
->cam_fmt
= icd
->formats
+ idx
;
1278 xlate
->buswidth
= buswidth
;
1280 dev_dbg(dev
, "Providing format %s using %s\n",
1281 pxa_camera_formats
[0].name
,
1282 icd
->formats
[idx
].name
);
1284 case V4L2_PIX_FMT_VYUY
:
1285 case V4L2_PIX_FMT_YUYV
:
1286 case V4L2_PIX_FMT_YVYU
:
1287 case V4L2_PIX_FMT_RGB565
:
1288 case V4L2_PIX_FMT_RGB555
:
1291 xlate
->host_fmt
= icd
->formats
+ idx
;
1292 xlate
->cam_fmt
= icd
->formats
+ idx
;
1293 xlate
->buswidth
= buswidth
;
1295 dev_dbg(dev
, "Providing format %s packed\n",
1296 icd
->formats
[idx
].name
);
1300 /* Generic pass-through */
1303 xlate
->host_fmt
= icd
->formats
+ idx
;
1304 xlate
->cam_fmt
= icd
->formats
+ idx
;
1305 xlate
->buswidth
= icd
->formats
[idx
].depth
;
1308 "Providing format %s in pass-through mode\n",
1309 icd
->formats
[idx
].name
);
1316 static void pxa_camera_put_formats(struct soc_camera_device
*icd
)
1318 kfree(icd
->host_priv
);
1319 icd
->host_priv
= NULL
;
1322 static int pxa_camera_check_frame(struct v4l2_pix_format
*pix
)
1324 /* limit to pxa hardware capabilities */
1325 return pix
->height
< 32 || pix
->height
> 2048 || pix
->width
< 48 ||
1326 pix
->width
> 2048 || (pix
->width
& 0x01);
1329 static int pxa_camera_set_crop(struct soc_camera_device
*icd
,
1330 struct v4l2_crop
*a
)
1332 struct v4l2_rect
*rect
= &a
->c
;
1333 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1334 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1335 struct device
*dev
= icd
->dev
.parent
;
1336 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1337 struct soc_camera_sense sense
= {
1338 .master_clock
= pcdev
->mclk
,
1339 .pixel_clock_max
= pcdev
->ciclk
/ 4,
1341 struct v4l2_format f
;
1342 struct v4l2_pix_format
*pix
= &f
.fmt
.pix
, pix_tmp
;
1343 struct pxa_cam
*cam
= icd
->host_priv
;
1346 /* If PCLK is used to latch data from the sensor, check sense */
1347 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1348 icd
->sense
= &sense
;
1350 ret
= v4l2_subdev_call(sd
, video
, s_crop
, a
);
1355 dev_warn(dev
, "Failed to crop to %ux%u@%u:%u\n",
1356 rect
->width
, rect
->height
, rect
->left
, rect
->top
);
1360 f
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1362 ret
= v4l2_subdev_call(sd
, video
, g_fmt
, &f
);
1367 if (pxa_camera_check_frame(pix
)) {
1369 * Camera cropping produced a frame beyond our capabilities.
1370 * FIXME: just extract a subframe, that we can process.
1372 v4l_bound_align_image(&pix
->width
, 48, 2048, 1,
1373 &pix
->height
, 32, 2048, 0,
1374 icd
->current_fmt
->fourcc
== V4L2_PIX_FMT_YUV422P
?
1376 ret
= v4l2_subdev_call(sd
, video
, s_fmt
, &f
);
1380 if (pxa_camera_check_frame(pix
)) {
1381 dev_warn(icd
->dev
.parent
,
1382 "Inconsistent state. Use S_FMT to repair\n");
1387 if (sense
.flags
& SOCAM_SENSE_PCLK_CHANGED
) {
1388 if (sense
.pixel_clock
> sense
.pixel_clock_max
) {
1390 "pixel clock %lu set by the camera too high!",
1394 recalculate_fifo_timeout(pcdev
, sense
.pixel_clock
);
1397 icd
->user_width
= pix
->width
;
1398 icd
->user_height
= pix
->height
;
1400 pxa_camera_setup_cicr(icd
, cam
->flags
, icd
->current_fmt
->fourcc
);
1405 static int pxa_camera_set_fmt(struct soc_camera_device
*icd
,
1406 struct v4l2_format
*f
)
1408 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1409 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1410 struct device
*dev
= icd
->dev
.parent
;
1411 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1412 const struct soc_camera_data_format
*cam_fmt
= NULL
;
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_format cam_f
= *f
;
1422 xlate
= soc_camera_xlate_by_fourcc(icd
, pix
->pixelformat
);
1424 dev_warn(dev
, "Format %x not found\n", pix
->pixelformat
);
1428 cam_fmt
= xlate
->cam_fmt
;
1430 /* If PCLK is used to latch data from the sensor, check sense */
1431 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1432 icd
->sense
= &sense
;
1434 cam_f
.fmt
.pix
.pixelformat
= cam_fmt
->fourcc
;
1435 ret
= v4l2_subdev_call(sd
, video
, s_fmt
, f
);
1440 dev_warn(dev
, "Failed to configure for format %x\n",
1442 } else if (pxa_camera_check_frame(pix
)) {
1444 "Camera driver produced an unsupported frame %dx%d\n",
1445 pix
->width
, pix
->height
);
1447 } else if (sense
.flags
& SOCAM_SENSE_PCLK_CHANGED
) {
1448 if (sense
.pixel_clock
> sense
.pixel_clock_max
) {
1450 "pixel clock %lu set by the camera too high!",
1454 recalculate_fifo_timeout(pcdev
, sense
.pixel_clock
);
1458 icd
->buswidth
= xlate
->buswidth
;
1459 icd
->current_fmt
= xlate
->host_fmt
;
1465 static int pxa_camera_try_fmt(struct soc_camera_device
*icd
,
1466 struct v4l2_format
*f
)
1468 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1469 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1470 const struct soc_camera_format_xlate
*xlate
;
1471 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1472 __u32 pixfmt
= pix
->pixelformat
;
1473 enum v4l2_field field
;
1476 xlate
= soc_camera_xlate_by_fourcc(icd
, pixfmt
);
1478 dev_warn(ici
->v4l2_dev
.dev
, "Format %x not found\n", pixfmt
);
1483 * Limit to pxa hardware capabilities. YUV422P planar format requires
1484 * images size to be a multiple of 16 bytes. If not, zeros will be
1485 * inserted between Y and U planes, and U and V planes, which violates
1486 * the YUV422P standard.
1488 v4l_bound_align_image(&pix
->width
, 48, 2048, 1,
1489 &pix
->height
, 32, 2048, 0,
1490 pixfmt
== V4L2_PIX_FMT_YUV422P
? 4 : 0);
1492 pix
->bytesperline
= pix
->width
*
1493 DIV_ROUND_UP(xlate
->host_fmt
->depth
, 8);
1494 pix
->sizeimage
= pix
->height
* pix
->bytesperline
;
1496 /* camera has to see its format, but the user the original one */
1497 pix
->pixelformat
= xlate
->cam_fmt
->fourcc
;
1498 /* limit to sensor capabilities */
1499 ret
= v4l2_subdev_call(sd
, video
, try_fmt
, f
);
1500 pix
->pixelformat
= pixfmt
;
1504 if (field
== V4L2_FIELD_ANY
) {
1505 pix
->field
= V4L2_FIELD_NONE
;
1506 } else if (field
!= V4L2_FIELD_NONE
) {
1507 dev_err(icd
->dev
.parent
, "Field type %d unsupported.\n", field
);
1514 static int pxa_camera_reqbufs(struct soc_camera_file
*icf
,
1515 struct v4l2_requestbuffers
*p
)
1519 /* This is for locking debugging only. I removed spinlocks and now I
1520 * check whether .prepare is ever called on a linked buffer, or whether
1521 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
1522 * it hadn't triggered */
1523 for (i
= 0; i
< p
->count
; i
++) {
1524 struct pxa_buffer
*buf
= container_of(icf
->vb_vidq
.bufs
[i
],
1525 struct pxa_buffer
, vb
);
1527 INIT_LIST_HEAD(&buf
->vb
.queue
);
1533 static unsigned int pxa_camera_poll(struct file
*file
, poll_table
*pt
)
1535 struct soc_camera_file
*icf
= file
->private_data
;
1536 struct pxa_buffer
*buf
;
1538 buf
= list_entry(icf
->vb_vidq
.stream
.next
, struct pxa_buffer
,
1541 poll_wait(file
, &buf
->vb
.done
, pt
);
1543 if (buf
->vb
.state
== VIDEOBUF_DONE
||
1544 buf
->vb
.state
== VIDEOBUF_ERROR
)
1545 return POLLIN
|POLLRDNORM
;
1550 static int pxa_camera_querycap(struct soc_camera_host
*ici
,
1551 struct v4l2_capability
*cap
)
1553 /* cap->name is set by the firendly caller:-> */
1554 strlcpy(cap
->card
, pxa_cam_driver_description
, sizeof(cap
->card
));
1555 cap
->version
= PXA_CAM_VERSION_CODE
;
1556 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
1561 static int pxa_camera_suspend(struct soc_camera_device
*icd
, pm_message_t state
)
1563 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1564 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1567 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR0
);
1568 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR1
);
1569 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR2
);
1570 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR3
);
1571 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR4
);
1573 if ((pcdev
->icd
) && (pcdev
->icd
->ops
->suspend
))
1574 ret
= pcdev
->icd
->ops
->suspend(pcdev
->icd
, state
);
1579 static int pxa_camera_resume(struct soc_camera_device
*icd
)
1581 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1582 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1585 DRCMR(68) = pcdev
->dma_chans
[0] | DRCMR_MAPVLD
;
1586 DRCMR(69) = pcdev
->dma_chans
[1] | DRCMR_MAPVLD
;
1587 DRCMR(70) = pcdev
->dma_chans
[2] | DRCMR_MAPVLD
;
1589 __raw_writel(pcdev
->save_cicr
[i
++] & ~CICR0_ENB
, pcdev
->base
+ CICR0
);
1590 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR1
);
1591 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR2
);
1592 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR3
);
1593 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR4
);
1595 if ((pcdev
->icd
) && (pcdev
->icd
->ops
->resume
))
1596 ret
= pcdev
->icd
->ops
->resume(pcdev
->icd
);
1598 /* Restart frame capture if active buffer exists */
1599 if (!ret
&& pcdev
->active
)
1600 pxa_camera_start_capture(pcdev
);
1605 static struct soc_camera_host_ops pxa_soc_camera_host_ops
= {
1606 .owner
= THIS_MODULE
,
1607 .add
= pxa_camera_add_device
,
1608 .remove
= pxa_camera_remove_device
,
1609 .suspend
= pxa_camera_suspend
,
1610 .resume
= pxa_camera_resume
,
1611 .set_crop
= pxa_camera_set_crop
,
1612 .get_formats
= pxa_camera_get_formats
,
1613 .put_formats
= pxa_camera_put_formats
,
1614 .set_fmt
= pxa_camera_set_fmt
,
1615 .try_fmt
= pxa_camera_try_fmt
,
1616 .init_videobuf
= pxa_camera_init_videobuf
,
1617 .reqbufs
= pxa_camera_reqbufs
,
1618 .poll
= pxa_camera_poll
,
1619 .querycap
= pxa_camera_querycap
,
1620 .set_bus_param
= pxa_camera_set_bus_param
,
1623 static int __devinit
pxa_camera_probe(struct platform_device
*pdev
)
1625 struct pxa_camera_dev
*pcdev
;
1626 struct resource
*res
;
1631 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1632 irq
= platform_get_irq(pdev
, 0);
1633 if (!res
|| irq
< 0) {
1638 pcdev
= kzalloc(sizeof(*pcdev
), GFP_KERNEL
);
1640 dev_err(&pdev
->dev
, "Could not allocate pcdev\n");
1645 pcdev
->clk
= clk_get(&pdev
->dev
, NULL
);
1646 if (IS_ERR(pcdev
->clk
)) {
1647 err
= PTR_ERR(pcdev
->clk
);
1653 pcdev
->pdata
= pdev
->dev
.platform_data
;
1654 pcdev
->platform_flags
= pcdev
->pdata
->flags
;
1655 if (!(pcdev
->platform_flags
& (PXA_CAMERA_DATAWIDTH_8
|
1656 PXA_CAMERA_DATAWIDTH_9
| PXA_CAMERA_DATAWIDTH_10
))) {
1657 /* Platform hasn't set available data widths. This is bad.
1658 * Warn and use a default. */
1659 dev_warn(&pdev
->dev
, "WARNING! Platform hasn't set available "
1660 "data widths, using default 10 bit\n");
1661 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_10
;
1663 pcdev
->mclk
= pcdev
->pdata
->mclk_10khz
* 10000;
1665 dev_warn(&pdev
->dev
,
1666 "mclk == 0! Please, fix your platform data. "
1667 "Using default 20MHz\n");
1668 pcdev
->mclk
= 20000000;
1671 pcdev
->mclk_divisor
= mclk_get_divisor(pdev
, pcdev
);
1673 INIT_LIST_HEAD(&pcdev
->capture
);
1674 spin_lock_init(&pcdev
->lock
);
1677 * Request the regions.
1679 if (!request_mem_region(res
->start
, resource_size(res
),
1680 PXA_CAM_DRV_NAME
)) {
1685 base
= ioremap(res
->start
, resource_size(res
));
1694 err
= pxa_request_dma("CI_Y", DMA_PRIO_HIGH
,
1695 pxa_camera_dma_irq_y
, pcdev
);
1697 dev_err(&pdev
->dev
, "Can't request DMA for Y\n");
1700 pcdev
->dma_chans
[0] = err
;
1701 dev_dbg(&pdev
->dev
, "got DMA channel %d\n", pcdev
->dma_chans
[0]);
1703 err
= pxa_request_dma("CI_U", DMA_PRIO_HIGH
,
1704 pxa_camera_dma_irq_u
, pcdev
);
1706 dev_err(&pdev
->dev
, "Can't request DMA for U\n");
1707 goto exit_free_dma_y
;
1709 pcdev
->dma_chans
[1] = err
;
1710 dev_dbg(&pdev
->dev
, "got DMA channel (U) %d\n", pcdev
->dma_chans
[1]);
1712 err
= pxa_request_dma("CI_V", DMA_PRIO_HIGH
,
1713 pxa_camera_dma_irq_v
, pcdev
);
1715 dev_err(&pdev
->dev
, "Can't request DMA for V\n");
1716 goto exit_free_dma_u
;
1718 pcdev
->dma_chans
[2] = err
;
1719 dev_dbg(&pdev
->dev
, "got DMA channel (V) %d\n", pcdev
->dma_chans
[2]);
1721 DRCMR(68) = pcdev
->dma_chans
[0] | DRCMR_MAPVLD
;
1722 DRCMR(69) = pcdev
->dma_chans
[1] | DRCMR_MAPVLD
;
1723 DRCMR(70) = pcdev
->dma_chans
[2] | DRCMR_MAPVLD
;
1726 err
= request_irq(pcdev
->irq
, pxa_camera_irq
, 0, PXA_CAM_DRV_NAME
,
1729 dev_err(&pdev
->dev
, "Camera interrupt register failed \n");
1733 pcdev
->soc_host
.drv_name
= PXA_CAM_DRV_NAME
;
1734 pcdev
->soc_host
.ops
= &pxa_soc_camera_host_ops
;
1735 pcdev
->soc_host
.priv
= pcdev
;
1736 pcdev
->soc_host
.v4l2_dev
.dev
= &pdev
->dev
;
1737 pcdev
->soc_host
.nr
= pdev
->id
;
1739 err
= soc_camera_host_register(&pcdev
->soc_host
);
1746 free_irq(pcdev
->irq
, pcdev
);
1748 pxa_free_dma(pcdev
->dma_chans
[2]);
1750 pxa_free_dma(pcdev
->dma_chans
[1]);
1752 pxa_free_dma(pcdev
->dma_chans
[0]);
1756 release_mem_region(res
->start
, resource_size(res
));
1758 clk_put(pcdev
->clk
);
1765 static int __devexit
pxa_camera_remove(struct platform_device
*pdev
)
1767 struct soc_camera_host
*soc_host
= to_soc_camera_host(&pdev
->dev
);
1768 struct pxa_camera_dev
*pcdev
= container_of(soc_host
,
1769 struct pxa_camera_dev
, soc_host
);
1770 struct resource
*res
;
1772 clk_put(pcdev
->clk
);
1774 pxa_free_dma(pcdev
->dma_chans
[0]);
1775 pxa_free_dma(pcdev
->dma_chans
[1]);
1776 pxa_free_dma(pcdev
->dma_chans
[2]);
1777 free_irq(pcdev
->irq
, pcdev
);
1779 soc_camera_host_unregister(soc_host
);
1781 iounmap(pcdev
->base
);
1784 release_mem_region(res
->start
, resource_size(res
));
1788 dev_info(&pdev
->dev
, "PXA Camera driver unloaded\n");
1793 static struct platform_driver pxa_camera_driver
= {
1795 .name
= PXA_CAM_DRV_NAME
,
1797 .probe
= pxa_camera_probe
,
1798 .remove
= __devexit_p(pxa_camera_remove
),
1802 static int __init
pxa_camera_init(void)
1804 return platform_driver_register(&pxa_camera_driver
);
1807 static void __exit
pxa_camera_exit(void)
1809 platform_driver_unregister(&pxa_camera_driver
);
1812 module_init(pxa_camera_init
);
1813 module_exit(pxa_camera_exit
);
1815 MODULE_DESCRIPTION("PXA27x SoC Camera Host driver");
1816 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1817 MODULE_LICENSE("GPL");
1818 MODULE_ALIAS("platform:" PXA_CAM_DRV_NAME
);