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>
29 #include <linux/sched.h>
31 #include <media/v4l2-common.h>
32 #include <media/v4l2-dev.h>
33 #include <media/videobuf-dma-sg.h>
34 #include <media/soc_camera.h>
35 #include <media/soc_mediabus.h>
37 #include <linux/videodev2.h>
40 #include <mach/camera.h>
42 #define PXA_CAM_VERSION_CODE KERNEL_VERSION(0, 0, 5)
43 #define PXA_CAM_DRV_NAME "pxa27x-camera"
45 /* Camera Interface */
58 #define CICR0_DMAEN (1 << 31) /* DMA request enable */
59 #define CICR0_PAR_EN (1 << 30) /* Parity enable */
60 #define CICR0_SL_CAP_EN (1 << 29) /* Capture enable for slave mode */
61 #define CICR0_ENB (1 << 28) /* Camera interface enable */
62 #define CICR0_DIS (1 << 27) /* Camera interface disable */
63 #define CICR0_SIM (0x7 << 24) /* Sensor interface mode mask */
64 #define CICR0_TOM (1 << 9) /* Time-out mask */
65 #define CICR0_RDAVM (1 << 8) /* Receive-data-available mask */
66 #define CICR0_FEM (1 << 7) /* FIFO-empty mask */
67 #define CICR0_EOLM (1 << 6) /* End-of-line mask */
68 #define CICR0_PERRM (1 << 5) /* Parity-error mask */
69 #define CICR0_QDM (1 << 4) /* Quick-disable mask */
70 #define CICR0_CDM (1 << 3) /* Disable-done mask */
71 #define CICR0_SOFM (1 << 2) /* Start-of-frame mask */
72 #define CICR0_EOFM (1 << 1) /* End-of-frame mask */
73 #define CICR0_FOM (1 << 0) /* FIFO-overrun mask */
75 #define CICR1_TBIT (1 << 31) /* Transparency bit */
76 #define CICR1_RGBT_CONV (0x3 << 29) /* RGBT conversion mask */
77 #define CICR1_PPL (0x7ff << 15) /* Pixels per line mask */
78 #define CICR1_RGB_CONV (0x7 << 12) /* RGB conversion mask */
79 #define CICR1_RGB_F (1 << 11) /* RGB format */
80 #define CICR1_YCBCR_F (1 << 10) /* YCbCr format */
81 #define CICR1_RGB_BPP (0x7 << 7) /* RGB bis per pixel mask */
82 #define CICR1_RAW_BPP (0x3 << 5) /* Raw bis per pixel mask */
83 #define CICR1_COLOR_SP (0x3 << 3) /* Color space mask */
84 #define CICR1_DW (0x7 << 0) /* Data width mask */
86 #define CICR2_BLW (0xff << 24) /* Beginning-of-line pixel clock
88 #define CICR2_ELW (0xff << 16) /* End-of-line pixel clock
90 #define CICR2_HSW (0x3f << 10) /* Horizontal sync pulse width mask */
91 #define CICR2_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
93 #define CICR2_FSW (0x7 << 0) /* Frame stabilization
96 #define CICR3_BFW (0xff << 24) /* Beginning-of-frame line clock
98 #define CICR3_EFW (0xff << 16) /* End-of-frame line clock
100 #define CICR3_VSW (0x3f << 10) /* Vertical sync pulse width mask */
101 #define CICR3_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
103 #define CICR3_LPF (0x7ff << 0) /* Lines per frame mask */
105 #define CICR4_MCLK_DLY (0x3 << 24) /* MCLK Data Capture Delay mask */
106 #define CICR4_PCLK_EN (1 << 23) /* Pixel clock enable */
107 #define CICR4_PCP (1 << 22) /* Pixel clock polarity */
108 #define CICR4_HSP (1 << 21) /* Horizontal sync polarity */
109 #define CICR4_VSP (1 << 20) /* Vertical sync polarity */
110 #define CICR4_MCLK_EN (1 << 19) /* MCLK enable */
111 #define CICR4_FR_RATE (0x7 << 8) /* Frame rate mask */
112 #define CICR4_DIV (0xff << 0) /* Clock divisor mask */
114 #define CISR_FTO (1 << 15) /* FIFO time-out */
115 #define CISR_RDAV_2 (1 << 14) /* Channel 2 receive data available */
116 #define CISR_RDAV_1 (1 << 13) /* Channel 1 receive data available */
117 #define CISR_RDAV_0 (1 << 12) /* Channel 0 receive data available */
118 #define CISR_FEMPTY_2 (1 << 11) /* Channel 2 FIFO empty */
119 #define CISR_FEMPTY_1 (1 << 10) /* Channel 1 FIFO empty */
120 #define CISR_FEMPTY_0 (1 << 9) /* Channel 0 FIFO empty */
121 #define CISR_EOL (1 << 8) /* End of line */
122 #define CISR_PAR_ERR (1 << 7) /* Parity error */
123 #define CISR_CQD (1 << 6) /* Camera interface quick disable */
124 #define CISR_CDD (1 << 5) /* Camera interface disable done */
125 #define CISR_SOF (1 << 4) /* Start of frame */
126 #define CISR_EOF (1 << 3) /* End of frame */
127 #define CISR_IFO_2 (1 << 2) /* FIFO overrun for Channel 2 */
128 #define CISR_IFO_1 (1 << 1) /* FIFO overrun for Channel 1 */
129 #define CISR_IFO_0 (1 << 0) /* FIFO overrun for Channel 0 */
131 #define CIFR_FLVL2 (0x7f << 23) /* FIFO 2 level mask */
132 #define CIFR_FLVL1 (0x7f << 16) /* FIFO 1 level mask */
133 #define CIFR_FLVL0 (0xff << 8) /* FIFO 0 level mask */
134 #define CIFR_THL_0 (0x3 << 4) /* Threshold Level for Channel 0 FIFO */
135 #define CIFR_RESET_F (1 << 3) /* Reset input FIFOs */
136 #define CIFR_FEN2 (1 << 2) /* FIFO enable for channel 2 */
137 #define CIFR_FEN1 (1 << 1) /* FIFO enable for channel 1 */
138 #define CIFR_FEN0 (1 << 0) /* FIFO enable for channel 0 */
140 #define CICR0_SIM_MP (0 << 24)
141 #define CICR0_SIM_SP (1 << 24)
142 #define CICR0_SIM_MS (2 << 24)
143 #define CICR0_SIM_EP (3 << 24)
144 #define CICR0_SIM_ES (4 << 24)
146 #define CICR1_DW_VAL(x) ((x) & CICR1_DW) /* Data bus width */
147 #define CICR1_PPL_VAL(x) (((x) << 15) & CICR1_PPL) /* Pixels per line */
148 #define CICR1_COLOR_SP_VAL(x) (((x) << 3) & CICR1_COLOR_SP) /* color space */
149 #define CICR1_RGB_BPP_VAL(x) (((x) << 7) & CICR1_RGB_BPP) /* bpp for rgb */
150 #define CICR1_RGBT_CONV_VAL(x) (((x) << 29) & CICR1_RGBT_CONV) /* rgbt conv */
152 #define CICR2_BLW_VAL(x) (((x) << 24) & CICR2_BLW) /* Beginning-of-line pixel clock wait count */
153 #define CICR2_ELW_VAL(x) (((x) << 16) & CICR2_ELW) /* End-of-line pixel clock wait count */
154 #define CICR2_HSW_VAL(x) (((x) << 10) & CICR2_HSW) /* Horizontal sync pulse width */
155 #define CICR2_BFPW_VAL(x) (((x) << 3) & CICR2_BFPW) /* Beginning-of-frame pixel clock wait count */
156 #define CICR2_FSW_VAL(x) (((x) << 0) & CICR2_FSW) /* Frame stabilization wait count */
158 #define CICR3_BFW_VAL(x) (((x) << 24) & CICR3_BFW) /* Beginning-of-frame line clock wait count */
159 #define CICR3_EFW_VAL(x) (((x) << 16) & CICR3_EFW) /* End-of-frame line clock wait count */
160 #define CICR3_VSW_VAL(x) (((x) << 11) & CICR3_VSW) /* Vertical sync pulse width */
161 #define CICR3_LPF_VAL(x) (((x) << 0) & CICR3_LPF) /* Lines per frame */
163 #define CICR0_IRQ_MASK (CICR0_TOM | CICR0_RDAVM | CICR0_FEM | CICR0_EOLM | \
164 CICR0_PERRM | CICR0_QDM | CICR0_CDM | CICR0_SOFM | \
165 CICR0_EOFM | CICR0_FOM)
170 enum pxa_camera_active_dma
{
176 /* descriptor needed for the PXA DMA engine */
179 struct pxa_dma_desc
*sg_cpu
;
184 /* buffer for one video frame */
186 /* common v4l buffer stuff -- must be first */
187 struct videobuf_buffer vb
;
188 enum v4l2_mbus_pixelcode code
;
189 /* our descriptor lists for Y, U and V channels */
190 struct pxa_cam_dma dmas
[3];
192 enum pxa_camera_active_dma active_dma
;
195 struct pxa_camera_dev
{
196 struct soc_camera_host soc_host
;
198 * PXA27x is only supposed to handle one camera on its Quick Capture
199 * interface. If anyone ever builds hardware to enable more than
200 * 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
;
243 int bytes_per_line
= soc_mbus_bytes_per_line(icd
->user_width
,
244 icd
->current_fmt
->host_fmt
);
246 if (bytes_per_line
< 0)
247 return bytes_per_line
;
249 dev_dbg(icd
->dev
.parent
, "count=%d, size=%d\n", *count
, *size
);
251 *size
= bytes_per_line
* icd
->user_height
;
255 while (*size
* *count
> vid_limit
* 1024 * 1024)
261 static void free_buffer(struct videobuf_queue
*vq
, struct pxa_buffer
*buf
)
263 struct soc_camera_device
*icd
= vq
->priv_data
;
264 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
265 struct videobuf_dmabuf
*dma
= videobuf_to_dma(&buf
->vb
);
268 BUG_ON(in_interrupt());
270 dev_dbg(icd
->dev
.parent
, "%s (vb=0x%p) 0x%08lx %d\n", __func__
,
271 &buf
->vb
, buf
->vb
.baddr
, buf
->vb
.bsize
);
274 * This waits until this buffer is out of danger, i.e., until it is no
275 * longer in STATE_QUEUED or STATE_ACTIVE
277 videobuf_waiton(&buf
->vb
, 0, 0);
278 videobuf_dma_unmap(vq
, dma
);
279 videobuf_dma_free(dma
);
281 for (i
= 0; i
< ARRAY_SIZE(buf
->dmas
); i
++) {
282 if (buf
->dmas
[i
].sg_cpu
)
283 dma_free_coherent(ici
->v4l2_dev
.dev
,
284 buf
->dmas
[i
].sg_size
,
286 buf
->dmas
[i
].sg_dma
);
287 buf
->dmas
[i
].sg_cpu
= NULL
;
290 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
293 static int calculate_dma_sglen(struct scatterlist
*sglist
, int sglen
,
294 int sg_first_ofs
, int size
)
296 int i
, offset
, dma_len
, xfer_len
;
297 struct scatterlist
*sg
;
299 offset
= sg_first_ofs
;
300 for_each_sg(sglist
, sg
, sglen
, i
) {
301 dma_len
= sg_dma_len(sg
);
303 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
304 xfer_len
= roundup(min(dma_len
- offset
, size
), 8);
306 size
= max(0, size
- xfer_len
);
317 * pxa_init_dma_channel - init dma descriptors
318 * @pcdev: pxa camera device
319 * @buf: pxa buffer to find pxa dma channel
320 * @dma: dma video buffer
321 * @channel: dma channel (0 => 'Y', 1 => 'U', 2 => 'V')
322 * @cibr: camera Receive Buffer Register
323 * @size: bytes to transfer
324 * @sg_first: first element of sg_list
325 * @sg_first_ofs: offset in first element of sg_list
327 * Prepares the pxa dma descriptors to transfer one camera channel.
328 * Beware sg_first and sg_first_ofs are both input and output parameters.
330 * Returns 0 or -ENOMEM if no coherent memory is available
332 static int pxa_init_dma_channel(struct pxa_camera_dev
*pcdev
,
333 struct pxa_buffer
*buf
,
334 struct videobuf_dmabuf
*dma
, int channel
,
336 struct scatterlist
**sg_first
, int *sg_first_ofs
)
338 struct pxa_cam_dma
*pxa_dma
= &buf
->dmas
[channel
];
339 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
340 struct scatterlist
*sg
;
341 int i
, offset
, sglen
;
342 int dma_len
= 0, xfer_len
= 0;
345 dma_free_coherent(dev
, pxa_dma
->sg_size
,
346 pxa_dma
->sg_cpu
, pxa_dma
->sg_dma
);
348 sglen
= calculate_dma_sglen(*sg_first
, dma
->sglen
,
349 *sg_first_ofs
, size
);
351 pxa_dma
->sg_size
= (sglen
+ 1) * sizeof(struct pxa_dma_desc
);
352 pxa_dma
->sg_cpu
= dma_alloc_coherent(dev
, pxa_dma
->sg_size
,
353 &pxa_dma
->sg_dma
, GFP_KERNEL
);
354 if (!pxa_dma
->sg_cpu
)
357 pxa_dma
->sglen
= sglen
;
358 offset
= *sg_first_ofs
;
360 dev_dbg(dev
, "DMA: sg_first=%p, sglen=%d, ofs=%d, dma.desc=%x\n",
361 *sg_first
, sglen
, *sg_first_ofs
, pxa_dma
->sg_dma
);
364 for_each_sg(*sg_first
, sg
, sglen
, i
) {
365 dma_len
= sg_dma_len(sg
);
367 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
368 xfer_len
= roundup(min(dma_len
- offset
, size
), 8);
370 size
= max(0, size
- xfer_len
);
372 pxa_dma
->sg_cpu
[i
].dsadr
= pcdev
->res
->start
+ cibr
;
373 pxa_dma
->sg_cpu
[i
].dtadr
= sg_dma_address(sg
) + offset
;
374 pxa_dma
->sg_cpu
[i
].dcmd
=
375 DCMD_FLOWSRC
| DCMD_BURST8
| DCMD_INCTRGADDR
| xfer_len
;
378 pxa_dma
->sg_cpu
[i
].dcmd
|= DCMD_STARTIRQEN
;
380 pxa_dma
->sg_cpu
[i
].ddadr
=
381 pxa_dma
->sg_dma
+ (i
+ 1) * sizeof(struct pxa_dma_desc
);
383 dev_vdbg(dev
, "DMA: desc.%08x->@phys=0x%08x, len=%d\n",
384 pxa_dma
->sg_dma
+ i
* sizeof(struct pxa_dma_desc
),
385 sg_dma_address(sg
) + offset
, xfer_len
);
392 pxa_dma
->sg_cpu
[sglen
].ddadr
= DDADR_STOP
;
393 pxa_dma
->sg_cpu
[sglen
].dcmd
= DCMD_FLOWSRC
| DCMD_BURST8
| DCMD_ENDIRQEN
;
396 * Handle 1 special case :
397 * - in 3 planes (YUV422P format), we might finish with xfer_len equal
398 * to dma_len (end on PAGE boundary). In this case, the sg element
399 * for next plane should be the next after the last used to store the
400 * last scatter gather RAM page
402 if (xfer_len
>= dma_len
) {
403 *sg_first_ofs
= xfer_len
- dma_len
;
404 *sg_first
= sg_next(sg
);
406 *sg_first_ofs
= xfer_len
;
413 static void pxa_videobuf_set_actdma(struct pxa_camera_dev
*pcdev
,
414 struct pxa_buffer
*buf
)
416 buf
->active_dma
= DMA_Y
;
417 if (pcdev
->channels
== 3)
418 buf
->active_dma
|= DMA_U
| DMA_V
;
422 * Please check the DMA prepared buffer structure in :
423 * Documentation/video4linux/pxa_camera.txt
424 * Please check also in pxa_camera_check_link_miss() to understand why DMA chain
425 * modification while DMA chain is running will work anyway.
427 static int pxa_videobuf_prepare(struct videobuf_queue
*vq
,
428 struct videobuf_buffer
*vb
, enum v4l2_field field
)
430 struct soc_camera_device
*icd
= vq
->priv_data
;
431 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
432 struct pxa_camera_dev
*pcdev
= ici
->priv
;
433 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
434 struct pxa_buffer
*buf
= container_of(vb
, struct pxa_buffer
, vb
);
436 int size_y
, size_u
= 0, size_v
= 0;
437 int bytes_per_line
= soc_mbus_bytes_per_line(icd
->user_width
,
438 icd
->current_fmt
->host_fmt
);
440 if (bytes_per_line
< 0)
441 return bytes_per_line
;
443 dev_dbg(dev
, "%s (vb=0x%p) 0x%08lx %d\n", __func__
,
444 vb
, vb
->baddr
, vb
->bsize
);
446 /* Added list head initialization on alloc */
447 WARN_ON(!list_empty(&vb
->queue
));
451 * This can be useful if you want to see if we actually fill
452 * the buffer with something
454 memset((void *)vb
->baddr
, 0xaa, vb
->bsize
);
457 BUG_ON(NULL
== icd
->current_fmt
);
460 * I think, in buf_prepare you only have to protect global data,
461 * the actual buffer is yours
465 if (buf
->code
!= icd
->current_fmt
->code
||
466 vb
->width
!= icd
->user_width
||
467 vb
->height
!= icd
->user_height
||
468 vb
->field
!= field
) {
469 buf
->code
= icd
->current_fmt
->code
;
470 vb
->width
= icd
->user_width
;
471 vb
->height
= icd
->user_height
;
473 vb
->state
= VIDEOBUF_NEEDS_INIT
;
476 vb
->size
= bytes_per_line
* vb
->height
;
477 if (0 != vb
->baddr
&& vb
->bsize
< vb
->size
) {
482 if (vb
->state
== VIDEOBUF_NEEDS_INIT
) {
485 struct videobuf_dmabuf
*dma
= videobuf_to_dma(vb
);
486 struct scatterlist
*sg
;
488 ret
= videobuf_iolock(vq
, vb
, NULL
);
492 if (pcdev
->channels
== 3) {
494 size_u
= size_v
= size
/ 4;
501 /* init DMA for Y channel */
502 ret
= pxa_init_dma_channel(pcdev
, buf
, dma
, 0, CIBR0
, size_y
,
505 dev_err(dev
, "DMA initialization for Y/RGB failed\n");
509 /* init DMA for U channel */
511 ret
= pxa_init_dma_channel(pcdev
, buf
, dma
, 1, CIBR1
,
512 size_u
, &sg
, &next_ofs
);
514 dev_err(dev
, "DMA initialization for U failed\n");
518 /* init DMA for V channel */
520 ret
= pxa_init_dma_channel(pcdev
, buf
, dma
, 2, CIBR2
,
521 size_v
, &sg
, &next_ofs
);
523 dev_err(dev
, "DMA initialization for V failed\n");
527 vb
->state
= VIDEOBUF_PREPARED
;
531 pxa_videobuf_set_actdma(pcdev
, buf
);
536 dma_free_coherent(dev
, buf
->dmas
[1].sg_size
,
537 buf
->dmas
[1].sg_cpu
, buf
->dmas
[1].sg_dma
);
539 dma_free_coherent(dev
, buf
->dmas
[0].sg_size
,
540 buf
->dmas
[0].sg_cpu
, buf
->dmas
[0].sg_dma
);
542 free_buffer(vq
, buf
);
549 * pxa_dma_start_channels - start DMA channel for active buffer
550 * @pcdev: pxa camera device
552 * Initialize DMA channels to the beginning of the active video buffer, and
553 * start these channels.
555 static void pxa_dma_start_channels(struct pxa_camera_dev
*pcdev
)
558 struct pxa_buffer
*active
;
560 active
= pcdev
->active
;
562 for (i
= 0; i
< pcdev
->channels
; i
++) {
563 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
564 "%s (channel=%d) ddadr=%08x\n", __func__
,
565 i
, active
->dmas
[i
].sg_dma
);
566 DDADR(pcdev
->dma_chans
[i
]) = active
->dmas
[i
].sg_dma
;
567 DCSR(pcdev
->dma_chans
[i
]) = DCSR_RUN
;
571 static void pxa_dma_stop_channels(struct pxa_camera_dev
*pcdev
)
575 for (i
= 0; i
< pcdev
->channels
; i
++) {
576 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
577 "%s (channel=%d)\n", __func__
, i
);
578 DCSR(pcdev
->dma_chans
[i
]) = 0;
582 static void pxa_dma_add_tail_buf(struct pxa_camera_dev
*pcdev
,
583 struct pxa_buffer
*buf
)
586 struct pxa_dma_desc
*buf_last_desc
;
588 for (i
= 0; i
< pcdev
->channels
; i
++) {
589 buf_last_desc
= buf
->dmas
[i
].sg_cpu
+ buf
->dmas
[i
].sglen
;
590 buf_last_desc
->ddadr
= DDADR_STOP
;
592 if (pcdev
->sg_tail
[i
])
593 /* Link the new buffer to the old tail */
594 pcdev
->sg_tail
[i
]->ddadr
= buf
->dmas
[i
].sg_dma
;
596 /* Update the channel tail */
597 pcdev
->sg_tail
[i
] = buf_last_desc
;
602 * pxa_camera_start_capture - start video capturing
603 * @pcdev: camera device
605 * Launch capturing. DMA channels should not be active yet. They should get
606 * activated at the end of frame interrupt, to capture only whole frames, and
607 * never begin the capture of a partial frame.
609 static void pxa_camera_start_capture(struct pxa_camera_dev
*pcdev
)
611 unsigned long cicr0
, cifr
;
613 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
, "%s\n", __func__
);
614 /* Reset the FIFOs */
615 cifr
= __raw_readl(pcdev
->base
+ CIFR
) | CIFR_RESET_F
;
616 __raw_writel(cifr
, pcdev
->base
+ CIFR
);
617 /* Enable End-Of-Frame Interrupt */
618 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) | CICR0_ENB
;
619 cicr0
&= ~CICR0_EOFM
;
620 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
623 static void pxa_camera_stop_capture(struct pxa_camera_dev
*pcdev
)
627 pxa_dma_stop_channels(pcdev
);
629 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) & ~CICR0_ENB
;
630 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
632 pcdev
->active
= NULL
;
633 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
, "%s\n", __func__
);
636 /* Called under spinlock_irqsave(&pcdev->lock, ...) */
637 static void pxa_videobuf_queue(struct videobuf_queue
*vq
,
638 struct videobuf_buffer
*vb
)
640 struct soc_camera_device
*icd
= vq
->priv_data
;
641 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
642 struct pxa_camera_dev
*pcdev
= ici
->priv
;
643 struct pxa_buffer
*buf
= container_of(vb
, struct pxa_buffer
, vb
);
645 dev_dbg(icd
->dev
.parent
, "%s (vb=0x%p) 0x%08lx %d active=%p\n",
646 __func__
, vb
, vb
->baddr
, vb
->bsize
, pcdev
->active
);
648 list_add_tail(&vb
->queue
, &pcdev
->capture
);
650 vb
->state
= VIDEOBUF_ACTIVE
;
651 pxa_dma_add_tail_buf(pcdev
, buf
);
654 pxa_camera_start_capture(pcdev
);
657 static void pxa_videobuf_release(struct videobuf_queue
*vq
,
658 struct videobuf_buffer
*vb
)
660 struct pxa_buffer
*buf
= container_of(vb
, struct pxa_buffer
, vb
);
662 struct soc_camera_device
*icd
= vq
->priv_data
;
663 struct device
*dev
= icd
->dev
.parent
;
665 dev_dbg(dev
, "%s (vb=0x%p) 0x%08lx %d\n", __func__
,
666 vb
, vb
->baddr
, vb
->bsize
);
669 case VIDEOBUF_ACTIVE
:
670 dev_dbg(dev
, "%s (active)\n", __func__
);
672 case VIDEOBUF_QUEUED
:
673 dev_dbg(dev
, "%s (queued)\n", __func__
);
675 case VIDEOBUF_PREPARED
:
676 dev_dbg(dev
, "%s (prepared)\n", __func__
);
679 dev_dbg(dev
, "%s (unknown)\n", __func__
);
684 free_buffer(vq
, buf
);
687 static void pxa_camera_wakeup(struct pxa_camera_dev
*pcdev
,
688 struct videobuf_buffer
*vb
,
689 struct pxa_buffer
*buf
)
693 /* _init is used to debug races, see comment in pxa_camera_reqbufs() */
694 list_del_init(&vb
->queue
);
695 vb
->state
= VIDEOBUF_DONE
;
696 do_gettimeofday(&vb
->ts
);
699 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
, "%s dequeud buffer (vb=0x%p)\n",
702 if (list_empty(&pcdev
->capture
)) {
703 pxa_camera_stop_capture(pcdev
);
704 for (i
= 0; i
< pcdev
->channels
; i
++)
705 pcdev
->sg_tail
[i
] = NULL
;
709 pcdev
->active
= list_entry(pcdev
->capture
.next
,
710 struct pxa_buffer
, vb
.queue
);
714 * pxa_camera_check_link_miss - check missed DMA linking
715 * @pcdev: camera device
717 * The DMA chaining is done with DMA running. This means a tiny temporal window
718 * remains, where a buffer is queued on the chain, while the chain is already
719 * stopped. This means the tailed buffer would never be transfered by DMA.
720 * This function restarts the capture for this corner case, where :
721 * - DADR() == DADDR_STOP
722 * - a videobuffer is queued on the pcdev->capture list
724 * Please check the "DMA hot chaining timeslice issue" in
725 * Documentation/video4linux/pxa_camera.txt
727 * Context: should only be called within the dma irq handler
729 static void pxa_camera_check_link_miss(struct pxa_camera_dev
*pcdev
)
731 int i
, is_dma_stopped
= 1;
733 for (i
= 0; i
< pcdev
->channels
; i
++)
734 if (DDADR(pcdev
->dma_chans
[i
]) != DDADR_STOP
)
736 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
737 "%s : top queued buffer=%p, dma_stopped=%d\n",
738 __func__
, pcdev
->active
, is_dma_stopped
);
739 if (pcdev
->active
&& is_dma_stopped
)
740 pxa_camera_start_capture(pcdev
);
743 static void pxa_camera_dma_irq(int channel
, struct pxa_camera_dev
*pcdev
,
744 enum pxa_camera_active_dma act_dma
)
746 struct device
*dev
= pcdev
->soc_host
.v4l2_dev
.dev
;
747 struct pxa_buffer
*buf
;
749 u32 status
, camera_status
, overrun
;
750 struct videobuf_buffer
*vb
;
752 spin_lock_irqsave(&pcdev
->lock
, flags
);
754 status
= DCSR(channel
);
755 DCSR(channel
) = status
;
757 camera_status
= __raw_readl(pcdev
->base
+ CISR
);
758 overrun
= CISR_IFO_0
;
759 if (pcdev
->channels
== 3)
760 overrun
|= CISR_IFO_1
| CISR_IFO_2
;
762 if (status
& DCSR_BUSERR
) {
763 dev_err(dev
, "DMA Bus Error IRQ!\n");
767 if (!(status
& (DCSR_ENDINTR
| DCSR_STARTINTR
))) {
768 dev_err(dev
, "Unknown DMA IRQ source, status: 0x%08x\n",
774 * pcdev->active should not be NULL in DMA irq handler.
776 * But there is one corner case : if capture was stopped due to an
777 * overrun of channel 1, and at that same channel 2 was completed.
779 * When handling the overrun in DMA irq for channel 1, we'll stop the
780 * capture and restart it (and thus set pcdev->active to NULL). But the
781 * DMA irq handler will already be pending for channel 2. So on entering
782 * the DMA irq handler for channel 2 there will be no active buffer, yet
788 vb
= &pcdev
->active
->vb
;
789 buf
= container_of(vb
, struct pxa_buffer
, vb
);
790 WARN_ON(buf
->inwork
|| list_empty(&vb
->queue
));
792 dev_dbg(dev
, "%s channel=%d %s%s(vb=0x%p) dma.desc=%x\n",
793 __func__
, channel
, status
& DCSR_STARTINTR
? "SOF " : "",
794 status
& DCSR_ENDINTR
? "EOF " : "", vb
, DDADR(channel
));
796 if (status
& DCSR_ENDINTR
) {
798 * It's normal if the last frame creates an overrun, as there
799 * are no more DMA descriptors to fetch from QCI fifos
801 if (camera_status
& overrun
&&
802 !list_is_last(pcdev
->capture
.next
, &pcdev
->capture
)) {
803 dev_dbg(dev
, "FIFO overrun! CISR: %x\n",
805 pxa_camera_stop_capture(pcdev
);
806 pxa_camera_start_capture(pcdev
);
809 buf
->active_dma
&= ~act_dma
;
810 if (!buf
->active_dma
) {
811 pxa_camera_wakeup(pcdev
, vb
, buf
);
812 pxa_camera_check_link_miss(pcdev
);
817 spin_unlock_irqrestore(&pcdev
->lock
, flags
);
820 static void pxa_camera_dma_irq_y(int channel
, void *data
)
822 struct pxa_camera_dev
*pcdev
= data
;
823 pxa_camera_dma_irq(channel
, pcdev
, DMA_Y
);
826 static void pxa_camera_dma_irq_u(int channel
, void *data
)
828 struct pxa_camera_dev
*pcdev
= data
;
829 pxa_camera_dma_irq(channel
, pcdev
, DMA_U
);
832 static void pxa_camera_dma_irq_v(int channel
, void *data
)
834 struct pxa_camera_dev
*pcdev
= data
;
835 pxa_camera_dma_irq(channel
, pcdev
, DMA_V
);
838 static struct videobuf_queue_ops pxa_videobuf_ops
= {
839 .buf_setup
= pxa_videobuf_setup
,
840 .buf_prepare
= pxa_videobuf_prepare
,
841 .buf_queue
= pxa_videobuf_queue
,
842 .buf_release
= pxa_videobuf_release
,
845 static void pxa_camera_init_videobuf(struct videobuf_queue
*q
,
846 struct soc_camera_device
*icd
)
848 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
849 struct pxa_camera_dev
*pcdev
= ici
->priv
;
852 * We must pass NULL as dev pointer, then all pci_* dma operations
853 * transform to normal dma_* ones.
855 videobuf_queue_sg_init(q
, &pxa_videobuf_ops
, NULL
, &pcdev
->lock
,
856 V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FIELD_NONE
,
857 sizeof(struct pxa_buffer
), icd
);
860 static u32
mclk_get_divisor(struct platform_device
*pdev
,
861 struct pxa_camera_dev
*pcdev
)
863 unsigned long mclk
= pcdev
->mclk
;
864 struct device
*dev
= &pdev
->dev
;
866 unsigned long lcdclk
;
868 lcdclk
= clk_get_rate(pcdev
->clk
);
869 pcdev
->ciclk
= lcdclk
;
871 /* mclk <= ciclk / 4 (27.4.2) */
872 if (mclk
> lcdclk
/ 4) {
874 dev_warn(dev
, "Limiting master clock to %lu\n", mclk
);
877 /* We verify mclk != 0, so if anyone breaks it, here comes their Oops */
878 div
= (lcdclk
+ 2 * mclk
- 1) / (2 * mclk
) - 1;
880 /* If we're not supplying MCLK, leave it at 0 */
881 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
882 pcdev
->mclk
= lcdclk
/ (2 * (div
+ 1));
884 dev_dbg(dev
, "LCD clock %luHz, target freq %luHz, divisor %u\n",
890 static void recalculate_fifo_timeout(struct pxa_camera_dev
*pcdev
,
893 /* We want a timeout > 1 pixel time, not ">=" */
894 u32 ciclk_per_pixel
= pcdev
->ciclk
/ pclk
+ 1;
896 __raw_writel(ciclk_per_pixel
, pcdev
->base
+ CITOR
);
899 static void pxa_camera_activate(struct pxa_camera_dev
*pcdev
)
903 /* disable all interrupts */
904 __raw_writel(0x3ff, pcdev
->base
+ CICR0
);
906 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
907 cicr4
|= CICR4_PCLK_EN
;
908 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
909 cicr4
|= CICR4_MCLK_EN
;
910 if (pcdev
->platform_flags
& PXA_CAMERA_PCP
)
912 if (pcdev
->platform_flags
& PXA_CAMERA_HSP
)
914 if (pcdev
->platform_flags
& PXA_CAMERA_VSP
)
917 __raw_writel(pcdev
->mclk_divisor
| cicr4
, pcdev
->base
+ CICR4
);
919 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
920 /* Initialise the timeout under the assumption pclk = mclk */
921 recalculate_fifo_timeout(pcdev
, pcdev
->mclk
);
923 /* "Safe default" - 13MHz */
924 recalculate_fifo_timeout(pcdev
, 13000000);
926 clk_enable(pcdev
->clk
);
929 static void pxa_camera_deactivate(struct pxa_camera_dev
*pcdev
)
931 clk_disable(pcdev
->clk
);
934 static irqreturn_t
pxa_camera_irq(int irq
, void *data
)
936 struct pxa_camera_dev
*pcdev
= data
;
937 unsigned long status
, cicr0
;
938 struct pxa_buffer
*buf
;
939 struct videobuf_buffer
*vb
;
941 status
= __raw_readl(pcdev
->base
+ CISR
);
942 dev_dbg(pcdev
->soc_host
.v4l2_dev
.dev
,
943 "Camera interrupt status 0x%lx\n", status
);
948 __raw_writel(status
, pcdev
->base
+ CISR
);
950 if (status
& CISR_EOF
) {
951 pcdev
->active
= list_first_entry(&pcdev
->capture
,
952 struct pxa_buffer
, vb
.queue
);
953 vb
= &pcdev
->active
->vb
;
954 buf
= container_of(vb
, struct pxa_buffer
, vb
);
955 pxa_videobuf_set_actdma(pcdev
, buf
);
957 pxa_dma_start_channels(pcdev
);
959 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) | CICR0_EOFM
;
960 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
967 * The following two functions absolutely depend on the fact, that
968 * there can be only one camera on PXA quick capture interface
969 * Called with .video_lock held
971 static int pxa_camera_add_device(struct soc_camera_device
*icd
)
973 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
974 struct pxa_camera_dev
*pcdev
= ici
->priv
;
979 pxa_camera_activate(pcdev
);
983 dev_info(icd
->dev
.parent
, "PXA Camera driver attached to camera %d\n",
989 /* Called with .video_lock held */
990 static void pxa_camera_remove_device(struct soc_camera_device
*icd
)
992 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
993 struct pxa_camera_dev
*pcdev
= ici
->priv
;
995 BUG_ON(icd
!= pcdev
->icd
);
997 dev_info(icd
->dev
.parent
, "PXA Camera driver detached from camera %d\n",
1000 /* disable capture, disable interrupts */
1001 __raw_writel(0x3ff, pcdev
->base
+ CICR0
);
1003 /* Stop DMA engine */
1004 DCSR(pcdev
->dma_chans
[0]) = 0;
1005 DCSR(pcdev
->dma_chans
[1]) = 0;
1006 DCSR(pcdev
->dma_chans
[2]) = 0;
1008 pxa_camera_deactivate(pcdev
);
1013 static int test_platform_param(struct pxa_camera_dev
*pcdev
,
1014 unsigned char buswidth
, unsigned long *flags
)
1017 * Platform specified synchronization and pixel clock polarities are
1018 * only a recommendation and are only used during probing. The PXA270
1019 * quick capture interface supports both.
1021 *flags
= (pcdev
->platform_flags
& PXA_CAMERA_MASTER
?
1022 SOCAM_MASTER
: SOCAM_SLAVE
) |
1023 SOCAM_HSYNC_ACTIVE_HIGH
|
1024 SOCAM_HSYNC_ACTIVE_LOW
|
1025 SOCAM_VSYNC_ACTIVE_HIGH
|
1026 SOCAM_VSYNC_ACTIVE_LOW
|
1027 SOCAM_DATA_ACTIVE_HIGH
|
1028 SOCAM_PCLK_SAMPLE_RISING
|
1029 SOCAM_PCLK_SAMPLE_FALLING
;
1031 /* If requested data width is supported by the platform, use it */
1034 if (!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_10
))
1036 *flags
|= SOCAM_DATAWIDTH_10
;
1039 if (!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_9
))
1041 *flags
|= SOCAM_DATAWIDTH_9
;
1044 if (!(pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_8
))
1046 *flags
|= SOCAM_DATAWIDTH_8
;
1055 static void pxa_camera_setup_cicr(struct soc_camera_device
*icd
,
1056 unsigned long flags
, __u32 pixfmt
)
1058 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1059 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1060 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1061 unsigned long dw
, bpp
;
1062 u32 cicr0
, cicr1
, cicr2
, cicr3
, cicr4
= 0, y_skip_top
;
1063 int ret
= v4l2_subdev_call(sd
, sensor
, g_skip_top_lines
, &y_skip_top
);
1069 * Datawidth is now guaranteed to be equal to one of the three values.
1070 * We fix bit-per-pixel equal to data-width...
1072 switch (flags
& SOCAM_DATAWIDTH_MASK
) {
1073 case SOCAM_DATAWIDTH_10
:
1077 case SOCAM_DATAWIDTH_9
:
1083 * Actually it can only be 8 now,
1084 * default is just to silence compiler warnings
1086 case SOCAM_DATAWIDTH_8
:
1091 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1092 cicr4
|= CICR4_PCLK_EN
;
1093 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
1094 cicr4
|= CICR4_MCLK_EN
;
1095 if (flags
& SOCAM_PCLK_SAMPLE_FALLING
)
1097 if (flags
& SOCAM_HSYNC_ACTIVE_LOW
)
1099 if (flags
& SOCAM_VSYNC_ACTIVE_LOW
)
1102 cicr0
= __raw_readl(pcdev
->base
+ CICR0
);
1103 if (cicr0
& CICR0_ENB
)
1104 __raw_writel(cicr0
& ~CICR0_ENB
, pcdev
->base
+ CICR0
);
1106 cicr1
= CICR1_PPL_VAL(icd
->user_width
- 1) | bpp
| dw
;
1109 case V4L2_PIX_FMT_YUV422P
:
1110 pcdev
->channels
= 3;
1111 cicr1
|= CICR1_YCBCR_F
;
1113 * Normally, pxa bus wants as input UYVY format. We allow all
1114 * reorderings of the YUV422 format, as no processing is done,
1115 * and the YUV stream is just passed through without any
1116 * transformation. Note that UYVY is the only format that
1117 * should be used if pxa framebuffer Overlay2 is used.
1119 case V4L2_PIX_FMT_UYVY
:
1120 case V4L2_PIX_FMT_VYUY
:
1121 case V4L2_PIX_FMT_YUYV
:
1122 case V4L2_PIX_FMT_YVYU
:
1123 cicr1
|= CICR1_COLOR_SP_VAL(2);
1125 case V4L2_PIX_FMT_RGB555
:
1126 cicr1
|= CICR1_RGB_BPP_VAL(1) | CICR1_RGBT_CONV_VAL(2) |
1127 CICR1_TBIT
| CICR1_COLOR_SP_VAL(1);
1129 case V4L2_PIX_FMT_RGB565
:
1130 cicr1
|= CICR1_COLOR_SP_VAL(1) | CICR1_RGB_BPP_VAL(2);
1135 cicr3
= CICR3_LPF_VAL(icd
->user_height
- 1) |
1136 CICR3_BFW_VAL(min((u32
)255, y_skip_top
));
1137 cicr4
|= pcdev
->mclk_divisor
;
1139 __raw_writel(cicr1
, pcdev
->base
+ CICR1
);
1140 __raw_writel(cicr2
, pcdev
->base
+ CICR2
);
1141 __raw_writel(cicr3
, pcdev
->base
+ CICR3
);
1142 __raw_writel(cicr4
, pcdev
->base
+ CICR4
);
1144 /* CIF interrupts are not used, only DMA */
1145 cicr0
= (cicr0
& CICR0_ENB
) | (pcdev
->platform_flags
& PXA_CAMERA_MASTER
?
1146 CICR0_SIM_MP
: (CICR0_SL_CAP_EN
| CICR0_SIM_SP
));
1147 cicr0
|= CICR0_DMAEN
| CICR0_IRQ_MASK
;
1148 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
1151 static int pxa_camera_set_bus_param(struct soc_camera_device
*icd
, __u32 pixfmt
)
1153 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1154 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1155 unsigned long bus_flags
, camera_flags
, common_flags
;
1156 const struct soc_mbus_pixelfmt
*fmt
;
1158 struct pxa_cam
*cam
= icd
->host_priv
;
1160 fmt
= soc_mbus_get_fmtdesc(icd
->current_fmt
->code
);
1164 ret
= test_platform_param(pcdev
, fmt
->bits_per_sample
, &bus_flags
);
1168 camera_flags
= icd
->ops
->query_bus_param(icd
);
1170 common_flags
= soc_camera_bus_param_compatible(camera_flags
, bus_flags
);
1174 pcdev
->channels
= 1;
1176 /* Make choises, based on platform preferences */
1177 if ((common_flags
& SOCAM_HSYNC_ACTIVE_HIGH
) &&
1178 (common_flags
& SOCAM_HSYNC_ACTIVE_LOW
)) {
1179 if (pcdev
->platform_flags
& PXA_CAMERA_HSP
)
1180 common_flags
&= ~SOCAM_HSYNC_ACTIVE_HIGH
;
1182 common_flags
&= ~SOCAM_HSYNC_ACTIVE_LOW
;
1185 if ((common_flags
& SOCAM_VSYNC_ACTIVE_HIGH
) &&
1186 (common_flags
& SOCAM_VSYNC_ACTIVE_LOW
)) {
1187 if (pcdev
->platform_flags
& PXA_CAMERA_VSP
)
1188 common_flags
&= ~SOCAM_VSYNC_ACTIVE_HIGH
;
1190 common_flags
&= ~SOCAM_VSYNC_ACTIVE_LOW
;
1193 if ((common_flags
& SOCAM_PCLK_SAMPLE_RISING
) &&
1194 (common_flags
& SOCAM_PCLK_SAMPLE_FALLING
)) {
1195 if (pcdev
->platform_flags
& PXA_CAMERA_PCP
)
1196 common_flags
&= ~SOCAM_PCLK_SAMPLE_RISING
;
1198 common_flags
&= ~SOCAM_PCLK_SAMPLE_FALLING
;
1201 cam
->flags
= common_flags
;
1203 ret
= icd
->ops
->set_bus_param(icd
, common_flags
);
1207 pxa_camera_setup_cicr(icd
, common_flags
, pixfmt
);
1212 static int pxa_camera_try_bus_param(struct soc_camera_device
*icd
,
1213 unsigned char buswidth
)
1215 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1216 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1217 unsigned long bus_flags
, camera_flags
;
1218 int ret
= test_platform_param(pcdev
, buswidth
, &bus_flags
);
1223 camera_flags
= icd
->ops
->query_bus_param(icd
);
1225 return soc_camera_bus_param_compatible(camera_flags
, bus_flags
) ? 0 : -EINVAL
;
1228 static const struct soc_mbus_pixelfmt pxa_camera_formats
[] = {
1230 .fourcc
= V4L2_PIX_FMT_YUV422P
,
1231 .name
= "Planar YUV422 16 bit",
1232 .bits_per_sample
= 8,
1233 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1234 .order
= SOC_MBUS_ORDER_LE
,
1238 /* This will be corrected as we get more formats */
1239 static bool pxa_camera_packing_supported(const struct soc_mbus_pixelfmt
*fmt
)
1241 return fmt
->packing
== SOC_MBUS_PACKING_NONE
||
1242 (fmt
->bits_per_sample
== 8 &&
1243 fmt
->packing
== SOC_MBUS_PACKING_2X8_PADHI
) ||
1244 (fmt
->bits_per_sample
> 8 &&
1245 fmt
->packing
== SOC_MBUS_PACKING_EXTEND16
);
1248 static int pxa_camera_get_formats(struct soc_camera_device
*icd
, int idx
,
1249 struct soc_camera_format_xlate
*xlate
)
1251 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1252 struct device
*dev
= icd
->dev
.parent
;
1253 int formats
= 0, ret
;
1254 struct pxa_cam
*cam
;
1255 enum v4l2_mbus_pixelcode code
;
1256 const struct soc_mbus_pixelfmt
*fmt
;
1258 ret
= v4l2_subdev_call(sd
, video
, enum_mbus_fmt
, idx
, &code
);
1260 /* No more formats */
1263 fmt
= soc_mbus_get_fmtdesc(code
);
1265 dev_err(dev
, "Invalid format code #%d: %d\n", idx
, code
);
1269 /* This also checks support for the requested bits-per-sample */
1270 ret
= pxa_camera_try_bus_param(icd
, fmt
->bits_per_sample
);
1274 if (!icd
->host_priv
) {
1275 cam
= kzalloc(sizeof(*cam
), GFP_KERNEL
);
1279 icd
->host_priv
= cam
;
1281 cam
= icd
->host_priv
;
1285 case V4L2_MBUS_FMT_YUYV8_2X8_BE
:
1288 xlate
->host_fmt
= &pxa_camera_formats
[0];
1291 dev_dbg(dev
, "Providing format %s using code %d\n",
1292 pxa_camera_formats
[0].name
, code
);
1294 case V4L2_MBUS_FMT_YVYU8_2X8_BE
:
1295 case V4L2_MBUS_FMT_YUYV8_2X8_LE
:
1296 case V4L2_MBUS_FMT_YVYU8_2X8_LE
:
1297 case V4L2_MBUS_FMT_RGB565_2X8_LE
:
1298 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE
:
1300 dev_dbg(dev
, "Providing format %s packed\n",
1304 if (!pxa_camera_packing_supported(fmt
))
1308 "Providing format %s in pass-through mode\n",
1312 /* Generic pass-through */
1315 xlate
->host_fmt
= fmt
;
1323 static void pxa_camera_put_formats(struct soc_camera_device
*icd
)
1325 kfree(icd
->host_priv
);
1326 icd
->host_priv
= NULL
;
1329 static int pxa_camera_check_frame(u32 width
, u32 height
)
1331 /* limit to pxa hardware capabilities */
1332 return height
< 32 || height
> 2048 || width
< 48 || width
> 2048 ||
1336 static int pxa_camera_set_crop(struct soc_camera_device
*icd
,
1337 struct v4l2_crop
*a
)
1339 struct v4l2_rect
*rect
= &a
->c
;
1340 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1341 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1342 struct device
*dev
= icd
->dev
.parent
;
1343 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1344 struct soc_camera_sense sense
= {
1345 .master_clock
= pcdev
->mclk
,
1346 .pixel_clock_max
= pcdev
->ciclk
/ 4,
1348 struct v4l2_mbus_framefmt mf
;
1349 struct pxa_cam
*cam
= icd
->host_priv
;
1350 u32 fourcc
= icd
->current_fmt
->host_fmt
->fourcc
;
1353 /* If PCLK is used to latch data from the sensor, check sense */
1354 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1355 icd
->sense
= &sense
;
1357 ret
= v4l2_subdev_call(sd
, video
, s_crop
, a
);
1362 dev_warn(dev
, "Failed to crop to %ux%u@%u:%u\n",
1363 rect
->width
, rect
->height
, rect
->left
, rect
->top
);
1367 ret
= v4l2_subdev_call(sd
, video
, g_mbus_fmt
, &mf
);
1371 if (pxa_camera_check_frame(mf
.width
, mf
.height
)) {
1373 * Camera cropping produced a frame beyond our capabilities.
1374 * FIXME: just extract a subframe, that we can process.
1376 v4l_bound_align_image(&mf
.width
, 48, 2048, 1,
1377 &mf
.height
, 32, 2048, 0,
1378 fourcc
== V4L2_PIX_FMT_YUV422P
? 4 : 0);
1379 ret
= v4l2_subdev_call(sd
, video
, s_mbus_fmt
, &mf
);
1383 if (pxa_camera_check_frame(mf
.width
, mf
.height
)) {
1384 dev_warn(icd
->dev
.parent
,
1385 "Inconsistent state. Use S_FMT to repair\n");
1390 if (sense
.flags
& SOCAM_SENSE_PCLK_CHANGED
) {
1391 if (sense
.pixel_clock
> sense
.pixel_clock_max
) {
1393 "pixel clock %lu set by the camera too high!",
1397 recalculate_fifo_timeout(pcdev
, sense
.pixel_clock
);
1400 icd
->user_width
= mf
.width
;
1401 icd
->user_height
= mf
.height
;
1403 pxa_camera_setup_cicr(icd
, cam
->flags
, fourcc
);
1408 static int pxa_camera_set_fmt(struct soc_camera_device
*icd
,
1409 struct v4l2_format
*f
)
1411 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1412 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1413 struct device
*dev
= icd
->dev
.parent
;
1414 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1415 const struct soc_camera_format_xlate
*xlate
= NULL
;
1416 struct soc_camera_sense sense
= {
1417 .master_clock
= pcdev
->mclk
,
1418 .pixel_clock_max
= pcdev
->ciclk
/ 4,
1420 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1421 struct v4l2_mbus_framefmt mf
;
1424 xlate
= soc_camera_xlate_by_fourcc(icd
, pix
->pixelformat
);
1426 dev_warn(dev
, "Format %x not found\n", pix
->pixelformat
);
1430 /* If PCLK is used to latch data from the sensor, check sense */
1431 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1432 /* The caller holds a mutex. */
1433 icd
->sense
= &sense
;
1435 mf
.width
= pix
->width
;
1436 mf
.height
= pix
->height
;
1437 mf
.field
= pix
->field
;
1438 mf
.colorspace
= pix
->colorspace
;
1439 mf
.code
= xlate
->code
;
1441 ret
= v4l2_subdev_call(sd
, video
, s_mbus_fmt
, &mf
);
1443 if (mf
.code
!= xlate
->code
)
1449 dev_warn(dev
, "Failed to configure for format %x\n",
1451 } else if (pxa_camera_check_frame(mf
.width
, mf
.height
)) {
1453 "Camera driver produced an unsupported frame %dx%d\n",
1454 mf
.width
, mf
.height
);
1456 } else if (sense
.flags
& SOCAM_SENSE_PCLK_CHANGED
) {
1457 if (sense
.pixel_clock
> sense
.pixel_clock_max
) {
1459 "pixel clock %lu set by the camera too high!",
1463 recalculate_fifo_timeout(pcdev
, sense
.pixel_clock
);
1469 pix
->width
= mf
.width
;
1470 pix
->height
= mf
.height
;
1471 pix
->field
= mf
.field
;
1472 pix
->colorspace
= mf
.colorspace
;
1473 icd
->current_fmt
= xlate
;
1478 static int pxa_camera_try_fmt(struct soc_camera_device
*icd
,
1479 struct v4l2_format
*f
)
1481 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1482 const struct soc_camera_format_xlate
*xlate
;
1483 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1484 struct v4l2_mbus_framefmt mf
;
1485 __u32 pixfmt
= pix
->pixelformat
;
1488 xlate
= soc_camera_xlate_by_fourcc(icd
, pixfmt
);
1490 dev_warn(icd
->dev
.parent
, "Format %x not found\n", pixfmt
);
1495 * Limit to pxa hardware capabilities. YUV422P planar format requires
1496 * images size to be a multiple of 16 bytes. If not, zeros will be
1497 * inserted between Y and U planes, and U and V planes, which violates
1498 * the YUV422P standard.
1500 v4l_bound_align_image(&pix
->width
, 48, 2048, 1,
1501 &pix
->height
, 32, 2048, 0,
1502 pixfmt
== V4L2_PIX_FMT_YUV422P
? 4 : 0);
1504 pix
->bytesperline
= soc_mbus_bytes_per_line(pix
->width
,
1506 if (pix
->bytesperline
< 0)
1507 return pix
->bytesperline
;
1508 pix
->sizeimage
= pix
->height
* pix
->bytesperline
;
1510 /* limit to sensor capabilities */
1511 mf
.width
= pix
->width
;
1512 mf
.height
= pix
->height
;
1513 mf
.field
= pix
->field
;
1514 mf
.colorspace
= pix
->colorspace
;
1515 mf
.code
= xlate
->code
;
1517 ret
= v4l2_subdev_call(sd
, video
, try_mbus_fmt
, &mf
);
1521 pix
->width
= mf
.width
;
1522 pix
->height
= mf
.height
;
1523 pix
->colorspace
= mf
.colorspace
;
1526 case V4L2_FIELD_ANY
:
1527 case V4L2_FIELD_NONE
:
1528 pix
->field
= V4L2_FIELD_NONE
;
1531 /* TODO: support interlaced at least in pass-through mode */
1532 dev_err(icd
->dev
.parent
, "Field type %d unsupported.\n",
1540 static int pxa_camera_reqbufs(struct soc_camera_file
*icf
,
1541 struct v4l2_requestbuffers
*p
)
1546 * This is for locking debugging only. I removed spinlocks and now I
1547 * check whether .prepare is ever called on a linked buffer, or whether
1548 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
1549 * it hadn't triggered
1551 for (i
= 0; i
< p
->count
; i
++) {
1552 struct pxa_buffer
*buf
= container_of(icf
->vb_vidq
.bufs
[i
],
1553 struct pxa_buffer
, vb
);
1555 INIT_LIST_HEAD(&buf
->vb
.queue
);
1561 static unsigned int pxa_camera_poll(struct file
*file
, poll_table
*pt
)
1563 struct soc_camera_file
*icf
= file
->private_data
;
1564 struct pxa_buffer
*buf
;
1566 buf
= list_entry(icf
->vb_vidq
.stream
.next
, struct pxa_buffer
,
1569 poll_wait(file
, &buf
->vb
.done
, pt
);
1571 if (buf
->vb
.state
== VIDEOBUF_DONE
||
1572 buf
->vb
.state
== VIDEOBUF_ERROR
)
1573 return POLLIN
|POLLRDNORM
;
1578 static int pxa_camera_querycap(struct soc_camera_host
*ici
,
1579 struct v4l2_capability
*cap
)
1581 /* cap->name is set by the firendly caller:-> */
1582 strlcpy(cap
->card
, pxa_cam_driver_description
, sizeof(cap
->card
));
1583 cap
->version
= PXA_CAM_VERSION_CODE
;
1584 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
1589 static int pxa_camera_suspend(struct soc_camera_device
*icd
, pm_message_t state
)
1591 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1592 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1595 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR0
);
1596 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR1
);
1597 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR2
);
1598 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR3
);
1599 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR4
);
1601 if ((pcdev
->icd
) && (pcdev
->icd
->ops
->suspend
))
1602 ret
= pcdev
->icd
->ops
->suspend(pcdev
->icd
, state
);
1607 static int pxa_camera_resume(struct soc_camera_device
*icd
)
1609 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->dev
.parent
);
1610 struct pxa_camera_dev
*pcdev
= ici
->priv
;
1613 DRCMR(68) = pcdev
->dma_chans
[0] | DRCMR_MAPVLD
;
1614 DRCMR(69) = pcdev
->dma_chans
[1] | DRCMR_MAPVLD
;
1615 DRCMR(70) = pcdev
->dma_chans
[2] | DRCMR_MAPVLD
;
1617 __raw_writel(pcdev
->save_cicr
[i
++] & ~CICR0_ENB
, pcdev
->base
+ CICR0
);
1618 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR1
);
1619 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR2
);
1620 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR3
);
1621 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR4
);
1623 if ((pcdev
->icd
) && (pcdev
->icd
->ops
->resume
))
1624 ret
= pcdev
->icd
->ops
->resume(pcdev
->icd
);
1626 /* Restart frame capture if active buffer exists */
1627 if (!ret
&& pcdev
->active
)
1628 pxa_camera_start_capture(pcdev
);
1633 static struct soc_camera_host_ops pxa_soc_camera_host_ops
= {
1634 .owner
= THIS_MODULE
,
1635 .add
= pxa_camera_add_device
,
1636 .remove
= pxa_camera_remove_device
,
1637 .suspend
= pxa_camera_suspend
,
1638 .resume
= pxa_camera_resume
,
1639 .set_crop
= pxa_camera_set_crop
,
1640 .get_formats
= pxa_camera_get_formats
,
1641 .put_formats
= pxa_camera_put_formats
,
1642 .set_fmt
= pxa_camera_set_fmt
,
1643 .try_fmt
= pxa_camera_try_fmt
,
1644 .init_videobuf
= pxa_camera_init_videobuf
,
1645 .reqbufs
= pxa_camera_reqbufs
,
1646 .poll
= pxa_camera_poll
,
1647 .querycap
= pxa_camera_querycap
,
1648 .set_bus_param
= pxa_camera_set_bus_param
,
1651 static int __devinit
pxa_camera_probe(struct platform_device
*pdev
)
1653 struct pxa_camera_dev
*pcdev
;
1654 struct resource
*res
;
1659 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1660 irq
= platform_get_irq(pdev
, 0);
1661 if (!res
|| irq
< 0) {
1666 pcdev
= kzalloc(sizeof(*pcdev
), GFP_KERNEL
);
1668 dev_err(&pdev
->dev
, "Could not allocate pcdev\n");
1673 pcdev
->clk
= clk_get(&pdev
->dev
, NULL
);
1674 if (IS_ERR(pcdev
->clk
)) {
1675 err
= PTR_ERR(pcdev
->clk
);
1681 pcdev
->pdata
= pdev
->dev
.platform_data
;
1682 pcdev
->platform_flags
= pcdev
->pdata
->flags
;
1683 if (!(pcdev
->platform_flags
& (PXA_CAMERA_DATAWIDTH_8
|
1684 PXA_CAMERA_DATAWIDTH_9
| PXA_CAMERA_DATAWIDTH_10
))) {
1686 * Platform hasn't set available data widths. This is bad.
1687 * Warn and use a default.
1689 dev_warn(&pdev
->dev
, "WARNING! Platform hasn't set available "
1690 "data widths, using default 10 bit\n");
1691 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_10
;
1693 pcdev
->mclk
= pcdev
->pdata
->mclk_10khz
* 10000;
1695 dev_warn(&pdev
->dev
,
1696 "mclk == 0! Please, fix your platform data. "
1697 "Using default 20MHz\n");
1698 pcdev
->mclk
= 20000000;
1701 pcdev
->mclk_divisor
= mclk_get_divisor(pdev
, pcdev
);
1703 INIT_LIST_HEAD(&pcdev
->capture
);
1704 spin_lock_init(&pcdev
->lock
);
1707 * Request the regions.
1709 if (!request_mem_region(res
->start
, resource_size(res
),
1710 PXA_CAM_DRV_NAME
)) {
1715 base
= ioremap(res
->start
, resource_size(res
));
1724 err
= pxa_request_dma("CI_Y", DMA_PRIO_HIGH
,
1725 pxa_camera_dma_irq_y
, pcdev
);
1727 dev_err(&pdev
->dev
, "Can't request DMA for Y\n");
1730 pcdev
->dma_chans
[0] = err
;
1731 dev_dbg(&pdev
->dev
, "got DMA channel %d\n", pcdev
->dma_chans
[0]);
1733 err
= pxa_request_dma("CI_U", DMA_PRIO_HIGH
,
1734 pxa_camera_dma_irq_u
, pcdev
);
1736 dev_err(&pdev
->dev
, "Can't request DMA for U\n");
1737 goto exit_free_dma_y
;
1739 pcdev
->dma_chans
[1] = err
;
1740 dev_dbg(&pdev
->dev
, "got DMA channel (U) %d\n", pcdev
->dma_chans
[1]);
1742 err
= pxa_request_dma("CI_V", DMA_PRIO_HIGH
,
1743 pxa_camera_dma_irq_v
, pcdev
);
1745 dev_err(&pdev
->dev
, "Can't request DMA for V\n");
1746 goto exit_free_dma_u
;
1748 pcdev
->dma_chans
[2] = err
;
1749 dev_dbg(&pdev
->dev
, "got DMA channel (V) %d\n", pcdev
->dma_chans
[2]);
1751 DRCMR(68) = pcdev
->dma_chans
[0] | DRCMR_MAPVLD
;
1752 DRCMR(69) = pcdev
->dma_chans
[1] | DRCMR_MAPVLD
;
1753 DRCMR(70) = pcdev
->dma_chans
[2] | DRCMR_MAPVLD
;
1756 err
= request_irq(pcdev
->irq
, pxa_camera_irq
, 0, PXA_CAM_DRV_NAME
,
1759 dev_err(&pdev
->dev
, "Camera interrupt register failed \n");
1763 pcdev
->soc_host
.drv_name
= PXA_CAM_DRV_NAME
;
1764 pcdev
->soc_host
.ops
= &pxa_soc_camera_host_ops
;
1765 pcdev
->soc_host
.priv
= pcdev
;
1766 pcdev
->soc_host
.v4l2_dev
.dev
= &pdev
->dev
;
1767 pcdev
->soc_host
.nr
= pdev
->id
;
1769 err
= soc_camera_host_register(&pcdev
->soc_host
);
1776 free_irq(pcdev
->irq
, pcdev
);
1778 pxa_free_dma(pcdev
->dma_chans
[2]);
1780 pxa_free_dma(pcdev
->dma_chans
[1]);
1782 pxa_free_dma(pcdev
->dma_chans
[0]);
1786 release_mem_region(res
->start
, resource_size(res
));
1788 clk_put(pcdev
->clk
);
1795 static int __devexit
pxa_camera_remove(struct platform_device
*pdev
)
1797 struct soc_camera_host
*soc_host
= to_soc_camera_host(&pdev
->dev
);
1798 struct pxa_camera_dev
*pcdev
= container_of(soc_host
,
1799 struct pxa_camera_dev
, soc_host
);
1800 struct resource
*res
;
1802 clk_put(pcdev
->clk
);
1804 pxa_free_dma(pcdev
->dma_chans
[0]);
1805 pxa_free_dma(pcdev
->dma_chans
[1]);
1806 pxa_free_dma(pcdev
->dma_chans
[2]);
1807 free_irq(pcdev
->irq
, pcdev
);
1809 soc_camera_host_unregister(soc_host
);
1811 iounmap(pcdev
->base
);
1814 release_mem_region(res
->start
, resource_size(res
));
1818 dev_info(&pdev
->dev
, "PXA Camera driver unloaded\n");
1823 static struct platform_driver pxa_camera_driver
= {
1825 .name
= PXA_CAM_DRV_NAME
,
1827 .probe
= pxa_camera_probe
,
1828 .remove
= __devexit_p(pxa_camera_remove
),
1832 static int __init
pxa_camera_init(void)
1834 return platform_driver_register(&pxa_camera_driver
);
1837 static void __exit
pxa_camera_exit(void)
1839 platform_driver_unregister(&pxa_camera_driver
);
1842 module_init(pxa_camera_init
);
1843 module_exit(pxa_camera_exit
);
1845 MODULE_DESCRIPTION("PXA27x SoC Camera Host driver");
1846 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1847 MODULE_LICENSE("GPL");
1848 MODULE_ALIAS("platform:" PXA_CAM_DRV_NAME
);