blob: 499d1a235fd73ae38507b39497ad62e91f6a2079 [file] [log] [blame]
Magnus Damm0d3244d2008-07-16 22:59:28 -03001/*
2 * V4L2 Driver for SuperH Mobile CEU interface
3 *
4 * Copyright (C) 2008 Magnus Damm
5 *
6 * Based on V4L2 Driver for PXA camera host - "pxa_camera.c",
7 *
8 * Copyright (C) 2006, Sascha Hauer, Pengutronix
9 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 */
16
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/io.h>
20#include <linux/delay.h>
21#include <linux/dma-mapping.h>
22#include <linux/errno.h>
23#include <linux/fs.h>
24#include <linux/interrupt.h>
25#include <linux/kernel.h>
26#include <linux/mm.h>
27#include <linux/moduleparam.h>
28#include <linux/time.h>
29#include <linux/version.h>
30#include <linux/device.h>
31#include <linux/platform_device.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030032#include <linux/videodev2.h>
Magnus Damm6d1386c2009-08-14 10:49:17 +000033#include <linux/pm_runtime.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030034
35#include <media/v4l2-common.h>
36#include <media/v4l2-dev.h>
37#include <media/soc_camera.h>
38#include <media/sh_mobile_ceu.h>
39#include <media/videobuf-dma-contig.h>
40
41/* register offsets for sh7722 / sh7723 */
42
Magnus Dammdd542032008-10-16 19:50:22 -030043#define CAPSR 0x00 /* Capture start register */
44#define CAPCR 0x04 /* Capture control register */
45#define CAMCR 0x08 /* Capture interface control register */
46#define CMCYR 0x0c /* Capture interface cycle register */
47#define CAMOR 0x10 /* Capture interface offset register */
48#define CAPWR 0x14 /* Capture interface width register */
49#define CAIFR 0x18 /* Capture interface input format register */
50#define CSTCR 0x20 /* Camera strobe control register (<= sh7722) */
51#define CSECR 0x24 /* Camera strobe emission count register (<= sh7722) */
52#define CRCNTR 0x28 /* CEU register control register */
53#define CRCMPR 0x2c /* CEU register forcible control register */
54#define CFLCR 0x30 /* Capture filter control register */
55#define CFSZR 0x34 /* Capture filter size clip register */
56#define CDWDR 0x38 /* Capture destination width register */
57#define CDAYR 0x3c /* Capture data address Y register */
58#define CDACR 0x40 /* Capture data address C register */
59#define CDBYR 0x44 /* Capture data bottom-field address Y register */
60#define CDBCR 0x48 /* Capture data bottom-field address C register */
61#define CBDSR 0x4c /* Capture bundle destination size register */
62#define CFWCR 0x5c /* Firewall operation control register */
63#define CLFCR 0x60 /* Capture low-pass filter control register */
64#define CDOCR 0x64 /* Capture data output control register */
65#define CDDCR 0x68 /* Capture data complexity level register */
66#define CDDAR 0x6c /* Capture data complexity level address register */
67#define CEIER 0x70 /* Capture event interrupt enable register */
68#define CETCR 0x74 /* Capture event flag clear register */
69#define CSTSR 0x7c /* Capture status register */
70#define CSRTR 0x80 /* Capture software reset register */
71#define CDSSR 0x84 /* Capture data size register */
72#define CDAYR2 0x90 /* Capture data address Y register 2 */
73#define CDACR2 0x94 /* Capture data address C register 2 */
74#define CDBYR2 0x98 /* Capture data bottom-field address Y register 2 */
75#define CDBCR2 0x9c /* Capture data bottom-field address C register 2 */
Magnus Damm0d3244d2008-07-16 22:59:28 -030076
Magnus Damm0d3244d2008-07-16 22:59:28 -030077/* per video frame buffer */
78struct sh_mobile_ceu_buffer {
79 struct videobuf_buffer vb; /* v4l buffer must be first */
80 const struct soc_camera_data_format *fmt;
81};
82
83struct sh_mobile_ceu_dev {
Magnus Damm0d3244d2008-07-16 22:59:28 -030084 struct soc_camera_host ici;
85 struct soc_camera_device *icd;
86
87 unsigned int irq;
88 void __iomem *base;
89 unsigned long video_limit;
90
Guennadi Liakhovetskic60f2b52008-07-17 17:30:47 -030091 /* lock used to protect videobuf */
Magnus Damm0d3244d2008-07-16 22:59:28 -030092 spinlock_t lock;
93 struct list_head capture;
94 struct videobuf_buffer *active;
95
96 struct sh_mobile_ceu_info *pdata;
Magnus Damm8be65dc2008-12-18 12:38:06 -030097
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -030098 u32 cflcr;
99
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300100 unsigned int is_interlaced:1;
101 unsigned int image_mode:1;
102 unsigned int is_16bit:1;
103};
104
105struct sh_mobile_ceu_cam {
106 struct v4l2_rect camera_rect;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300107 struct v4l2_rect camera_max;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300108 const struct soc_camera_data_format *extra_fmt;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300109 const struct soc_camera_data_format *camera_fmt;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300110};
111
Kuninori Morimotoc354b402009-02-23 12:12:58 -0300112static unsigned long make_bus_param(struct sh_mobile_ceu_dev *pcdev)
113{
114 unsigned long flags;
115
116 flags = SOCAM_MASTER |
117 SOCAM_PCLK_SAMPLE_RISING |
118 SOCAM_HSYNC_ACTIVE_HIGH |
119 SOCAM_HSYNC_ACTIVE_LOW |
120 SOCAM_VSYNC_ACTIVE_HIGH |
121 SOCAM_VSYNC_ACTIVE_LOW |
122 SOCAM_DATA_ACTIVE_HIGH;
123
124 if (pcdev->pdata->flags & SH_CEU_FLAG_USE_8BIT_BUS)
125 flags |= SOCAM_DATAWIDTH_8;
126
127 if (pcdev->pdata->flags & SH_CEU_FLAG_USE_16BIT_BUS)
128 flags |= SOCAM_DATAWIDTH_16;
129
130 if (flags & SOCAM_DATAWIDTH_MASK)
131 return flags;
132
133 return 0;
134}
135
Magnus Damm0d3244d2008-07-16 22:59:28 -0300136static void ceu_write(struct sh_mobile_ceu_dev *priv,
Magnus Damm7a1a8162008-12-18 12:50:30 -0300137 unsigned long reg_offs, u32 data)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300138{
139 iowrite32(data, priv->base + reg_offs);
140}
141
Magnus Damm7a1a8162008-12-18 12:50:30 -0300142static u32 ceu_read(struct sh_mobile_ceu_dev *priv, unsigned long reg_offs)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300143{
144 return ioread32(priv->base + reg_offs);
145}
146
147/*
148 * Videobuf operations
149 */
150static int sh_mobile_ceu_videobuf_setup(struct videobuf_queue *vq,
151 unsigned int *count,
152 unsigned int *size)
153{
154 struct soc_camera_device *icd = vq->priv_data;
155 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
156 struct sh_mobile_ceu_dev *pcdev = ici->priv;
157 int bytes_per_pixel = (icd->current_fmt->depth + 7) >> 3;
158
Guennadi Liakhovetskia0705b02009-08-25 11:46:17 -0300159 *size = PAGE_ALIGN(icd->rect_current.width * icd->rect_current.height *
160 bytes_per_pixel);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300161
162 if (0 == *count)
163 *count = 2;
164
165 if (pcdev->video_limit) {
166 while (*size * *count > pcdev->video_limit)
167 (*count)--;
168 }
169
170 dev_dbg(&icd->dev, "count=%d, size=%d\n", *count, *size);
171
172 return 0;
173}
174
175static void free_buffer(struct videobuf_queue *vq,
176 struct sh_mobile_ceu_buffer *buf)
177{
178 struct soc_camera_device *icd = vq->priv_data;
179
Hans Verkuil86751b02008-07-18 01:35:14 -0300180 dev_dbg(&icd->dev, "%s (vb=0x%p) 0x%08lx %zd\n", __func__,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300181 &buf->vb, buf->vb.baddr, buf->vb.bsize);
182
183 if (in_interrupt())
184 BUG();
185
Magnus Damm97215cb2009-03-13 06:08:20 -0300186 videobuf_waiton(&buf->vb, 0, 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300187 videobuf_dma_contig_free(vq, &buf->vb);
188 dev_dbg(&icd->dev, "%s freed\n", __func__);
189 buf->vb.state = VIDEOBUF_NEEDS_INIT;
190}
191
Magnus Damm7a1a8162008-12-18 12:50:30 -0300192#define CEU_CETCR_MAGIC 0x0317f313 /* acknowledge magical interrupt sources */
193#define CEU_CETCR_IGRW (1 << 4) /* prohibited register access interrupt bit */
194#define CEU_CEIER_CPEIE (1 << 0) /* one-frame capture end interrupt */
195#define CEU_CAPCR_CTNCP (1 << 16) /* continuous capture mode (if set) */
196
197
Magnus Damm0d3244d2008-07-16 22:59:28 -0300198static void sh_mobile_ceu_capture(struct sh_mobile_ceu_dev *pcdev)
199{
Magnus Damm8be65dc2008-12-18 12:38:06 -0300200 struct soc_camera_device *icd = pcdev->icd;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300201 dma_addr_t phys_addr_top, phys_addr_bottom;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300202
Magnus Damm7a1a8162008-12-18 12:50:30 -0300203 /* The hardware is _very_ picky about this sequence. Especially
204 * the CEU_CETCR_MAGIC value. It seems like we need to acknowledge
205 * several not-so-well documented interrupt sources in CETCR.
206 */
207 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) & ~CEU_CEIER_CPEIE);
208 ceu_write(pcdev, CETCR, ~ceu_read(pcdev, CETCR) & CEU_CETCR_MAGIC);
209 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) | CEU_CEIER_CPEIE);
210 ceu_write(pcdev, CAPCR, ceu_read(pcdev, CAPCR) & ~CEU_CAPCR_CTNCP);
211 ceu_write(pcdev, CETCR, CEU_CETCR_MAGIC ^ CEU_CETCR_IGRW);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300212
Magnus Damm8be65dc2008-12-18 12:38:06 -0300213 if (!pcdev->active)
214 return;
215
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300216 phys_addr_top = videobuf_to_dma_contig(pcdev->active);
217 ceu_write(pcdev, CDAYR, phys_addr_top);
Guennadi Liakhovetskie8029672009-03-13 06:08:20 -0300218 if (pcdev->is_interlaced) {
Guennadi Liakhovetskia0705b02009-08-25 11:46:17 -0300219 phys_addr_bottom = phys_addr_top + icd->rect_current.width;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300220 ceu_write(pcdev, CDBYR, phys_addr_bottom);
221 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300222
223 switch (icd->current_fmt->fourcc) {
224 case V4L2_PIX_FMT_NV12:
225 case V4L2_PIX_FMT_NV21:
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300226 case V4L2_PIX_FMT_NV16:
227 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetskia0705b02009-08-25 11:46:17 -0300228 phys_addr_top += icd->rect_current.width *
229 icd->rect_current.height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300230 ceu_write(pcdev, CDACR, phys_addr_top);
Guennadi Liakhovetskie8029672009-03-13 06:08:20 -0300231 if (pcdev->is_interlaced) {
Guennadi Liakhovetskia0705b02009-08-25 11:46:17 -0300232 phys_addr_bottom = phys_addr_top +
233 icd->rect_current.width;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300234 ceu_write(pcdev, CDBCR, phys_addr_bottom);
235 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300236 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300237
238 pcdev->active->state = VIDEOBUF_ACTIVE;
239 ceu_write(pcdev, CAPSR, 0x1); /* start capture */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300240}
241
242static int sh_mobile_ceu_videobuf_prepare(struct videobuf_queue *vq,
243 struct videobuf_buffer *vb,
244 enum v4l2_field field)
245{
246 struct soc_camera_device *icd = vq->priv_data;
247 struct sh_mobile_ceu_buffer *buf;
248 int ret;
249
250 buf = container_of(vb, struct sh_mobile_ceu_buffer, vb);
251
Hans Verkuil86751b02008-07-18 01:35:14 -0300252 dev_dbg(&icd->dev, "%s (vb=0x%p) 0x%08lx %zd\n", __func__,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300253 vb, vb->baddr, vb->bsize);
254
255 /* Added list head initialization on alloc */
256 WARN_ON(!list_empty(&vb->queue));
257
258#ifdef DEBUG
259 /* This can be useful if you want to see if we actually fill
260 * the buffer with something */
261 memset((void *)vb->baddr, 0xaa, vb->bsize);
262#endif
263
264 BUG_ON(NULL == icd->current_fmt);
265
266 if (buf->fmt != icd->current_fmt ||
Guennadi Liakhovetskia0705b02009-08-25 11:46:17 -0300267 vb->width != icd->rect_current.width ||
268 vb->height != icd->rect_current.height ||
Magnus Damm0d3244d2008-07-16 22:59:28 -0300269 vb->field != field) {
270 buf->fmt = icd->current_fmt;
Guennadi Liakhovetskia0705b02009-08-25 11:46:17 -0300271 vb->width = icd->rect_current.width;
272 vb->height = icd->rect_current.height;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300273 vb->field = field;
274 vb->state = VIDEOBUF_NEEDS_INIT;
275 }
276
277 vb->size = vb->width * vb->height * ((buf->fmt->depth + 7) >> 3);
278 if (0 != vb->baddr && vb->bsize < vb->size) {
279 ret = -EINVAL;
280 goto out;
281 }
282
283 if (vb->state == VIDEOBUF_NEEDS_INIT) {
284 ret = videobuf_iolock(vq, vb, NULL);
285 if (ret)
286 goto fail;
287 vb->state = VIDEOBUF_PREPARED;
288 }
289
290 return 0;
291fail:
292 free_buffer(vq, buf);
293out:
294 return ret;
295}
296
Guennadi Liakhovetski2dd54a52009-08-05 20:06:31 -0300297/* Called under spinlock_irqsave(&pcdev->lock, ...) */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300298static void sh_mobile_ceu_videobuf_queue(struct videobuf_queue *vq,
299 struct videobuf_buffer *vb)
300{
301 struct soc_camera_device *icd = vq->priv_data;
302 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
303 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300304
Hans Verkuil86751b02008-07-18 01:35:14 -0300305 dev_dbg(&icd->dev, "%s (vb=0x%p) 0x%08lx %zd\n", __func__,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300306 vb, vb->baddr, vb->bsize);
307
Magnus Damm51354cc2008-10-16 19:51:20 -0300308 vb->state = VIDEOBUF_QUEUED;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300309 list_add_tail(&vb->queue, &pcdev->capture);
310
311 if (!pcdev->active) {
312 pcdev->active = vb;
313 sh_mobile_ceu_capture(pcdev);
314 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300315}
316
317static void sh_mobile_ceu_videobuf_release(struct videobuf_queue *vq,
318 struct videobuf_buffer *vb)
319{
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300320 struct soc_camera_device *icd = vq->priv_data;
321 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
322 struct sh_mobile_ceu_dev *pcdev = ici->priv;
323 unsigned long flags;
324
325 spin_lock_irqsave(&pcdev->lock, flags);
326
327 if (pcdev->active == vb) {
328 /* disable capture (release DMA buffer), reset */
329 ceu_write(pcdev, CAPSR, 1 << 16);
330 pcdev->active = NULL;
331 }
332
333 if ((vb->state == VIDEOBUF_ACTIVE || vb->state == VIDEOBUF_QUEUED) &&
334 !list_empty(&vb->queue)) {
335 vb->state = VIDEOBUF_ERROR;
336 list_del_init(&vb->queue);
337 }
338
339 spin_unlock_irqrestore(&pcdev->lock, flags);
340
Magnus Damm0d3244d2008-07-16 22:59:28 -0300341 free_buffer(vq, container_of(vb, struct sh_mobile_ceu_buffer, vb));
342}
343
344static struct videobuf_queue_ops sh_mobile_ceu_videobuf_ops = {
345 .buf_setup = sh_mobile_ceu_videobuf_setup,
346 .buf_prepare = sh_mobile_ceu_videobuf_prepare,
347 .buf_queue = sh_mobile_ceu_videobuf_queue,
348 .buf_release = sh_mobile_ceu_videobuf_release,
349};
350
351static irqreturn_t sh_mobile_ceu_irq(int irq, void *data)
352{
353 struct sh_mobile_ceu_dev *pcdev = data;
354 struct videobuf_buffer *vb;
355 unsigned long flags;
356
357 spin_lock_irqsave(&pcdev->lock, flags);
358
359 vb = pcdev->active;
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300360 if (!vb)
361 /* Stale interrupt from a released buffer */
362 goto out;
363
Magnus Damm0d3244d2008-07-16 22:59:28 -0300364 list_del_init(&vb->queue);
365
366 if (!list_empty(&pcdev->capture))
367 pcdev->active = list_entry(pcdev->capture.next,
368 struct videobuf_buffer, queue);
369 else
370 pcdev->active = NULL;
371
372 sh_mobile_ceu_capture(pcdev);
373
374 vb->state = VIDEOBUF_DONE;
375 do_gettimeofday(&vb->ts);
376 vb->field_count++;
377 wake_up(&vb->done);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300378
379out:
Magnus Damm0d3244d2008-07-16 22:59:28 -0300380 spin_unlock_irqrestore(&pcdev->lock, flags);
381
382 return IRQ_HANDLED;
383}
384
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300385/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300386static int sh_mobile_ceu_add_device(struct soc_camera_device *icd)
387{
388 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
389 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300390
Magnus Damm0d3244d2008-07-16 22:59:28 -0300391 if (pcdev->icd)
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300392 return -EBUSY;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300393
394 dev_info(&icd->dev,
395 "SuperH Mobile CEU driver attached to camera %d\n",
396 icd->devnum);
397
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300398 clk_enable(pcdev->clk);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300399
400 ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
401 while (ceu_read(pcdev, CSTSR) & 1)
402 msleep(1);
403
404 pcdev->icd = icd;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300405
406 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300407}
408
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300409/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300410static void sh_mobile_ceu_remove_device(struct soc_camera_device *icd)
411{
412 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
413 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm51354cc2008-10-16 19:51:20 -0300414 unsigned long flags;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300415
416 BUG_ON(icd != pcdev->icd);
417
418 /* disable capture, disable interrupts */
419 ceu_write(pcdev, CEIER, 0);
420 ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
Magnus Damm51354cc2008-10-16 19:51:20 -0300421
422 /* make sure active buffer is canceled */
423 spin_lock_irqsave(&pcdev->lock, flags);
424 if (pcdev->active) {
425 list_del(&pcdev->active->queue);
426 pcdev->active->state = VIDEOBUF_ERROR;
427 wake_up_all(&pcdev->active->done);
428 pcdev->active = NULL;
429 }
430 spin_unlock_irqrestore(&pcdev->lock, flags);
431
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300432 clk_disable(pcdev->clk);
433
Magnus Damm0d3244d2008-07-16 22:59:28 -0300434 dev_info(&icd->dev,
435 "SuperH Mobile CEU driver detached from camera %d\n",
436 icd->devnum);
437
438 pcdev->icd = NULL;
439}
440
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300441/*
442 * See chapter 29.4.12 "Capture Filter Control Register (CFLCR)"
443 * in SH7722 Hardware Manual
444 */
445static unsigned int size_dst(unsigned int src, unsigned int scale)
446{
447 unsigned int mant_pre = scale >> 12;
448 if (!src || !scale)
449 return src;
450 return ((mant_pre + 2 * (src - 1)) / (2 * mant_pre) - 1) *
451 mant_pre * 4096 / scale + 1;
452}
453
454static unsigned int size_src(unsigned int dst, unsigned int scale)
455{
456 unsigned int mant_pre = scale >> 12, tmp;
457 if (!dst || !scale)
458 return dst;
459 for (tmp = ((dst - 1) * scale + 2048 * mant_pre) / 4096 + 1;
460 size_dst(tmp, scale) < dst;
461 tmp++)
462 ;
463 return tmp;
464}
465
466static u16 calc_scale(unsigned int src, unsigned int *dst)
467{
468 u16 scale;
469
470 if (src == *dst)
471 return 0;
472
473 scale = (src * 4096 / *dst) & ~7;
474
475 while (scale > 4096 && size_dst(src, scale) < *dst)
476 scale -= 8;
477
478 *dst = size_dst(src, scale);
479
480 return scale;
481}
482
483/* rect is guaranteed to not exceed the scaled camera rectangle */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300484static void sh_mobile_ceu_set_rect(struct soc_camera_device *icd,
485 struct v4l2_rect *rect)
486{
487 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
488 struct sh_mobile_ceu_cam *cam = icd->host_priv;
489 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300490 int width, height, cfszr_width, cdwdr_width, in_width, in_height;
491 unsigned int left_offset, top_offset, left, top;
492 unsigned int hscale = pcdev->cflcr & 0xffff;
493 unsigned int vscale = (pcdev->cflcr >> 16) & 0xffff;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300494 u32 camor;
495
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300496 /* Switch to the camera scale */
497 left = size_src(rect->left, hscale);
498 top = size_src(rect->top, vscale);
499
500 dev_dbg(&icd->dev, "Left %u * 0x%x = %u, top %u * 0x%x = %u\n",
501 rect->left, hscale, left, rect->top, vscale, top);
502
503 if (left > cam->camera_rect.left) {
504 left_offset = left - cam->camera_rect.left;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300505 } else {
506 left_offset = 0;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300507 left = cam->camera_rect.left;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300508 }
509
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300510 if (top > cam->camera_rect.top) {
511 top_offset = top - cam->camera_rect.top;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300512 } else {
513 top_offset = 0;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300514 top = cam->camera_rect.top;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300515 }
516
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300517 dev_dbg(&icd->dev, "New left %u, top %u, offsets %u:%u\n",
518 rect->left, rect->top, left_offset, top_offset);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300519
520 if (pcdev->image_mode) {
521 width = rect->width;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300522 in_width = cam->camera_rect.width;
523 if (!pcdev->is_16bit) {
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300524 width *= 2;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300525 in_width *= 2;
526 left_offset *= 2;
527 }
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300528 cfszr_width = cdwdr_width = rect->width;
529 } else {
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300530 unsigned int w_factor = (icd->current_fmt->depth + 7) >> 3;
531 if (!pcdev->is_16bit)
532 w_factor *= 2;
533
534 width = rect->width * w_factor / 2;
535 in_width = cam->camera_rect.width * w_factor / 2;
536 left_offset = left_offset * w_factor / 2;
537
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300538 cfszr_width = pcdev->is_16bit ? width : width / 2;
539 cdwdr_width = pcdev->is_16bit ? width * 2 : width;
540 }
541
542 height = rect->height;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300543 in_height = cam->camera_rect.height;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300544 if (pcdev->is_interlaced) {
545 height /= 2;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300546 in_height /= 2;
547 top_offset /= 2;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300548 cdwdr_width *= 2;
549 }
550
551 camor = left_offset | (top_offset << 16);
552 ceu_write(pcdev, CAMOR, camor);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300553 ceu_write(pcdev, CAPWR, (in_height << 16) | in_width);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300554 ceu_write(pcdev, CFSZR, (height << 16) | cfszr_width);
555 ceu_write(pcdev, CDWDR, cdwdr_width);
556}
557
558static u32 capture_save_reset(struct sh_mobile_ceu_dev *pcdev)
559{
560 u32 capsr = ceu_read(pcdev, CAPSR);
561 ceu_write(pcdev, CAPSR, 1 << 16); /* reset, stop capture */
562 return capsr;
563}
564
565static void capture_restore(struct sh_mobile_ceu_dev *pcdev, u32 capsr)
566{
567 unsigned long timeout = jiffies + 10 * HZ;
568
569 /*
570 * Wait until the end of the current frame. It can take a long time,
571 * but if it has been aborted by a CAPSR reset, it shoule exit sooner.
572 */
573 while ((ceu_read(pcdev, CSTSR) & 1) && time_before(jiffies, timeout))
574 msleep(1);
575
576 if (time_after(jiffies, timeout)) {
577 dev_err(pcdev->ici.v4l2_dev.dev,
578 "Timeout waiting for frame end! Interface problem?\n");
579 return;
580 }
581
582 /* Wait until reset clears, this shall not hang... */
583 while (ceu_read(pcdev, CAPSR) & (1 << 16))
584 udelay(10);
585
586 /* Anything to restore? */
587 if (capsr & ~(1 << 16))
588 ceu_write(pcdev, CAPSR, capsr);
589}
590
Magnus Damm0d3244d2008-07-16 22:59:28 -0300591static int sh_mobile_ceu_set_bus_param(struct soc_camera_device *icd,
592 __u32 pixfmt)
593{
594 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
595 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300596 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300597 unsigned long camera_flags, common_flags, value;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300598 int yuv_lineskip;
599 struct sh_mobile_ceu_cam *cam = icd->host_priv;
600 u32 capsr = capture_save_reset(pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300601
602 camera_flags = icd->ops->query_bus_param(icd);
603 common_flags = soc_camera_bus_param_compatible(camera_flags,
Kuninori Morimotoc354b402009-02-23 12:12:58 -0300604 make_bus_param(pcdev));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300605 if (!common_flags)
606 return -EINVAL;
607
608 ret = icd->ops->set_bus_param(icd, common_flags);
609 if (ret < 0)
610 return ret;
611
612 switch (common_flags & SOCAM_DATAWIDTH_MASK) {
613 case SOCAM_DATAWIDTH_8:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300614 pcdev->is_16bit = 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300615 break;
616 case SOCAM_DATAWIDTH_16:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300617 pcdev->is_16bit = 1;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300618 break;
619 default:
620 return -EINVAL;
621 }
622
623 ceu_write(pcdev, CRCNTR, 0);
624 ceu_write(pcdev, CRCMPR, 0);
625
Magnus Damm8be65dc2008-12-18 12:38:06 -0300626 value = 0x00000010; /* data fetch by default */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300627 yuv_lineskip = 0;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300628
629 switch (icd->current_fmt->fourcc) {
630 case V4L2_PIX_FMT_NV12:
631 case V4L2_PIX_FMT_NV21:
632 yuv_lineskip = 1; /* skip for NV12/21, no skip for NV16/61 */
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300633 /* fall-through */
634 case V4L2_PIX_FMT_NV16:
635 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300636 switch (cam->camera_fmt->fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300637 case V4L2_PIX_FMT_UYVY:
638 value = 0x00000000; /* Cb0, Y0, Cr0, Y1 */
639 break;
640 case V4L2_PIX_FMT_VYUY:
641 value = 0x00000100; /* Cr0, Y0, Cb0, Y1 */
642 break;
643 case V4L2_PIX_FMT_YUYV:
644 value = 0x00000200; /* Y0, Cb0, Y1, Cr0 */
645 break;
646 case V4L2_PIX_FMT_YVYU:
647 value = 0x00000300; /* Y0, Cr0, Y1, Cb0 */
648 break;
649 default:
650 BUG();
651 }
652 }
653
Magnus Damm7a1a8162008-12-18 12:50:30 -0300654 if (icd->current_fmt->fourcc == V4L2_PIX_FMT_NV21 ||
655 icd->current_fmt->fourcc == V4L2_PIX_FMT_NV61)
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300656 value ^= 0x00000100; /* swap U, V to change from NV1x->NVx1 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300657
Magnus Damm7a1a8162008-12-18 12:50:30 -0300658 value |= common_flags & SOCAM_VSYNC_ACTIVE_LOW ? 1 << 1 : 0;
659 value |= common_flags & SOCAM_HSYNC_ACTIVE_LOW ? 1 << 0 : 0;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300660 value |= pcdev->is_16bit ? 1 << 12 : 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300661 ceu_write(pcdev, CAMCR, value);
662
663 ceu_write(pcdev, CAPCR, 0x00300000);
Guennadi Liakhovetskie8029672009-03-13 06:08:20 -0300664 ceu_write(pcdev, CAIFR, pcdev->is_interlaced ? 0x101 : 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300665
666 mdelay(1);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300667 sh_mobile_ceu_set_rect(icd, &icd->rect_current);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300668
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300669 ceu_write(pcdev, CFLCR, pcdev->cflcr);
Magnus Dammdd542032008-10-16 19:50:22 -0300670
671 /* A few words about byte order (observed in Big Endian mode)
672 *
673 * In data fetch mode bytes are received in chunks of 8 bytes.
674 * D0, D1, D2, D3, D4, D5, D6, D7 (D0 received first)
675 *
676 * The data is however by default written to memory in reverse order:
677 * D7, D6, D5, D4, D3, D2, D1, D0 (D7 written to lowest byte)
678 *
679 * The lowest three bits of CDOCR allows us to do swapping,
Magnus Damm2c0a0722008-10-16 19:50:56 -0300680 * using 7 we swap the data bytes to match the incoming order:
681 * D0, D1, D2, D3, D4, D5, D6, D7
Magnus Dammdd542032008-10-16 19:50:22 -0300682 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300683 value = 0x00000017;
684 if (yuv_lineskip)
685 value &= ~0x00000010; /* convert 4:2:2 -> 4:2:0 */
686
687 ceu_write(pcdev, CDOCR, value);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300688 ceu_write(pcdev, CFWCR, 0); /* keep "datafetch firewall" disabled */
689
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300690 dev_dbg(&icd->dev, "S_FMT successful for %c%c%c%c %ux%u@%u:%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300691 pixfmt & 0xff, (pixfmt >> 8) & 0xff,
692 (pixfmt >> 16) & 0xff, (pixfmt >> 24) & 0xff,
693 icd->rect_current.width, icd->rect_current.height,
694 icd->rect_current.left, icd->rect_current.top);
695
696 capture_restore(pcdev, capsr);
697
Magnus Damm0d3244d2008-07-16 22:59:28 -0300698 /* not in bundle mode: skip CBDSR, CDAYR2, CDACR2, CDBYR2, CDBCR2 */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300699 return 0;
700}
701
Magnus Damm9414de32008-12-18 11:49:06 -0300702static int sh_mobile_ceu_try_bus_param(struct soc_camera_device *icd)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300703{
704 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
705 struct sh_mobile_ceu_dev *pcdev = ici->priv;
706 unsigned long camera_flags, common_flags;
707
708 camera_flags = icd->ops->query_bus_param(icd);
709 common_flags = soc_camera_bus_param_compatible(camera_flags,
Kuninori Morimotoc354b402009-02-23 12:12:58 -0300710 make_bus_param(pcdev));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300711 if (!common_flags)
712 return -EINVAL;
713
714 return 0;
715}
716
Magnus Damm8be65dc2008-12-18 12:38:06 -0300717static const struct soc_camera_data_format sh_mobile_ceu_formats[] = {
718 {
719 .name = "NV12",
720 .depth = 12,
721 .fourcc = V4L2_PIX_FMT_NV12,
722 .colorspace = V4L2_COLORSPACE_JPEG,
723 },
724 {
725 .name = "NV21",
726 .depth = 12,
727 .fourcc = V4L2_PIX_FMT_NV21,
728 .colorspace = V4L2_COLORSPACE_JPEG,
729 },
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300730 {
731 .name = "NV16",
732 .depth = 16,
733 .fourcc = V4L2_PIX_FMT_NV16,
734 .colorspace = V4L2_COLORSPACE_JPEG,
735 },
736 {
737 .name = "NV61",
738 .depth = 16,
739 .fourcc = V4L2_PIX_FMT_NV61,
740 .colorspace = V4L2_COLORSPACE_JPEG,
741 },
Magnus Damm8be65dc2008-12-18 12:38:06 -0300742};
743
Magnus Damm9414de32008-12-18 11:49:06 -0300744static int sh_mobile_ceu_get_formats(struct soc_camera_device *icd, int idx,
745 struct soc_camera_format_xlate *xlate)
746{
747 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
Magnus Damm8be65dc2008-12-18 12:38:06 -0300748 int ret, k, n;
Magnus Damm9414de32008-12-18 11:49:06 -0300749 int formats = 0;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300750 struct sh_mobile_ceu_cam *cam;
Magnus Damm9414de32008-12-18 11:49:06 -0300751
752 ret = sh_mobile_ceu_try_bus_param(icd);
753 if (ret < 0)
754 return 0;
755
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300756 if (!icd->host_priv) {
757 cam = kzalloc(sizeof(*cam), GFP_KERNEL);
758 if (!cam)
759 return -ENOMEM;
760
761 icd->host_priv = cam;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300762 cam->camera_max = icd->rect_max;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300763 } else {
764 cam = icd->host_priv;
765 }
766
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -0300767 /* Beginning of a pass */
768 if (!idx)
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300769 cam->extra_fmt = NULL;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -0300770
Magnus Damm9414de32008-12-18 11:49:06 -0300771 switch (icd->formats[idx].fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300772 case V4L2_PIX_FMT_UYVY:
773 case V4L2_PIX_FMT_VYUY:
774 case V4L2_PIX_FMT_YUYV:
775 case V4L2_PIX_FMT_YVYU:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300776 if (cam->extra_fmt)
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -0300777 goto add_single_format;
778
779 /*
780 * Our case is simple so far: for any of the above four camera
781 * formats we add all our four synthesized NV* formats, so,
782 * just marking the device with a single flag suffices. If
783 * the format generation rules are more complex, you would have
784 * to actually hang your already added / counted formats onto
785 * the host_priv pointer and check whether the format you're
786 * going to add now is already there.
787 */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300788 cam->extra_fmt = (void *)sh_mobile_ceu_formats;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -0300789
Magnus Damm8be65dc2008-12-18 12:38:06 -0300790 n = ARRAY_SIZE(sh_mobile_ceu_formats);
791 formats += n;
792 for (k = 0; xlate && k < n; k++) {
793 xlate->host_fmt = &sh_mobile_ceu_formats[k];
794 xlate->cam_fmt = icd->formats + idx;
795 xlate->buswidth = icd->formats[idx].depth;
796 xlate++;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300797 dev_dbg(ici->v4l2_dev.dev, "Providing format %s using %s\n",
Magnus Damm8be65dc2008-12-18 12:38:06 -0300798 sh_mobile_ceu_formats[k].name,
799 icd->formats[idx].name);
800 }
Magnus Damm9414de32008-12-18 11:49:06 -0300801 default:
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -0300802add_single_format:
Magnus Damm9414de32008-12-18 11:49:06 -0300803 /* Generic pass-through */
804 formats++;
805 if (xlate) {
806 xlate->host_fmt = icd->formats + idx;
807 xlate->cam_fmt = icd->formats + idx;
808 xlate->buswidth = icd->formats[idx].depth;
809 xlate++;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300810 dev_dbg(ici->v4l2_dev.dev,
Magnus Damm9414de32008-12-18 11:49:06 -0300811 "Providing format %s in pass-through mode\n",
812 icd->formats[idx].name);
813 }
814 }
815
816 return formats;
817}
818
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300819static void sh_mobile_ceu_put_formats(struct soc_camera_device *icd)
820{
821 kfree(icd->host_priv);
822 icd->host_priv = NULL;
823}
824
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300825/* Check if any dimension of r1 is smaller than respective one of r2 */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300826static bool is_smaller(struct v4l2_rect *r1, struct v4l2_rect *r2)
827{
828 return r1->width < r2->width || r1->height < r2->height;
829}
830
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300831/* Check if r1 fails to cover r2 */
832static bool is_inside(struct v4l2_rect *r1, struct v4l2_rect *r2)
833{
834 return r1->left > r2->left || r1->top > r2->top ||
835 r1->left + r1->width < r2->left + r2->width ||
836 r1->top + r1->height < r2->top + r2->height;
837}
838
839/*
840 * CEU can scale and crop, but we don't want to waste bandwidth and kill the
841 * framerate by always requesting the maximum image from the client. For
842 * cropping we also have to take care of the current scale. The common for both
843 * scaling and cropping approach is:
844 * 1. try if the client can produce exactly what requested by the user
845 * 2. if (1) failed, try to double the client image until we get one big enough
846 * 3. if (2) failed, try to request the maximum image
847 */
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300848static int sh_mobile_ceu_set_crop(struct soc_camera_device *icd,
849 struct v4l2_rect *rect)
850{
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300851 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
852 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300853 struct v4l2_rect cam_rect, target, cam_max;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300854 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300855 unsigned int hscale = pcdev->cflcr & 0xffff;
856 unsigned int vscale = (pcdev->cflcr >> 16) & 0xffff;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300857 unsigned short width, height;
858 u32 capsr;
859 int ret;
860
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300861 /* Scale back up into client units */
862 cam_rect.left = size_src(rect->left, hscale);
863 cam_rect.width = size_src(rect->width, hscale);
864 cam_rect.top = size_src(rect->top, vscale);
865 cam_rect.height = size_src(rect->height, vscale);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300866
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300867 target = cam_rect;
868
869 capsr = capture_save_reset(pcdev);
870 dev_dbg(&icd->dev, "CAPSR 0x%x, CFLCR 0x%x\n", capsr, pcdev->cflcr);
871
872 /* First attempt - see if the client can deliver a perfect result */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300873 ret = icd->ops->set_crop(icd, &cam_rect);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300874 if (!ret && !memcmp(&target, &cam_rect, sizeof(target))) {
875 dev_dbg(&icd->dev, "Camera S_CROP successful for %ux%u@%u:%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300876 cam_rect.width, cam_rect.height,
877 cam_rect.left, cam_rect.top);
878 goto ceu_set_rect;
879 }
880
881 /* Try to fix cropping, that camera hasn't managed to do */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300882 dev_dbg(&icd->dev, "Fix camera S_CROP %d for %ux%u@%u:%u"
883 " to %ux%u@%u:%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300884 ret, cam_rect.width, cam_rect.height,
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300885 cam_rect.left, cam_rect.top,
886 target.width, target.height, target.left, target.top);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300887
888 /*
889 * Popular special case - some cameras can only handle fixed sizes like
890 * QVGA, VGA,... Take care to avoid infinite loop.
891 */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300892 width = max(cam_rect.width, 1);
893 height = max(cam_rect.height, 1);
894 cam_max.width = size_src(icd->rect_max.width, hscale);
895 cam_max.left = size_src(icd->rect_max.left, hscale);
896 cam_max.height = size_src(icd->rect_max.height, vscale);
897 cam_max.top = size_src(icd->rect_max.top, vscale);
898 while (!ret && (is_smaller(&cam_rect, &target) ||
899 is_inside(&cam_rect, &target)) &&
900 cam_max.width >= width && cam_max.height >= height) {
901
902 width *= 2;
903 height *= 2;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300904 cam_rect.width = width;
905 cam_rect.height = height;
906
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300907 /* We do not know what the camera is capable of, play safe */
908 if (cam_rect.left > target.left)
909 cam_rect.left = cam_max.left;
910
911 if (cam_rect.left + cam_rect.width < target.left + target.width)
912 cam_rect.width = target.left + target.width -
913 cam_rect.left;
914
915 if (cam_rect.top > target.top)
916 cam_rect.top = cam_max.top;
917
918 if (cam_rect.top + cam_rect.height < target.top + target.height)
919 cam_rect.height = target.top + target.height -
920 cam_rect.top;
921
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300922 if (cam_rect.width + cam_rect.left >
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300923 cam_max.width + cam_max.left)
924 cam_rect.left = max(cam_max.width + cam_max.left -
925 cam_rect.width, cam_max.left);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300926
927 if (cam_rect.height + cam_rect.top >
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300928 cam_max.height + cam_max.top)
929 cam_rect.top = max(cam_max.height + cam_max.top -
930 cam_rect.height, cam_max.top);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300931
932 ret = icd->ops->set_crop(icd, &cam_rect);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300933 dev_dbg(&icd->dev, "Camera S_CROP %d for %ux%u@%u:%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300934 ret, cam_rect.width, cam_rect.height,
935 cam_rect.left, cam_rect.top);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300936 }
937
938 /*
939 * If the camera failed to configure cropping, it should not modify the
940 * rectangle
941 */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300942 if ((ret < 0 && (is_smaller(&icd->rect_current, rect) ||
943 is_inside(&icd->rect_current, rect))) ||
944 is_smaller(&cam_rect, &target) || is_inside(&cam_rect, &target)) {
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300945 /*
946 * The camera failed to configure a suitable cropping,
947 * we cannot use the current rectangle, set to max
948 */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300949 cam_rect = cam_max;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300950 ret = icd->ops->set_crop(icd, &cam_rect);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300951 dev_dbg(&icd->dev, "Camera S_CROP %d for max %ux%u@%u:%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300952 ret, cam_rect.width, cam_rect.height,
953 cam_rect.left, cam_rect.top);
954 if (ret < 0)
955 /* All failed, hopefully resume current capture */
956 goto resume_capture;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300957
958 /* Finally, adjust the target rectangle */
959 if (target.width > cam_rect.width)
960 target.width = cam_rect.width;
961 if (target.height > cam_rect.height)
962 target.height = cam_rect.height;
963 if (target.left + target.width > cam_rect.left + cam_rect.width)
964 target.left = cam_rect.left + cam_rect.width -
965 target.width;
966 if (target.top + target.height > cam_rect.top + cam_rect.height)
967 target.top = cam_rect.top + cam_rect.height -
968 target.height;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300969 }
970
971 /* We now have a rectangle, larger than requested, let's crop */
972
973 /*
974 * We have to preserve camera rectangle between close() / open(),
975 * because soc-camera core calls .set_fmt() on each first open() with
976 * last before last close() _user_ rectangle, which can be different
977 * from camera rectangle.
978 */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300979 dev_dbg(&icd->dev,
980 "SH S_CROP from %ux%u@%u:%u to %ux%u@%u:%u, scale to %ux%u@%u:%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300981 cam_rect.width, cam_rect.height, cam_rect.left, cam_rect.top,
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300982 target.width, target.height, target.left, target.top,
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300983 rect->width, rect->height, rect->left, rect->top);
984
985 ret = 0;
986
987ceu_set_rect:
988 cam->camera_rect = cam_rect;
989
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300990 rect->width = size_dst(target.width, hscale);
991 rect->left = size_dst(target.left, hscale);
992 rect->height = size_dst(target.height, vscale);
993 rect->top = size_dst(target.top, vscale);
994
995 sh_mobile_ceu_set_rect(icd, rect);
996
997resume_capture:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300998 /* Set CAMOR, CAPWR, CFSZR, take care of CDWDR */
999 if (pcdev->active)
1000 capsr |= 1;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001001 capture_restore(pcdev, capsr);
1002
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001003 /* Even if only camera cropping succeeded */
1004 return ret;
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001005}
1006
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001007/* Similar to set_crop multistage iterative algorithm */
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001008static int sh_mobile_ceu_set_fmt(struct soc_camera_device *icd,
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001009 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001010{
Magnus Damm9414de32008-12-18 11:49:06 -03001011 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001012 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001013 struct sh_mobile_ceu_cam *cam = icd->host_priv;
1014 struct v4l2_pix_format *pix = &f->fmt.pix;
1015 __u32 pixfmt = pix->pixelformat;
Magnus Damm9414de32008-12-18 11:49:06 -03001016 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001017 unsigned int width = pix->width, height = pix->height, tmp_w, tmp_h;
1018 u16 vscale, hscale;
1019 int ret, is_interlaced;
1020
1021 switch (pix->field) {
1022 case V4L2_FIELD_INTERLACED:
1023 is_interlaced = 1;
1024 break;
1025 case V4L2_FIELD_ANY:
1026 default:
1027 pix->field = V4L2_FIELD_NONE;
1028 /* fall-through */
1029 case V4L2_FIELD_NONE:
1030 is_interlaced = 0;
1031 break;
1032 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001033
Magnus Damm9414de32008-12-18 11:49:06 -03001034 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1035 if (!xlate) {
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001036 dev_warn(ici->v4l2_dev.dev, "Format %x not found\n", pixfmt);
Magnus Damm9414de32008-12-18 11:49:06 -03001037 return -EINVAL;
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001038 }
1039
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001040 pix->pixelformat = xlate->cam_fmt->fourcc;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001041 ret = v4l2_device_call_until_err(&ici->v4l2_dev, (__u32)icd, video, s_fmt, f);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001042 pix->pixelformat = pixfmt;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001043 dev_dbg(&icd->dev, "Camera %d fmt %ux%u, requested %ux%u, max %ux%u\n",
1044 ret, pix->width, pix->height, width, height,
1045 icd->rect_max.width, icd->rect_max.height);
1046 if (ret < 0)
1047 return ret;
1048
1049 switch (pixfmt) {
1050 case V4L2_PIX_FMT_NV12:
1051 case V4L2_PIX_FMT_NV21:
1052 case V4L2_PIX_FMT_NV16:
1053 case V4L2_PIX_FMT_NV61:
1054 pcdev->image_mode = 1;
1055 break;
1056 default:
1057 pcdev->image_mode = 0;
Magnus Damm9414de32008-12-18 11:49:06 -03001058 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001059
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001060 if ((abs(width - pix->width) < 4 && abs(height - pix->height) < 4) ||
1061 !pcdev->image_mode || is_interlaced) {
1062 hscale = 0;
1063 vscale = 0;
1064 goto out;
1065 }
1066
1067 /* Camera set a format, but geometry is not precise, try to improve */
1068 /*
1069 * FIXME: when soc-camera is converted to implement traditional S_FMT
1070 * and S_CROP semantics, replace CEU limits with camera maxima
1071 */
1072 tmp_w = pix->width;
1073 tmp_h = pix->height;
1074 while ((width > tmp_w || height > tmp_h) &&
1075 tmp_w < 2560 && tmp_h < 1920) {
1076 tmp_w = min(2 * tmp_w, (__u32)2560);
1077 tmp_h = min(2 * tmp_h, (__u32)1920);
1078 pix->width = tmp_w;
1079 pix->height = tmp_h;
1080 pix->pixelformat = xlate->cam_fmt->fourcc;
1081 ret = v4l2_device_call_until_err(&ici->v4l2_dev, (__u32)icd,
1082 video, s_fmt, f);
1083 pix->pixelformat = pixfmt;
1084 dev_dbg(&icd->dev, "Camera scaled to %ux%u\n",
1085 pix->width, pix->height);
1086 if (ret < 0) {
1087 /* This shouldn't happen */
1088 dev_err(&icd->dev, "Client failed to set format: %d\n",
1089 ret);
1090 return ret;
1091 }
1092 }
1093
1094 /* We cannot scale up */
1095 if (width > pix->width)
1096 width = pix->width;
1097
1098 if (height > pix->height)
1099 height = pix->height;
1100
1101 /* Let's rock: scale pix->{width x height} down to width x height */
1102 hscale = calc_scale(pix->width, &width);
1103 vscale = calc_scale(pix->height, &height);
1104
1105 dev_dbg(&icd->dev, "W: %u : 0x%x = %u, H: %u : 0x%x = %u\n",
1106 pix->width, hscale, width, pix->height, vscale, height);
1107
1108out:
1109 pcdev->cflcr = hscale | (vscale << 16);
1110
1111 icd->buswidth = xlate->buswidth;
1112 icd->current_fmt = xlate->host_fmt;
1113 cam->camera_fmt = xlate->cam_fmt;
1114 cam->camera_rect.width = pix->width;
1115 cam->camera_rect.height = pix->height;
1116
1117 icd->rect_max.left = size_dst(cam->camera_max.left, hscale);
1118 icd->rect_max.width = size_dst(cam->camera_max.width, hscale);
1119 icd->rect_max.top = size_dst(cam->camera_max.top, vscale);
1120 icd->rect_max.height = size_dst(cam->camera_max.height, vscale);
1121
1122 icd->rect_current.left = icd->rect_max.left;
1123 icd->rect_current.top = icd->rect_max.top;
1124
1125 pcdev->is_interlaced = is_interlaced;
1126
1127 pix->width = width;
1128 pix->height = height;
1129
1130 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001131}
1132
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001133static int sh_mobile_ceu_try_fmt(struct soc_camera_device *icd,
1134 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001135{
Magnus Damm9414de32008-12-18 11:49:06 -03001136 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1137 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001138 struct v4l2_pix_format *pix = &f->fmt.pix;
1139 __u32 pixfmt = pix->pixelformat;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001140 int width, height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001141 int ret;
Guennadi Liakhovetskia2c8c682008-12-01 09:44:53 -03001142
Magnus Damm9414de32008-12-18 11:49:06 -03001143 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1144 if (!xlate) {
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001145 dev_warn(ici->v4l2_dev.dev, "Format %x not found\n", pixfmt);
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001146 return -EINVAL;
Magnus Damm9414de32008-12-18 11:49:06 -03001147 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001148
Magnus Damm0d3244d2008-07-16 22:59:28 -03001149 /* FIXME: calculate using depth and bus width */
1150
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001151 v4l_bound_align_image(&pix->width, 2, 2560, 1,
1152 &pix->height, 4, 1920, 2, 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001153
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001154 width = pix->width;
1155 height = pix->height;
1156
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001157 pix->bytesperline = pix->width *
Magnus Damm9414de32008-12-18 11:49:06 -03001158 DIV_ROUND_UP(xlate->host_fmt->depth, 8);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001159 pix->sizeimage = pix->height * pix->bytesperline;
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001160
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001161 pix->pixelformat = xlate->cam_fmt->fourcc;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001162
Magnus Damm0d3244d2008-07-16 22:59:28 -03001163 /* limit to sensor capabilities */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001164 ret = v4l2_device_call_until_err(&ici->v4l2_dev, (__u32)icd, video,
1165 try_fmt, f);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001166 pix->pixelformat = pixfmt;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001167 if (ret < 0)
1168 return ret;
1169
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001170 switch (pixfmt) {
1171 case V4L2_PIX_FMT_NV12:
1172 case V4L2_PIX_FMT_NV21:
1173 case V4L2_PIX_FMT_NV16:
1174 case V4L2_PIX_FMT_NV61:
1175 /* FIXME: check against rect_max after converting soc-camera */
1176 /* We can scale precisely, need a bigger image from camera */
1177 if (pix->width < width || pix->height < height) {
1178 int tmp_w = pix->width, tmp_h = pix->height;
1179 pix->width = 2560;
1180 pix->height = 1920;
1181 ret = v4l2_device_call_until_err(&ici->v4l2_dev,
1182 (__u32)icd, video,
1183 try_fmt, f);
1184 if (ret < 0) {
1185 /* Shouldn't actually happen... */
1186 dev_err(&icd->dev,
1187 "FIXME: try_fmt() returned %d\n", ret);
1188 pix->width = tmp_w;
1189 pix->height = tmp_h;
1190 }
1191 }
1192 if (pix->width > width)
1193 pix->width = width;
1194 if (pix->height > height)
1195 pix->height = height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001196 }
1197
1198 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001199}
1200
1201static int sh_mobile_ceu_reqbufs(struct soc_camera_file *icf,
1202 struct v4l2_requestbuffers *p)
1203{
1204 int i;
1205
1206 /* This is for locking debugging only. I removed spinlocks and now I
1207 * check whether .prepare is ever called on a linked buffer, or whether
1208 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
1209 * it hadn't triggered */
1210 for (i = 0; i < p->count; i++) {
1211 struct sh_mobile_ceu_buffer *buf;
1212
1213 buf = container_of(icf->vb_vidq.bufs[i],
1214 struct sh_mobile_ceu_buffer, vb);
1215 INIT_LIST_HEAD(&buf->vb.queue);
1216 }
1217
1218 return 0;
1219}
1220
1221static unsigned int sh_mobile_ceu_poll(struct file *file, poll_table *pt)
1222{
1223 struct soc_camera_file *icf = file->private_data;
1224 struct sh_mobile_ceu_buffer *buf;
1225
1226 buf = list_entry(icf->vb_vidq.stream.next,
1227 struct sh_mobile_ceu_buffer, vb.stream);
1228
1229 poll_wait(file, &buf->vb.done, pt);
1230
1231 if (buf->vb.state == VIDEOBUF_DONE ||
1232 buf->vb.state == VIDEOBUF_ERROR)
1233 return POLLIN|POLLRDNORM;
1234
1235 return 0;
1236}
1237
1238static int sh_mobile_ceu_querycap(struct soc_camera_host *ici,
1239 struct v4l2_capability *cap)
1240{
1241 strlcpy(cap->card, "SuperH_Mobile_CEU", sizeof(cap->card));
1242 cap->version = KERNEL_VERSION(0, 0, 5);
1243 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1244 return 0;
1245}
1246
1247static void sh_mobile_ceu_init_videobuf(struct videobuf_queue *q,
1248 struct soc_camera_device *icd)
1249{
1250 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1251 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1252
1253 videobuf_queue_dma_contig_init(q,
1254 &sh_mobile_ceu_videobuf_ops,
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001255 ici->v4l2_dev.dev, &pcdev->lock,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001256 V4L2_BUF_TYPE_VIDEO_CAPTURE,
Guennadi Liakhovetskie8029672009-03-13 06:08:20 -03001257 pcdev->is_interlaced ?
1258 V4L2_FIELD_INTERLACED : V4L2_FIELD_NONE,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001259 sizeof(struct sh_mobile_ceu_buffer),
1260 icd);
1261}
1262
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001263static int sh_mobile_ceu_get_ctrl(struct soc_camera_device *icd,
1264 struct v4l2_control *ctrl)
1265{
1266 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1267 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1268 u32 val;
1269
1270 switch (ctrl->id) {
1271 case V4L2_CID_SHARPNESS:
1272 val = ceu_read(pcdev, CLFCR);
1273 ctrl->value = val ^ 1;
1274 return 0;
1275 }
1276 return -ENOIOCTLCMD;
1277}
1278
1279static int sh_mobile_ceu_set_ctrl(struct soc_camera_device *icd,
1280 struct v4l2_control *ctrl)
1281{
1282 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
1283 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1284
1285 switch (ctrl->id) {
1286 case V4L2_CID_SHARPNESS:
1287 switch (icd->current_fmt->fourcc) {
1288 case V4L2_PIX_FMT_NV12:
1289 case V4L2_PIX_FMT_NV21:
1290 case V4L2_PIX_FMT_NV16:
1291 case V4L2_PIX_FMT_NV61:
1292 ceu_write(pcdev, CLFCR, !ctrl->value);
1293 return 0;
1294 }
1295 return -EINVAL;
1296 }
1297 return -ENOIOCTLCMD;
1298}
1299
1300static const struct v4l2_queryctrl sh_mobile_ceu_controls[] = {
1301 {
1302 .id = V4L2_CID_SHARPNESS,
1303 .type = V4L2_CTRL_TYPE_BOOLEAN,
1304 .name = "Low-pass filter",
1305 .minimum = 0,
1306 .maximum = 1,
1307 .step = 1,
1308 .default_value = 0,
1309 },
1310};
1311
Magnus Damm0d3244d2008-07-16 22:59:28 -03001312static struct soc_camera_host_ops sh_mobile_ceu_host_ops = {
1313 .owner = THIS_MODULE,
1314 .add = sh_mobile_ceu_add_device,
1315 .remove = sh_mobile_ceu_remove_device,
Magnus Damm9414de32008-12-18 11:49:06 -03001316 .get_formats = sh_mobile_ceu_get_formats,
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001317 .put_formats = sh_mobile_ceu_put_formats,
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001318 .set_crop = sh_mobile_ceu_set_crop,
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001319 .set_fmt = sh_mobile_ceu_set_fmt,
1320 .try_fmt = sh_mobile_ceu_try_fmt,
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001321 .set_ctrl = sh_mobile_ceu_set_ctrl,
1322 .get_ctrl = sh_mobile_ceu_get_ctrl,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001323 .reqbufs = sh_mobile_ceu_reqbufs,
1324 .poll = sh_mobile_ceu_poll,
1325 .querycap = sh_mobile_ceu_querycap,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001326 .set_bus_param = sh_mobile_ceu_set_bus_param,
1327 .init_videobuf = sh_mobile_ceu_init_videobuf,
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001328 .controls = sh_mobile_ceu_controls,
1329 .num_controls = ARRAY_SIZE(sh_mobile_ceu_controls),
Magnus Damm0d3244d2008-07-16 22:59:28 -03001330};
1331
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001332static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001333{
1334 struct sh_mobile_ceu_dev *pcdev;
1335 struct resource *res;
1336 void __iomem *base;
1337 unsigned int irq;
1338 int err = 0;
1339
1340 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1341 irq = platform_get_irq(pdev, 0);
1342 if (!res || !irq) {
1343 dev_err(&pdev->dev, "Not enough CEU platform resources.\n");
1344 err = -ENODEV;
1345 goto exit;
1346 }
1347
1348 pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
1349 if (!pcdev) {
1350 dev_err(&pdev->dev, "Could not allocate pcdev\n");
1351 err = -ENOMEM;
1352 goto exit;
1353 }
1354
Magnus Damm0d3244d2008-07-16 22:59:28 -03001355 INIT_LIST_HEAD(&pcdev->capture);
1356 spin_lock_init(&pcdev->lock);
1357
1358 pcdev->pdata = pdev->dev.platform_data;
1359 if (!pcdev->pdata) {
1360 err = -EINVAL;
1361 dev_err(&pdev->dev, "CEU platform data not set.\n");
1362 goto exit_kfree;
1363 }
1364
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03001365 base = ioremap_nocache(res->start, resource_size(res));
Magnus Damm0d3244d2008-07-16 22:59:28 -03001366 if (!base) {
1367 err = -ENXIO;
1368 dev_err(&pdev->dev, "Unable to ioremap CEU registers.\n");
1369 goto exit_kfree;
1370 }
1371
1372 pcdev->irq = irq;
1373 pcdev->base = base;
1374 pcdev->video_limit = 0; /* only enabled if second resource exists */
Magnus Damm0d3244d2008-07-16 22:59:28 -03001375
1376 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1377 if (res) {
1378 err = dma_declare_coherent_memory(&pdev->dev, res->start,
1379 res->start,
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03001380 resource_size(res),
Magnus Damm0d3244d2008-07-16 22:59:28 -03001381 DMA_MEMORY_MAP |
1382 DMA_MEMORY_EXCLUSIVE);
1383 if (!err) {
1384 dev_err(&pdev->dev, "Unable to declare CEU memory.\n");
1385 err = -ENXIO;
1386 goto exit_iounmap;
1387 }
1388
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03001389 pcdev->video_limit = resource_size(res);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001390 }
1391
1392 /* request irq */
1393 err = request_irq(pcdev->irq, sh_mobile_ceu_irq, IRQF_DISABLED,
Kay Sieversaf128a12008-10-30 00:51:46 -03001394 dev_name(&pdev->dev), pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001395 if (err) {
1396 dev_err(&pdev->dev, "Unable to register CEU interrupt.\n");
1397 goto exit_release_mem;
1398 }
1399
Magnus Damm6d1386c2009-08-14 10:49:17 +00001400 pm_suspend_ignore_children(&pdev->dev, true);
1401 pm_runtime_enable(&pdev->dev);
1402 pm_runtime_resume(&pdev->dev);
Magnus Damma42b6dd2008-10-31 20:21:44 +09001403
Magnus Damm0d3244d2008-07-16 22:59:28 -03001404 pcdev->ici.priv = pcdev;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001405 pcdev->ici.v4l2_dev.dev = &pdev->dev;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001406 pcdev->ici.nr = pdev->id;
Kay Sieversaf128a12008-10-30 00:51:46 -03001407 pcdev->ici.drv_name = dev_name(&pdev->dev);
1408 pcdev->ici.ops = &sh_mobile_ceu_host_ops;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001409
1410 err = soc_camera_host_register(&pcdev->ici);
1411 if (err)
Magnus Damm6d1386c2009-08-14 10:49:17 +00001412 goto exit_free_irq;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001413
1414 return 0;
1415
1416exit_free_irq:
1417 free_irq(pcdev->irq, pcdev);
1418exit_release_mem:
1419 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
1420 dma_release_declared_memory(&pdev->dev);
1421exit_iounmap:
1422 iounmap(base);
1423exit_kfree:
1424 kfree(pcdev);
1425exit:
1426 return err;
1427}
1428
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001429static int __devexit sh_mobile_ceu_remove(struct platform_device *pdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001430{
Guennadi Liakhovetskieff505f2009-04-24 12:55:48 -03001431 struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
1432 struct sh_mobile_ceu_dev *pcdev = container_of(soc_host,
1433 struct sh_mobile_ceu_dev, ici);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001434
Guennadi Liakhovetskieff505f2009-04-24 12:55:48 -03001435 soc_camera_host_unregister(soc_host);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001436 free_irq(pcdev->irq, pcdev);
1437 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
1438 dma_release_declared_memory(&pdev->dev);
1439 iounmap(pcdev->base);
1440 kfree(pcdev);
1441 return 0;
1442}
1443
Magnus Damm6d1386c2009-08-14 10:49:17 +00001444static int sh_mobile_ceu_runtime_nop(struct device *dev)
1445{
1446 /* Runtime PM callback shared between ->runtime_suspend()
1447 * and ->runtime_resume(). Simply returns success.
1448 *
1449 * This driver re-initializes all registers after
1450 * pm_runtime_get_sync() anyway so there is no need
1451 * to save and restore registers here.
1452 */
1453 return 0;
1454}
1455
1456static struct dev_pm_ops sh_mobile_ceu_dev_pm_ops = {
1457 .runtime_suspend = sh_mobile_ceu_runtime_nop,
1458 .runtime_resume = sh_mobile_ceu_runtime_nop,
1459};
1460
Magnus Damm0d3244d2008-07-16 22:59:28 -03001461static struct platform_driver sh_mobile_ceu_driver = {
1462 .driver = {
1463 .name = "sh_mobile_ceu",
Magnus Damm6d1386c2009-08-14 10:49:17 +00001464 .pm = &sh_mobile_ceu_dev_pm_ops,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001465 },
1466 .probe = sh_mobile_ceu_probe,
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001467 .remove = __exit_p(sh_mobile_ceu_remove),
Magnus Damm0d3244d2008-07-16 22:59:28 -03001468};
1469
1470static int __init sh_mobile_ceu_init(void)
1471{
1472 return platform_driver_register(&sh_mobile_ceu_driver);
1473}
1474
1475static void __exit sh_mobile_ceu_exit(void)
1476{
Paul Mundt01c1e4c2008-08-01 19:48:51 -03001477 platform_driver_unregister(&sh_mobile_ceu_driver);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001478}
1479
1480module_init(sh_mobile_ceu_init);
1481module_exit(sh_mobile_ceu_exit);
1482
1483MODULE_DESCRIPTION("SuperH Mobile CEU driver");
1484MODULE_AUTHOR("Magnus Damm");
1485MODULE_LICENSE("GPL");
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001486MODULE_ALIAS("platform:sh_mobile_ceu");