blob: f753df14aa3f83350ac20a14e271983c91022bb0 [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;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -030093 enum v4l2_mbus_pixelcode code;
Magnus Damm0d3244d2008-07-16 22:59:28 -030094};
95
96struct sh_mobile_ceu_dev {
Magnus Damm0d3244d2008-07-16 22:59:28 -030097 struct soc_camera_host ici;
98 struct soc_camera_device *icd;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -030099 struct platform_device *csi2_pdev;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300100
101 unsigned int irq;
102 void __iomem *base;
103 unsigned long video_limit;
104
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
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300115 enum v4l2_field field;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300116 int sequence;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300117
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300118 unsigned int image_mode:1;
119 unsigned int is_16bit:1;
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300120 unsigned int frozen:1;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300121};
122
123struct sh_mobile_ceu_cam {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300124 /* CEU offsets within the camera output, before the CEU scaler */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300125 unsigned int ceu_left;
126 unsigned int ceu_top;
127 /* Client output, as seen by the CEU */
128 unsigned int width;
129 unsigned int height;
130 /*
131 * User window from S_CROP / G_CROP, produced by client cropping and
132 * scaling, CEU scaling and CEU cropping, mapped back onto the client
133 * input window
134 */
135 struct v4l2_rect subrect;
136 /* Camera cropping rectangle */
137 struct v4l2_rect rect;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300138 const struct soc_mbus_pixelfmt *extra_fmt;
139 enum v4l2_mbus_pixelcode code;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300140};
141
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300142static struct sh_mobile_ceu_buffer *to_ceu_vb(struct vb2_buffer *vb)
143{
144 return container_of(vb, struct sh_mobile_ceu_buffer, vb);
145}
146
Kuninori Morimotoc354b402009-02-23 12:12:58 -0300147static unsigned long make_bus_param(struct sh_mobile_ceu_dev *pcdev)
148{
149 unsigned long flags;
150
151 flags = SOCAM_MASTER |
152 SOCAM_PCLK_SAMPLE_RISING |
153 SOCAM_HSYNC_ACTIVE_HIGH |
154 SOCAM_HSYNC_ACTIVE_LOW |
155 SOCAM_VSYNC_ACTIVE_HIGH |
156 SOCAM_VSYNC_ACTIVE_LOW |
157 SOCAM_DATA_ACTIVE_HIGH;
158
159 if (pcdev->pdata->flags & SH_CEU_FLAG_USE_8BIT_BUS)
160 flags |= SOCAM_DATAWIDTH_8;
161
162 if (pcdev->pdata->flags & SH_CEU_FLAG_USE_16BIT_BUS)
163 flags |= SOCAM_DATAWIDTH_16;
164
165 if (flags & SOCAM_DATAWIDTH_MASK)
166 return flags;
167
168 return 0;
169}
170
Magnus Damm0d3244d2008-07-16 22:59:28 -0300171static void ceu_write(struct sh_mobile_ceu_dev *priv,
Magnus Damm7a1a8162008-12-18 12:50:30 -0300172 unsigned long reg_offs, u32 data)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300173{
174 iowrite32(data, priv->base + reg_offs);
175}
176
Magnus Damm7a1a8162008-12-18 12:50:30 -0300177static u32 ceu_read(struct sh_mobile_ceu_dev *priv, unsigned long reg_offs)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300178{
179 return ioread32(priv->base + reg_offs);
180}
181
Kuninori Morimotob1de7ae2009-10-05 12:48:20 -0300182static int sh_mobile_ceu_soft_reset(struct sh_mobile_ceu_dev *pcdev)
183{
184 int i, success = 0;
185 struct soc_camera_device *icd = pcdev->icd;
186
187 ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
188
189 /* wait CSTSR.CPTON bit */
190 for (i = 0; i < 1000; i++) {
191 if (!(ceu_read(pcdev, CSTSR) & 1)) {
192 success++;
193 break;
194 }
195 udelay(1);
196 }
197
198 /* wait CAPSR.CPKIL bit */
199 for (i = 0; i < 1000; i++) {
200 if (!(ceu_read(pcdev, CAPSR) & (1 << 16))) {
201 success++;
202 break;
203 }
204 udelay(1);
205 }
206
207
208 if (2 != success) {
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300209 dev_warn(icd->pdev, "soft reset time out\n");
Kuninori Morimotob1de7ae2009-10-05 12:48:20 -0300210 return -EIO;
211 }
212
213 return 0;
214}
215
Magnus Damm0d3244d2008-07-16 22:59:28 -0300216/*
217 * Videobuf operations
218 */
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300219static int sh_mobile_ceu_videobuf_setup(struct vb2_queue *vq,
220 unsigned int *count, unsigned int *num_planes,
Marek Szyprowski035aa142011-08-24 06:43:36 -0300221 unsigned int sizes[], void *alloc_ctxs[])
Magnus Damm0d3244d2008-07-16 22:59:28 -0300222{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300223 struct soc_camera_device *icd = container_of(vq, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300224 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300225 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300226 int bytes_per_line = soc_mbus_bytes_per_line(icd->user_width,
227 icd->current_fmt->host_fmt);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300228
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300229 if (bytes_per_line < 0)
230 return bytes_per_line;
231
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300232 *num_planes = 1;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300233
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300234 pcdev->sequence = 0;
235 sizes[0] = bytes_per_line * icd->user_height;
236 alloc_ctxs[0] = pcdev->alloc_ctx;
237
238 if (!*count)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300239 *count = 2;
240
241 if (pcdev->video_limit) {
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300242 if (PAGE_ALIGN(sizes[0]) * *count > pcdev->video_limit)
243 *count = pcdev->video_limit / PAGE_ALIGN(sizes[0]);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300244 }
245
Marek Szyprowski035aa142011-08-24 06:43:36 -0300246 dev_dbg(icd->parent, "count=%d, size=%u\n", *count, sizes[0]);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300247
248 return 0;
249}
250
Magnus Damm7a1a8162008-12-18 12:50:30 -0300251#define CEU_CETCR_MAGIC 0x0317f313 /* acknowledge magical interrupt sources */
252#define CEU_CETCR_IGRW (1 << 4) /* prohibited register access interrupt bit */
253#define CEU_CEIER_CPEIE (1 << 0) /* one-frame capture end interrupt */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300254#define CEU_CEIER_VBP (1 << 20) /* vbp error */
Magnus Damm7a1a8162008-12-18 12:50:30 -0300255#define CEU_CAPCR_CTNCP (1 << 16) /* continuous capture mode (if set) */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300256#define CEU_CEIER_MASK (CEU_CEIER_CPEIE | CEU_CEIER_VBP)
Magnus Damm7a1a8162008-12-18 12:50:30 -0300257
258
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300259/*
260 * return value doesn't reflex the success/failure to queue the new buffer,
261 * but rather the status of the previous buffer.
262 */
263static int sh_mobile_ceu_capture(struct sh_mobile_ceu_dev *pcdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300264{
Magnus Damm8be65dc2008-12-18 12:38:06 -0300265 struct soc_camera_device *icd = pcdev->icd;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300266 dma_addr_t phys_addr_top, phys_addr_bottom;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300267 unsigned long top1, top2;
268 unsigned long bottom1, bottom2;
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300269 u32 status;
270 int ret = 0;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300271
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300272 /*
273 * The hardware is _very_ picky about this sequence. Especially
Magnus Damm7a1a8162008-12-18 12:50:30 -0300274 * the CEU_CETCR_MAGIC value. It seems like we need to acknowledge
275 * several not-so-well documented interrupt sources in CETCR.
276 */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300277 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) & ~CEU_CEIER_MASK);
278 status = ceu_read(pcdev, CETCR);
279 ceu_write(pcdev, CETCR, ~status & CEU_CETCR_MAGIC);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300280 if (!pcdev->frozen)
281 ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) | CEU_CEIER_MASK);
Magnus Damm7a1a8162008-12-18 12:50:30 -0300282 ceu_write(pcdev, CAPCR, ceu_read(pcdev, CAPCR) & ~CEU_CAPCR_CTNCP);
283 ceu_write(pcdev, CETCR, CEU_CETCR_MAGIC ^ CEU_CETCR_IGRW);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300284
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300285 /*
286 * When a VBP interrupt occurs, a capture end interrupt does not occur
287 * and the image of that frame is not captured correctly. So, soft reset
288 * is needed here.
289 */
290 if (status & CEU_CEIER_VBP) {
291 sh_mobile_ceu_soft_reset(pcdev);
292 ret = -EIO;
293 }
294
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300295 if (pcdev->frozen) {
296 complete(&pcdev->complete);
297 return ret;
298 }
299
Magnus Damm8be65dc2008-12-18 12:38:06 -0300300 if (!pcdev->active)
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300301 return ret;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300302
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300303 if (V4L2_FIELD_INTERLACED_BT == pcdev->field) {
304 top1 = CDBYR;
305 top2 = CDBCR;
306 bottom1 = CDAYR;
307 bottom2 = CDACR;
308 } else {
309 top1 = CDAYR;
310 top2 = CDACR;
311 bottom1 = CDBYR;
312 bottom2 = CDBCR;
313 }
314
Marek Szyprowskiba7fcb02011-08-29 03:20:56 -0300315 phys_addr_top = vb2_dma_contig_plane_dma_addr(pcdev->active, 0);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300316
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300317 ceu_write(pcdev, top1, phys_addr_top);
318 if (V4L2_FIELD_NONE != pcdev->field) {
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300319 phys_addr_bottom = phys_addr_top + icd->user_width;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300320 ceu_write(pcdev, bottom1, phys_addr_bottom);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300321 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300322
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300323 switch (icd->current_fmt->host_fmt->fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300324 case V4L2_PIX_FMT_NV12:
325 case V4L2_PIX_FMT_NV21:
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300326 case V4L2_PIX_FMT_NV16:
327 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300328 phys_addr_top += icd->user_width *
329 icd->user_height;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300330 ceu_write(pcdev, top2, phys_addr_top);
331 if (V4L2_FIELD_NONE != pcdev->field) {
332 phys_addr_bottom = phys_addr_top + icd->user_width;
333 ceu_write(pcdev, bottom2, phys_addr_bottom);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -0300334 }
Magnus Damm0d3244d2008-07-16 22:59:28 -0300335 }
Magnus Damm8be65dc2008-12-18 12:38:06 -0300336
Magnus Damm8be65dc2008-12-18 12:38:06 -0300337 ceu_write(pcdev, CAPSR, 0x1); /* start capture */
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300338
339 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300340}
341
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300342static int sh_mobile_ceu_videobuf_prepare(struct vb2_buffer *vb)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300343{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300344 struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300345 struct sh_mobile_ceu_buffer *buf;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300346 int bytes_per_line = soc_mbus_bytes_per_line(icd->user_width,
347 icd->current_fmt->host_fmt);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300348 unsigned long size;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300349
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300350 if (bytes_per_line < 0)
351 return bytes_per_line;
352
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300353 buf = to_ceu_vb(vb);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300354
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300355 dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300356 vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300357
358 /* Added list head initialization on alloc */
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300359 WARN(!list_empty(&buf->queue), "Buffer %p on queue!\n", vb);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300360
361#ifdef DEBUG
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300362 /*
363 * This can be useful if you want to see if we actually fill
364 * the buffer with something
365 */
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300366 if (vb2_plane_vaddr(vb, 0))
367 memset(vb2_plane_vaddr(vb, 0), 0xaa, vb2_get_plane_payload(vb, 0));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300368#endif
369
370 BUG_ON(NULL == icd->current_fmt);
371
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300372 size = icd->user_height * bytes_per_line;
373
374 if (vb2_plane_size(vb, 0) < size) {
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300375 dev_err(icd->parent, "Buffer too small (%lu < %lu)\n",
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300376 vb2_plane_size(vb, 0), size);
377 return -ENOBUFS;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300378 }
379
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300380 vb2_set_plane_payload(vb, 0, size);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300381
382 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300383}
384
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300385static void sh_mobile_ceu_videobuf_queue(struct vb2_buffer *vb)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300386{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300387 struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300388 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300389 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300390 struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300391
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300392 dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300393 vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300394
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300395 spin_lock_irq(&pcdev->lock);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300396 list_add_tail(&buf->queue, &pcdev->capture);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300397
398 if (!pcdev->active) {
Kuninori Morimoto5cf93f12009-10-05 12:48:59 -0300399 /*
400 * Because there were no active buffer at this moment,
401 * we are not interested in the return value of
402 * sh_mobile_ceu_capture here.
403 */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300404 pcdev->active = vb;
405 sh_mobile_ceu_capture(pcdev);
406 }
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300407 spin_unlock_irq(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300408}
409
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300410static void sh_mobile_ceu_videobuf_release(struct vb2_buffer *vb)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300411{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300412 struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300413 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300414 struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300415 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300416
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300417 spin_lock_irq(&pcdev->lock);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300418
419 if (pcdev->active == vb) {
420 /* disable capture (release DMA buffer), reset */
421 ceu_write(pcdev, CAPSR, 1 << 16);
422 pcdev->active = NULL;
423 }
424
Guennadi Liakhovetskicb74cf52011-07-04 12:15:14 -0300425 /*
426 * Doesn't hurt also if the list is empty, but it hurts, if queuing the
427 * buffer failed, and .buf_init() hasn't been called
428 */
429 if (buf->queue.next)
430 list_del_init(&buf->queue);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300431
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300432 spin_unlock_irq(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300433}
434
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300435static int sh_mobile_ceu_videobuf_init(struct vb2_buffer *vb)
436{
437 /* This is for locking debugging only */
438 INIT_LIST_HEAD(&to_ceu_vb(vb)->queue);
439 return 0;
440}
441
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300442static int sh_mobile_ceu_stop_streaming(struct vb2_queue *q)
443{
444 struct soc_camera_device *icd = container_of(q, struct soc_camera_device, vb2_vidq);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300445 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300446 struct sh_mobile_ceu_dev *pcdev = ici->priv;
447 struct list_head *buf_head, *tmp;
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300448
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300449 spin_lock_irq(&pcdev->lock);
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300450
451 pcdev->active = NULL;
452
453 list_for_each_safe(buf_head, tmp, &pcdev->capture)
454 list_del_init(buf_head);
455
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300456 spin_unlock_irq(&pcdev->lock);
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300457
458 return sh_mobile_ceu_soft_reset(pcdev);
459}
460
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300461static struct vb2_ops sh_mobile_ceu_videobuf_ops = {
462 .queue_setup = sh_mobile_ceu_videobuf_setup,
463 .buf_prepare = sh_mobile_ceu_videobuf_prepare,
464 .buf_queue = sh_mobile_ceu_videobuf_queue,
465 .buf_cleanup = sh_mobile_ceu_videobuf_release,
466 .buf_init = sh_mobile_ceu_videobuf_init,
467 .wait_prepare = soc_camera_unlock,
468 .wait_finish = soc_camera_lock,
Guennadi Liakhovetski066f7862011-03-24 12:51:07 -0300469 .stop_streaming = sh_mobile_ceu_stop_streaming,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300470};
471
472static irqreturn_t sh_mobile_ceu_irq(int irq, void *data)
473{
474 struct sh_mobile_ceu_dev *pcdev = data;
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300475 struct vb2_buffer *vb;
476 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300477
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300478 spin_lock(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300479
480 vb = pcdev->active;
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300481 if (!vb)
482 /* Stale interrupt from a released buffer */
483 goto out;
484
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300485 list_del_init(&to_ceu_vb(vb)->queue);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300486
487 if (!list_empty(&pcdev->capture))
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300488 pcdev->active = &list_entry(pcdev->capture.next,
489 struct sh_mobile_ceu_buffer, queue)->vb;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300490 else
491 pcdev->active = NULL;
492
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300493 ret = sh_mobile_ceu_capture(pcdev);
494 do_gettimeofday(&vb->v4l2_buf.timestamp);
495 if (!ret) {
496 vb->v4l2_buf.field = pcdev->field;
497 vb->v4l2_buf.sequence = pcdev->sequence++;
498 }
499 vb2_buffer_done(vb, ret < 0 ? VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
Guennadi Liakhovetskicca0e5492009-08-25 11:46:51 -0300500
501out:
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300502 spin_unlock(&pcdev->lock);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300503
504 return IRQ_HANDLED;
505}
506
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300507static struct v4l2_subdev *find_csi2(struct sh_mobile_ceu_dev *pcdev)
508{
509 struct v4l2_subdev *sd;
510
511 if (!pcdev->csi2_pdev)
512 return NULL;
513
514 v4l2_device_for_each_subdev(sd, &pcdev->ici.v4l2_dev)
515 if (&pcdev->csi2_pdev->dev == v4l2_get_subdevdata(sd))
516 return sd;
517
518 return NULL;
519}
520
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300521/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300522static int sh_mobile_ceu_add_device(struct soc_camera_device *icd)
523{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300524 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300525 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300526 struct v4l2_subdev *csi2_sd;
Guennadi Liakhovetski6ed7c032009-12-11 11:15:06 -0300527 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300528
Magnus Damm0d3244d2008-07-16 22:59:28 -0300529 if (pcdev->icd)
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300530 return -EBUSY;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300531
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300532 dev_info(icd->parent,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300533 "SuperH Mobile CEU driver attached to camera %d\n",
534 icd->devnum);
535
Guennadi Liakhovetskia79aebf2009-09-25 13:36:51 +0900536 pm_runtime_get_sync(ici->v4l2_dev.dev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300537
Guennadi Liakhovetski6ed7c032009-12-11 11:15:06 -0300538 ret = sh_mobile_ceu_soft_reset(pcdev);
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300539
540 csi2_sd = find_csi2(pcdev);
541
542 ret = v4l2_subdev_call(csi2_sd, core, s_power, 1);
543 if (ret != -ENODEV && ret != -ENOIOCTLCMD && ret < 0) {
544 pm_runtime_put_sync(ici->v4l2_dev.dev);
545 } else {
Guennadi Liakhovetski6ed7c032009-12-11 11:15:06 -0300546 pcdev->icd = icd;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300547 ret = 0;
548 }
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300549
Guennadi Liakhovetski6ed7c032009-12-11 11:15:06 -0300550 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300551}
552
Guennadi Liakhovetski1c3bb742008-12-18 12:28:54 -0300553/* Called with .video_lock held */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300554static void sh_mobile_ceu_remove_device(struct soc_camera_device *icd)
555{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300556 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300557 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300558 struct v4l2_subdev *csi2_sd = find_csi2(pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300559
560 BUG_ON(icd != pcdev->icd);
561
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300562 v4l2_subdev_call(csi2_sd, core, s_power, 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300563 /* disable capture, disable interrupts */
564 ceu_write(pcdev, CEIER, 0);
Kuninori Morimotob1de7ae2009-10-05 12:48:20 -0300565 sh_mobile_ceu_soft_reset(pcdev);
Magnus Damm51354cc2008-10-16 19:51:20 -0300566
567 /* make sure active buffer is canceled */
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300568 spin_lock_irq(&pcdev->lock);
Magnus Damm51354cc2008-10-16 19:51:20 -0300569 if (pcdev->active) {
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300570 list_del_init(&to_ceu_vb(pcdev->active)->queue);
571 vb2_buffer_done(pcdev->active, VB2_BUF_STATE_ERROR);
Magnus Damm51354cc2008-10-16 19:51:20 -0300572 pcdev->active = NULL;
573 }
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -0300574 spin_unlock_irq(&pcdev->lock);
Magnus Damm51354cc2008-10-16 19:51:20 -0300575
Guennadi Liakhovetskia79aebf2009-09-25 13:36:51 +0900576 pm_runtime_put_sync(ici->v4l2_dev.dev);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300577
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300578 dev_info(icd->parent,
Magnus Damm0d3244d2008-07-16 22:59:28 -0300579 "SuperH Mobile CEU driver detached from camera %d\n",
580 icd->devnum);
581
582 pcdev->icd = NULL;
583}
584
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300585/*
586 * See chapter 29.4.12 "Capture Filter Control Register (CFLCR)"
587 * in SH7722 Hardware Manual
588 */
589static unsigned int size_dst(unsigned int src, unsigned int scale)
590{
591 unsigned int mant_pre = scale >> 12;
592 if (!src || !scale)
593 return src;
594 return ((mant_pre + 2 * (src - 1)) / (2 * mant_pre) - 1) *
595 mant_pre * 4096 / scale + 1;
596}
597
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300598static u16 calc_scale(unsigned int src, unsigned int *dst)
599{
600 u16 scale;
601
602 if (src == *dst)
603 return 0;
604
605 scale = (src * 4096 / *dst) & ~7;
606
607 while (scale > 4096 && size_dst(src, scale) < *dst)
608 scale -= 8;
609
610 *dst = size_dst(src, scale);
611
612 return scale;
613}
614
615/* rect is guaranteed to not exceed the scaled camera rectangle */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300616static void sh_mobile_ceu_set_rect(struct soc_camera_device *icd)
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300617{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300618 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300619 struct sh_mobile_ceu_cam *cam = icd->host_priv;
620 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300621 unsigned int height, width, cdwdr_width, in_width, in_height;
622 unsigned int left_offset, top_offset;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300623 u32 camor;
624
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300625 dev_geo(icd->parent, "Crop %ux%u@%u:%u\n",
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300626 icd->user_width, icd->user_height, cam->ceu_left, cam->ceu_top);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300627
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300628 left_offset = cam->ceu_left;
629 top_offset = cam->ceu_top;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300630
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300631 WARN_ON(icd->user_width & 3 || icd->user_height & 3);
632
633 width = icd->user_width;
634
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300635 if (pcdev->image_mode) {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300636 in_width = cam->width;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300637 if (!pcdev->is_16bit) {
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300638 in_width *= 2;
639 left_offset *= 2;
640 }
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300641 cdwdr_width = width;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300642 } else {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300643 int bytes_per_line = soc_mbus_bytes_per_line(width,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300644 icd->current_fmt->host_fmt);
645 unsigned int w_factor;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300646
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300647 switch (icd->current_fmt->host_fmt->packing) {
648 case SOC_MBUS_PACKING_2X8_PADHI:
649 w_factor = 2;
650 break;
651 default:
652 w_factor = 1;
653 }
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300654
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300655 in_width = cam->width * w_factor;
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300656 left_offset *= w_factor;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300657
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300658 if (bytes_per_line < 0)
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300659 cdwdr_width = width;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300660 else
661 cdwdr_width = bytes_per_line;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300662 }
663
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300664 height = icd->user_height;
665 in_height = cam->height;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300666 if (V4L2_FIELD_NONE != pcdev->field) {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300667 height = (height / 2) & ~3;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300668 in_height /= 2;
669 top_offset /= 2;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300670 cdwdr_width *= 2;
671 }
672
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300673 /* CSI2 special configuration */
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300674 if (pcdev->pdata->csi2) {
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300675 in_width = ((in_width - 2) * 2);
676 left_offset *= 2;
677 }
678
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300679 /* Set CAMOR, CAPWR, CFSZR, take care of CDWDR */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300680 camor = left_offset | (top_offset << 16);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300681
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300682 dev_geo(icd->parent,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300683 "CAMOR 0x%x, CAPWR 0x%x, CFSZR 0x%x, CDWDR 0x%x\n", camor,
684 (in_height << 16) | in_width, (height << 16) | width,
685 cdwdr_width);
686
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300687 ceu_write(pcdev, CAMOR, camor);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300688 ceu_write(pcdev, CAPWR, (in_height << 16) | in_width);
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -0300689 /* CFSZR clipping is applied _after_ the scaling filter (CFLCR) */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300690 ceu_write(pcdev, CFSZR, (height << 16) | width);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300691 ceu_write(pcdev, CDWDR, cdwdr_width);
692}
693
694static u32 capture_save_reset(struct sh_mobile_ceu_dev *pcdev)
695{
696 u32 capsr = ceu_read(pcdev, CAPSR);
697 ceu_write(pcdev, CAPSR, 1 << 16); /* reset, stop capture */
698 return capsr;
699}
700
701static void capture_restore(struct sh_mobile_ceu_dev *pcdev, u32 capsr)
702{
703 unsigned long timeout = jiffies + 10 * HZ;
704
705 /*
706 * Wait until the end of the current frame. It can take a long time,
707 * but if it has been aborted by a CAPSR reset, it shoule exit sooner.
708 */
709 while ((ceu_read(pcdev, CSTSR) & 1) && time_before(jiffies, timeout))
710 msleep(1);
711
712 if (time_after(jiffies, timeout)) {
713 dev_err(pcdev->ici.v4l2_dev.dev,
714 "Timeout waiting for frame end! Interface problem?\n");
715 return;
716 }
717
718 /* Wait until reset clears, this shall not hang... */
719 while (ceu_read(pcdev, CAPSR) & (1 << 16))
720 udelay(10);
721
722 /* Anything to restore? */
723 if (capsr & ~(1 << 16))
724 ceu_write(pcdev, CAPSR, capsr);
725}
726
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -0300727/* Capture is not running, no interrupts, no locking needed */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300728static int sh_mobile_ceu_set_bus_param(struct soc_camera_device *icd,
729 __u32 pixfmt)
730{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300731 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300732 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300733 int ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300734 unsigned long camera_flags, common_flags, value;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300735 int yuv_lineskip;
736 struct sh_mobile_ceu_cam *cam = icd->host_priv;
737 u32 capsr = capture_save_reset(pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300738
739 camera_flags = icd->ops->query_bus_param(icd);
740 common_flags = soc_camera_bus_param_compatible(camera_flags,
Kuninori Morimotoc354b402009-02-23 12:12:58 -0300741 make_bus_param(pcdev));
Magnus Damm0d3244d2008-07-16 22:59:28 -0300742 if (!common_flags)
743 return -EINVAL;
744
Kuninori Morimoto85dc1cf2009-12-11 11:53:54 -0300745 /* Make choises, based on platform preferences */
746 if ((common_flags & SOCAM_HSYNC_ACTIVE_HIGH) &&
747 (common_flags & SOCAM_HSYNC_ACTIVE_LOW)) {
748 if (pcdev->pdata->flags & SH_CEU_FLAG_HSYNC_LOW)
749 common_flags &= ~SOCAM_HSYNC_ACTIVE_HIGH;
750 else
751 common_flags &= ~SOCAM_HSYNC_ACTIVE_LOW;
752 }
753
754 if ((common_flags & SOCAM_VSYNC_ACTIVE_HIGH) &&
755 (common_flags & SOCAM_VSYNC_ACTIVE_LOW)) {
756 if (pcdev->pdata->flags & SH_CEU_FLAG_VSYNC_LOW)
757 common_flags &= ~SOCAM_VSYNC_ACTIVE_HIGH;
758 else
759 common_flags &= ~SOCAM_VSYNC_ACTIVE_LOW;
760 }
761
Magnus Damm0d3244d2008-07-16 22:59:28 -0300762 ret = icd->ops->set_bus_param(icd, common_flags);
763 if (ret < 0)
764 return ret;
765
766 switch (common_flags & SOCAM_DATAWIDTH_MASK) {
767 case SOCAM_DATAWIDTH_8:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300768 pcdev->is_16bit = 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300769 break;
770 case SOCAM_DATAWIDTH_16:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300771 pcdev->is_16bit = 1;
Magnus Damm0d3244d2008-07-16 22:59:28 -0300772 break;
773 default:
774 return -EINVAL;
775 }
776
777 ceu_write(pcdev, CRCNTR, 0);
778 ceu_write(pcdev, CRCMPR, 0);
779
Magnus Damm8be65dc2008-12-18 12:38:06 -0300780 value = 0x00000010; /* data fetch by default */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300781 yuv_lineskip = 0;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300782
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300783 switch (icd->current_fmt->host_fmt->fourcc) {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300784 case V4L2_PIX_FMT_NV12:
785 case V4L2_PIX_FMT_NV21:
786 yuv_lineskip = 1; /* skip for NV12/21, no skip for NV16/61 */
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300787 /* fall-through */
788 case V4L2_PIX_FMT_NV16:
789 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300790 switch (cam->code) {
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300791 case V4L2_MBUS_FMT_UYVY8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300792 value = 0x00000000; /* Cb0, Y0, Cr0, Y1 */
793 break;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300794 case V4L2_MBUS_FMT_VYUY8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300795 value = 0x00000100; /* Cr0, Y0, Cb0, Y1 */
796 break;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300797 case V4L2_MBUS_FMT_YUYV8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300798 value = 0x00000200; /* Y0, Cb0, Y1, Cr0 */
799 break;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300800 case V4L2_MBUS_FMT_YVYU8_2X8:
Magnus Damm8be65dc2008-12-18 12:38:06 -0300801 value = 0x00000300; /* Y0, Cr0, Y1, Cb0 */
802 break;
803 default:
804 BUG();
805 }
806 }
807
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300808 if (icd->current_fmt->host_fmt->fourcc == V4L2_PIX_FMT_NV21 ||
809 icd->current_fmt->host_fmt->fourcc == V4L2_PIX_FMT_NV61)
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300810 value ^= 0x00000100; /* swap U, V to change from NV1x->NVx1 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300811
Magnus Damm7a1a8162008-12-18 12:50:30 -0300812 value |= common_flags & SOCAM_VSYNC_ACTIVE_LOW ? 1 << 1 : 0;
813 value |= common_flags & SOCAM_HSYNC_ACTIVE_LOW ? 1 << 0 : 0;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300814 value |= pcdev->is_16bit ? 1 << 12 : 0;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300815
816 /* CSI2 mode */
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300817 if (pcdev->pdata->csi2)
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300818 value |= 3 << 12;
819
Magnus Damm0d3244d2008-07-16 22:59:28 -0300820 ceu_write(pcdev, CAMCR, value);
821
822 ceu_write(pcdev, CAPCR, 0x00300000);
Kuninori Morimoto1edcc102009-12-11 11:53:53 -0300823
824 switch (pcdev->field) {
825 case V4L2_FIELD_INTERLACED_TB:
826 value = 0x101;
827 break;
828 case V4L2_FIELD_INTERLACED_BT:
829 value = 0x102;
830 break;
831 default:
832 value = 0;
833 break;
834 }
835 ceu_write(pcdev, CAIFR, value);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300836
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300837 sh_mobile_ceu_set_rect(icd);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300838 mdelay(1);
839
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300840 dev_geo(icd->parent, "CFLCR 0x%x\n", pcdev->cflcr);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -0300841 ceu_write(pcdev, CFLCR, pcdev->cflcr);
Magnus Dammdd542032008-10-16 19:50:22 -0300842
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300843 /*
844 * A few words about byte order (observed in Big Endian mode)
Magnus Dammdd542032008-10-16 19:50:22 -0300845 *
846 * In data fetch mode bytes are received in chunks of 8 bytes.
847 * D0, D1, D2, D3, D4, D5, D6, D7 (D0 received first)
848 *
849 * The data is however by default written to memory in reverse order:
850 * D7, D6, D5, D4, D3, D2, D1, D0 (D7 written to lowest byte)
851 *
852 * The lowest three bits of CDOCR allows us to do swapping,
Magnus Damm2c0a0722008-10-16 19:50:56 -0300853 * using 7 we swap the data bytes to match the incoming order:
854 * D0, D1, D2, D3, D4, D5, D6, D7
Magnus Dammdd542032008-10-16 19:50:22 -0300855 */
Magnus Damm8be65dc2008-12-18 12:38:06 -0300856 value = 0x00000017;
857 if (yuv_lineskip)
858 value &= ~0x00000010; /* convert 4:2:2 -> 4:2:0 */
859
860 ceu_write(pcdev, CDOCR, value);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300861 ceu_write(pcdev, CFWCR, 0); /* keep "datafetch firewall" disabled */
862
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300863 dev_dbg(icd->parent, "S_FMT successful for %c%c%c%c %ux%u\n",
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300864 pixfmt & 0xff, (pixfmt >> 8) & 0xff,
865 (pixfmt >> 16) & 0xff, (pixfmt >> 24) & 0xff,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300866 icd->user_width, icd->user_height);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300867
868 capture_restore(pcdev, capsr);
869
Magnus Damm0d3244d2008-07-16 22:59:28 -0300870 /* not in bundle mode: skip CBDSR, CDAYR2, CDACR2, CDBYR2, CDBCR2 */
Magnus Damm0d3244d2008-07-16 22:59:28 -0300871 return 0;
872}
873
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300874static int sh_mobile_ceu_try_bus_param(struct soc_camera_device *icd,
875 unsigned char buswidth)
Magnus Damm0d3244d2008-07-16 22:59:28 -0300876{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300877 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Magnus Damm0d3244d2008-07-16 22:59:28 -0300878 struct sh_mobile_ceu_dev *pcdev = ici->priv;
879 unsigned long camera_flags, common_flags;
880
881 camera_flags = icd->ops->query_bus_param(icd);
882 common_flags = soc_camera_bus_param_compatible(camera_flags,
Kuninori Morimotoc354b402009-02-23 12:12:58 -0300883 make_bus_param(pcdev));
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300884 if (!common_flags || buswidth > 16 ||
885 (buswidth > 8 && !(common_flags & SOCAM_DATAWIDTH_16)))
Magnus Damm0d3244d2008-07-16 22:59:28 -0300886 return -EINVAL;
887
888 return 0;
889}
890
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300891static const struct soc_mbus_pixelfmt sh_mobile_ceu_formats[] = {
Magnus Damm8be65dc2008-12-18 12:38:06 -0300892 {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300893 .fourcc = V4L2_PIX_FMT_NV12,
894 .name = "NV12",
895 .bits_per_sample = 12,
896 .packing = SOC_MBUS_PACKING_NONE,
897 .order = SOC_MBUS_ORDER_LE,
898 }, {
899 .fourcc = V4L2_PIX_FMT_NV21,
900 .name = "NV21",
901 .bits_per_sample = 12,
902 .packing = SOC_MBUS_PACKING_NONE,
903 .order = SOC_MBUS_ORDER_LE,
904 }, {
905 .fourcc = V4L2_PIX_FMT_NV16,
906 .name = "NV16",
907 .bits_per_sample = 16,
908 .packing = SOC_MBUS_PACKING_NONE,
909 .order = SOC_MBUS_ORDER_LE,
910 }, {
911 .fourcc = V4L2_PIX_FMT_NV61,
912 .name = "NV61",
913 .bits_per_sample = 16,
914 .packing = SOC_MBUS_PACKING_NONE,
915 .order = SOC_MBUS_ORDER_LE,
Magnus Damm9e4a56d2008-12-18 12:45:33 -0300916 },
Magnus Damm8be65dc2008-12-18 12:38:06 -0300917};
918
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300919/* This will be corrected as we get more formats */
920static bool sh_mobile_ceu_packing_supported(const struct soc_mbus_pixelfmt *fmt)
921{
922 return fmt->packing == SOC_MBUS_PACKING_NONE ||
923 (fmt->bits_per_sample == 8 &&
924 fmt->packing == SOC_MBUS_PACKING_2X8_PADHI) ||
925 (fmt->bits_per_sample > 8 &&
926 fmt->packing == SOC_MBUS_PACKING_EXTEND16);
927}
928
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300929static int client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect);
930
Hans Verkuil3805f202010-05-08 17:55:00 -0300931static int sh_mobile_ceu_get_formats(struct soc_camera_device *icd, unsigned int idx,
Magnus Damm9414de32008-12-18 11:49:06 -0300932 struct soc_camera_format_xlate *xlate)
933{
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300934 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300935 struct device *dev = icd->parent;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300936 struct soc_camera_host *ici = to_soc_camera_host(dev);
937 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Magnus Damm8be65dc2008-12-18 12:38:06 -0300938 int ret, k, n;
Magnus Damm9414de32008-12-18 11:49:06 -0300939 int formats = 0;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300940 struct sh_mobile_ceu_cam *cam;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300941 enum v4l2_mbus_pixelcode code;
942 const struct soc_mbus_pixelfmt *fmt;
Magnus Damm9414de32008-12-18 11:49:06 -0300943
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300944 ret = v4l2_subdev_call(sd, video, enum_mbus_fmt, idx, &code);
945 if (ret < 0)
946 /* No more formats */
947 return 0;
948
949 fmt = soc_mbus_get_fmtdesc(code);
950 if (!fmt) {
Guennadi Liakhovetskid2dcad42011-05-18 06:49:54 -0300951 dev_warn(dev, "unsupported format code #%u: %d\n", idx, code);
952 return 0;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300953 }
954
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -0300955 if (!pcdev->pdata->csi2) {
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300956 ret = sh_mobile_ceu_try_bus_param(icd, fmt->bits_per_sample);
957 if (ret < 0)
958 return 0;
959 }
Magnus Damm9414de32008-12-18 11:49:06 -0300960
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300961 if (!icd->host_priv) {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300962 struct v4l2_mbus_framefmt mf;
963 struct v4l2_rect rect;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300964 int shift = 0;
965
966 /* FIXME: subwindow is lost between close / open */
967
968 /* Cache current client geometry */
969 ret = client_g_rect(sd, &rect);
970 if (ret < 0)
971 return ret;
972
973 /* First time */
974 ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
975 if (ret < 0)
976 return ret;
977
978 while ((mf.width > 2560 || mf.height > 1920) && shift < 4) {
979 /* Try 2560x1920, 1280x960, 640x480, 320x240 */
980 mf.width = 2560 >> shift;
981 mf.height = 1920 >> shift;
Guennadi Liakhovetski24105eb2011-03-23 05:41:28 -0300982 ret = v4l2_device_call_until_err(sd->v4l2_dev, (long)icd, video,
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -0300983 s_mbus_fmt, &mf);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -0300984 if (ret < 0)
985 return ret;
986 shift++;
987 }
988
989 if (shift == 4) {
990 dev_err(dev, "Failed to configure the client below %ux%x\n",
991 mf.width, mf.height);
992 return -EIO;
993 }
994
995 dev_geo(dev, "camera fmt %ux%u\n", mf.width, mf.height);
996
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -0300997 cam = kzalloc(sizeof(*cam), GFP_KERNEL);
998 if (!cam)
999 return -ENOMEM;
1000
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001001 /* We are called with current camera crop, initialise subrect with it */
1002 cam->rect = rect;
1003 cam->subrect = rect;
1004
1005 cam->width = mf.width;
1006 cam->height = mf.height;
1007
1008 cam->width = mf.width;
1009 cam->height = mf.height;
1010
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001011 icd->host_priv = cam;
1012 } else {
1013 cam = icd->host_priv;
1014 }
1015
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001016 /* Beginning of a pass */
1017 if (!idx)
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001018 cam->extra_fmt = NULL;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001019
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001020 switch (code) {
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -03001021 case V4L2_MBUS_FMT_UYVY8_2X8:
1022 case V4L2_MBUS_FMT_VYUY8_2X8:
1023 case V4L2_MBUS_FMT_YUYV8_2X8:
1024 case V4L2_MBUS_FMT_YVYU8_2X8:
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001025 if (cam->extra_fmt)
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001026 break;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001027
1028 /*
1029 * Our case is simple so far: for any of the above four camera
1030 * formats we add all our four synthesized NV* formats, so,
1031 * just marking the device with a single flag suffices. If
1032 * the format generation rules are more complex, you would have
1033 * to actually hang your already added / counted formats onto
1034 * the host_priv pointer and check whether the format you're
1035 * going to add now is already there.
1036 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001037 cam->extra_fmt = sh_mobile_ceu_formats;
Guennadi Liakhovetskic8329ac2009-02-23 12:12:58 -03001038
Magnus Damm8be65dc2008-12-18 12:38:06 -03001039 n = ARRAY_SIZE(sh_mobile_ceu_formats);
1040 formats += n;
1041 for (k = 0; xlate && k < n; k++) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001042 xlate->host_fmt = &sh_mobile_ceu_formats[k];
1043 xlate->code = code;
Magnus Damm8be65dc2008-12-18 12:38:06 -03001044 xlate++;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001045 dev_dbg(dev, "Providing format %s using code %d\n",
1046 sh_mobile_ceu_formats[k].name, code);
Magnus Damm8be65dc2008-12-18 12:38:06 -03001047 }
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001048 break;
Magnus Damm9414de32008-12-18 11:49:06 -03001049 default:
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001050 if (!sh_mobile_ceu_packing_supported(fmt))
1051 return 0;
1052 }
1053
1054 /* Generic pass-through */
1055 formats++;
1056 if (xlate) {
1057 xlate->host_fmt = fmt;
1058 xlate->code = code;
1059 xlate++;
1060 dev_dbg(dev, "Providing format %s in pass-through mode\n",
Guennadi Liakhovetskie53a4802010-06-18 04:20:56 -03001061 fmt->name);
Magnus Damm9414de32008-12-18 11:49:06 -03001062 }
1063
1064 return formats;
1065}
1066
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001067static void sh_mobile_ceu_put_formats(struct soc_camera_device *icd)
1068{
1069 kfree(icd->host_priv);
1070 icd->host_priv = NULL;
1071}
1072
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001073/* Check if any dimension of r1 is smaller than respective one of r2 */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001074static bool is_smaller(struct v4l2_rect *r1, struct v4l2_rect *r2)
1075{
1076 return r1->width < r2->width || r1->height < r2->height;
1077}
1078
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001079/* Check if r1 fails to cover r2 */
1080static bool is_inside(struct v4l2_rect *r1, struct v4l2_rect *r2)
1081{
1082 return r1->left > r2->left || r1->top > r2->top ||
1083 r1->left + r1->width < r2->left + r2->width ||
1084 r1->top + r1->height < r2->top + r2->height;
1085}
1086
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001087static unsigned int scale_down(unsigned int size, unsigned int scale)
1088{
1089 return (size * 4096 + scale / 2) / scale;
1090}
1091
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001092static unsigned int calc_generic_scale(unsigned int input, unsigned int output)
1093{
1094 return (input * 4096 + output / 2) / output;
1095}
1096
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001097/* Get and store current client crop */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001098static int client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect)
1099{
1100 struct v4l2_crop crop;
1101 struct v4l2_cropcap cap;
1102 int ret;
1103
1104 crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1105
1106 ret = v4l2_subdev_call(sd, video, g_crop, &crop);
1107 if (!ret) {
1108 *rect = crop.c;
1109 return ret;
1110 }
1111
1112 /* Camera driver doesn't support .g_crop(), assume default rectangle */
1113 cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1114
1115 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001116 if (!ret)
1117 *rect = cap.defrect;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001118
1119 return ret;
1120}
1121
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001122/* Client crop has changed, update our sub-rectangle to remain within the area */
1123static void update_subrect(struct sh_mobile_ceu_cam *cam)
1124{
1125 struct v4l2_rect *rect = &cam->rect, *subrect = &cam->subrect;
1126
1127 if (rect->width < subrect->width)
1128 subrect->width = rect->width;
1129
1130 if (rect->height < subrect->height)
1131 subrect->height = rect->height;
1132
1133 if (rect->left > subrect->left)
1134 subrect->left = rect->left;
1135 else if (rect->left + rect->width >
1136 subrect->left + subrect->width)
1137 subrect->left = rect->left + rect->width -
1138 subrect->width;
1139
1140 if (rect->top > subrect->top)
1141 subrect->top = rect->top;
1142 else if (rect->top + rect->height >
1143 subrect->top + subrect->height)
1144 subrect->top = rect->top + rect->height -
1145 subrect->height;
1146}
1147
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001148/*
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001149 * The common for both scaling and cropping iterative approach is:
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001150 * 1. try if the client can produce exactly what requested by the user
1151 * 2. if (1) failed, try to double the client image until we get one big enough
1152 * 3. if (2) failed, try to request the maximum image
1153 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001154static int client_s_crop(struct soc_camera_device *icd, struct v4l2_crop *crop,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001155 struct v4l2_crop *cam_crop)
1156{
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001157 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001158 struct v4l2_rect *rect = &crop->c, *cam_rect = &cam_crop->c;
1159 struct device *dev = sd->v4l2_dev->dev;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001160 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001161 struct v4l2_cropcap cap;
1162 int ret;
1163 unsigned int width, height;
1164
1165 v4l2_subdev_call(sd, video, s_crop, crop);
1166 ret = client_g_rect(sd, cam_rect);
1167 if (ret < 0)
1168 return ret;
1169
1170 /*
1171 * Now cam_crop contains the current camera input rectangle, and it must
1172 * be within camera cropcap bounds
1173 */
1174 if (!memcmp(rect, cam_rect, sizeof(*rect))) {
1175 /* Even if camera S_CROP failed, but camera rectangle matches */
Márton Némethe26b3142010-02-24 17:13:29 -03001176 dev_dbg(dev, "Camera S_CROP successful for %dx%d@%d:%d\n",
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001177 rect->width, rect->height, rect->left, rect->top);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001178 cam->rect = *cam_rect;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001179 return 0;
1180 }
1181
1182 /* Try to fix cropping, that camera hasn't managed to set */
Márton Némethe26b3142010-02-24 17:13:29 -03001183 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 -03001184 cam_rect->width, cam_rect->height,
1185 cam_rect->left, cam_rect->top,
1186 rect->width, rect->height, rect->left, rect->top);
1187
1188 /* We need sensor maximum rectangle */
1189 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
1190 if (ret < 0)
1191 return ret;
1192
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001193 /* Put user requested rectangle within sensor bounds */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001194 soc_camera_limit_side(&rect->left, &rect->width, cap.bounds.left, 2,
1195 cap.bounds.width);
1196 soc_camera_limit_side(&rect->top, &rect->height, cap.bounds.top, 4,
1197 cap.bounds.height);
1198
1199 /*
1200 * Popular special case - some cameras can only handle fixed sizes like
1201 * QVGA, VGA,... Take care to avoid infinite loop.
1202 */
1203 width = max(cam_rect->width, 2);
1204 height = max(cam_rect->height, 2);
1205
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001206 /*
1207 * Loop as long as sensor is not covering the requested rectangle and
1208 * is still within its bounds
1209 */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001210 while (!ret && (is_smaller(cam_rect, rect) ||
1211 is_inside(cam_rect, rect)) &&
1212 (cap.bounds.width > width || cap.bounds.height > height)) {
1213
1214 width *= 2;
1215 height *= 2;
1216
1217 cam_rect->width = width;
1218 cam_rect->height = height;
1219
1220 /*
1221 * We do not know what capabilities the camera has to set up
1222 * left and top borders. We could try to be smarter in iterating
1223 * them, e.g., if camera current left is to the right of the
1224 * target left, set it to the middle point between the current
1225 * left and minimum left. But that would add too much
1226 * complexity: we would have to iterate each border separately.
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001227 * Instead we just drop to the left and top bounds.
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001228 */
1229 if (cam_rect->left > rect->left)
1230 cam_rect->left = cap.bounds.left;
1231
1232 if (cam_rect->left + cam_rect->width < rect->left + rect->width)
1233 cam_rect->width = rect->left + rect->width -
1234 cam_rect->left;
1235
1236 if (cam_rect->top > rect->top)
1237 cam_rect->top = cap.bounds.top;
1238
1239 if (cam_rect->top + cam_rect->height < rect->top + rect->height)
1240 cam_rect->height = rect->top + rect->height -
1241 cam_rect->top;
1242
1243 v4l2_subdev_call(sd, video, s_crop, cam_crop);
1244 ret = client_g_rect(sd, cam_rect);
Márton Némethe26b3142010-02-24 17:13:29 -03001245 dev_geo(dev, "Camera S_CROP %d for %dx%d@%d:%d\n", ret,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001246 cam_rect->width, cam_rect->height,
1247 cam_rect->left, cam_rect->top);
1248 }
1249
1250 /* S_CROP must not modify the rectangle */
1251 if (is_smaller(cam_rect, rect) || is_inside(cam_rect, rect)) {
1252 /*
1253 * The camera failed to configure a suitable cropping,
1254 * we cannot use the current rectangle, set to max
1255 */
1256 *cam_rect = cap.bounds;
1257 v4l2_subdev_call(sd, video, s_crop, cam_crop);
1258 ret = client_g_rect(sd, cam_rect);
Márton Némethe26b3142010-02-24 17:13:29 -03001259 dev_geo(dev, "Camera S_CROP %d for max %dx%d@%d:%d\n", ret,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001260 cam_rect->width, cam_rect->height,
1261 cam_rect->left, cam_rect->top);
1262 }
1263
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001264 if (!ret) {
1265 cam->rect = *cam_rect;
1266 update_subrect(cam);
1267 }
1268
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001269 return ret;
1270}
1271
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001272/* Iterative s_mbus_fmt, also updates cached client crop on success */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001273static int client_s_fmt(struct soc_camera_device *icd,
1274 struct v4l2_mbus_framefmt *mf, bool ceu_can_scale)
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001275{
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001276 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001277 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001278 struct device *dev = icd->parent;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001279 unsigned int width = mf->width, height = mf->height, tmp_w, tmp_h;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001280 unsigned int max_width, max_height;
1281 struct v4l2_cropcap cap;
1282 int ret;
1283
Guennadi Liakhovetski24105eb2011-03-23 05:41:28 -03001284 ret = v4l2_device_call_until_err(sd->v4l2_dev, (long)icd, video,
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001285 s_mbus_fmt, mf);
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001286 if (ret < 0)
1287 return ret;
1288
1289 dev_geo(dev, "camera scaled to %ux%u\n", mf->width, mf->height);
1290
1291 if ((width == mf->width && height == mf->height) || !ceu_can_scale)
1292 goto update_cache;
1293
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001294 cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1295
1296 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
1297 if (ret < 0)
1298 return ret;
1299
1300 max_width = min(cap.bounds.width, 2560);
1301 max_height = min(cap.bounds.height, 1920);
1302
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001303 /* Camera set a format, but geometry is not precise, try to improve */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001304 tmp_w = mf->width;
1305 tmp_h = mf->height;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001306
1307 /* width <= max_width && height <= max_height - guaranteed by try_fmt */
1308 while ((width > tmp_w || height > tmp_h) &&
1309 tmp_w < max_width && tmp_h < max_height) {
1310 tmp_w = min(2 * tmp_w, max_width);
1311 tmp_h = min(2 * tmp_h, max_height);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001312 mf->width = tmp_w;
1313 mf->height = tmp_h;
Guennadi Liakhovetski24105eb2011-03-23 05:41:28 -03001314 ret = v4l2_device_call_until_err(sd->v4l2_dev, (long)icd, video,
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001315 s_mbus_fmt, mf);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001316 dev_geo(dev, "Camera scaled to %ux%u\n",
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001317 mf->width, mf->height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001318 if (ret < 0) {
1319 /* This shouldn't happen */
1320 dev_err(dev, "Client failed to set format: %d\n", ret);
1321 return ret;
1322 }
1323 }
1324
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001325update_cache:
1326 /* Update cache */
1327 ret = client_g_rect(sd, &cam->rect);
1328 if (ret < 0)
1329 return ret;
1330
1331 update_subrect(cam);
1332
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001333 return 0;
1334}
1335
1336/**
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001337 * @width - on output: user width, mapped back to input
1338 * @height - on output: user height, mapped back to input
1339 * @mf - in- / output camera output window
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001340 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001341static int client_scale(struct soc_camera_device *icd,
1342 struct v4l2_mbus_framefmt *mf,
1343 unsigned int *width, unsigned int *height,
1344 bool ceu_can_scale)
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001345{
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001346 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001347 struct device *dev = icd->parent;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001348 struct v4l2_mbus_framefmt mf_tmp = *mf;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001349 unsigned int scale_h, scale_v;
1350 int ret;
1351
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001352 /*
1353 * 5. Apply iterative camera S_FMT for camera user window (also updates
1354 * client crop cache and the imaginary sub-rectangle).
1355 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001356 ret = client_s_fmt(icd, &mf_tmp, ceu_can_scale);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001357 if (ret < 0)
1358 return ret;
1359
1360 dev_geo(dev, "5: camera scaled to %ux%u\n",
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001361 mf_tmp.width, mf_tmp.height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001362
1363 /* 6. Retrieve camera output window (g_fmt) */
1364
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001365 /* unneeded - it is already in "mf_tmp" */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001366
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001367 /* 7. Calculate new client scales. */
1368 scale_h = calc_generic_scale(cam->rect.width, mf_tmp.width);
1369 scale_v = calc_generic_scale(cam->rect.height, mf_tmp.height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001370
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001371 mf->width = mf_tmp.width;
1372 mf->height = mf_tmp.height;
1373 mf->colorspace = mf_tmp.colorspace;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001374
1375 /*
1376 * 8. Calculate new CEU crop - apply camera scales to previously
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001377 * updated "effective" crop.
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001378 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001379 *width = scale_down(cam->subrect.width, scale_h);
1380 *height = scale_down(cam->subrect.height, scale_v);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001381
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001382 dev_geo(dev, "8: new client sub-window %ux%u\n", *width, *height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001383
1384 return 0;
1385}
1386
1387/*
1388 * CEU can scale and crop, but we don't want to waste bandwidth and kill the
1389 * framerate by always requesting the maximum image from the client. See
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001390 * Documentation/video4linux/sh_mobile_ceu_camera.txt for a description of
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001391 * scaling and cropping algorithms and for the meaning of referenced here steps.
1392 */
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001393static int sh_mobile_ceu_set_crop(struct soc_camera_device *icd,
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -03001394 struct v4l2_crop *a)
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001395{
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -03001396 struct v4l2_rect *rect = &a->c;
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001397 struct device *dev = icd->parent;
1398 struct soc_camera_host *ici = to_soc_camera_host(dev);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001399 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -03001400 struct v4l2_crop cam_crop;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001401 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001402 struct v4l2_rect *cam_rect = &cam_crop.c;
Guennadi Liakhovetskic9c1f1c2009-08-25 11:46:59 -03001403 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001404 struct v4l2_mbus_framefmt mf;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001405 unsigned int scale_cam_h, scale_cam_v, scale_ceu_h, scale_ceu_v,
Guennadi Liakhovetski787d0f92011-02-16 18:42:24 -03001406 out_width, out_height;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001407 int interm_width, interm_height;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001408 u32 capsr, cflcr;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001409 int ret;
1410
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001411 dev_geo(dev, "S_CROP(%ux%u@%u:%u)\n", rect->width, rect->height,
1412 rect->left, rect->top);
1413
1414 /* During camera cropping its output window can change too, stop CEU */
1415 capsr = capture_save_reset(pcdev);
1416 dev_dbg(dev, "CAPSR 0x%x, CFLCR 0x%x\n", capsr, pcdev->cflcr);
1417
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001418 /*
1419 * 1. - 2. Apply iterative camera S_CROP for new input window, read back
1420 * actual camera rectangle.
1421 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001422 ret = client_s_crop(icd, a, &cam_crop);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001423 if (ret < 0)
1424 return ret;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001425
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001426 dev_geo(dev, "1-2: camera cropped to %ux%u@%u:%u\n",
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001427 cam_rect->width, cam_rect->height,
1428 cam_rect->left, cam_rect->top);
1429
1430 /* On success cam_crop contains current camera crop */
1431
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001432 /* 3. Retrieve camera output window */
1433 ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
1434 if (ret < 0)
1435 return ret;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001436
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001437 if (mf.width > 2560 || mf.height > 1920)
1438 return -EINVAL;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001439
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001440 /* 4. Calculate camera scales */
1441 scale_cam_h = calc_generic_scale(cam_rect->width, mf.width);
1442 scale_cam_v = calc_generic_scale(cam_rect->height, mf.height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001443
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001444 /* Calculate intermediate window */
1445 interm_width = scale_down(rect->width, scale_cam_h);
1446 interm_height = scale_down(rect->height, scale_cam_v);
1447
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001448 if (interm_width < icd->user_width) {
1449 u32 new_scale_h;
1450
1451 new_scale_h = calc_generic_scale(rect->width, icd->user_width);
1452
1453 mf.width = scale_down(cam_rect->width, new_scale_h);
1454 }
1455
1456 if (interm_height < icd->user_height) {
1457 u32 new_scale_v;
1458
1459 new_scale_v = calc_generic_scale(rect->height, icd->user_height);
1460
1461 mf.height = scale_down(cam_rect->height, new_scale_v);
1462 }
1463
1464 if (interm_width < icd->user_width || interm_height < icd->user_height) {
1465 ret = v4l2_device_call_until_err(sd->v4l2_dev, (int)icd, video,
1466 s_mbus_fmt, &mf);
1467 if (ret < 0)
1468 return ret;
1469
1470 dev_geo(dev, "New camera output %ux%u\n", mf.width, mf.height);
1471 scale_cam_h = calc_generic_scale(cam_rect->width, mf.width);
1472 scale_cam_v = calc_generic_scale(cam_rect->height, mf.height);
1473 interm_width = scale_down(rect->width, scale_cam_h);
1474 interm_height = scale_down(rect->height, scale_cam_v);
1475 }
1476
1477 /* Cache camera output window */
1478 cam->width = mf.width;
1479 cam->height = mf.height;
1480
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001481 if (pcdev->image_mode) {
1482 out_width = min(interm_width, icd->user_width);
1483 out_height = min(interm_height, icd->user_height);
1484 } else {
1485 out_width = interm_width;
1486 out_height = interm_height;
1487 }
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001488
1489 /*
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001490 * 5. Calculate CEU scales from camera scales from results of (5) and
1491 * the user window
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001492 */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001493 scale_ceu_h = calc_scale(interm_width, &out_width);
1494 scale_ceu_v = calc_scale(interm_height, &out_height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001495
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001496 dev_geo(dev, "5: CEU scales %u:%u\n", scale_ceu_h, scale_ceu_v);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001497
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001498 /* Apply CEU scales. */
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001499 cflcr = scale_ceu_h | (scale_ceu_v << 16);
1500 if (cflcr != pcdev->cflcr) {
1501 pcdev->cflcr = cflcr;
1502 ceu_write(pcdev, CFLCR, cflcr);
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001503 }
1504
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001505 icd->user_width = out_width & ~3;
1506 icd->user_height = out_height & ~3;
1507 /* Offsets are applied at the CEU scaling filter input */
Guennadi Liakhovetski787d0f92011-02-16 18:42:24 -03001508 cam->ceu_left = scale_down(rect->left - cam_rect->left, scale_cam_h) & ~1;
1509 cam->ceu_top = scale_down(rect->top - cam_rect->top, scale_cam_v) & ~1;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001510
1511 /* 6. Use CEU cropping to crop to the new window. */
1512 sh_mobile_ceu_set_rect(icd);
1513
1514 cam->subrect = *rect;
1515
1516 dev_geo(dev, "6: CEU cropped to %ux%u@%u:%u\n",
1517 icd->user_width, icd->user_height,
1518 cam->ceu_left, cam->ceu_top);
1519
Guennadi Liakhovetski787d0f92011-02-16 18:42:24 -03001520 /* Restore capture. The CE bit can be cleared by the hardware */
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001521 if (pcdev->active)
1522 capsr |= 1;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001523 capture_restore(pcdev, capsr);
1524
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001525 /* Even if only camera cropping succeeded */
1526 return ret;
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001527}
1528
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001529static int sh_mobile_ceu_get_crop(struct soc_camera_device *icd,
1530 struct v4l2_crop *a)
1531{
1532 struct sh_mobile_ceu_cam *cam = icd->host_priv;
1533
1534 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1535 a->c = cam->subrect;
1536
1537 return 0;
1538}
1539
1540/*
1541 * Calculate real client output window by applying new scales to the current
1542 * client crop. New scales are calculated from the requested output format and
1543 * CEU crop, mapped backed onto the client input (subrect).
1544 */
1545static void calculate_client_output(struct soc_camera_device *icd,
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001546 const struct v4l2_pix_format *pix, struct v4l2_mbus_framefmt *mf)
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001547{
1548 struct sh_mobile_ceu_cam *cam = icd->host_priv;
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001549 struct device *dev = icd->parent;
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001550 struct v4l2_rect *cam_subrect = &cam->subrect;
1551 unsigned int scale_v, scale_h;
1552
1553 if (cam_subrect->width == cam->rect.width &&
1554 cam_subrect->height == cam->rect.height) {
1555 /* No sub-cropping */
1556 mf->width = pix->width;
1557 mf->height = pix->height;
1558 return;
1559 }
1560
1561 /* 1.-2. Current camera scales and subwin - cached. */
1562
1563 dev_geo(dev, "2: subwin %ux%u@%u:%u\n",
1564 cam_subrect->width, cam_subrect->height,
1565 cam_subrect->left, cam_subrect->top);
1566
1567 /*
1568 * 3. Calculate new combined scales from input sub-window to requested
1569 * user window.
1570 */
1571
1572 /*
1573 * TODO: CEU cannot scale images larger than VGA to smaller than SubQCIF
1574 * (128x96) or larger than VGA
1575 */
1576 scale_h = calc_generic_scale(cam_subrect->width, pix->width);
1577 scale_v = calc_generic_scale(cam_subrect->height, pix->height);
1578
1579 dev_geo(dev, "3: scales %u:%u\n", scale_h, scale_v);
1580
1581 /*
1582 * 4. Calculate client output window by applying combined scales to real
1583 * input window.
1584 */
1585 mf->width = scale_down(cam->rect.width, scale_h);
1586 mf->height = scale_down(cam->rect.height, scale_v);
1587}
1588
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001589/* Similar to set_crop multistage iterative algorithm */
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001590static int sh_mobile_ceu_set_fmt(struct soc_camera_device *icd,
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001591 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001592{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001593 struct device *dev = icd->parent;
1594 struct soc_camera_host *ici = to_soc_camera_host(dev);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001595 struct sh_mobile_ceu_dev *pcdev = ici->priv;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001596 struct sh_mobile_ceu_cam *cam = icd->host_priv;
1597 struct v4l2_pix_format *pix = &f->fmt.pix;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001598 struct v4l2_mbus_framefmt mf;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001599 __u32 pixfmt = pix->pixelformat;
Magnus Damm9414de32008-12-18 11:49:06 -03001600 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001601 /* Keep Compiler Happy */
1602 unsigned int ceu_sub_width = 0, ceu_sub_height = 0;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001603 u16 scale_v, scale_h;
1604 int ret;
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001605 bool image_mode;
1606 enum v4l2_field field;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001607
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001608 dev_geo(dev, "S_FMT(pix=0x%x, %ux%u)\n", pixfmt, pix->width, pix->height);
1609
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001610 switch (pix->field) {
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001611 default:
1612 pix->field = V4L2_FIELD_NONE;
1613 /* fall-through */
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001614 case V4L2_FIELD_INTERLACED_TB:
1615 case V4L2_FIELD_INTERLACED_BT:
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001616 case V4L2_FIELD_NONE:
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001617 field = pix->field;
1618 break;
1619 case V4L2_FIELD_INTERLACED:
1620 field = V4L2_FIELD_INTERLACED_TB;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001621 break;
1622 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001623
Magnus Damm9414de32008-12-18 11:49:06 -03001624 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1625 if (!xlate) {
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001626 dev_warn(dev, "Format %x not found\n", pixfmt);
Magnus Damm9414de32008-12-18 11:49:06 -03001627 return -EINVAL;
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001628 }
1629
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001630 /* 1.-4. Calculate client output geometry */
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001631 calculate_client_output(icd, pix, &mf);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001632 mf.field = pix->field;
1633 mf.colorspace = pix->colorspace;
1634 mf.code = xlate->code;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001635
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001636 switch (pixfmt) {
1637 case V4L2_PIX_FMT_NV12:
1638 case V4L2_PIX_FMT_NV21:
1639 case V4L2_PIX_FMT_NV16:
1640 case V4L2_PIX_FMT_NV61:
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001641 image_mode = true;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001642 break;
1643 default:
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001644 image_mode = false;
Magnus Damm9414de32008-12-18 11:49:06 -03001645 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001646
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001647 dev_geo(dev, "4: request camera output %ux%u\n", mf.width, mf.height);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001648
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001649 /* 5. - 9. */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001650 ret = client_scale(icd, &mf, &ceu_sub_width, &ceu_sub_height,
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001651 image_mode && V4L2_FIELD_NONE == field);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001652
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001653 dev_geo(dev, "5-9: client scale return %d\n", ret);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001654
1655 /* Done with the camera. Now see if we can improve the result */
1656
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001657 dev_geo(dev, "fmt %ux%u, requested %ux%u\n",
1658 mf.width, mf.height, pix->width, pix->height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001659 if (ret < 0)
1660 return ret;
1661
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001662 if (mf.code != xlate->code)
1663 return -EINVAL;
1664
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001665 /* 9. Prepare CEU crop */
1666 cam->width = mf.width;
1667 cam->height = mf.height;
1668
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001669 /* 10. Use CEU scaling to scale to the requested user window. */
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001670
1671 /* We cannot scale up */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001672 if (pix->width > ceu_sub_width)
1673 ceu_sub_width = pix->width;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001674
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001675 if (pix->height > ceu_sub_height)
1676 ceu_sub_height = pix->height;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001677
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001678 pix->colorspace = mf.colorspace;
1679
1680 if (image_mode) {
1681 /* Scale pix->{width x height} down to width x height */
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001682 scale_h = calc_scale(ceu_sub_width, &pix->width);
1683 scale_v = calc_scale(ceu_sub_height, &pix->height);
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001684 } else {
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001685 pix->width = ceu_sub_width;
1686 pix->height = ceu_sub_height;
1687 scale_h = 0;
1688 scale_v = 0;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001689 }
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001690
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001691 pcdev->cflcr = scale_h | (scale_v << 16);
1692
1693 /*
1694 * We have calculated CFLCR, the actual configuration will be performed
1695 * in sh_mobile_ceu_set_bus_param()
1696 */
1697
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001698 dev_geo(dev, "10: W: %u : 0x%x = %u, H: %u : 0x%x = %u\n",
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001699 ceu_sub_width, scale_h, pix->width,
1700 ceu_sub_height, scale_v, pix->height);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001701
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001702 cam->code = xlate->code;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001703 icd->current_fmt = xlate;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001704
Kuninori Morimoto1edcc102009-12-11 11:53:53 -03001705 pcdev->field = field;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001706 pcdev->image_mode = image_mode;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001707
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001708 /* CFSZR requirement */
1709 pix->width &= ~3;
1710 pix->height &= ~3;
1711
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001712 return 0;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001713}
1714
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001715static int sh_mobile_ceu_try_fmt(struct soc_camera_device *icd,
1716 struct v4l2_format *f)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001717{
Magnus Damm9414de32008-12-18 11:49:06 -03001718 const struct soc_camera_format_xlate *xlate;
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001719 struct v4l2_pix_format *pix = &f->fmt.pix;
Guennadi Liakhovetskic9c1f1c2009-08-25 11:46:59 -03001720 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
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;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001723 int width, height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001724 int ret;
Guennadi Liakhovetskia2c8c682008-12-01 09:44:53 -03001725
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001726 dev_geo(icd->parent, "TRY_FMT(pix=0x%x, %ux%u)\n",
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001727 pixfmt, pix->width, pix->height);
1728
Magnus Damm9414de32008-12-18 11:49:06 -03001729 xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
1730 if (!xlate) {
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001731 dev_warn(icd->parent, "Format %x not found\n", pixfmt);
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001732 return -EINVAL;
Magnus Damm9414de32008-12-18 11:49:06 -03001733 }
Guennadi Liakhovetski25c4d742008-12-01 09:44:59 -03001734
Magnus Damm0d3244d2008-07-16 22:59:28 -03001735 /* FIXME: calculate using depth and bus width */
1736
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001737 /* CFSZR requires height and width to be 4-pixel aligned */
1738 v4l_bound_align_image(&pix->width, 2, 2560, 2,
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001739 &pix->height, 4, 1920, 2, 0);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001740
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001741 width = pix->width;
1742 height = pix->height;
1743
Magnus Damm0d3244d2008-07-16 22:59:28 -03001744 /* limit to sensor capabilities */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001745 mf.width = pix->width;
1746 mf.height = pix->height;
1747 mf.field = pix->field;
1748 mf.code = xlate->code;
1749 mf.colorspace = pix->colorspace;
1750
Guennadi Liakhovetski24105eb2011-03-23 05:41:28 -03001751 ret = v4l2_device_call_until_err(sd->v4l2_dev, (long)icd, video, try_mbus_fmt, &mf);
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001752 if (ret < 0)
1753 return ret;
1754
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001755 pix->width = mf.width;
1756 pix->height = mf.height;
1757 pix->field = mf.field;
1758 pix->colorspace = mf.colorspace;
1759
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001760 switch (pixfmt) {
1761 case V4L2_PIX_FMT_NV12:
1762 case V4L2_PIX_FMT_NV21:
1763 case V4L2_PIX_FMT_NV16:
1764 case V4L2_PIX_FMT_NV61:
1765 /* FIXME: check against rect_max after converting soc-camera */
1766 /* We can scale precisely, need a bigger image from camera */
1767 if (pix->width < width || pix->height < height) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001768 /*
1769 * We presume, the sensor behaves sanely, i.e., if
1770 * requested a bigger rectangle, it will not return a
1771 * smaller one.
1772 */
1773 mf.width = 2560;
1774 mf.height = 1920;
Guennadi Liakhovetski24105eb2011-03-23 05:41:28 -03001775 ret = v4l2_device_call_until_err(sd->v4l2_dev, (long)icd, video,
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001776 try_mbus_fmt, &mf);
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001777 if (ret < 0) {
1778 /* Shouldn't actually happen... */
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001779 dev_err(icd->parent,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001780 "FIXME: client try_fmt() = %d\n", ret);
1781 return ret;
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001782 }
1783 }
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001784 /* We will scale exactly */
1785 if (mf.width > width)
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001786 pix->width = width;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001787 if (mf.height > height)
Guennadi Liakhovetski961801b2009-08-25 11:46:54 -03001788 pix->height = height;
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001789 }
1790
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001791 pix->width &= ~3;
1792 pix->height &= ~3;
1793
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001794 dev_geo(icd->parent, "%s(): return %d, fmt 0x%x, %ux%u\n",
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001795 __func__, ret, pix->pixelformat, pix->width, pix->height);
1796
Kuninori Morimotoccab8a22008-12-18 12:51:21 -03001797 return ret;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001798}
1799
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001800static int sh_mobile_ceu_set_livecrop(struct soc_camera_device *icd,
1801 struct v4l2_crop *a)
1802{
1803 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001804 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001805 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1806 u32 out_width = icd->user_width, out_height = icd->user_height;
1807 int ret;
1808
1809 /* Freeze queue */
1810 pcdev->frozen = 1;
1811 /* Wait for frame */
1812 ret = wait_for_completion_interruptible(&pcdev->complete);
1813 /* Stop the client */
1814 ret = v4l2_subdev_call(sd, video, s_stream, 0);
1815 if (ret < 0)
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001816 dev_warn(icd->parent,
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001817 "Client failed to stop the stream: %d\n", ret);
1818 else
1819 /* Do the crop, if it fails, there's nothing more we can do */
1820 sh_mobile_ceu_set_crop(icd, a);
1821
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001822 dev_geo(icd->parent, "Output after crop: %ux%u\n", icd->user_width, icd->user_height);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001823
1824 if (icd->user_width != out_width || icd->user_height != out_height) {
1825 struct v4l2_format f = {
1826 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
1827 .fmt.pix = {
1828 .width = out_width,
1829 .height = out_height,
1830 .pixelformat = icd->current_fmt->host_fmt->fourcc,
1831 .field = pcdev->field,
1832 .colorspace = icd->colorspace,
1833 },
1834 };
1835 ret = sh_mobile_ceu_set_fmt(icd, &f);
1836 if (!ret && (out_width != f.fmt.pix.width ||
1837 out_height != f.fmt.pix.height))
1838 ret = -EINVAL;
1839 if (!ret) {
Guennadi Liakhovetskieec5ce02011-07-22 07:43:15 -03001840 icd->user_width = out_width & ~3;
1841 icd->user_height = out_height & ~3;
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001842 ret = sh_mobile_ceu_set_bus_param(icd,
1843 icd->current_fmt->host_fmt->fourcc);
1844 }
1845 }
1846
1847 /* Thaw the queue */
1848 pcdev->frozen = 0;
1849 spin_lock_irq(&pcdev->lock);
1850 sh_mobile_ceu_capture(pcdev);
1851 spin_unlock_irq(&pcdev->lock);
1852 /* Start the client */
1853 ret = v4l2_subdev_call(sd, video, s_stream, 1);
1854 return ret;
1855}
1856
Magnus Damm0d3244d2008-07-16 22:59:28 -03001857static unsigned int sh_mobile_ceu_poll(struct file *file, poll_table *pt)
1858{
Guennadi Liakhovetski57bee292010-08-17 14:29:51 -03001859 struct soc_camera_device *icd = file->private_data;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001860
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001861 return vb2_poll(&icd->vb2_vidq, file, pt);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001862}
1863
1864static int sh_mobile_ceu_querycap(struct soc_camera_host *ici,
1865 struct v4l2_capability *cap)
1866{
1867 strlcpy(cap->card, "SuperH_Mobile_CEU", sizeof(cap->card));
Magnus Damm0d3244d2008-07-16 22:59:28 -03001868 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1869 return 0;
1870}
1871
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001872static int sh_mobile_ceu_init_videobuf(struct vb2_queue *q,
1873 struct soc_camera_device *icd)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001874{
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001875 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1876 q->io_modes = VB2_MMAP | VB2_USERPTR;
1877 q->drv_priv = icd;
1878 q->ops = &sh_mobile_ceu_videobuf_ops;
1879 q->mem_ops = &vb2_dma_contig_memops;
1880 q->buf_struct_size = sizeof(struct sh_mobile_ceu_buffer);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001881
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001882 return vb2_queue_init(q);
Magnus Damm0d3244d2008-07-16 22:59:28 -03001883}
1884
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001885static int sh_mobile_ceu_get_ctrl(struct soc_camera_device *icd,
1886 struct v4l2_control *ctrl)
1887{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001888 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001889 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1890 u32 val;
1891
1892 switch (ctrl->id) {
1893 case V4L2_CID_SHARPNESS:
1894 val = ceu_read(pcdev, CLFCR);
1895 ctrl->value = val ^ 1;
1896 return 0;
1897 }
1898 return -ENOIOCTLCMD;
1899}
1900
1901static int sh_mobile_ceu_set_ctrl(struct soc_camera_device *icd,
1902 struct v4l2_control *ctrl)
1903{
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -03001904 struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001905 struct sh_mobile_ceu_dev *pcdev = ici->priv;
1906
1907 switch (ctrl->id) {
1908 case V4L2_CID_SHARPNESS:
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -03001909 switch (icd->current_fmt->host_fmt->fourcc) {
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001910 case V4L2_PIX_FMT_NV12:
1911 case V4L2_PIX_FMT_NV21:
1912 case V4L2_PIX_FMT_NV16:
1913 case V4L2_PIX_FMT_NV61:
1914 ceu_write(pcdev, CLFCR, !ctrl->value);
1915 return 0;
1916 }
1917 return -EINVAL;
1918 }
1919 return -ENOIOCTLCMD;
1920}
1921
1922static const struct v4l2_queryctrl sh_mobile_ceu_controls[] = {
1923 {
1924 .id = V4L2_CID_SHARPNESS,
1925 .type = V4L2_CTRL_TYPE_BOOLEAN,
1926 .name = "Low-pass filter",
1927 .minimum = 0,
1928 .maximum = 1,
1929 .step = 1,
1930 .default_value = 0,
1931 },
1932};
1933
Magnus Damm0d3244d2008-07-16 22:59:28 -03001934static struct soc_camera_host_ops sh_mobile_ceu_host_ops = {
1935 .owner = THIS_MODULE,
1936 .add = sh_mobile_ceu_add_device,
1937 .remove = sh_mobile_ceu_remove_device,
Magnus Damm9414de32008-12-18 11:49:06 -03001938 .get_formats = sh_mobile_ceu_get_formats,
Guennadi Liakhovetski904078f2009-08-25 11:46:52 -03001939 .put_formats = sh_mobile_ceu_put_formats,
Guennadi Liakhovetskie6226812010-03-23 11:23:31 -03001940 .get_crop = sh_mobile_ceu_get_crop,
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -03001941 .set_crop = sh_mobile_ceu_set_crop,
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03001942 .set_livecrop = sh_mobile_ceu_set_livecrop,
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -03001943 .set_fmt = sh_mobile_ceu_set_fmt,
1944 .try_fmt = sh_mobile_ceu_try_fmt,
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001945 .set_ctrl = sh_mobile_ceu_set_ctrl,
1946 .get_ctrl = sh_mobile_ceu_get_ctrl,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001947 .poll = sh_mobile_ceu_poll,
1948 .querycap = sh_mobile_ceu_querycap,
Magnus Damm0d3244d2008-07-16 22:59:28 -03001949 .set_bus_param = sh_mobile_ceu_set_bus_param,
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03001950 .init_videobuf2 = sh_mobile_ceu_init_videobuf,
Guennadi Liakhovetski4a6110b2009-08-25 11:44:15 -03001951 .controls = sh_mobile_ceu_controls,
1952 .num_controls = ARRAY_SIZE(sh_mobile_ceu_controls),
Magnus Damm0d3244d2008-07-16 22:59:28 -03001953};
1954
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001955struct bus_wait {
1956 struct notifier_block notifier;
1957 struct completion completion;
1958 struct device *dev;
1959};
1960
1961static int bus_notify(struct notifier_block *nb,
1962 unsigned long action, void *data)
1963{
1964 struct device *dev = data;
1965 struct bus_wait *wait = container_of(nb, struct bus_wait, notifier);
1966
1967 if (wait->dev != dev)
1968 return NOTIFY_DONE;
1969
1970 switch (action) {
1971 case BUS_NOTIFY_UNBOUND_DRIVER:
1972 /* Protect from module unloading */
1973 wait_for_completion(&wait->completion);
1974 return NOTIFY_OK;
1975 }
1976 return NOTIFY_DONE;
1977}
1978
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001979static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -03001980{
1981 struct sh_mobile_ceu_dev *pcdev;
1982 struct resource *res;
1983 void __iomem *base;
1984 unsigned int irq;
1985 int err = 0;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03001986 struct bus_wait wait = {
1987 .completion = COMPLETION_INITIALIZER_ONSTACK(wait.completion),
1988 .notifier.notifier_call = bus_notify,
1989 };
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03001990 struct sh_mobile_ceu_companion *csi2;
Magnus Damm0d3244d2008-07-16 22:59:28 -03001991
1992 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1993 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb89fc2e2010-01-09 20:45:13 -03001994 if (!res || (int)irq <= 0) {
Magnus Damm0d3244d2008-07-16 22:59:28 -03001995 dev_err(&pdev->dev, "Not enough CEU platform resources.\n");
1996 err = -ENODEV;
1997 goto exit;
1998 }
1999
2000 pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
2001 if (!pcdev) {
2002 dev_err(&pdev->dev, "Could not allocate pcdev\n");
2003 err = -ENOMEM;
2004 goto exit;
2005 }
2006
Magnus Damm0d3244d2008-07-16 22:59:28 -03002007 INIT_LIST_HEAD(&pcdev->capture);
2008 spin_lock_init(&pcdev->lock);
Guennadi Liakhovetski3dac3222011-03-28 13:39:16 -03002009 init_completion(&pcdev->complete);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002010
2011 pcdev->pdata = pdev->dev.platform_data;
2012 if (!pcdev->pdata) {
2013 err = -EINVAL;
2014 dev_err(&pdev->dev, "CEU platform data not set.\n");
2015 goto exit_kfree;
2016 }
2017
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03002018 base = ioremap_nocache(res->start, resource_size(res));
Magnus Damm0d3244d2008-07-16 22:59:28 -03002019 if (!base) {
2020 err = -ENXIO;
2021 dev_err(&pdev->dev, "Unable to ioremap CEU registers.\n");
2022 goto exit_kfree;
2023 }
2024
2025 pcdev->irq = irq;
2026 pcdev->base = base;
2027 pcdev->video_limit = 0; /* only enabled if second resource exists */
Magnus Damm0d3244d2008-07-16 22:59:28 -03002028
2029 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2030 if (res) {
2031 err = dma_declare_coherent_memory(&pdev->dev, res->start,
2032 res->start,
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03002033 resource_size(res),
Magnus Damm0d3244d2008-07-16 22:59:28 -03002034 DMA_MEMORY_MAP |
2035 DMA_MEMORY_EXCLUSIVE);
2036 if (!err) {
2037 dev_err(&pdev->dev, "Unable to declare CEU memory.\n");
2038 err = -ENXIO;
2039 goto exit_iounmap;
2040 }
2041
Guennadi Liakhovetskieb6c8552009-04-24 12:55:18 -03002042 pcdev->video_limit = resource_size(res);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002043 }
2044
2045 /* request irq */
2046 err = request_irq(pcdev->irq, sh_mobile_ceu_irq, IRQF_DISABLED,
Kay Sieversaf128a12008-10-30 00:51:46 -03002047 dev_name(&pdev->dev), pcdev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002048 if (err) {
2049 dev_err(&pdev->dev, "Unable to register CEU interrupt.\n");
2050 goto exit_release_mem;
2051 }
2052
Magnus Damm6d1386c2009-08-14 10:49:17 +00002053 pm_suspend_ignore_children(&pdev->dev, true);
2054 pm_runtime_enable(&pdev->dev);
2055 pm_runtime_resume(&pdev->dev);
Magnus Damma42b6dd2008-10-31 20:21:44 +09002056
Magnus Damm0d3244d2008-07-16 22:59:28 -03002057 pcdev->ici.priv = pcdev;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03002058 pcdev->ici.v4l2_dev.dev = &pdev->dev;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002059 pcdev->ici.nr = pdev->id;
Kay Sieversaf128a12008-10-30 00:51:46 -03002060 pcdev->ici.drv_name = dev_name(&pdev->dev);
2061 pcdev->ici.ops = &sh_mobile_ceu_host_ops;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002062
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002063 pcdev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
2064 if (IS_ERR(pcdev->alloc_ctx)) {
2065 err = PTR_ERR(pcdev->alloc_ctx);
2066 goto exit_free_clk;
2067 }
2068
2069 err = soc_camera_host_register(&pcdev->ici);
2070 if (err)
2071 goto exit_free_ctx;
2072
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002073 /* CSI2 interfacing */
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002074 csi2 = pcdev->pdata->csi2;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002075 if (csi2) {
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002076 struct platform_device *csi2_pdev =
2077 platform_device_alloc("sh-mobile-csi2", csi2->id);
2078 struct sh_csi2_pdata *csi2_pdata = csi2->platform_data;
2079
2080 if (!csi2_pdev) {
2081 err = -ENOMEM;
2082 goto exit_host_unregister;
2083 }
2084
2085 pcdev->csi2_pdev = csi2_pdev;
2086
2087 err = platform_device_add_data(csi2_pdev, csi2_pdata, sizeof(*csi2_pdata));
2088 if (err < 0)
2089 goto exit_pdev_put;
2090
2091 csi2_pdata = csi2_pdev->dev.platform_data;
2092 csi2_pdata->v4l2_dev = &pcdev->ici.v4l2_dev;
2093
2094 csi2_pdev->resource = csi2->resource;
2095 csi2_pdev->num_resources = csi2->num_resources;
2096
2097 err = platform_device_add(csi2_pdev);
2098 if (err < 0)
2099 goto exit_pdev_put;
2100
2101 wait.dev = &csi2_pdev->dev;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002102
2103 err = bus_register_notifier(&platform_bus_type, &wait.notifier);
2104 if (err < 0)
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002105 goto exit_pdev_unregister;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002106
2107 /*
2108 * From this point the driver module will not unload, until
2109 * we complete the completion.
2110 */
2111
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002112 if (!csi2_pdev->dev.driver) {
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002113 complete(&wait.completion);
2114 /* Either too late, or probing failed */
2115 bus_unregister_notifier(&platform_bus_type, &wait.notifier);
2116 err = -ENXIO;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002117 goto exit_pdev_unregister;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002118 }
2119
2120 /*
2121 * The module is still loaded, in the worst case it is hanging
2122 * in device release on our completion. So, _now_ dereferencing
2123 * the "owner" is safe!
2124 */
2125
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002126 err = try_module_get(csi2_pdev->dev.driver->owner);
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002127
2128 /* Let notifier complete, if it has been locked */
2129 complete(&wait.completion);
2130 bus_unregister_notifier(&platform_bus_type, &wait.notifier);
2131 if (!err) {
2132 err = -ENODEV;
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002133 goto exit_pdev_unregister;
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002134 }
2135 }
2136
Magnus Damm0d3244d2008-07-16 22:59:28 -03002137 return 0;
2138
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002139exit_pdev_unregister:
2140 platform_device_del(pcdev->csi2_pdev);
2141exit_pdev_put:
2142 pcdev->csi2_pdev->resource = NULL;
2143 platform_device_put(pcdev->csi2_pdev);
2144exit_host_unregister:
2145 soc_camera_host_unregister(&pcdev->ici);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002146exit_free_ctx:
2147 vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
Kuninori Morimoto055e05a2009-11-09 16:13:24 -03002148exit_free_clk:
2149 pm_runtime_disable(&pdev->dev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002150 free_irq(pcdev->irq, pcdev);
2151exit_release_mem:
2152 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
2153 dma_release_declared_memory(&pdev->dev);
2154exit_iounmap:
2155 iounmap(base);
2156exit_kfree:
2157 kfree(pcdev);
2158exit:
2159 return err;
2160}
2161
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03002162static int __devexit sh_mobile_ceu_remove(struct platform_device *pdev)
Magnus Damm0d3244d2008-07-16 22:59:28 -03002163{
Guennadi Liakhovetskieff505f2009-04-24 12:55:48 -03002164 struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
2165 struct sh_mobile_ceu_dev *pcdev = container_of(soc_host,
2166 struct sh_mobile_ceu_dev, ici);
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002167 struct platform_device *csi2_pdev = pcdev->csi2_pdev;
Magnus Damm0d3244d2008-07-16 22:59:28 -03002168
Guennadi Liakhovetskieff505f2009-04-24 12:55:48 -03002169 soc_camera_host_unregister(soc_host);
Kuninori Morimoto055e05a2009-11-09 16:13:24 -03002170 pm_runtime_disable(&pdev->dev);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002171 free_irq(pcdev->irq, pcdev);
2172 if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
2173 dma_release_declared_memory(&pdev->dev);
2174 iounmap(pcdev->base);
Guennadi Liakhovetskia6168982011-02-18 05:30:15 -03002175 vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
Guennadi Liakhovetski6b526fe2011-07-01 11:19:58 -03002176 if (csi2_pdev && csi2_pdev->dev.driver) {
2177 struct module *csi2_drv = csi2_pdev->dev.driver->owner;
2178 platform_device_del(csi2_pdev);
2179 csi2_pdev->resource = NULL;
2180 platform_device_put(csi2_pdev);
2181 module_put(csi2_drv);
2182 }
Magnus Damm0d3244d2008-07-16 22:59:28 -03002183 kfree(pcdev);
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002184
Magnus Damm0d3244d2008-07-16 22:59:28 -03002185 return 0;
2186}
2187
Magnus Damm6d1386c2009-08-14 10:49:17 +00002188static int sh_mobile_ceu_runtime_nop(struct device *dev)
2189{
2190 /* Runtime PM callback shared between ->runtime_suspend()
2191 * and ->runtime_resume(). Simply returns success.
2192 *
2193 * This driver re-initializes all registers after
2194 * pm_runtime_get_sync() anyway so there is no need
2195 * to save and restore registers here.
2196 */
2197 return 0;
2198}
2199
Alexey Dobriyan47145212009-12-14 18:00:08 -08002200static const struct dev_pm_ops sh_mobile_ceu_dev_pm_ops = {
Magnus Damm6d1386c2009-08-14 10:49:17 +00002201 .runtime_suspend = sh_mobile_ceu_runtime_nop,
2202 .runtime_resume = sh_mobile_ceu_runtime_nop,
2203};
2204
Magnus Damm0d3244d2008-07-16 22:59:28 -03002205static struct platform_driver sh_mobile_ceu_driver = {
2206 .driver = {
2207 .name = "sh_mobile_ceu",
Magnus Damm6d1386c2009-08-14 10:49:17 +00002208 .pm = &sh_mobile_ceu_dev_pm_ops,
Magnus Damm0d3244d2008-07-16 22:59:28 -03002209 },
2210 .probe = sh_mobile_ceu_probe,
Uwe Kleine-König50e55fd2009-12-10 17:00:13 -03002211 .remove = __devexit_p(sh_mobile_ceu_remove),
Magnus Damm0d3244d2008-07-16 22:59:28 -03002212};
2213
2214static int __init sh_mobile_ceu_init(void)
2215{
Guennadi Liakhovetskib3b50202010-07-26 12:13:34 -03002216 /* Whatever return code */
2217 request_module("sh_mobile_csi2");
Magnus Damm0d3244d2008-07-16 22:59:28 -03002218 return platform_driver_register(&sh_mobile_ceu_driver);
2219}
2220
2221static void __exit sh_mobile_ceu_exit(void)
2222{
Paul Mundt01c1e4c2008-08-01 19:48:51 -03002223 platform_driver_unregister(&sh_mobile_ceu_driver);
Magnus Damm0d3244d2008-07-16 22:59:28 -03002224}
2225
2226module_init(sh_mobile_ceu_init);
2227module_exit(sh_mobile_ceu_exit);
2228
2229MODULE_DESCRIPTION("SuperH Mobile CEU driver");
2230MODULE_AUTHOR("Magnus Damm");
2231MODULE_LICENSE("GPL");
Mauro Carvalho Chehab64dc3c12011-06-25 11:28:37 -03002232MODULE_VERSION("0.0.6");
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03002233MODULE_ALIAS("platform:sh_mobile_ceu");