2 * V4L2 Driver for PXA camera host
4 * Copyright (C) 2006, Sascha Hauer, Pengutronix
5 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
6 * Copyright (C) 2016, Robert Jarzmik <robert.jarzmik@free.fr>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/init.h>
15 #include <linux/module.h>
17 #include <linux/delay.h>
18 #include <linux/device.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/err.h>
21 #include <linux/errno.h>
23 #include <linux/interrupt.h>
24 #include <linux/kernel.h>
26 #include <linux/moduleparam.h>
28 #include <linux/of_graph.h>
29 #include <linux/time.h>
30 #include <linux/platform_device.h>
31 #include <linux/clk.h>
32 #include <linux/sched.h>
33 #include <linux/slab.h>
34 #include <linux/dmaengine.h>
35 #include <linux/dma/pxa-dma.h>
37 #include <media/v4l2-async.h>
38 #include <media/v4l2-clk.h>
39 #include <media/v4l2-common.h>
40 #include <media/v4l2-ctrls.h>
41 #include <media/v4l2-device.h>
42 #include <media/v4l2-event.h>
43 #include <media/v4l2-ioctl.h>
44 #include <media/v4l2-fwnode.h>
46 #include <media/videobuf2-dma-sg.h>
48 #include <linux/videodev2.h>
50 #include <linux/platform_data/media/camera-pxa.h>
52 #define PXA_CAM_VERSION "0.0.6"
53 #define PXA_CAM_DRV_NAME "pxa27x-camera"
55 #define DEFAULT_WIDTH 640
56 #define DEFAULT_HEIGHT 480
58 /* Camera Interface */
71 #define CICR0_DMAEN (1 << 31) /* DMA request enable */
72 #define CICR0_PAR_EN (1 << 30) /* Parity enable */
73 #define CICR0_SL_CAP_EN (1 << 29) /* Capture enable for slave mode */
74 #define CICR0_ENB (1 << 28) /* Camera interface enable */
75 #define CICR0_DIS (1 << 27) /* Camera interface disable */
76 #define CICR0_SIM (0x7 << 24) /* Sensor interface mode mask */
77 #define CICR0_TOM (1 << 9) /* Time-out mask */
78 #define CICR0_RDAVM (1 << 8) /* Receive-data-available mask */
79 #define CICR0_FEM (1 << 7) /* FIFO-empty mask */
80 #define CICR0_EOLM (1 << 6) /* End-of-line mask */
81 #define CICR0_PERRM (1 << 5) /* Parity-error mask */
82 #define CICR0_QDM (1 << 4) /* Quick-disable mask */
83 #define CICR0_CDM (1 << 3) /* Disable-done mask */
84 #define CICR0_SOFM (1 << 2) /* Start-of-frame mask */
85 #define CICR0_EOFM (1 << 1) /* End-of-frame mask */
86 #define CICR0_FOM (1 << 0) /* FIFO-overrun mask */
88 #define CICR1_TBIT (1 << 31) /* Transparency bit */
89 #define CICR1_RGBT_CONV (0x3 << 29) /* RGBT conversion mask */
90 #define CICR1_PPL (0x7ff << 15) /* Pixels per line mask */
91 #define CICR1_RGB_CONV (0x7 << 12) /* RGB conversion mask */
92 #define CICR1_RGB_F (1 << 11) /* RGB format */
93 #define CICR1_YCBCR_F (1 << 10) /* YCbCr format */
94 #define CICR1_RGB_BPP (0x7 << 7) /* RGB bis per pixel mask */
95 #define CICR1_RAW_BPP (0x3 << 5) /* Raw bis per pixel mask */
96 #define CICR1_COLOR_SP (0x3 << 3) /* Color space mask */
97 #define CICR1_DW (0x7 << 0) /* Data width mask */
99 #define CICR2_BLW (0xff << 24) /* Beginning-of-line pixel clock
101 #define CICR2_ELW (0xff << 16) /* End-of-line pixel clock
103 #define CICR2_HSW (0x3f << 10) /* Horizontal sync pulse width mask */
104 #define CICR2_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
106 #define CICR2_FSW (0x7 << 0) /* Frame stabilization
109 #define CICR3_BFW (0xff << 24) /* Beginning-of-frame line clock
111 #define CICR3_EFW (0xff << 16) /* End-of-frame line clock
113 #define CICR3_VSW (0x3f << 10) /* Vertical sync pulse width mask */
114 #define CICR3_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
116 #define CICR3_LPF (0x7ff << 0) /* Lines per frame mask */
118 #define CICR4_MCLK_DLY (0x3 << 24) /* MCLK Data Capture Delay mask */
119 #define CICR4_PCLK_EN (1 << 23) /* Pixel clock enable */
120 #define CICR4_PCP (1 << 22) /* Pixel clock polarity */
121 #define CICR4_HSP (1 << 21) /* Horizontal sync polarity */
122 #define CICR4_VSP (1 << 20) /* Vertical sync polarity */
123 #define CICR4_MCLK_EN (1 << 19) /* MCLK enable */
124 #define CICR4_FR_RATE (0x7 << 8) /* Frame rate mask */
125 #define CICR4_DIV (0xff << 0) /* Clock divisor mask */
127 #define CISR_FTO (1 << 15) /* FIFO time-out */
128 #define CISR_RDAV_2 (1 << 14) /* Channel 2 receive data available */
129 #define CISR_RDAV_1 (1 << 13) /* Channel 1 receive data available */
130 #define CISR_RDAV_0 (1 << 12) /* Channel 0 receive data available */
131 #define CISR_FEMPTY_2 (1 << 11) /* Channel 2 FIFO empty */
132 #define CISR_FEMPTY_1 (1 << 10) /* Channel 1 FIFO empty */
133 #define CISR_FEMPTY_0 (1 << 9) /* Channel 0 FIFO empty */
134 #define CISR_EOL (1 << 8) /* End of line */
135 #define CISR_PAR_ERR (1 << 7) /* Parity error */
136 #define CISR_CQD (1 << 6) /* Camera interface quick disable */
137 #define CISR_CDD (1 << 5) /* Camera interface disable done */
138 #define CISR_SOF (1 << 4) /* Start of frame */
139 #define CISR_EOF (1 << 3) /* End of frame */
140 #define CISR_IFO_2 (1 << 2) /* FIFO overrun for Channel 2 */
141 #define CISR_IFO_1 (1 << 1) /* FIFO overrun for Channel 1 */
142 #define CISR_IFO_0 (1 << 0) /* FIFO overrun for Channel 0 */
144 #define CIFR_FLVL2 (0x7f << 23) /* FIFO 2 level mask */
145 #define CIFR_FLVL1 (0x7f << 16) /* FIFO 1 level mask */
146 #define CIFR_FLVL0 (0xff << 8) /* FIFO 0 level mask */
147 #define CIFR_THL_0 (0x3 << 4) /* Threshold Level for Channel 0 FIFO */
148 #define CIFR_RESET_F (1 << 3) /* Reset input FIFOs */
149 #define CIFR_FEN2 (1 << 2) /* FIFO enable for channel 2 */
150 #define CIFR_FEN1 (1 << 1) /* FIFO enable for channel 1 */
151 #define CIFR_FEN0 (1 << 0) /* FIFO enable for channel 0 */
153 #define CICR0_SIM_MP (0 << 24)
154 #define CICR0_SIM_SP (1 << 24)
155 #define CICR0_SIM_MS (2 << 24)
156 #define CICR0_SIM_EP (3 << 24)
157 #define CICR0_SIM_ES (4 << 24)
159 #define CICR1_DW_VAL(x) ((x) & CICR1_DW) /* Data bus width */
160 #define CICR1_PPL_VAL(x) (((x) << 15) & CICR1_PPL) /* Pixels per line */
161 #define CICR1_COLOR_SP_VAL(x) (((x) << 3) & CICR1_COLOR_SP) /* color space */
162 #define CICR1_RGB_BPP_VAL(x) (((x) << 7) & CICR1_RGB_BPP) /* bpp for rgb */
163 #define CICR1_RGBT_CONV_VAL(x) (((x) << 29) & CICR1_RGBT_CONV) /* rgbt conv */
165 #define CICR2_BLW_VAL(x) (((x) << 24) & CICR2_BLW) /* Beginning-of-line pixel clock wait count */
166 #define CICR2_ELW_VAL(x) (((x) << 16) & CICR2_ELW) /* End-of-line pixel clock wait count */
167 #define CICR2_HSW_VAL(x) (((x) << 10) & CICR2_HSW) /* Horizontal sync pulse width */
168 #define CICR2_BFPW_VAL(x) (((x) << 3) & CICR2_BFPW) /* Beginning-of-frame pixel clock wait count */
169 #define CICR2_FSW_VAL(x) (((x) << 0) & CICR2_FSW) /* Frame stabilization wait count */
171 #define CICR3_BFW_VAL(x) (((x) << 24) & CICR3_BFW) /* Beginning-of-frame line clock wait count */
172 #define CICR3_EFW_VAL(x) (((x) << 16) & CICR3_EFW) /* End-of-frame line clock wait count */
173 #define CICR3_VSW_VAL(x) (((x) << 11) & CICR3_VSW) /* Vertical sync pulse width */
174 #define CICR3_LPF_VAL(x) (((x) << 0) & CICR3_LPF) /* Lines per frame */
176 #define CICR0_IRQ_MASK (CICR0_TOM | CICR0_RDAVM | CICR0_FEM | CICR0_EOLM | \
177 CICR0_PERRM | CICR0_QDM | CICR0_CDM | CICR0_SOFM | \
178 CICR0_EOFM | CICR0_FOM)
180 #define sensor_call(cam, o, f, args...) \
181 v4l2_subdev_call(cam->sensor, o, f, ##args)
188 * enum pxa_mbus_packing - data packing types on the media-bus
189 * @PXA_MBUS_PACKING_NONE: no packing, bit-for-bit transfer to RAM, one
190 * sample represents one pixel
191 * @PXA_MBUS_PACKING_2X8_PADHI: 16 bits transferred in 2 8-bit samples, in the
192 * possibly incomplete byte high bits are padding
193 * @PXA_MBUS_PACKING_EXTEND16: sample width (e.g., 10 bits) has to be extended
196 enum pxa_mbus_packing
{
197 PXA_MBUS_PACKING_NONE
,
198 PXA_MBUS_PACKING_2X8_PADHI
,
199 PXA_MBUS_PACKING_EXTEND16
,
203 * enum pxa_mbus_order - sample order on the media bus
204 * @PXA_MBUS_ORDER_LE: least significant sample first
205 * @PXA_MBUS_ORDER_BE: most significant sample first
207 enum pxa_mbus_order
{
213 * enum pxa_mbus_layout - planes layout in memory
214 * @PXA_MBUS_LAYOUT_PACKED: color components packed
215 * @PXA_MBUS_LAYOUT_PLANAR_2Y_U_V: YUV components stored in 3 planes (4:2:2)
216 * @PXA_MBUS_LAYOUT_PLANAR_2Y_C: YUV components stored in a luma and a
217 * chroma plane (C plane is half the size
219 * @PXA_MBUS_LAYOUT_PLANAR_Y_C: YUV components stored in a luma and a
220 * chroma plane (C plane is the same size
223 enum pxa_mbus_layout
{
224 PXA_MBUS_LAYOUT_PACKED
= 0,
225 PXA_MBUS_LAYOUT_PLANAR_2Y_U_V
,
226 PXA_MBUS_LAYOUT_PLANAR_2Y_C
,
227 PXA_MBUS_LAYOUT_PLANAR_Y_C
,
231 * struct pxa_mbus_pixelfmt - Data format on the media bus
232 * @name: Name of the format
233 * @fourcc: Fourcc code, that will be obtained if the data is
234 * stored in memory in the following way:
235 * @packing: Type of sample-packing, that has to be used
236 * @order: Sample order when storing in memory
237 * @layout: Planes layout in memory
238 * @bits_per_sample: How many bits the bridge has to sample
240 struct pxa_mbus_pixelfmt
{
243 enum pxa_mbus_packing packing
;
244 enum pxa_mbus_order order
;
245 enum pxa_mbus_layout layout
;
250 * struct pxa_mbus_lookup - Lookup FOURCC IDs by mediabus codes for pass-through
251 * @code: mediabus pixel-code
252 * @fmt: pixel format description
254 struct pxa_mbus_lookup
{
256 struct pxa_mbus_pixelfmt fmt
;
259 static const struct pxa_mbus_lookup mbus_fmt
[] = {
261 .code
= MEDIA_BUS_FMT_YUYV8_2X8
,
263 .fourcc
= V4L2_PIX_FMT_YUYV
,
265 .bits_per_sample
= 8,
266 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
267 .order
= PXA_MBUS_ORDER_LE
,
268 .layout
= PXA_MBUS_LAYOUT_PACKED
,
271 .code
= MEDIA_BUS_FMT_YVYU8_2X8
,
273 .fourcc
= V4L2_PIX_FMT_YVYU
,
275 .bits_per_sample
= 8,
276 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
277 .order
= PXA_MBUS_ORDER_LE
,
278 .layout
= PXA_MBUS_LAYOUT_PACKED
,
281 .code
= MEDIA_BUS_FMT_UYVY8_2X8
,
283 .fourcc
= V4L2_PIX_FMT_UYVY
,
285 .bits_per_sample
= 8,
286 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
287 .order
= PXA_MBUS_ORDER_LE
,
288 .layout
= PXA_MBUS_LAYOUT_PACKED
,
291 .code
= MEDIA_BUS_FMT_VYUY8_2X8
,
293 .fourcc
= V4L2_PIX_FMT_VYUY
,
295 .bits_per_sample
= 8,
296 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
297 .order
= PXA_MBUS_ORDER_LE
,
298 .layout
= PXA_MBUS_LAYOUT_PACKED
,
301 .code
= MEDIA_BUS_FMT_RGB555_2X8_PADHI_LE
,
303 .fourcc
= V4L2_PIX_FMT_RGB555
,
305 .bits_per_sample
= 8,
306 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
307 .order
= PXA_MBUS_ORDER_LE
,
308 .layout
= PXA_MBUS_LAYOUT_PACKED
,
311 .code
= MEDIA_BUS_FMT_RGB555_2X8_PADHI_BE
,
313 .fourcc
= V4L2_PIX_FMT_RGB555X
,
315 .bits_per_sample
= 8,
316 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
317 .order
= PXA_MBUS_ORDER_BE
,
318 .layout
= PXA_MBUS_LAYOUT_PACKED
,
321 .code
= MEDIA_BUS_FMT_RGB565_2X8_LE
,
323 .fourcc
= V4L2_PIX_FMT_RGB565
,
325 .bits_per_sample
= 8,
326 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
327 .order
= PXA_MBUS_ORDER_LE
,
328 .layout
= PXA_MBUS_LAYOUT_PACKED
,
331 .code
= MEDIA_BUS_FMT_RGB565_2X8_BE
,
333 .fourcc
= V4L2_PIX_FMT_RGB565X
,
335 .bits_per_sample
= 8,
336 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
337 .order
= PXA_MBUS_ORDER_BE
,
338 .layout
= PXA_MBUS_LAYOUT_PACKED
,
341 .code
= MEDIA_BUS_FMT_SBGGR8_1X8
,
343 .fourcc
= V4L2_PIX_FMT_SBGGR8
,
344 .name
= "Bayer 8 BGGR",
345 .bits_per_sample
= 8,
346 .packing
= PXA_MBUS_PACKING_NONE
,
347 .order
= PXA_MBUS_ORDER_LE
,
348 .layout
= PXA_MBUS_LAYOUT_PACKED
,
351 .code
= MEDIA_BUS_FMT_SGBRG8_1X8
,
353 .fourcc
= V4L2_PIX_FMT_SGBRG8
,
354 .name
= "Bayer 8 GBRG",
355 .bits_per_sample
= 8,
356 .packing
= PXA_MBUS_PACKING_NONE
,
357 .order
= PXA_MBUS_ORDER_LE
,
358 .layout
= PXA_MBUS_LAYOUT_PACKED
,
361 .code
= MEDIA_BUS_FMT_SGRBG8_1X8
,
363 .fourcc
= V4L2_PIX_FMT_SGRBG8
,
364 .name
= "Bayer 8 GRBG",
365 .bits_per_sample
= 8,
366 .packing
= PXA_MBUS_PACKING_NONE
,
367 .order
= PXA_MBUS_ORDER_LE
,
368 .layout
= PXA_MBUS_LAYOUT_PACKED
,
371 .code
= MEDIA_BUS_FMT_SRGGB8_1X8
,
373 .fourcc
= V4L2_PIX_FMT_SRGGB8
,
374 .name
= "Bayer 8 RGGB",
375 .bits_per_sample
= 8,
376 .packing
= PXA_MBUS_PACKING_NONE
,
377 .order
= PXA_MBUS_ORDER_LE
,
378 .layout
= PXA_MBUS_LAYOUT_PACKED
,
381 .code
= MEDIA_BUS_FMT_SBGGR10_1X10
,
383 .fourcc
= V4L2_PIX_FMT_SBGGR10
,
384 .name
= "Bayer 10 BGGR",
385 .bits_per_sample
= 10,
386 .packing
= PXA_MBUS_PACKING_EXTEND16
,
387 .order
= PXA_MBUS_ORDER_LE
,
388 .layout
= PXA_MBUS_LAYOUT_PACKED
,
391 .code
= MEDIA_BUS_FMT_Y8_1X8
,
393 .fourcc
= V4L2_PIX_FMT_GREY
,
395 .bits_per_sample
= 8,
396 .packing
= PXA_MBUS_PACKING_NONE
,
397 .order
= PXA_MBUS_ORDER_LE
,
398 .layout
= PXA_MBUS_LAYOUT_PACKED
,
401 .code
= MEDIA_BUS_FMT_Y10_1X10
,
403 .fourcc
= V4L2_PIX_FMT_Y10
,
404 .name
= "Grey 10bit",
405 .bits_per_sample
= 10,
406 .packing
= PXA_MBUS_PACKING_EXTEND16
,
407 .order
= PXA_MBUS_ORDER_LE
,
408 .layout
= PXA_MBUS_LAYOUT_PACKED
,
411 .code
= MEDIA_BUS_FMT_SBGGR10_2X8_PADHI_LE
,
413 .fourcc
= V4L2_PIX_FMT_SBGGR10
,
414 .name
= "Bayer 10 BGGR",
415 .bits_per_sample
= 8,
416 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
417 .order
= PXA_MBUS_ORDER_LE
,
418 .layout
= PXA_MBUS_LAYOUT_PACKED
,
421 .code
= MEDIA_BUS_FMT_SBGGR10_2X8_PADHI_BE
,
423 .fourcc
= V4L2_PIX_FMT_SBGGR10
,
424 .name
= "Bayer 10 BGGR",
425 .bits_per_sample
= 8,
426 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
427 .order
= PXA_MBUS_ORDER_BE
,
428 .layout
= PXA_MBUS_LAYOUT_PACKED
,
431 .code
= MEDIA_BUS_FMT_RGB444_2X8_PADHI_BE
,
433 .fourcc
= V4L2_PIX_FMT_RGB444
,
435 .bits_per_sample
= 8,
436 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
437 .order
= PXA_MBUS_ORDER_BE
,
438 .layout
= PXA_MBUS_LAYOUT_PACKED
,
441 .code
= MEDIA_BUS_FMT_UYVY8_1X16
,
443 .fourcc
= V4L2_PIX_FMT_UYVY
,
444 .name
= "UYVY 16bit",
445 .bits_per_sample
= 16,
446 .packing
= PXA_MBUS_PACKING_EXTEND16
,
447 .order
= PXA_MBUS_ORDER_LE
,
448 .layout
= PXA_MBUS_LAYOUT_PACKED
,
451 .code
= MEDIA_BUS_FMT_VYUY8_1X16
,
453 .fourcc
= V4L2_PIX_FMT_VYUY
,
454 .name
= "VYUY 16bit",
455 .bits_per_sample
= 16,
456 .packing
= PXA_MBUS_PACKING_EXTEND16
,
457 .order
= PXA_MBUS_ORDER_LE
,
458 .layout
= PXA_MBUS_LAYOUT_PACKED
,
461 .code
= MEDIA_BUS_FMT_YUYV8_1X16
,
463 .fourcc
= V4L2_PIX_FMT_YUYV
,
464 .name
= "YUYV 16bit",
465 .bits_per_sample
= 16,
466 .packing
= PXA_MBUS_PACKING_EXTEND16
,
467 .order
= PXA_MBUS_ORDER_LE
,
468 .layout
= PXA_MBUS_LAYOUT_PACKED
,
471 .code
= MEDIA_BUS_FMT_YVYU8_1X16
,
473 .fourcc
= V4L2_PIX_FMT_YVYU
,
474 .name
= "YVYU 16bit",
475 .bits_per_sample
= 16,
476 .packing
= PXA_MBUS_PACKING_EXTEND16
,
477 .order
= PXA_MBUS_ORDER_LE
,
478 .layout
= PXA_MBUS_LAYOUT_PACKED
,
481 .code
= MEDIA_BUS_FMT_SGRBG10_DPCM8_1X8
,
483 .fourcc
= V4L2_PIX_FMT_SGRBG10DPCM8
,
484 .name
= "Bayer 10 BGGR DPCM 8",
485 .bits_per_sample
= 8,
486 .packing
= PXA_MBUS_PACKING_NONE
,
487 .order
= PXA_MBUS_ORDER_LE
,
488 .layout
= PXA_MBUS_LAYOUT_PACKED
,
491 .code
= MEDIA_BUS_FMT_SGBRG10_1X10
,
493 .fourcc
= V4L2_PIX_FMT_SGBRG10
,
494 .name
= "Bayer 10 GBRG",
495 .bits_per_sample
= 10,
496 .packing
= PXA_MBUS_PACKING_EXTEND16
,
497 .order
= PXA_MBUS_ORDER_LE
,
498 .layout
= PXA_MBUS_LAYOUT_PACKED
,
501 .code
= MEDIA_BUS_FMT_SGRBG10_1X10
,
503 .fourcc
= V4L2_PIX_FMT_SGRBG10
,
504 .name
= "Bayer 10 GRBG",
505 .bits_per_sample
= 10,
506 .packing
= PXA_MBUS_PACKING_EXTEND16
,
507 .order
= PXA_MBUS_ORDER_LE
,
508 .layout
= PXA_MBUS_LAYOUT_PACKED
,
511 .code
= MEDIA_BUS_FMT_SRGGB10_1X10
,
513 .fourcc
= V4L2_PIX_FMT_SRGGB10
,
514 .name
= "Bayer 10 RGGB",
515 .bits_per_sample
= 10,
516 .packing
= PXA_MBUS_PACKING_EXTEND16
,
517 .order
= PXA_MBUS_ORDER_LE
,
518 .layout
= PXA_MBUS_LAYOUT_PACKED
,
521 .code
= MEDIA_BUS_FMT_SBGGR12_1X12
,
523 .fourcc
= V4L2_PIX_FMT_SBGGR12
,
524 .name
= "Bayer 12 BGGR",
525 .bits_per_sample
= 12,
526 .packing
= PXA_MBUS_PACKING_EXTEND16
,
527 .order
= PXA_MBUS_ORDER_LE
,
528 .layout
= PXA_MBUS_LAYOUT_PACKED
,
531 .code
= MEDIA_BUS_FMT_SGBRG12_1X12
,
533 .fourcc
= V4L2_PIX_FMT_SGBRG12
,
534 .name
= "Bayer 12 GBRG",
535 .bits_per_sample
= 12,
536 .packing
= PXA_MBUS_PACKING_EXTEND16
,
537 .order
= PXA_MBUS_ORDER_LE
,
538 .layout
= PXA_MBUS_LAYOUT_PACKED
,
541 .code
= MEDIA_BUS_FMT_SGRBG12_1X12
,
543 .fourcc
= V4L2_PIX_FMT_SGRBG12
,
544 .name
= "Bayer 12 GRBG",
545 .bits_per_sample
= 12,
546 .packing
= PXA_MBUS_PACKING_EXTEND16
,
547 .order
= PXA_MBUS_ORDER_LE
,
548 .layout
= PXA_MBUS_LAYOUT_PACKED
,
551 .code
= MEDIA_BUS_FMT_SRGGB12_1X12
,
553 .fourcc
= V4L2_PIX_FMT_SRGGB12
,
554 .name
= "Bayer 12 RGGB",
555 .bits_per_sample
= 12,
556 .packing
= PXA_MBUS_PACKING_EXTEND16
,
557 .order
= PXA_MBUS_ORDER_LE
,
558 .layout
= PXA_MBUS_LAYOUT_PACKED
,
563 static s32
pxa_mbus_bytes_per_line(u32 width
, const struct pxa_mbus_pixelfmt
*mf
)
565 if (mf
->layout
!= PXA_MBUS_LAYOUT_PACKED
)
566 return width
* mf
->bits_per_sample
/ 8;
568 switch (mf
->packing
) {
569 case PXA_MBUS_PACKING_NONE
:
570 return width
* mf
->bits_per_sample
/ 8;
571 case PXA_MBUS_PACKING_2X8_PADHI
:
572 case PXA_MBUS_PACKING_EXTEND16
:
578 static s32
pxa_mbus_image_size(const struct pxa_mbus_pixelfmt
*mf
,
579 u32 bytes_per_line
, u32 height
)
581 if (mf
->layout
== PXA_MBUS_LAYOUT_PACKED
)
582 return bytes_per_line
* height
;
584 switch (mf
->packing
) {
585 case PXA_MBUS_PACKING_2X8_PADHI
:
586 return bytes_per_line
* height
* 2;
592 static const struct pxa_mbus_pixelfmt
*pxa_mbus_find_fmtdesc(
594 const struct pxa_mbus_lookup
*lookup
,
599 for (i
= 0; i
< n
; i
++)
600 if (lookup
[i
].code
== code
)
601 return &lookup
[i
].fmt
;
606 static const struct pxa_mbus_pixelfmt
*pxa_mbus_get_fmtdesc(
609 return pxa_mbus_find_fmtdesc(code
, mbus_fmt
, ARRAY_SIZE(mbus_fmt
));
612 static unsigned int pxa_mbus_config_compatible(const struct v4l2_mbus_config
*cfg
,
615 unsigned long common_flags
;
616 bool hsync
= true, vsync
= true, pclk
, data
, mode
;
617 bool mipi_lanes
, mipi_clock
;
619 common_flags
= cfg
->flags
& flags
;
622 case V4L2_MBUS_PARALLEL
:
623 hsync
= common_flags
& (V4L2_MBUS_HSYNC_ACTIVE_HIGH
|
624 V4L2_MBUS_HSYNC_ACTIVE_LOW
);
625 vsync
= common_flags
& (V4L2_MBUS_VSYNC_ACTIVE_HIGH
|
626 V4L2_MBUS_VSYNC_ACTIVE_LOW
);
628 case V4L2_MBUS_BT656
:
629 pclk
= common_flags
& (V4L2_MBUS_PCLK_SAMPLE_RISING
|
630 V4L2_MBUS_PCLK_SAMPLE_FALLING
);
631 data
= common_flags
& (V4L2_MBUS_DATA_ACTIVE_HIGH
|
632 V4L2_MBUS_DATA_ACTIVE_LOW
);
633 mode
= common_flags
& (V4L2_MBUS_MASTER
| V4L2_MBUS_SLAVE
);
634 return (!hsync
|| !vsync
|| !pclk
|| !data
|| !mode
) ?
637 mipi_lanes
= common_flags
& V4L2_MBUS_CSI2_LANES
;
638 mipi_clock
= common_flags
& (V4L2_MBUS_CSI2_NONCONTINUOUS_CLOCK
|
639 V4L2_MBUS_CSI2_CONTINUOUS_CLOCK
);
640 return (!mipi_lanes
|| !mipi_clock
) ? 0 : common_flags
;
649 * struct pxa_camera_format_xlate - match between host and sensor formats
650 * @code: code of a sensor provided format
651 * @host_fmt: host format after host translation from code
653 * Host and sensor translation structure. Used in table of host and sensor
654 * formats matchings in pxa_camera_device. A host can override the generic list
655 * generation by implementing get_formats(), and use it for format checks and
658 struct pxa_camera_format_xlate
{
660 const struct pxa_mbus_pixelfmt
*host_fmt
;
666 enum pxa_camera_active_dma
{
672 /* buffer for one video frame */
674 /* common v4l buffer stuff -- must be first */
675 struct vb2_v4l2_buffer vbuf
;
676 struct list_head queue
;
679 /* our descriptor lists for Y, U and V channels */
680 struct dma_async_tx_descriptor
*descs
[3];
681 dma_cookie_t cookie
[3];
682 struct scatterlist
*sg
[3];
684 size_t plane_sizes
[3];
686 enum pxa_camera_active_dma active_dma
;
689 struct pxa_camera_dev
{
690 struct v4l2_device v4l2_dev
;
691 struct video_device vdev
;
692 struct v4l2_async_notifier notifier
;
693 struct vb2_queue vb2_vq
;
694 struct v4l2_subdev
*sensor
;
695 struct pxa_camera_format_xlate
*user_formats
;
696 const struct pxa_camera_format_xlate
*current_fmt
;
697 struct v4l2_pix_format current_pix
;
699 struct v4l2_async_subdev asd
;
700 struct v4l2_async_subdev
*asds
[1];
703 * PXA27x is only supposed to handle one camera on its Quick Capture
704 * interface. If anyone ever builds hardware to enable more than
705 * one camera, they will have to modify this driver too
713 struct dma_chan
*dma_chans
[3];
715 struct pxacamera_platform_data
*pdata
;
716 struct resource
*res
;
717 unsigned long platform_flags
;
721 struct v4l2_clk
*mclk_clk
;
722 u16 width_flags
; /* max 10 bits */
724 struct list_head capture
;
728 unsigned int buf_sequence
;
730 struct pxa_buffer
*active
;
731 struct tasklet_struct task_eof
;
740 static const char *pxa_cam_driver_description
= "PXA_Camera";
743 * Format translation functions
745 static const struct pxa_camera_format_xlate
746 *pxa_mbus_xlate_by_fourcc(struct pxa_camera_format_xlate
*user_formats
,
751 for (i
= 0; user_formats
[i
].code
; i
++)
752 if (user_formats
[i
].host_fmt
->fourcc
== fourcc
)
753 return user_formats
+ i
;
757 static struct pxa_camera_format_xlate
*pxa_mbus_build_fmts_xlate(
758 struct v4l2_device
*v4l2_dev
, struct v4l2_subdev
*subdev
,
759 int (*get_formats
)(struct v4l2_device
*, unsigned int,
760 struct pxa_camera_format_xlate
*xlate
))
762 unsigned int i
, fmts
= 0, raw_fmts
= 0;
764 struct v4l2_subdev_mbus_code_enum code
= {
765 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
767 struct pxa_camera_format_xlate
*user_formats
;
769 while (!v4l2_subdev_call(subdev
, pad
, enum_mbus_code
, NULL
, &code
)) {
775 * First pass - only count formats this host-sensor
776 * configuration can provide
778 for (i
= 0; i
< raw_fmts
; i
++) {
779 ret
= get_formats(v4l2_dev
, i
, NULL
);
786 return ERR_PTR(-ENXIO
);
788 user_formats
= kcalloc(fmts
+ 1, sizeof(*user_formats
), GFP_KERNEL
);
790 return ERR_PTR(-ENOMEM
);
792 /* Second pass - actually fill data formats */
794 for (i
= 0; i
< raw_fmts
; i
++) {
795 ret
= get_formats(v4l2_dev
, i
, user_formats
+ fmts
);
800 user_formats
[fmts
].code
= 0;
809 * Videobuf operations
811 static struct pxa_buffer
*vb2_to_pxa_buffer(struct vb2_buffer
*vb
)
813 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
815 return container_of(vbuf
, struct pxa_buffer
, vbuf
);
818 static struct device
*pcdev_to_dev(struct pxa_camera_dev
*pcdev
)
820 return pcdev
->v4l2_dev
.dev
;
823 static struct pxa_camera_dev
*v4l2_dev_to_pcdev(struct v4l2_device
*v4l2_dev
)
825 return container_of(v4l2_dev
, struct pxa_camera_dev
, v4l2_dev
);
828 static void pxa_camera_dma_irq(struct pxa_camera_dev
*pcdev
,
829 enum pxa_camera_active_dma act_dma
);
831 static void pxa_camera_dma_irq_y(void *data
)
833 struct pxa_camera_dev
*pcdev
= data
;
835 pxa_camera_dma_irq(pcdev
, DMA_Y
);
838 static void pxa_camera_dma_irq_u(void *data
)
840 struct pxa_camera_dev
*pcdev
= data
;
842 pxa_camera_dma_irq(pcdev
, DMA_U
);
845 static void pxa_camera_dma_irq_v(void *data
)
847 struct pxa_camera_dev
*pcdev
= data
;
849 pxa_camera_dma_irq(pcdev
, DMA_V
);
853 * pxa_init_dma_channel - init dma descriptors
854 * @pcdev: pxa camera device
855 * @buf: pxa camera buffer
856 * @channel: dma channel (0 => 'Y', 1 => 'U', 2 => 'V')
857 * @sg: dma scatter list
858 * @sglen: dma scatter list length
860 * Prepares the pxa dma descriptors to transfer one camera channel.
862 * Returns 0 if success or -ENOMEM if no memory is available
864 static int pxa_init_dma_channel(struct pxa_camera_dev
*pcdev
,
865 struct pxa_buffer
*buf
, int channel
,
866 struct scatterlist
*sg
, int sglen
)
868 struct dma_chan
*dma_chan
= pcdev
->dma_chans
[channel
];
869 struct dma_async_tx_descriptor
*tx
;
871 tx
= dmaengine_prep_slave_sg(dma_chan
, sg
, sglen
, DMA_DEV_TO_MEM
,
872 DMA_PREP_INTERRUPT
| DMA_CTRL_REUSE
);
874 dev_err(pcdev_to_dev(pcdev
),
875 "dmaengine_prep_slave_sg failed\n");
879 tx
->callback_param
= pcdev
;
882 tx
->callback
= pxa_camera_dma_irq_y
;
885 tx
->callback
= pxa_camera_dma_irq_u
;
888 tx
->callback
= pxa_camera_dma_irq_v
;
892 buf
->descs
[channel
] = tx
;
895 dev_dbg(pcdev_to_dev(pcdev
),
896 "%s (vb=%p) dma_tx=%p\n",
902 static void pxa_videobuf_set_actdma(struct pxa_camera_dev
*pcdev
,
903 struct pxa_buffer
*buf
)
905 buf
->active_dma
= DMA_Y
;
906 if (buf
->nb_planes
== 3)
907 buf
->active_dma
|= DMA_U
| DMA_V
;
911 * pxa_dma_start_channels - start DMA channel for active buffer
912 * @pcdev: pxa camera device
914 * Initialize DMA channels to the beginning of the active video buffer, and
915 * start these channels.
917 static void pxa_dma_start_channels(struct pxa_camera_dev
*pcdev
)
921 for (i
= 0; i
< pcdev
->channels
; i
++) {
922 dev_dbg(pcdev_to_dev(pcdev
),
923 "%s (channel=%d)\n", __func__
, i
);
924 dma_async_issue_pending(pcdev
->dma_chans
[i
]);
928 static void pxa_dma_stop_channels(struct pxa_camera_dev
*pcdev
)
932 for (i
= 0; i
< pcdev
->channels
; i
++) {
933 dev_dbg(pcdev_to_dev(pcdev
),
934 "%s (channel=%d)\n", __func__
, i
);
935 dmaengine_terminate_all(pcdev
->dma_chans
[i
]);
939 static void pxa_dma_add_tail_buf(struct pxa_camera_dev
*pcdev
,
940 struct pxa_buffer
*buf
)
944 for (i
= 0; i
< pcdev
->channels
; i
++) {
945 buf
->cookie
[i
] = dmaengine_submit(buf
->descs
[i
]);
946 dev_dbg(pcdev_to_dev(pcdev
),
947 "%s (channel=%d) : submit vb=%p cookie=%d\n",
948 __func__
, i
, buf
, buf
->descs
[i
]->cookie
);
953 * pxa_camera_start_capture - start video capturing
954 * @pcdev: camera device
956 * Launch capturing. DMA channels should not be active yet. They should get
957 * activated at the end of frame interrupt, to capture only whole frames, and
958 * never begin the capture of a partial frame.
960 static void pxa_camera_start_capture(struct pxa_camera_dev
*pcdev
)
964 dev_dbg(pcdev_to_dev(pcdev
), "%s\n", __func__
);
965 __raw_writel(__raw_readl(pcdev
->base
+ CISR
), pcdev
->base
+ CISR
);
966 /* Enable End-Of-Frame Interrupt */
967 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) | CICR0_ENB
;
968 cicr0
&= ~CICR0_EOFM
;
969 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
972 static void pxa_camera_stop_capture(struct pxa_camera_dev
*pcdev
)
976 pxa_dma_stop_channels(pcdev
);
978 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) & ~CICR0_ENB
;
979 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
981 pcdev
->active
= NULL
;
982 dev_dbg(pcdev_to_dev(pcdev
), "%s\n", __func__
);
985 static void pxa_camera_wakeup(struct pxa_camera_dev
*pcdev
,
986 struct pxa_buffer
*buf
,
987 enum vb2_buffer_state state
)
989 struct vb2_buffer
*vb
= &buf
->vbuf
.vb2_buf
;
990 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
992 /* _init is used to debug races, see comment in pxa_camera_reqbufs() */
993 list_del_init(&buf
->queue
);
994 vb
->timestamp
= ktime_get_ns();
995 vbuf
->sequence
= pcdev
->buf_sequence
++;
996 vbuf
->field
= V4L2_FIELD_NONE
;
997 vb2_buffer_done(vb
, VB2_BUF_STATE_DONE
);
998 dev_dbg(pcdev_to_dev(pcdev
), "%s dequeued buffer (buf=0x%p)\n",
1001 if (list_empty(&pcdev
->capture
)) {
1002 pxa_camera_stop_capture(pcdev
);
1006 pcdev
->active
= list_entry(pcdev
->capture
.next
,
1007 struct pxa_buffer
, queue
);
1011 * pxa_camera_check_link_miss - check missed DMA linking
1012 * @pcdev: camera device
1013 * @last_submitted: an opaque DMA cookie for last submitted
1014 * @last_issued: an opaque DMA cookie for last issued
1016 * The DMA chaining is done with DMA running. This means a tiny temporal window
1017 * remains, where a buffer is queued on the chain, while the chain is already
1018 * stopped. This means the tailed buffer would never be transferred by DMA.
1019 * This function restarts the capture for this corner case, where :
1020 * - DADR() == DADDR_STOP
1021 * - a videobuffer is queued on the pcdev->capture list
1023 * Please check the "DMA hot chaining timeslice issue" in
1024 * Documentation/media/v4l-drivers/pxa_camera.rst
1026 * Context: should only be called within the dma irq handler
1028 static void pxa_camera_check_link_miss(struct pxa_camera_dev
*pcdev
,
1029 dma_cookie_t last_submitted
,
1030 dma_cookie_t last_issued
)
1032 bool is_dma_stopped
= last_submitted
!= last_issued
;
1034 dev_dbg(pcdev_to_dev(pcdev
),
1035 "%s : top queued buffer=%p, is_dma_stopped=%d\n",
1036 __func__
, pcdev
->active
, is_dma_stopped
);
1038 if (pcdev
->active
&& is_dma_stopped
)
1039 pxa_camera_start_capture(pcdev
);
1042 static void pxa_camera_dma_irq(struct pxa_camera_dev
*pcdev
,
1043 enum pxa_camera_active_dma act_dma
)
1045 struct pxa_buffer
*buf
, *last_buf
;
1046 unsigned long flags
;
1047 u32 camera_status
, overrun
;
1049 enum dma_status last_status
;
1050 dma_cookie_t last_issued
;
1052 spin_lock_irqsave(&pcdev
->lock
, flags
);
1054 camera_status
= __raw_readl(pcdev
->base
+ CISR
);
1055 dev_dbg(pcdev_to_dev(pcdev
), "camera dma irq, cisr=0x%x dma=%d\n",
1056 camera_status
, act_dma
);
1057 overrun
= CISR_IFO_0
;
1058 if (pcdev
->channels
== 3)
1059 overrun
|= CISR_IFO_1
| CISR_IFO_2
;
1062 * pcdev->active should not be NULL in DMA irq handler.
1064 * But there is one corner case : if capture was stopped due to an
1065 * overrun of channel 1, and at that same channel 2 was completed.
1067 * When handling the overrun in DMA irq for channel 1, we'll stop the
1068 * capture and restart it (and thus set pcdev->active to NULL). But the
1069 * DMA irq handler will already be pending for channel 2. So on entering
1070 * the DMA irq handler for channel 2 there will be no active buffer, yet
1076 buf
= pcdev
->active
;
1077 WARN_ON(buf
->inwork
|| list_empty(&buf
->queue
));
1080 * It's normal if the last frame creates an overrun, as there
1081 * are no more DMA descriptors to fetch from QCI fifos
1094 last_buf
= list_entry(pcdev
->capture
.prev
,
1095 struct pxa_buffer
, queue
);
1096 last_status
= dma_async_is_tx_complete(pcdev
->dma_chans
[chan
],
1097 last_buf
->cookie
[chan
],
1098 NULL
, &last_issued
);
1099 if (camera_status
& overrun
&&
1100 last_status
!= DMA_COMPLETE
) {
1101 dev_dbg(pcdev_to_dev(pcdev
), "FIFO overrun! CISR: %x\n",
1103 pxa_camera_stop_capture(pcdev
);
1104 list_for_each_entry(buf
, &pcdev
->capture
, queue
)
1105 pxa_dma_add_tail_buf(pcdev
, buf
);
1106 pxa_camera_start_capture(pcdev
);
1109 buf
->active_dma
&= ~act_dma
;
1110 if (!buf
->active_dma
) {
1111 pxa_camera_wakeup(pcdev
, buf
, VB2_BUF_STATE_DONE
);
1112 pxa_camera_check_link_miss(pcdev
, last_buf
->cookie
[chan
],
1117 spin_unlock_irqrestore(&pcdev
->lock
, flags
);
1120 static u32
mclk_get_divisor(struct platform_device
*pdev
,
1121 struct pxa_camera_dev
*pcdev
)
1123 unsigned long mclk
= pcdev
->mclk
;
1125 unsigned long lcdclk
;
1127 lcdclk
= clk_get_rate(pcdev
->clk
);
1128 pcdev
->ciclk
= lcdclk
;
1130 /* mclk <= ciclk / 4 (27.4.2) */
1131 if (mclk
> lcdclk
/ 4) {
1133 dev_warn(&pdev
->dev
,
1134 "Limiting master clock to %lu\n", mclk
);
1137 /* We verify mclk != 0, so if anyone breaks it, here comes their Oops */
1138 div
= (lcdclk
+ 2 * mclk
- 1) / (2 * mclk
) - 1;
1140 /* If we're not supplying MCLK, leave it at 0 */
1141 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
1142 pcdev
->mclk
= lcdclk
/ (2 * (div
+ 1));
1144 dev_dbg(&pdev
->dev
, "LCD clock %luHz, target freq %luHz, divisor %u\n",
1150 static void recalculate_fifo_timeout(struct pxa_camera_dev
*pcdev
,
1153 /* We want a timeout > 1 pixel time, not ">=" */
1154 u32 ciclk_per_pixel
= pcdev
->ciclk
/ pclk
+ 1;
1156 __raw_writel(ciclk_per_pixel
, pcdev
->base
+ CITOR
);
1159 static void pxa_camera_activate(struct pxa_camera_dev
*pcdev
)
1163 /* disable all interrupts */
1164 __raw_writel(0x3ff, pcdev
->base
+ CICR0
);
1166 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1167 cicr4
|= CICR4_PCLK_EN
;
1168 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
1169 cicr4
|= CICR4_MCLK_EN
;
1170 if (pcdev
->platform_flags
& PXA_CAMERA_PCP
)
1172 if (pcdev
->platform_flags
& PXA_CAMERA_HSP
)
1174 if (pcdev
->platform_flags
& PXA_CAMERA_VSP
)
1177 __raw_writel(pcdev
->mclk_divisor
| cicr4
, pcdev
->base
+ CICR4
);
1179 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
1180 /* Initialise the timeout under the assumption pclk = mclk */
1181 recalculate_fifo_timeout(pcdev
, pcdev
->mclk
);
1183 /* "Safe default" - 13MHz */
1184 recalculate_fifo_timeout(pcdev
, 13000000);
1186 clk_prepare_enable(pcdev
->clk
);
1189 static void pxa_camera_deactivate(struct pxa_camera_dev
*pcdev
)
1191 clk_disable_unprepare(pcdev
->clk
);
1194 static void pxa_camera_eof(unsigned long arg
)
1196 struct pxa_camera_dev
*pcdev
= (struct pxa_camera_dev
*)arg
;
1198 struct pxa_buffer
*buf
;
1200 dev_dbg(pcdev_to_dev(pcdev
),
1201 "Camera interrupt status 0x%x\n",
1202 __raw_readl(pcdev
->base
+ CISR
));
1204 /* Reset the FIFOs */
1205 cifr
= __raw_readl(pcdev
->base
+ CIFR
) | CIFR_RESET_F
;
1206 __raw_writel(cifr
, pcdev
->base
+ CIFR
);
1208 pcdev
->active
= list_first_entry(&pcdev
->capture
,
1209 struct pxa_buffer
, queue
);
1210 buf
= pcdev
->active
;
1211 pxa_videobuf_set_actdma(pcdev
, buf
);
1213 pxa_dma_start_channels(pcdev
);
1216 static irqreturn_t
pxa_camera_irq(int irq
, void *data
)
1218 struct pxa_camera_dev
*pcdev
= data
;
1219 unsigned long status
, cicr0
;
1221 status
= __raw_readl(pcdev
->base
+ CISR
);
1222 dev_dbg(pcdev_to_dev(pcdev
),
1223 "Camera interrupt status 0x%lx\n", status
);
1228 __raw_writel(status
, pcdev
->base
+ CISR
);
1230 if (status
& CISR_EOF
) {
1231 cicr0
= __raw_readl(pcdev
->base
+ CICR0
) | CICR0_EOFM
;
1232 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
1233 tasklet_schedule(&pcdev
->task_eof
);
1239 static int test_platform_param(struct pxa_camera_dev
*pcdev
,
1240 unsigned char buswidth
, unsigned long *flags
)
1243 * Platform specified synchronization and pixel clock polarities are
1244 * only a recommendation and are only used during probing. The PXA270
1245 * quick capture interface supports both.
1247 *flags
= (pcdev
->platform_flags
& PXA_CAMERA_MASTER
?
1248 V4L2_MBUS_MASTER
: V4L2_MBUS_SLAVE
) |
1249 V4L2_MBUS_HSYNC_ACTIVE_HIGH
|
1250 V4L2_MBUS_HSYNC_ACTIVE_LOW
|
1251 V4L2_MBUS_VSYNC_ACTIVE_HIGH
|
1252 V4L2_MBUS_VSYNC_ACTIVE_LOW
|
1253 V4L2_MBUS_DATA_ACTIVE_HIGH
|
1254 V4L2_MBUS_PCLK_SAMPLE_RISING
|
1255 V4L2_MBUS_PCLK_SAMPLE_FALLING
;
1257 /* If requested data width is supported by the platform, use it */
1258 if ((1 << (buswidth
- 1)) & pcdev
->width_flags
)
1264 static void pxa_camera_setup_cicr(struct pxa_camera_dev
*pcdev
,
1265 unsigned long flags
, __u32 pixfmt
)
1267 unsigned long dw
, bpp
;
1268 u32 cicr0
, cicr1
, cicr2
, cicr3
, cicr4
= 0, y_skip_top
;
1269 int ret
= sensor_call(pcdev
, sensor
, g_skip_top_lines
, &y_skip_top
);
1275 * Datawidth is now guaranteed to be equal to one of the three values.
1276 * We fix bit-per-pixel equal to data-width...
1278 switch (pcdev
->current_fmt
->host_fmt
->bits_per_sample
) {
1289 * Actually it can only be 8 now,
1290 * default is just to silence compiler warnings
1297 if (pcdev
->platform_flags
& PXA_CAMERA_PCLK_EN
)
1298 cicr4
|= CICR4_PCLK_EN
;
1299 if (pcdev
->platform_flags
& PXA_CAMERA_MCLK_EN
)
1300 cicr4
|= CICR4_MCLK_EN
;
1301 if (flags
& V4L2_MBUS_PCLK_SAMPLE_FALLING
)
1303 if (flags
& V4L2_MBUS_HSYNC_ACTIVE_LOW
)
1305 if (flags
& V4L2_MBUS_VSYNC_ACTIVE_LOW
)
1308 cicr0
= __raw_readl(pcdev
->base
+ CICR0
);
1309 if (cicr0
& CICR0_ENB
)
1310 __raw_writel(cicr0
& ~CICR0_ENB
, pcdev
->base
+ CICR0
);
1312 cicr1
= CICR1_PPL_VAL(pcdev
->current_pix
.width
- 1) | bpp
| dw
;
1315 case V4L2_PIX_FMT_YUV422P
:
1316 pcdev
->channels
= 3;
1317 cicr1
|= CICR1_YCBCR_F
;
1319 * Normally, pxa bus wants as input UYVY format. We allow all
1320 * reorderings of the YUV422 format, as no processing is done,
1321 * and the YUV stream is just passed through without any
1322 * transformation. Note that UYVY is the only format that
1323 * should be used if pxa framebuffer Overlay2 is used.
1326 case V4L2_PIX_FMT_UYVY
:
1327 case V4L2_PIX_FMT_VYUY
:
1328 case V4L2_PIX_FMT_YUYV
:
1329 case V4L2_PIX_FMT_YVYU
:
1330 cicr1
|= CICR1_COLOR_SP_VAL(2);
1332 case V4L2_PIX_FMT_RGB555
:
1333 cicr1
|= CICR1_RGB_BPP_VAL(1) | CICR1_RGBT_CONV_VAL(2) |
1334 CICR1_TBIT
| CICR1_COLOR_SP_VAL(1);
1336 case V4L2_PIX_FMT_RGB565
:
1337 cicr1
|= CICR1_COLOR_SP_VAL(1) | CICR1_RGB_BPP_VAL(2);
1342 cicr3
= CICR3_LPF_VAL(pcdev
->current_pix
.height
- 1) |
1343 CICR3_BFW_VAL(min((u32
)255, y_skip_top
));
1344 cicr4
|= pcdev
->mclk_divisor
;
1346 __raw_writel(cicr1
, pcdev
->base
+ CICR1
);
1347 __raw_writel(cicr2
, pcdev
->base
+ CICR2
);
1348 __raw_writel(cicr3
, pcdev
->base
+ CICR3
);
1349 __raw_writel(cicr4
, pcdev
->base
+ CICR4
);
1351 /* CIF interrupts are not used, only DMA */
1352 cicr0
= (cicr0
& CICR0_ENB
) | (pcdev
->platform_flags
& PXA_CAMERA_MASTER
?
1353 CICR0_SIM_MP
: (CICR0_SL_CAP_EN
| CICR0_SIM_SP
));
1354 cicr0
|= CICR0_DMAEN
| CICR0_IRQ_MASK
;
1355 __raw_writel(cicr0
, pcdev
->base
+ CICR0
);
1361 static void pxa_buffer_cleanup(struct pxa_buffer
*buf
)
1365 for (i
= 0; i
< 3 && buf
->descs
[i
]; i
++) {
1366 dmaengine_desc_free(buf
->descs
[i
]);
1368 buf
->descs
[i
] = NULL
;
1371 buf
->plane_sizes
[i
] = 0;
1376 static int pxa_buffer_init(struct pxa_camera_dev
*pcdev
,
1377 struct pxa_buffer
*buf
)
1379 struct vb2_buffer
*vb
= &buf
->vbuf
.vb2_buf
;
1380 struct sg_table
*sgt
= vb2_dma_sg_plane_desc(vb
, 0);
1381 int nb_channels
= pcdev
->channels
;
1383 unsigned long size
= vb2_plane_size(vb
, 0);
1385 switch (nb_channels
) {
1387 buf
->plane_sizes
[0] = size
;
1390 buf
->plane_sizes
[0] = size
/ 2;
1391 buf
->plane_sizes
[1] = size
/ 4;
1392 buf
->plane_sizes
[2] = size
/ 4;
1397 buf
->nb_planes
= nb_channels
;
1399 ret
= sg_split(sgt
->sgl
, sgt
->nents
, 0, nb_channels
,
1400 buf
->plane_sizes
, buf
->sg
, buf
->sg_len
, GFP_KERNEL
);
1402 dev_err(pcdev_to_dev(pcdev
),
1403 "sg_split failed: %d\n", ret
);
1406 for (i
= 0; i
< nb_channels
; i
++) {
1407 ret
= pxa_init_dma_channel(pcdev
, buf
, i
,
1408 buf
->sg
[i
], buf
->sg_len
[i
]);
1410 pxa_buffer_cleanup(buf
);
1414 INIT_LIST_HEAD(&buf
->queue
);
1419 static void pxac_vb2_cleanup(struct vb2_buffer
*vb
)
1421 struct pxa_buffer
*buf
= vb2_to_pxa_buffer(vb
);
1422 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vb
->vb2_queue
);
1424 dev_dbg(pcdev_to_dev(pcdev
),
1425 "%s(vb=%p)\n", __func__
, vb
);
1426 pxa_buffer_cleanup(buf
);
1429 static void pxac_vb2_queue(struct vb2_buffer
*vb
)
1431 struct pxa_buffer
*buf
= vb2_to_pxa_buffer(vb
);
1432 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vb
->vb2_queue
);
1434 dev_dbg(pcdev_to_dev(pcdev
),
1435 "%s(vb=%p) nb_channels=%d size=%lu active=%p\n",
1436 __func__
, vb
, pcdev
->channels
, vb2_get_plane_payload(vb
, 0),
1439 list_add_tail(&buf
->queue
, &pcdev
->capture
);
1441 pxa_dma_add_tail_buf(pcdev
, buf
);
1445 * Please check the DMA prepared buffer structure in :
1446 * Documentation/media/v4l-drivers/pxa_camera.rst
1447 * Please check also in pxa_camera_check_link_miss() to understand why DMA chain
1448 * modification while DMA chain is running will work anyway.
1450 static int pxac_vb2_prepare(struct vb2_buffer
*vb
)
1452 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vb
->vb2_queue
);
1453 struct pxa_buffer
*buf
= vb2_to_pxa_buffer(vb
);
1456 switch (pcdev
->channels
) {
1459 vb2_set_plane_payload(vb
, 0, pcdev
->current_pix
.sizeimage
);
1465 dev_dbg(pcdev_to_dev(pcdev
),
1466 "%s (vb=%p) nb_channels=%d size=%lu\n",
1467 __func__
, vb
, pcdev
->channels
, vb2_get_plane_payload(vb
, 0));
1469 WARN_ON(!pcdev
->current_fmt
);
1473 * This can be useful if you want to see if we actually fill
1474 * the buffer with something
1476 for (i
= 0; i
< vb
->num_planes
; i
++)
1477 memset((void *)vb2_plane_vaddr(vb
, i
),
1478 0xaa, vb2_get_plane_payload(vb
, i
));
1482 * I think, in buf_prepare you only have to protect global data,
1483 * the actual buffer is yours
1486 pxa_videobuf_set_actdma(pcdev
, buf
);
1491 static int pxac_vb2_init(struct vb2_buffer
*vb
)
1493 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vb
->vb2_queue
);
1494 struct pxa_buffer
*buf
= vb2_to_pxa_buffer(vb
);
1496 dev_dbg(pcdev_to_dev(pcdev
),
1497 "%s(nb_channels=%d)\n",
1498 __func__
, pcdev
->channels
);
1500 return pxa_buffer_init(pcdev
, buf
);
1503 static int pxac_vb2_queue_setup(struct vb2_queue
*vq
,
1504 unsigned int *nbufs
,
1505 unsigned int *num_planes
, unsigned int sizes
[],
1506 struct device
*alloc_devs
[])
1508 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vq
);
1509 int size
= pcdev
->current_pix
.sizeimage
;
1511 dev_dbg(pcdev_to_dev(pcdev
),
1512 "%s(vq=%p nbufs=%d num_planes=%d size=%d)\n",
1513 __func__
, vq
, *nbufs
, *num_planes
, size
);
1515 * Called from VIDIOC_REQBUFS or in compatibility mode For YUV422P
1516 * format, even if there are 3 planes Y, U and V, we reply there is only
1517 * one plane, containing Y, U and V data, one after the other.
1520 return sizes
[0] < size
? -EINVAL
: 0;
1523 switch (pcdev
->channels
) {
1538 static int pxac_vb2_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
1540 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vq
);
1542 dev_dbg(pcdev_to_dev(pcdev
), "%s(count=%d) active=%p\n",
1543 __func__
, count
, pcdev
->active
);
1545 pcdev
->buf_sequence
= 0;
1547 pxa_camera_start_capture(pcdev
);
1552 static void pxac_vb2_stop_streaming(struct vb2_queue
*vq
)
1554 struct pxa_camera_dev
*pcdev
= vb2_get_drv_priv(vq
);
1555 struct pxa_buffer
*buf
, *tmp
;
1557 dev_dbg(pcdev_to_dev(pcdev
), "%s active=%p\n",
1558 __func__
, pcdev
->active
);
1559 pxa_camera_stop_capture(pcdev
);
1561 list_for_each_entry_safe(buf
, tmp
, &pcdev
->capture
, queue
)
1562 pxa_camera_wakeup(pcdev
, buf
, VB2_BUF_STATE_ERROR
);
1565 static const struct vb2_ops pxac_vb2_ops
= {
1566 .queue_setup
= pxac_vb2_queue_setup
,
1567 .buf_init
= pxac_vb2_init
,
1568 .buf_prepare
= pxac_vb2_prepare
,
1569 .buf_queue
= pxac_vb2_queue
,
1570 .buf_cleanup
= pxac_vb2_cleanup
,
1571 .start_streaming
= pxac_vb2_start_streaming
,
1572 .stop_streaming
= pxac_vb2_stop_streaming
,
1573 .wait_prepare
= vb2_ops_wait_prepare
,
1574 .wait_finish
= vb2_ops_wait_finish
,
1577 static int pxa_camera_init_videobuf2(struct pxa_camera_dev
*pcdev
)
1580 struct vb2_queue
*vq
= &pcdev
->vb2_vq
;
1582 memset(vq
, 0, sizeof(*vq
));
1583 vq
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1584 vq
->io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
;
1585 vq
->drv_priv
= pcdev
;
1586 vq
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
1587 vq
->buf_struct_size
= sizeof(struct pxa_buffer
);
1588 vq
->dev
= pcdev
->v4l2_dev
.dev
;
1590 vq
->ops
= &pxac_vb2_ops
;
1591 vq
->mem_ops
= &vb2_dma_sg_memops
;
1592 vq
->lock
= &pcdev
->mlock
;
1594 ret
= vb2_queue_init(vq
);
1595 dev_dbg(pcdev_to_dev(pcdev
),
1596 "vb2_queue_init(vq=%p): %d\n", vq
, ret
);
1602 * Video ioctls section
1604 static int pxa_camera_set_bus_param(struct pxa_camera_dev
*pcdev
)
1606 struct v4l2_mbus_config cfg
= {.type
= V4L2_MBUS_PARALLEL
,};
1607 u32 pixfmt
= pcdev
->current_fmt
->host_fmt
->fourcc
;
1608 unsigned long bus_flags
, common_flags
;
1611 ret
= test_platform_param(pcdev
,
1612 pcdev
->current_fmt
->host_fmt
->bits_per_sample
,
1617 ret
= sensor_call(pcdev
, video
, g_mbus_config
, &cfg
);
1619 common_flags
= pxa_mbus_config_compatible(&cfg
,
1621 if (!common_flags
) {
1622 dev_warn(pcdev_to_dev(pcdev
),
1623 "Flags incompatible: camera 0x%x, host 0x%lx\n",
1624 cfg
.flags
, bus_flags
);
1627 } else if (ret
!= -ENOIOCTLCMD
) {
1630 common_flags
= bus_flags
;
1633 pcdev
->channels
= 1;
1635 /* Make choises, based on platform preferences */
1636 if ((common_flags
& V4L2_MBUS_HSYNC_ACTIVE_HIGH
) &&
1637 (common_flags
& V4L2_MBUS_HSYNC_ACTIVE_LOW
)) {
1638 if (pcdev
->platform_flags
& PXA_CAMERA_HSP
)
1639 common_flags
&= ~V4L2_MBUS_HSYNC_ACTIVE_HIGH
;
1641 common_flags
&= ~V4L2_MBUS_HSYNC_ACTIVE_LOW
;
1644 if ((common_flags
& V4L2_MBUS_VSYNC_ACTIVE_HIGH
) &&
1645 (common_flags
& V4L2_MBUS_VSYNC_ACTIVE_LOW
)) {
1646 if (pcdev
->platform_flags
& PXA_CAMERA_VSP
)
1647 common_flags
&= ~V4L2_MBUS_VSYNC_ACTIVE_HIGH
;
1649 common_flags
&= ~V4L2_MBUS_VSYNC_ACTIVE_LOW
;
1652 if ((common_flags
& V4L2_MBUS_PCLK_SAMPLE_RISING
) &&
1653 (common_flags
& V4L2_MBUS_PCLK_SAMPLE_FALLING
)) {
1654 if (pcdev
->platform_flags
& PXA_CAMERA_PCP
)
1655 common_flags
&= ~V4L2_MBUS_PCLK_SAMPLE_RISING
;
1657 common_flags
&= ~V4L2_MBUS_PCLK_SAMPLE_FALLING
;
1660 cfg
.flags
= common_flags
;
1661 ret
= sensor_call(pcdev
, video
, s_mbus_config
, &cfg
);
1662 if (ret
< 0 && ret
!= -ENOIOCTLCMD
) {
1663 dev_dbg(pcdev_to_dev(pcdev
),
1664 "camera s_mbus_config(0x%lx) returned %d\n",
1669 pxa_camera_setup_cicr(pcdev
, common_flags
, pixfmt
);
1674 static int pxa_camera_try_bus_param(struct pxa_camera_dev
*pcdev
,
1675 unsigned char buswidth
)
1677 struct v4l2_mbus_config cfg
= {.type
= V4L2_MBUS_PARALLEL
,};
1678 unsigned long bus_flags
, common_flags
;
1679 int ret
= test_platform_param(pcdev
, buswidth
, &bus_flags
);
1684 ret
= sensor_call(pcdev
, video
, g_mbus_config
, &cfg
);
1686 common_flags
= pxa_mbus_config_compatible(&cfg
,
1688 if (!common_flags
) {
1689 dev_warn(pcdev_to_dev(pcdev
),
1690 "Flags incompatible: camera 0x%x, host 0x%lx\n",
1691 cfg
.flags
, bus_flags
);
1694 } else if (ret
== -ENOIOCTLCMD
) {
1701 static const struct pxa_mbus_pixelfmt pxa_camera_formats
[] = {
1703 .fourcc
= V4L2_PIX_FMT_YUV422P
,
1704 .name
= "Planar YUV422 16 bit",
1705 .bits_per_sample
= 8,
1706 .packing
= PXA_MBUS_PACKING_2X8_PADHI
,
1707 .order
= PXA_MBUS_ORDER_LE
,
1708 .layout
= PXA_MBUS_LAYOUT_PLANAR_2Y_U_V
,
1712 /* This will be corrected as we get more formats */
1713 static bool pxa_camera_packing_supported(const struct pxa_mbus_pixelfmt
*fmt
)
1715 return fmt
->packing
== PXA_MBUS_PACKING_NONE
||
1716 (fmt
->bits_per_sample
== 8 &&
1717 fmt
->packing
== PXA_MBUS_PACKING_2X8_PADHI
) ||
1718 (fmt
->bits_per_sample
> 8 &&
1719 fmt
->packing
== PXA_MBUS_PACKING_EXTEND16
);
1722 static int pxa_camera_get_formats(struct v4l2_device
*v4l2_dev
,
1724 struct pxa_camera_format_xlate
*xlate
)
1726 struct pxa_camera_dev
*pcdev
= v4l2_dev_to_pcdev(v4l2_dev
);
1727 int formats
= 0, ret
;
1728 struct v4l2_subdev_mbus_code_enum code
= {
1729 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
1732 const struct pxa_mbus_pixelfmt
*fmt
;
1734 ret
= sensor_call(pcdev
, pad
, enum_mbus_code
, NULL
, &code
);
1736 /* No more formats */
1739 fmt
= pxa_mbus_get_fmtdesc(code
.code
);
1741 dev_err(pcdev_to_dev(pcdev
),
1742 "Invalid format code #%u: %d\n", idx
, code
.code
);
1746 /* This also checks support for the requested bits-per-sample */
1747 ret
= pxa_camera_try_bus_param(pcdev
, fmt
->bits_per_sample
);
1751 switch (code
.code
) {
1752 case MEDIA_BUS_FMT_UYVY8_2X8
:
1755 xlate
->host_fmt
= &pxa_camera_formats
[0];
1756 xlate
->code
= code
.code
;
1758 dev_dbg(pcdev_to_dev(pcdev
),
1759 "Providing format %s using code %d\n",
1760 pxa_camera_formats
[0].name
, code
.code
);
1763 case MEDIA_BUS_FMT_VYUY8_2X8
:
1764 case MEDIA_BUS_FMT_YUYV8_2X8
:
1765 case MEDIA_BUS_FMT_YVYU8_2X8
:
1766 case MEDIA_BUS_FMT_RGB565_2X8_LE
:
1767 case MEDIA_BUS_FMT_RGB555_2X8_PADHI_LE
:
1769 dev_dbg(pcdev_to_dev(pcdev
),
1770 "Providing format %s packed\n",
1774 if (!pxa_camera_packing_supported(fmt
))
1777 dev_dbg(pcdev_to_dev(pcdev
),
1778 "Providing format %s in pass-through mode\n",
1783 /* Generic pass-through */
1786 xlate
->host_fmt
= fmt
;
1787 xlate
->code
= code
.code
;
1794 static int pxa_camera_build_formats(struct pxa_camera_dev
*pcdev
)
1796 struct pxa_camera_format_xlate
*xlate
;
1798 xlate
= pxa_mbus_build_fmts_xlate(&pcdev
->v4l2_dev
, pcdev
->sensor
,
1799 pxa_camera_get_formats
);
1801 return PTR_ERR(xlate
);
1803 pcdev
->user_formats
= xlate
;
1807 static void pxa_camera_destroy_formats(struct pxa_camera_dev
*pcdev
)
1809 kfree(pcdev
->user_formats
);
1812 static int pxa_camera_check_frame(u32 width
, u32 height
)
1814 /* limit to pxa hardware capabilities */
1815 return height
< 32 || height
> 2048 || width
< 48 || width
> 2048 ||
1819 #ifdef CONFIG_VIDEO_ADV_DEBUG
1820 static int pxac_vidioc_g_register(struct file
*file
, void *priv
,
1821 struct v4l2_dbg_register
*reg
)
1823 struct pxa_camera_dev
*pcdev
= video_drvdata(file
);
1825 if (reg
->reg
> CIBR2
)
1828 reg
->val
= __raw_readl(pcdev
->base
+ reg
->reg
);
1829 reg
->size
= sizeof(__u32
);
1833 static int pxac_vidioc_s_register(struct file
*file
, void *priv
,
1834 const struct v4l2_dbg_register
*reg
)
1836 struct pxa_camera_dev
*pcdev
= video_drvdata(file
);
1838 if (reg
->reg
> CIBR2
)
1840 if (reg
->size
!= sizeof(__u32
))
1842 __raw_writel(reg
->val
, pcdev
->base
+ reg
->reg
);
1847 static int pxac_vidioc_enum_fmt_vid_cap(struct file
*filp
, void *priv
,
1848 struct v4l2_fmtdesc
*f
)
1850 struct pxa_camera_dev
*pcdev
= video_drvdata(filp
);
1851 const struct pxa_mbus_pixelfmt
*format
;
1854 for (idx
= 0; pcdev
->user_formats
[idx
].code
; idx
++);
1855 if (f
->index
>= idx
)
1858 format
= pcdev
->user_formats
[f
->index
].host_fmt
;
1859 f
->pixelformat
= format
->fourcc
;
1863 static int pxac_vidioc_g_fmt_vid_cap(struct file
*filp
, void *priv
,
1864 struct v4l2_format
*f
)
1866 struct pxa_camera_dev
*pcdev
= video_drvdata(filp
);
1867 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1869 pix
->width
= pcdev
->current_pix
.width
;
1870 pix
->height
= pcdev
->current_pix
.height
;
1871 pix
->bytesperline
= pcdev
->current_pix
.bytesperline
;
1872 pix
->sizeimage
= pcdev
->current_pix
.sizeimage
;
1873 pix
->field
= pcdev
->current_pix
.field
;
1874 pix
->pixelformat
= pcdev
->current_fmt
->host_fmt
->fourcc
;
1875 pix
->colorspace
= pcdev
->current_pix
.colorspace
;
1876 dev_dbg(pcdev_to_dev(pcdev
), "current_fmt->fourcc: 0x%08x\n",
1877 pcdev
->current_fmt
->host_fmt
->fourcc
);
1881 static int pxac_vidioc_try_fmt_vid_cap(struct file
*filp
, void *priv
,
1882 struct v4l2_format
*f
)
1884 struct pxa_camera_dev
*pcdev
= video_drvdata(filp
);
1885 const struct pxa_camera_format_xlate
*xlate
;
1886 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1887 struct v4l2_subdev_pad_config pad_cfg
;
1888 struct v4l2_subdev_format format
= {
1889 .which
= V4L2_SUBDEV_FORMAT_TRY
,
1891 struct v4l2_mbus_framefmt
*mf
= &format
.format
;
1892 __u32 pixfmt
= pix
->pixelformat
;
1895 xlate
= pxa_mbus_xlate_by_fourcc(pcdev
->user_formats
, pixfmt
);
1897 dev_warn(pcdev_to_dev(pcdev
), "Format %x not found\n", pixfmt
);
1902 * Limit to pxa hardware capabilities. YUV422P planar format requires
1903 * images size to be a multiple of 16 bytes. If not, zeros will be
1904 * inserted between Y and U planes, and U and V planes, which violates
1905 * the YUV422P standard.
1907 v4l_bound_align_image(&pix
->width
, 48, 2048, 1,
1908 &pix
->height
, 32, 2048, 0,
1909 pixfmt
== V4L2_PIX_FMT_YUV422P
? 4 : 0);
1911 v4l2_fill_mbus_format(mf
, pix
, xlate
->code
);
1912 ret
= sensor_call(pcdev
, pad
, set_fmt
, &pad_cfg
, &format
);
1916 v4l2_fill_pix_format(pix
, mf
);
1918 /* Only progressive video supported so far */
1919 switch (mf
->field
) {
1920 case V4L2_FIELD_ANY
:
1921 case V4L2_FIELD_NONE
:
1922 pix
->field
= V4L2_FIELD_NONE
;
1925 /* TODO: support interlaced at least in pass-through mode */
1926 dev_err(pcdev_to_dev(pcdev
), "Field type %d unsupported.\n",
1931 ret
= pxa_mbus_bytes_per_line(pix
->width
, xlate
->host_fmt
);
1935 pix
->bytesperline
= ret
;
1936 ret
= pxa_mbus_image_size(xlate
->host_fmt
, pix
->bytesperline
,
1941 pix
->sizeimage
= ret
;
1945 static int pxac_vidioc_s_fmt_vid_cap(struct file
*filp
, void *priv
,
1946 struct v4l2_format
*f
)
1948 struct pxa_camera_dev
*pcdev
= video_drvdata(filp
);
1949 const struct pxa_camera_format_xlate
*xlate
;
1950 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1951 struct v4l2_subdev_format format
= {
1952 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
1954 unsigned long flags
;
1957 dev_dbg(pcdev_to_dev(pcdev
),
1958 "s_fmt_vid_cap(pix=%dx%d:%x)\n",
1959 pix
->width
, pix
->height
, pix
->pixelformat
);
1961 spin_lock_irqsave(&pcdev
->lock
, flags
);
1962 is_busy
= pcdev
->active
|| vb2_is_busy(&pcdev
->vb2_vq
);
1963 spin_unlock_irqrestore(&pcdev
->lock
, flags
);
1968 ret
= pxac_vidioc_try_fmt_vid_cap(filp
, priv
, f
);
1972 xlate
= pxa_mbus_xlate_by_fourcc(pcdev
->user_formats
,
1974 v4l2_fill_mbus_format(&format
.format
, pix
, xlate
->code
);
1975 ret
= sensor_call(pcdev
, pad
, set_fmt
, NULL
, &format
);
1977 dev_warn(pcdev_to_dev(pcdev
),
1978 "Failed to configure for format %x\n",
1980 } else if (pxa_camera_check_frame(pix
->width
, pix
->height
)) {
1981 dev_warn(pcdev_to_dev(pcdev
),
1982 "Camera driver produced an unsupported frame %dx%d\n",
1983 pix
->width
, pix
->height
);
1987 pcdev
->current_fmt
= xlate
;
1988 pcdev
->current_pix
= *pix
;
1990 ret
= pxa_camera_set_bus_param(pcdev
);
1994 static int pxac_vidioc_querycap(struct file
*file
, void *priv
,
1995 struct v4l2_capability
*cap
)
1997 strlcpy(cap
->bus_info
, "platform:pxa-camera", sizeof(cap
->bus_info
));
1998 strlcpy(cap
->driver
, PXA_CAM_DRV_NAME
, sizeof(cap
->driver
));
1999 strlcpy(cap
->card
, pxa_cam_driver_description
, sizeof(cap
->card
));
2000 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
2001 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
2006 static int pxac_vidioc_enum_input(struct file
*file
, void *priv
,
2007 struct v4l2_input
*i
)
2012 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
2013 strlcpy(i
->name
, "Camera", sizeof(i
->name
));
2018 static int pxac_vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
2025 static int pxac_vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
2033 static int pxac_sensor_set_power(struct pxa_camera_dev
*pcdev
, int on
)
2037 ret
= sensor_call(pcdev
, core
, s_power
, on
);
2038 if (ret
== -ENOIOCTLCMD
)
2041 dev_warn(pcdev_to_dev(pcdev
),
2042 "Failed to put subdevice in %s mode: %d\n",
2043 on
? "normal operation" : "power saving", ret
);
2049 static int pxac_fops_camera_open(struct file
*filp
)
2051 struct pxa_camera_dev
*pcdev
= video_drvdata(filp
);
2054 mutex_lock(&pcdev
->mlock
);
2055 ret
= v4l2_fh_open(filp
);
2059 if (!v4l2_fh_is_singular_file(filp
))
2062 ret
= pxac_sensor_set_power(pcdev
, 1);
2064 v4l2_fh_release(filp
);
2066 mutex_unlock(&pcdev
->mlock
);
2070 static int pxac_fops_camera_release(struct file
*filp
)
2072 struct pxa_camera_dev
*pcdev
= video_drvdata(filp
);
2076 mutex_lock(&pcdev
->mlock
);
2078 fh_singular
= v4l2_fh_is_singular_file(filp
);
2080 ret
= _vb2_fop_release(filp
, NULL
);
2083 ret
= pxac_sensor_set_power(pcdev
, 0);
2085 mutex_unlock(&pcdev
->mlock
);
2090 static const struct v4l2_file_operations pxa_camera_fops
= {
2091 .owner
= THIS_MODULE
,
2092 .open
= pxac_fops_camera_open
,
2093 .release
= pxac_fops_camera_release
,
2094 .read
= vb2_fop_read
,
2095 .poll
= vb2_fop_poll
,
2096 .mmap
= vb2_fop_mmap
,
2097 .unlocked_ioctl
= video_ioctl2
,
2100 static const struct v4l2_ioctl_ops pxa_camera_ioctl_ops
= {
2101 .vidioc_querycap
= pxac_vidioc_querycap
,
2103 .vidioc_enum_input
= pxac_vidioc_enum_input
,
2104 .vidioc_g_input
= pxac_vidioc_g_input
,
2105 .vidioc_s_input
= pxac_vidioc_s_input
,
2107 .vidioc_enum_fmt_vid_cap
= pxac_vidioc_enum_fmt_vid_cap
,
2108 .vidioc_g_fmt_vid_cap
= pxac_vidioc_g_fmt_vid_cap
,
2109 .vidioc_s_fmt_vid_cap
= pxac_vidioc_s_fmt_vid_cap
,
2110 .vidioc_try_fmt_vid_cap
= pxac_vidioc_try_fmt_vid_cap
,
2112 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
2113 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
2114 .vidioc_querybuf
= vb2_ioctl_querybuf
,
2115 .vidioc_qbuf
= vb2_ioctl_qbuf
,
2116 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
2117 .vidioc_expbuf
= vb2_ioctl_expbuf
,
2118 .vidioc_streamon
= vb2_ioctl_streamon
,
2119 .vidioc_streamoff
= vb2_ioctl_streamoff
,
2120 #ifdef CONFIG_VIDEO_ADV_DEBUG
2121 .vidioc_g_register
= pxac_vidioc_g_register
,
2122 .vidioc_s_register
= pxac_vidioc_s_register
,
2124 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
2125 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
2128 static const struct v4l2_clk_ops pxa_camera_mclk_ops
= {
2131 static const struct video_device pxa_camera_videodev_template
= {
2132 .name
= "pxa-camera",
2134 .fops
= &pxa_camera_fops
,
2135 .ioctl_ops
= &pxa_camera_ioctl_ops
,
2136 .release
= video_device_release_empty
,
2137 .device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
,
2140 static int pxa_camera_sensor_bound(struct v4l2_async_notifier
*notifier
,
2141 struct v4l2_subdev
*subdev
,
2142 struct v4l2_async_subdev
*asd
)
2145 struct v4l2_device
*v4l2_dev
= notifier
->v4l2_dev
;
2146 struct pxa_camera_dev
*pcdev
= v4l2_dev_to_pcdev(v4l2_dev
);
2147 struct video_device
*vdev
= &pcdev
->vdev
;
2148 struct v4l2_pix_format
*pix
= &pcdev
->current_pix
;
2149 struct v4l2_subdev_format format
= {
2150 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
2152 struct v4l2_mbus_framefmt
*mf
= &format
.format
;
2154 dev_info(pcdev_to_dev(pcdev
), "%s(): trying to bind a device\n",
2156 mutex_lock(&pcdev
->mlock
);
2157 *vdev
= pxa_camera_videodev_template
;
2158 vdev
->v4l2_dev
= v4l2_dev
;
2159 vdev
->lock
= &pcdev
->mlock
;
2160 pcdev
->sensor
= subdev
;
2161 pcdev
->vdev
.queue
= &pcdev
->vb2_vq
;
2162 pcdev
->vdev
.v4l2_dev
= &pcdev
->v4l2_dev
;
2163 pcdev
->vdev
.ctrl_handler
= subdev
->ctrl_handler
;
2164 video_set_drvdata(&pcdev
->vdev
, pcdev
);
2166 err
= pxa_camera_build_formats(pcdev
);
2168 dev_err(pcdev_to_dev(pcdev
), "building formats failed: %d\n",
2173 pcdev
->current_fmt
= pcdev
->user_formats
;
2174 pix
->field
= V4L2_FIELD_NONE
;
2175 pix
->width
= DEFAULT_WIDTH
;
2176 pix
->height
= DEFAULT_HEIGHT
;
2178 pxa_mbus_bytes_per_line(pix
->width
,
2179 pcdev
->current_fmt
->host_fmt
);
2181 pxa_mbus_image_size(pcdev
->current_fmt
->host_fmt
,
2182 pix
->bytesperline
, pix
->height
);
2183 pix
->pixelformat
= pcdev
->current_fmt
->host_fmt
->fourcc
;
2184 v4l2_fill_mbus_format(mf
, pix
, pcdev
->current_fmt
->code
);
2186 err
= pxac_sensor_set_power(pcdev
, 1);
2190 err
= sensor_call(pcdev
, pad
, set_fmt
, NULL
, &format
);
2192 goto out_sensor_poweroff
;
2194 v4l2_fill_pix_format(pix
, mf
);
2195 pr_info("%s(): colorspace=0x%x pixfmt=0x%x\n",
2196 __func__
, pix
->colorspace
, pix
->pixelformat
);
2198 err
= pxa_camera_init_videobuf2(pcdev
);
2200 goto out_sensor_poweroff
;
2202 err
= video_register_device(&pcdev
->vdev
, VFL_TYPE_GRABBER
, -1);
2204 v4l2_err(v4l2_dev
, "register video device failed: %d\n", err
);
2205 pcdev
->sensor
= NULL
;
2207 dev_info(pcdev_to_dev(pcdev
),
2208 "PXA Camera driver attached to camera %s\n",
2212 out_sensor_poweroff
:
2213 err
= pxac_sensor_set_power(pcdev
, 0);
2215 mutex_unlock(&pcdev
->mlock
);
2219 static void pxa_camera_sensor_unbind(struct v4l2_async_notifier
*notifier
,
2220 struct v4l2_subdev
*subdev
,
2221 struct v4l2_async_subdev
*asd
)
2223 struct pxa_camera_dev
*pcdev
= v4l2_dev_to_pcdev(notifier
->v4l2_dev
);
2225 mutex_lock(&pcdev
->mlock
);
2226 dev_info(pcdev_to_dev(pcdev
),
2227 "PXA Camera driver detached from camera %s\n",
2230 /* disable capture, disable interrupts */
2231 __raw_writel(0x3ff, pcdev
->base
+ CICR0
);
2233 /* Stop DMA engine */
2234 pxa_dma_stop_channels(pcdev
);
2236 pxa_camera_destroy_formats(pcdev
);
2238 if (pcdev
->mclk_clk
) {
2239 v4l2_clk_unregister(pcdev
->mclk_clk
);
2240 pcdev
->mclk_clk
= NULL
;
2243 video_unregister_device(&pcdev
->vdev
);
2244 pcdev
->sensor
= NULL
;
2246 mutex_unlock(&pcdev
->mlock
);
2249 static const struct v4l2_async_notifier_operations pxa_camera_sensor_ops
= {
2250 .bound
= pxa_camera_sensor_bound
,
2251 .unbind
= pxa_camera_sensor_unbind
,
2255 * Driver probe, remove, suspend and resume operations
2257 static int pxa_camera_suspend(struct device
*dev
)
2259 struct pxa_camera_dev
*pcdev
= dev_get_drvdata(dev
);
2262 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR0
);
2263 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR1
);
2264 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR2
);
2265 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR3
);
2266 pcdev
->save_cicr
[i
++] = __raw_readl(pcdev
->base
+ CICR4
);
2269 ret
= pxac_sensor_set_power(pcdev
, 0);
2274 static int pxa_camera_resume(struct device
*dev
)
2276 struct pxa_camera_dev
*pcdev
= dev_get_drvdata(dev
);
2279 __raw_writel(pcdev
->save_cicr
[i
++] & ~CICR0_ENB
, pcdev
->base
+ CICR0
);
2280 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR1
);
2281 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR2
);
2282 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR3
);
2283 __raw_writel(pcdev
->save_cicr
[i
++], pcdev
->base
+ CICR4
);
2285 if (pcdev
->sensor
) {
2286 ret
= pxac_sensor_set_power(pcdev
, 1);
2289 /* Restart frame capture if active buffer exists */
2290 if (!ret
&& pcdev
->active
)
2291 pxa_camera_start_capture(pcdev
);
2296 static int pxa_camera_pdata_from_dt(struct device
*dev
,
2297 struct pxa_camera_dev
*pcdev
,
2298 struct v4l2_async_subdev
*asd
)
2301 struct device_node
*remote
, *np
= dev
->of_node
;
2302 struct v4l2_fwnode_endpoint ep
;
2303 int err
= of_property_read_u32(np
, "clock-frequency",
2306 pcdev
->platform_flags
|= PXA_CAMERA_MCLK_EN
;
2307 pcdev
->mclk
= mclk_rate
;
2310 np
= of_graph_get_next_endpoint(np
, NULL
);
2312 dev_err(dev
, "could not find endpoint\n");
2316 err
= v4l2_fwnode_endpoint_parse(of_fwnode_handle(np
), &ep
);
2318 dev_err(dev
, "could not parse endpoint\n");
2322 switch (ep
.bus
.parallel
.bus_width
) {
2324 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_4
;
2327 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_5
;
2330 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_8
;
2333 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_9
;
2336 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_10
;
2342 if (ep
.bus
.parallel
.flags
& V4L2_MBUS_MASTER
)
2343 pcdev
->platform_flags
|= PXA_CAMERA_MASTER
;
2344 if (ep
.bus
.parallel
.flags
& V4L2_MBUS_HSYNC_ACTIVE_HIGH
)
2345 pcdev
->platform_flags
|= PXA_CAMERA_HSP
;
2346 if (ep
.bus
.parallel
.flags
& V4L2_MBUS_VSYNC_ACTIVE_HIGH
)
2347 pcdev
->platform_flags
|= PXA_CAMERA_VSP
;
2348 if (ep
.bus
.parallel
.flags
& V4L2_MBUS_PCLK_SAMPLE_RISING
)
2349 pcdev
->platform_flags
|= PXA_CAMERA_PCLK_EN
| PXA_CAMERA_PCP
;
2350 if (ep
.bus
.parallel
.flags
& V4L2_MBUS_PCLK_SAMPLE_FALLING
)
2351 pcdev
->platform_flags
|= PXA_CAMERA_PCLK_EN
;
2353 asd
->match_type
= V4L2_ASYNC_MATCH_FWNODE
;
2354 remote
= of_graph_get_remote_port(np
);
2356 asd
->match
.fwnode
= of_fwnode_handle(remote
);
2357 of_node_put(remote
);
2359 dev_notice(dev
, "no remote for %pOF\n", np
);
2368 static int pxa_camera_probe(struct platform_device
*pdev
)
2370 struct pxa_camera_dev
*pcdev
;
2371 struct resource
*res
;
2373 struct dma_slave_config config
= {
2374 .src_addr_width
= 0,
2376 .direction
= DMA_DEV_TO_MEM
,
2378 char clk_name
[V4L2_CLK_NAME_SIZE
];
2382 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2383 irq
= platform_get_irq(pdev
, 0);
2384 if (!res
|| irq
< 0)
2387 pcdev
= devm_kzalloc(&pdev
->dev
, sizeof(*pcdev
), GFP_KERNEL
);
2389 dev_err(&pdev
->dev
, "Could not allocate pcdev\n");
2393 pcdev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
2394 if (IS_ERR(pcdev
->clk
))
2395 return PTR_ERR(pcdev
->clk
);
2399 pcdev
->pdata
= pdev
->dev
.platform_data
;
2400 if (&pdev
->dev
.of_node
&& !pcdev
->pdata
) {
2401 err
= pxa_camera_pdata_from_dt(&pdev
->dev
, pcdev
, &pcdev
->asd
);
2403 pcdev
->platform_flags
= pcdev
->pdata
->flags
;
2404 pcdev
->mclk
= pcdev
->pdata
->mclk_10khz
* 10000;
2405 pcdev
->asd
.match_type
= V4L2_ASYNC_MATCH_I2C
;
2406 pcdev
->asd
.match
.i2c
.adapter_id
=
2407 pcdev
->pdata
->sensor_i2c_adapter_id
;
2408 pcdev
->asd
.match
.i2c
.address
= pcdev
->pdata
->sensor_i2c_address
;
2413 if (!(pcdev
->platform_flags
& (PXA_CAMERA_DATAWIDTH_8
|
2414 PXA_CAMERA_DATAWIDTH_9
| PXA_CAMERA_DATAWIDTH_10
))) {
2416 * Platform hasn't set available data widths. This is bad.
2417 * Warn and use a default.
2419 dev_warn(&pdev
->dev
, "WARNING! Platform hasn't set available data widths, using default 10 bit\n");
2420 pcdev
->platform_flags
|= PXA_CAMERA_DATAWIDTH_10
;
2422 if (pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_8
)
2423 pcdev
->width_flags
= 1 << 7;
2424 if (pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_9
)
2425 pcdev
->width_flags
|= 1 << 8;
2426 if (pcdev
->platform_flags
& PXA_CAMERA_DATAWIDTH_10
)
2427 pcdev
->width_flags
|= 1 << 9;
2429 dev_warn(&pdev
->dev
,
2430 "mclk == 0! Please, fix your platform data. Using default 20MHz\n");
2431 pcdev
->mclk
= 20000000;
2434 pcdev
->mclk_divisor
= mclk_get_divisor(pdev
, pcdev
);
2436 INIT_LIST_HEAD(&pcdev
->capture
);
2437 spin_lock_init(&pcdev
->lock
);
2438 mutex_init(&pcdev
->mlock
);
2441 * Request the regions.
2443 base
= devm_ioremap_resource(&pdev
->dev
, res
);
2445 return PTR_ERR(base
);
2451 pcdev
->dma_chans
[0] = dma_request_slave_channel(&pdev
->dev
, "CI_Y");
2452 if (!pcdev
->dma_chans
[0]) {
2453 dev_err(&pdev
->dev
, "Can't request DMA for Y\n");
2457 pcdev
->dma_chans
[1] = dma_request_slave_channel(&pdev
->dev
, "CI_U");
2458 if (!pcdev
->dma_chans
[1]) {
2459 dev_err(&pdev
->dev
, "Can't request DMA for Y\n");
2461 goto exit_free_dma_y
;
2464 pcdev
->dma_chans
[2] = dma_request_slave_channel(&pdev
->dev
, "CI_V");
2465 if (!pcdev
->dma_chans
[2]) {
2466 dev_err(&pdev
->dev
, "Can't request DMA for V\n");
2468 goto exit_free_dma_u
;
2471 for (i
= 0; i
< 3; i
++) {
2472 config
.src_addr
= pcdev
->res
->start
+ CIBR0
+ i
* 8;
2473 err
= dmaengine_slave_config(pcdev
->dma_chans
[i
], &config
);
2475 dev_err(&pdev
->dev
, "dma slave config failed: %d\n",
2482 err
= devm_request_irq(&pdev
->dev
, pcdev
->irq
, pxa_camera_irq
, 0,
2483 PXA_CAM_DRV_NAME
, pcdev
);
2485 dev_err(&pdev
->dev
, "Camera interrupt register failed\n");
2489 tasklet_init(&pcdev
->task_eof
, pxa_camera_eof
, (unsigned long)pcdev
);
2491 pxa_camera_activate(pcdev
);
2493 dev_set_drvdata(&pdev
->dev
, pcdev
);
2494 err
= v4l2_device_register(&pdev
->dev
, &pcdev
->v4l2_dev
);
2496 goto exit_deactivate
;
2498 pcdev
->asds
[0] = &pcdev
->asd
;
2499 pcdev
->notifier
.subdevs
= pcdev
->asds
;
2500 pcdev
->notifier
.num_subdevs
= 1;
2501 pcdev
->notifier
.ops
= &pxa_camera_sensor_ops
;
2503 if (!of_have_populated_dt())
2504 pcdev
->asd
.match_type
= V4L2_ASYNC_MATCH_I2C
;
2506 err
= pxa_camera_init_videobuf2(pcdev
);
2508 goto exit_free_v4l2dev
;
2511 v4l2_clk_name_i2c(clk_name
, sizeof(clk_name
),
2512 pcdev
->asd
.match
.i2c
.adapter_id
,
2513 pcdev
->asd
.match
.i2c
.address
);
2515 pcdev
->mclk_clk
= v4l2_clk_register(&pxa_camera_mclk_ops
,
2517 if (IS_ERR(pcdev
->mclk_clk
)) {
2518 err
= PTR_ERR(pcdev
->mclk_clk
);
2519 goto exit_free_v4l2dev
;
2523 err
= v4l2_async_notifier_register(&pcdev
->v4l2_dev
, &pcdev
->notifier
);
2529 v4l2_clk_unregister(pcdev
->mclk_clk
);
2531 v4l2_device_unregister(&pcdev
->v4l2_dev
);
2533 pxa_camera_deactivate(pcdev
);
2535 dma_release_channel(pcdev
->dma_chans
[2]);
2537 dma_release_channel(pcdev
->dma_chans
[1]);
2539 dma_release_channel(pcdev
->dma_chans
[0]);
2543 static int pxa_camera_remove(struct platform_device
*pdev
)
2545 struct pxa_camera_dev
*pcdev
= dev_get_drvdata(&pdev
->dev
);
2547 pxa_camera_deactivate(pcdev
);
2548 dma_release_channel(pcdev
->dma_chans
[0]);
2549 dma_release_channel(pcdev
->dma_chans
[1]);
2550 dma_release_channel(pcdev
->dma_chans
[2]);
2552 v4l2_async_notifier_unregister(&pcdev
->notifier
);
2554 if (pcdev
->mclk_clk
) {
2555 v4l2_clk_unregister(pcdev
->mclk_clk
);
2556 pcdev
->mclk_clk
= NULL
;
2559 v4l2_device_unregister(&pcdev
->v4l2_dev
);
2561 dev_info(&pdev
->dev
, "PXA Camera driver unloaded\n");
2566 static const struct dev_pm_ops pxa_camera_pm
= {
2567 .suspend
= pxa_camera_suspend
,
2568 .resume
= pxa_camera_resume
,
2571 static const struct of_device_id pxa_camera_of_match
[] = {
2572 { .compatible
= "marvell,pxa270-qci", },
2575 MODULE_DEVICE_TABLE(of
, pxa_camera_of_match
);
2577 static struct platform_driver pxa_camera_driver
= {
2579 .name
= PXA_CAM_DRV_NAME
,
2580 .pm
= &pxa_camera_pm
,
2581 .of_match_table
= of_match_ptr(pxa_camera_of_match
),
2583 .probe
= pxa_camera_probe
,
2584 .remove
= pxa_camera_remove
,
2587 module_platform_driver(pxa_camera_driver
);
2589 MODULE_DESCRIPTION("PXA27x SoC Camera Host driver");
2590 MODULE_AUTHOR("Guennadi Liakhovetski <kernel@pengutronix.de>");
2591 MODULE_LICENSE("GPL");
2592 MODULE_VERSION(PXA_CAM_VERSION
);
2593 MODULE_ALIAS("platform:" PXA_CAM_DRV_NAME
);