[media] pxa_camera: fix the buffer free path
[deliverable/linux.git] / drivers / media / platform / soc_camera / pxa_camera.c
CommitLineData
3bc43840
GL
1/*
2 * V4L2 Driver for PXA camera host
3 *
4 * Copyright (C) 2006, Sascha Hauer, Pengutronix
5 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
6 *
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.
11 */
12
3bc43840
GL
13#include <linux/init.h>
14#include <linux/module.h>
7102b773 15#include <linux/io.h>
3bc43840
GL
16#include <linux/delay.h>
17#include <linux/dma-mapping.h>
8efdb135 18#include <linux/err.h>
3bc43840
GL
19#include <linux/errno.h>
20#include <linux/fs.h>
21#include <linux/interrupt.h>
22#include <linux/kernel.h>
23#include <linux/mm.h>
24#include <linux/moduleparam.h>
25#include <linux/time.h>
3bc43840
GL
26#include <linux/device.h>
27#include <linux/platform_device.h>
3bc43840 28#include <linux/clk.h>
d514edac 29#include <linux/sched.h>
5a0e3ad6 30#include <linux/slab.h>
3bc43840
GL
31
32#include <media/v4l2-common.h>
33#include <media/v4l2-dev.h>
092d3921 34#include <media/videobuf-dma-sg.h>
3bc43840 35#include <media/soc_camera.h>
d647f0b7 36#include <media/drv-intf/soc_mediabus.h>
e9a1d94f 37#include <media/v4l2-of.h>
3bc43840
GL
38
39#include <linux/videodev2.h>
40
cfbaf4df 41#include <mach/dma.h>
a71daaa1 42#include <linux/platform_data/media/camera-pxa.h>
3bc43840 43
64dc3c1a 44#define PXA_CAM_VERSION "0.0.6"
3bc43840
GL
45#define PXA_CAM_DRV_NAME "pxa27x-camera"
46
5ca11fa3
EM
47/* Camera Interface */
48#define CICR0 0x0000
49#define CICR1 0x0004
50#define CICR2 0x0008
51#define CICR3 0x000C
52#define CICR4 0x0010
53#define CISR 0x0014
54#define CIFR 0x0018
55#define CITOR 0x001C
56#define CIBR0 0x0028
57#define CIBR1 0x0030
58#define CIBR2 0x0038
59
60#define CICR0_DMAEN (1 << 31) /* DMA request enable */
61#define CICR0_PAR_EN (1 << 30) /* Parity enable */
62#define CICR0_SL_CAP_EN (1 << 29) /* Capture enable for slave mode */
63#define CICR0_ENB (1 << 28) /* Camera interface enable */
64#define CICR0_DIS (1 << 27) /* Camera interface disable */
65#define CICR0_SIM (0x7 << 24) /* Sensor interface mode mask */
66#define CICR0_TOM (1 << 9) /* Time-out mask */
67#define CICR0_RDAVM (1 << 8) /* Receive-data-available mask */
68#define CICR0_FEM (1 << 7) /* FIFO-empty mask */
69#define CICR0_EOLM (1 << 6) /* End-of-line mask */
70#define CICR0_PERRM (1 << 5) /* Parity-error mask */
71#define CICR0_QDM (1 << 4) /* Quick-disable mask */
72#define CICR0_CDM (1 << 3) /* Disable-done mask */
73#define CICR0_SOFM (1 << 2) /* Start-of-frame mask */
74#define CICR0_EOFM (1 << 1) /* End-of-frame mask */
75#define CICR0_FOM (1 << 0) /* FIFO-overrun mask */
76
77#define CICR1_TBIT (1 << 31) /* Transparency bit */
78#define CICR1_RGBT_CONV (0x3 << 29) /* RGBT conversion mask */
79#define CICR1_PPL (0x7ff << 15) /* Pixels per line mask */
80#define CICR1_RGB_CONV (0x7 << 12) /* RGB conversion mask */
81#define CICR1_RGB_F (1 << 11) /* RGB format */
82#define CICR1_YCBCR_F (1 << 10) /* YCbCr format */
83#define CICR1_RGB_BPP (0x7 << 7) /* RGB bis per pixel mask */
84#define CICR1_RAW_BPP (0x3 << 5) /* Raw bis per pixel mask */
85#define CICR1_COLOR_SP (0x3 << 3) /* Color space mask */
86#define CICR1_DW (0x7 << 0) /* Data width mask */
87
88#define CICR2_BLW (0xff << 24) /* Beginning-of-line pixel clock
89 wait count mask */
90#define CICR2_ELW (0xff << 16) /* End-of-line pixel clock
91 wait count mask */
92#define CICR2_HSW (0x3f << 10) /* Horizontal sync pulse width mask */
93#define CICR2_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
94 wait count mask */
95#define CICR2_FSW (0x7 << 0) /* Frame stabilization
96 wait count mask */
97
98#define CICR3_BFW (0xff << 24) /* Beginning-of-frame line clock
99 wait count mask */
100#define CICR3_EFW (0xff << 16) /* End-of-frame line clock
101 wait count mask */
102#define CICR3_VSW (0x3f << 10) /* Vertical sync pulse width mask */
103#define CICR3_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
104 wait count mask */
105#define CICR3_LPF (0x7ff << 0) /* Lines per frame mask */
106
107#define CICR4_MCLK_DLY (0x3 << 24) /* MCLK Data Capture Delay mask */
108#define CICR4_PCLK_EN (1 << 23) /* Pixel clock enable */
109#define CICR4_PCP (1 << 22) /* Pixel clock polarity */
110#define CICR4_HSP (1 << 21) /* Horizontal sync polarity */
111#define CICR4_VSP (1 << 20) /* Vertical sync polarity */
112#define CICR4_MCLK_EN (1 << 19) /* MCLK enable */
113#define CICR4_FR_RATE (0x7 << 8) /* Frame rate mask */
114#define CICR4_DIV (0xff << 0) /* Clock divisor mask */
115
116#define CISR_FTO (1 << 15) /* FIFO time-out */
117#define CISR_RDAV_2 (1 << 14) /* Channel 2 receive data available */
118#define CISR_RDAV_1 (1 << 13) /* Channel 1 receive data available */
119#define CISR_RDAV_0 (1 << 12) /* Channel 0 receive data available */
120#define CISR_FEMPTY_2 (1 << 11) /* Channel 2 FIFO empty */
121#define CISR_FEMPTY_1 (1 << 10) /* Channel 1 FIFO empty */
122#define CISR_FEMPTY_0 (1 << 9) /* Channel 0 FIFO empty */
123#define CISR_EOL (1 << 8) /* End of line */
124#define CISR_PAR_ERR (1 << 7) /* Parity error */
125#define CISR_CQD (1 << 6) /* Camera interface quick disable */
126#define CISR_CDD (1 << 5) /* Camera interface disable done */
127#define CISR_SOF (1 << 4) /* Start of frame */
128#define CISR_EOF (1 << 3) /* End of frame */
129#define CISR_IFO_2 (1 << 2) /* FIFO overrun for Channel 2 */
130#define CISR_IFO_1 (1 << 1) /* FIFO overrun for Channel 1 */
131#define CISR_IFO_0 (1 << 0) /* FIFO overrun for Channel 0 */
132
133#define CIFR_FLVL2 (0x7f << 23) /* FIFO 2 level mask */
134#define CIFR_FLVL1 (0x7f << 16) /* FIFO 1 level mask */
135#define CIFR_FLVL0 (0xff << 8) /* FIFO 0 level mask */
136#define CIFR_THL_0 (0x3 << 4) /* Threshold Level for Channel 0 FIFO */
137#define CIFR_RESET_F (1 << 3) /* Reset input FIFOs */
138#define CIFR_FEN2 (1 << 2) /* FIFO enable for channel 2 */
139#define CIFR_FEN1 (1 << 1) /* FIFO enable for channel 1 */
140#define CIFR_FEN0 (1 << 0) /* FIFO enable for channel 0 */
141
7102b773
GL
142#define CICR0_SIM_MP (0 << 24)
143#define CICR0_SIM_SP (1 << 24)
144#define CICR0_SIM_MS (2 << 24)
145#define CICR0_SIM_EP (3 << 24)
146#define CICR0_SIM_ES (4 << 24)
147
148#define CICR1_DW_VAL(x) ((x) & CICR1_DW) /* Data bus width */
149#define CICR1_PPL_VAL(x) (((x) << 15) & CICR1_PPL) /* Pixels per line */
a5462e5b
MR
150#define CICR1_COLOR_SP_VAL(x) (((x) << 3) & CICR1_COLOR_SP) /* color space */
151#define CICR1_RGB_BPP_VAL(x) (((x) << 7) & CICR1_RGB_BPP) /* bpp for rgb */
152#define CICR1_RGBT_CONV_VAL(x) (((x) << 29) & CICR1_RGBT_CONV) /* rgbt conv */
7102b773
GL
153
154#define CICR2_BLW_VAL(x) (((x) << 24) & CICR2_BLW) /* Beginning-of-line pixel clock wait count */
155#define CICR2_ELW_VAL(x) (((x) << 16) & CICR2_ELW) /* End-of-line pixel clock wait count */
156#define CICR2_HSW_VAL(x) (((x) << 10) & CICR2_HSW) /* Horizontal sync pulse width */
157#define CICR2_BFPW_VAL(x) (((x) << 3) & CICR2_BFPW) /* Beginning-of-frame pixel clock wait count */
158#define CICR2_FSW_VAL(x) (((x) << 0) & CICR2_FSW) /* Frame stabilization wait count */
159
160#define CICR3_BFW_VAL(x) (((x) << 24) & CICR3_BFW) /* Beginning-of-frame line clock wait count */
161#define CICR3_EFW_VAL(x) (((x) << 16) & CICR3_EFW) /* End-of-frame line clock wait count */
162#define CICR3_VSW_VAL(x) (((x) << 11) & CICR3_VSW) /* Vertical sync pulse width */
163#define CICR3_LPF_VAL(x) (((x) << 0) & CICR3_LPF) /* Lines per frame */
164
3bc43840
GL
165#define CICR0_IRQ_MASK (CICR0_TOM | CICR0_RDAVM | CICR0_FEM | CICR0_EOLM | \
166 CICR0_PERRM | CICR0_QDM | CICR0_CDM | CICR0_SOFM | \
167 CICR0_EOFM | CICR0_FOM)
168
3bc43840
GL
169/*
170 * Structures
171 */
a5462e5b
MR
172enum pxa_camera_active_dma {
173 DMA_Y = 0x1,
174 DMA_U = 0x2,
175 DMA_V = 0x4,
176};
177
178/* descriptor needed for the PXA DMA engine */
179struct pxa_cam_dma {
180 dma_addr_t sg_dma;
181 struct pxa_dma_desc *sg_cpu;
182 size_t sg_size;
183 int sglen;
184};
3bc43840
GL
185
186/* buffer for one video frame */
187struct pxa_buffer {
188 /* common v4l buffer stuff -- must be first */
760697be 189 struct videobuf_buffer vb;
27ffaeb0 190 u32 code;
a5462e5b 191 /* our descriptor lists for Y, U and V channels */
760697be
GL
192 struct pxa_cam_dma dmas[3];
193 int inwork;
194 enum pxa_camera_active_dma active_dma;
3bc43840
GL
195};
196
3bc43840 197struct pxa_camera_dev {
eb6c8558 198 struct soc_camera_host soc_host;
5d28d525
GL
199 /*
200 * PXA27x is only supposed to handle one camera on its Quick Capture
3bc43840 201 * interface. If anyone ever builds hardware to enable more than
5d28d525
GL
202 * one camera, they will have to modify this driver too
203 */
3bc43840
GL
204 struct clk *clk;
205
206 unsigned int irq;
207 void __iomem *base;
a5462e5b 208
e7c50688 209 int channels;
a5462e5b 210 unsigned int dma_chans[3];
3bc43840 211
3bc43840
GL
212 struct pxacamera_platform_data *pdata;
213 struct resource *res;
214 unsigned long platform_flags;
cf34cba7
GL
215 unsigned long ciclk;
216 unsigned long mclk;
217 u32 mclk_divisor;
679419aa 218 u16 width_flags; /* max 10 bits */
3bc43840
GL
219
220 struct list_head capture;
221
222 spinlock_t lock;
223
3bc43840 224 struct pxa_buffer *active;
5aa2110f 225 struct pxa_dma_desc *sg_tail[3];
3f6ac497
RJ
226
227 u32 save_cicr[5];
3bc43840
GL
228};
229
6a6c8786
GL
230struct pxa_cam {
231 unsigned long flags;
232};
233
3bc43840
GL
234static const char *pxa_cam_driver_description = "PXA_Camera";
235
236static unsigned int vid_limit = 16; /* Video memory limit, in Mb */
237
238/*
239 * Videobuf operations
240 */
7102b773
GL
241static int pxa_videobuf_setup(struct videobuf_queue *vq, unsigned int *count,
242 unsigned int *size)
3bc43840
GL
243{
244 struct soc_camera_device *icd = vq->priv_data;
245
7dfff953 246 dev_dbg(icd->parent, "count=%d, size=%d\n", *count, *size);
3bc43840 247
2b61d46e 248 *size = icd->sizeimage;
3bc43840
GL
249
250 if (0 == *count)
251 *count = 32;
dab7e310
AB
252 if (*size * *count > vid_limit * 1024 * 1024)
253 *count = (vid_limit * 1024 * 1024) / *size;
3bc43840
GL
254
255 return 0;
256}
257
258static void free_buffer(struct videobuf_queue *vq, struct pxa_buffer *buf)
259{
260 struct soc_camera_device *icd = vq->priv_data;
7dfff953 261 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
3bc43840 262 struct videobuf_dmabuf *dma = videobuf_to_dma(&buf->vb);
a5462e5b 263 int i;
3bc43840
GL
264
265 BUG_ON(in_interrupt());
266
7dfff953 267 dev_dbg(icd->parent, "%s (vb=0x%p) 0x%08lx %d\n", __func__,
3bc43840
GL
268 &buf->vb, buf->vb.baddr, buf->vb.bsize);
269
5d28d525
GL
270 /*
271 * This waits until this buffer is out of danger, i.e., until it is no
272 * longer in STATE_QUEUED or STATE_ACTIVE
273 */
0e0809a5 274 videobuf_waiton(vq, &buf->vb, 0, 0);
3bc43840 275
a5462e5b
MR
276 for (i = 0; i < ARRAY_SIZE(buf->dmas); i++) {
277 if (buf->dmas[i].sg_cpu)
96c75399
GL
278 dma_free_coherent(ici->v4l2_dev.dev,
279 buf->dmas[i].sg_size,
a5462e5b
MR
280 buf->dmas[i].sg_cpu,
281 buf->dmas[i].sg_dma);
282 buf->dmas[i].sg_cpu = NULL;
283 }
8f4895f2
RJ
284 videobuf_dma_unmap(vq->dev, dma);
285 videobuf_dma_free(dma);
3bc43840
GL
286
287 buf->vb.state = VIDEOBUF_NEEDS_INIT;
288}
289
37f5aefd
RJ
290static int calculate_dma_sglen(struct scatterlist *sglist, int sglen,
291 int sg_first_ofs, int size)
292{
293 int i, offset, dma_len, xfer_len;
294 struct scatterlist *sg;
295
296 offset = sg_first_ofs;
297 for_each_sg(sglist, sg, sglen, i) {
298 dma_len = sg_dma_len(sg);
299
300 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
301 xfer_len = roundup(min(dma_len - offset, size), 8);
302
303 size = max(0, size - xfer_len);
304 offset = 0;
305 if (size == 0)
306 break;
307 }
308
309 BUG_ON(size != 0);
310 return i + 1;
311}
312
313/**
314 * pxa_init_dma_channel - init dma descriptors
315 * @pcdev: pxa camera device
316 * @buf: pxa buffer to find pxa dma channel
317 * @dma: dma video buffer
318 * @channel: dma channel (0 => 'Y', 1 => 'U', 2 => 'V')
319 * @cibr: camera Receive Buffer Register
320 * @size: bytes to transfer
321 * @sg_first: first element of sg_list
322 * @sg_first_ofs: offset in first element of sg_list
323 *
324 * Prepares the pxa dma descriptors to transfer one camera channel.
325 * Beware sg_first and sg_first_ofs are both input and output parameters.
326 *
327 * Returns 0 or -ENOMEM if no coherent memory is available
328 */
a5462e5b
MR
329static int pxa_init_dma_channel(struct pxa_camera_dev *pcdev,
330 struct pxa_buffer *buf,
331 struct videobuf_dmabuf *dma, int channel,
37f5aefd
RJ
332 int cibr, int size,
333 struct scatterlist **sg_first, int *sg_first_ofs)
a5462e5b
MR
334{
335 struct pxa_cam_dma *pxa_dma = &buf->dmas[channel];
979ea1dd 336 struct device *dev = pcdev->soc_host.v4l2_dev.dev;
37f5aefd
RJ
337 struct scatterlist *sg;
338 int i, offset, sglen;
339 int dma_len = 0, xfer_len = 0;
a5462e5b
MR
340
341 if (pxa_dma->sg_cpu)
979ea1dd 342 dma_free_coherent(dev, pxa_dma->sg_size,
a5462e5b
MR
343 pxa_dma->sg_cpu, pxa_dma->sg_dma);
344
37f5aefd
RJ
345 sglen = calculate_dma_sglen(*sg_first, dma->sglen,
346 *sg_first_ofs, size);
347
a5462e5b 348 pxa_dma->sg_size = (sglen + 1) * sizeof(struct pxa_dma_desc);
979ea1dd 349 pxa_dma->sg_cpu = dma_alloc_coherent(dev, pxa_dma->sg_size,
a5462e5b
MR
350 &pxa_dma->sg_dma, GFP_KERNEL);
351 if (!pxa_dma->sg_cpu)
352 return -ENOMEM;
353
354 pxa_dma->sglen = sglen;
37f5aefd 355 offset = *sg_first_ofs;
a5462e5b 356
979ea1dd 357 dev_dbg(dev, "DMA: sg_first=%p, sglen=%d, ofs=%d, dma.desc=%x\n",
37f5aefd 358 *sg_first, sglen, *sg_first_ofs, pxa_dma->sg_dma);
a5462e5b 359
37f5aefd
RJ
360
361 for_each_sg(*sg_first, sg, sglen, i) {
362 dma_len = sg_dma_len(sg);
a5462e5b
MR
363
364 /* PXA27x Developer's Manual 27.4.4.1: round up to 8 bytes */
37f5aefd 365 xfer_len = roundup(min(dma_len - offset, size), 8);
a5462e5b 366
37f5aefd
RJ
367 size = max(0, size - xfer_len);
368
369 pxa_dma->sg_cpu[i].dsadr = pcdev->res->start + cibr;
370 pxa_dma->sg_cpu[i].dtadr = sg_dma_address(sg) + offset;
a5462e5b
MR
371 pxa_dma->sg_cpu[i].dcmd =
372 DCMD_FLOWSRC | DCMD_BURST8 | DCMD_INCTRGADDR | xfer_len;
256b0233
RJ
373#ifdef DEBUG
374 if (!i)
375 pxa_dma->sg_cpu[i].dcmd |= DCMD_STARTIRQEN;
376#endif
a5462e5b
MR
377 pxa_dma->sg_cpu[i].ddadr =
378 pxa_dma->sg_dma + (i + 1) * sizeof(struct pxa_dma_desc);
37f5aefd 379
979ea1dd 380 dev_vdbg(dev, "DMA: desc.%08x->@phys=0x%08x, len=%d\n",
37f5aefd
RJ
381 pxa_dma->sg_dma + i * sizeof(struct pxa_dma_desc),
382 sg_dma_address(sg) + offset, xfer_len);
383 offset = 0;
384
385 if (size == 0)
386 break;
a5462e5b
MR
387 }
388
256b0233
RJ
389 pxa_dma->sg_cpu[sglen].ddadr = DDADR_STOP;
390 pxa_dma->sg_cpu[sglen].dcmd = DCMD_FLOWSRC | DCMD_BURST8 | DCMD_ENDIRQEN;
a5462e5b 391
37f5aefd
RJ
392 /*
393 * Handle 1 special case :
394 * - in 3 planes (YUV422P format), we might finish with xfer_len equal
395 * to dma_len (end on PAGE boundary). In this case, the sg element
396 * for next plane should be the next after the last used to store the
397 * last scatter gather RAM page
398 */
399 if (xfer_len >= dma_len) {
400 *sg_first_ofs = xfer_len - dma_len;
401 *sg_first = sg_next(sg);
402 } else {
403 *sg_first_ofs = xfer_len;
404 *sg_first = sg;
405 }
406
a5462e5b
MR
407 return 0;
408}
409
256b0233
RJ
410static void pxa_videobuf_set_actdma(struct pxa_camera_dev *pcdev,
411 struct pxa_buffer *buf)
412{
413 buf->active_dma = DMA_Y;
414 if (pcdev->channels == 3)
415 buf->active_dma |= DMA_U | DMA_V;
416}
417
418/*
419 * Please check the DMA prepared buffer structure in :
420 * Documentation/video4linux/pxa_camera.txt
421 * Please check also in pxa_camera_check_link_miss() to understand why DMA chain
422 * modification while DMA chain is running will work anyway.
423 */
7102b773
GL
424static int pxa_videobuf_prepare(struct videobuf_queue *vq,
425 struct videobuf_buffer *vb, enum v4l2_field field)
3bc43840
GL
426{
427 struct soc_camera_device *icd = vq->priv_data;
7dfff953 428 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
3bc43840 429 struct pxa_camera_dev *pcdev = ici->priv;
979ea1dd 430 struct device *dev = pcdev->soc_host.v4l2_dev.dev;
3bc43840 431 struct pxa_buffer *buf = container_of(vb, struct pxa_buffer, vb);
a5462e5b 432 int ret;
a5462e5b 433 int size_y, size_u = 0, size_v = 0;
3bc43840 434
979ea1dd 435 dev_dbg(dev, "%s (vb=0x%p) 0x%08lx %d\n", __func__,
3bc43840
GL
436 vb, vb->baddr, vb->bsize);
437
438 /* Added list head initialization on alloc */
439 WARN_ON(!list_empty(&vb->queue));
440
441#ifdef DEBUG
5d28d525
GL
442 /*
443 * This can be useful if you want to see if we actually fill
444 * the buffer with something
445 */
3bc43840
GL
446 memset((void *)vb->baddr, 0xaa, vb->bsize);
447#endif
448
449 BUG_ON(NULL == icd->current_fmt);
450
5d28d525
GL
451 /*
452 * I think, in buf_prepare you only have to protect global data,
453 * the actual buffer is yours
454 */
3bc43840
GL
455 buf->inwork = 1;
456
760697be 457 if (buf->code != icd->current_fmt->code ||
6a6c8786
GL
458 vb->width != icd->user_width ||
459 vb->height != icd->user_height ||
3bc43840 460 vb->field != field) {
760697be 461 buf->code = icd->current_fmt->code;
6a6c8786
GL
462 vb->width = icd->user_width;
463 vb->height = icd->user_height;
3bc43840
GL
464 vb->field = field;
465 vb->state = VIDEOBUF_NEEDS_INIT;
466 }
467
2b61d46e 468 vb->size = icd->sizeimage;
3bc43840
GL
469 if (0 != vb->baddr && vb->bsize < vb->size) {
470 ret = -EINVAL;
471 goto out;
472 }
473
474 if (vb->state == VIDEOBUF_NEEDS_INIT) {
37f5aefd
RJ
475 int size = vb->size;
476 int next_ofs = 0;
3bc43840 477 struct videobuf_dmabuf *dma = videobuf_to_dma(vb);
37f5aefd 478 struct scatterlist *sg;
3bc43840
GL
479
480 ret = videobuf_iolock(vq, vb, NULL);
481 if (ret)
8f4895f2 482 goto out;
3bc43840 483
5aa2110f 484 if (pcdev->channels == 3) {
a5462e5b
MR
485 size_y = size / 2;
486 size_u = size_v = size / 4;
487 } else {
a5462e5b
MR
488 size_y = size;
489 }
490
37f5aefd 491 sg = dma->sglist;
3bc43840 492
37f5aefd
RJ
493 /* init DMA for Y channel */
494 ret = pxa_init_dma_channel(pcdev, buf, dma, 0, CIBR0, size_y,
495 &sg, &next_ofs);
a5462e5b 496 if (ret) {
979ea1dd 497 dev_err(dev, "DMA initialization for Y/RGB failed\n");
3bc43840
GL
498 goto fail;
499 }
500
37f5aefd
RJ
501 /* init DMA for U channel */
502 if (size_u)
503 ret = pxa_init_dma_channel(pcdev, buf, dma, 1, CIBR1,
504 size_u, &sg, &next_ofs);
505 if (ret) {
979ea1dd 506 dev_err(dev, "DMA initialization for U failed\n");
8f4895f2 507 goto fail;
37f5aefd
RJ
508 }
509
510 /* init DMA for V channel */
511 if (size_v)
512 ret = pxa_init_dma_channel(pcdev, buf, dma, 2, CIBR2,
513 size_v, &sg, &next_ofs);
514 if (ret) {
979ea1dd 515 dev_err(dev, "DMA initialization for V failed\n");
8f4895f2 516 goto fail;
3bc43840 517 }
3bc43840
GL
518
519 vb->state = VIDEOBUF_PREPARED;
520 }
521
522 buf->inwork = 0;
256b0233 523 pxa_videobuf_set_actdma(pcdev, buf);
3bc43840
GL
524
525 return 0;
526
527fail:
528 free_buffer(vq, buf);
529out:
530 buf->inwork = 0;
531 return ret;
532}
533
256b0233
RJ
534/**
535 * pxa_dma_start_channels - start DMA channel for active buffer
536 * @pcdev: pxa camera device
537 *
538 * Initialize DMA channels to the beginning of the active video buffer, and
539 * start these channels.
540 */
541static void pxa_dma_start_channels(struct pxa_camera_dev *pcdev)
542{
543 int i;
544 struct pxa_buffer *active;
545
546 active = pcdev->active;
547
548 for (i = 0; i < pcdev->channels; i++) {
0166b743
GL
549 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
550 "%s (channel=%d) ddadr=%08x\n", __func__,
256b0233
RJ
551 i, active->dmas[i].sg_dma);
552 DDADR(pcdev->dma_chans[i]) = active->dmas[i].sg_dma;
553 DCSR(pcdev->dma_chans[i]) = DCSR_RUN;
554 }
555}
556
557static void pxa_dma_stop_channels(struct pxa_camera_dev *pcdev)
558{
559 int i;
560
561 for (i = 0; i < pcdev->channels; i++) {
0166b743
GL
562 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
563 "%s (channel=%d)\n", __func__, i);
256b0233
RJ
564 DCSR(pcdev->dma_chans[i]) = 0;
565 }
566}
567
256b0233
RJ
568static void pxa_dma_add_tail_buf(struct pxa_camera_dev *pcdev,
569 struct pxa_buffer *buf)
570{
571 int i;
572 struct pxa_dma_desc *buf_last_desc;
573
574 for (i = 0; i < pcdev->channels; i++) {
575 buf_last_desc = buf->dmas[i].sg_cpu + buf->dmas[i].sglen;
576 buf_last_desc->ddadr = DDADR_STOP;
577
ae7410e7
GL
578 if (pcdev->sg_tail[i])
579 /* Link the new buffer to the old tail */
580 pcdev->sg_tail[i]->ddadr = buf->dmas[i].sg_dma;
256b0233 581
ae7410e7
GL
582 /* Update the channel tail */
583 pcdev->sg_tail[i] = buf_last_desc;
584 }
256b0233
RJ
585}
586
587/**
588 * pxa_camera_start_capture - start video capturing
589 * @pcdev: camera device
590 *
591 * Launch capturing. DMA channels should not be active yet. They should get
592 * activated at the end of frame interrupt, to capture only whole frames, and
593 * never begin the capture of a partial frame.
594 */
595static void pxa_camera_start_capture(struct pxa_camera_dev *pcdev)
596{
a47f6be4 597 unsigned long cicr0;
256b0233 598
979ea1dd 599 dev_dbg(pcdev->soc_host.v4l2_dev.dev, "%s\n", __func__);
256b0233
RJ
600 /* Enable End-Of-Frame Interrupt */
601 cicr0 = __raw_readl(pcdev->base + CICR0) | CICR0_ENB;
602 cicr0 &= ~CICR0_EOFM;
603 __raw_writel(cicr0, pcdev->base + CICR0);
604}
605
606static void pxa_camera_stop_capture(struct pxa_camera_dev *pcdev)
607{
608 unsigned long cicr0;
609
610 pxa_dma_stop_channels(pcdev);
611
612 cicr0 = __raw_readl(pcdev->base + CICR0) & ~CICR0_ENB;
613 __raw_writel(cicr0, pcdev->base + CICR0);
614
8c62e221 615 pcdev->active = NULL;
979ea1dd 616 dev_dbg(pcdev->soc_host.v4l2_dev.dev, "%s\n", __func__);
256b0233
RJ
617}
618
2dd54a54 619/* Called under spinlock_irqsave(&pcdev->lock, ...) */
7102b773
GL
620static void pxa_videobuf_queue(struct videobuf_queue *vq,
621 struct videobuf_buffer *vb)
3bc43840
GL
622{
623 struct soc_camera_device *icd = vq->priv_data;
7dfff953 624 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
3bc43840
GL
625 struct pxa_camera_dev *pcdev = ici->priv;
626 struct pxa_buffer *buf = container_of(vb, struct pxa_buffer, vb);
3bc43840 627
7dfff953 628 dev_dbg(icd->parent, "%s (vb=0x%p) 0x%08lx %d active=%p\n",
0166b743 629 __func__, vb, vb->baddr, vb->bsize, pcdev->active);
256b0233 630
3bc43840
GL
631 list_add_tail(&vb->queue, &pcdev->capture);
632
633 vb->state = VIDEOBUF_ACTIVE;
256b0233 634 pxa_dma_add_tail_buf(pcdev, buf);
3bc43840 635
256b0233
RJ
636 if (!pcdev->active)
637 pxa_camera_start_capture(pcdev);
3bc43840
GL
638}
639
640static void pxa_videobuf_release(struct videobuf_queue *vq,
641 struct videobuf_buffer *vb)
642{
643 struct pxa_buffer *buf = container_of(vb, struct pxa_buffer, vb);
644#ifdef DEBUG
645 struct soc_camera_device *icd = vq->priv_data;
7dfff953 646 struct device *dev = icd->parent;
3bc43840 647
0166b743 648 dev_dbg(dev, "%s (vb=0x%p) 0x%08lx %d\n", __func__,
3bc43840
GL
649 vb, vb->baddr, vb->bsize);
650
651 switch (vb->state) {
652 case VIDEOBUF_ACTIVE:
0166b743 653 dev_dbg(dev, "%s (active)\n", __func__);
3bc43840
GL
654 break;
655 case VIDEOBUF_QUEUED:
0166b743 656 dev_dbg(dev, "%s (queued)\n", __func__);
3bc43840
GL
657 break;
658 case VIDEOBUF_PREPARED:
0166b743 659 dev_dbg(dev, "%s (prepared)\n", __func__);
3bc43840
GL
660 break;
661 default:
0166b743 662 dev_dbg(dev, "%s (unknown)\n", __func__);
3bc43840
GL
663 break;
664 }
665#endif
666
667 free_buffer(vq, buf);
668}
669
a5462e5b
MR
670static void pxa_camera_wakeup(struct pxa_camera_dev *pcdev,
671 struct videobuf_buffer *vb,
672 struct pxa_buffer *buf)
673{
256b0233 674 int i;
5ca11fa3 675
a5462e5b
MR
676 /* _init is used to debug races, see comment in pxa_camera_reqbufs() */
677 list_del_init(&vb->queue);
678 vb->state = VIDEOBUF_DONE;
8e6057b5 679 v4l2_get_timestamp(&vb->ts);
a5462e5b
MR
680 vb->field_count++;
681 wake_up(&vb->done);
979ea1dd
GL
682 dev_dbg(pcdev->soc_host.v4l2_dev.dev, "%s dequeud buffer (vb=0x%p)\n",
683 __func__, vb);
a5462e5b
MR
684
685 if (list_empty(&pcdev->capture)) {
256b0233 686 pxa_camera_stop_capture(pcdev);
256b0233
RJ
687 for (i = 0; i < pcdev->channels; i++)
688 pcdev->sg_tail[i] = NULL;
a5462e5b
MR
689 return;
690 }
691
692 pcdev->active = list_entry(pcdev->capture.next,
693 struct pxa_buffer, vb.queue);
694}
695
256b0233
RJ
696/**
697 * pxa_camera_check_link_miss - check missed DMA linking
698 * @pcdev: camera device
699 *
700 * The DMA chaining is done with DMA running. This means a tiny temporal window
701 * remains, where a buffer is queued on the chain, while the chain is already
25985edc 702 * stopped. This means the tailed buffer would never be transferred by DMA.
256b0233
RJ
703 * This function restarts the capture for this corner case, where :
704 * - DADR() == DADDR_STOP
705 * - a videobuffer is queued on the pcdev->capture list
706 *
707 * Please check the "DMA hot chaining timeslice issue" in
708 * Documentation/video4linux/pxa_camera.txt
709 *
710 * Context: should only be called within the dma irq handler
711 */
712static void pxa_camera_check_link_miss(struct pxa_camera_dev *pcdev)
713{
714 int i, is_dma_stopped = 1;
715
716 for (i = 0; i < pcdev->channels; i++)
717 if (DDADR(pcdev->dma_chans[i]) != DDADR_STOP)
718 is_dma_stopped = 0;
979ea1dd
GL
719 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
720 "%s : top queued buffer=%p, dma_stopped=%d\n",
256b0233
RJ
721 __func__, pcdev->active, is_dma_stopped);
722 if (pcdev->active && is_dma_stopped)
723 pxa_camera_start_capture(pcdev);
724}
725
a5462e5b
MR
726static void pxa_camera_dma_irq(int channel, struct pxa_camera_dev *pcdev,
727 enum pxa_camera_active_dma act_dma)
3bc43840 728{
979ea1dd 729 struct device *dev = pcdev->soc_host.v4l2_dev.dev;
3bc43840
GL
730 struct pxa_buffer *buf;
731 unsigned long flags;
e7c50688 732 u32 status, camera_status, overrun;
3bc43840
GL
733 struct videobuf_buffer *vb;
734
735 spin_lock_irqsave(&pcdev->lock, flags);
736
a5462e5b 737 status = DCSR(channel);
256b0233
RJ
738 DCSR(channel) = status;
739
740 camera_status = __raw_readl(pcdev->base + CISR);
741 overrun = CISR_IFO_0;
742 if (pcdev->channels == 3)
743 overrun |= CISR_IFO_1 | CISR_IFO_2;
7102b773 744
3bc43840 745 if (status & DCSR_BUSERR) {
979ea1dd 746 dev_err(dev, "DMA Bus Error IRQ!\n");
3bc43840
GL
747 goto out;
748 }
749
256b0233 750 if (!(status & (DCSR_ENDINTR | DCSR_STARTINTR))) {
979ea1dd
GL
751 dev_err(dev, "Unknown DMA IRQ source, status: 0x%08x\n",
752 status);
3bc43840
GL
753 goto out;
754 }
755
8c62e221
RJ
756 /*
757 * pcdev->active should not be NULL in DMA irq handler.
758 *
759 * But there is one corner case : if capture was stopped due to an
760 * overrun of channel 1, and at that same channel 2 was completed.
761 *
762 * When handling the overrun in DMA irq for channel 1, we'll stop the
763 * capture and restart it (and thus set pcdev->active to NULL). But the
764 * DMA irq handler will already be pending for channel 2. So on entering
765 * the DMA irq handler for channel 2 there will be no active buffer, yet
766 * that is normal.
767 */
768 if (!pcdev->active)
3bc43840 769 goto out;
3bc43840
GL
770
771 vb = &pcdev->active->vb;
772 buf = container_of(vb, struct pxa_buffer, vb);
773 WARN_ON(buf->inwork || list_empty(&vb->queue));
3bc43840 774
979ea1dd 775 dev_dbg(dev, "%s channel=%d %s%s(vb=0x%p) dma.desc=%x\n",
256b0233
RJ
776 __func__, channel, status & DCSR_STARTINTR ? "SOF " : "",
777 status & DCSR_ENDINTR ? "EOF " : "", vb, DDADR(channel));
778
779 if (status & DCSR_ENDINTR) {
8c62e221
RJ
780 /*
781 * It's normal if the last frame creates an overrun, as there
782 * are no more DMA descriptors to fetch from QCI fifos
783 */
784 if (camera_status & overrun &&
785 !list_is_last(pcdev->capture.next, &pcdev->capture)) {
979ea1dd 786 dev_dbg(dev, "FIFO overrun! CISR: %x\n",
256b0233
RJ
787 camera_status);
788 pxa_camera_stop_capture(pcdev);
789 pxa_camera_start_capture(pcdev);
790 goto out;
791 }
792 buf->active_dma &= ~act_dma;
793 if (!buf->active_dma) {
794 pxa_camera_wakeup(pcdev, vb, buf);
795 pxa_camera_check_link_miss(pcdev);
796 }
797 }
3bc43840
GL
798
799out:
800 spin_unlock_irqrestore(&pcdev->lock, flags);
801}
802
a5462e5b
MR
803static void pxa_camera_dma_irq_y(int channel, void *data)
804{
805 struct pxa_camera_dev *pcdev = data;
806 pxa_camera_dma_irq(channel, pcdev, DMA_Y);
807}
808
809static void pxa_camera_dma_irq_u(int channel, void *data)
810{
811 struct pxa_camera_dev *pcdev = data;
812 pxa_camera_dma_irq(channel, pcdev, DMA_U);
813}
814
815static void pxa_camera_dma_irq_v(int channel, void *data)
816{
817 struct pxa_camera_dev *pcdev = data;
818 pxa_camera_dma_irq(channel, pcdev, DMA_V);
819}
820
7102b773 821static struct videobuf_queue_ops pxa_videobuf_ops = {
3bc43840
GL
822 .buf_setup = pxa_videobuf_setup,
823 .buf_prepare = pxa_videobuf_prepare,
824 .buf_queue = pxa_videobuf_queue,
825 .buf_release = pxa_videobuf_release,
826};
827
a034d1b7 828static void pxa_camera_init_videobuf(struct videobuf_queue *q,
092d3921
PZ
829 struct soc_camera_device *icd)
830{
7dfff953 831 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
a034d1b7
MD
832 struct pxa_camera_dev *pcdev = ici->priv;
833
5d28d525
GL
834 /*
835 * We must pass NULL as dev pointer, then all pci_* dma operations
836 * transform to normal dma_* ones.
837 */
a034d1b7 838 videobuf_queue_sg_init(q, &pxa_videobuf_ops, NULL, &pcdev->lock,
092d3921 839 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_NONE,
47ebe3f9 840 sizeof(struct pxa_buffer), icd, &ici->host_lock);
092d3921
PZ
841}
842
40e2e092
GL
843static u32 mclk_get_divisor(struct platform_device *pdev,
844 struct pxa_camera_dev *pcdev)
3bc43840 845{
cf34cba7 846 unsigned long mclk = pcdev->mclk;
6a6c8786 847 struct device *dev = &pdev->dev;
cf34cba7 848 u32 div;
3bc43840
GL
849 unsigned long lcdclk;
850
cf34cba7
GL
851 lcdclk = clk_get_rate(pcdev->clk);
852 pcdev->ciclk = lcdclk;
3bc43840 853
cf34cba7
GL
854 /* mclk <= ciclk / 4 (27.4.2) */
855 if (mclk > lcdclk / 4) {
856 mclk = lcdclk / 4;
979ea1dd 857 dev_warn(dev, "Limiting master clock to %lu\n", mclk);
cf34cba7
GL
858 }
859
860 /* We verify mclk != 0, so if anyone breaks it, here comes their Oops */
861 div = (lcdclk + 2 * mclk - 1) / (2 * mclk) - 1;
3bc43840 862
cf34cba7
GL
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));
3bc43840 866
979ea1dd 867 dev_dbg(dev, "LCD clock %luHz, target freq %luHz, divisor %u\n",
40e2e092 868 lcdclk, mclk, div);
3bc43840
GL
869
870 return div;
871}
872
cf34cba7
GL
873static void recalculate_fifo_timeout(struct pxa_camera_dev *pcdev,
874 unsigned long pclk)
875{
876 /* We want a timeout > 1 pixel time, not ">=" */
877 u32 ciclk_per_pixel = pcdev->ciclk / pclk + 1;
878
879 __raw_writel(ciclk_per_pixel, pcdev->base + CITOR);
880}
881
7102b773 882static void pxa_camera_activate(struct pxa_camera_dev *pcdev)
3bc43840 883{
3bc43840
GL
884 u32 cicr4 = 0;
885
5ca11fa3
EM
886 /* disable all interrupts */
887 __raw_writel(0x3ff, pcdev->base + CICR0);
3bc43840
GL
888
889 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
890 cicr4 |= CICR4_PCLK_EN;
891 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
892 cicr4 |= CICR4_MCLK_EN;
893 if (pcdev->platform_flags & PXA_CAMERA_PCP)
894 cicr4 |= CICR4_PCP;
895 if (pcdev->platform_flags & PXA_CAMERA_HSP)
896 cicr4 |= CICR4_HSP;
897 if (pcdev->platform_flags & PXA_CAMERA_VSP)
898 cicr4 |= CICR4_VSP;
899
cf34cba7
GL
900 __raw_writel(pcdev->mclk_divisor | cicr4, pcdev->base + CICR4);
901
902 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
903 /* Initialise the timeout under the assumption pclk = mclk */
904 recalculate_fifo_timeout(pcdev, pcdev->mclk);
905 else
906 /* "Safe default" - 13MHz */
907 recalculate_fifo_timeout(pcdev, 13000000);
3bc43840 908
91acd962 909 clk_prepare_enable(pcdev->clk);
3bc43840
GL
910}
911
7102b773 912static void pxa_camera_deactivate(struct pxa_camera_dev *pcdev)
3bc43840 913{
91acd962 914 clk_disable_unprepare(pcdev->clk);
3bc43840
GL
915}
916
917static irqreturn_t pxa_camera_irq(int irq, void *data)
918{
919 struct pxa_camera_dev *pcdev = data;
a47f6be4 920 unsigned long status, cifr, cicr0;
256b0233
RJ
921 struct pxa_buffer *buf;
922 struct videobuf_buffer *vb;
3bc43840 923
5ca11fa3 924 status = __raw_readl(pcdev->base + CISR);
0166b743
GL
925 dev_dbg(pcdev->soc_host.v4l2_dev.dev,
926 "Camera interrupt status 0x%lx\n", status);
3bc43840 927
e7c50688
GL
928 if (!status)
929 return IRQ_NONE;
930
5ca11fa3 931 __raw_writel(status, pcdev->base + CISR);
e7c50688
GL
932
933 if (status & CISR_EOF) {
a47f6be4
SH
934 /* Reset the FIFOs */
935 cifr = __raw_readl(pcdev->base + CIFR) | CIFR_RESET_F;
936 __raw_writel(cifr, pcdev->base + CIFR);
937
256b0233
RJ
938 pcdev->active = list_first_entry(&pcdev->capture,
939 struct pxa_buffer, vb.queue);
940 vb = &pcdev->active->vb;
941 buf = container_of(vb, struct pxa_buffer, vb);
942 pxa_videobuf_set_actdma(pcdev, buf);
943
944 pxa_dma_start_channels(pcdev);
945
5ca11fa3
EM
946 cicr0 = __raw_readl(pcdev->base + CICR0) | CICR0_EOFM;
947 __raw_writel(cicr0, pcdev->base + CICR0);
e7c50688
GL
948 }
949
3bc43840
GL
950 return IRQ_HANDLED;
951}
952
39b553db
GL
953static int pxa_camera_add_device(struct soc_camera_device *icd)
954{
955 dev_info(icd->parent, "PXA Camera driver attached to camera %d\n",
956 icd->devnum);
957
958 return 0;
959}
960
961static void pxa_camera_remove_device(struct soc_camera_device *icd)
962{
963 dev_info(icd->parent, "PXA Camera driver detached from camera %d\n",
964 icd->devnum);
965}
966
1c3bb743
GL
967/*
968 * The following two functions absolutely depend on the fact, that
969 * there can be only one camera on PXA quick capture interface
dd669e90 970 * Called with .host_lock held
1c3bb743 971 */
39b553db 972static int pxa_camera_clock_start(struct soc_camera_host *ici)
3bc43840 973{
3bc43840 974 struct pxa_camera_dev *pcdev = ici->priv;
3bc43840 975
7102b773 976 pxa_camera_activate(pcdev);
40e2e092 977
40e2e092 978 return 0;
3bc43840
GL
979}
980
dd669e90 981/* Called with .host_lock held */
39b553db 982static void pxa_camera_clock_stop(struct soc_camera_host *ici)
3bc43840 983{
3bc43840
GL
984 struct pxa_camera_dev *pcdev = ici->priv;
985
3bc43840 986 /* disable capture, disable interrupts */
5ca11fa3 987 __raw_writel(0x3ff, pcdev->base + CICR0);
a5462e5b 988
3bc43840 989 /* Stop DMA engine */
a5462e5b
MR
990 DCSR(pcdev->dma_chans[0]) = 0;
991 DCSR(pcdev->dma_chans[1]) = 0;
992 DCSR(pcdev->dma_chans[2]) = 0;
3bc43840 993
7102b773 994 pxa_camera_deactivate(pcdev);
3bc43840
GL
995}
996
ad5f2e85
GL
997static int test_platform_param(struct pxa_camera_dev *pcdev,
998 unsigned char buswidth, unsigned long *flags)
3bc43840 999{
ad5f2e85
GL
1000 /*
1001 * Platform specified synchronization and pixel clock polarities are
1002 * only a recommendation and are only used during probing. The PXA270
1003 * quick capture interface supports both.
1004 */
1005 *flags = (pcdev->platform_flags & PXA_CAMERA_MASTER ?
679419aa
GL
1006 V4L2_MBUS_MASTER : V4L2_MBUS_SLAVE) |
1007 V4L2_MBUS_HSYNC_ACTIVE_HIGH |
1008 V4L2_MBUS_HSYNC_ACTIVE_LOW |
1009 V4L2_MBUS_VSYNC_ACTIVE_HIGH |
1010 V4L2_MBUS_VSYNC_ACTIVE_LOW |
1011 V4L2_MBUS_DATA_ACTIVE_HIGH |
1012 V4L2_MBUS_PCLK_SAMPLE_RISING |
1013 V4L2_MBUS_PCLK_SAMPLE_FALLING;
3bc43840
GL
1014
1015 /* If requested data width is supported by the platform, use it */
679419aa
GL
1016 if ((1 << (buswidth - 1)) & pcdev->width_flags)
1017 return 0;
ad5f2e85 1018
679419aa 1019 return -EINVAL;
ad5f2e85
GL
1020}
1021
6a6c8786
GL
1022static void pxa_camera_setup_cicr(struct soc_camera_device *icd,
1023 unsigned long flags, __u32 pixfmt)
ad5f2e85 1024{
7dfff953 1025 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
ad5f2e85 1026 struct pxa_camera_dev *pcdev = ici->priv;
32536108 1027 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
6a6c8786 1028 unsigned long dw, bpp;
32536108
GL
1029 u32 cicr0, cicr1, cicr2, cicr3, cicr4 = 0, y_skip_top;
1030 int ret = v4l2_subdev_call(sd, sensor, g_skip_top_lines, &y_skip_top);
1031
1032 if (ret < 0)
1033 y_skip_top = 0;
3bc43840 1034
5d28d525
GL
1035 /*
1036 * Datawidth is now guaranteed to be equal to one of the three values.
1037 * We fix bit-per-pixel equal to data-width...
1038 */
679419aa
GL
1039 switch (icd->current_fmt->host_fmt->bits_per_sample) {
1040 case 10:
3bc43840
GL
1041 dw = 4;
1042 bpp = 0x40;
1043 break;
679419aa 1044 case 9:
3bc43840
GL
1045 dw = 3;
1046 bpp = 0x20;
1047 break;
1048 default:
5d28d525
GL
1049 /*
1050 * Actually it can only be 8 now,
1051 * default is just to silence compiler warnings
1052 */
679419aa 1053 case 8:
3bc43840
GL
1054 dw = 2;
1055 bpp = 0;
1056 }
1057
1058 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
1059 cicr4 |= CICR4_PCLK_EN;
1060 if (pcdev->platform_flags & PXA_CAMERA_MCLK_EN)
1061 cicr4 |= CICR4_MCLK_EN;
679419aa 1062 if (flags & V4L2_MBUS_PCLK_SAMPLE_FALLING)
3bc43840 1063 cicr4 |= CICR4_PCP;
679419aa 1064 if (flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)
3bc43840 1065 cicr4 |= CICR4_HSP;
679419aa 1066 if (flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)
3bc43840
GL
1067 cicr4 |= CICR4_VSP;
1068
5ca11fa3 1069 cicr0 = __raw_readl(pcdev->base + CICR0);
3bc43840 1070 if (cicr0 & CICR0_ENB)
5ca11fa3 1071 __raw_writel(cicr0 & ~CICR0_ENB, pcdev->base + CICR0);
a5462e5b 1072
6a6c8786 1073 cicr1 = CICR1_PPL_VAL(icd->user_width - 1) | bpp | dw;
a5462e5b
MR
1074
1075 switch (pixfmt) {
1076 case V4L2_PIX_FMT_YUV422P:
e7c50688 1077 pcdev->channels = 3;
a5462e5b 1078 cicr1 |= CICR1_YCBCR_F;
2a48fc73
RJ
1079 /*
1080 * Normally, pxa bus wants as input UYVY format. We allow all
1081 * reorderings of the YUV422 format, as no processing is done,
1082 * and the YUV stream is just passed through without any
1083 * transformation. Note that UYVY is the only format that
1084 * should be used if pxa framebuffer Overlay2 is used.
1085 */
1086 case V4L2_PIX_FMT_UYVY:
1087 case V4L2_PIX_FMT_VYUY:
a5462e5b 1088 case V4L2_PIX_FMT_YUYV:
2a48fc73 1089 case V4L2_PIX_FMT_YVYU:
a5462e5b
MR
1090 cicr1 |= CICR1_COLOR_SP_VAL(2);
1091 break;
1092 case V4L2_PIX_FMT_RGB555:
1093 cicr1 |= CICR1_RGB_BPP_VAL(1) | CICR1_RGBT_CONV_VAL(2) |
1094 CICR1_TBIT | CICR1_COLOR_SP_VAL(1);
1095 break;
1096 case V4L2_PIX_FMT_RGB565:
1097 cicr1 |= CICR1_COLOR_SP_VAL(1) | CICR1_RGB_BPP_VAL(2);
1098 break;
1099 }
1100
5ca11fa3 1101 cicr2 = 0;
6a6c8786 1102 cicr3 = CICR3_LPF_VAL(icd->user_height - 1) |
32536108 1103 CICR3_BFW_VAL(min((u32)255, y_skip_top));
cf34cba7 1104 cicr4 |= pcdev->mclk_divisor;
5ca11fa3
EM
1105
1106 __raw_writel(cicr1, pcdev->base + CICR1);
1107 __raw_writel(cicr2, pcdev->base + CICR2);
1108 __raw_writel(cicr3, pcdev->base + CICR3);
1109 __raw_writel(cicr4, pcdev->base + CICR4);
3bc43840
GL
1110
1111 /* CIF interrupts are not used, only DMA */
5ca11fa3
EM
1112 cicr0 = (cicr0 & CICR0_ENB) | (pcdev->platform_flags & PXA_CAMERA_MASTER ?
1113 CICR0_SIM_MP : (CICR0_SL_CAP_EN | CICR0_SIM_SP));
1114 cicr0 |= CICR0_DMAEN | CICR0_IRQ_MASK;
1115 __raw_writel(cicr0, pcdev->base + CICR0);
6a6c8786
GL
1116}
1117
8843d119 1118static int pxa_camera_set_bus_param(struct soc_camera_device *icd)
6a6c8786 1119{
679419aa 1120 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
7dfff953 1121 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
6a6c8786 1122 struct pxa_camera_dev *pcdev = ici->priv;
679419aa 1123 struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
8843d119 1124 u32 pixfmt = icd->current_fmt->host_fmt->fourcc;
679419aa 1125 unsigned long bus_flags, common_flags;
760697be 1126 int ret;
6a6c8786
GL
1127 struct pxa_cam *cam = icd->host_priv;
1128
d2dcad49
GL
1129 ret = test_platform_param(pcdev, icd->current_fmt->host_fmt->bits_per_sample,
1130 &bus_flags);
6a6c8786
GL
1131 if (ret < 0)
1132 return ret;
1133
679419aa
GL
1134 ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
1135 if (!ret) {
1136 common_flags = soc_mbus_config_compatible(&cfg,
1137 bus_flags);
1138 if (!common_flags) {
1139 dev_warn(icd->parent,
1140 "Flags incompatible: camera 0x%x, host 0x%lx\n",
1141 cfg.flags, bus_flags);
1142 return -EINVAL;
1143 }
1144 } else if (ret != -ENOIOCTLCMD) {
1145 return ret;
1146 } else {
1147 common_flags = bus_flags;
1148 }
6a6c8786
GL
1149
1150 pcdev->channels = 1;
1151
1152 /* Make choises, based on platform preferences */
679419aa
GL
1153 if ((common_flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) &&
1154 (common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)) {
6a6c8786 1155 if (pcdev->platform_flags & PXA_CAMERA_HSP)
679419aa 1156 common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_HIGH;
6a6c8786 1157 else
679419aa 1158 common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_LOW;
6a6c8786
GL
1159 }
1160
679419aa
GL
1161 if ((common_flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) &&
1162 (common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)) {
6a6c8786 1163 if (pcdev->platform_flags & PXA_CAMERA_VSP)
679419aa 1164 common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_HIGH;
6a6c8786 1165 else
679419aa 1166 common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_LOW;
6a6c8786
GL
1167 }
1168
679419aa
GL
1169 if ((common_flags & V4L2_MBUS_PCLK_SAMPLE_RISING) &&
1170 (common_flags & V4L2_MBUS_PCLK_SAMPLE_FALLING)) {
6a6c8786 1171 if (pcdev->platform_flags & PXA_CAMERA_PCP)
679419aa 1172 common_flags &= ~V4L2_MBUS_PCLK_SAMPLE_RISING;
6a6c8786 1173 else
679419aa 1174 common_flags &= ~V4L2_MBUS_PCLK_SAMPLE_FALLING;
6a6c8786
GL
1175 }
1176
679419aa
GL
1177 cfg.flags = common_flags;
1178 ret = v4l2_subdev_call(sd, video, s_mbus_config, &cfg);
1179 if (ret < 0 && ret != -ENOIOCTLCMD) {
1180 dev_dbg(icd->parent, "camera s_mbus_config(0x%lx) returned %d\n",
1181 common_flags, ret);
6a6c8786 1182 return ret;
679419aa
GL
1183 }
1184
1185 cam->flags = common_flags;
6a6c8786
GL
1186
1187 pxa_camera_setup_cicr(icd, common_flags, pixfmt);
3bc43840
GL
1188
1189 return 0;
1190}
1191
2a48fc73
RJ
1192static int pxa_camera_try_bus_param(struct soc_camera_device *icd,
1193 unsigned char buswidth)
ad5f2e85 1194{
679419aa 1195 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
7dfff953 1196 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
ad5f2e85 1197 struct pxa_camera_dev *pcdev = ici->priv;
679419aa
GL
1198 struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
1199 unsigned long bus_flags, common_flags;
2a48fc73 1200 int ret = test_platform_param(pcdev, buswidth, &bus_flags);
ad5f2e85
GL
1201
1202 if (ret < 0)
1203 return ret;
1204
679419aa
GL
1205 ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
1206 if (!ret) {
1207 common_flags = soc_mbus_config_compatible(&cfg,
1208 bus_flags);
1209 if (!common_flags) {
1210 dev_warn(icd->parent,
1211 "Flags incompatible: camera 0x%x, host 0x%lx\n",
1212 cfg.flags, bus_flags);
1213 return -EINVAL;
1214 }
1215 } else if (ret == -ENOIOCTLCMD) {
1216 ret = 0;
1217 }
ad5f2e85 1218
679419aa 1219 return ret;
ad5f2e85
GL
1220}
1221
760697be 1222static const struct soc_mbus_pixelfmt pxa_camera_formats[] = {
2a48fc73 1223 {
760697be
GL
1224 .fourcc = V4L2_PIX_FMT_YUV422P,
1225 .name = "Planar YUV422 16 bit",
1226 .bits_per_sample = 8,
1227 .packing = SOC_MBUS_PACKING_2X8_PADHI,
1228 .order = SOC_MBUS_ORDER_LE,
ad3b81fa 1229 .layout = SOC_MBUS_LAYOUT_PLANAR_2Y_U_V,
2a48fc73
RJ
1230 },
1231};
1232
760697be
GL
1233/* This will be corrected as we get more formats */
1234static bool pxa_camera_packing_supported(const struct soc_mbus_pixelfmt *fmt)
ad5f2e85 1235{
760697be
GL
1236 return fmt->packing == SOC_MBUS_PACKING_NONE ||
1237 (fmt->bits_per_sample == 8 &&
1238 fmt->packing == SOC_MBUS_PACKING_2X8_PADHI) ||
1239 (fmt->bits_per_sample > 8 &&
1240 fmt->packing == SOC_MBUS_PACKING_EXTEND16);
2a48fc73
RJ
1241}
1242
3805f201 1243static int pxa_camera_get_formats(struct soc_camera_device *icd, unsigned int idx,
2a48fc73
RJ
1244 struct soc_camera_format_xlate *xlate)
1245{
760697be 1246 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
7dfff953 1247 struct device *dev = icd->parent;
760697be 1248 int formats = 0, ret;
6a6c8786 1249 struct pxa_cam *cam;
ebcff5fc
HV
1250 struct v4l2_subdev_mbus_code_enum code = {
1251 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1252 .index = idx,
1253 };
760697be 1254 const struct soc_mbus_pixelfmt *fmt;
2a48fc73 1255
ebcff5fc 1256 ret = v4l2_subdev_call(sd, pad, enum_mbus_code, NULL, &code);
760697be
GL
1257 if (ret < 0)
1258 /* No more formats */
1259 return 0;
2a48fc73 1260
ebcff5fc 1261 fmt = soc_mbus_get_fmtdesc(code.code);
760697be 1262 if (!fmt) {
ebcff5fc 1263 dev_err(dev, "Invalid format code #%u: %d\n", idx, code.code);
2a48fc73 1264 return 0;
760697be 1265 }
3bc43840 1266
760697be
GL
1267 /* This also checks support for the requested bits-per-sample */
1268 ret = pxa_camera_try_bus_param(icd, fmt->bits_per_sample);
2a48fc73
RJ
1269 if (ret < 0)
1270 return 0;
1271
6a6c8786
GL
1272 if (!icd->host_priv) {
1273 cam = kzalloc(sizeof(*cam), GFP_KERNEL);
1274 if (!cam)
1275 return -ENOMEM;
1276
1277 icd->host_priv = cam;
1278 } else {
1279 cam = icd->host_priv;
1280 }
1281
ebcff5fc 1282 switch (code.code) {
27ffaeb0 1283 case MEDIA_BUS_FMT_UYVY8_2X8:
2a48fc73
RJ
1284 formats++;
1285 if (xlate) {
760697be 1286 xlate->host_fmt = &pxa_camera_formats[0];
ebcff5fc 1287 xlate->code = code.code;
2a48fc73 1288 xlate++;
760697be 1289 dev_dbg(dev, "Providing format %s using code %d\n",
ebcff5fc 1290 pxa_camera_formats[0].name, code.code);
2a48fc73 1291 }
27ffaeb0
BB
1292 case MEDIA_BUS_FMT_VYUY8_2X8:
1293 case MEDIA_BUS_FMT_YUYV8_2X8:
1294 case MEDIA_BUS_FMT_YVYU8_2X8:
1295 case MEDIA_BUS_FMT_RGB565_2X8_LE:
1296 case MEDIA_BUS_FMT_RGB555_2X8_PADHI_LE:
760697be 1297 if (xlate)
0166b743 1298 dev_dbg(dev, "Providing format %s packed\n",
760697be 1299 fmt->name);
2a48fc73
RJ
1300 break;
1301 default:
760697be
GL
1302 if (!pxa_camera_packing_supported(fmt))
1303 return 0;
1304 if (xlate)
0166b743 1305 dev_dbg(dev,
2a48fc73 1306 "Providing format %s in pass-through mode\n",
760697be
GL
1307 fmt->name);
1308 }
1309
1310 /* Generic pass-through */
1311 formats++;
1312 if (xlate) {
1313 xlate->host_fmt = fmt;
ebcff5fc 1314 xlate->code = code.code;
760697be 1315 xlate++;
2a48fc73
RJ
1316 }
1317
1318 return formats;
1319}
1320
6a6c8786
GL
1321static void pxa_camera_put_formats(struct soc_camera_device *icd)
1322{
1323 kfree(icd->host_priv);
1324 icd->host_priv = NULL;
1325}
1326
760697be 1327static int pxa_camera_check_frame(u32 width, u32 height)
6a6c8786
GL
1328{
1329 /* limit to pxa hardware capabilities */
760697be
GL
1330 return height < 32 || height > 2048 || width < 48 || width > 2048 ||
1331 (width & 0x01);
6a6c8786
GL
1332}
1333
09e231b3 1334static int pxa_camera_set_crop(struct soc_camera_device *icd,
448a61f0 1335 const struct v4l2_crop *a)
09e231b3 1336{
448a61f0 1337 const struct v4l2_rect *rect = &a->c;
7dfff953
GL
1338 struct device *dev = icd->parent;
1339 struct soc_camera_host *ici = to_soc_camera_host(dev);
09e231b3 1340 struct pxa_camera_dev *pcdev = ici->priv;
c9c1f1c0 1341 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
09e231b3
GL
1342 struct soc_camera_sense sense = {
1343 .master_clock = pcdev->mclk,
1344 .pixel_clock_max = pcdev->ciclk / 4,
1345 };
da298c6d
HV
1346 struct v4l2_subdev_format fmt = {
1347 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1348 };
1349 struct v4l2_mbus_framefmt *mf = &fmt.format;
6a6c8786 1350 struct pxa_cam *cam = icd->host_priv;
760697be 1351 u32 fourcc = icd->current_fmt->host_fmt->fourcc;
09e231b3
GL
1352 int ret;
1353
1354 /* If PCLK is used to latch data from the sensor, check sense */
1355 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
1356 icd->sense = &sense;
1357
08590b96 1358 ret = v4l2_subdev_call(sd, video, s_crop, a);
09e231b3
GL
1359
1360 icd->sense = NULL;
1361
1362 if (ret < 0) {
0166b743 1363 dev_warn(dev, "Failed to crop to %ux%u@%u:%u\n",
09e231b3 1364 rect->width, rect->height, rect->left, rect->top);
6a6c8786
GL
1365 return ret;
1366 }
1367
da298c6d 1368 ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &fmt);
6a6c8786
GL
1369 if (ret < 0)
1370 return ret;
1371
da298c6d 1372 if (pxa_camera_check_frame(mf->width, mf->height)) {
6a6c8786
GL
1373 /*
1374 * Camera cropping produced a frame beyond our capabilities.
1375 * FIXME: just extract a subframe, that we can process.
1376 */
da298c6d
HV
1377 v4l_bound_align_image(&mf->width, 48, 2048, 1,
1378 &mf->height, 32, 2048, 0,
760697be 1379 fourcc == V4L2_PIX_FMT_YUV422P ? 4 : 0);
ebf984bb 1380 ret = v4l2_subdev_call(sd, pad, set_fmt, NULL, &fmt);
6a6c8786
GL
1381 if (ret < 0)
1382 return ret;
1383
da298c6d 1384 if (pxa_camera_check_frame(mf->width, mf->height)) {
7dfff953 1385 dev_warn(icd->parent,
6a6c8786
GL
1386 "Inconsistent state. Use S_FMT to repair\n");
1387 return -EINVAL;
1388 }
1389 }
1390
1391 if (sense.flags & SOCAM_SENSE_PCLK_CHANGED) {
09e231b3 1392 if (sense.pixel_clock > sense.pixel_clock_max) {
0166b743 1393 dev_err(dev,
09e231b3
GL
1394 "pixel clock %lu set by the camera too high!",
1395 sense.pixel_clock);
1396 return -EIO;
1397 }
1398 recalculate_fifo_timeout(pcdev, sense.pixel_clock);
1399 }
1400
da298c6d
HV
1401 icd->user_width = mf->width;
1402 icd->user_height = mf->height;
6a6c8786 1403
760697be 1404 pxa_camera_setup_cicr(icd, cam->flags, fourcc);
6a6c8786 1405
09e231b3
GL
1406 return ret;
1407}
1408
d8fac217 1409static int pxa_camera_set_fmt(struct soc_camera_device *icd,
09e231b3 1410 struct v4l2_format *f)
ad5f2e85 1411{
7dfff953
GL
1412 struct device *dev = icd->parent;
1413 struct soc_camera_host *ici = to_soc_camera_host(dev);
cf34cba7 1414 struct pxa_camera_dev *pcdev = ici->priv;
c9c1f1c0 1415 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
0ad675eb 1416 const struct soc_camera_format_xlate *xlate = NULL;
cf34cba7
GL
1417 struct soc_camera_sense sense = {
1418 .master_clock = pcdev->mclk,
1419 .pixel_clock_max = pcdev->ciclk / 4,
1420 };
09e231b3 1421 struct v4l2_pix_format *pix = &f->fmt.pix;
ebf984bb
HV
1422 struct v4l2_subdev_format format = {
1423 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1424 };
1425 struct v4l2_mbus_framefmt *mf = &format.format;
0ad675eb 1426 int ret;
25c4d74e 1427
09e231b3
GL
1428 xlate = soc_camera_xlate_by_fourcc(icd, pix->pixelformat);
1429 if (!xlate) {
0166b743 1430 dev_warn(dev, "Format %x not found\n", pix->pixelformat);
09e231b3 1431 return -EINVAL;
0ad675eb 1432 }
2a48fc73 1433
cf34cba7
GL
1434 /* If PCLK is used to latch data from the sensor, check sense */
1435 if (pcdev->platform_flags & PXA_CAMERA_PCLK_EN)
760697be 1436 /* The caller holds a mutex. */
cf34cba7
GL
1437 icd->sense = &sense;
1438
ebf984bb
HV
1439 mf->width = pix->width;
1440 mf->height = pix->height;
1441 mf->field = pix->field;
1442 mf->colorspace = pix->colorspace;
1443 mf->code = xlate->code;
760697be 1444
ebf984bb 1445 ret = v4l2_subdev_call(sd, pad, set_fmt, NULL, &format);
760697be 1446
ebf984bb 1447 if (mf->code != xlate->code)
760697be 1448 return -EINVAL;
2a48fc73 1449
cf34cba7
GL
1450 icd->sense = NULL;
1451
1452 if (ret < 0) {
0166b743 1453 dev_warn(dev, "Failed to configure for format %x\n",
09e231b3 1454 pix->pixelformat);
ebf984bb 1455 } else if (pxa_camera_check_frame(mf->width, mf->height)) {
6a6c8786
GL
1456 dev_warn(dev,
1457 "Camera driver produced an unsupported frame %dx%d\n",
ebf984bb 1458 mf->width, mf->height);
6a6c8786 1459 ret = -EINVAL;
cf34cba7
GL
1460 } else if (sense.flags & SOCAM_SENSE_PCLK_CHANGED) {
1461 if (sense.pixel_clock > sense.pixel_clock_max) {
0166b743 1462 dev_err(dev,
cf34cba7
GL
1463 "pixel clock %lu set by the camera too high!",
1464 sense.pixel_clock);
1465 return -EIO;
1466 }
1467 recalculate_fifo_timeout(pcdev, sense.pixel_clock);
1468 }
2a48fc73 1469
760697be
GL
1470 if (ret < 0)
1471 return ret;
1472
ebf984bb
HV
1473 pix->width = mf->width;
1474 pix->height = mf->height;
1475 pix->field = mf->field;
1476 pix->colorspace = mf->colorspace;
760697be 1477 icd->current_fmt = xlate;
25c4d74e
GL
1478
1479 return ret;
ad5f2e85
GL
1480}
1481
d8fac217
GL
1482static int pxa_camera_try_fmt(struct soc_camera_device *icd,
1483 struct v4l2_format *f)
3bc43840 1484{
c9c1f1c0 1485 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
2a48fc73
RJ
1486 const struct soc_camera_format_xlate *xlate;
1487 struct v4l2_pix_format *pix = &f->fmt.pix;
5eab4983
HV
1488 struct v4l2_subdev_pad_config pad_cfg;
1489 struct v4l2_subdev_format format = {
1490 .which = V4L2_SUBDEV_FORMAT_TRY,
1491 };
1492 struct v4l2_mbus_framefmt *mf = &format.format;
2a48fc73 1493 __u32 pixfmt = pix->pixelformat;
bf507158 1494 int ret;
a2c8c68c 1495
2a48fc73
RJ
1496 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1497 if (!xlate) {
7dfff953 1498 dev_warn(icd->parent, "Format %x not found\n", pixfmt);
25c4d74e 1499 return -EINVAL;
2a48fc73 1500 }
25c4d74e 1501
92a8337b 1502 /*
4a6b8df2
TP
1503 * Limit to pxa hardware capabilities. YUV422P planar format requires
1504 * images size to be a multiple of 16 bytes. If not, zeros will be
1505 * inserted between Y and U planes, and U and V planes, which violates
1506 * the YUV422P standard.
92a8337b 1507 */
4a6b8df2
TP
1508 v4l_bound_align_image(&pix->width, 48, 2048, 1,
1509 &pix->height, 32, 2048, 0,
6a6c8786 1510 pixfmt == V4L2_PIX_FMT_YUV422P ? 4 : 0);
92a8337b 1511
ad5f2e85 1512 /* limit to sensor capabilities */
5eab4983
HV
1513 mf->width = pix->width;
1514 mf->height = pix->height;
91401219 1515 /* Only progressive video supported so far */
5eab4983
HV
1516 mf->field = V4L2_FIELD_NONE;
1517 mf->colorspace = pix->colorspace;
1518 mf->code = xlate->code;
bf507158 1519
5eab4983 1520 ret = v4l2_subdev_call(sd, pad, set_fmt, &pad_cfg, &format);
760697be
GL
1521 if (ret < 0)
1522 return ret;
06daa1af 1523
5eab4983
HV
1524 pix->width = mf->width;
1525 pix->height = mf->height;
1526 pix->colorspace = mf->colorspace;
760697be 1527
5eab4983 1528 switch (mf->field) {
760697be
GL
1529 case V4L2_FIELD_ANY:
1530 case V4L2_FIELD_NONE:
1531 pix->field = V4L2_FIELD_NONE;
1532 break;
1533 default:
1534 /* TODO: support interlaced at least in pass-through mode */
7dfff953 1535 dev_err(icd->parent, "Field type %d unsupported.\n",
5eab4983 1536 mf->field);
06daa1af
GL
1537 return -EINVAL;
1538 }
1539
bf507158 1540 return ret;
3bc43840
GL
1541}
1542
57bee29d 1543static int pxa_camera_reqbufs(struct soc_camera_device *icd,
7102b773 1544 struct v4l2_requestbuffers *p)
3bc43840
GL
1545{
1546 int i;
1547
5d28d525
GL
1548 /*
1549 * This is for locking debugging only. I removed spinlocks and now I
3bc43840
GL
1550 * check whether .prepare is ever called on a linked buffer, or whether
1551 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
5d28d525
GL
1552 * it hadn't triggered
1553 */
3bc43840 1554 for (i = 0; i < p->count; i++) {
57bee29d 1555 struct pxa_buffer *buf = container_of(icd->vb_vidq.bufs[i],
3bc43840
GL
1556 struct pxa_buffer, vb);
1557 buf->inwork = 0;
1558 INIT_LIST_HEAD(&buf->vb.queue);
1559 }
1560
1561 return 0;
1562}
1563
7102b773 1564static unsigned int pxa_camera_poll(struct file *file, poll_table *pt)
3bc43840 1565{
57bee29d 1566 struct soc_camera_device *icd = file->private_data;
3bc43840
GL
1567 struct pxa_buffer *buf;
1568
57bee29d 1569 buf = list_entry(icd->vb_vidq.stream.next, struct pxa_buffer,
3bc43840
GL
1570 vb.stream);
1571
1572 poll_wait(file, &buf->vb.done, pt);
1573
1574 if (buf->vb.state == VIDEOBUF_DONE ||
1575 buf->vb.state == VIDEOBUF_ERROR)
1576 return POLLIN|POLLRDNORM;
1577
1578 return 0;
1579}
1580
7102b773
GL
1581static int pxa_camera_querycap(struct soc_camera_host *ici,
1582 struct v4l2_capability *cap)
3bc43840
GL
1583{
1584 /* cap->name is set by the firendly caller:-> */
1585 strlcpy(cap->card, pxa_cam_driver_description, sizeof(cap->card));
7d96c3e4
GL
1586 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1587 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
3bc43840
GL
1588
1589 return 0;
1590}
1591
7254026c 1592static int pxa_camera_suspend(struct device *dev)
3f6ac497 1593{
7254026c 1594 struct soc_camera_host *ici = to_soc_camera_host(dev);
3f6ac497
RJ
1595 struct pxa_camera_dev *pcdev = ici->priv;
1596 int i = 0, ret = 0;
1597
5ca11fa3
EM
1598 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR0);
1599 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR1);
1600 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR2);
1601 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR3);
1602 pcdev->save_cicr[i++] = __raw_readl(pcdev->base + CICR4);
3f6ac497 1603
f7f6ce2d
GL
1604 if (pcdev->soc_host.icd) {
1605 struct v4l2_subdev *sd = soc_camera_to_subdev(pcdev->soc_host.icd);
497833c6
GL
1606 ret = v4l2_subdev_call(sd, core, s_power, 0);
1607 if (ret == -ENOIOCTLCMD)
1608 ret = 0;
1609 }
3f6ac497
RJ
1610
1611 return ret;
1612}
1613
7254026c 1614static int pxa_camera_resume(struct device *dev)
3f6ac497 1615{
7254026c 1616 struct soc_camera_host *ici = to_soc_camera_host(dev);
3f6ac497
RJ
1617 struct pxa_camera_dev *pcdev = ici->priv;
1618 int i = 0, ret = 0;
1619
87f3dd77
EM
1620 DRCMR(68) = pcdev->dma_chans[0] | DRCMR_MAPVLD;
1621 DRCMR(69) = pcdev->dma_chans[1] | DRCMR_MAPVLD;
1622 DRCMR(70) = pcdev->dma_chans[2] | DRCMR_MAPVLD;
3f6ac497 1623
5ca11fa3
EM
1624 __raw_writel(pcdev->save_cicr[i++] & ~CICR0_ENB, pcdev->base + CICR0);
1625 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR1);
1626 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR2);
1627 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR3);
1628 __raw_writel(pcdev->save_cicr[i++], pcdev->base + CICR4);
3f6ac497 1629
f7f6ce2d
GL
1630 if (pcdev->soc_host.icd) {
1631 struct v4l2_subdev *sd = soc_camera_to_subdev(pcdev->soc_host.icd);
497833c6
GL
1632 ret = v4l2_subdev_call(sd, core, s_power, 1);
1633 if (ret == -ENOIOCTLCMD)
1634 ret = 0;
1635 }
3f6ac497
RJ
1636
1637 /* Restart frame capture if active buffer exists */
256b0233
RJ
1638 if (!ret && pcdev->active)
1639 pxa_camera_start_capture(pcdev);
3f6ac497
RJ
1640
1641 return ret;
1642}
1643
b8d9904c
GL
1644static struct soc_camera_host_ops pxa_soc_camera_host_ops = {
1645 .owner = THIS_MODULE,
1646 .add = pxa_camera_add_device,
1647 .remove = pxa_camera_remove_device,
39b553db
GL
1648 .clock_start = pxa_camera_clock_start,
1649 .clock_stop = pxa_camera_clock_stop,
09e231b3 1650 .set_crop = pxa_camera_set_crop,
2a48fc73 1651 .get_formats = pxa_camera_get_formats,
6a6c8786 1652 .put_formats = pxa_camera_put_formats,
d8fac217
GL
1653 .set_fmt = pxa_camera_set_fmt,
1654 .try_fmt = pxa_camera_try_fmt,
092d3921 1655 .init_videobuf = pxa_camera_init_videobuf,
b8d9904c
GL
1656 .reqbufs = pxa_camera_reqbufs,
1657 .poll = pxa_camera_poll,
1658 .querycap = pxa_camera_querycap,
b8d9904c
GL
1659 .set_bus_param = pxa_camera_set_bus_param,
1660};
1661
e9a1d94f
RJ
1662static int pxa_camera_pdata_from_dt(struct device *dev,
1663 struct pxa_camera_dev *pcdev)
1664{
1665 u32 mclk_rate;
1666 struct device_node *np = dev->of_node;
1667 struct v4l2_of_endpoint ep;
1668 int err = of_property_read_u32(np, "clock-frequency",
1669 &mclk_rate);
1670 if (!err) {
1671 pcdev->platform_flags |= PXA_CAMERA_MCLK_EN;
1672 pcdev->mclk = mclk_rate;
1673 }
1674
1675 np = of_graph_get_next_endpoint(np, NULL);
1676 if (!np) {
1677 dev_err(dev, "could not find endpoint\n");
1678 return -EINVAL;
1679 }
1680
1681 err = v4l2_of_parse_endpoint(np, &ep);
1682 if (err) {
1683 dev_err(dev, "could not parse endpoint\n");
1684 goto out;
1685 }
1686
1687 switch (ep.bus.parallel.bus_width) {
1688 case 4:
1689 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_4;
1690 break;
1691 case 5:
1692 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_5;
1693 break;
1694 case 8:
1695 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_8;
1696 break;
1697 case 9:
1698 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_9;
1699 break;
1700 case 10:
1701 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_10;
1702 break;
1703 default:
1704 break;
c611c908 1705 }
e9a1d94f
RJ
1706
1707 if (ep.bus.parallel.flags & V4L2_MBUS_MASTER)
1708 pcdev->platform_flags |= PXA_CAMERA_MASTER;
1709 if (ep.bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH)
1710 pcdev->platform_flags |= PXA_CAMERA_HSP;
1711 if (ep.bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH)
1712 pcdev->platform_flags |= PXA_CAMERA_VSP;
1713 if (ep.bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_RISING)
1714 pcdev->platform_flags |= PXA_CAMERA_PCLK_EN | PXA_CAMERA_PCP;
1715 if (ep.bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_FALLING)
1716 pcdev->platform_flags |= PXA_CAMERA_PCLK_EN;
1717
1718out:
1719 of_node_put(np);
1720
1721 return err;
1722}
1723
4c62e976 1724static int pxa_camera_probe(struct platform_device *pdev)
3bc43840
GL
1725{
1726 struct pxa_camera_dev *pcdev;
1727 struct resource *res;
1728 void __iomem *base;
02da4659 1729 int irq;
3bc43840
GL
1730 int err = 0;
1731
1732 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1733 irq = platform_get_irq(pdev, 0);
47de201c
JL
1734 if (!res || irq < 0)
1735 return -ENODEV;
3bc43840 1736
47de201c 1737 pcdev = devm_kzalloc(&pdev->dev, sizeof(*pcdev), GFP_KERNEL);
3bc43840 1738 if (!pcdev) {
7102b773 1739 dev_err(&pdev->dev, "Could not allocate pcdev\n");
47de201c 1740 return -ENOMEM;
3bc43840
GL
1741 }
1742
47de201c
JL
1743 pcdev->clk = devm_clk_get(&pdev->dev, NULL);
1744 if (IS_ERR(pcdev->clk))
1745 return PTR_ERR(pcdev->clk);
3bc43840 1746
3bc43840
GL
1747 pcdev->res = res;
1748
1749 pcdev->pdata = pdev->dev.platform_data;
e9a1d94f
RJ
1750 if (&pdev->dev.of_node && !pcdev->pdata) {
1751 err = pxa_camera_pdata_from_dt(&pdev->dev, pcdev);
1752 } else {
1753 pcdev->platform_flags = pcdev->pdata->flags;
1754 pcdev->mclk = pcdev->pdata->mclk_10khz * 10000;
1755 }
1756 if (err < 0)
1757 return err;
1758
ad5f2e85
GL
1759 if (!(pcdev->platform_flags & (PXA_CAMERA_DATAWIDTH_8 |
1760 PXA_CAMERA_DATAWIDTH_9 | PXA_CAMERA_DATAWIDTH_10))) {
5d28d525
GL
1761 /*
1762 * Platform hasn't set available data widths. This is bad.
1763 * Warn and use a default.
1764 */
3bc43840
GL
1765 dev_warn(&pdev->dev, "WARNING! Platform hasn't set available "
1766 "data widths, using default 10 bit\n");
1767 pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_10;
1768 }
679419aa
GL
1769 if (pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_8)
1770 pcdev->width_flags = 1 << 7;
1771 if (pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_9)
1772 pcdev->width_flags |= 1 << 8;
1773 if (pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_10)
1774 pcdev->width_flags |= 1 << 9;
cf34cba7 1775 if (!pcdev->mclk) {
3bc43840 1776 dev_warn(&pdev->dev,
cf34cba7 1777 "mclk == 0! Please, fix your platform data. "
3bc43840 1778 "Using default 20MHz\n");
cf34cba7 1779 pcdev->mclk = 20000000;
3bc43840
GL
1780 }
1781
40e2e092 1782 pcdev->mclk_divisor = mclk_get_divisor(pdev, pcdev);
cf34cba7 1783
3bc43840
GL
1784 INIT_LIST_HEAD(&pcdev->capture);
1785 spin_lock_init(&pcdev->lock);
1786
1787 /*
1788 * Request the regions.
1789 */
8efdb135
SK
1790 base = devm_ioremap_resource(&pdev->dev, res);
1791 if (IS_ERR(base))
1792 return PTR_ERR(base);
1793
3bc43840
GL
1794 pcdev->irq = irq;
1795 pcdev->base = base;
3bc43840
GL
1796
1797 /* request dma */
de3e3b82 1798 err = pxa_request_dma("CI_Y", DMA_PRIO_HIGH,
1799 pxa_camera_dma_irq_y, pcdev);
1800 if (err < 0) {
eff505fa 1801 dev_err(&pdev->dev, "Can't request DMA for Y\n");
47de201c 1802 return err;
3bc43840 1803 }
de3e3b82 1804 pcdev->dma_chans[0] = err;
eff505fa 1805 dev_dbg(&pdev->dev, "got DMA channel %d\n", pcdev->dma_chans[0]);
a5462e5b 1806
de3e3b82 1807 err = pxa_request_dma("CI_U", DMA_PRIO_HIGH,
1808 pxa_camera_dma_irq_u, pcdev);
1809 if (err < 0) {
eff505fa 1810 dev_err(&pdev->dev, "Can't request DMA for U\n");
a5462e5b
MR
1811 goto exit_free_dma_y;
1812 }
de3e3b82 1813 pcdev->dma_chans[1] = err;
eff505fa 1814 dev_dbg(&pdev->dev, "got DMA channel (U) %d\n", pcdev->dma_chans[1]);
a5462e5b 1815
de3e3b82 1816 err = pxa_request_dma("CI_V", DMA_PRIO_HIGH,
1817 pxa_camera_dma_irq_v, pcdev);
1818 if (err < 0) {
eff505fa 1819 dev_err(&pdev->dev, "Can't request DMA for V\n");
a5462e5b
MR
1820 goto exit_free_dma_u;
1821 }
de3e3b82 1822 pcdev->dma_chans[2] = err;
eff505fa 1823 dev_dbg(&pdev->dev, "got DMA channel (V) %d\n", pcdev->dma_chans[2]);
3bc43840 1824
87f3dd77
EM
1825 DRCMR(68) = pcdev->dma_chans[0] | DRCMR_MAPVLD;
1826 DRCMR(69) = pcdev->dma_chans[1] | DRCMR_MAPVLD;
1827 DRCMR(70) = pcdev->dma_chans[2] | DRCMR_MAPVLD;
3bc43840
GL
1828
1829 /* request irq */
47de201c
JL
1830 err = devm_request_irq(&pdev->dev, pcdev->irq, pxa_camera_irq, 0,
1831 PXA_CAM_DRV_NAME, pcdev);
3bc43840 1832 if (err) {
47de201c 1833 dev_err(&pdev->dev, "Camera interrupt register failed\n");
3bc43840
GL
1834 goto exit_free_dma;
1835 }
1836
eb6c8558
GL
1837 pcdev->soc_host.drv_name = PXA_CAM_DRV_NAME;
1838 pcdev->soc_host.ops = &pxa_soc_camera_host_ops;
1839 pcdev->soc_host.priv = pcdev;
979ea1dd 1840 pcdev->soc_host.v4l2_dev.dev = &pdev->dev;
eb6c8558 1841 pcdev->soc_host.nr = pdev->id;
eff505fa 1842
eb6c8558 1843 err = soc_camera_host_register(&pcdev->soc_host);
3bc43840 1844 if (err)
47de201c 1845 goto exit_free_dma;
3bc43840
GL
1846
1847 return 0;
1848
3bc43840 1849exit_free_dma:
a5462e5b
MR
1850 pxa_free_dma(pcdev->dma_chans[2]);
1851exit_free_dma_u:
1852 pxa_free_dma(pcdev->dma_chans[1]);
1853exit_free_dma_y:
1854 pxa_free_dma(pcdev->dma_chans[0]);
3bc43840
GL
1855 return err;
1856}
1857
4c62e976 1858static int pxa_camera_remove(struct platform_device *pdev)
3bc43840 1859{
eff505fa
GL
1860 struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
1861 struct pxa_camera_dev *pcdev = container_of(soc_host,
1862 struct pxa_camera_dev, soc_host);
3bc43840 1863
a5462e5b
MR
1864 pxa_free_dma(pcdev->dma_chans[0]);
1865 pxa_free_dma(pcdev->dma_chans[1]);
1866 pxa_free_dma(pcdev->dma_chans[2]);
3bc43840 1867
eff505fa 1868 soc_camera_host_unregister(soc_host);
3bc43840 1869
7102b773 1870 dev_info(&pdev->dev, "PXA Camera driver unloaded\n");
3bc43840 1871
3bc43840
GL
1872 return 0;
1873}
1874
56a49194 1875static const struct dev_pm_ops pxa_camera_pm = {
7254026c
GL
1876 .suspend = pxa_camera_suspend,
1877 .resume = pxa_camera_resume,
1878};
1879
e9a1d94f
RJ
1880static const struct of_device_id pxa_camera_of_match[] = {
1881 { .compatible = "marvell,pxa270-qci", },
1882 {},
1883};
1884MODULE_DEVICE_TABLE(of, pxa_camera_of_match);
1885
3bc43840 1886static struct platform_driver pxa_camera_driver = {
6003b2ad 1887 .driver = {
3bc43840 1888 .name = PXA_CAM_DRV_NAME,
7254026c 1889 .pm = &pxa_camera_pm,
e9a1d94f 1890 .of_match_table = of_match_ptr(pxa_camera_of_match),
3bc43840
GL
1891 },
1892 .probe = pxa_camera_probe,
4c62e976 1893 .remove = pxa_camera_remove,
3bc43840
GL
1894};
1895
1d6629b1 1896module_platform_driver(pxa_camera_driver);
3bc43840
GL
1897
1898MODULE_DESCRIPTION("PXA27x SoC Camera Host driver");
1899MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
1900MODULE_LICENSE("GPL");
64dc3c1a 1901MODULE_VERSION(PXA_CAM_VERSION);
40e2e092 1902MODULE_ALIAS("platform:" PXA_CAM_DRV_NAME);
This page took 1.010746 seconds and 5 git commands to generate.