blob: 6750c49f4c04213bc823af466d1117ca91b456df [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 Damma42b6dd2008-10-31 20:21:44 +090033#include <linux/clk.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 {
84 struct device *dev;
85 struct soc_camera_host ici;
86 struct soc_camera_device *icd;
87
88 unsigned int irq;
89 void __iomem *base;
Magnus Damma42b6dd2008-10-31 20:21:44 +090090 struct clk *clk;
Magnus Damm0d3244d2008-07-16 22:59:28 -030091 unsigned long video_limit;
92
Guennadi Liakhovetskic60f2b52008-07-17 17:30:47 -030093 /* lock used to protect videobuf */
Magnus Damm0d3244d2008-07-16 22:59:28 -030094 spinlock_t lock;
95 struct list_head capture;
96 struct videobuf_buffer *active;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -030097 int is_interlace;
Magnus Damm0d3244d2008-07-16 22:59:28 -030098
99 struct sh_mobile_ceu_info *pdata;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300100
101 const struct soc_camera_data_format *camera_fmt;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300102};
103
104static void ceu_write(struct sh_mobile_ceu_dev *priv,
Magnus Damm7a1a8162008-12-18 12:50:30 -0300105 unsigned long reg_offs, u32 data)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300106{
107 iowrite32(data, priv->base + reg_offs);
108}
109
Magnus Damm7a1a8162008-12-18 12:50:30 -0300110static u32 ceu_read(struct sh_mobile_ceu_dev *priv, unsigned long reg_offs)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300111{
112 return ioread32(priv->base + reg_offs);
113}
114
115/*
116 * Videobuf operations
117 */
118static int sh_mobile_ceu_videobuf_setup(struct videobuf_queue *vq,
119 unsigned int *count,
120 unsigned int *size)
121{
122 struct soc_camera_device *icd = vq->priv_data;
123 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
124 struct sh_mobile_ceu_dev *pcdev = ici->priv;
125 int bytes_per_pixel = (icd->current_fmt->depth + 7) >> 3;
126
127 *size = PAGE_ALIGN(icd->width * icd->height * bytes_per_pixel);
128
129 if (0 == *count)
130 *count = 2;
131
132 if (pcdev->video_limit) {
133 while (*size * *count > pcdev->video_limit)
134 (*count)--;
135 }
136
137 dev_dbg(&icd->dev, "count=%d, size=%d\n", *count, *size);
138
139 return 0;
140}
141
142static void free_buffer(struct videobuf_queue *vq,
143 struct sh_mobile_ceu_buffer *buf)
144{
145 struct soc_camera_device *icd = vq->priv_data;
146
Hans Verkuil86751b02008-07-18 01:35:14 -0300147 dev_dbg(&icd->dev, "%s (vb=0x%p) 0x%08lx %zd\n", __func__,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300148 &buf->vb, buf->vb.baddr, buf->vb.bsize);
149
150 if (in_interrupt())
151 BUG();
152
153 videobuf_dma_contig_free(vq, &buf->vb);
154 dev_dbg(&icd->dev, "%s freed\n", __func__);
155 buf->vb.state = VIDEOBUF_NEEDS_INIT;
156}
157
Magnus Damm7a1a8162008-12-18 12:50:30 -0300158#define CEU_CETCR_MAGIC 0x0317f313 /* acknowledge magical interrupt sources */
159#define CEU_CETCR_IGRW (1 << 4) /* prohibited register access interrupt bit */
160#define CEU_CEIER_CPEIE (1 << 0) /* one-frame capture end interrupt */
161#define CEU_CAPCR_CTNCP (1 << 16) /* continuous capture mode (if set) */
162
163
Magnus Damm0d3244d2008-07-16 22:59:28 -0300164static void sh_mobile_ceu_capture(struct sh_mobile_ceu_dev *pcdev)
165{
Magnus Damm8be65dc2008-12-18 12:38:06 -0300166 struct soc_camera_device *icd = pcdev->icd;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300167 dma_addr_t phys_addr_top, phys_addr_bottom;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300168
Magnus Damm7a1a8162008-12-18 12:50:30 -0300169 /* The hardware is _very_ picky about this sequence. Especially
170 * the CEU_CETCR_MAGIC value. It seems like we need to acknowledge
171 * several not-so-well documented interrupt sources in CETCR.
172 */
173 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) & ~CEU_CEIER_CPEIE);
174 ceu_write(pcdev, CETCR, ~ceu_read(pcdev, CETCR) & CEU_CETCR_MAGIC);
175 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) | CEU_CEIER_CPEIE);
176 ceu_write(pcdev, CAPCR, ceu_read(pcdev, CAPCR) & ~CEU_CAPCR_CTNCP);
177 ceu_write(pcdev, CETCR, CEU_CETCR_MAGIC ^ CEU_CETCR_IGRW);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300178
Magnus Damm8be65dc2008-12-18 12:38:06 -0300179 if (!pcdev->active)
180 return;
181
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300182 phys_addr_top = videobuf_to_dma_contig(pcdev->active);
183 ceu_write(pcdev, CDAYR, phys_addr_top);
184 if (pcdev->is_interlace) {
185 phys_addr_bottom = phys_addr_top + icd->width;
186 ceu_write(pcdev, CDBYR, phys_addr_bottom);
187 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300188
189 switch (icd->current_fmt->fourcc) {
190 case V4L2_PIX_FMT_NV12:
191 case V4L2_PIX_FMT_NV21:
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300192 case V4L2_PIX_FMT_NV16:
193 case V4L2_PIX_FMT_NV61:
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300194 phys_addr_top += icd->width * icd->height;
195 ceu_write(pcdev, CDACR, phys_addr_top);
196 if (pcdev->is_interlace) {
197 phys_addr_bottom = phys_addr_top + icd->width;
198 ceu_write(pcdev, CDBCR, phys_addr_bottom);
199 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300200 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300201
202 pcdev->active->state = VIDEOBUF_ACTIVE;
203 ceu_write(pcdev, CAPSR, 0x1); /* start capture */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300204}
205
206static int sh_mobile_ceu_videobuf_prepare(struct videobuf_queue *vq,
207 struct videobuf_buffer *vb,
208 enum v4l2_field field)
209{
210 struct soc_camera_device *icd = vq->priv_data;
211 struct sh_mobile_ceu_buffer *buf;
212 int ret;
213
214 buf = container_of(vb, struct sh_mobile_ceu_buffer, vb);
215
Hans Verkuil86751b02008-07-18 01:35:14 -0300216 dev_dbg(&icd->dev, "%s (vb=0x%p) 0x%08lx %zd\n", __func__,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300217 vb, vb->baddr, vb->bsize);
218
219 /* Added list head initialization on alloc */
220 WARN_ON(!list_empty(&vb->queue));
221
222#ifdef DEBUG
223 /* This can be useful if you want to see if we actually fill
224 * the buffer with something */
225 memset((void *)vb->baddr, 0xaa, vb->bsize);
226#endif
227
228 BUG_ON(NULL == icd->current_fmt);
229
230 if (buf->fmt != icd->current_fmt ||
231 vb->width != icd->width ||
232 vb->height != icd->height ||
233 vb->field != field) {
234 buf->fmt = icd->current_fmt;
235 vb->width = icd->width;
236 vb->height = icd->height;
237 vb->field = field;
238 vb->state = VIDEOBUF_NEEDS_INIT;
239 }
240
241 vb->size = vb->width * vb->height * ((buf->fmt->depth + 7) >> 3);
242 if (0 != vb->baddr && vb->bsize < vb->size) {
243 ret = -EINVAL;
244 goto out;
245 }
246
247 if (vb->state == VIDEOBUF_NEEDS_INIT) {
248 ret = videobuf_iolock(vq, vb, NULL);
249 if (ret)
250 goto fail;
251 vb->state = VIDEOBUF_PREPARED;
252 }
253
254 return 0;
255fail:
256 free_buffer(vq, buf);
257out:
258 return ret;
259}
260
261static void sh_mobile_ceu_videobuf_queue(struct videobuf_queue *vq,
262 struct videobuf_buffer *vb)
263{
264 struct soc_camera_device *icd = vq->priv_data;
265 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
266 struct sh_mobile_ceu_dev *pcdev = ici->priv;
267 unsigned long flags;
268
Hans Verkuil86751b02008-07-18 01:35:14 -0300269 dev_dbg(&icd->dev, "%s (vb=0x%p) 0x%08lx %zd\n", __func__,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300270 vb, vb->baddr, vb->bsize);
271
Magnus Damm51354cc2008-10-16 19:51:20 -0300272 vb->state = VIDEOBUF_QUEUED;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300273 spin_lock_irqsave(&pcdev->lock, flags);
274 list_add_tail(&vb->queue, &pcdev->capture);
275
276 if (!pcdev->active) {
277 pcdev->active = vb;
278 sh_mobile_ceu_capture(pcdev);
279 }
280
281 spin_unlock_irqrestore(&pcdev->lock, flags);
282}
283
284static void sh_mobile_ceu_videobuf_release(struct videobuf_queue *vq,
285 struct videobuf_buffer *vb)
286{
287 free_buffer(vq, container_of(vb, struct sh_mobile_ceu_buffer, vb));
288}
289
290static struct videobuf_queue_ops sh_mobile_ceu_videobuf_ops = {
291 .buf_setup = sh_mobile_ceu_videobuf_setup,
292 .buf_prepare = sh_mobile_ceu_videobuf_prepare,
293 .buf_queue = sh_mobile_ceu_videobuf_queue,
294 .buf_release = sh_mobile_ceu_videobuf_release,
295};
296
297static irqreturn_t sh_mobile_ceu_irq(int irq, void *data)
298{
299 struct sh_mobile_ceu_dev *pcdev = data;
300 struct videobuf_buffer *vb;
301 unsigned long flags;
302
303 spin_lock_irqsave(&pcdev->lock, flags);
304
305 vb = pcdev->active;
306 list_del_init(&vb->queue);
307
308 if (!list_empty(&pcdev->capture))
309 pcdev->active = list_entry(pcdev->capture.next,
310 struct videobuf_buffer, queue);
311 else
312 pcdev->active = NULL;
313
314 sh_mobile_ceu_capture(pcdev);
315
316 vb->state = VIDEOBUF_DONE;
317 do_gettimeofday(&vb->ts);
318 vb->field_count++;
319 wake_up(&vb->done);
320 spin_unlock_irqrestore(&pcdev->lock, flags);
321
322 return IRQ_HANDLED;
323}
324
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300325/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300326static int sh_mobile_ceu_add_device(struct soc_camera_device *icd)
327{
328 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
329 struct sh_mobile_ceu_dev *pcdev = ici->priv;
330 int ret = -EBUSY;
331
Magnus Damm0d3244d2008-07-16 22:59:28 -0300332 if (pcdev->icd)
333 goto err;
334
335 dev_info(&icd->dev,
336 "SuperH Mobile CEU driver attached to camera %d\n",
337 icd->devnum);
338
Magnus Damm0d3244d2008-07-16 22:59:28 -0300339 ret = icd->ops->init(icd);
340 if (ret)
341 goto err;
342
Magnus Damma42b6dd2008-10-31 20:21:44 +0900343 clk_enable(pcdev->clk);
344
Magnus Damm0d3244d2008-07-16 22:59:28 -0300345 ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
346 while (ceu_read(pcdev, CSTSR) & 1)
347 msleep(1);
348
349 pcdev->icd = icd;
350err:
Magnus Damm0d3244d2008-07-16 22:59:28 -0300351 return ret;
352}
353
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300354/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300355static void sh_mobile_ceu_remove_device(struct soc_camera_device *icd)
356{
357 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
358 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm51354cc2008-10-16 19:51:20 -0300359 unsigned long flags;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300360
361 BUG_ON(icd != pcdev->icd);
362
363 /* disable capture, disable interrupts */
364 ceu_write(pcdev, CEIER, 0);
365 ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
Magnus Damm51354cc2008-10-16 19:51:20 -0300366
367 /* make sure active buffer is canceled */
368 spin_lock_irqsave(&pcdev->lock, flags);
369 if (pcdev->active) {
370 list_del(&pcdev->active->queue);
371 pcdev->active->state = VIDEOBUF_ERROR;
372 wake_up_all(&pcdev->active->done);
373 pcdev->active = NULL;
374 }
375 spin_unlock_irqrestore(&pcdev->lock, flags);
376
Magnus Damma42b6dd2008-10-31 20:21:44 +0900377 clk_disable(pcdev->clk);
378
Magnus Damm0d3244d2008-07-16 22:59:28 -0300379 icd->ops->release(icd);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300380
381 dev_info(&icd->dev,
382 "SuperH Mobile CEU driver detached from camera %d\n",
383 icd->devnum);
384
385 pcdev->icd = NULL;
386}
387
388static int sh_mobile_ceu_set_bus_param(struct soc_camera_device *icd,
389 __u32 pixfmt)
390{
391 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
392 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300393 int ret, buswidth, width, height, cfszr_width, cdwdr_width;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300394 unsigned long camera_flags, common_flags, value;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300395 int yuv_mode, yuv_lineskip;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300396
397 camera_flags = icd->ops->query_bus_param(icd);
398 common_flags = soc_camera_bus_param_compatible(camera_flags,
399 pcdev->pdata->flags);
400 if (!common_flags)
401 return -EINVAL;
402
403 ret = icd->ops->set_bus_param(icd, common_flags);
404 if (ret < 0)
405 return ret;
406
407 switch (common_flags & SOCAM_DATAWIDTH_MASK) {
408 case SOCAM_DATAWIDTH_8:
409 buswidth = 8;
410 break;
411 case SOCAM_DATAWIDTH_16:
412 buswidth = 16;
413 break;
414 default:
415 return -EINVAL;
416 }
417
418 ceu_write(pcdev, CRCNTR, 0);
419 ceu_write(pcdev, CRCMPR, 0);
420
Magnus Damm8be65dc2008-12-18 12:38:06 -0300421 value = 0x00000010; /* data fetch by default */
422 yuv_mode = yuv_lineskip = 0;
423
424 switch (icd->current_fmt->fourcc) {
425 case V4L2_PIX_FMT_NV12:
426 case V4L2_PIX_FMT_NV21:
427 yuv_lineskip = 1; /* skip for NV12/21, no skip for NV16/61 */
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300428 /* fall-through */
429 case V4L2_PIX_FMT_NV16:
430 case V4L2_PIX_FMT_NV61:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300431 yuv_mode = 1;
432 switch (pcdev->camera_fmt->fourcc) {
433 case V4L2_PIX_FMT_UYVY:
434 value = 0x00000000; /* Cb0, Y0, Cr0, Y1 */
435 break;
436 case V4L2_PIX_FMT_VYUY:
437 value = 0x00000100; /* Cr0, Y0, Cb0, Y1 */
438 break;
439 case V4L2_PIX_FMT_YUYV:
440 value = 0x00000200; /* Y0, Cb0, Y1, Cr0 */
441 break;
442 case V4L2_PIX_FMT_YVYU:
443 value = 0x00000300; /* Y0, Cr0, Y1, Cb0 */
444 break;
445 default:
446 BUG();
447 }
448 }
449
Magnus Damm7a1a8162008-12-18 12:50:30 -0300450 if (icd->current_fmt->fourcc == V4L2_PIX_FMT_NV21 ||
451 icd->current_fmt->fourcc == V4L2_PIX_FMT_NV61)
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300452 value ^= 0x00000100; /* swap U, V to change from NV1x->NVx1 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300453
Magnus Damm7a1a8162008-12-18 12:50:30 -0300454 value |= common_flags & SOCAM_VSYNC_ACTIVE_LOW ? 1 << 1 : 0;
455 value |= common_flags & SOCAM_HSYNC_ACTIVE_LOW ? 1 << 0 : 0;
456 value |= buswidth == 16 ? 1 << 12 : 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300457 ceu_write(pcdev, CAMCR, value);
458
459 ceu_write(pcdev, CAPCR, 0x00300000);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300460 ceu_write(pcdev, CAIFR, (pcdev->is_interlace) ? 0x101 : 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300461
462 mdelay(1);
463
Magnus Damm8be65dc2008-12-18 12:38:06 -0300464 if (yuv_mode) {
465 width = icd->width * 2;
Magnus Damm7a1a8162008-12-18 12:50:30 -0300466 width = buswidth == 16 ? width / 2 : width;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300467 cfszr_width = cdwdr_width = icd->width;
468 } else {
469 width = icd->width * ((icd->current_fmt->depth + 7) >> 3);
Magnus Damm7a1a8162008-12-18 12:50:30 -0300470 width = buswidth == 16 ? width / 2 : width;
471 cfszr_width = buswidth == 8 ? width / 2 : width;
472 cdwdr_width = buswidth == 16 ? width * 2 : width;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300473 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300474
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300475 height = icd->height;
476 if (pcdev->is_interlace) {
477 height /= 2;
478 cdwdr_width *= 2;
479 }
480
Magnus Damm0d3244d2008-07-16 22:59:28 -0300481 ceu_write(pcdev, CAMOR, 0);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300482 ceu_write(pcdev, CAPWR, (height << 16) | width);
Magnus Damm8be65dc2008-12-18 12:38:06 -0300483 ceu_write(pcdev, CFLCR, 0); /* no scaling */
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300484 ceu_write(pcdev, CFSZR, (height << 16) | cfszr_width);
Magnus Damm8be65dc2008-12-18 12:38:06 -0300485 ceu_write(pcdev, CLFCR, 0); /* no lowpass filter */
Magnus Dammdd542032008-10-16 19:50:22 -0300486
487 /* A few words about byte order (observed in Big Endian mode)
488 *
489 * In data fetch mode bytes are received in chunks of 8 bytes.
490 * D0, D1, D2, D3, D4, D5, D6, D7 (D0 received first)
491 *
492 * The data is however by default written to memory in reverse order:
493 * D7, D6, D5, D4, D3, D2, D1, D0 (D7 written to lowest byte)
494 *
495 * The lowest three bits of CDOCR allows us to do swapping,
Magnus Damm2c0a0722008-10-16 19:50:56 -0300496 * using 7 we swap the data bytes to match the incoming order:
497 * D0, D1, D2, D3, D4, D5, D6, D7
Magnus Dammdd542032008-10-16 19:50:22 -0300498 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300499 value = 0x00000017;
500 if (yuv_lineskip)
501 value &= ~0x00000010; /* convert 4:2:2 -> 4:2:0 */
502
503 ceu_write(pcdev, CDOCR, value);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300504
505 ceu_write(pcdev, CDWDR, cdwdr_width);
506 ceu_write(pcdev, CFWCR, 0); /* keep "datafetch firewall" disabled */
507
508 /* not in bundle mode: skip CBDSR, CDAYR2, CDACR2, CDBYR2, CDBCR2 */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300509 return 0;
510}
511
Magnus Damm9414de32008-12-18 11:49:06 -0300512static int sh_mobile_ceu_try_bus_param(struct soc_camera_device *icd)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300513{
514 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
515 struct sh_mobile_ceu_dev *pcdev = ici->priv;
516 unsigned long camera_flags, common_flags;
517
518 camera_flags = icd->ops->query_bus_param(icd);
519 common_flags = soc_camera_bus_param_compatible(camera_flags,
520 pcdev->pdata->flags);
521 if (!common_flags)
522 return -EINVAL;
523
524 return 0;
525}
526
Magnus Damm8be65dc2008-12-18 12:38:06 -0300527static const struct soc_camera_data_format sh_mobile_ceu_formats[] = {
528 {
529 .name = "NV12",
530 .depth = 12,
531 .fourcc = V4L2_PIX_FMT_NV12,
532 .colorspace = V4L2_COLORSPACE_JPEG,
533 },
534 {
535 .name = "NV21",
536 .depth = 12,
537 .fourcc = V4L2_PIX_FMT_NV21,
538 .colorspace = V4L2_COLORSPACE_JPEG,
539 },
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300540 {
541 .name = "NV16",
542 .depth = 16,
543 .fourcc = V4L2_PIX_FMT_NV16,
544 .colorspace = V4L2_COLORSPACE_JPEG,
545 },
546 {
547 .name = "NV61",
548 .depth = 16,
549 .fourcc = V4L2_PIX_FMT_NV61,
550 .colorspace = V4L2_COLORSPACE_JPEG,
551 },
Magnus Damm8be65dc2008-12-18 12:38:06 -0300552};
553
Magnus Damm9414de32008-12-18 11:49:06 -0300554static int sh_mobile_ceu_get_formats(struct soc_camera_device *icd, int idx,
555 struct soc_camera_format_xlate *xlate)
556{
557 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
Magnus Damm8be65dc2008-12-18 12:38:06 -0300558 int ret, k, n;
Magnus Damm9414de32008-12-18 11:49:06 -0300559 int formats = 0;
560
561 ret = sh_mobile_ceu_try_bus_param(icd);
562 if (ret < 0)
563 return 0;
564
565 switch (icd->formats[idx].fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300566 case V4L2_PIX_FMT_UYVY:
567 case V4L2_PIX_FMT_VYUY:
568 case V4L2_PIX_FMT_YUYV:
569 case V4L2_PIX_FMT_YVYU:
570 n = ARRAY_SIZE(sh_mobile_ceu_formats);
571 formats += n;
572 for (k = 0; xlate && k < n; k++) {
573 xlate->host_fmt = &sh_mobile_ceu_formats[k];
574 xlate->cam_fmt = icd->formats + idx;
575 xlate->buswidth = icd->formats[idx].depth;
576 xlate++;
577 dev_dbg(&ici->dev, "Providing format %s using %s\n",
578 sh_mobile_ceu_formats[k].name,
579 icd->formats[idx].name);
580 }
Magnus Damm9414de32008-12-18 11:49:06 -0300581 default:
582 /* Generic pass-through */
583 formats++;
584 if (xlate) {
585 xlate->host_fmt = icd->formats + idx;
586 xlate->cam_fmt = icd->formats + idx;
587 xlate->buswidth = icd->formats[idx].depth;
588 xlate++;
589 dev_dbg(&ici->dev,
590 "Providing format %s in pass-through mode\n",
591 icd->formats[idx].name);
592 }
593 }
594
595 return formats;
596}
597
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -0300598static int sh_mobile_ceu_set_fmt(struct soc_camera_device *icd,
599 __u32 pixfmt, struct v4l2_rect *rect)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300600{
Magnus Damm9414de32008-12-18 11:49:06 -0300601 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
Magnus Damm8be65dc2008-12-18 12:38:06 -0300602 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm9414de32008-12-18 11:49:06 -0300603 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300604 int ret;
605
Magnus Damm9414de32008-12-18 11:49:06 -0300606 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
607 if (!xlate) {
608 dev_warn(&ici->dev, "Format %x not found\n", pixfmt);
609 return -EINVAL;
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300610 }
611
Magnus Damm9414de32008-12-18 11:49:06 -0300612 switch (pixfmt) {
613 case 0: /* Only geometry change */
614 ret = icd->ops->set_fmt(icd, pixfmt, rect);
615 break;
616 default:
617 ret = icd->ops->set_fmt(icd, xlate->cam_fmt->fourcc, rect);
618 }
619
620 if (pixfmt && !ret) {
621 icd->buswidth = xlate->buswidth;
622 icd->current_fmt = xlate->host_fmt;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300623 pcdev->camera_fmt = xlate->cam_fmt;
Magnus Damm9414de32008-12-18 11:49:06 -0300624 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300625
626 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300627}
628
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -0300629static int sh_mobile_ceu_try_fmt(struct soc_camera_device *icd,
630 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300631{
Magnus Damm9414de32008-12-18 11:49:06 -0300632 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300633 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm9414de32008-12-18 11:49:06 -0300634 const struct soc_camera_format_xlate *xlate;
635 __u32 pixfmt = f->fmt.pix.pixelformat;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300636 int ret;
Guennadi Liakhovetskia2c8c682008-12-01 09:44:53 -0300637
Magnus Damm9414de32008-12-18 11:49:06 -0300638 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
639 if (!xlate) {
640 dev_warn(&ici->dev, "Format %x not found\n", pixfmt);
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300641 return -EINVAL;
Magnus Damm9414de32008-12-18 11:49:06 -0300642 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300643
Magnus Damm0d3244d2008-07-16 22:59:28 -0300644 /* FIXME: calculate using depth and bus width */
645
646 if (f->fmt.pix.height < 4)
647 f->fmt.pix.height = 4;
648 if (f->fmt.pix.height > 1920)
649 f->fmt.pix.height = 1920;
650 if (f->fmt.pix.width < 2)
651 f->fmt.pix.width = 2;
652 if (f->fmt.pix.width > 2560)
653 f->fmt.pix.width = 2560;
654 f->fmt.pix.width &= ~0x01;
655 f->fmt.pix.height &= ~0x03;
656
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300657 f->fmt.pix.bytesperline = f->fmt.pix.width *
Magnus Damm9414de32008-12-18 11:49:06 -0300658 DIV_ROUND_UP(xlate->host_fmt->depth, 8);
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -0300659 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
660
Magnus Damm0d3244d2008-07-16 22:59:28 -0300661 /* limit to sensor capabilities */
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300662 ret = icd->ops->try_fmt(icd, f);
663 if (ret < 0)
664 return ret;
665
666 switch (f->fmt.pix.field) {
667 case V4L2_FIELD_INTERLACED:
668 pcdev->is_interlace = 1;
669 break;
670 case V4L2_FIELD_ANY:
671 f->fmt.pix.field = V4L2_FIELD_NONE;
672 /* fall-through */
673 case V4L2_FIELD_NONE:
674 pcdev->is_interlace = 0;
675 break;
676 default:
677 ret = -EINVAL;
678 break;
679 }
680
681 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300682}
683
684static int sh_mobile_ceu_reqbufs(struct soc_camera_file *icf,
685 struct v4l2_requestbuffers *p)
686{
687 int i;
688
689 /* This is for locking debugging only. I removed spinlocks and now I
690 * check whether .prepare is ever called on a linked buffer, or whether
691 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
692 * it hadn't triggered */
693 for (i = 0; i < p->count; i++) {
694 struct sh_mobile_ceu_buffer *buf;
695
696 buf = container_of(icf->vb_vidq.bufs[i],
697 struct sh_mobile_ceu_buffer, vb);
698 INIT_LIST_HEAD(&buf->vb.queue);
699 }
700
701 return 0;
702}
703
704static unsigned int sh_mobile_ceu_poll(struct file *file, poll_table *pt)
705{
706 struct soc_camera_file *icf = file->private_data;
707 struct sh_mobile_ceu_buffer *buf;
708
709 buf = list_entry(icf->vb_vidq.stream.next,
710 struct sh_mobile_ceu_buffer, vb.stream);
711
712 poll_wait(file, &buf->vb.done, pt);
713
714 if (buf->vb.state == VIDEOBUF_DONE ||
715 buf->vb.state == VIDEOBUF_ERROR)
716 return POLLIN|POLLRDNORM;
717
718 return 0;
719}
720
721static int sh_mobile_ceu_querycap(struct soc_camera_host *ici,
722 struct v4l2_capability *cap)
723{
724 strlcpy(cap->card, "SuperH_Mobile_CEU", sizeof(cap->card));
725 cap->version = KERNEL_VERSION(0, 0, 5);
726 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
727 return 0;
728}
729
730static void sh_mobile_ceu_init_videobuf(struct videobuf_queue *q,
731 struct soc_camera_device *icd)
732{
733 struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent);
734 struct sh_mobile_ceu_dev *pcdev = ici->priv;
735
736 videobuf_queue_dma_contig_init(q,
737 &sh_mobile_ceu_videobuf_ops,
738 &ici->dev, &pcdev->lock,
739 V4L2_BUF_TYPE_VIDEO_CAPTURE,
740 V4L2_FIELD_NONE,
741 sizeof(struct sh_mobile_ceu_buffer),
742 icd);
743}
744
745static struct soc_camera_host_ops sh_mobile_ceu_host_ops = {
746 .owner = THIS_MODULE,
747 .add = sh_mobile_ceu_add_device,
748 .remove = sh_mobile_ceu_remove_device,
Magnus Damm9414de32008-12-18 11:49:06 -0300749 .get_formats = sh_mobile_ceu_get_formats,
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -0300750 .set_fmt = sh_mobile_ceu_set_fmt,
751 .try_fmt = sh_mobile_ceu_try_fmt,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300752 .reqbufs = sh_mobile_ceu_reqbufs,
753 .poll = sh_mobile_ceu_poll,
754 .querycap = sh_mobile_ceu_querycap,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300755 .set_bus_param = sh_mobile_ceu_set_bus_param,
756 .init_videobuf = sh_mobile_ceu_init_videobuf,
757};
758
759static int sh_mobile_ceu_probe(struct platform_device *pdev)
760{
761 struct sh_mobile_ceu_dev *pcdev;
762 struct resource *res;
763 void __iomem *base;
Magnus Damma42b6dd2008-10-31 20:21:44 +0900764 char clk_name[8];
Magnus Damm0d3244d2008-07-16 22:59:28 -0300765 unsigned int irq;
766 int err = 0;
767
768 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
769 irq = platform_get_irq(pdev, 0);
770 if (!res || !irq) {
771 dev_err(&pdev->dev, "Not enough CEU platform resources.\n");
772 err = -ENODEV;
773 goto exit;
774 }
775
776 pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
777 if (!pcdev) {
778 dev_err(&pdev->dev, "Could not allocate pcdev\n");
779 err = -ENOMEM;
780 goto exit;
781 }
782
783 platform_set_drvdata(pdev, pcdev);
784 INIT_LIST_HEAD(&pcdev->capture);
785 spin_lock_init(&pcdev->lock);
786
787 pcdev->pdata = pdev->dev.platform_data;
788 if (!pcdev->pdata) {
789 err = -EINVAL;
790 dev_err(&pdev->dev, "CEU platform data not set.\n");
791 goto exit_kfree;
792 }
793
794 base = ioremap_nocache(res->start, res->end - res->start + 1);
795 if (!base) {
796 err = -ENXIO;
797 dev_err(&pdev->dev, "Unable to ioremap CEU registers.\n");
798 goto exit_kfree;
799 }
800
801 pcdev->irq = irq;
802 pcdev->base = base;
803 pcdev->video_limit = 0; /* only enabled if second resource exists */
804 pcdev->dev = &pdev->dev;
805
806 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
807 if (res) {
808 err = dma_declare_coherent_memory(&pdev->dev, res->start,
809 res->start,
810 (res->end - res->start) + 1,
811 DMA_MEMORY_MAP |
812 DMA_MEMORY_EXCLUSIVE);
813 if (!err) {
814 dev_err(&pdev->dev, "Unable to declare CEU memory.\n");
815 err = -ENXIO;
816 goto exit_iounmap;
817 }
818
819 pcdev->video_limit = (res->end - res->start) + 1;
820 }
821
822 /* request irq */
823 err = request_irq(pcdev->irq, sh_mobile_ceu_irq, IRQF_DISABLED,
Kay Sieversaf128a12008-10-30 00:51:46 -0300824 dev_name(&pdev->dev), pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300825 if (err) {
826 dev_err(&pdev->dev, "Unable to register CEU interrupt.\n");
827 goto exit_release_mem;
828 }
829
Magnus Damma42b6dd2008-10-31 20:21:44 +0900830 snprintf(clk_name, sizeof(clk_name), "ceu%d", pdev->id);
831 pcdev->clk = clk_get(&pdev->dev, clk_name);
832 if (IS_ERR(pcdev->clk)) {
833 dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
834 err = PTR_ERR(pcdev->clk);
835 goto exit_free_irq;
836 }
837
Magnus Damm0d3244d2008-07-16 22:59:28 -0300838 pcdev->ici.priv = pcdev;
839 pcdev->ici.dev.parent = &pdev->dev;
840 pcdev->ici.nr = pdev->id;
Kay Sieversaf128a12008-10-30 00:51:46 -0300841 pcdev->ici.drv_name = dev_name(&pdev->dev);
842 pcdev->ici.ops = &sh_mobile_ceu_host_ops;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300843
844 err = soc_camera_host_register(&pcdev->ici);
845 if (err)
Magnus Damma42b6dd2008-10-31 20:21:44 +0900846 goto exit_free_clk;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300847
848 return 0;
849
Magnus Damma42b6dd2008-10-31 20:21:44 +0900850exit_free_clk:
851 clk_put(pcdev->clk);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300852exit_free_irq:
853 free_irq(pcdev->irq, pcdev);
854exit_release_mem:
855 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
856 dma_release_declared_memory(&pdev->dev);
857exit_iounmap:
858 iounmap(base);
859exit_kfree:
860 kfree(pcdev);
861exit:
862 return err;
863}
864
865static int sh_mobile_ceu_remove(struct platform_device *pdev)
866{
867 struct sh_mobile_ceu_dev *pcdev = platform_get_drvdata(pdev);
868
869 soc_camera_host_unregister(&pcdev->ici);
Magnus Damma42b6dd2008-10-31 20:21:44 +0900870 clk_put(pcdev->clk);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300871 free_irq(pcdev->irq, pcdev);
872 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
873 dma_release_declared_memory(&pdev->dev);
874 iounmap(pcdev->base);
875 kfree(pcdev);
876 return 0;
877}
878
879static struct platform_driver sh_mobile_ceu_driver = {
880 .driver = {
881 .name = "sh_mobile_ceu",
882 },
883 .probe = sh_mobile_ceu_probe,
884 .remove = sh_mobile_ceu_remove,
885};
886
887static int __init sh_mobile_ceu_init(void)
888{
889 return platform_driver_register(&sh_mobile_ceu_driver);
890}
891
892static void __exit sh_mobile_ceu_exit(void)
893{
Paul Mundt01c1e4c2008-08-01 19:48:51 -0300894 platform_driver_unregister(&sh_mobile_ceu_driver);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300895}
896
897module_init(sh_mobile_ceu_init);
898module_exit(sh_mobile_ceu_exit);
899
900MODULE_DESCRIPTION("SuperH Mobile CEU driver");
901MODULE_AUTHOR("Magnus Damm");
902MODULE_LICENSE("GPL");