[media] s5p-fimc: Add media operations in the capture entity driver
[linux-2.6/libata-dev.git] / drivers / media / video / s5p-fimc / fimc-core.h
blob87a89f1a81ba2fc2e1039dc7c44644d075911811
1 /*
2 * Copyright (C) 2010 - 2011 Samsung Electronics Co., Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #ifndef FIMC_CORE_H_
10 #define FIMC_CORE_H_
12 /*#define DEBUG*/
14 #include <linux/platform_device.h>
15 #include <linux/sched.h>
16 #include <linux/spinlock.h>
17 #include <linux/types.h>
18 #include <linux/videodev2.h>
19 #include <linux/io.h>
21 #include <media/media-entity.h>
22 #include <media/videobuf2-core.h>
23 #include <media/v4l2-ctrls.h>
24 #include <media/v4l2-device.h>
25 #include <media/v4l2-mem2mem.h>
26 #include <media/v4l2-mediabus.h>
27 #include <media/s5p_fimc.h>
29 #include "regs-fimc.h"
31 #define err(fmt, args...) \
32 printk(KERN_ERR "%s:%d: " fmt "\n", __func__, __LINE__, ##args)
34 #define dbg(fmt, args...) \
35 pr_debug("%s:%d: " fmt "\n", __func__, __LINE__, ##args)
37 /* Time to wait for next frame VSYNC interrupt while stopping operation. */
38 #define FIMC_SHUTDOWN_TIMEOUT ((100*HZ)/1000)
39 #define MAX_FIMC_CLOCKS 2
40 #define FIMC_MODULE_NAME "s5p-fimc"
41 #define FIMC_MAX_DEVS 4
42 #define FIMC_MAX_OUT_BUFS 4
43 #define SCALER_MAX_HRATIO 64
44 #define SCALER_MAX_VRATIO 64
45 #define DMA_MIN_SIZE 8
47 /* indices to the clocks array */
48 enum {
49 CLK_BUS,
50 CLK_GATE,
53 enum fimc_dev_flags {
54 ST_LPM,
55 /* m2m node */
56 ST_M2M_RUN,
57 ST_M2M_PEND,
58 ST_M2M_SUSPENDING,
59 ST_M2M_SUSPENDED,
60 /* capture node */
61 ST_CAPT_PEND,
62 ST_CAPT_RUN,
63 ST_CAPT_STREAM,
64 ST_CAPT_SHUT,
65 ST_CAPT_BUSY,
66 ST_CAPT_APPLY_CFG,
69 #define fimc_m2m_active(dev) test_bit(ST_M2M_RUN, &(dev)->state)
70 #define fimc_m2m_pending(dev) test_bit(ST_M2M_PEND, &(dev)->state)
72 #define fimc_capture_running(dev) test_bit(ST_CAPT_RUN, &(dev)->state)
73 #define fimc_capture_pending(dev) test_bit(ST_CAPT_PEND, &(dev)->state)
74 #define fimc_capture_busy(dev) test_bit(ST_CAPT_BUSY, &(dev)->state)
76 enum fimc_datapath {
77 FIMC_CAMERA,
78 FIMC_DMA,
79 FIMC_LCDFIFO,
80 FIMC_WRITEBACK
83 enum fimc_color_fmt {
84 S5P_FIMC_RGB565 = 0x10,
85 S5P_FIMC_RGB666,
86 S5P_FIMC_RGB888,
87 S5P_FIMC_RGB30_LOCAL,
88 S5P_FIMC_YCBCR420 = 0x20,
89 S5P_FIMC_YCBYCR422,
90 S5P_FIMC_YCRYCB422,
91 S5P_FIMC_CBYCRY422,
92 S5P_FIMC_CRYCBY422,
93 S5P_FIMC_YCBCR444_LOCAL,
96 #define fimc_fmt_is_rgb(x) ((x) & 0x10)
98 /* Cb/Cr chrominance components order for 2 plane Y/CbCr 4:2:2 formats. */
99 #define S5P_FIMC_LSB_CRCB S5P_CIOCTRL_ORDER422_2P_LSB_CRCB
101 /* The embedded image effect selection */
102 #define S5P_FIMC_EFFECT_ORIGINAL S5P_CIIMGEFF_FIN_BYPASS
103 #define S5P_FIMC_EFFECT_ARBITRARY S5P_CIIMGEFF_FIN_ARBITRARY
104 #define S5P_FIMC_EFFECT_NEGATIVE S5P_CIIMGEFF_FIN_NEGATIVE
105 #define S5P_FIMC_EFFECT_ARTFREEZE S5P_CIIMGEFF_FIN_ARTFREEZE
106 #define S5P_FIMC_EFFECT_EMBOSSING S5P_CIIMGEFF_FIN_EMBOSSING
107 #define S5P_FIMC_EFFECT_SIKHOUETTE S5P_CIIMGEFF_FIN_SILHOUETTE
109 /* The hardware context state. */
110 #define FIMC_PARAMS (1 << 0)
111 #define FIMC_SRC_ADDR (1 << 1)
112 #define FIMC_DST_ADDR (1 << 2)
113 #define FIMC_SRC_FMT (1 << 3)
114 #define FIMC_DST_FMT (1 << 4)
115 #define FIMC_CTX_M2M (1 << 5)
116 #define FIMC_CTX_CAP (1 << 6)
117 #define FIMC_CTX_SHUT (1 << 7)
119 /* Image conversion flags */
120 #define FIMC_IN_DMA_ACCESS_TILED (1 << 0)
121 #define FIMC_IN_DMA_ACCESS_LINEAR (0 << 0)
122 #define FIMC_OUT_DMA_ACCESS_TILED (1 << 1)
123 #define FIMC_OUT_DMA_ACCESS_LINEAR (0 << 1)
124 #define FIMC_SCAN_MODE_PROGRESSIVE (0 << 2)
125 #define FIMC_SCAN_MODE_INTERLACED (1 << 2)
127 * YCbCr data dynamic range for RGB-YUV color conversion.
128 * Y/Cb/Cr: (0 ~ 255) */
129 #define FIMC_COLOR_RANGE_WIDE (0 << 3)
130 /* Y (16 ~ 235), Cb/Cr (16 ~ 240) */
131 #define FIMC_COLOR_RANGE_NARROW (1 << 3)
134 * struct fimc_fmt - the driver's internal color format data
135 * @mbus_code: Media Bus pixel code, -1 if not applicable
136 * @name: format description
137 * @fourcc: the fourcc code for this format, 0 if not applicable
138 * @color: the corresponding fimc_color_fmt
139 * @memplanes: number of physically non-contiguous data planes
140 * @colplanes: number of physically contiguous data planes
141 * @depth: per plane driver's private 'number of bits per pixel'
142 * @flags: flags indicating which operation mode format applies to
144 struct fimc_fmt {
145 enum v4l2_mbus_pixelcode mbus_code;
146 char *name;
147 u32 fourcc;
148 u32 color;
149 u16 memplanes;
150 u16 colplanes;
151 u8 depth[VIDEO_MAX_PLANES];
152 u16 flags;
153 #define FMT_FLAGS_CAM (1 << 0)
154 #define FMT_FLAGS_M2M (1 << 1)
158 * struct fimc_dma_offset - pixel offset information for DMA
159 * @y_h: y value horizontal offset
160 * @y_v: y value vertical offset
161 * @cb_h: cb value horizontal offset
162 * @cb_v: cb value vertical offset
163 * @cr_h: cr value horizontal offset
164 * @cr_v: cr value vertical offset
166 struct fimc_dma_offset {
167 int y_h;
168 int y_v;
169 int cb_h;
170 int cb_v;
171 int cr_h;
172 int cr_v;
176 * struct fimc_effect - color effect information
177 * @type: effect type
178 * @pat_cb: cr value when type is "arbitrary"
179 * @pat_cr: cr value when type is "arbitrary"
181 struct fimc_effect {
182 u32 type;
183 u8 pat_cb;
184 u8 pat_cr;
188 * struct fimc_scaler - the configuration data for FIMC inetrnal scaler
189 * @scaleup_h: flag indicating scaling up horizontally
190 * @scaleup_v: flag indicating scaling up vertically
191 * @copy_mode: flag indicating transparent DMA transfer (no scaling
192 * and color format conversion)
193 * @enabled: flag indicating if the scaler is used
194 * @hfactor: horizontal shift factor
195 * @vfactor: vertical shift factor
196 * @pre_hratio: horizontal ratio of the prescaler
197 * @pre_vratio: vertical ratio of the prescaler
198 * @pre_dst_width: the prescaler's destination width
199 * @pre_dst_height: the prescaler's destination height
200 * @main_hratio: the main scaler's horizontal ratio
201 * @main_vratio: the main scaler's vertical ratio
202 * @real_width: source pixel (width - offset)
203 * @real_height: source pixel (height - offset)
205 struct fimc_scaler {
206 unsigned int scaleup_h:1;
207 unsigned int scaleup_v:1;
208 unsigned int copy_mode:1;
209 unsigned int enabled:1;
210 u32 hfactor;
211 u32 vfactor;
212 u32 pre_hratio;
213 u32 pre_vratio;
214 u32 pre_dst_width;
215 u32 pre_dst_height;
216 u32 main_hratio;
217 u32 main_vratio;
218 u32 real_width;
219 u32 real_height;
223 * struct fimc_addr - the FIMC physical address set for DMA
224 * @y: luminance plane physical address
225 * @cb: Cb plane physical address
226 * @cr: Cr plane physical address
228 struct fimc_addr {
229 u32 y;
230 u32 cb;
231 u32 cr;
235 * struct fimc_vid_buffer - the driver's video buffer
236 * @vb: v4l videobuf buffer
237 * @list: linked list structure for buffer queue
238 * @paddr: precalculated physical address set
239 * @index: buffer index for the output DMA engine
241 struct fimc_vid_buffer {
242 struct vb2_buffer vb;
243 struct list_head list;
244 struct fimc_addr paddr;
245 int index;
249 * struct fimc_frame - source/target frame properties
250 * @f_width: image full width (virtual screen size)
251 * @f_height: image full height (virtual screen size)
252 * @o_width: original image width as set by S_FMT
253 * @o_height: original image height as set by S_FMT
254 * @offs_h: image horizontal pixel offset
255 * @offs_v: image vertical pixel offset
256 * @width: image pixel width
257 * @height: image pixel weight
258 * @payload: image size in bytes (w x h x bpp)
259 * @paddr: image frame buffer physical addresses
260 * @dma_offset: DMA offset in bytes
261 * @fmt: fimc color format pointer
263 struct fimc_frame {
264 u32 f_width;
265 u32 f_height;
266 u32 o_width;
267 u32 o_height;
268 u32 offs_h;
269 u32 offs_v;
270 u32 width;
271 u32 height;
272 unsigned long payload[VIDEO_MAX_PLANES];
273 struct fimc_addr paddr;
274 struct fimc_dma_offset dma_offset;
275 struct fimc_fmt *fmt;
279 * struct fimc_m2m_device - v4l2 memory-to-memory device data
280 * @vfd: the video device node for v4l2 m2m mode
281 * @m2m_dev: v4l2 memory-to-memory device data
282 * @ctx: hardware context data
283 * @refcnt: the reference counter
285 struct fimc_m2m_device {
286 struct video_device *vfd;
287 struct v4l2_m2m_dev *m2m_dev;
288 struct fimc_ctx *ctx;
289 int refcnt;
293 * struct fimc_vid_cap - camera capture device information
294 * @ctx: hardware context data
295 * @vfd: video device node for camera capture mode
296 * @sd: pointer to camera sensor subdevice currently in use
297 * @vd_pad: fimc video capture node pad
298 * @fmt: Media Bus format configured at selected image sensor
299 * @pending_buf_q: the pending buffer queue head
300 * @active_buf_q: the queue head of buffers scheduled in hardware
301 * @vbq: the capture am video buffer queue
302 * @active_buf_cnt: number of video buffers scheduled in hardware
303 * @buf_index: index for managing the output DMA buffers
304 * @frame_count: the frame counter for statistics
305 * @reqbufs_count: the number of buffers requested in REQBUFS ioctl
306 * @input_index: input (camera sensor) index
307 * @refcnt: driver's private reference counter
308 * @input: capture input type, grp_id of the attached subdev
309 * @user_subdev_api: true if subdevs are not configured by the host driver
311 struct fimc_vid_cap {
312 struct fimc_ctx *ctx;
313 struct vb2_alloc_ctx *alloc_ctx;
314 struct video_device *vfd;
315 struct v4l2_subdev *sd;;
316 struct media_pad vd_pad;
317 struct v4l2_mbus_framefmt fmt;
318 struct list_head pending_buf_q;
319 struct list_head active_buf_q;
320 struct vb2_queue vbq;
321 int active_buf_cnt;
322 int buf_index;
323 unsigned int frame_count;
324 unsigned int reqbufs_count;
325 int input_index;
326 int refcnt;
327 u32 input;
328 bool user_subdev_api;
332 * struct fimc_pix_limit - image pixel size limits in various IP configurations
334 * @scaler_en_w: max input pixel width when the scaler is enabled
335 * @scaler_dis_w: max input pixel width when the scaler is disabled
336 * @in_rot_en_h: max input width with the input rotator is on
337 * @in_rot_dis_w: max input width with the input rotator is off
338 * @out_rot_en_w: max output width with the output rotator on
339 * @out_rot_dis_w: max output width with the output rotator off
341 struct fimc_pix_limit {
342 u16 scaler_en_w;
343 u16 scaler_dis_w;
344 u16 in_rot_en_h;
345 u16 in_rot_dis_w;
346 u16 out_rot_en_w;
347 u16 out_rot_dis_w;
351 * struct samsung_fimc_variant - camera interface variant information
353 * @pix_hoff: indicate whether horizontal offset is in pixels or in bytes
354 * @has_inp_rot: set if has input rotator
355 * @has_out_rot: set if has output rotator
356 * @has_cistatus2: 1 if CISTATUS2 register is present in this IP revision
357 * @has_mainscaler_ext: 1 if extended mainscaler ratios in CIEXTEN register
358 * are present in this IP revision
359 * @has_cam_if: set if this instance has a camera input interface
360 * @pix_limit: pixel size constraints for the scaler
361 * @min_inp_pixsize: minimum input pixel size
362 * @min_out_pixsize: minimum output pixel size
363 * @hor_offs_align: horizontal pixel offset aligment
364 * @out_buf_count: the number of buffers in output DMA sequence
366 struct samsung_fimc_variant {
367 unsigned int pix_hoff:1;
368 unsigned int has_inp_rot:1;
369 unsigned int has_out_rot:1;
370 unsigned int has_cistatus2:1;
371 unsigned int has_mainscaler_ext:1;
372 unsigned int has_cam_if:1;
373 struct fimc_pix_limit *pix_limit;
374 u16 min_inp_pixsize;
375 u16 min_out_pixsize;
376 u16 hor_offs_align;
377 u16 out_buf_count;
381 * struct samsung_fimc_driverdata - per device type driver data for init time.
383 * @variant: the variant information for this driver.
384 * @dev_cnt: number of fimc sub-devices available in SoC
385 * @lclk_frequency: fimc bus clock frequency
387 struct samsung_fimc_driverdata {
388 struct samsung_fimc_variant *variant[FIMC_MAX_DEVS];
389 unsigned long lclk_frequency;
390 int num_entities;
393 struct fimc_pipeline {
394 struct media_pipeline *pipe;
395 struct v4l2_subdev *sensor;
396 struct v4l2_subdev *csis;
399 struct fimc_ctx;
402 * struct fimc_dev - abstraction for FIMC entity
403 * @slock: the spinlock protecting this data structure
404 * @lock: the mutex protecting this data structure
405 * @pdev: pointer to the FIMC platform device
406 * @pdata: pointer to the device platform data
407 * @variant: the IP variant information
408 * @id: FIMC device index (0..FIMC_MAX_DEVS)
409 * @num_clocks: the number of clocks managed by this device instance
410 * @clock: clocks required for FIMC operation
411 * @regs: the mapped hardware registers
412 * @regs_res: the resource claimed for IO registers
413 * @irq: FIMC interrupt number
414 * @irq_queue: interrupt handler waitqueue
415 * @v4l2_dev: root v4l2_device
416 * @m2m: memory-to-memory V4L2 device information
417 * @vid_cap: camera capture device information
418 * @state: flags used to synchronize m2m and capture mode operation
419 * @alloc_ctx: videobuf2 memory allocator context
420 * @pipeline: fimc video capture pipeline data structure
422 struct fimc_dev {
423 spinlock_t slock;
424 struct mutex lock;
425 struct platform_device *pdev;
426 struct s5p_platform_fimc *pdata;
427 struct samsung_fimc_variant *variant;
428 u16 id;
429 u16 num_clocks;
430 struct clk *clock[MAX_FIMC_CLOCKS];
431 void __iomem *regs;
432 struct resource *regs_res;
433 int irq;
434 wait_queue_head_t irq_queue;
435 struct v4l2_device *v4l2_dev;
436 struct fimc_m2m_device m2m;
437 struct fimc_vid_cap vid_cap;
438 unsigned long state;
439 struct vb2_alloc_ctx *alloc_ctx;
440 struct fimc_pipeline pipeline;
444 * fimc_ctx - the device context data
445 * @slock: spinlock protecting this data structure
446 * @s_frame: source frame properties
447 * @d_frame: destination frame properties
448 * @out_order_1p: output 1-plane YCBCR order
449 * @out_order_2p: output 2-plane YCBCR order
450 * @in_order_1p input 1-plane YCBCR order
451 * @in_order_2p: input 2-plane YCBCR order
452 * @in_path: input mode (DMA or camera)
453 * @out_path: output mode (DMA or FIFO)
454 * @scaler: image scaler properties
455 * @effect: image effect
456 * @rotation: image clockwise rotation in degrees
457 * @hflip: indicates image horizontal flip if set
458 * @vflip: indicates image vertical flip if set
459 * @flags: additional flags for image conversion
460 * @state: flags to keep track of user configuration
461 * @fimc_dev: the FIMC device this context applies to
462 * @m2m_ctx: memory-to-memory device context
463 * @fh: v4l2 file handle
464 * @ctrl_handler: v4l2 controls handler
465 * @ctrl_rotate image rotation control
466 * @ctrl_hflip horizontal flip control
467 * @ctrl_vflip vartical flip control
468 * @ctrls_rdy: true if the control handler is initialized
470 struct fimc_ctx {
471 spinlock_t slock;
472 struct fimc_frame s_frame;
473 struct fimc_frame d_frame;
474 u32 out_order_1p;
475 u32 out_order_2p;
476 u32 in_order_1p;
477 u32 in_order_2p;
478 enum fimc_datapath in_path;
479 enum fimc_datapath out_path;
480 struct fimc_scaler scaler;
481 struct fimc_effect effect;
482 int rotation;
483 unsigned int hflip:1;
484 unsigned int vflip:1;
485 u32 flags;
486 u32 state;
487 struct fimc_dev *fimc_dev;
488 struct v4l2_m2m_ctx *m2m_ctx;
489 struct v4l2_fh fh;
490 struct v4l2_ctrl_handler ctrl_handler;
491 struct v4l2_ctrl *ctrl_rotate;
492 struct v4l2_ctrl *ctrl_hflip;
493 struct v4l2_ctrl *ctrl_vflip;
494 bool ctrls_rdy;
497 #define fh_to_ctx(__fh) container_of(__fh, struct fimc_ctx, fh)
499 static inline bool fimc_capture_active(struct fimc_dev *fimc)
501 unsigned long flags;
502 bool ret;
504 spin_lock_irqsave(&fimc->slock, flags);
505 ret = !!(fimc->state & (1 << ST_CAPT_RUN) ||
506 fimc->state & (1 << ST_CAPT_PEND));
507 spin_unlock_irqrestore(&fimc->slock, flags);
508 return ret;
511 static inline void fimc_ctx_state_lock_set(u32 state, struct fimc_ctx *ctx)
513 unsigned long flags;
515 spin_lock_irqsave(&ctx->slock, flags);
516 ctx->state |= state;
517 spin_unlock_irqrestore(&ctx->slock, flags);
520 static inline bool fimc_ctx_state_is_set(u32 mask, struct fimc_ctx *ctx)
522 unsigned long flags;
523 bool ret;
525 spin_lock_irqsave(&ctx->slock, flags);
526 ret = (ctx->state & mask) == mask;
527 spin_unlock_irqrestore(&ctx->slock, flags);
528 return ret;
531 static inline int tiled_fmt(struct fimc_fmt *fmt)
533 return fmt->fourcc == V4L2_PIX_FMT_NV12MT;
536 static inline void fimc_hw_clear_irq(struct fimc_dev *dev)
538 u32 cfg = readl(dev->regs + S5P_CIGCTRL);
539 cfg |= S5P_CIGCTRL_IRQ_CLR;
540 writel(cfg, dev->regs + S5P_CIGCTRL);
543 static inline void fimc_hw_enable_scaler(struct fimc_dev *dev, bool on)
545 u32 cfg = readl(dev->regs + S5P_CISCCTRL);
546 if (on)
547 cfg |= S5P_CISCCTRL_SCALERSTART;
548 else
549 cfg &= ~S5P_CISCCTRL_SCALERSTART;
550 writel(cfg, dev->regs + S5P_CISCCTRL);
553 static inline void fimc_hw_activate_input_dma(struct fimc_dev *dev, bool on)
555 u32 cfg = readl(dev->regs + S5P_MSCTRL);
556 if (on)
557 cfg |= S5P_MSCTRL_ENVID;
558 else
559 cfg &= ~S5P_MSCTRL_ENVID;
560 writel(cfg, dev->regs + S5P_MSCTRL);
563 static inline void fimc_hw_dis_capture(struct fimc_dev *dev)
565 u32 cfg = readl(dev->regs + S5P_CIIMGCPT);
566 cfg &= ~(S5P_CIIMGCPT_IMGCPTEN | S5P_CIIMGCPT_IMGCPTEN_SC);
567 writel(cfg, dev->regs + S5P_CIIMGCPT);
571 * fimc_hw_set_dma_seq - configure output DMA buffer sequence
572 * @mask: each bit corresponds to one of 32 output buffer registers set
573 * 1 to include buffer in the sequence, 0 to disable
575 * This function mask output DMA ring buffers, i.e. it allows to configure
576 * which of the output buffer address registers will be used by the DMA
577 * engine.
579 static inline void fimc_hw_set_dma_seq(struct fimc_dev *dev, u32 mask)
581 writel(mask, dev->regs + S5P_CIFCNTSEQ);
584 static inline struct fimc_frame *ctx_get_frame(struct fimc_ctx *ctx,
585 enum v4l2_buf_type type)
587 struct fimc_frame *frame;
589 if (V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE == type) {
590 if (fimc_ctx_state_is_set(FIMC_CTX_M2M, ctx))
591 frame = &ctx->s_frame;
592 else
593 return ERR_PTR(-EINVAL);
594 } else if (V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE == type) {
595 frame = &ctx->d_frame;
596 } else {
597 v4l2_err(ctx->fimc_dev->v4l2_dev,
598 "Wrong buffer/video queue type (%d)\n", type);
599 return ERR_PTR(-EINVAL);
602 return frame;
605 /* Return an index to the buffer actually being written. */
606 static inline u32 fimc_hw_get_frame_index(struct fimc_dev *dev)
608 u32 reg;
610 if (dev->variant->has_cistatus2) {
611 reg = readl(dev->regs + S5P_CISTATUS2) & 0x3F;
612 return reg > 0 ? --reg : reg;
613 } else {
614 reg = readl(dev->regs + S5P_CISTATUS);
615 return (reg & S5P_CISTATUS_FRAMECNT_MASK) >>
616 S5P_CISTATUS_FRAMECNT_SHIFT;
620 /* -----------------------------------------------------*/
621 /* fimc-reg.c */
622 void fimc_hw_reset(struct fimc_dev *fimc);
623 void fimc_hw_set_rotation(struct fimc_ctx *ctx);
624 void fimc_hw_set_target_format(struct fimc_ctx *ctx);
625 void fimc_hw_set_out_dma(struct fimc_ctx *ctx);
626 void fimc_hw_en_lastirq(struct fimc_dev *fimc, int enable);
627 void fimc_hw_en_irq(struct fimc_dev *fimc, int enable);
628 void fimc_hw_set_prescaler(struct fimc_ctx *ctx);
629 void fimc_hw_set_mainscaler(struct fimc_ctx *ctx);
630 void fimc_hw_en_capture(struct fimc_ctx *ctx);
631 void fimc_hw_set_effect(struct fimc_ctx *ctx);
632 void fimc_hw_set_in_dma(struct fimc_ctx *ctx);
633 void fimc_hw_set_input_path(struct fimc_ctx *ctx);
634 void fimc_hw_set_output_path(struct fimc_ctx *ctx);
635 void fimc_hw_set_input_addr(struct fimc_dev *fimc, struct fimc_addr *paddr);
636 void fimc_hw_set_output_addr(struct fimc_dev *fimc, struct fimc_addr *paddr,
637 int index);
638 int fimc_hw_set_camera_source(struct fimc_dev *fimc,
639 struct s5p_fimc_isp_info *cam);
640 int fimc_hw_set_camera_offset(struct fimc_dev *fimc, struct fimc_frame *f);
641 int fimc_hw_set_camera_polarity(struct fimc_dev *fimc,
642 struct s5p_fimc_isp_info *cam);
643 int fimc_hw_set_camera_type(struct fimc_dev *fimc,
644 struct s5p_fimc_isp_info *cam);
646 /* -----------------------------------------------------*/
647 /* fimc-core.c */
648 int fimc_vidioc_enum_fmt_mplane(struct file *file, void *priv,
649 struct v4l2_fmtdesc *f);
650 int fimc_try_fmt_mplane(struct fimc_ctx *ctx, struct v4l2_format *f);
651 int fimc_try_crop(struct fimc_ctx *ctx, struct v4l2_crop *cr);
652 int fimc_ctrls_create(struct fimc_ctx *ctx);
653 void fimc_ctrls_delete(struct fimc_ctx *ctx);
654 void fimc_ctrls_activate(struct fimc_ctx *ctx, bool active);
655 int fimc_fill_format(struct fimc_frame *frame, struct v4l2_format *f);
657 struct fimc_fmt *find_format(struct v4l2_format *f, unsigned int mask);
658 struct fimc_fmt *find_mbus_format(struct v4l2_mbus_framefmt *f,
659 unsigned int mask);
661 int fimc_check_scaler_ratio(int sw, int sh, int dw, int dh, int rot);
662 int fimc_set_scaler_info(struct fimc_ctx *ctx);
663 int fimc_prepare_config(struct fimc_ctx *ctx, u32 flags);
664 int fimc_prepare_addr(struct fimc_ctx *ctx, struct vb2_buffer *vb,
665 struct fimc_frame *frame, struct fimc_addr *paddr);
666 int fimc_register_m2m_device(struct fimc_dev *fimc,
667 struct v4l2_device *v4l2_dev);
668 void fimc_unregister_m2m_device(struct fimc_dev *fimc);
669 int fimc_register_driver(void);
670 void fimc_unregister_driver(void);
672 /* -----------------------------------------------------*/
673 /* fimc-capture.c */
674 int fimc_register_capture_device(struct fimc_dev *fimc,
675 struct v4l2_device *v4l2_dev);
676 void fimc_unregister_capture_device(struct fimc_dev *fimc);
677 int fimc_capture_ctrls_create(struct fimc_dev *fimc);
678 int fimc_vid_cap_buf_queue(struct fimc_dev *fimc,
679 struct fimc_vid_buffer *fimc_vb);
680 int fimc_capture_suspend(struct fimc_dev *fimc);
681 int fimc_capture_resume(struct fimc_dev *fimc);
683 /* Locking: the caller holds fimc->slock */
684 static inline void fimc_activate_capture(struct fimc_ctx *ctx)
686 fimc_hw_enable_scaler(ctx->fimc_dev, ctx->scaler.enabled);
687 fimc_hw_en_capture(ctx);
690 static inline void fimc_deactivate_capture(struct fimc_dev *fimc)
692 fimc_hw_en_lastirq(fimc, true);
693 fimc_hw_dis_capture(fimc);
694 fimc_hw_enable_scaler(fimc, false);
695 fimc_hw_en_lastirq(fimc, false);
699 * Add buf to the capture active buffers queue.
700 * Locking: Need to be called with fimc_dev::slock held.
702 static inline void active_queue_add(struct fimc_vid_cap *vid_cap,
703 struct fimc_vid_buffer *buf)
705 list_add_tail(&buf->list, &vid_cap->active_buf_q);
706 vid_cap->active_buf_cnt++;
710 * Pop a video buffer from the capture active buffers queue
711 * Locking: Need to be called with fimc_dev::slock held.
713 static inline struct fimc_vid_buffer *
714 active_queue_pop(struct fimc_vid_cap *vid_cap)
716 struct fimc_vid_buffer *buf;
717 buf = list_entry(vid_cap->active_buf_q.next,
718 struct fimc_vid_buffer, list);
719 list_del(&buf->list);
720 vid_cap->active_buf_cnt--;
721 return buf;
724 /* Add video buffer to the capture pending buffers queue */
725 static inline void fimc_pending_queue_add(struct fimc_vid_cap *vid_cap,
726 struct fimc_vid_buffer *buf)
728 list_add_tail(&buf->list, &vid_cap->pending_buf_q);
731 /* Add video buffer to the capture pending buffers queue */
732 static inline struct fimc_vid_buffer *
733 pending_queue_pop(struct fimc_vid_cap *vid_cap)
735 struct fimc_vid_buffer *buf;
736 buf = list_entry(vid_cap->pending_buf_q.next,
737 struct fimc_vid_buffer, list);
738 list_del(&buf->list);
739 return buf;
742 #endif /* FIMC_CORE_H_ */