blob: 3d28c9c7a2c1958c081546c6302207d83d26dd4d [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>
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -030020#include <linux/completion.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030021#include <linux/delay.h>
22#include <linux/dma-mapping.h>
23#include <linux/errno.h>
24#include <linux/fs.h>
25#include <linux/interrupt.h>
26#include <linux/kernel.h>
27#include <linux/mm.h>
28#include <linux/moduleparam.h>
29#include <linux/time.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030031#include <linux/device.h>
32#include <linux/platform_device.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030033#include <linux/videodev2.h>
Magnus Damm6d1386c2009-08-14 10:49:17 +000034#include <linux/pm_runtime.h>
Guennadi Liakhovetskif39c1ab2009-11-09 16:11:34 -030035#include <linux/sched.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030036
37#include <media/v4l2-common.h>
38#include <media/v4l2-dev.h>
39#include <media/soc_camera.h>
40#include <media/sh_mobile_ceu.h>
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -030041#include <media/sh_mobile_csi2.h>
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -030042#include <media/videobuf2-dma-contig.h>
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -030043#include <media/v4l2-mediabus.h>
44#include <media/soc_mediabus.h>
Magnus Damm0d3244d2008-07-16 22:59:28 -030045
46/* register offsets for sh7722 / sh7723 */
47
Magnus Dammdd542032008-10-16 19:50:22 -030048#define CAPSR 0x00 /* Capture start register */
49#define CAPCR 0x04 /* Capture control register */
50#define CAMCR 0x08 /* Capture interface control register */
51#define CMCYR 0x0c /* Capture interface cycle register */
52#define CAMOR 0x10 /* Capture interface offset register */
53#define CAPWR 0x14 /* Capture interface width register */
54#define CAIFR 0x18 /* Capture interface input format register */
55#define CSTCR 0x20 /* Camera strobe control register (<= sh7722) */
56#define CSECR 0x24 /* Camera strobe emission count register (<= sh7722) */
57#define CRCNTR 0x28 /* CEU register control register */
58#define CRCMPR 0x2c /* CEU register forcible control register */
59#define CFLCR 0x30 /* Capture filter control register */
60#define CFSZR 0x34 /* Capture filter size clip register */
61#define CDWDR 0x38 /* Capture destination width register */
62#define CDAYR 0x3c /* Capture data address Y register */
63#define CDACR 0x40 /* Capture data address C register */
64#define CDBYR 0x44 /* Capture data bottom-field address Y register */
65#define CDBCR 0x48 /* Capture data bottom-field address C register */
66#define CBDSR 0x4c /* Capture bundle destination size register */
67#define CFWCR 0x5c /* Firewall operation control register */
68#define CLFCR 0x60 /* Capture low-pass filter control register */
69#define CDOCR 0x64 /* Capture data output control register */
70#define CDDCR 0x68 /* Capture data complexity level register */
71#define CDDAR 0x6c /* Capture data complexity level address register */
72#define CEIER 0x70 /* Capture event interrupt enable register */
73#define CETCR 0x74 /* Capture event flag clear register */
74#define CSTSR 0x7c /* Capture status register */
75#define CSRTR 0x80 /* Capture software reset register */
76#define CDSSR 0x84 /* Capture data size register */
77#define CDAYR2 0x90 /* Capture data address Y register 2 */
78#define CDACR2 0x94 /* Capture data address C register 2 */
79#define CDBYR2 0x98 /* Capture data bottom-field address Y register 2 */
80#define CDBCR2 0x9c /* Capture data bottom-field address C register 2 */
Magnus Damm0d3244d2008-07-16 22:59:28 -030081
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -030082#undef DEBUG_GEOMETRY
83#ifdef DEBUG_GEOMETRY
84#define dev_geo dev_info
85#else
86#define dev_geo dev_dbg
87#endif
88
Magnus Damm0d3244d2008-07-16 22:59:28 -030089/* per video frame buffer */
90struct sh_mobile_ceu_buffer {
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -030091 struct vb2_buffer vb; /* v4l buffer must be first */
92 struct list_head queue;
Magnus Damm0d3244d2008-07-16 22:59:28 -030093};
94
95struct sh_mobile_ceu_dev {
Magnus Damm0d3244d2008-07-16 22:59:28 -030096 struct soc_camera_host ici;
97 struct soc_camera_device *icd;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -030098 struct platform_device *csi2_pdev;
Magnus Damm0d3244d2008-07-16 22:59:28 -030099
100 unsigned int irq;
101 void __iomem *base;
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300102 size_t video_limit;
103 size_t buf_total;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300104
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300105 spinlock_t lock; /* Protects video buffer lists */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300106 struct list_head capture;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300107 struct vb2_buffer *active;
108 struct vb2_alloc_ctx *alloc_ctx;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300109
110 struct sh_mobile_ceu_info *pdata;
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300111 struct completion complete;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300112
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300113 u32 cflcr;
114
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -0300115 /* static max sizes either from platform data or default */
116 int max_width;
117 int max_height;
118
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300119 enum v4l2_field field;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300120 int sequence;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300121
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300122 unsigned int image_mode:1;
123 unsigned int is_16bit:1;
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300124 unsigned int frozen:1;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300125};
126
127struct sh_mobile_ceu_cam {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300128 /* CEU offsets within the camera output, before the CEU scaler */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300129 unsigned int ceu_left;
130 unsigned int ceu_top;
131 /* Client output, as seen by the CEU */
132 unsigned int width;
133 unsigned int height;
134 /*
135 * User window from S_CROP / G_CROP, produced by client cropping and
136 * scaling, CEU scaling and CEU cropping, mapped back onto the client
137 * input window
138 */
139 struct v4l2_rect subrect;
140 /* Camera cropping rectangle */
141 struct v4l2_rect rect;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300142 const struct soc_mbus_pixelfmt *extra_fmt;
143 enum v4l2_mbus_pixelcode code;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300144};
145
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300146static struct sh_mobile_ceu_buffer *to_ceu_vb(struct vb2_buffer *vb)
147{
148 return container_of(vb, struct sh_mobile_ceu_buffer, vb);
149}
150
Magnus Damm0d3244d2008-07-16 22:59:28 -0300151static void ceu_write(struct sh_mobile_ceu_dev *priv,
Magnus Damm7a1a8162008-12-18 12:50:30 -0300152 unsigned long reg_offs, u32 data)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300153{
154 iowrite32(data, priv->base + reg_offs);
155}
156
Magnus Damm7a1a8162008-12-18 12:50:30 -0300157static u32 ceu_read(struct sh_mobile_ceu_dev *priv, unsigned long reg_offs)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300158{
159 return ioread32(priv->base + reg_offs);
160}
161
Kuninori Morimotob1de7ae2009-10-05 12:48:20 -0300162static int sh_mobile_ceu_soft_reset(struct sh_mobile_ceu_dev *pcdev)
163{
164 int i, success = 0;
165 struct soc_camera_device *icd = pcdev->icd;
166
167 ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
168
169 /* wait CSTSR.CPTON bit */
170 for (i = 0; i < 1000; i++) {
171 if (!(ceu_read(pcdev, CSTSR) & 1)) {
172 success++;
173 break;
174 }
175 udelay(1);
176 }
177
178 /* wait CAPSR.CPKIL bit */
179 for (i = 0; i < 1000; i++) {
180 if (!(ceu_read(pcdev, CAPSR) & (1 << 16))) {
181 success++;
182 break;
183 }
184 udelay(1);
185 }
186
187
188 if (2 != success) {
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300189 dev_warn(icd->pdev, "soft reset time out\n");
Kuninori Morimotob1de7ae2009-10-05 12:48:20 -0300190 return -EIO;
191 }
192
193 return 0;
194}
195
Magnus Damm0d3244d2008-07-16 22:59:28 -0300196/*
197 * Videobuf operations
198 */
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300199
200/*
201 * .queue_setup() is called to check, whether the driver can accept the
202 * requested number of buffers and to fill in plane sizes
203 * for the current frame format if required
204 */
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300205static int sh_mobile_ceu_videobuf_setup(struct vb2_queue *vq,
Guennadi Liakhovetskifc714e72011-08-24 10:30:21 -0300206 const struct v4l2_format *fmt,
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300207 unsigned int *count, unsigned int *num_planes,
Marek Szyprowski035aa142011-08-24 06:43:36 -0300208 unsigned int sizes[], void *alloc_ctxs[])
Magnus Damm0d3244d2008-07-16 22:59:28 -0300209{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300210 struct soc_camera_device *icd = container_of(vq, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300211 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300212 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300213
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300214 if (fmt) {
215 const struct soc_camera_format_xlate *xlate = soc_camera_xlate_by_fourcc(icd,
216 fmt->fmt.pix.pixelformat);
Laurent Pinchart2b61d46e2012-03-21 08:03:21 -0300217 int bytes_per_line;
218
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300219 if (!xlate)
220 return -EINVAL;
Laurent Pinchart2b61d46e2012-03-21 08:03:21 -0300221
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300222 bytes_per_line = soc_mbus_bytes_per_line(fmt->fmt.pix.width,
223 xlate->host_fmt);
Laurent Pinchart2b61d46e2012-03-21 08:03:21 -0300224 if (bytes_per_line < 0)
225 return bytes_per_line;
226
227 sizes[0] = bytes_per_line * fmt->fmt.pix.height;
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300228 } else {
229 /* Called from VIDIOC_REQBUFS or in compatibility mode */
Laurent Pinchart2b61d46e2012-03-21 08:03:21 -0300230 sizes[0] = icd->sizeimage;
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300231 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300232
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300233 alloc_ctxs[0] = pcdev->alloc_ctx;
234
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300235 if (!vq->num_buffers)
236 pcdev->sequence = 0;
237
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300238 if (!*count)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300239 *count = 2;
240
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300241 /* If *num_planes != 0, we have already verified *count. */
242 if (pcdev->video_limit && !*num_planes) {
243 size_t size = PAGE_ALIGN(sizes[0]) * *count;
244
245 if (size + pcdev->buf_total > pcdev->video_limit)
246 *count = (pcdev->video_limit - pcdev->buf_total) /
247 PAGE_ALIGN(sizes[0]);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300248 }
249
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300250 *num_planes = 1;
251
Marek Szyprowski035aa142011-08-24 06:43:36 -0300252 dev_dbg(icd->parent, "count=%d, size=%u\n", *count, sizes[0]);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300253
254 return 0;
255}
256
Magnus Damm7a1a8162008-12-18 12:50:30 -0300257#define CEU_CETCR_MAGIC 0x0317f313 /* acknowledge magical interrupt sources */
258#define CEU_CETCR_IGRW (1 << 4) /* prohibited register access interrupt bit */
259#define CEU_CEIER_CPEIE (1 << 0) /* one-frame capture end interrupt */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300260#define CEU_CEIER_VBP (1 << 20) /* vbp error */
Magnus Damm7a1a8162008-12-18 12:50:30 -0300261#define CEU_CAPCR_CTNCP (1 << 16) /* continuous capture mode (if set) */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300262#define CEU_CEIER_MASK (CEU_CEIER_CPEIE | CEU_CEIER_VBP)
Magnus Damm7a1a8162008-12-18 12:50:30 -0300263
264
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300265/*
266 * return value doesn't reflex the success/failure to queue the new buffer,
267 * but rather the status of the previous buffer.
268 */
269static int sh_mobile_ceu_capture(struct sh_mobile_ceu_dev *pcdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300270{
Magnus Damm8be65dc2008-12-18 12:38:06 -0300271 struct soc_camera_device *icd = pcdev->icd;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300272 dma_addr_t phys_addr_top, phys_addr_bottom;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300273 unsigned long top1, top2;
274 unsigned long bottom1, bottom2;
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300275 u32 status;
Guennadi Liakhovetski15f517e2011-07-26 11:03:37 -0300276 bool planar;
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300277 int ret = 0;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300278
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300279 /*
280 * The hardware is _very_ picky about this sequence. Especially
Magnus Damm7a1a8162008-12-18 12:50:30 -0300281 * the CEU_CETCR_MAGIC value. It seems like we need to acknowledge
282 * several not-so-well documented interrupt sources in CETCR.
283 */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300284 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) & ~CEU_CEIER_MASK);
285 status = ceu_read(pcdev, CETCR);
286 ceu_write(pcdev, CETCR, ~status & CEU_CETCR_MAGIC);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300287 if (!pcdev->frozen)
288 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) | CEU_CEIER_MASK);
Magnus Damm7a1a8162008-12-18 12:50:30 -0300289 ceu_write(pcdev, CAPCR, ceu_read(pcdev, CAPCR) & ~CEU_CAPCR_CTNCP);
290 ceu_write(pcdev, CETCR, CEU_CETCR_MAGIC ^ CEU_CETCR_IGRW);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300291
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300292 /*
293 * When a VBP interrupt occurs, a capture end interrupt does not occur
294 * and the image of that frame is not captured correctly. So, soft reset
295 * is needed here.
296 */
297 if (status & CEU_CEIER_VBP) {
298 sh_mobile_ceu_soft_reset(pcdev);
299 ret = -EIO;
300 }
301
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300302 if (pcdev->frozen) {
303 complete(&pcdev->complete);
304 return ret;
305 }
306
Magnus Damm8be65dc2008-12-18 12:38:06 -0300307 if (!pcdev->active)
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300308 return ret;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300309
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300310 if (V4L2_FIELD_INTERLACED_BT == pcdev->field) {
311 top1 = CDBYR;
312 top2 = CDBCR;
313 bottom1 = CDAYR;
314 bottom2 = CDACR;
315 } else {
316 top1 = CDAYR;
317 top2 = CDACR;
318 bottom1 = CDBYR;
319 bottom2 = CDBCR;
320 }
321
Marek Szyprowskiba7fcb02011-08-29 03:20:56 -0300322 phys_addr_top = vb2_dma_contig_plane_dma_addr(pcdev->active, 0);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300323
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300324 switch (icd->current_fmt->host_fmt->fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300325 case V4L2_PIX_FMT_NV12:
326 case V4L2_PIX_FMT_NV21:
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300327 case V4L2_PIX_FMT_NV16:
328 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski15f517e2011-07-26 11:03:37 -0300329 planar = true;
330 break;
331 default:
332 planar = false;
333 }
334
335 ceu_write(pcdev, top1, phys_addr_top);
336 if (V4L2_FIELD_NONE != pcdev->field) {
337 if (planar)
338 phys_addr_bottom = phys_addr_top + icd->user_width;
339 else
Laurent Pinchart1c0f95e2012-03-21 08:03:22 -0300340 phys_addr_bottom = phys_addr_top + icd->bytesperline;
Guennadi Liakhovetski15f517e2011-07-26 11:03:37 -0300341 ceu_write(pcdev, bottom1, phys_addr_bottom);
342 }
343
344 if (planar) {
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300345 phys_addr_top += icd->user_width *
346 icd->user_height;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300347 ceu_write(pcdev, top2, phys_addr_top);
348 if (V4L2_FIELD_NONE != pcdev->field) {
349 phys_addr_bottom = phys_addr_top + icd->user_width;
350 ceu_write(pcdev, bottom2, phys_addr_bottom);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300351 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300352 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300353
Magnus Damm8be65dc2008-12-18 12:38:06 -0300354 ceu_write(pcdev, CAPSR, 0x1); /* start capture */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300355
356 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300357}
358
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300359static int sh_mobile_ceu_videobuf_prepare(struct vb2_buffer *vb)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300360{
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300361 struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300362
363 /* Added list head initialization on alloc */
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300364 WARN(!list_empty(&buf->queue), "Buffer %p on queue!\n", vb);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300365
Magnus Damm0d3244d2008-07-16 22:59:28 -0300366 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300367}
368
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300369static void sh_mobile_ceu_videobuf_queue(struct vb2_buffer *vb)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300370{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300371 struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300372 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300373 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300374 struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300375 unsigned long size;
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300376
Laurent Pinchart2b61d46e2012-03-21 08:03:21 -0300377 size = icd->sizeimage;
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300378
379 if (vb2_plane_size(vb, 0) < size) {
380 dev_err(icd->parent, "Buffer #%d too small (%lu < %lu)\n",
381 vb->v4l2_buf.index, vb2_plane_size(vb, 0), size);
382 goto error;
383 }
384
385 vb2_set_plane_payload(vb, 0, size);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300386
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300387 dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300388 vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300389
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300390#ifdef DEBUG
391 /*
392 * This can be useful if you want to see if we actually fill
393 * the buffer with something
394 */
395 if (vb2_plane_vaddr(vb, 0))
396 memset(vb2_plane_vaddr(vb, 0), 0xaa, vb2_get_plane_payload(vb, 0));
397#endif
398
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300399 spin_lock_irq(&pcdev->lock);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300400 list_add_tail(&buf->queue, &pcdev->capture);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300401
402 if (!pcdev->active) {
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300403 /*
404 * Because there were no active buffer at this moment,
405 * we are not interested in the return value of
406 * sh_mobile_ceu_capture here.
407 */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300408 pcdev->active = vb;
409 sh_mobile_ceu_capture(pcdev);
410 }
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300411 spin_unlock_irq(&pcdev->lock);
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300412
413 return;
414
415error:
416 vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300417}
418
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300419static void sh_mobile_ceu_videobuf_release(struct vb2_buffer *vb)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300420{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300421 struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300422 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300423 struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300424 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300425
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300426 spin_lock_irq(&pcdev->lock);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300427
428 if (pcdev->active == vb) {
429 /* disable capture (release DMA buffer), reset */
430 ceu_write(pcdev, CAPSR, 1 << 16);
431 pcdev->active = NULL;
432 }
433
Guennadi Liakhovetskicb74cf52011-07-04 12:15:14 -0300434 /*
435 * Doesn't hurt also if the list is empty, but it hurts, if queuing the
436 * buffer failed, and .buf_init() hasn't been called
437 */
438 if (buf->queue.next)
439 list_del_init(&buf->queue);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300440
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300441 pcdev->buf_total -= PAGE_ALIGN(vb2_plane_size(vb, 0));
442 dev_dbg(icd->parent, "%s() %zu bytes buffers\n", __func__,
443 pcdev->buf_total);
444
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300445 spin_unlock_irq(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300446}
447
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300448static int sh_mobile_ceu_videobuf_init(struct vb2_buffer *vb)
449{
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300450 struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
451 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
452 struct sh_mobile_ceu_dev *pcdev = ici->priv;
453
454 pcdev->buf_total += PAGE_ALIGN(vb2_plane_size(vb, 0));
455 dev_dbg(icd->parent, "%s() %zu bytes buffers\n", __func__,
456 pcdev->buf_total);
457
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300458 /* This is for locking debugging only */
459 INIT_LIST_HEAD(&to_ceu_vb(vb)->queue);
460 return 0;
461}
462
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300463static int sh_mobile_ceu_stop_streaming(struct vb2_queue *q)
464{
465 struct soc_camera_device *icd = container_of(q, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300466 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300467 struct sh_mobile_ceu_dev *pcdev = ici->priv;
468 struct list_head *buf_head, *tmp;
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300469
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300470 spin_lock_irq(&pcdev->lock);
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300471
472 pcdev->active = NULL;
473
474 list_for_each_safe(buf_head, tmp, &pcdev->capture)
475 list_del_init(buf_head);
476
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300477 spin_unlock_irq(&pcdev->lock);
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300478
479 return sh_mobile_ceu_soft_reset(pcdev);
480}
481
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300482static struct vb2_ops sh_mobile_ceu_videobuf_ops = {
483 .queue_setup = sh_mobile_ceu_videobuf_setup,
484 .buf_prepare = sh_mobile_ceu_videobuf_prepare,
485 .buf_queue = sh_mobile_ceu_videobuf_queue,
486 .buf_cleanup = sh_mobile_ceu_videobuf_release,
487 .buf_init = sh_mobile_ceu_videobuf_init,
488 .wait_prepare = soc_camera_unlock,
489 .wait_finish = soc_camera_lock,
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300490 .stop_streaming = sh_mobile_ceu_stop_streaming,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300491};
492
493static irqreturn_t sh_mobile_ceu_irq(int irq, void *data)
494{
495 struct sh_mobile_ceu_dev *pcdev = data;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300496 struct vb2_buffer *vb;
497 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300498
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300499 spin_lock(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300500
501 vb = pcdev->active;
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300502 if (!vb)
503 /* Stale interrupt from a released buffer */
504 goto out;
505
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300506 list_del_init(&to_ceu_vb(vb)->queue);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300507
508 if (!list_empty(&pcdev->capture))
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300509 pcdev->active = &list_entry(pcdev->capture.next,
510 struct sh_mobile_ceu_buffer, queue)->vb;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300511 else
512 pcdev->active = NULL;
513
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300514 ret = sh_mobile_ceu_capture(pcdev);
515 do_gettimeofday(&vb->v4l2_buf.timestamp);
516 if (!ret) {
517 vb->v4l2_buf.field = pcdev->field;
518 vb->v4l2_buf.sequence = pcdev->sequence++;
519 }
520 vb2_buffer_done(vb, ret < 0 ? VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300521
522out:
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300523 spin_unlock(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300524
525 return IRQ_HANDLED;
526}
527
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300528static struct v4l2_subdev *find_csi2(struct sh_mobile_ceu_dev *pcdev)
529{
530 struct v4l2_subdev *sd;
531
532 if (!pcdev->csi2_pdev)
533 return NULL;
534
535 v4l2_device_for_each_subdev(sd, &pcdev->ici.v4l2_dev)
536 if (&pcdev->csi2_pdev->dev == v4l2_get_subdevdata(sd))
537 return sd;
538
539 return NULL;
540}
541
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300542/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300543static int sh_mobile_ceu_add_device(struct soc_camera_device *icd)
544{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300545 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300546 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300547 struct v4l2_subdev *csi2_sd;
Guennadi Liakhovetski6ed7c032009-12-11 11:15:06 -0300548 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300549
Magnus Damm0d3244d2008-07-16 22:59:28 -0300550 if (pcdev->icd)
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300551 return -EBUSY;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300552
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300553 dev_info(icd->parent,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300554 "SuperH Mobile CEU driver attached to camera %d\n",
555 icd->devnum);
556
Guennadi Liakhovetskia79aebf2009-09-25 13:36:51 +0900557 pm_runtime_get_sync(ici->v4l2_dev.dev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300558
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -0300559 pcdev->buf_total = 0;
560
Guennadi Liakhovetski6ed7c032009-12-11 11:15:06 -0300561 ret = sh_mobile_ceu_soft_reset(pcdev);
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300562
563 csi2_sd = find_csi2(pcdev);
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -0300564 if (csi2_sd) {
565 csi2_sd->grp_id = soc_camera_grp_id(icd);
566 v4l2_set_subdev_hostdata(csi2_sd, icd);
567 }
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300568
569 ret = v4l2_subdev_call(csi2_sd, core, s_power, 1);
Guennadi Liakhovetski489759c2011-09-07 11:59:47 -0300570 if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV) {
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300571 pm_runtime_put_sync(ici->v4l2_dev.dev);
Guennadi Liakhovetski489759c2011-09-07 11:59:47 -0300572 return ret;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300573 }
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300574
Guennadi Liakhovetski489759c2011-09-07 11:59:47 -0300575 /*
576 * -ENODEV is special: either csi2_sd == NULL or the CSI-2 driver
577 * has not found this soc-camera device among its clients
578 */
579 if (ret == -ENODEV && csi2_sd)
580 csi2_sd->grp_id = 0;
581 pcdev->icd = icd;
582
583 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300584}
585
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300586/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300587static void sh_mobile_ceu_remove_device(struct soc_camera_device *icd)
588{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300589 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300590 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300591 struct v4l2_subdev *csi2_sd = find_csi2(pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300592
593 BUG_ON(icd != pcdev->icd);
594
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300595 v4l2_subdev_call(csi2_sd, core, s_power, 0);
Guennadi Liakhovetski489759c2011-09-07 11:59:47 -0300596 if (csi2_sd)
597 csi2_sd->grp_id = 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300598 /* disable capture, disable interrupts */
599 ceu_write(pcdev, CEIER, 0);
Kuninori Morimotob1de7ae2009-10-05 12:48:20 -0300600 sh_mobile_ceu_soft_reset(pcdev);
Magnus Damm51354cc2008-10-16 19:51:20 -0300601
602 /* make sure active buffer is canceled */
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300603 spin_lock_irq(&pcdev->lock);
Magnus Damm51354cc2008-10-16 19:51:20 -0300604 if (pcdev->active) {
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300605 list_del_init(&to_ceu_vb(pcdev->active)->queue);
606 vb2_buffer_done(pcdev->active, VB2_BUF_STATE_ERROR);
Magnus Damm51354cc2008-10-16 19:51:20 -0300607 pcdev->active = NULL;
608 }
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300609 spin_unlock_irq(&pcdev->lock);
Magnus Damm51354cc2008-10-16 19:51:20 -0300610
Guennadi Liakhovetskia79aebf2009-09-25 13:36:51 +0900611 pm_runtime_put_sync(ici->v4l2_dev.dev);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300612
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300613 dev_info(icd->parent,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300614 "SuperH Mobile CEU driver detached from camera %d\n",
615 icd->devnum);
616
617 pcdev->icd = NULL;
618}
619
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300620/*
621 * See chapter 29.4.12 "Capture Filter Control Register (CFLCR)"
622 * in SH7722 Hardware Manual
623 */
624static unsigned int size_dst(unsigned int src, unsigned int scale)
625{
626 unsigned int mant_pre = scale >> 12;
627 if (!src || !scale)
628 return src;
629 return ((mant_pre + 2 * (src - 1)) / (2 * mant_pre) - 1) *
630 mant_pre * 4096 / scale + 1;
631}
632
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300633static u16 calc_scale(unsigned int src, unsigned int *dst)
634{
635 u16 scale;
636
637 if (src == *dst)
638 return 0;
639
640 scale = (src * 4096 / *dst) & ~7;
641
642 while (scale > 4096 && size_dst(src, scale) < *dst)
643 scale -= 8;
644
645 *dst = size_dst(src, scale);
646
647 return scale;
648}
649
650/* rect is guaranteed to not exceed the scaled camera rectangle */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300651static void sh_mobile_ceu_set_rect(struct soc_camera_device *icd)
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300652{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300653 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300654 struct sh_mobile_ceu_cam *cam = icd->host_priv;
655 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300656 unsigned int height, width, cdwdr_width, in_width, in_height;
657 unsigned int left_offset, top_offset;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300658 u32 camor;
659
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300660 dev_geo(icd->parent, "Crop %ux%u@%u:%u\n",
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300661 icd->user_width, icd->user_height, cam->ceu_left, cam->ceu_top);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300662
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300663 left_offset = cam->ceu_left;
664 top_offset = cam->ceu_top;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300665
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300666 WARN_ON(icd->user_width & 3 || icd->user_height & 3);
667
668 width = icd->user_width;
669
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300670 if (pcdev->image_mode) {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300671 in_width = cam->width;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300672 if (!pcdev->is_16bit) {
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300673 in_width *= 2;
674 left_offset *= 2;
675 }
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300676 cdwdr_width = width;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300677 } else {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300678 int bytes_per_line = soc_mbus_bytes_per_line(width,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300679 icd->current_fmt->host_fmt);
680 unsigned int w_factor;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300681
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300682 switch (icd->current_fmt->host_fmt->packing) {
683 case SOC_MBUS_PACKING_2X8_PADHI:
684 w_factor = 2;
685 break;
686 default:
687 w_factor = 1;
688 }
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300689
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300690 in_width = cam->width * w_factor;
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300691 left_offset *= w_factor;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300692
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300693 if (bytes_per_line < 0)
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300694 cdwdr_width = width;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300695 else
696 cdwdr_width = bytes_per_line;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300697 }
698
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300699 height = icd->user_height;
700 in_height = cam->height;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300701 if (V4L2_FIELD_NONE != pcdev->field) {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300702 height = (height / 2) & ~3;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300703 in_height /= 2;
704 top_offset /= 2;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300705 cdwdr_width *= 2;
706 }
707
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300708 /* CSI2 special configuration */
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300709 if (pcdev->pdata->csi2) {
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300710 in_width = ((in_width - 2) * 2);
711 left_offset *= 2;
712 }
713
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300714 /* Set CAMOR, CAPWR, CFSZR, take care of CDWDR */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300715 camor = left_offset | (top_offset << 16);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300716
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300717 dev_geo(icd->parent,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300718 "CAMOR 0x%x, CAPWR 0x%x, CFSZR 0x%x, CDWDR 0x%x\n", camor,
719 (in_height << 16) | in_width, (height << 16) | width,
720 cdwdr_width);
721
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300722 ceu_write(pcdev, CAMOR, camor);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300723 ceu_write(pcdev, CAPWR, (in_height << 16) | in_width);
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300724 /* CFSZR clipping is applied _after_ the scaling filter (CFLCR) */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300725 ceu_write(pcdev, CFSZR, (height << 16) | width);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300726 ceu_write(pcdev, CDWDR, cdwdr_width);
727}
728
729static u32 capture_save_reset(struct sh_mobile_ceu_dev *pcdev)
730{
731 u32 capsr = ceu_read(pcdev, CAPSR);
732 ceu_write(pcdev, CAPSR, 1 << 16); /* reset, stop capture */
733 return capsr;
734}
735
736static void capture_restore(struct sh_mobile_ceu_dev *pcdev, u32 capsr)
737{
738 unsigned long timeout = jiffies + 10 * HZ;
739
740 /*
741 * Wait until the end of the current frame. It can take a long time,
742 * but if it has been aborted by a CAPSR reset, it shoule exit sooner.
743 */
744 while ((ceu_read(pcdev, CSTSR) & 1) && time_before(jiffies, timeout))
745 msleep(1);
746
747 if (time_after(jiffies, timeout)) {
748 dev_err(pcdev->ici.v4l2_dev.dev,
749 "Timeout waiting for frame end! Interface problem?\n");
750 return;
751 }
752
753 /* Wait until reset clears, this shall not hang... */
754 while (ceu_read(pcdev, CAPSR) & (1 << 16))
755 udelay(10);
756
757 /* Anything to restore? */
758 if (capsr & ~(1 << 16))
759 ceu_write(pcdev, CAPSR, capsr);
760}
761
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300762/* Find the bus subdevice driver, e.g., CSI2 */
763static struct v4l2_subdev *find_bus_subdev(struct sh_mobile_ceu_dev *pcdev,
764 struct soc_camera_device *icd)
765{
Guennadi Liakhovetski6ac939c2011-08-22 12:35:09 -0300766 if (pcdev->csi2_pdev) {
767 struct v4l2_subdev *csi2_sd = find_csi2(pcdev);
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -0300768 if (csi2_sd && csi2_sd->grp_id == soc_camera_grp_id(icd))
Guennadi Liakhovetski6ac939c2011-08-22 12:35:09 -0300769 return csi2_sd;
770 }
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300771
Guennadi Liakhovetski6ac939c2011-08-22 12:35:09 -0300772 return soc_camera_to_subdev(icd);
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300773}
774
775#define CEU_BUS_FLAGS (V4L2_MBUS_MASTER | \
776 V4L2_MBUS_PCLK_SAMPLE_RISING | \
777 V4L2_MBUS_HSYNC_ACTIVE_HIGH | \
778 V4L2_MBUS_HSYNC_ACTIVE_LOW | \
779 V4L2_MBUS_VSYNC_ACTIVE_HIGH | \
780 V4L2_MBUS_VSYNC_ACTIVE_LOW | \
781 V4L2_MBUS_DATA_ACTIVE_HIGH)
782
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300783/* Capture is not running, no interrupts, no locking needed */
Guennadi Liakhovetski8843d112011-09-21 17:52:51 -0300784static int sh_mobile_ceu_set_bus_param(struct soc_camera_device *icd)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300785{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300786 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300787 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300788 struct v4l2_subdev *sd = find_bus_subdev(pcdev, icd);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300789 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300790 struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
791 unsigned long value, common_flags = CEU_BUS_FLAGS;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300792 u32 capsr = capture_save_reset(pcdev);
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300793 unsigned int yuv_lineskip;
794 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300795
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300796 /*
797 * If the client doesn't implement g_mbus_config, we just use our
798 * platform data
799 */
800 ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
801 if (!ret) {
802 common_flags = soc_mbus_config_compatible(&cfg,
803 common_flags);
804 if (!common_flags)
805 return -EINVAL;
806 } else if (ret != -ENOIOCTLCMD) {
807 return ret;
808 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300809
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300810 /* Make choises, based on platform preferences */
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300811 if ((common_flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) &&
812 (common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)) {
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300813 if (pcdev->pdata->flags & SH_CEU_FLAG_HSYNC_LOW)
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300814 common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_HIGH;
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300815 else
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300816 common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_LOW;
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300817 }
818
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300819 if ((common_flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) &&
820 (common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)) {
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300821 if (pcdev->pdata->flags & SH_CEU_FLAG_VSYNC_LOW)
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300822 common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_HIGH;
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300823 else
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300824 common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_LOW;
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300825 }
826
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300827 cfg.flags = common_flags;
828 ret = v4l2_subdev_call(sd, video, s_mbus_config, &cfg);
829 if (ret < 0 && ret != -ENOIOCTLCMD)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300830 return ret;
831
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300832 if (icd->current_fmt->host_fmt->bits_per_sample > 8)
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300833 pcdev->is_16bit = 1;
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300834 else
835 pcdev->is_16bit = 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300836
837 ceu_write(pcdev, CRCNTR, 0);
838 ceu_write(pcdev, CRCMPR, 0);
839
Magnus Damm8be65dc2008-12-18 12:38:06 -0300840 value = 0x00000010; /* data fetch by default */
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300841 yuv_lineskip = 0x10;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300842
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300843 switch (icd->current_fmt->host_fmt->fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300844 case V4L2_PIX_FMT_NV12:
845 case V4L2_PIX_FMT_NV21:
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300846 /* convert 4:2:2 -> 4:2:0 */
847 yuv_lineskip = 0; /* skip for NV12/21, no skip for NV16/61 */
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300848 /* fall-through */
849 case V4L2_PIX_FMT_NV16:
850 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300851 switch (cam->code) {
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300852 case V4L2_MBUS_FMT_UYVY8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300853 value = 0x00000000; /* Cb0, Y0, Cr0, Y1 */
854 break;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300855 case V4L2_MBUS_FMT_VYUY8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300856 value = 0x00000100; /* Cr0, Y0, Cb0, Y1 */
857 break;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300858 case V4L2_MBUS_FMT_YUYV8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300859 value = 0x00000200; /* Y0, Cb0, Y1, Cr0 */
860 break;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300861 case V4L2_MBUS_FMT_YVYU8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300862 value = 0x00000300; /* Y0, Cr0, Y1, Cb0 */
863 break;
864 default:
865 BUG();
866 }
867 }
868
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300869 if (icd->current_fmt->host_fmt->fourcc == V4L2_PIX_FMT_NV21 ||
870 icd->current_fmt->host_fmt->fourcc == V4L2_PIX_FMT_NV61)
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300871 value ^= 0x00000100; /* swap U, V to change from NV1x->NVx1 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300872
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300873 value |= common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW ? 1 << 1 : 0;
874 value |= common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW ? 1 << 0 : 0;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300875 value |= pcdev->is_16bit ? 1 << 12 : 0;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300876
877 /* CSI2 mode */
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300878 if (pcdev->pdata->csi2)
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300879 value |= 3 << 12;
880
Magnus Damm0d3244d2008-07-16 22:59:28 -0300881 ceu_write(pcdev, CAMCR, value);
882
883 ceu_write(pcdev, CAPCR, 0x00300000);
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300884
885 switch (pcdev->field) {
886 case V4L2_FIELD_INTERLACED_TB:
887 value = 0x101;
888 break;
889 case V4L2_FIELD_INTERLACED_BT:
890 value = 0x102;
891 break;
892 default:
893 value = 0;
894 break;
895 }
896 ceu_write(pcdev, CAIFR, value);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300897
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300898 sh_mobile_ceu_set_rect(icd);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300899 mdelay(1);
900
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300901 dev_geo(icd->parent, "CFLCR 0x%x\n", pcdev->cflcr);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300902 ceu_write(pcdev, CFLCR, pcdev->cflcr);
Magnus Dammdd542032008-10-16 19:50:22 -0300903
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300904 /*
905 * A few words about byte order (observed in Big Endian mode)
Magnus Dammdd542032008-10-16 19:50:22 -0300906 *
907 * In data fetch mode bytes are received in chunks of 8 bytes.
908 * D0, D1, D2, D3, D4, D5, D6, D7 (D0 received first)
909 *
910 * The data is however by default written to memory in reverse order:
911 * D7, D6, D5, D4, D3, D2, D1, D0 (D7 written to lowest byte)
912 *
913 * The lowest three bits of CDOCR allows us to do swapping,
Magnus Damm2c0a0722008-10-16 19:50:56 -0300914 * using 7 we swap the data bytes to match the incoming order:
915 * D0, D1, D2, D3, D4, D5, D6, D7
Magnus Dammdd542032008-10-16 19:50:22 -0300916 */
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300917 value = 0x00000007 | yuv_lineskip;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300918
919 ceu_write(pcdev, CDOCR, value);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300920 ceu_write(pcdev, CFWCR, 0); /* keep "datafetch firewall" disabled */
921
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300922 capture_restore(pcdev, capsr);
923
Magnus Damm0d3244d2008-07-16 22:59:28 -0300924 /* not in bundle mode: skip CBDSR, CDAYR2, CDACR2, CDBYR2, CDBCR2 */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300925 return 0;
926}
927
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300928static int sh_mobile_ceu_try_bus_param(struct soc_camera_device *icd,
929 unsigned char buswidth)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300930{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300931 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300932 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300933 struct v4l2_subdev *sd = find_bus_subdev(pcdev, icd);
934 unsigned long common_flags = CEU_BUS_FLAGS;
935 struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
936 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300937
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300938 ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
939 if (!ret)
940 common_flags = soc_mbus_config_compatible(&cfg,
941 common_flags);
942 else if (ret != -ENOIOCTLCMD)
943 return ret;
944
945 if (!common_flags || buswidth > 16)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300946 return -EINVAL;
947
948 return 0;
949}
950
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300951static const struct soc_mbus_pixelfmt sh_mobile_ceu_formats[] = {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300952 {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300953 .fourcc = V4L2_PIX_FMT_NV12,
954 .name = "NV12",
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300955 .bits_per_sample = 8,
956 .packing = SOC_MBUS_PACKING_1_5X8,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300957 .order = SOC_MBUS_ORDER_LE,
958 }, {
959 .fourcc = V4L2_PIX_FMT_NV21,
960 .name = "NV21",
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300961 .bits_per_sample = 8,
962 .packing = SOC_MBUS_PACKING_1_5X8,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300963 .order = SOC_MBUS_ORDER_LE,
964 }, {
965 .fourcc = V4L2_PIX_FMT_NV16,
966 .name = "NV16",
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300967 .bits_per_sample = 8,
968 .packing = SOC_MBUS_PACKING_2X8_PADHI,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300969 .order = SOC_MBUS_ORDER_LE,
970 }, {
971 .fourcc = V4L2_PIX_FMT_NV61,
972 .name = "NV61",
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300973 .bits_per_sample = 8,
974 .packing = SOC_MBUS_PACKING_2X8_PADHI,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300975 .order = SOC_MBUS_ORDER_LE,
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300976 },
Magnus Damm8be65dc2008-12-18 12:38:06 -0300977};
978
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300979/* This will be corrected as we get more formats */
980static bool sh_mobile_ceu_packing_supported(const struct soc_mbus_pixelfmt *fmt)
981{
982 return fmt->packing == SOC_MBUS_PACKING_NONE ||
983 (fmt->bits_per_sample == 8 &&
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -0300984 fmt->packing == SOC_MBUS_PACKING_1_5X8) ||
985 (fmt->bits_per_sample == 8 &&
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300986 fmt->packing == SOC_MBUS_PACKING_2X8_PADHI) ||
987 (fmt->bits_per_sample > 8 &&
988 fmt->packing == SOC_MBUS_PACKING_EXTEND16);
989}
990
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300991static int client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect);
992
Hans Verkuild34bfcd22011-09-05 17:07:47 -0300993static struct soc_camera_device *ctrl_to_icd(struct v4l2_ctrl *ctrl)
994{
995 return container_of(ctrl->handler, struct soc_camera_device,
996 ctrl_handler);
997}
998
999static int sh_mobile_ceu_s_ctrl(struct v4l2_ctrl *ctrl)
1000{
1001 struct soc_camera_device *icd = ctrl_to_icd(ctrl);
1002 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1003 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1004
1005 switch (ctrl->id) {
1006 case V4L2_CID_SHARPNESS:
1007 switch (icd->current_fmt->host_fmt->fourcc) {
1008 case V4L2_PIX_FMT_NV12:
1009 case V4L2_PIX_FMT_NV21:
1010 case V4L2_PIX_FMT_NV16:
1011 case V4L2_PIX_FMT_NV61:
1012 ceu_write(pcdev, CLFCR, !ctrl->val);
1013 return 0;
1014 }
1015 break;
1016 }
1017
1018 return -EINVAL;
1019}
1020
1021static const struct v4l2_ctrl_ops sh_mobile_ceu_ctrl_ops = {
1022 .s_ctrl = sh_mobile_ceu_s_ctrl,
1023};
1024
Hans Verkuil3805f202010-05-08 17:55:00 -03001025static int sh_mobile_ceu_get_formats(struct soc_camera_device *icd, unsigned int idx,
Magnus Damm9414de32008-12-18 11:49:06 -03001026 struct soc_camera_format_xlate *xlate)
1027{
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001028 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001029 struct device *dev = icd->parent;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001030 struct soc_camera_host *ici = to_soc_camera_host(dev);
1031 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm8be65dc2008-12-18 12:38:06 -03001032 int ret, k, n;
Magnus Damm9414de32008-12-18 11:49:06 -03001033 int formats = 0;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001034 struct sh_mobile_ceu_cam *cam;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001035 enum v4l2_mbus_pixelcode code;
1036 const struct soc_mbus_pixelfmt *fmt;
Magnus Damm9414de32008-12-18 11:49:06 -03001037
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001038 ret = v4l2_subdev_call(sd, video, enum_mbus_fmt, idx, &code);
1039 if (ret < 0)
1040 /* No more formats */
1041 return 0;
1042
1043 fmt = soc_mbus_get_fmtdesc(code);
1044 if (!fmt) {
Guennadi Liakhovetskid2dcad42011-05-18 06:49:54 -03001045 dev_warn(dev, "unsupported format code #%u: %d\n", idx, code);
1046 return 0;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001047 }
1048
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03001049 if (!pcdev->pdata->csi2) {
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -03001050 /* Are there any restrictions in the CSI-2 case? */
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001051 ret = sh_mobile_ceu_try_bus_param(icd, fmt->bits_per_sample);
1052 if (ret < 0)
1053 return 0;
1054 }
Magnus Damm9414de32008-12-18 11:49:06 -03001055
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001056 if (!icd->host_priv) {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001057 struct v4l2_mbus_framefmt mf;
1058 struct v4l2_rect rect;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001059 int shift = 0;
1060
Hans Verkuild34bfcd22011-09-05 17:07:47 -03001061 /* Add our control */
1062 v4l2_ctrl_new_std(&icd->ctrl_handler, &sh_mobile_ceu_ctrl_ops,
1063 V4L2_CID_SHARPNESS, 0, 1, 1, 0);
1064 if (icd->ctrl_handler.error)
1065 return icd->ctrl_handler.error;
1066
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001067 /* FIXME: subwindow is lost between close / open */
1068
1069 /* Cache current client geometry */
1070 ret = client_g_rect(sd, &rect);
1071 if (ret < 0)
1072 return ret;
1073
1074 /* First time */
1075 ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
1076 if (ret < 0)
1077 return ret;
1078
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001079 /*
1080 * All currently existing CEU implementations support 2560x1920
1081 * or larger frames. If the sensor is proposing too big a frame,
1082 * don't bother with possibly supportred by the CEU larger
1083 * sizes, just try VGA multiples. If needed, this can be
1084 * adjusted in the future.
1085 */
1086 while ((mf.width > pcdev->max_width ||
1087 mf.height > pcdev->max_height) && shift < 4) {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001088 /* Try 2560x1920, 1280x960, 640x480, 320x240 */
1089 mf.width = 2560 >> shift;
1090 mf.height = 1920 >> shift;
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -03001091 ret = v4l2_device_call_until_err(sd->v4l2_dev,
1092 soc_camera_grp_id(icd), video,
1093 s_mbus_fmt, &mf);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001094 if (ret < 0)
1095 return ret;
1096 shift++;
1097 }
1098
1099 if (shift == 4) {
1100 dev_err(dev, "Failed to configure the client below %ux%x\n",
1101 mf.width, mf.height);
1102 return -EIO;
1103 }
1104
1105 dev_geo(dev, "camera fmt %ux%u\n", mf.width, mf.height);
1106
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001107 cam = kzalloc(sizeof(*cam), GFP_KERNEL);
1108 if (!cam)
1109 return -ENOMEM;
1110
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001111 /* We are called with current camera crop, initialise subrect with it */
1112 cam->rect = rect;
1113 cam->subrect = rect;
1114
1115 cam->width = mf.width;
1116 cam->height = mf.height;
1117
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001118 icd->host_priv = cam;
1119 } else {
1120 cam = icd->host_priv;
1121 }
1122
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001123 /* Beginning of a pass */
1124 if (!idx)
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001125 cam->extra_fmt = NULL;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001126
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001127 switch (code) {
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -03001128 case V4L2_MBUS_FMT_UYVY8_2X8:
1129 case V4L2_MBUS_FMT_VYUY8_2X8:
1130 case V4L2_MBUS_FMT_YUYV8_2X8:
1131 case V4L2_MBUS_FMT_YVYU8_2X8:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001132 if (cam->extra_fmt)
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001133 break;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001134
1135 /*
1136 * Our case is simple so far: for any of the above four camera
1137 * formats we add all our four synthesized NV* formats, so,
1138 * just marking the device with a single flag suffices. If
1139 * the format generation rules are more complex, you would have
1140 * to actually hang your already added / counted formats onto
1141 * the host_priv pointer and check whether the format you're
1142 * going to add now is already there.
1143 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001144 cam->extra_fmt = sh_mobile_ceu_formats;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001145
Magnus Damm8be65dc2008-12-18 12:38:06 -03001146 n = ARRAY_SIZE(sh_mobile_ceu_formats);
1147 formats += n;
1148 for (k = 0; xlate && k < n; k++) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001149 xlate->host_fmt = &sh_mobile_ceu_formats[k];
1150 xlate->code = code;
Magnus Damm8be65dc2008-12-18 12:38:06 -03001151 xlate++;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001152 dev_dbg(dev, "Providing format %s using code %d\n",
1153 sh_mobile_ceu_formats[k].name, code);
Magnus Damm8be65dc2008-12-18 12:38:06 -03001154 }
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001155 break;
Magnus Damm9414de32008-12-18 11:49:06 -03001156 default:
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001157 if (!sh_mobile_ceu_packing_supported(fmt))
1158 return 0;
1159 }
1160
1161 /* Generic pass-through */
1162 formats++;
1163 if (xlate) {
1164 xlate->host_fmt = fmt;
1165 xlate->code = code;
1166 xlate++;
1167 dev_dbg(dev, "Providing format %s in pass-through mode\n",
Guennadi Liakhovetskie53a4802010-06-18 04:20:56 -03001168 fmt->name);
Magnus Damm9414de32008-12-18 11:49:06 -03001169 }
1170
1171 return formats;
1172}
1173
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001174static void sh_mobile_ceu_put_formats(struct soc_camera_device *icd)
1175{
1176 kfree(icd->host_priv);
1177 icd->host_priv = NULL;
1178}
1179
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001180/* Check if any dimension of r1 is smaller than respective one of r2 */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001181static bool is_smaller(struct v4l2_rect *r1, struct v4l2_rect *r2)
1182{
1183 return r1->width < r2->width || r1->height < r2->height;
1184}
1185
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001186/* Check if r1 fails to cover r2 */
1187static bool is_inside(struct v4l2_rect *r1, struct v4l2_rect *r2)
1188{
1189 return r1->left > r2->left || r1->top > r2->top ||
1190 r1->left + r1->width < r2->left + r2->width ||
1191 r1->top + r1->height < r2->top + r2->height;
1192}
1193
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001194static unsigned int scale_down(unsigned int size, unsigned int scale)
1195{
1196 return (size * 4096 + scale / 2) / scale;
1197}
1198
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001199static unsigned int calc_generic_scale(unsigned int input, unsigned int output)
1200{
1201 return (input * 4096 + output / 2) / output;
1202}
1203
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001204/* Get and store current client crop */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001205static int client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect)
1206{
1207 struct v4l2_crop crop;
1208 struct v4l2_cropcap cap;
1209 int ret;
1210
1211 crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1212
1213 ret = v4l2_subdev_call(sd, video, g_crop, &crop);
1214 if (!ret) {
1215 *rect = crop.c;
1216 return ret;
1217 }
1218
1219 /* Camera driver doesn't support .g_crop(), assume default rectangle */
1220 cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1221
1222 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001223 if (!ret)
1224 *rect = cap.defrect;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001225
1226 return ret;
1227}
1228
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001229/* Client crop has changed, update our sub-rectangle to remain within the area */
1230static void update_subrect(struct sh_mobile_ceu_cam *cam)
1231{
1232 struct v4l2_rect *rect = &cam->rect, *subrect = &cam->subrect;
1233
1234 if (rect->width < subrect->width)
1235 subrect->width = rect->width;
1236
1237 if (rect->height < subrect->height)
1238 subrect->height = rect->height;
1239
1240 if (rect->left > subrect->left)
1241 subrect->left = rect->left;
1242 else if (rect->left + rect->width >
1243 subrect->left + subrect->width)
1244 subrect->left = rect->left + rect->width -
1245 subrect->width;
1246
1247 if (rect->top > subrect->top)
1248 subrect->top = rect->top;
1249 else if (rect->top + rect->height >
1250 subrect->top + subrect->height)
1251 subrect->top = rect->top + rect->height -
1252 subrect->height;
1253}
1254
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001255/*
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001256 * The common for both scaling and cropping iterative approach is:
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001257 * 1. try if the client can produce exactly what requested by the user
1258 * 2. if (1) failed, try to double the client image until we get one big enough
1259 * 3. if (2) failed, try to request the maximum image
1260 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001261static int client_s_crop(struct soc_camera_device *icd, struct v4l2_crop *crop,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001262 struct v4l2_crop *cam_crop)
1263{
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001264 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001265 struct v4l2_rect *rect = &crop->c, *cam_rect = &cam_crop->c;
1266 struct device *dev = sd->v4l2_dev->dev;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001267 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001268 struct v4l2_cropcap cap;
1269 int ret;
1270 unsigned int width, height;
1271
1272 v4l2_subdev_call(sd, video, s_crop, crop);
1273 ret = client_g_rect(sd, cam_rect);
1274 if (ret < 0)
1275 return ret;
1276
1277 /*
1278 * Now cam_crop contains the current camera input rectangle, and it must
1279 * be within camera cropcap bounds
1280 */
1281 if (!memcmp(rect, cam_rect, sizeof(*rect))) {
1282 /* Even if camera S_CROP failed, but camera rectangle matches */
Márton Némethe26b3142010-02-24 17:13:29 -03001283 dev_dbg(dev, "Camera S_CROP successful for %dx%d@%d:%d\n",
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001284 rect->width, rect->height, rect->left, rect->top);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001285 cam->rect = *cam_rect;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001286 return 0;
1287 }
1288
1289 /* Try to fix cropping, that camera hasn't managed to set */
Márton Némethe26b3142010-02-24 17:13:29 -03001290 dev_geo(dev, "Fix camera S_CROP for %dx%d@%d:%d to %dx%d@%d:%d\n",
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001291 cam_rect->width, cam_rect->height,
1292 cam_rect->left, cam_rect->top,
1293 rect->width, rect->height, rect->left, rect->top);
1294
1295 /* We need sensor maximum rectangle */
1296 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
1297 if (ret < 0)
1298 return ret;
1299
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001300 /* Put user requested rectangle within sensor bounds */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001301 soc_camera_limit_side(&rect->left, &rect->width, cap.bounds.left, 2,
1302 cap.bounds.width);
1303 soc_camera_limit_side(&rect->top, &rect->height, cap.bounds.top, 4,
1304 cap.bounds.height);
1305
1306 /*
1307 * Popular special case - some cameras can only handle fixed sizes like
1308 * QVGA, VGA,... Take care to avoid infinite loop.
1309 */
1310 width = max(cam_rect->width, 2);
1311 height = max(cam_rect->height, 2);
1312
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001313 /*
1314 * Loop as long as sensor is not covering the requested rectangle and
1315 * is still within its bounds
1316 */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001317 while (!ret && (is_smaller(cam_rect, rect) ||
1318 is_inside(cam_rect, rect)) &&
1319 (cap.bounds.width > width || cap.bounds.height > height)) {
1320
1321 width *= 2;
1322 height *= 2;
1323
1324 cam_rect->width = width;
1325 cam_rect->height = height;
1326
1327 /*
1328 * We do not know what capabilities the camera has to set up
1329 * left and top borders. We could try to be smarter in iterating
1330 * them, e.g., if camera current left is to the right of the
1331 * target left, set it to the middle point between the current
1332 * left and minimum left. But that would add too much
1333 * complexity: we would have to iterate each border separately.
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001334 * Instead we just drop to the left and top bounds.
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001335 */
1336 if (cam_rect->left > rect->left)
1337 cam_rect->left = cap.bounds.left;
1338
1339 if (cam_rect->left + cam_rect->width < rect->left + rect->width)
1340 cam_rect->width = rect->left + rect->width -
1341 cam_rect->left;
1342
1343 if (cam_rect->top > rect->top)
1344 cam_rect->top = cap.bounds.top;
1345
1346 if (cam_rect->top + cam_rect->height < rect->top + rect->height)
1347 cam_rect->height = rect->top + rect->height -
1348 cam_rect->top;
1349
1350 v4l2_subdev_call(sd, video, s_crop, cam_crop);
1351 ret = client_g_rect(sd, cam_rect);
Márton Némethe26b3142010-02-24 17:13:29 -03001352 dev_geo(dev, "Camera S_CROP %d for %dx%d@%d:%d\n", ret,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001353 cam_rect->width, cam_rect->height,
1354 cam_rect->left, cam_rect->top);
1355 }
1356
1357 /* S_CROP must not modify the rectangle */
1358 if (is_smaller(cam_rect, rect) || is_inside(cam_rect, rect)) {
1359 /*
1360 * The camera failed to configure a suitable cropping,
1361 * we cannot use the current rectangle, set to max
1362 */
1363 *cam_rect = cap.bounds;
1364 v4l2_subdev_call(sd, video, s_crop, cam_crop);
1365 ret = client_g_rect(sd, cam_rect);
Márton Némethe26b3142010-02-24 17:13:29 -03001366 dev_geo(dev, "Camera S_CROP %d for max %dx%d@%d:%d\n", ret,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001367 cam_rect->width, cam_rect->height,
1368 cam_rect->left, cam_rect->top);
1369 }
1370
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001371 if (!ret) {
1372 cam->rect = *cam_rect;
1373 update_subrect(cam);
1374 }
1375
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001376 return ret;
1377}
1378
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001379/* Iterative s_mbus_fmt, also updates cached client crop on success */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001380static int client_s_fmt(struct soc_camera_device *icd,
1381 struct v4l2_mbus_framefmt *mf, bool ceu_can_scale)
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001382{
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001383 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1384 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001385 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001386 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001387 struct device *dev = icd->parent;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001388 unsigned int width = mf->width, height = mf->height, tmp_w, tmp_h;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001389 unsigned int max_width, max_height;
1390 struct v4l2_cropcap cap;
Guennadi Liakhovetski36988742011-07-22 09:44:40 -03001391 bool ceu_1to1;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001392 int ret;
1393
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -03001394 ret = v4l2_device_call_until_err(sd->v4l2_dev,
1395 soc_camera_grp_id(icd), video,
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001396 s_mbus_fmt, mf);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001397 if (ret < 0)
1398 return ret;
1399
1400 dev_geo(dev, "camera scaled to %ux%u\n", mf->width, mf->height);
1401
Guennadi Liakhovetski36988742011-07-22 09:44:40 -03001402 if (width == mf->width && height == mf->height) {
1403 /* Perfect! The client has done it all. */
1404 ceu_1to1 = true;
1405 goto update_cache;
1406 }
1407
1408 ceu_1to1 = false;
1409 if (!ceu_can_scale)
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001410 goto update_cache;
1411
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001412 cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1413
1414 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
1415 if (ret < 0)
1416 return ret;
1417
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001418 max_width = min(cap.bounds.width, pcdev->max_width);
1419 max_height = min(cap.bounds.height, pcdev->max_height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001420
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001421 /* Camera set a format, but geometry is not precise, try to improve */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001422 tmp_w = mf->width;
1423 tmp_h = mf->height;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001424
1425 /* width <= max_width && height <= max_height - guaranteed by try_fmt */
1426 while ((width > tmp_w || height > tmp_h) &&
1427 tmp_w < max_width && tmp_h < max_height) {
1428 tmp_w = min(2 * tmp_w, max_width);
1429 tmp_h = min(2 * tmp_h, max_height);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001430 mf->width = tmp_w;
1431 mf->height = tmp_h;
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -03001432 ret = v4l2_device_call_until_err(sd->v4l2_dev,
1433 soc_camera_grp_id(icd), video,
1434 s_mbus_fmt, mf);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001435 dev_geo(dev, "Camera scaled to %ux%u\n",
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001436 mf->width, mf->height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001437 if (ret < 0) {
1438 /* This shouldn't happen */
1439 dev_err(dev, "Client failed to set format: %d\n", ret);
1440 return ret;
1441 }
1442 }
1443
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001444update_cache:
1445 /* Update cache */
1446 ret = client_g_rect(sd, &cam->rect);
1447 if (ret < 0)
1448 return ret;
1449
Guennadi Liakhovetski36988742011-07-22 09:44:40 -03001450 if (ceu_1to1)
1451 cam->subrect = cam->rect;
1452 else
1453 update_subrect(cam);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001454
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001455 return 0;
1456}
1457
1458/**
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001459 * @width - on output: user width, mapped back to input
1460 * @height - on output: user height, mapped back to input
1461 * @mf - in- / output camera output window
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001462 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001463static int client_scale(struct soc_camera_device *icd,
1464 struct v4l2_mbus_framefmt *mf,
1465 unsigned int *width, unsigned int *height,
1466 bool ceu_can_scale)
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001467{
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001468 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001469 struct device *dev = icd->parent;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001470 struct v4l2_mbus_framefmt mf_tmp = *mf;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001471 unsigned int scale_h, scale_v;
1472 int ret;
1473
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001474 /*
1475 * 5. Apply iterative camera S_FMT for camera user window (also updates
1476 * client crop cache and the imaginary sub-rectangle).
1477 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001478 ret = client_s_fmt(icd, &mf_tmp, ceu_can_scale);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001479 if (ret < 0)
1480 return ret;
1481
1482 dev_geo(dev, "5: camera scaled to %ux%u\n",
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001483 mf_tmp.width, mf_tmp.height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001484
1485 /* 6. Retrieve camera output window (g_fmt) */
1486
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001487 /* unneeded - it is already in "mf_tmp" */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001488
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001489 /* 7. Calculate new client scales. */
1490 scale_h = calc_generic_scale(cam->rect.width, mf_tmp.width);
1491 scale_v = calc_generic_scale(cam->rect.height, mf_tmp.height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001492
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001493 mf->width = mf_tmp.width;
1494 mf->height = mf_tmp.height;
1495 mf->colorspace = mf_tmp.colorspace;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001496
1497 /*
1498 * 8. Calculate new CEU crop - apply camera scales to previously
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001499 * updated "effective" crop.
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001500 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001501 *width = scale_down(cam->subrect.width, scale_h);
1502 *height = scale_down(cam->subrect.height, scale_v);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001503
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001504 dev_geo(dev, "8: new client sub-window %ux%u\n", *width, *height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001505
1506 return 0;
1507}
1508
1509/*
1510 * CEU can scale and crop, but we don't want to waste bandwidth and kill the
1511 * framerate by always requesting the maximum image from the client. See
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001512 * Documentation/video4linux/sh_mobile_ceu_camera.txt for a description of
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001513 * scaling and cropping algorithms and for the meaning of referenced here steps.
1514 */
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001515static int sh_mobile_ceu_set_crop(struct soc_camera_device *icd,
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -03001516 struct v4l2_crop *a)
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001517{
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -03001518 struct v4l2_rect *rect = &a->c;
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001519 struct device *dev = icd->parent;
1520 struct soc_camera_host *ici = to_soc_camera_host(dev);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001521 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -03001522 struct v4l2_crop cam_crop;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001523 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001524 struct v4l2_rect *cam_rect = &cam_crop.c;
Guennadi Liakhovetskic9c1f1c2009-08-25 11:46:59 -03001525 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001526 struct v4l2_mbus_framefmt mf;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001527 unsigned int scale_cam_h, scale_cam_v, scale_ceu_h, scale_ceu_v,
Guennadi Liakhovetski787d0f92011-02-16 18:42:24 -03001528 out_width, out_height;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001529 int interm_width, interm_height;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001530 u32 capsr, cflcr;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001531 int ret;
1532
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001533 dev_geo(dev, "S_CROP(%ux%u@%u:%u)\n", rect->width, rect->height,
1534 rect->left, rect->top);
1535
1536 /* During camera cropping its output window can change too, stop CEU */
1537 capsr = capture_save_reset(pcdev);
1538 dev_dbg(dev, "CAPSR 0x%x, CFLCR 0x%x\n", capsr, pcdev->cflcr);
1539
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001540 /*
1541 * 1. - 2. Apply iterative camera S_CROP for new input window, read back
1542 * actual camera rectangle.
1543 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001544 ret = client_s_crop(icd, a, &cam_crop);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001545 if (ret < 0)
1546 return ret;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001547
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001548 dev_geo(dev, "1-2: camera cropped to %ux%u@%u:%u\n",
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001549 cam_rect->width, cam_rect->height,
1550 cam_rect->left, cam_rect->top);
1551
1552 /* On success cam_crop contains current camera crop */
1553
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001554 /* 3. Retrieve camera output window */
1555 ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
1556 if (ret < 0)
1557 return ret;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001558
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001559 if (mf.width > pcdev->max_width || mf.height > pcdev->max_height)
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001560 return -EINVAL;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001561
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001562 /* 4. Calculate camera scales */
1563 scale_cam_h = calc_generic_scale(cam_rect->width, mf.width);
1564 scale_cam_v = calc_generic_scale(cam_rect->height, mf.height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001565
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001566 /* Calculate intermediate window */
1567 interm_width = scale_down(rect->width, scale_cam_h);
1568 interm_height = scale_down(rect->height, scale_cam_v);
1569
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001570 if (interm_width < icd->user_width) {
1571 u32 new_scale_h;
1572
1573 new_scale_h = calc_generic_scale(rect->width, icd->user_width);
1574
1575 mf.width = scale_down(cam_rect->width, new_scale_h);
1576 }
1577
1578 if (interm_height < icd->user_height) {
1579 u32 new_scale_v;
1580
1581 new_scale_v = calc_generic_scale(rect->height, icd->user_height);
1582
1583 mf.height = scale_down(cam_rect->height, new_scale_v);
1584 }
1585
1586 if (interm_width < icd->user_width || interm_height < icd->user_height) {
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -03001587 ret = v4l2_device_call_until_err(sd->v4l2_dev,
1588 soc_camera_grp_id(icd), video,
1589 s_mbus_fmt, &mf);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001590 if (ret < 0)
1591 return ret;
1592
1593 dev_geo(dev, "New camera output %ux%u\n", mf.width, mf.height);
1594 scale_cam_h = calc_generic_scale(cam_rect->width, mf.width);
1595 scale_cam_v = calc_generic_scale(cam_rect->height, mf.height);
1596 interm_width = scale_down(rect->width, scale_cam_h);
1597 interm_height = scale_down(rect->height, scale_cam_v);
1598 }
1599
1600 /* Cache camera output window */
1601 cam->width = mf.width;
1602 cam->height = mf.height;
1603
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001604 if (pcdev->image_mode) {
1605 out_width = min(interm_width, icd->user_width);
1606 out_height = min(interm_height, icd->user_height);
1607 } else {
1608 out_width = interm_width;
1609 out_height = interm_height;
1610 }
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001611
1612 /*
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001613 * 5. Calculate CEU scales from camera scales from results of (5) and
1614 * the user window
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001615 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001616 scale_ceu_h = calc_scale(interm_width, &out_width);
1617 scale_ceu_v = calc_scale(interm_height, &out_height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001618
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001619 dev_geo(dev, "5: CEU scales %u:%u\n", scale_ceu_h, scale_ceu_v);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001620
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001621 /* Apply CEU scales. */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001622 cflcr = scale_ceu_h | (scale_ceu_v << 16);
1623 if (cflcr != pcdev->cflcr) {
1624 pcdev->cflcr = cflcr;
1625 ceu_write(pcdev, CFLCR, cflcr);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001626 }
1627
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001628 icd->user_width = out_width & ~3;
1629 icd->user_height = out_height & ~3;
1630 /* Offsets are applied at the CEU scaling filter input */
Guennadi Liakhovetski787d0f92011-02-16 18:42:24 -03001631 cam->ceu_left = scale_down(rect->left - cam_rect->left, scale_cam_h) & ~1;
1632 cam->ceu_top = scale_down(rect->top - cam_rect->top, scale_cam_v) & ~1;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001633
1634 /* 6. Use CEU cropping to crop to the new window. */
1635 sh_mobile_ceu_set_rect(icd);
1636
1637 cam->subrect = *rect;
1638
1639 dev_geo(dev, "6: CEU cropped to %ux%u@%u:%u\n",
1640 icd->user_width, icd->user_height,
1641 cam->ceu_left, cam->ceu_top);
1642
Guennadi Liakhovetski787d0f92011-02-16 18:42:24 -03001643 /* Restore capture. The CE bit can be cleared by the hardware */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001644 if (pcdev->active)
1645 capsr |= 1;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001646 capture_restore(pcdev, capsr);
1647
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001648 /* Even if only camera cropping succeeded */
1649 return ret;
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001650}
1651
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001652static int sh_mobile_ceu_get_crop(struct soc_camera_device *icd,
1653 struct v4l2_crop *a)
1654{
1655 struct sh_mobile_ceu_cam *cam = icd->host_priv;
1656
1657 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1658 a->c = cam->subrect;
1659
1660 return 0;
1661}
1662
1663/*
1664 * Calculate real client output window by applying new scales to the current
1665 * client crop. New scales are calculated from the requested output format and
1666 * CEU crop, mapped backed onto the client input (subrect).
1667 */
1668static void calculate_client_output(struct soc_camera_device *icd,
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001669 const struct v4l2_pix_format *pix, struct v4l2_mbus_framefmt *mf)
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001670{
1671 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001672 struct device *dev = icd->parent;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001673 struct v4l2_rect *cam_subrect = &cam->subrect;
1674 unsigned int scale_v, scale_h;
1675
1676 if (cam_subrect->width == cam->rect.width &&
1677 cam_subrect->height == cam->rect.height) {
1678 /* No sub-cropping */
1679 mf->width = pix->width;
1680 mf->height = pix->height;
1681 return;
1682 }
1683
1684 /* 1.-2. Current camera scales and subwin - cached. */
1685
1686 dev_geo(dev, "2: subwin %ux%u@%u:%u\n",
1687 cam_subrect->width, cam_subrect->height,
1688 cam_subrect->left, cam_subrect->top);
1689
1690 /*
1691 * 3. Calculate new combined scales from input sub-window to requested
1692 * user window.
1693 */
1694
1695 /*
1696 * TODO: CEU cannot scale images larger than VGA to smaller than SubQCIF
1697 * (128x96) or larger than VGA
1698 */
1699 scale_h = calc_generic_scale(cam_subrect->width, pix->width);
1700 scale_v = calc_generic_scale(cam_subrect->height, pix->height);
1701
1702 dev_geo(dev, "3: scales %u:%u\n", scale_h, scale_v);
1703
1704 /*
Guennadi Liakhovetski36988742011-07-22 09:44:40 -03001705 * 4. Calculate desired client output window by applying combined scales
1706 * to client (real) input window.
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001707 */
1708 mf->width = scale_down(cam->rect.width, scale_h);
1709 mf->height = scale_down(cam->rect.height, scale_v);
1710}
1711
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001712/* Similar to set_crop multistage iterative algorithm */
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001713static int sh_mobile_ceu_set_fmt(struct soc_camera_device *icd,
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001714 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001715{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001716 struct device *dev = icd->parent;
1717 struct soc_camera_host *ici = to_soc_camera_host(dev);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001718 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001719 struct sh_mobile_ceu_cam *cam = icd->host_priv;
1720 struct v4l2_pix_format *pix = &f->fmt.pix;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001721 struct v4l2_mbus_framefmt mf;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001722 __u32 pixfmt = pix->pixelformat;
Magnus Damm9414de32008-12-18 11:49:06 -03001723 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001724 /* Keep Compiler Happy */
1725 unsigned int ceu_sub_width = 0, ceu_sub_height = 0;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001726 u16 scale_v, scale_h;
1727 int ret;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001728 bool image_mode;
1729 enum v4l2_field field;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001730
1731 switch (pix->field) {
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001732 default:
1733 pix->field = V4L2_FIELD_NONE;
1734 /* fall-through */
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001735 case V4L2_FIELD_INTERLACED_TB:
1736 case V4L2_FIELD_INTERLACED_BT:
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001737 case V4L2_FIELD_NONE:
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001738 field = pix->field;
1739 break;
1740 case V4L2_FIELD_INTERLACED:
1741 field = V4L2_FIELD_INTERLACED_TB;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001742 break;
1743 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001744
Magnus Damm9414de32008-12-18 11:49:06 -03001745 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1746 if (!xlate) {
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001747 dev_warn(dev, "Format %x not found\n", pixfmt);
Magnus Damm9414de32008-12-18 11:49:06 -03001748 return -EINVAL;
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001749 }
1750
Guennadi Liakhovetski36988742011-07-22 09:44:40 -03001751 /* 1.-4. Calculate desired client output geometry */
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001752 calculate_client_output(icd, pix, &mf);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001753 mf.field = pix->field;
1754 mf.colorspace = pix->colorspace;
1755 mf.code = xlate->code;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001756
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001757 switch (pixfmt) {
1758 case V4L2_PIX_FMT_NV12:
1759 case V4L2_PIX_FMT_NV21:
1760 case V4L2_PIX_FMT_NV16:
1761 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001762 image_mode = true;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001763 break;
1764 default:
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001765 image_mode = false;
Magnus Damm9414de32008-12-18 11:49:06 -03001766 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001767
Guennadi Liakhovetskib5518a42011-11-03 10:11:11 -03001768 dev_geo(dev, "S_FMT(pix=0x%x, fld 0x%x, code 0x%x, %ux%u)\n", pixfmt, mf.field, mf.code,
Guennadi Liakhovetskie1db7042011-07-27 18:17:56 -03001769 pix->width, pix->height);
1770
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001771 dev_geo(dev, "4: request camera output %ux%u\n", mf.width, mf.height);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001772
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001773 /* 5. - 9. */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001774 ret = client_scale(icd, &mf, &ceu_sub_width, &ceu_sub_height,
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001775 image_mode && V4L2_FIELD_NONE == field);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001776
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001777 dev_geo(dev, "5-9: client scale return %d\n", ret);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001778
1779 /* Done with the camera. Now see if we can improve the result */
1780
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001781 dev_geo(dev, "fmt %ux%u, requested %ux%u\n",
1782 mf.width, mf.height, pix->width, pix->height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001783 if (ret < 0)
1784 return ret;
1785
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001786 if (mf.code != xlate->code)
1787 return -EINVAL;
1788
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001789 /* 9. Prepare CEU crop */
1790 cam->width = mf.width;
1791 cam->height = mf.height;
1792
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001793 /* 10. Use CEU scaling to scale to the requested user window. */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001794
1795 /* We cannot scale up */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001796 if (pix->width > ceu_sub_width)
1797 ceu_sub_width = pix->width;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001798
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001799 if (pix->height > ceu_sub_height)
1800 ceu_sub_height = pix->height;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001801
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001802 pix->colorspace = mf.colorspace;
1803
1804 if (image_mode) {
1805 /* Scale pix->{width x height} down to width x height */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001806 scale_h = calc_scale(ceu_sub_width, &pix->width);
1807 scale_v = calc_scale(ceu_sub_height, &pix->height);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001808 } else {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001809 pix->width = ceu_sub_width;
1810 pix->height = ceu_sub_height;
1811 scale_h = 0;
1812 scale_v = 0;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001813 }
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001814
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001815 pcdev->cflcr = scale_h | (scale_v << 16);
1816
1817 /*
1818 * We have calculated CFLCR, the actual configuration will be performed
1819 * in sh_mobile_ceu_set_bus_param()
1820 */
1821
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001822 dev_geo(dev, "10: W: %u : 0x%x = %u, H: %u : 0x%x = %u\n",
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001823 ceu_sub_width, scale_h, pix->width,
1824 ceu_sub_height, scale_v, pix->height);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001825
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001826 cam->code = xlate->code;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001827 icd->current_fmt = xlate;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001828
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001829 pcdev->field = field;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001830 pcdev->image_mode = image_mode;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001831
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001832 /* CFSZR requirement */
1833 pix->width &= ~3;
1834 pix->height &= ~3;
1835
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001836 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001837}
1838
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001839static int sh_mobile_ceu_try_fmt(struct soc_camera_device *icd,
1840 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001841{
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001842 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
1843 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm9414de32008-12-18 11:49:06 -03001844 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001845 struct v4l2_pix_format *pix = &f->fmt.pix;
Guennadi Liakhovetskic9c1f1c2009-08-25 11:46:59 -03001846 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001847 struct v4l2_mbus_framefmt mf;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001848 __u32 pixfmt = pix->pixelformat;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001849 int width, height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001850 int ret;
Guennadi Liakhovetskia2c8c682008-12-01 09:44:53 -03001851
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001852 dev_geo(icd->parent, "TRY_FMT(pix=0x%x, %ux%u)\n",
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001853 pixfmt, pix->width, pix->height);
1854
Magnus Damm9414de32008-12-18 11:49:06 -03001855 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1856 if (!xlate) {
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001857 dev_warn(icd->parent, "Format %x not found\n", pixfmt);
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001858 return -EINVAL;
Magnus Damm9414de32008-12-18 11:49:06 -03001859 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001860
Magnus Damm0d3244d2008-07-16 22:59:28 -03001861 /* FIXME: calculate using depth and bus width */
1862
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001863 /* CFSZR requires height and width to be 4-pixel aligned */
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001864 v4l_bound_align_image(&pix->width, 2, pcdev->max_width, 2,
1865 &pix->height, 4, pcdev->max_height, 2, 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001866
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001867 width = pix->width;
1868 height = pix->height;
1869
Magnus Damm0d3244d2008-07-16 22:59:28 -03001870 /* limit to sensor capabilities */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001871 mf.width = pix->width;
1872 mf.height = pix->height;
1873 mf.field = pix->field;
1874 mf.code = xlate->code;
1875 mf.colorspace = pix->colorspace;
1876
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -03001877 ret = v4l2_device_call_until_err(sd->v4l2_dev, soc_camera_grp_id(icd),
1878 video, try_mbus_fmt, &mf);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001879 if (ret < 0)
1880 return ret;
1881
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001882 pix->width = mf.width;
1883 pix->height = mf.height;
1884 pix->field = mf.field;
1885 pix->colorspace = mf.colorspace;
1886
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001887 switch (pixfmt) {
1888 case V4L2_PIX_FMT_NV12:
1889 case V4L2_PIX_FMT_NV21:
1890 case V4L2_PIX_FMT_NV16:
1891 case V4L2_PIX_FMT_NV61:
1892 /* FIXME: check against rect_max after converting soc-camera */
1893 /* We can scale precisely, need a bigger image from camera */
1894 if (pix->width < width || pix->height < height) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001895 /*
1896 * We presume, the sensor behaves sanely, i.e., if
1897 * requested a bigger rectangle, it will not return a
1898 * smaller one.
1899 */
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03001900 mf.width = pcdev->max_width;
1901 mf.height = pcdev->max_height;
Guennadi Liakhovetski4c0b0362011-12-05 16:01:13 -03001902 ret = v4l2_device_call_until_err(sd->v4l2_dev,
1903 soc_camera_grp_id(icd), video,
1904 try_mbus_fmt, &mf);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001905 if (ret < 0) {
1906 /* Shouldn't actually happen... */
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001907 dev_err(icd->parent,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001908 "FIXME: client try_fmt() = %d\n", ret);
1909 return ret;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001910 }
1911 }
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001912 /* We will scale exactly */
1913 if (mf.width > width)
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001914 pix->width = width;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001915 if (mf.height > height)
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001916 pix->height = height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001917 }
1918
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001919 pix->width &= ~3;
1920 pix->height &= ~3;
1921
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001922 dev_geo(icd->parent, "%s(): return %d, fmt 0x%x, %ux%u\n",
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001923 __func__, ret, pix->pixelformat, pix->width, pix->height);
1924
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001925 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001926}
1927
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001928static int sh_mobile_ceu_set_livecrop(struct soc_camera_device *icd,
1929 struct v4l2_crop *a)
1930{
1931 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001932 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001933 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1934 u32 out_width = icd->user_width, out_height = icd->user_height;
1935 int ret;
1936
1937 /* Freeze queue */
1938 pcdev->frozen = 1;
1939 /* Wait for frame */
1940 ret = wait_for_completion_interruptible(&pcdev->complete);
1941 /* Stop the client */
1942 ret = v4l2_subdev_call(sd, video, s_stream, 0);
1943 if (ret < 0)
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001944 dev_warn(icd->parent,
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001945 "Client failed to stop the stream: %d\n", ret);
1946 else
1947 /* Do the crop, if it fails, there's nothing more we can do */
1948 sh_mobile_ceu_set_crop(icd, a);
1949
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001950 dev_geo(icd->parent, "Output after crop: %ux%u\n", icd->user_width, icd->user_height);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001951
1952 if (icd->user_width != out_width || icd->user_height != out_height) {
1953 struct v4l2_format f = {
1954 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
1955 .fmt.pix = {
1956 .width = out_width,
1957 .height = out_height,
1958 .pixelformat = icd->current_fmt->host_fmt->fourcc,
1959 .field = pcdev->field,
1960 .colorspace = icd->colorspace,
1961 },
1962 };
1963 ret = sh_mobile_ceu_set_fmt(icd, &f);
1964 if (!ret && (out_width != f.fmt.pix.width ||
1965 out_height != f.fmt.pix.height))
1966 ret = -EINVAL;
1967 if (!ret) {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001968 icd->user_width = out_width & ~3;
1969 icd->user_height = out_height & ~3;
Guennadi Liakhovetski8843d112011-09-21 17:52:51 -03001970 ret = sh_mobile_ceu_set_bus_param(icd);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001971 }
1972 }
1973
1974 /* Thaw the queue */
1975 pcdev->frozen = 0;
1976 spin_lock_irq(&pcdev->lock);
1977 sh_mobile_ceu_capture(pcdev);
1978 spin_unlock_irq(&pcdev->lock);
1979 /* Start the client */
1980 ret = v4l2_subdev_call(sd, video, s_stream, 1);
1981 return ret;
1982}
1983
Magnus Damm0d3244d2008-07-16 22:59:28 -03001984static unsigned int sh_mobile_ceu_poll(struct file *file, poll_table *pt)
1985{
Guennadi Liakhovetski57bee292010-08-17 14:29:51 -03001986 struct soc_camera_device *icd = file->private_data;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001987
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001988 return vb2_poll(&icd->vb2_vidq, file, pt);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001989}
1990
1991static int sh_mobile_ceu_querycap(struct soc_camera_host *ici,
1992 struct v4l2_capability *cap)
1993{
1994 strlcpy(cap->card, "SuperH_Mobile_CEU", sizeof(cap->card));
Magnus Damm0d3244d2008-07-16 22:59:28 -03001995 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1996 return 0;
1997}
1998
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001999static int sh_mobile_ceu_init_videobuf(struct vb2_queue *q,
2000 struct soc_camera_device *icd)
Magnus Damm0d3244d2008-07-16 22:59:28 -03002001{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002002 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2003 q->io_modes = VB2_MMAP | VB2_USERPTR;
2004 q->drv_priv = icd;
2005 q->ops = &sh_mobile_ceu_videobuf_ops;
2006 q->mem_ops = &vb2_dma_contig_memops;
2007 q->buf_struct_size = sizeof(struct sh_mobile_ceu_buffer);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002008
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002009 return vb2_queue_init(q);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002010}
2011
2012static struct soc_camera_host_ops sh_mobile_ceu_host_ops = {
2013 .owner = THIS_MODULE,
2014 .add = sh_mobile_ceu_add_device,
2015 .remove = sh_mobile_ceu_remove_device,
Magnus Damm9414de32008-12-18 11:49:06 -03002016 .get_formats = sh_mobile_ceu_get_formats,
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03002017 .put_formats = sh_mobile_ceu_put_formats,
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03002018 .get_crop = sh_mobile_ceu_get_crop,
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03002019 .set_crop = sh_mobile_ceu_set_crop,
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03002020 .set_livecrop = sh_mobile_ceu_set_livecrop,
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03002021 .set_fmt = sh_mobile_ceu_set_fmt,
2022 .try_fmt = sh_mobile_ceu_try_fmt,
Magnus Damm0d3244d2008-07-16 22:59:28 -03002023 .poll = sh_mobile_ceu_poll,
2024 .querycap = sh_mobile_ceu_querycap,
Magnus Damm0d3244d2008-07-16 22:59:28 -03002025 .set_bus_param = sh_mobile_ceu_set_bus_param,
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002026 .init_videobuf2 = sh_mobile_ceu_init_videobuf,
Magnus Damm0d3244d2008-07-16 22:59:28 -03002027};
2028
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002029struct bus_wait {
2030 struct notifier_block notifier;
2031 struct completion completion;
2032 struct device *dev;
2033};
2034
2035static int bus_notify(struct notifier_block *nb,
2036 unsigned long action, void *data)
2037{
2038 struct device *dev = data;
2039 struct bus_wait *wait = container_of(nb, struct bus_wait, notifier);
2040
2041 if (wait->dev != dev)
2042 return NOTIFY_DONE;
2043
2044 switch (action) {
2045 case BUS_NOTIFY_UNBOUND_DRIVER:
2046 /* Protect from module unloading */
2047 wait_for_completion(&wait->completion);
2048 return NOTIFY_OK;
2049 }
2050 return NOTIFY_DONE;
2051}
2052
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03002053static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -03002054{
2055 struct sh_mobile_ceu_dev *pcdev;
2056 struct resource *res;
2057 void __iomem *base;
2058 unsigned int irq;
2059 int err = 0;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002060 struct bus_wait wait = {
2061 .completion = COMPLETION_INITIALIZER_ONSTACK(wait.completion),
2062 .notifier.notifier_call = bus_notify,
2063 };
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002064 struct sh_mobile_ceu_companion *csi2;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002065
2066 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2067 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb89fc2e2010-01-09 20:45:13 -03002068 if (!res || (int)irq <= 0) {
Magnus Damm0d3244d2008-07-16 22:59:28 -03002069 dev_err(&pdev->dev, "Not enough CEU platform resources.\n");
2070 err = -ENODEV;
2071 goto exit;
2072 }
2073
2074 pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
2075 if (!pcdev) {
2076 dev_err(&pdev->dev, "Could not allocate pcdev\n");
2077 err = -ENOMEM;
2078 goto exit;
2079 }
2080
Magnus Damm0d3244d2008-07-16 22:59:28 -03002081 INIT_LIST_HEAD(&pcdev->capture);
2082 spin_lock_init(&pcdev->lock);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03002083 init_completion(&pcdev->complete);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002084
2085 pcdev->pdata = pdev->dev.platform_data;
2086 if (!pcdev->pdata) {
2087 err = -EINVAL;
2088 dev_err(&pdev->dev, "CEU platform data not set.\n");
2089 goto exit_kfree;
2090 }
2091
Guennadi Liakhovetski48e971c2012-03-14 08:37:03 -03002092 pcdev->max_width = pcdev->pdata->max_width ? : 2560;
2093 pcdev->max_height = pcdev->pdata->max_height ? : 1920;
2094
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03002095 base = ioremap_nocache(res->start, resource_size(res));
Magnus Damm0d3244d2008-07-16 22:59:28 -03002096 if (!base) {
2097 err = -ENXIO;
2098 dev_err(&pdev->dev, "Unable to ioremap CEU registers.\n");
2099 goto exit_kfree;
2100 }
2101
2102 pcdev->irq = irq;
2103 pcdev->base = base;
2104 pcdev->video_limit = 0; /* only enabled if second resource exists */
Magnus Damm0d3244d2008-07-16 22:59:28 -03002105
2106 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2107 if (res) {
2108 err = dma_declare_coherent_memory(&pdev->dev, res->start,
2109 res->start,
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03002110 resource_size(res),
Magnus Damm0d3244d2008-07-16 22:59:28 -03002111 DMA_MEMORY_MAP |
2112 DMA_MEMORY_EXCLUSIVE);
2113 if (!err) {
2114 dev_err(&pdev->dev, "Unable to declare CEU memory.\n");
2115 err = -ENXIO;
2116 goto exit_iounmap;
2117 }
2118
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03002119 pcdev->video_limit = resource_size(res);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002120 }
2121
2122 /* request irq */
2123 err = request_irq(pcdev->irq, sh_mobile_ceu_irq, IRQF_DISABLED,
Kay Sieversaf128a12008-10-30 00:51:46 -03002124 dev_name(&pdev->dev), pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002125 if (err) {
2126 dev_err(&pdev->dev, "Unable to register CEU interrupt.\n");
2127 goto exit_release_mem;
2128 }
2129
Magnus Damm6d1386c2009-08-14 10:49:17 +00002130 pm_suspend_ignore_children(&pdev->dev, true);
2131 pm_runtime_enable(&pdev->dev);
2132 pm_runtime_resume(&pdev->dev);
Magnus Damma42b6dd2008-10-31 20:21:44 +09002133
Magnus Damm0d3244d2008-07-16 22:59:28 -03002134 pcdev->ici.priv = pcdev;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03002135 pcdev->ici.v4l2_dev.dev = &pdev->dev;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002136 pcdev->ici.nr = pdev->id;
Kay Sieversaf128a12008-10-30 00:51:46 -03002137 pcdev->ici.drv_name = dev_name(&pdev->dev);
2138 pcdev->ici.ops = &sh_mobile_ceu_host_ops;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002139
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002140 pcdev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
2141 if (IS_ERR(pcdev->alloc_ctx)) {
2142 err = PTR_ERR(pcdev->alloc_ctx);
2143 goto exit_free_clk;
2144 }
2145
2146 err = soc_camera_host_register(&pcdev->ici);
2147 if (err)
2148 goto exit_free_ctx;
2149
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002150 /* CSI2 interfacing */
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002151 csi2 = pcdev->pdata->csi2;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002152 if (csi2) {
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002153 struct platform_device *csi2_pdev =
2154 platform_device_alloc("sh-mobile-csi2", csi2->id);
2155 struct sh_csi2_pdata *csi2_pdata = csi2->platform_data;
2156
2157 if (!csi2_pdev) {
2158 err = -ENOMEM;
2159 goto exit_host_unregister;
2160 }
2161
2162 pcdev->csi2_pdev = csi2_pdev;
2163
2164 err = platform_device_add_data(csi2_pdev, csi2_pdata, sizeof(*csi2_pdata));
2165 if (err < 0)
2166 goto exit_pdev_put;
2167
2168 csi2_pdata = csi2_pdev->dev.platform_data;
2169 csi2_pdata->v4l2_dev = &pcdev->ici.v4l2_dev;
2170
2171 csi2_pdev->resource = csi2->resource;
2172 csi2_pdev->num_resources = csi2->num_resources;
2173
2174 err = platform_device_add(csi2_pdev);
2175 if (err < 0)
2176 goto exit_pdev_put;
2177
2178 wait.dev = &csi2_pdev->dev;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002179
2180 err = bus_register_notifier(&platform_bus_type, &wait.notifier);
2181 if (err < 0)
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002182 goto exit_pdev_unregister;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002183
2184 /*
2185 * From this point the driver module will not unload, until
2186 * we complete the completion.
2187 */
2188
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002189 if (!csi2_pdev->dev.driver) {
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002190 complete(&wait.completion);
2191 /* Either too late, or probing failed */
2192 bus_unregister_notifier(&platform_bus_type, &wait.notifier);
2193 err = -ENXIO;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002194 goto exit_pdev_unregister;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002195 }
2196
2197 /*
2198 * The module is still loaded, in the worst case it is hanging
2199 * in device release on our completion. So, _now_ dereferencing
2200 * the "owner" is safe!
2201 */
2202
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002203 err = try_module_get(csi2_pdev->dev.driver->owner);
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002204
2205 /* Let notifier complete, if it has been locked */
2206 complete(&wait.completion);
2207 bus_unregister_notifier(&platform_bus_type, &wait.notifier);
2208 if (!err) {
2209 err = -ENODEV;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002210 goto exit_pdev_unregister;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002211 }
2212 }
2213
Magnus Damm0d3244d2008-07-16 22:59:28 -03002214 return 0;
2215
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002216exit_pdev_unregister:
2217 platform_device_del(pcdev->csi2_pdev);
2218exit_pdev_put:
2219 pcdev->csi2_pdev->resource = NULL;
2220 platform_device_put(pcdev->csi2_pdev);
2221exit_host_unregister:
2222 soc_camera_host_unregister(&pcdev->ici);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002223exit_free_ctx:
2224 vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
Kuninori Morimoto055e05a2009-11-09 16:13:24 -03002225exit_free_clk:
2226 pm_runtime_disable(&pdev->dev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002227 free_irq(pcdev->irq, pcdev);
2228exit_release_mem:
2229 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
2230 dma_release_declared_memory(&pdev->dev);
2231exit_iounmap:
2232 iounmap(base);
2233exit_kfree:
2234 kfree(pcdev);
2235exit:
2236 return err;
2237}
2238
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03002239static int __devexit sh_mobile_ceu_remove(struct platform_device *pdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -03002240{
Guennadi Liakhovetskieff505f2009-04-24 12:55:48 -03002241 struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
2242 struct sh_mobile_ceu_dev *pcdev = container_of(soc_host,
2243 struct sh_mobile_ceu_dev, ici);
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002244 struct platform_device *csi2_pdev = pcdev->csi2_pdev;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002245
Guennadi Liakhovetskieff505f2009-04-24 12:55:48 -03002246 soc_camera_host_unregister(soc_host);
Kuninori Morimoto055e05a2009-11-09 16:13:24 -03002247 pm_runtime_disable(&pdev->dev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002248 free_irq(pcdev->irq, pcdev);
2249 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
2250 dma_release_declared_memory(&pdev->dev);
2251 iounmap(pcdev->base);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002252 vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002253 if (csi2_pdev && csi2_pdev->dev.driver) {
2254 struct module *csi2_drv = csi2_pdev->dev.driver->owner;
2255 platform_device_del(csi2_pdev);
2256 csi2_pdev->resource = NULL;
2257 platform_device_put(csi2_pdev);
2258 module_put(csi2_drv);
2259 }
Magnus Damm0d3244d2008-07-16 22:59:28 -03002260 kfree(pcdev);
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002261
Magnus Damm0d3244d2008-07-16 22:59:28 -03002262 return 0;
2263}
2264
Magnus Damm6d1386c2009-08-14 10:49:17 +00002265static int sh_mobile_ceu_runtime_nop(struct device *dev)
2266{
2267 /* Runtime PM callback shared between ->runtime_suspend()
2268 * and ->runtime_resume(). Simply returns success.
2269 *
2270 * This driver re-initializes all registers after
2271 * pm_runtime_get_sync() anyway so there is no need
2272 * to save and restore registers here.
2273 */
2274 return 0;
2275}
2276
Alexey Dobriyan47145212009-12-14 18:00:08 -08002277static const struct dev_pm_ops sh_mobile_ceu_dev_pm_ops = {
Magnus Damm6d1386c2009-08-14 10:49:17 +00002278 .runtime_suspend = sh_mobile_ceu_runtime_nop,
2279 .runtime_resume = sh_mobile_ceu_runtime_nop,
2280};
2281
Magnus Damm0d3244d2008-07-16 22:59:28 -03002282static struct platform_driver sh_mobile_ceu_driver = {
2283 .driver = {
2284 .name = "sh_mobile_ceu",
Magnus Damm6d1386c2009-08-14 10:49:17 +00002285 .pm = &sh_mobile_ceu_dev_pm_ops,
Magnus Damm0d3244d2008-07-16 22:59:28 -03002286 },
2287 .probe = sh_mobile_ceu_probe,
Uwe Kleine-König50e55fd2009-12-10 17:00:13 -03002288 .remove = __devexit_p(sh_mobile_ceu_remove),
Magnus Damm0d3244d2008-07-16 22:59:28 -03002289};
2290
2291static int __init sh_mobile_ceu_init(void)
2292{
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002293 /* Whatever return code */
2294 request_module("sh_mobile_csi2");
Magnus Damm0d3244d2008-07-16 22:59:28 -03002295 return platform_driver_register(&sh_mobile_ceu_driver);
2296}
2297
2298static void __exit sh_mobile_ceu_exit(void)
2299{
Paul Mundt01c1e4c2008-08-01 19:48:51 -03002300 platform_driver_unregister(&sh_mobile_ceu_driver);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002301}
2302
2303module_init(sh_mobile_ceu_init);
2304module_exit(sh_mobile_ceu_exit);
2305
2306MODULE_DESCRIPTION("SuperH Mobile CEU driver");
2307MODULE_AUTHOR("Magnus Damm");
2308MODULE_LICENSE("GPL");
Mauro Carvalho Chehab64dc3c12011-06-25 11:28:37 -03002309MODULE_VERSION("0.0.6");
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03002310MODULE_ALIAS("platform:sh_mobile_ceu");