1
2
3
4
5
6
7
8
9
10
11#include <linux/delay.h>
12#include <linux/err.h>
13#include <linux/init.h>
14#include <linux/interrupt.h>
15#include <linux/io.h>
16#include <linux/module.h>
17#include <linux/of_graph.h>
18#include <linux/pinctrl/consumer.h>
19#include <linux/platform_device.h>
20#include <linux/pm_runtime.h>
21#include <linux/slab.h>
22#include <linux/uaccess.h>
23#include <linux/videodev2.h>
24
25#include <media/v4l2-common.h>
26#include <media/v4l2-ctrls.h>
27#include <media/v4l2-event.h>
28#include <media/v4l2-fwnode.h>
29
30#include "am437x-vpfe.h"
31
32#define VPFE_MODULE_NAME "vpfe"
33#define VPFE_VERSION "0.1.0"
34
35static int debug;
36module_param(debug, int, 0644);
37MODULE_PARM_DESC(debug, "Debug level 0-8");
38
39#define vpfe_dbg(level, dev, fmt, arg...) \
40 v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ##arg)
41#define vpfe_info(dev, fmt, arg...) \
42 v4l2_info(&dev->v4l2_dev, fmt, ##arg)
43#define vpfe_err(dev, fmt, arg...) \
44 v4l2_err(&dev->v4l2_dev, fmt, ##arg)
45
46
47struct vpfe_standard {
48 v4l2_std_id std_id;
49 unsigned int width;
50 unsigned int height;
51 struct v4l2_fract pixelaspect;
52 int frame_format;
53};
54
55static const struct vpfe_standard vpfe_standards[] = {
56 {V4L2_STD_525_60, 720, 480, {11, 10}, 1},
57 {V4L2_STD_625_50, 720, 576, {54, 59}, 1},
58};
59
60static struct vpfe_fmt formats[VPFE_NUM_FORMATS] = {
61 {
62 .fourcc = V4L2_PIX_FMT_YUYV,
63 .code = MEDIA_BUS_FMT_YUYV8_2X8,
64 .bitsperpixel = 16,
65 }, {
66 .fourcc = V4L2_PIX_FMT_UYVY,
67 .code = MEDIA_BUS_FMT_UYVY8_2X8,
68 .bitsperpixel = 16,
69 }, {
70 .fourcc = V4L2_PIX_FMT_YVYU,
71 .code = MEDIA_BUS_FMT_YVYU8_2X8,
72 .bitsperpixel = 16,
73 }, {
74 .fourcc = V4L2_PIX_FMT_VYUY,
75 .code = MEDIA_BUS_FMT_VYUY8_2X8,
76 .bitsperpixel = 16,
77 }, {
78 .fourcc = V4L2_PIX_FMT_SBGGR8,
79 .code = MEDIA_BUS_FMT_SBGGR8_1X8,
80 .bitsperpixel = 8,
81 }, {
82 .fourcc = V4L2_PIX_FMT_SGBRG8,
83 .code = MEDIA_BUS_FMT_SGBRG8_1X8,
84 .bitsperpixel = 8,
85 }, {
86 .fourcc = V4L2_PIX_FMT_SGRBG8,
87 .code = MEDIA_BUS_FMT_SGRBG8_1X8,
88 .bitsperpixel = 8,
89 }, {
90 .fourcc = V4L2_PIX_FMT_SRGGB8,
91 .code = MEDIA_BUS_FMT_SRGGB8_1X8,
92 .bitsperpixel = 8,
93 }, {
94 .fourcc = V4L2_PIX_FMT_RGB565,
95 .code = MEDIA_BUS_FMT_RGB565_2X8_LE,
96 .bitsperpixel = 16,
97 }, {
98 .fourcc = V4L2_PIX_FMT_RGB565X,
99 .code = MEDIA_BUS_FMT_RGB565_2X8_BE,
100 .bitsperpixel = 16,
101 },
102};
103
104static int __subdev_get_format(struct vpfe_device *vpfe,
105 struct v4l2_mbus_framefmt *fmt);
106static int vpfe_calc_format_size(struct vpfe_device *vpfe,
107 const struct vpfe_fmt *fmt,
108 struct v4l2_format *f);
109
110static struct vpfe_fmt *find_format_by_code(struct vpfe_device *vpfe,
111 unsigned int code)
112{
113 struct vpfe_fmt *fmt;
114 unsigned int k;
115
116 for (k = 0; k < vpfe->num_active_fmt; k++) {
117 fmt = vpfe->active_fmt[k];
118 if (fmt->code == code)
119 return fmt;
120 }
121
122 return NULL;
123}
124
125static struct vpfe_fmt *find_format_by_pix(struct vpfe_device *vpfe,
126 unsigned int pixelformat)
127{
128 struct vpfe_fmt *fmt;
129 unsigned int k;
130
131 for (k = 0; k < vpfe->num_active_fmt; k++) {
132 fmt = vpfe->active_fmt[k];
133 if (fmt->fourcc == pixelformat)
134 return fmt;
135 }
136
137 return NULL;
138}
139
140static unsigned int __get_bytesperpixel(struct vpfe_device *vpfe,
141 const struct vpfe_fmt *fmt)
142{
143 struct vpfe_subdev_info *sdinfo = vpfe->current_subdev;
144 unsigned int bus_width = sdinfo->vpfe_param.bus_width;
145 u32 bpp, bus_width_bytes, clocksperpixel;
146
147 bus_width_bytes = ALIGN(bus_width, 8) >> 3;
148 clocksperpixel = DIV_ROUND_UP(fmt->bitsperpixel, bus_width);
149 bpp = clocksperpixel * bus_width_bytes;
150
151 return bpp;
152}
153
154
155static char *print_fourcc(u32 fmt)
156{
157 static char code[5];
158
159 code[0] = (unsigned char)(fmt & 0xff);
160 code[1] = (unsigned char)((fmt >> 8) & 0xff);
161 code[2] = (unsigned char)((fmt >> 16) & 0xff);
162 code[3] = (unsigned char)((fmt >> 24) & 0xff);
163 code[4] = '\0';
164
165 return code;
166}
167
168static inline u32 vpfe_reg_read(struct vpfe_ccdc *ccdc, u32 offset)
169{
170 return ioread32(ccdc->ccdc_cfg.base_addr + offset);
171}
172
173static inline void vpfe_reg_write(struct vpfe_ccdc *ccdc, u32 val, u32 offset)
174{
175 iowrite32(val, ccdc->ccdc_cfg.base_addr + offset);
176}
177
178static inline struct vpfe_device *to_vpfe(struct vpfe_ccdc *ccdc)
179{
180 return container_of(ccdc, struct vpfe_device, ccdc);
181}
182
183static inline
184struct vpfe_cap_buffer *to_vpfe_buffer(struct vb2_v4l2_buffer *vb)
185{
186 return container_of(vb, struct vpfe_cap_buffer, vb);
187}
188
189static inline void vpfe_pcr_enable(struct vpfe_ccdc *ccdc, int flag)
190{
191 vpfe_reg_write(ccdc, !!flag, VPFE_PCR);
192}
193
194static void vpfe_config_enable(struct vpfe_ccdc *ccdc, int flag)
195{
196 unsigned int cfg;
197
198 if (!flag) {
199 cfg = vpfe_reg_read(ccdc, VPFE_CONFIG);
200 cfg &= ~(VPFE_CONFIG_EN_ENABLE << VPFE_CONFIG_EN_SHIFT);
201 } else {
202 cfg = VPFE_CONFIG_EN_ENABLE << VPFE_CONFIG_EN_SHIFT;
203 }
204
205 vpfe_reg_write(ccdc, cfg, VPFE_CONFIG);
206}
207
208static void vpfe_ccdc_setwin(struct vpfe_ccdc *ccdc,
209 struct v4l2_rect *image_win,
210 enum ccdc_frmfmt frm_fmt,
211 int bpp)
212{
213 int horz_start, horz_nr_pixels;
214 int vert_start, vert_nr_lines;
215 int val, mid_img;
216
217
218
219
220
221
222 horz_start = image_win->left * bpp;
223 horz_nr_pixels = (image_win->width * bpp) - 1;
224 vpfe_reg_write(ccdc, (horz_start << VPFE_HORZ_INFO_SPH_SHIFT) |
225 horz_nr_pixels, VPFE_HORZ_INFO);
226
227 vert_start = image_win->top;
228
229 if (frm_fmt == CCDC_FRMFMT_INTERLACED) {
230 vert_nr_lines = (image_win->height >> 1) - 1;
231 vert_start >>= 1;
232
233 val = (vert_start << VPFE_VDINT_VDINT0_SHIFT);
234 } else {
235 vert_nr_lines = image_win->height - 1;
236
237
238
239
240 mid_img = vert_start + (image_win->height / 2);
241 val = (vert_start << VPFE_VDINT_VDINT0_SHIFT) |
242 (mid_img & VPFE_VDINT_VDINT1_MASK);
243 }
244
245 vpfe_reg_write(ccdc, val, VPFE_VDINT);
246
247 vpfe_reg_write(ccdc, (vert_start << VPFE_VERT_START_SLV0_SHIFT) |
248 vert_start, VPFE_VERT_START);
249 vpfe_reg_write(ccdc, vert_nr_lines, VPFE_VERT_LINES);
250}
251
252static void vpfe_reg_dump(struct vpfe_ccdc *ccdc)
253{
254 struct vpfe_device *vpfe = to_vpfe(ccdc);
255
256 vpfe_dbg(3, vpfe, "ALAW: 0x%x\n", vpfe_reg_read(ccdc, VPFE_ALAW));
257 vpfe_dbg(3, vpfe, "CLAMP: 0x%x\n", vpfe_reg_read(ccdc, VPFE_CLAMP));
258 vpfe_dbg(3, vpfe, "DCSUB: 0x%x\n", vpfe_reg_read(ccdc, VPFE_DCSUB));
259 vpfe_dbg(3, vpfe, "BLKCMP: 0x%x\n", vpfe_reg_read(ccdc, VPFE_BLKCMP));
260 vpfe_dbg(3, vpfe, "COLPTN: 0x%x\n", vpfe_reg_read(ccdc, VPFE_COLPTN));
261 vpfe_dbg(3, vpfe, "SDOFST: 0x%x\n", vpfe_reg_read(ccdc, VPFE_SDOFST));
262 vpfe_dbg(3, vpfe, "SYN_MODE: 0x%x\n",
263 vpfe_reg_read(ccdc, VPFE_SYNMODE));
264 vpfe_dbg(3, vpfe, "HSIZE_OFF: 0x%x\n",
265 vpfe_reg_read(ccdc, VPFE_HSIZE_OFF));
266 vpfe_dbg(3, vpfe, "HORZ_INFO: 0x%x\n",
267 vpfe_reg_read(ccdc, VPFE_HORZ_INFO));
268 vpfe_dbg(3, vpfe, "VERT_START: 0x%x\n",
269 vpfe_reg_read(ccdc, VPFE_VERT_START));
270 vpfe_dbg(3, vpfe, "VERT_LINES: 0x%x\n",
271 vpfe_reg_read(ccdc, VPFE_VERT_LINES));
272}
273
274static int
275vpfe_ccdc_validate_param(struct vpfe_ccdc *ccdc,
276 struct vpfe_ccdc_config_params_raw *ccdcparam)
277{
278 struct vpfe_device *vpfe = to_vpfe(ccdc);
279 u8 max_gamma, max_data;
280
281 if (!ccdcparam->alaw.enable)
282 return 0;
283
284 max_gamma = ccdc_gamma_width_max_bit(ccdcparam->alaw.gamma_wd);
285 max_data = ccdc_data_size_max_bit(ccdcparam->data_sz);
286
287 if (ccdcparam->alaw.gamma_wd > VPFE_CCDC_GAMMA_BITS_09_0 ||
288 ccdcparam->data_sz > VPFE_CCDC_DATA_8BITS ||
289 max_gamma > max_data) {
290 vpfe_dbg(1, vpfe, "Invalid data line select\n");
291 return -EINVAL;
292 }
293
294 return 0;
295}
296
297static void
298vpfe_ccdc_update_raw_params(struct vpfe_ccdc *ccdc,
299 struct vpfe_ccdc_config_params_raw *raw_params)
300{
301 struct vpfe_ccdc_config_params_raw *config_params =
302 &ccdc->ccdc_cfg.bayer.config_params;
303
304 *config_params = *raw_params;
305}
306
307
308
309
310
311static void vpfe_ccdc_restore_defaults(struct vpfe_ccdc *ccdc)
312{
313 int i;
314
315
316 vpfe_pcr_enable(ccdc, 0);
317
318
319 for (i = 4; i <= 0x94; i += 4)
320 vpfe_reg_write(ccdc, 0, i);
321
322 vpfe_reg_write(ccdc, VPFE_NO_CULLING, VPFE_CULLING);
323 vpfe_reg_write(ccdc, VPFE_CCDC_GAMMA_BITS_11_2, VPFE_ALAW);
324}
325
326static int vpfe_ccdc_close(struct vpfe_ccdc *ccdc, struct device *dev)
327{
328 struct vpfe_device *vpfe = to_vpfe(ccdc);
329 u32 dma_cntl, pcr;
330
331 pcr = vpfe_reg_read(ccdc, VPFE_PCR);
332 if (pcr)
333 vpfe_dbg(1, vpfe, "VPFE_PCR is still set (%x)", pcr);
334
335 dma_cntl = vpfe_reg_read(ccdc, VPFE_DMA_CNTL);
336 if ((dma_cntl & VPFE_DMA_CNTL_OVERFLOW))
337 vpfe_dbg(1, vpfe, "VPFE_DMA_CNTL_OVERFLOW is still set (%x)",
338 dma_cntl);
339
340
341 vpfe_ccdc_restore_defaults(ccdc);
342
343
344 vpfe_config_enable(ccdc, 0);
345
346 pm_runtime_put_sync(dev);
347 return 0;
348}
349
350static int vpfe_ccdc_set_params(struct vpfe_ccdc *ccdc, void __user *params)
351{
352 struct vpfe_device *vpfe = to_vpfe(ccdc);
353 struct vpfe_ccdc_config_params_raw raw_params;
354 int x;
355
356 if (ccdc->ccdc_cfg.if_type != VPFE_RAW_BAYER)
357 return -EINVAL;
358
359 x = copy_from_user(&raw_params, params, sizeof(raw_params));
360 if (x) {
361 vpfe_dbg(1, vpfe,
362 "%s: error in copying ccdc params, %d\n",
363 __func__, x);
364 return -EFAULT;
365 }
366
367 if (!vpfe_ccdc_validate_param(ccdc, &raw_params)) {
368 vpfe_ccdc_update_raw_params(ccdc, &raw_params);
369 return 0;
370 }
371
372 return -EINVAL;
373}
374
375
376
377
378
379static void vpfe_ccdc_config_ycbcr(struct vpfe_ccdc *ccdc)
380{
381 struct ccdc_params_ycbcr *params = &ccdc->ccdc_cfg.ycbcr;
382 u32 syn_mode;
383
384
385
386
387
388
389 vpfe_ccdc_restore_defaults(ccdc);
390
391
392
393
394
395
396 syn_mode = (((params->pix_fmt & VPFE_SYN_MODE_INPMOD_MASK) <<
397 VPFE_SYN_MODE_INPMOD_SHIFT) |
398 ((params->frm_fmt & VPFE_SYN_FLDMODE_MASK) <<
399 VPFE_SYN_FLDMODE_SHIFT) | VPFE_VDHDEN_ENABLE |
400 VPFE_WEN_ENABLE | VPFE_DATA_PACK_ENABLE);
401
402
403 if (params->bt656_enable) {
404 vpfe_reg_write(ccdc, VPFE_REC656IF_BT656_EN, VPFE_REC656IF);
405
406
407
408
409
410 syn_mode |= VPFE_SYN_MODE_VD_POL_NEGATIVE;
411 if (ccdc->ccdc_cfg.if_type == VPFE_BT656_10BIT)
412 syn_mode |= VPFE_SYN_MODE_10BITS;
413 else
414 syn_mode |= VPFE_SYN_MODE_8BITS;
415 } else {
416
417 syn_mode |= (((params->fid_pol & VPFE_FID_POL_MASK) <<
418 VPFE_FID_POL_SHIFT) |
419 ((params->hd_pol & VPFE_HD_POL_MASK) <<
420 VPFE_HD_POL_SHIFT) |
421 ((params->vd_pol & VPFE_VD_POL_MASK) <<
422 VPFE_VD_POL_SHIFT));
423 }
424 vpfe_reg_write(ccdc, syn_mode, VPFE_SYNMODE);
425
426
427 vpfe_ccdc_setwin(ccdc, ¶ms->win,
428 params->frm_fmt, params->bytesperpixel);
429
430
431
432
433
434 if (ccdc->ccdc_cfg.if_type == VPFE_BT656_10BIT)
435 vpfe_reg_write(ccdc,
436 (params->pix_order << VPFE_CCDCFG_Y8POS_SHIFT) |
437 VPFE_LATCH_ON_VSYNC_DISABLE |
438 VPFE_CCDCFG_BW656_10BIT, VPFE_CCDCFG);
439 else
440 vpfe_reg_write(ccdc,
441 (params->pix_order << VPFE_CCDCFG_Y8POS_SHIFT) |
442 VPFE_LATCH_ON_VSYNC_DISABLE, VPFE_CCDCFG);
443
444
445
446
447
448 vpfe_reg_write(ccdc, params->bytesperline, VPFE_HSIZE_OFF);
449
450
451 if (params->buf_type == CCDC_BUFTYPE_FLD_INTERLEAVED)
452
453 vpfe_reg_write(ccdc, VPFE_SDOFST_FIELD_INTERLEAVED,
454 VPFE_SDOFST);
455}
456
457static void
458vpfe_ccdc_config_black_clamp(struct vpfe_ccdc *ccdc,
459 struct vpfe_ccdc_black_clamp *bclamp)
460{
461 u32 val;
462
463 if (!bclamp->enable) {
464
465 val = (bclamp->dc_sub) & VPFE_BLK_DC_SUB_MASK;
466 vpfe_reg_write(ccdc, val, VPFE_DCSUB);
467 vpfe_reg_write(ccdc, VPFE_CLAMP_DEFAULT_VAL, VPFE_CLAMP);
468 return;
469 }
470
471
472
473
474 val = ((bclamp->sgain & VPFE_BLK_SGAIN_MASK) |
475 ((bclamp->start_pixel & VPFE_BLK_ST_PXL_MASK) <<
476 VPFE_BLK_ST_PXL_SHIFT) |
477 ((bclamp->sample_ln & VPFE_BLK_SAMPLE_LINE_MASK) <<
478 VPFE_BLK_SAMPLE_LINE_SHIFT) |
479 ((bclamp->sample_pixel & VPFE_BLK_SAMPLE_LN_MASK) <<
480 VPFE_BLK_SAMPLE_LN_SHIFT) | VPFE_BLK_CLAMP_ENABLE);
481 vpfe_reg_write(ccdc, val, VPFE_CLAMP);
482
483 vpfe_reg_write(ccdc, VPFE_DCSUB_DEFAULT_VAL, VPFE_DCSUB);
484}
485
486static void
487vpfe_ccdc_config_black_compense(struct vpfe_ccdc *ccdc,
488 struct vpfe_ccdc_black_compensation *bcomp)
489{
490 u32 val;
491
492 val = ((bcomp->b & VPFE_BLK_COMP_MASK) |
493 ((bcomp->gb & VPFE_BLK_COMP_MASK) <<
494 VPFE_BLK_COMP_GB_COMP_SHIFT) |
495 ((bcomp->gr & VPFE_BLK_COMP_MASK) <<
496 VPFE_BLK_COMP_GR_COMP_SHIFT) |
497 ((bcomp->r & VPFE_BLK_COMP_MASK) <<
498 VPFE_BLK_COMP_R_COMP_SHIFT));
499 vpfe_reg_write(ccdc, val, VPFE_BLKCMP);
500}
501
502
503
504
505
506static void vpfe_ccdc_config_raw(struct vpfe_ccdc *ccdc)
507{
508 struct vpfe_device *vpfe = to_vpfe(ccdc);
509 struct vpfe_ccdc_config_params_raw *config_params =
510 &ccdc->ccdc_cfg.bayer.config_params;
511 struct ccdc_params_raw *params = &ccdc->ccdc_cfg.bayer;
512 unsigned int syn_mode;
513 unsigned int val;
514
515
516 vpfe_ccdc_restore_defaults(ccdc);
517
518
519 vpfe_reg_write(ccdc, VPFE_LATCH_ON_VSYNC_DISABLE, VPFE_CCDCFG);
520
521
522
523
524
525
526
527
528 syn_mode = (((params->vd_pol & VPFE_VD_POL_MASK) << VPFE_VD_POL_SHIFT) |
529 ((params->hd_pol & VPFE_HD_POL_MASK) << VPFE_HD_POL_SHIFT) |
530 ((params->fid_pol & VPFE_FID_POL_MASK) <<
531 VPFE_FID_POL_SHIFT) | ((params->frm_fmt &
532 VPFE_FRM_FMT_MASK) << VPFE_FRM_FMT_SHIFT) |
533 ((config_params->data_sz & VPFE_DATA_SZ_MASK) <<
534 VPFE_DATA_SZ_SHIFT) | ((params->pix_fmt &
535 VPFE_PIX_FMT_MASK) << VPFE_PIX_FMT_SHIFT) |
536 VPFE_WEN_ENABLE | VPFE_VDHDEN_ENABLE);
537
538
539 if (config_params->alaw.enable) {
540 val = ((config_params->alaw.gamma_wd &
541 VPFE_ALAW_GAMMA_WD_MASK) | VPFE_ALAW_ENABLE);
542 vpfe_reg_write(ccdc, val, VPFE_ALAW);
543 vpfe_dbg(3, vpfe, "\nWriting 0x%x to ALAW...\n", val);
544 }
545
546
547 vpfe_ccdc_setwin(ccdc, ¶ms->win, params->frm_fmt,
548 params->bytesperpixel);
549
550
551 vpfe_ccdc_config_black_clamp(ccdc, &config_params->blk_clamp);
552
553
554 vpfe_ccdc_config_black_compense(ccdc, &config_params->blk_comp);
555
556
557 if ((config_params->data_sz == VPFE_CCDC_DATA_8BITS) ||
558 config_params->alaw.enable)
559 syn_mode |= VPFE_DATA_PACK_ENABLE;
560
561
562
563
564
565 vpfe_reg_write(ccdc, params->bytesperline, VPFE_HSIZE_OFF);
566
567 vpfe_dbg(3, vpfe, "Writing %d (%x) to HSIZE_OFF\n",
568 params->bytesperline, params->bytesperline);
569
570
571 if (params->frm_fmt == CCDC_FRMFMT_INTERLACED) {
572 if (params->image_invert_enable) {
573
574 vpfe_reg_write(ccdc, VPFE_INTERLACED_IMAGE_INVERT,
575 VPFE_SDOFST);
576 } else {
577
578 vpfe_reg_write(ccdc, VPFE_INTERLACED_NO_IMAGE_INVERT,
579 VPFE_SDOFST);
580 }
581 } else if (params->frm_fmt == CCDC_FRMFMT_PROGRESSIVE) {
582 vpfe_reg_write(ccdc, VPFE_PROGRESSIVE_NO_IMAGE_INVERT,
583 VPFE_SDOFST);
584 }
585
586 vpfe_reg_write(ccdc, syn_mode, VPFE_SYNMODE);
587
588 vpfe_reg_dump(ccdc);
589}
590
591static inline int
592vpfe_ccdc_set_buftype(struct vpfe_ccdc *ccdc,
593 enum ccdc_buftype buf_type)
594{
595 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER)
596 ccdc->ccdc_cfg.bayer.buf_type = buf_type;
597 else
598 ccdc->ccdc_cfg.ycbcr.buf_type = buf_type;
599
600 return 0;
601}
602
603static inline enum ccdc_buftype vpfe_ccdc_get_buftype(struct vpfe_ccdc *ccdc)
604{
605 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER)
606 return ccdc->ccdc_cfg.bayer.buf_type;
607
608 return ccdc->ccdc_cfg.ycbcr.buf_type;
609}
610
611static int vpfe_ccdc_set_pixel_format(struct vpfe_ccdc *ccdc, u32 pixfmt)
612{
613 struct vpfe_device *vpfe = to_vpfe(ccdc);
614
615 vpfe_dbg(1, vpfe, "%s: if_type: %d, pixfmt:%s\n",
616 __func__, ccdc->ccdc_cfg.if_type, print_fourcc(pixfmt));
617
618 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER) {
619 ccdc->ccdc_cfg.bayer.pix_fmt = CCDC_PIXFMT_RAW;
620
621
622
623
624 ccdc->ccdc_cfg.bayer.config_params.alaw.enable = 0;
625
626 switch (pixfmt) {
627 case V4L2_PIX_FMT_SBGGR8:
628 ccdc->ccdc_cfg.bayer.config_params.alaw.enable = 1;
629 break;
630
631 case V4L2_PIX_FMT_YUYV:
632 case V4L2_PIX_FMT_UYVY:
633 case V4L2_PIX_FMT_YUV420:
634 case V4L2_PIX_FMT_NV12:
635 case V4L2_PIX_FMT_RGB565X:
636 break;
637
638 case V4L2_PIX_FMT_SBGGR16:
639 default:
640 return -EINVAL;
641 }
642 } else {
643 switch (pixfmt) {
644 case V4L2_PIX_FMT_YUYV:
645 ccdc->ccdc_cfg.ycbcr.pix_order = CCDC_PIXORDER_YCBYCR;
646 break;
647
648 case V4L2_PIX_FMT_UYVY:
649 ccdc->ccdc_cfg.ycbcr.pix_order = CCDC_PIXORDER_CBYCRY;
650 break;
651
652 default:
653 return -EINVAL;
654 }
655 }
656
657 return 0;
658}
659
660static u32 vpfe_ccdc_get_pixel_format(struct vpfe_ccdc *ccdc)
661{
662 u32 pixfmt;
663
664 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER) {
665 pixfmt = V4L2_PIX_FMT_YUYV;
666 } else {
667 if (ccdc->ccdc_cfg.ycbcr.pix_order == CCDC_PIXORDER_YCBYCR)
668 pixfmt = V4L2_PIX_FMT_YUYV;
669 else
670 pixfmt = V4L2_PIX_FMT_UYVY;
671 }
672
673 return pixfmt;
674}
675
676static int
677vpfe_ccdc_set_image_window(struct vpfe_ccdc *ccdc,
678 struct v4l2_rect *win, unsigned int bpp)
679{
680 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER) {
681 ccdc->ccdc_cfg.bayer.win = *win;
682 ccdc->ccdc_cfg.bayer.bytesperpixel = bpp;
683 ccdc->ccdc_cfg.bayer.bytesperline = ALIGN(win->width * bpp, 32);
684 } else {
685 ccdc->ccdc_cfg.ycbcr.win = *win;
686 ccdc->ccdc_cfg.ycbcr.bytesperpixel = bpp;
687 ccdc->ccdc_cfg.ycbcr.bytesperline = ALIGN(win->width * bpp, 32);
688 }
689
690 return 0;
691}
692
693static inline void
694vpfe_ccdc_get_image_window(struct vpfe_ccdc *ccdc,
695 struct v4l2_rect *win)
696{
697 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER)
698 *win = ccdc->ccdc_cfg.bayer.win;
699 else
700 *win = ccdc->ccdc_cfg.ycbcr.win;
701}
702
703static inline unsigned int vpfe_ccdc_get_line_length(struct vpfe_ccdc *ccdc)
704{
705 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER)
706 return ccdc->ccdc_cfg.bayer.bytesperline;
707
708 return ccdc->ccdc_cfg.ycbcr.bytesperline;
709}
710
711static inline int
712vpfe_ccdc_set_frame_format(struct vpfe_ccdc *ccdc,
713 enum ccdc_frmfmt frm_fmt)
714{
715 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER)
716 ccdc->ccdc_cfg.bayer.frm_fmt = frm_fmt;
717 else
718 ccdc->ccdc_cfg.ycbcr.frm_fmt = frm_fmt;
719
720 return 0;
721}
722
723static inline enum ccdc_frmfmt
724vpfe_ccdc_get_frame_format(struct vpfe_ccdc *ccdc)
725{
726 if (ccdc->ccdc_cfg.if_type == VPFE_RAW_BAYER)
727 return ccdc->ccdc_cfg.bayer.frm_fmt;
728
729 return ccdc->ccdc_cfg.ycbcr.frm_fmt;
730}
731
732static inline int vpfe_ccdc_getfid(struct vpfe_ccdc *ccdc)
733{
734 return (vpfe_reg_read(ccdc, VPFE_SYNMODE) >> 15) & 1;
735}
736
737static inline void vpfe_set_sdr_addr(struct vpfe_ccdc *ccdc, unsigned long addr)
738{
739 vpfe_reg_write(ccdc, addr & 0xffffffe0, VPFE_SDR_ADDR);
740}
741
742static int vpfe_ccdc_set_hw_if_params(struct vpfe_ccdc *ccdc,
743 struct vpfe_hw_if_param *params)
744{
745 struct vpfe_device *vpfe = to_vpfe(ccdc);
746
747 ccdc->ccdc_cfg.if_type = params->if_type;
748
749 switch (params->if_type) {
750 case VPFE_BT656:
751 case VPFE_YCBCR_SYNC_16:
752 case VPFE_YCBCR_SYNC_8:
753 case VPFE_BT656_10BIT:
754 ccdc->ccdc_cfg.ycbcr.vd_pol = params->vdpol;
755 ccdc->ccdc_cfg.ycbcr.hd_pol = params->hdpol;
756 break;
757
758 case VPFE_RAW_BAYER:
759 ccdc->ccdc_cfg.bayer.vd_pol = params->vdpol;
760 ccdc->ccdc_cfg.bayer.hd_pol = params->hdpol;
761 if (params->bus_width == 10)
762 ccdc->ccdc_cfg.bayer.config_params.data_sz =
763 VPFE_CCDC_DATA_10BITS;
764 else
765 ccdc->ccdc_cfg.bayer.config_params.data_sz =
766 VPFE_CCDC_DATA_8BITS;
767 vpfe_dbg(1, vpfe, "params.bus_width: %d\n",
768 params->bus_width);
769 vpfe_dbg(1, vpfe, "config_params.data_sz: %d\n",
770 ccdc->ccdc_cfg.bayer.config_params.data_sz);
771 break;
772
773 default:
774 return -EINVAL;
775 }
776
777 return 0;
778}
779
780static void vpfe_clear_intr(struct vpfe_ccdc *ccdc, int vdint)
781{
782 unsigned int vpfe_int_status;
783
784 vpfe_int_status = vpfe_reg_read(ccdc, VPFE_IRQ_STS);
785
786 switch (vdint) {
787
788 case VPFE_VDINT0:
789 vpfe_int_status &= ~VPFE_VDINT0;
790 vpfe_int_status |= VPFE_VDINT0;
791 break;
792
793
794 case VPFE_VDINT1:
795 vpfe_int_status &= ~VPFE_VDINT1;
796 vpfe_int_status |= VPFE_VDINT1;
797 break;
798
799
800 case VPFE_VDINT2:
801 vpfe_int_status &= ~VPFE_VDINT2;
802 vpfe_int_status |= VPFE_VDINT2;
803 break;
804
805
806 default:
807 vpfe_int_status &= ~(VPFE_VDINT0 |
808 VPFE_VDINT1 |
809 VPFE_VDINT2);
810 vpfe_int_status |= (VPFE_VDINT0 |
811 VPFE_VDINT1 |
812 VPFE_VDINT2);
813 break;
814 }
815
816 vpfe_reg_write(ccdc, vpfe_int_status, VPFE_IRQ_STS);
817
818 vpfe_int_status = vpfe_reg_read(ccdc, VPFE_IRQ_STS);
819
820
821 vpfe_reg_write(ccdc, 1, VPFE_IRQ_EOI);
822}
823
824static void vpfe_ccdc_config_defaults(struct vpfe_ccdc *ccdc)
825{
826 ccdc->ccdc_cfg.if_type = VPFE_RAW_BAYER;
827
828 ccdc->ccdc_cfg.ycbcr.pix_fmt = CCDC_PIXFMT_YCBCR_8BIT;
829 ccdc->ccdc_cfg.ycbcr.frm_fmt = CCDC_FRMFMT_INTERLACED;
830 ccdc->ccdc_cfg.ycbcr.fid_pol = VPFE_PINPOL_POSITIVE;
831 ccdc->ccdc_cfg.ycbcr.vd_pol = VPFE_PINPOL_POSITIVE;
832 ccdc->ccdc_cfg.ycbcr.hd_pol = VPFE_PINPOL_POSITIVE;
833 ccdc->ccdc_cfg.ycbcr.pix_order = CCDC_PIXORDER_CBYCRY;
834 ccdc->ccdc_cfg.ycbcr.buf_type = CCDC_BUFTYPE_FLD_INTERLEAVED;
835
836 ccdc->ccdc_cfg.ycbcr.win.left = 0;
837 ccdc->ccdc_cfg.ycbcr.win.top = 0;
838 ccdc->ccdc_cfg.ycbcr.win.width = 720;
839 ccdc->ccdc_cfg.ycbcr.win.height = 576;
840 ccdc->ccdc_cfg.ycbcr.bt656_enable = 1;
841
842 ccdc->ccdc_cfg.bayer.pix_fmt = CCDC_PIXFMT_RAW;
843 ccdc->ccdc_cfg.bayer.frm_fmt = CCDC_FRMFMT_PROGRESSIVE;
844 ccdc->ccdc_cfg.bayer.fid_pol = VPFE_PINPOL_POSITIVE;
845 ccdc->ccdc_cfg.bayer.vd_pol = VPFE_PINPOL_POSITIVE;
846 ccdc->ccdc_cfg.bayer.hd_pol = VPFE_PINPOL_POSITIVE;
847
848 ccdc->ccdc_cfg.bayer.win.left = 0;
849 ccdc->ccdc_cfg.bayer.win.top = 0;
850 ccdc->ccdc_cfg.bayer.win.width = 800;
851 ccdc->ccdc_cfg.bayer.win.height = 600;
852 ccdc->ccdc_cfg.bayer.config_params.data_sz = VPFE_CCDC_DATA_8BITS;
853 ccdc->ccdc_cfg.bayer.config_params.alaw.gamma_wd =
854 VPFE_CCDC_GAMMA_BITS_09_0;
855}
856
857
858
859
860static int vpfe_get_ccdc_image_format(struct vpfe_device *vpfe,
861 struct v4l2_format *f)
862{
863 struct v4l2_rect image_win;
864 enum ccdc_buftype buf_type;
865 enum ccdc_frmfmt frm_fmt;
866
867 memset(f, 0, sizeof(*f));
868 f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
869 vpfe_ccdc_get_image_window(&vpfe->ccdc, &image_win);
870 f->fmt.pix.width = image_win.width;
871 f->fmt.pix.height = image_win.height;
872 f->fmt.pix.bytesperline = vpfe_ccdc_get_line_length(&vpfe->ccdc);
873 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
874 f->fmt.pix.height;
875 buf_type = vpfe_ccdc_get_buftype(&vpfe->ccdc);
876 f->fmt.pix.pixelformat = vpfe_ccdc_get_pixel_format(&vpfe->ccdc);
877 frm_fmt = vpfe_ccdc_get_frame_format(&vpfe->ccdc);
878
879 if (frm_fmt == CCDC_FRMFMT_PROGRESSIVE) {
880 f->fmt.pix.field = V4L2_FIELD_NONE;
881 } else if (frm_fmt == CCDC_FRMFMT_INTERLACED) {
882 if (buf_type == CCDC_BUFTYPE_FLD_INTERLEAVED) {
883 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
884 } else if (buf_type == CCDC_BUFTYPE_FLD_SEPARATED) {
885 f->fmt.pix.field = V4L2_FIELD_SEQ_TB;
886 } else {
887 vpfe_err(vpfe, "Invalid buf_type\n");
888 return -EINVAL;
889 }
890 } else {
891 vpfe_err(vpfe, "Invalid frm_fmt\n");
892 return -EINVAL;
893 }
894 return 0;
895}
896
897static int vpfe_config_ccdc_image_format(struct vpfe_device *vpfe)
898{
899 enum ccdc_frmfmt frm_fmt = CCDC_FRMFMT_INTERLACED;
900 u32 bpp;
901 int ret = 0;
902
903 vpfe_dbg(1, vpfe, "pixelformat: %s\n",
904 print_fourcc(vpfe->fmt.fmt.pix.pixelformat));
905
906 if (vpfe_ccdc_set_pixel_format(&vpfe->ccdc,
907 vpfe->fmt.fmt.pix.pixelformat) < 0) {
908 vpfe_err(vpfe, "couldn't set pix format in ccdc\n");
909 return -EINVAL;
910 }
911
912
913 bpp = __get_bytesperpixel(vpfe, vpfe->current_vpfe_fmt);
914 vpfe_ccdc_set_image_window(&vpfe->ccdc, &vpfe->crop, bpp);
915
916 switch (vpfe->fmt.fmt.pix.field) {
917 case V4L2_FIELD_INTERLACED:
918
919 ret = vpfe_ccdc_set_buftype(
920 &vpfe->ccdc,
921 CCDC_BUFTYPE_FLD_INTERLEAVED);
922 break;
923
924 case V4L2_FIELD_NONE:
925 frm_fmt = CCDC_FRMFMT_PROGRESSIVE;
926
927 break;
928
929 case V4L2_FIELD_SEQ_TB:
930 ret = vpfe_ccdc_set_buftype(
931 &vpfe->ccdc,
932 CCDC_BUFTYPE_FLD_SEPARATED);
933 break;
934
935 default:
936 return -EINVAL;
937 }
938
939 if (ret)
940 return ret;
941
942 return vpfe_ccdc_set_frame_format(&vpfe->ccdc, frm_fmt);
943}
944
945
946
947
948
949
950
951
952
953
954
955static int vpfe_config_image_format(struct vpfe_device *vpfe,
956 v4l2_std_id std_id)
957{
958 struct vpfe_fmt *fmt;
959 struct v4l2_mbus_framefmt mbus_fmt;
960 int i, ret;
961
962 for (i = 0; i < ARRAY_SIZE(vpfe_standards); i++) {
963 if (vpfe_standards[i].std_id & std_id) {
964 vpfe->std_info.active_pixels =
965 vpfe_standards[i].width;
966 vpfe->std_info.active_lines =
967 vpfe_standards[i].height;
968 vpfe->std_info.frame_format =
969 vpfe_standards[i].frame_format;
970 vpfe->std_index = i;
971
972 break;
973 }
974 }
975
976 if (i == ARRAY_SIZE(vpfe_standards)) {
977 vpfe_err(vpfe, "standard not supported\n");
978 return -EINVAL;
979 }
980
981 ret = __subdev_get_format(vpfe, &mbus_fmt);
982 if (ret)
983 return ret;
984
985 fmt = find_format_by_code(vpfe, mbus_fmt.code);
986 if (!fmt) {
987 vpfe_dbg(3, vpfe, "mbus code format (0x%08x) not found.\n",
988 mbus_fmt.code);
989 return -EINVAL;
990 }
991
992
993 v4l2_fill_pix_format(&vpfe->fmt.fmt.pix, &mbus_fmt);
994 vpfe->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
995 vpfe->fmt.fmt.pix.pixelformat = fmt->fourcc;
996 vpfe_calc_format_size(vpfe, fmt, &vpfe->fmt);
997 vpfe->current_vpfe_fmt = fmt;
998
999
1000 vpfe->crop.top = 0;
1001 vpfe->crop.left = 0;
1002 vpfe->crop.width = mbus_fmt.width;
1003 vpfe->crop.height = mbus_fmt.height;
1004
1005 return vpfe_config_ccdc_image_format(vpfe);
1006}
1007
1008static int vpfe_initialize_device(struct vpfe_device *vpfe)
1009{
1010 struct vpfe_subdev_info *sdinfo;
1011 int ret;
1012
1013 sdinfo = &vpfe->cfg->sub_devs[0];
1014 sdinfo->sd = vpfe->sd[0];
1015 vpfe->current_input = 0;
1016 vpfe->std_index = 0;
1017
1018 ret = vpfe_config_image_format(vpfe,
1019 vpfe_standards[vpfe->std_index].std_id);
1020 if (ret)
1021 return ret;
1022
1023 pm_runtime_get_sync(vpfe->pdev);
1024
1025 vpfe_config_enable(&vpfe->ccdc, 1);
1026
1027 vpfe_ccdc_restore_defaults(&vpfe->ccdc);
1028
1029
1030 vpfe_clear_intr(&vpfe->ccdc, -1);
1031
1032 return ret;
1033}
1034
1035
1036
1037
1038
1039
1040
1041static int vpfe_release(struct file *file)
1042{
1043 struct vpfe_device *vpfe = video_drvdata(file);
1044 bool fh_singular;
1045 int ret;
1046
1047 mutex_lock(&vpfe->lock);
1048
1049
1050 fh_singular = v4l2_fh_is_singular_file(file);
1051
1052
1053 ret = _vb2_fop_release(file, NULL);
1054
1055
1056
1057
1058
1059 if (fh_singular)
1060 vpfe_ccdc_close(&vpfe->ccdc, vpfe->pdev);
1061
1062 mutex_unlock(&vpfe->lock);
1063
1064 return ret;
1065}
1066
1067
1068
1069
1070
1071
1072static int vpfe_open(struct file *file)
1073{
1074 struct vpfe_device *vpfe = video_drvdata(file);
1075 int ret;
1076
1077 mutex_lock(&vpfe->lock);
1078
1079 ret = v4l2_fh_open(file);
1080 if (ret) {
1081 vpfe_err(vpfe, "v4l2_fh_open failed\n");
1082 goto unlock;
1083 }
1084
1085 if (!v4l2_fh_is_singular_file(file))
1086 goto unlock;
1087
1088 if (vpfe_initialize_device(vpfe)) {
1089 v4l2_fh_release(file);
1090 ret = -ENODEV;
1091 }
1092
1093unlock:
1094 mutex_unlock(&vpfe->lock);
1095 return ret;
1096}
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106static void vpfe_schedule_next_buffer(struct vpfe_device *vpfe)
1107{
1108 dma_addr_t addr;
1109
1110 spin_lock(&vpfe->dma_queue_lock);
1111 if (list_empty(&vpfe->dma_queue)) {
1112 spin_unlock(&vpfe->dma_queue_lock);
1113 return;
1114 }
1115
1116 vpfe->next_frm = list_entry(vpfe->dma_queue.next,
1117 struct vpfe_cap_buffer, list);
1118 list_del(&vpfe->next_frm->list);
1119 spin_unlock(&vpfe->dma_queue_lock);
1120
1121 addr = vb2_dma_contig_plane_dma_addr(&vpfe->next_frm->vb.vb2_buf, 0);
1122 vpfe_set_sdr_addr(&vpfe->ccdc, addr);
1123}
1124
1125static inline void vpfe_schedule_bottom_field(struct vpfe_device *vpfe)
1126{
1127 dma_addr_t addr;
1128
1129 addr = vb2_dma_contig_plane_dma_addr(&vpfe->next_frm->vb.vb2_buf, 0) +
1130 vpfe->field_off;
1131
1132 vpfe_set_sdr_addr(&vpfe->ccdc, addr);
1133}
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143static inline void vpfe_process_buffer_complete(struct vpfe_device *vpfe)
1144{
1145 vpfe->cur_frm->vb.vb2_buf.timestamp = ktime_get_ns();
1146 vpfe->cur_frm->vb.field = vpfe->fmt.fmt.pix.field;
1147 vpfe->cur_frm->vb.sequence = vpfe->sequence++;
1148 vb2_buffer_done(&vpfe->cur_frm->vb.vb2_buf, VB2_BUF_STATE_DONE);
1149 vpfe->cur_frm = vpfe->next_frm;
1150}
1151
1152static void vpfe_handle_interlaced_irq(struct vpfe_device *vpfe,
1153 enum v4l2_field field)
1154{
1155 int fid;
1156
1157
1158
1159
1160 fid = vpfe_ccdc_getfid(&vpfe->ccdc);
1161
1162
1163 vpfe->field ^= 1;
1164 if (fid == vpfe->field) {
1165
1166 if (fid == 0) {
1167
1168
1169
1170
1171
1172 if (vpfe->cur_frm != vpfe->next_frm)
1173 vpfe_process_buffer_complete(vpfe);
1174
1175 if (vpfe->stopping)
1176 return;
1177
1178
1179
1180
1181
1182
1183 if (field == V4L2_FIELD_SEQ_TB)
1184 vpfe_schedule_bottom_field(vpfe);
1185 } else {
1186
1187
1188
1189
1190
1191
1192 if (vpfe->cur_frm == vpfe->next_frm)
1193 vpfe_schedule_next_buffer(vpfe);
1194 }
1195 } else if (fid == 0) {
1196
1197
1198
1199
1200 vpfe->field = fid;
1201 }
1202}
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212static irqreturn_t vpfe_isr(int irq, void *dev)
1213{
1214 struct vpfe_device *vpfe = (struct vpfe_device *)dev;
1215 enum v4l2_field field = vpfe->fmt.fmt.pix.field;
1216 int intr_status, stopping = vpfe->stopping;
1217
1218 intr_status = vpfe_reg_read(&vpfe->ccdc, VPFE_IRQ_STS);
1219
1220 if (intr_status & VPFE_VDINT0) {
1221 if (field == V4L2_FIELD_NONE) {
1222 if (vpfe->cur_frm != vpfe->next_frm)
1223 vpfe_process_buffer_complete(vpfe);
1224 } else {
1225 vpfe_handle_interlaced_irq(vpfe, field);
1226 }
1227 if (stopping) {
1228 vpfe->stopping = false;
1229 complete(&vpfe->capture_stop);
1230 }
1231 }
1232
1233 if (intr_status & VPFE_VDINT1 && !stopping) {
1234 if (field == V4L2_FIELD_NONE &&
1235 vpfe->cur_frm == vpfe->next_frm)
1236 vpfe_schedule_next_buffer(vpfe);
1237 }
1238
1239 vpfe_clear_intr(&vpfe->ccdc, intr_status);
1240
1241 return IRQ_HANDLED;
1242}
1243
1244static inline void vpfe_detach_irq(struct vpfe_device *vpfe)
1245{
1246 unsigned int intr = VPFE_VDINT0;
1247 enum ccdc_frmfmt frame_format;
1248
1249 frame_format = vpfe_ccdc_get_frame_format(&vpfe->ccdc);
1250 if (frame_format == CCDC_FRMFMT_PROGRESSIVE)
1251 intr |= VPFE_VDINT1;
1252
1253 vpfe_reg_write(&vpfe->ccdc, intr, VPFE_IRQ_EN_CLR);
1254}
1255
1256static inline void vpfe_attach_irq(struct vpfe_device *vpfe)
1257{
1258 unsigned int intr = VPFE_VDINT0;
1259 enum ccdc_frmfmt frame_format;
1260
1261 frame_format = vpfe_ccdc_get_frame_format(&vpfe->ccdc);
1262 if (frame_format == CCDC_FRMFMT_PROGRESSIVE)
1263 intr |= VPFE_VDINT1;
1264
1265 vpfe_reg_write(&vpfe->ccdc, intr, VPFE_IRQ_EN_SET);
1266}
1267
1268static int vpfe_querycap(struct file *file, void *priv,
1269 struct v4l2_capability *cap)
1270{
1271 struct vpfe_device *vpfe = video_drvdata(file);
1272
1273 strscpy(cap->driver, VPFE_MODULE_NAME, sizeof(cap->driver));
1274 strscpy(cap->card, "TI AM437x VPFE", sizeof(cap->card));
1275 snprintf(cap->bus_info, sizeof(cap->bus_info),
1276 "platform:%s", vpfe->v4l2_dev.name);
1277 return 0;
1278}
1279
1280
1281static int __subdev_get_format(struct vpfe_device *vpfe,
1282 struct v4l2_mbus_framefmt *fmt)
1283{
1284 struct v4l2_subdev *sd = vpfe->current_subdev->sd;
1285 struct v4l2_subdev_format sd_fmt;
1286 struct v4l2_mbus_framefmt *mbus_fmt = &sd_fmt.format;
1287 int ret;
1288
1289 sd_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
1290 sd_fmt.pad = 0;
1291
1292 ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &sd_fmt);
1293 if (ret)
1294 return ret;
1295
1296 *fmt = *mbus_fmt;
1297
1298 vpfe_dbg(1, vpfe, "%s: %dx%d code:%04X\n", __func__,
1299 fmt->width, fmt->height, fmt->code);
1300
1301 return 0;
1302}
1303
1304
1305static int __subdev_set_format(struct vpfe_device *vpfe,
1306 struct v4l2_mbus_framefmt *fmt)
1307{
1308 struct v4l2_subdev *sd = vpfe->current_subdev->sd;
1309 struct v4l2_subdev_format sd_fmt;
1310 struct v4l2_mbus_framefmt *mbus_fmt = &sd_fmt.format;
1311 int ret;
1312
1313 sd_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
1314 sd_fmt.pad = 0;
1315 *mbus_fmt = *fmt;
1316
1317 ret = v4l2_subdev_call(sd, pad, set_fmt, NULL, &sd_fmt);
1318 if (ret)
1319 return ret;
1320
1321 vpfe_dbg(1, vpfe, "%s %dx%d code:%04X\n", __func__,
1322 fmt->width, fmt->height, fmt->code);
1323
1324 return 0;
1325}
1326
1327static int vpfe_calc_format_size(struct vpfe_device *vpfe,
1328 const struct vpfe_fmt *fmt,
1329 struct v4l2_format *f)
1330{
1331 u32 bpp;
1332
1333 if (!fmt) {
1334 vpfe_dbg(3, vpfe, "No vpfe_fmt provided!\n");
1335 return -EINVAL;
1336 }
1337
1338 bpp = __get_bytesperpixel(vpfe, fmt);
1339
1340
1341 f->fmt.pix.bytesperline = ALIGN(f->fmt.pix.width * bpp, 32);
1342 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
1343 f->fmt.pix.height;
1344
1345 vpfe_dbg(3, vpfe, "%s: fourcc: %s size: %dx%d bpl:%d img_size:%d\n",
1346 __func__, print_fourcc(f->fmt.pix.pixelformat),
1347 f->fmt.pix.width, f->fmt.pix.height,
1348 f->fmt.pix.bytesperline, f->fmt.pix.sizeimage);
1349
1350 return 0;
1351}
1352
1353static int vpfe_g_fmt(struct file *file, void *priv,
1354 struct v4l2_format *fmt)
1355{
1356 struct vpfe_device *vpfe = video_drvdata(file);
1357
1358 *fmt = vpfe->fmt;
1359
1360 return 0;
1361}
1362
1363static int vpfe_enum_fmt(struct file *file, void *priv,
1364 struct v4l2_fmtdesc *f)
1365{
1366 struct vpfe_device *vpfe = video_drvdata(file);
1367 struct vpfe_subdev_info *sdinfo;
1368 struct vpfe_fmt *fmt;
1369
1370 sdinfo = vpfe->current_subdev;
1371 if (!sdinfo->sd)
1372 return -EINVAL;
1373
1374 if (f->index >= vpfe->num_active_fmt)
1375 return -EINVAL;
1376
1377 fmt = vpfe->active_fmt[f->index];
1378
1379 f->pixelformat = fmt->fourcc;
1380
1381 vpfe_dbg(1, vpfe, "%s: mbus index: %d code: %x pixelformat: %s\n",
1382 __func__, f->index, fmt->code, print_fourcc(fmt->fourcc));
1383
1384 return 0;
1385}
1386
1387static int vpfe_try_fmt(struct file *file, void *priv,
1388 struct v4l2_format *f)
1389{
1390 struct vpfe_device *vpfe = video_drvdata(file);
1391 struct v4l2_subdev *sd = vpfe->current_subdev->sd;
1392 const struct vpfe_fmt *fmt;
1393 struct v4l2_subdev_frame_size_enum fse;
1394 int ret, found;
1395
1396 fmt = find_format_by_pix(vpfe, f->fmt.pix.pixelformat);
1397 if (!fmt) {
1398
1399 vpfe_dbg(3, vpfe, "Invalid pixel code: %x, default used instead\n",
1400 f->fmt.pix.pixelformat);
1401 fmt = vpfe->active_fmt[0];
1402 f->fmt.pix.pixelformat = fmt->fourcc;
1403 }
1404
1405 f->fmt.pix.field = vpfe->fmt.fmt.pix.field;
1406
1407
1408 ret = 0;
1409 found = false;
1410 fse.pad = 0;
1411 fse.code = fmt->code;
1412 fse.which = V4L2_SUBDEV_FORMAT_ACTIVE;
1413 for (fse.index = 0; ; fse.index++) {
1414 ret = v4l2_subdev_call(sd, pad, enum_frame_size,
1415 NULL, &fse);
1416 if (ret)
1417 break;
1418
1419 if (f->fmt.pix.width == fse.max_width &&
1420 f->fmt.pix.height == fse.max_height) {
1421 found = true;
1422 break;
1423 } else if (f->fmt.pix.width >= fse.min_width &&
1424 f->fmt.pix.width <= fse.max_width &&
1425 f->fmt.pix.height >= fse.min_height &&
1426 f->fmt.pix.height <= fse.max_height) {
1427 found = true;
1428 break;
1429 }
1430 }
1431
1432 if (!found) {
1433
1434 f->fmt.pix.width = vpfe->fmt.fmt.pix.width;
1435 f->fmt.pix.height = vpfe->fmt.fmt.pix.height;
1436 }
1437
1438
1439
1440
1441
1442 f->fmt.pix.colorspace = vpfe->fmt.fmt.pix.colorspace;
1443 return vpfe_calc_format_size(vpfe, fmt, f);
1444}
1445
1446static int vpfe_s_fmt(struct file *file, void *priv,
1447 struct v4l2_format *fmt)
1448{
1449 struct vpfe_device *vpfe = video_drvdata(file);
1450 struct vpfe_fmt *f;
1451 struct v4l2_mbus_framefmt mbus_fmt;
1452 int ret;
1453
1454
1455 if (vb2_is_busy(&vpfe->buffer_queue)) {
1456 vpfe_err(vpfe, "%s device busy\n", __func__);
1457 return -EBUSY;
1458 }
1459
1460 ret = vpfe_try_fmt(file, priv, fmt);
1461 if (ret < 0)
1462 return ret;
1463
1464 f = find_format_by_pix(vpfe, fmt->fmt.pix.pixelformat);
1465
1466 v4l2_fill_mbus_format(&mbus_fmt, &fmt->fmt.pix, f->code);
1467
1468 ret = __subdev_set_format(vpfe, &mbus_fmt);
1469 if (ret)
1470 return ret;
1471
1472
1473 if (mbus_fmt.code != f->code) {
1474 vpfe_dbg(3, vpfe,
1475 "%s subdev changed format on us, this should not happen\n",
1476 __func__);
1477 return -EINVAL;
1478 }
1479
1480 v4l2_fill_pix_format(&vpfe->fmt.fmt.pix, &mbus_fmt);
1481 vpfe->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1482 vpfe->fmt.fmt.pix.pixelformat = f->fourcc;
1483 vpfe_calc_format_size(vpfe, f, &vpfe->fmt);
1484 *fmt = vpfe->fmt;
1485 vpfe->current_vpfe_fmt = f;
1486
1487
1488 vpfe->crop.width = fmt->fmt.pix.width;
1489 vpfe->crop.height = fmt->fmt.pix.height;
1490
1491
1492 return vpfe_config_ccdc_image_format(vpfe);
1493}
1494
1495static int vpfe_enum_size(struct file *file, void *priv,
1496 struct v4l2_frmsizeenum *fsize)
1497{
1498 struct vpfe_device *vpfe = video_drvdata(file);
1499 struct v4l2_subdev_frame_size_enum fse;
1500 struct v4l2_subdev *sd = vpfe->current_subdev->sd;
1501 struct vpfe_fmt *fmt;
1502 int ret;
1503
1504
1505 fmt = find_format_by_pix(vpfe, fsize->pixel_format);
1506 if (!fmt) {
1507 vpfe_dbg(3, vpfe, "Invalid pixel code: %x\n",
1508 fsize->pixel_format);
1509 return -EINVAL;
1510 }
1511
1512 memset(fsize->reserved, 0x0, sizeof(fsize->reserved));
1513
1514 memset(&fse, 0x0, sizeof(fse));
1515 fse.index = fsize->index;
1516 fse.pad = 0;
1517 fse.code = fmt->code;
1518 fse.which = V4L2_SUBDEV_FORMAT_ACTIVE;
1519 ret = v4l2_subdev_call(sd, pad, enum_frame_size, NULL, &fse);
1520 if (ret)
1521 return ret;
1522
1523 vpfe_dbg(1, vpfe, "%s: index: %d code: %x W:[%d,%d] H:[%d,%d]\n",
1524 __func__, fse.index, fse.code, fse.min_width, fse.max_width,
1525 fse.min_height, fse.max_height);
1526
1527 fsize->type = V4L2_FRMSIZE_TYPE_DISCRETE;
1528 fsize->discrete.width = fse.max_width;
1529 fsize->discrete.height = fse.max_height;
1530
1531 vpfe_dbg(1, vpfe, "%s: index: %d pixformat: %s size: %dx%d\n",
1532 __func__, fsize->index, print_fourcc(fsize->pixel_format),
1533 fsize->discrete.width, fsize->discrete.height);
1534
1535 return 0;
1536}
1537
1538
1539
1540
1541
1542static int
1543vpfe_get_subdev_input_index(struct vpfe_device *vpfe,
1544 int *subdev_index,
1545 int *subdev_input_index,
1546 int app_input_index)
1547{
1548 int i, j = 0;
1549
1550 for (i = 0; i < ARRAY_SIZE(vpfe->cfg->asd); i++) {
1551 if (app_input_index < (j + 1)) {
1552 *subdev_index = i;
1553 *subdev_input_index = app_input_index - j;
1554 return 0;
1555 }
1556 j++;
1557 }
1558 return -EINVAL;
1559}
1560
1561
1562
1563
1564
1565
1566static int vpfe_get_app_input_index(struct vpfe_device *vpfe,
1567 int *app_input_index)
1568{
1569 struct vpfe_config *cfg = vpfe->cfg;
1570 struct vpfe_subdev_info *sdinfo;
1571 struct i2c_client *client;
1572 struct i2c_client *curr_client;
1573 int i, j = 0;
1574
1575 curr_client = v4l2_get_subdevdata(vpfe->current_subdev->sd);
1576 for (i = 0; i < ARRAY_SIZE(vpfe->cfg->asd); i++) {
1577 sdinfo = &cfg->sub_devs[i];
1578 client = v4l2_get_subdevdata(sdinfo->sd);
1579 if (client->addr == curr_client->addr &&
1580 client->adapter->nr == curr_client->adapter->nr) {
1581 if (vpfe->current_input >= 1)
1582 return -1;
1583 *app_input_index = j + vpfe->current_input;
1584 return 0;
1585 }
1586 j++;
1587 }
1588 return -EINVAL;
1589}
1590
1591static int vpfe_enum_input(struct file *file, void *priv,
1592 struct v4l2_input *inp)
1593{
1594 struct vpfe_device *vpfe = video_drvdata(file);
1595 struct vpfe_subdev_info *sdinfo;
1596 int subdev, index;
1597
1598 if (vpfe_get_subdev_input_index(vpfe, &subdev, &index,
1599 inp->index) < 0) {
1600 vpfe_dbg(1, vpfe,
1601 "input information not found for the subdev\n");
1602 return -EINVAL;
1603 }
1604 sdinfo = &vpfe->cfg->sub_devs[subdev];
1605 *inp = sdinfo->inputs[index];
1606
1607 return 0;
1608}
1609
1610static int vpfe_g_input(struct file *file, void *priv, unsigned int *index)
1611{
1612 struct vpfe_device *vpfe = video_drvdata(file);
1613
1614 return vpfe_get_app_input_index(vpfe, index);
1615}
1616
1617
1618static int vpfe_set_input(struct vpfe_device *vpfe, unsigned int index)
1619{
1620 int subdev_index = 0, inp_index = 0;
1621 struct vpfe_subdev_info *sdinfo;
1622 struct vpfe_route *route;
1623 u32 input, output;
1624 int ret;
1625
1626
1627 if (vb2_is_busy(&vpfe->buffer_queue)) {
1628 vpfe_err(vpfe, "%s device busy\n", __func__);
1629 return -EBUSY;
1630 }
1631 ret = vpfe_get_subdev_input_index(vpfe,
1632 &subdev_index,
1633 &inp_index,
1634 index);
1635 if (ret < 0) {
1636 vpfe_err(vpfe, "invalid input index: %d\n", index);
1637 goto get_out;
1638 }
1639
1640 sdinfo = &vpfe->cfg->sub_devs[subdev_index];
1641 sdinfo->sd = vpfe->sd[subdev_index];
1642 route = &sdinfo->routes[inp_index];
1643 if (route && sdinfo->can_route) {
1644 input = route->input;
1645 output = route->output;
1646 if (sdinfo->sd) {
1647 ret = v4l2_subdev_call(sdinfo->sd, video,
1648 s_routing, input, output, 0);
1649 if (ret) {
1650 vpfe_err(vpfe, "s_routing failed\n");
1651 ret = -EINVAL;
1652 goto get_out;
1653 }
1654 }
1655
1656 }
1657
1658 vpfe->current_subdev = sdinfo;
1659 if (sdinfo->sd)
1660 vpfe->v4l2_dev.ctrl_handler = sdinfo->sd->ctrl_handler;
1661 vpfe->current_input = index;
1662 vpfe->std_index = 0;
1663
1664
1665 ret = vpfe_ccdc_set_hw_if_params(&vpfe->ccdc, &sdinfo->vpfe_param);
1666 if (ret)
1667 return ret;
1668
1669
1670 return vpfe_config_image_format(vpfe,
1671 vpfe_standards[vpfe->std_index].std_id);
1672
1673get_out:
1674 return ret;
1675}
1676
1677static int vpfe_s_input(struct file *file, void *priv, unsigned int index)
1678{
1679 struct vpfe_device *vpfe = video_drvdata(file);
1680
1681 return vpfe_set_input(vpfe, index);
1682}
1683
1684static int vpfe_querystd(struct file *file, void *priv, v4l2_std_id *std_id)
1685{
1686 struct vpfe_device *vpfe = video_drvdata(file);
1687 struct vpfe_subdev_info *sdinfo;
1688
1689 sdinfo = vpfe->current_subdev;
1690 if (!(sdinfo->inputs[0].capabilities & V4L2_IN_CAP_STD))
1691 return -ENODATA;
1692
1693
1694 return v4l2_device_call_until_err(&vpfe->v4l2_dev, sdinfo->grp_id,
1695 video, querystd, std_id);
1696}
1697
1698static int vpfe_s_std(struct file *file, void *priv, v4l2_std_id std_id)
1699{
1700 struct vpfe_device *vpfe = video_drvdata(file);
1701 struct vpfe_subdev_info *sdinfo;
1702 int ret;
1703
1704 sdinfo = vpfe->current_subdev;
1705 if (!(sdinfo->inputs[0].capabilities & V4L2_IN_CAP_STD))
1706 return -ENODATA;
1707
1708
1709 if (vpfe_standards[vpfe->std_index].std_id == std_id)
1710 return 0;
1711
1712
1713 if (vb2_is_busy(&vpfe->buffer_queue)) {
1714 vpfe_err(vpfe, "%s device busy\n", __func__);
1715 ret = -EBUSY;
1716 return ret;
1717 }
1718
1719 ret = v4l2_device_call_until_err(&vpfe->v4l2_dev, sdinfo->grp_id,
1720 video, s_std, std_id);
1721 if (ret < 0) {
1722 vpfe_err(vpfe, "Failed to set standard\n");
1723 return ret;
1724 }
1725 ret = vpfe_config_image_format(vpfe, std_id);
1726
1727 return ret;
1728}
1729
1730static int vpfe_g_std(struct file *file, void *priv, v4l2_std_id *std_id)
1731{
1732 struct vpfe_device *vpfe = video_drvdata(file);
1733 struct vpfe_subdev_info *sdinfo;
1734
1735 sdinfo = vpfe->current_subdev;
1736 if (sdinfo->inputs[0].capabilities != V4L2_IN_CAP_STD)
1737 return -ENODATA;
1738
1739 *std_id = vpfe_standards[vpfe->std_index].std_id;
1740
1741 return 0;
1742}
1743
1744
1745
1746
1747
1748static void vpfe_calculate_offsets(struct vpfe_device *vpfe)
1749{
1750 struct v4l2_rect image_win;
1751
1752 vpfe_ccdc_get_image_window(&vpfe->ccdc, &image_win);
1753 vpfe->field_off = image_win.height * image_win.width;
1754}
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767static int vpfe_queue_setup(struct vb2_queue *vq,
1768 unsigned int *nbuffers, unsigned int *nplanes,
1769 unsigned int sizes[], struct device *alloc_devs[])
1770{
1771 struct vpfe_device *vpfe = vb2_get_drv_priv(vq);
1772 unsigned size = vpfe->fmt.fmt.pix.sizeimage;
1773
1774 if (vq->num_buffers + *nbuffers < 3)
1775 *nbuffers = 3 - vq->num_buffers;
1776
1777 if (*nplanes) {
1778 if (sizes[0] < size)
1779 return -EINVAL;
1780 size = sizes[0];
1781 }
1782
1783 *nplanes = 1;
1784 sizes[0] = size;
1785
1786 vpfe_dbg(1, vpfe,
1787 "nbuffers=%d, size=%u\n", *nbuffers, sizes[0]);
1788
1789
1790 vpfe_calculate_offsets(vpfe);
1791
1792 return 0;
1793}
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803static int vpfe_buffer_prepare(struct vb2_buffer *vb)
1804{
1805 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
1806 struct vpfe_device *vpfe = vb2_get_drv_priv(vb->vb2_queue);
1807
1808 vb2_set_plane_payload(vb, 0, vpfe->fmt.fmt.pix.sizeimage);
1809
1810 if (vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
1811 return -EINVAL;
1812
1813 vbuf->field = vpfe->fmt.fmt.pix.field;
1814
1815 return 0;
1816}
1817
1818
1819
1820
1821
1822static void vpfe_buffer_queue(struct vb2_buffer *vb)
1823{
1824 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
1825 struct vpfe_device *vpfe = vb2_get_drv_priv(vb->vb2_queue);
1826 struct vpfe_cap_buffer *buf = to_vpfe_buffer(vbuf);
1827 unsigned long flags = 0;
1828
1829
1830 spin_lock_irqsave(&vpfe->dma_queue_lock, flags);
1831 list_add_tail(&buf->list, &vpfe->dma_queue);
1832 spin_unlock_irqrestore(&vpfe->dma_queue_lock, flags);
1833}
1834
1835static void vpfe_return_all_buffers(struct vpfe_device *vpfe,
1836 enum vb2_buffer_state state)
1837{
1838 struct vpfe_cap_buffer *buf, *node;
1839 unsigned long flags;
1840
1841 spin_lock_irqsave(&vpfe->dma_queue_lock, flags);
1842 list_for_each_entry_safe(buf, node, &vpfe->dma_queue, list) {
1843 vb2_buffer_done(&buf->vb.vb2_buf, state);
1844 list_del(&buf->list);
1845 }
1846
1847 if (vpfe->cur_frm)
1848 vb2_buffer_done(&vpfe->cur_frm->vb.vb2_buf, state);
1849
1850 if (vpfe->next_frm && vpfe->next_frm != vpfe->cur_frm)
1851 vb2_buffer_done(&vpfe->next_frm->vb.vb2_buf, state);
1852
1853 vpfe->cur_frm = NULL;
1854 vpfe->next_frm = NULL;
1855 spin_unlock_irqrestore(&vpfe->dma_queue_lock, flags);
1856}
1857
1858
1859
1860
1861
1862
1863static int vpfe_start_streaming(struct vb2_queue *vq, unsigned int count)
1864{
1865 struct vpfe_device *vpfe = vb2_get_drv_priv(vq);
1866 struct vpfe_subdev_info *sdinfo;
1867 unsigned long flags;
1868 unsigned long addr;
1869 int ret;
1870
1871 spin_lock_irqsave(&vpfe->dma_queue_lock, flags);
1872
1873 vpfe->field = 0;
1874 vpfe->sequence = 0;
1875
1876 sdinfo = vpfe->current_subdev;
1877
1878 vpfe_attach_irq(vpfe);
1879
1880 vpfe->stopping = false;
1881 init_completion(&vpfe->capture_stop);
1882
1883 if (vpfe->ccdc.ccdc_cfg.if_type == VPFE_RAW_BAYER)
1884 vpfe_ccdc_config_raw(&vpfe->ccdc);
1885 else
1886 vpfe_ccdc_config_ycbcr(&vpfe->ccdc);
1887
1888
1889 vpfe->next_frm = list_entry(vpfe->dma_queue.next,
1890 struct vpfe_cap_buffer, list);
1891 vpfe->cur_frm = vpfe->next_frm;
1892
1893 list_del(&vpfe->cur_frm->list);
1894 spin_unlock_irqrestore(&vpfe->dma_queue_lock, flags);
1895
1896 addr = vb2_dma_contig_plane_dma_addr(&vpfe->cur_frm->vb.vb2_buf, 0);
1897
1898 vpfe_set_sdr_addr(&vpfe->ccdc, (unsigned long)(addr));
1899
1900 vpfe_pcr_enable(&vpfe->ccdc, 1);
1901
1902 ret = v4l2_subdev_call(sdinfo->sd, video, s_stream, 1);
1903 if (ret < 0) {
1904 vpfe_err(vpfe, "Error in attaching interrupt handle\n");
1905 goto err;
1906 }
1907
1908 return 0;
1909
1910err:
1911 vpfe_return_all_buffers(vpfe, VB2_BUF_STATE_QUEUED);
1912 vpfe_pcr_enable(&vpfe->ccdc, 0);
1913 return ret;
1914}
1915
1916
1917
1918
1919
1920
1921
1922
1923static void vpfe_stop_streaming(struct vb2_queue *vq)
1924{
1925 struct vpfe_device *vpfe = vb2_get_drv_priv(vq);
1926 struct vpfe_subdev_info *sdinfo;
1927 int ret;
1928
1929 vpfe_pcr_enable(&vpfe->ccdc, 0);
1930
1931
1932 vpfe->stopping = true;
1933 wait_for_completion_timeout(&vpfe->capture_stop,
1934 msecs_to_jiffies(250));
1935
1936 vpfe_detach_irq(vpfe);
1937
1938 sdinfo = vpfe->current_subdev;
1939 ret = v4l2_subdev_call(sdinfo->sd, video, s_stream, 0);
1940 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV)
1941 vpfe_dbg(1, vpfe, "stream off failed in subdev\n");
1942
1943
1944 vpfe_return_all_buffers(vpfe, VB2_BUF_STATE_ERROR);
1945}
1946
1947static int vpfe_g_pixelaspect(struct file *file, void *priv,
1948 int type, struct v4l2_fract *f)
1949{
1950 struct vpfe_device *vpfe = video_drvdata(file);
1951
1952 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1953 vpfe->std_index >= ARRAY_SIZE(vpfe_standards))
1954 return -EINVAL;
1955
1956 *f = vpfe_standards[vpfe->std_index].pixelaspect;
1957
1958 return 0;
1959}
1960
1961static int
1962vpfe_g_selection(struct file *file, void *fh, struct v4l2_selection *s)
1963{
1964 struct vpfe_device *vpfe = video_drvdata(file);
1965
1966 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1967 vpfe->std_index >= ARRAY_SIZE(vpfe_standards))
1968 return -EINVAL;
1969
1970 switch (s->target) {
1971 case V4L2_SEL_TGT_CROP_BOUNDS:
1972 case V4L2_SEL_TGT_CROP_DEFAULT:
1973 s->r.left = 0;
1974 s->r.top = 0;
1975 s->r.width = vpfe_standards[vpfe->std_index].width;
1976 s->r.height = vpfe_standards[vpfe->std_index].height;
1977 break;
1978
1979 case V4L2_SEL_TGT_CROP:
1980 s->r = vpfe->crop;
1981 break;
1982
1983 default:
1984 return -EINVAL;
1985 }
1986
1987 return 0;
1988}
1989
1990static int enclosed_rectangle(struct v4l2_rect *a, struct v4l2_rect *b)
1991{
1992 if (a->left < b->left || a->top < b->top)
1993 return 0;
1994
1995 if (a->left + a->width > b->left + b->width)
1996 return 0;
1997
1998 if (a->top + a->height > b->top + b->height)
1999 return 0;
2000
2001 return 1;
2002}
2003
2004static int
2005vpfe_s_selection(struct file *file, void *fh, struct v4l2_selection *s)
2006{
2007 struct vpfe_device *vpfe = video_drvdata(file);
2008 struct v4l2_rect cr = vpfe->crop;
2009 struct v4l2_rect r = s->r;
2010 u32 bpp;
2011
2012
2013 if (vb2_is_busy(&vpfe->buffer_queue)) {
2014 vpfe_err(vpfe, "%s device busy\n", __func__);
2015 return -EBUSY;
2016 }
2017
2018 if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2019 s->target != V4L2_SEL_TGT_CROP)
2020 return -EINVAL;
2021
2022 v4l_bound_align_image(&r.width, 0, cr.width, 0,
2023 &r.height, 0, cr.height, 0, 0);
2024
2025 r.left = clamp_t(unsigned int, r.left, 0, cr.width - r.width);
2026 r.top = clamp_t(unsigned int, r.top, 0, cr.height - r.height);
2027
2028 if (s->flags & V4L2_SEL_FLAG_LE && !enclosed_rectangle(&r, &s->r))
2029 return -ERANGE;
2030
2031 if (s->flags & V4L2_SEL_FLAG_GE && !enclosed_rectangle(&s->r, &r))
2032 return -ERANGE;
2033
2034 s->r = vpfe->crop = r;
2035
2036 bpp = __get_bytesperpixel(vpfe, vpfe->current_vpfe_fmt);
2037 vpfe_ccdc_set_image_window(&vpfe->ccdc, &r, bpp);
2038 vpfe->fmt.fmt.pix.width = r.width;
2039 vpfe->fmt.fmt.pix.height = r.height;
2040 vpfe->fmt.fmt.pix.bytesperline =
2041 vpfe_ccdc_get_line_length(&vpfe->ccdc);
2042 vpfe->fmt.fmt.pix.sizeimage = vpfe->fmt.fmt.pix.bytesperline *
2043 vpfe->fmt.fmt.pix.height;
2044
2045 vpfe_dbg(1, vpfe, "cropped (%d,%d)/%dx%d of %dx%d\n",
2046 r.left, r.top, r.width, r.height, cr.width, cr.height);
2047
2048 return 0;
2049}
2050
2051static long vpfe_ioctl_default(struct file *file, void *priv,
2052 bool valid_prio, unsigned int cmd, void *param)
2053{
2054 struct vpfe_device *vpfe = video_drvdata(file);
2055 int ret;
2056
2057 if (!valid_prio) {
2058 vpfe_err(vpfe, "%s device busy\n", __func__);
2059 return -EBUSY;
2060 }
2061
2062
2063 if (vb2_is_busy(&vpfe->buffer_queue)) {
2064 vpfe_err(vpfe, "%s device busy\n", __func__);
2065 return -EBUSY;
2066 }
2067
2068 switch (cmd) {
2069 case VIDIOC_AM437X_CCDC_CFG:
2070 ret = vpfe_ccdc_set_params(&vpfe->ccdc, (void __user *)param);
2071 if (ret) {
2072 vpfe_dbg(2, vpfe,
2073 "Error setting parameters in CCDC\n");
2074 return ret;
2075 }
2076 ret = vpfe_get_ccdc_image_format(vpfe,
2077 &vpfe->fmt);
2078 if (ret < 0) {
2079 vpfe_dbg(2, vpfe,
2080 "Invalid image format at CCDC\n");
2081 return ret;
2082 }
2083 break;
2084
2085 default:
2086 ret = -ENOTTY;
2087 break;
2088 }
2089
2090 return ret;
2091}
2092
2093static const struct vb2_ops vpfe_video_qops = {
2094 .wait_prepare = vb2_ops_wait_prepare,
2095 .wait_finish = vb2_ops_wait_finish,
2096 .queue_setup = vpfe_queue_setup,
2097 .buf_prepare = vpfe_buffer_prepare,
2098 .buf_queue = vpfe_buffer_queue,
2099 .start_streaming = vpfe_start_streaming,
2100 .stop_streaming = vpfe_stop_streaming,
2101};
2102
2103
2104static const struct v4l2_file_operations vpfe_fops = {
2105 .owner = THIS_MODULE,
2106 .open = vpfe_open,
2107 .release = vpfe_release,
2108 .read = vb2_fop_read,
2109 .poll = vb2_fop_poll,
2110 .unlocked_ioctl = video_ioctl2,
2111 .mmap = vb2_fop_mmap,
2112};
2113
2114
2115static const struct v4l2_ioctl_ops vpfe_ioctl_ops = {
2116 .vidioc_querycap = vpfe_querycap,
2117 .vidioc_enum_fmt_vid_cap = vpfe_enum_fmt,
2118 .vidioc_g_fmt_vid_cap = vpfe_g_fmt,
2119 .vidioc_s_fmt_vid_cap = vpfe_s_fmt,
2120 .vidioc_try_fmt_vid_cap = vpfe_try_fmt,
2121
2122 .vidioc_enum_framesizes = vpfe_enum_size,
2123
2124 .vidioc_enum_input = vpfe_enum_input,
2125 .vidioc_g_input = vpfe_g_input,
2126 .vidioc_s_input = vpfe_s_input,
2127
2128 .vidioc_querystd = vpfe_querystd,
2129 .vidioc_s_std = vpfe_s_std,
2130 .vidioc_g_std = vpfe_g_std,
2131
2132 .vidioc_reqbufs = vb2_ioctl_reqbufs,
2133 .vidioc_create_bufs = vb2_ioctl_create_bufs,
2134 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
2135 .vidioc_querybuf = vb2_ioctl_querybuf,
2136 .vidioc_qbuf = vb2_ioctl_qbuf,
2137 .vidioc_dqbuf = vb2_ioctl_dqbuf,
2138 .vidioc_expbuf = vb2_ioctl_expbuf,
2139 .vidioc_streamon = vb2_ioctl_streamon,
2140 .vidioc_streamoff = vb2_ioctl_streamoff,
2141
2142 .vidioc_log_status = v4l2_ctrl_log_status,
2143 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
2144 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
2145
2146 .vidioc_g_pixelaspect = vpfe_g_pixelaspect,
2147 .vidioc_g_selection = vpfe_g_selection,
2148 .vidioc_s_selection = vpfe_s_selection,
2149
2150 .vidioc_default = vpfe_ioctl_default,
2151};
2152
2153static int
2154vpfe_async_bound(struct v4l2_async_notifier *notifier,
2155 struct v4l2_subdev *subdev,
2156 struct v4l2_async_subdev *asd)
2157{
2158 struct vpfe_device *vpfe = container_of(notifier->v4l2_dev,
2159 struct vpfe_device, v4l2_dev);
2160 struct v4l2_subdev_mbus_code_enum mbus_code;
2161 struct vpfe_subdev_info *sdinfo;
2162 struct vpfe_fmt *fmt;
2163 int ret = 0;
2164 bool found = false;
2165 int i, j, k;
2166
2167 for (i = 0; i < ARRAY_SIZE(vpfe->cfg->asd); i++) {
2168 if (vpfe->cfg->asd[i]->match.fwnode ==
2169 asd[i].match.fwnode) {
2170 sdinfo = &vpfe->cfg->sub_devs[i];
2171 vpfe->sd[i] = subdev;
2172 vpfe->sd[i]->grp_id = sdinfo->grp_id;
2173 found = true;
2174 break;
2175 }
2176 }
2177
2178 if (!found) {
2179 vpfe_info(vpfe, "sub device (%s) not matched\n", subdev->name);
2180 return -EINVAL;
2181 }
2182
2183 vpfe->video_dev.tvnorms |= sdinfo->inputs[0].std;
2184
2185 vpfe->num_active_fmt = 0;
2186 for (j = 0, i = 0; (ret != -EINVAL); ++j) {
2187 memset(&mbus_code, 0, sizeof(mbus_code));
2188 mbus_code.index = j;
2189 mbus_code.which = V4L2_SUBDEV_FORMAT_ACTIVE;
2190 ret = v4l2_subdev_call(subdev, pad, enum_mbus_code,
2191 NULL, &mbus_code);
2192 if (ret)
2193 continue;
2194
2195 vpfe_dbg(3, vpfe,
2196 "subdev %s: code: %04x idx: %d\n",
2197 subdev->name, mbus_code.code, j);
2198
2199 for (k = 0; k < ARRAY_SIZE(formats); k++) {
2200 fmt = &formats[k];
2201 if (mbus_code.code != fmt->code)
2202 continue;
2203 vpfe->active_fmt[i] = fmt;
2204 vpfe_dbg(3, vpfe,
2205 "matched fourcc: %s code: %04x idx: %d\n",
2206 print_fourcc(fmt->fourcc), mbus_code.code, i);
2207 vpfe->num_active_fmt = ++i;
2208 }
2209 }
2210
2211 if (!i) {
2212 vpfe_err(vpfe, "No suitable format reported by subdev %s\n",
2213 subdev->name);
2214 return -EINVAL;
2215 }
2216 return 0;
2217}
2218
2219static int vpfe_probe_complete(struct vpfe_device *vpfe)
2220{
2221 struct video_device *vdev;
2222 struct vb2_queue *q;
2223 int err;
2224
2225 spin_lock_init(&vpfe->dma_queue_lock);
2226 mutex_init(&vpfe->lock);
2227
2228 vpfe->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2229
2230
2231 vpfe->current_subdev = &vpfe->cfg->sub_devs[0];
2232 vpfe->v4l2_dev.ctrl_handler = vpfe->sd[0]->ctrl_handler;
2233
2234 err = vpfe_set_input(vpfe, 0);
2235 if (err)
2236 goto probe_out;
2237
2238
2239 q = &vpfe->buffer_queue;
2240 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2241 q->io_modes = VB2_MMAP | VB2_DMABUF | VB2_READ;
2242 q->drv_priv = vpfe;
2243 q->ops = &vpfe_video_qops;
2244 q->mem_ops = &vb2_dma_contig_memops;
2245 q->buf_struct_size = sizeof(struct vpfe_cap_buffer);
2246 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
2247 q->lock = &vpfe->lock;
2248 q->min_buffers_needed = 1;
2249 q->dev = vpfe->pdev;
2250
2251 err = vb2_queue_init(q);
2252 if (err) {
2253 vpfe_err(vpfe, "vb2_queue_init() failed\n");
2254 goto probe_out;
2255 }
2256
2257 INIT_LIST_HEAD(&vpfe->dma_queue);
2258
2259 vdev = &vpfe->video_dev;
2260 strscpy(vdev->name, VPFE_MODULE_NAME, sizeof(vdev->name));
2261 vdev->release = video_device_release_empty;
2262 vdev->fops = &vpfe_fops;
2263 vdev->ioctl_ops = &vpfe_ioctl_ops;
2264 vdev->v4l2_dev = &vpfe->v4l2_dev;
2265 vdev->vfl_dir = VFL_DIR_RX;
2266 vdev->queue = q;
2267 vdev->lock = &vpfe->lock;
2268 vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
2269 V4L2_CAP_READWRITE;
2270 video_set_drvdata(vdev, vpfe);
2271 err = video_register_device(&vpfe->video_dev, VFL_TYPE_VIDEO, -1);
2272 if (err) {
2273 vpfe_err(vpfe,
2274 "Unable to register video device.\n");
2275 goto probe_out;
2276 }
2277
2278 return 0;
2279
2280probe_out:
2281 v4l2_device_unregister(&vpfe->v4l2_dev);
2282 return err;
2283}
2284
2285static int vpfe_async_complete(struct v4l2_async_notifier *notifier)
2286{
2287 struct vpfe_device *vpfe = container_of(notifier->v4l2_dev,
2288 struct vpfe_device, v4l2_dev);
2289
2290 return vpfe_probe_complete(vpfe);
2291}
2292
2293static const struct v4l2_async_notifier_operations vpfe_async_ops = {
2294 .bound = vpfe_async_bound,
2295 .complete = vpfe_async_complete,
2296};
2297
2298static struct vpfe_config *
2299vpfe_get_pdata(struct vpfe_device *vpfe)
2300{
2301 struct device_node *endpoint = NULL;
2302 struct device *dev = vpfe->pdev;
2303 struct vpfe_subdev_info *sdinfo;
2304 struct vpfe_config *pdata;
2305 unsigned int flags;
2306 unsigned int i;
2307 int err;
2308
2309 dev_dbg(dev, "vpfe_get_pdata\n");
2310
2311 v4l2_async_notifier_init(&vpfe->notifier);
2312
2313 if (!IS_ENABLED(CONFIG_OF) || !dev->of_node)
2314 return dev->platform_data;
2315
2316 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
2317 if (!pdata)
2318 return NULL;
2319
2320 for (i = 0; ; i++) {
2321 struct v4l2_fwnode_endpoint bus_cfg = { .bus_type = 0 };
2322 struct device_node *rem;
2323
2324 endpoint = of_graph_get_next_endpoint(dev->of_node, endpoint);
2325 if (!endpoint)
2326 break;
2327
2328 sdinfo = &pdata->sub_devs[i];
2329 sdinfo->grp_id = 0;
2330
2331
2332 sdinfo->inputs[0].index = i;
2333 strscpy(sdinfo->inputs[0].name, "Camera",
2334 sizeof(sdinfo->inputs[0].name));
2335 sdinfo->inputs[0].type = V4L2_INPUT_TYPE_CAMERA;
2336 sdinfo->inputs[0].std = V4L2_STD_ALL;
2337 sdinfo->inputs[0].capabilities = V4L2_IN_CAP_STD;
2338
2339 sdinfo->can_route = 0;
2340 sdinfo->routes = NULL;
2341
2342 of_property_read_u32(endpoint, "ti,am437x-vpfe-interface",
2343 &sdinfo->vpfe_param.if_type);
2344 if (sdinfo->vpfe_param.if_type < 0 ||
2345 sdinfo->vpfe_param.if_type > 4) {
2346 sdinfo->vpfe_param.if_type = VPFE_RAW_BAYER;
2347 }
2348
2349 err = v4l2_fwnode_endpoint_parse(of_fwnode_handle(endpoint),
2350 &bus_cfg);
2351 if (err) {
2352 dev_err(dev, "Could not parse the endpoint\n");
2353 goto cleanup;
2354 }
2355
2356 sdinfo->vpfe_param.bus_width = bus_cfg.bus.parallel.bus_width;
2357
2358 if (sdinfo->vpfe_param.bus_width < 8 ||
2359 sdinfo->vpfe_param.bus_width > 16) {
2360 dev_err(dev, "Invalid bus width.\n");
2361 goto cleanup;
2362 }
2363
2364 flags = bus_cfg.bus.parallel.flags;
2365
2366 if (flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH)
2367 sdinfo->vpfe_param.hdpol = 1;
2368
2369 if (flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH)
2370 sdinfo->vpfe_param.vdpol = 1;
2371
2372 rem = of_graph_get_remote_port_parent(endpoint);
2373 if (!rem) {
2374 dev_err(dev, "Remote device at %pOF not found\n",
2375 endpoint);
2376 goto cleanup;
2377 }
2378
2379 pdata->asd[i] = v4l2_async_notifier_add_fwnode_subdev(
2380 &vpfe->notifier, of_fwnode_handle(rem),
2381 sizeof(struct v4l2_async_subdev));
2382 of_node_put(rem);
2383 if (IS_ERR(pdata->asd[i]))
2384 goto cleanup;
2385 }
2386
2387 of_node_put(endpoint);
2388 return pdata;
2389
2390cleanup:
2391 v4l2_async_notifier_cleanup(&vpfe->notifier);
2392 of_node_put(endpoint);
2393 return NULL;
2394}
2395
2396
2397
2398
2399
2400
2401static int vpfe_probe(struct platform_device *pdev)
2402{
2403 struct vpfe_config *vpfe_cfg;
2404 struct vpfe_device *vpfe;
2405 struct vpfe_ccdc *ccdc;
2406 struct resource *res;
2407 int ret;
2408
2409 vpfe = devm_kzalloc(&pdev->dev, sizeof(*vpfe), GFP_KERNEL);
2410 if (!vpfe)
2411 return -ENOMEM;
2412
2413 vpfe->pdev = &pdev->dev;
2414
2415 vpfe_cfg = vpfe_get_pdata(vpfe);
2416 if (!vpfe_cfg) {
2417 dev_err(&pdev->dev, "No platform data\n");
2418 return -EINVAL;
2419 }
2420
2421 vpfe->cfg = vpfe_cfg;
2422 ccdc = &vpfe->ccdc;
2423
2424 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2425 ccdc->ccdc_cfg.base_addr = devm_ioremap_resource(&pdev->dev, res);
2426 if (IS_ERR(ccdc->ccdc_cfg.base_addr)) {
2427 ret = PTR_ERR(ccdc->ccdc_cfg.base_addr);
2428 goto probe_out_cleanup;
2429 }
2430
2431 ret = platform_get_irq(pdev, 0);
2432 if (ret <= 0) {
2433 ret = -ENODEV;
2434 goto probe_out_cleanup;
2435 }
2436 vpfe->irq = ret;
2437
2438 ret = devm_request_irq(vpfe->pdev, vpfe->irq, vpfe_isr, 0,
2439 "vpfe_capture0", vpfe);
2440 if (ret) {
2441 dev_err(&pdev->dev, "Unable to request interrupt\n");
2442 ret = -EINVAL;
2443 goto probe_out_cleanup;
2444 }
2445
2446 ret = v4l2_device_register(&pdev->dev, &vpfe->v4l2_dev);
2447 if (ret) {
2448 vpfe_err(vpfe,
2449 "Unable to register v4l2 device.\n");
2450 goto probe_out_cleanup;
2451 }
2452
2453
2454 platform_set_drvdata(pdev, vpfe);
2455
2456 pm_runtime_enable(&pdev->dev);
2457
2458
2459 pm_runtime_get_sync(&pdev->dev);
2460
2461 vpfe_ccdc_config_defaults(ccdc);
2462
2463 pm_runtime_put_sync(&pdev->dev);
2464
2465 vpfe->sd = devm_kcalloc(&pdev->dev,
2466 ARRAY_SIZE(vpfe->cfg->asd),
2467 sizeof(struct v4l2_subdev *),
2468 GFP_KERNEL);
2469 if (!vpfe->sd) {
2470 ret = -ENOMEM;
2471 goto probe_out_v4l2_unregister;
2472 }
2473
2474 vpfe->notifier.ops = &vpfe_async_ops;
2475 ret = v4l2_async_notifier_register(&vpfe->v4l2_dev, &vpfe->notifier);
2476 if (ret) {
2477 vpfe_err(vpfe, "Error registering async notifier\n");
2478 ret = -EINVAL;
2479 goto probe_out_v4l2_unregister;
2480 }
2481
2482 return 0;
2483
2484probe_out_v4l2_unregister:
2485 v4l2_device_unregister(&vpfe->v4l2_dev);
2486probe_out_cleanup:
2487 v4l2_async_notifier_cleanup(&vpfe->notifier);
2488 return ret;
2489}
2490
2491
2492
2493
2494static int vpfe_remove(struct platform_device *pdev)
2495{
2496 struct vpfe_device *vpfe = platform_get_drvdata(pdev);
2497
2498 pm_runtime_disable(&pdev->dev);
2499
2500 v4l2_async_notifier_unregister(&vpfe->notifier);
2501 v4l2_async_notifier_cleanup(&vpfe->notifier);
2502 v4l2_device_unregister(&vpfe->v4l2_dev);
2503 video_unregister_device(&vpfe->video_dev);
2504
2505 return 0;
2506}
2507
2508#ifdef CONFIG_PM_SLEEP
2509
2510static void vpfe_save_context(struct vpfe_ccdc *ccdc)
2511{
2512 ccdc->ccdc_ctx[VPFE_PCR >> 2] = vpfe_reg_read(ccdc, VPFE_PCR);
2513 ccdc->ccdc_ctx[VPFE_SYNMODE >> 2] = vpfe_reg_read(ccdc, VPFE_SYNMODE);
2514 ccdc->ccdc_ctx[VPFE_SDOFST >> 2] = vpfe_reg_read(ccdc, VPFE_SDOFST);
2515 ccdc->ccdc_ctx[VPFE_SDR_ADDR >> 2] = vpfe_reg_read(ccdc, VPFE_SDR_ADDR);
2516 ccdc->ccdc_ctx[VPFE_CLAMP >> 2] = vpfe_reg_read(ccdc, VPFE_CLAMP);
2517 ccdc->ccdc_ctx[VPFE_DCSUB >> 2] = vpfe_reg_read(ccdc, VPFE_DCSUB);
2518 ccdc->ccdc_ctx[VPFE_COLPTN >> 2] = vpfe_reg_read(ccdc, VPFE_COLPTN);
2519 ccdc->ccdc_ctx[VPFE_BLKCMP >> 2] = vpfe_reg_read(ccdc, VPFE_BLKCMP);
2520 ccdc->ccdc_ctx[VPFE_VDINT >> 2] = vpfe_reg_read(ccdc, VPFE_VDINT);
2521 ccdc->ccdc_ctx[VPFE_ALAW >> 2] = vpfe_reg_read(ccdc, VPFE_ALAW);
2522 ccdc->ccdc_ctx[VPFE_REC656IF >> 2] = vpfe_reg_read(ccdc, VPFE_REC656IF);
2523 ccdc->ccdc_ctx[VPFE_CCDCFG >> 2] = vpfe_reg_read(ccdc, VPFE_CCDCFG);
2524 ccdc->ccdc_ctx[VPFE_CULLING >> 2] = vpfe_reg_read(ccdc, VPFE_CULLING);
2525 ccdc->ccdc_ctx[VPFE_HD_VD_WID >> 2] = vpfe_reg_read(ccdc,
2526 VPFE_HD_VD_WID);
2527 ccdc->ccdc_ctx[VPFE_PIX_LINES >> 2] = vpfe_reg_read(ccdc,
2528 VPFE_PIX_LINES);
2529 ccdc->ccdc_ctx[VPFE_HORZ_INFO >> 2] = vpfe_reg_read(ccdc,
2530 VPFE_HORZ_INFO);
2531 ccdc->ccdc_ctx[VPFE_VERT_START >> 2] = vpfe_reg_read(ccdc,
2532 VPFE_VERT_START);
2533 ccdc->ccdc_ctx[VPFE_VERT_LINES >> 2] = vpfe_reg_read(ccdc,
2534 VPFE_VERT_LINES);
2535 ccdc->ccdc_ctx[VPFE_HSIZE_OFF >> 2] = vpfe_reg_read(ccdc,
2536 VPFE_HSIZE_OFF);
2537}
2538
2539static int vpfe_suspend(struct device *dev)
2540{
2541 struct vpfe_device *vpfe = dev_get_drvdata(dev);
2542 struct vpfe_ccdc *ccdc = &vpfe->ccdc;
2543
2544
2545 if (vb2_start_streaming_called(&vpfe->buffer_queue)) {
2546 pm_runtime_get_sync(dev);
2547 vpfe_config_enable(ccdc, 1);
2548
2549
2550 vpfe_save_context(ccdc);
2551
2552
2553 vpfe_pcr_enable(ccdc, 0);
2554 vpfe_config_enable(ccdc, 0);
2555
2556
2557 pm_runtime_put_sync(dev);
2558 }
2559
2560
2561 pinctrl_pm_select_sleep_state(dev);
2562
2563 return 0;
2564}
2565
2566static void vpfe_restore_context(struct vpfe_ccdc *ccdc)
2567{
2568 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_SYNMODE >> 2], VPFE_SYNMODE);
2569 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_CULLING >> 2], VPFE_CULLING);
2570 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_SDOFST >> 2], VPFE_SDOFST);
2571 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_SDR_ADDR >> 2], VPFE_SDR_ADDR);
2572 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_CLAMP >> 2], VPFE_CLAMP);
2573 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_DCSUB >> 2], VPFE_DCSUB);
2574 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_COLPTN >> 2], VPFE_COLPTN);
2575 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_BLKCMP >> 2], VPFE_BLKCMP);
2576 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_VDINT >> 2], VPFE_VDINT);
2577 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_ALAW >> 2], VPFE_ALAW);
2578 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_REC656IF >> 2], VPFE_REC656IF);
2579 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_CCDCFG >> 2], VPFE_CCDCFG);
2580 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_PCR >> 2], VPFE_PCR);
2581 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_HD_VD_WID >> 2],
2582 VPFE_HD_VD_WID);
2583 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_PIX_LINES >> 2],
2584 VPFE_PIX_LINES);
2585 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_HORZ_INFO >> 2],
2586 VPFE_HORZ_INFO);
2587 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_VERT_START >> 2],
2588 VPFE_VERT_START);
2589 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_VERT_LINES >> 2],
2590 VPFE_VERT_LINES);
2591 vpfe_reg_write(ccdc, ccdc->ccdc_ctx[VPFE_HSIZE_OFF >> 2],
2592 VPFE_HSIZE_OFF);
2593}
2594
2595static int vpfe_resume(struct device *dev)
2596{
2597 struct vpfe_device *vpfe = dev_get_drvdata(dev);
2598 struct vpfe_ccdc *ccdc = &vpfe->ccdc;
2599
2600
2601 if (vb2_start_streaming_called(&vpfe->buffer_queue)) {
2602
2603 pm_runtime_get_sync(dev);
2604 vpfe_config_enable(ccdc, 1);
2605
2606
2607 vpfe_restore_context(ccdc);
2608
2609 vpfe_config_enable(ccdc, 0);
2610 pm_runtime_put_sync(dev);
2611 }
2612
2613
2614 pinctrl_pm_select_default_state(dev);
2615
2616 return 0;
2617}
2618
2619#endif
2620
2621static SIMPLE_DEV_PM_OPS(vpfe_pm_ops, vpfe_suspend, vpfe_resume);
2622
2623static const struct of_device_id vpfe_of_match[] = {
2624 { .compatible = "ti,am437x-vpfe", },
2625 { },
2626};
2627MODULE_DEVICE_TABLE(of, vpfe_of_match);
2628
2629static struct platform_driver vpfe_driver = {
2630 .probe = vpfe_probe,
2631 .remove = vpfe_remove,
2632 .driver = {
2633 .name = VPFE_MODULE_NAME,
2634 .pm = &vpfe_pm_ops,
2635 .of_match_table = of_match_ptr(vpfe_of_match),
2636 },
2637};
2638
2639module_platform_driver(vpfe_driver);
2640
2641MODULE_AUTHOR("Texas Instruments");
2642MODULE_DESCRIPTION("TI AM437x VPFE driver");
2643MODULE_LICENSE("GPL");
2644MODULE_VERSION(VPFE_VERSION);
2645