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