[media] s5p-fimc: Convert to the new control framework
[deliverable/linux.git] / drivers / media / video / s5p-fimc / fimc-core.h
CommitLineData
5fd8f738 1/*
3a3f9449 2 * Copyright (C) 2010 - 2011 Samsung Electronics Co., Ltd.
5fd8f738
SN
3 *
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 */
8
9#ifndef FIMC_CORE_H_
10#define FIMC_CORE_H_
11
5f3cc447
SN
12/*#define DEBUG*/
13
2319c539 14#include <linux/platform_device.h>
aee7126c 15#include <linux/sched.h>
4ecbf5d1 16#include <linux/spinlock.h>
5fd8f738 17#include <linux/types.h>
aee7126c 18#include <linux/videodev2.h>
2dab38e2 19#include <linux/io.h>
574e1717
SN
20
21#include <media/media-entity.h>
2dab38e2 22#include <media/videobuf2-core.h>
131b6c61 23#include <media/v4l2-ctrls.h>
5fd8f738
SN
24#include <media/v4l2-device.h>
25#include <media/v4l2-mem2mem.h>
5f3cc447 26#include <media/v4l2-mediabus.h>
df7e09a3 27#include <media/s5p_fimc.h>
aee7126c 28
5fd8f738
SN
29#include "regs-fimc.h"
30
31#define err(fmt, args...) \
32 printk(KERN_ERR "%s:%d: " fmt "\n", __func__, __LINE__, ##args)
33
5fd8f738 34#define dbg(fmt, args...) \
1e004695 35 pr_debug("%s:%d: " fmt "\n", __func__, __LINE__, ##args)
5fd8f738 36
5f3cc447
SN
37/* Time to wait for next frame VSYNC interrupt while stopping operation. */
38#define FIMC_SHUTDOWN_TIMEOUT ((100*HZ)/1000)
ebdfea81 39#define MAX_FIMC_CLOCKS 2
d3953223 40#define FIMC_MODULE_NAME "s5p-fimc"
a7d5bbcf 41#define FIMC_MAX_DEVS 4
5fd8f738
SN
42#define FIMC_MAX_OUT_BUFS 4
43#define SCALER_MAX_HRATIO 64
44#define SCALER_MAX_VRATIO 64
548aafcd 45#define DMA_MIN_SIZE 8
5fd8f738 46
a25be18d
SN
47/* indices to the clocks array */
48enum {
49 CLK_BUS,
50 CLK_GATE,
a25be18d
SN
51};
52
5f3cc447 53enum fimc_dev_flags {
e9e21083
SN
54 ST_LPM,
55 /* m2m node */
56 ST_M2M_RUN,
5fd8f738 57 ST_M2M_PEND,
e9e21083
SN
58 ST_M2M_SUSPENDING,
59 ST_M2M_SUSPENDED,
60 /* capture node */
5f3cc447
SN
61 ST_CAPT_PEND,
62 ST_CAPT_RUN,
63 ST_CAPT_STREAM,
64 ST_CAPT_SHUT,
e9e21083 65 ST_CAPT_BUSY,
131b6c61 66 ST_CAPT_APPLY_CFG,
5fd8f738
SN
67};
68
e9e21083 69#define fimc_m2m_active(dev) test_bit(ST_M2M_RUN, &(dev)->state)
5fd8f738
SN
70#define fimc_m2m_pending(dev) test_bit(ST_M2M_PEND, &(dev)->state)
71
5f3cc447
SN
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)
e9e21083 74#define fimc_capture_busy(dev) test_bit(ST_CAPT_BUSY, &(dev)->state)
5f3cc447 75
5fd8f738 76enum fimc_datapath {
5f3cc447 77 FIMC_CAMERA,
5fd8f738
SN
78 FIMC_DMA,
79 FIMC_LCDFIFO,
80 FIMC_WRITEBACK
81};
82
83enum fimc_color_fmt {
548aafcd 84 S5P_FIMC_RGB565 = 0x10,
5fd8f738
SN
85 S5P_FIMC_RGB666,
86 S5P_FIMC_RGB888,
548aafcd
SN
87 S5P_FIMC_RGB30_LOCAL,
88 S5P_FIMC_YCBCR420 = 0x20,
5fd8f738
SN
89 S5P_FIMC_YCBYCR422,
90 S5P_FIMC_YCRYCB422,
91 S5P_FIMC_CBYCRY422,
92 S5P_FIMC_CRYCBY422,
5fd8f738 93 S5P_FIMC_YCBCR444_LOCAL,
5fd8f738
SN
94};
95
548aafcd
SN
96#define fimc_fmt_is_rgb(x) ((x) & 0x10)
97
5fd8f738
SN
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
100
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
108
109/* The hardware context state. */
548aafcd
SN
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)
4ecbf5d1 117#define FIMC_CTX_SHUT (1 << 7)
5fd8f738
SN
118
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)
548aafcd
SN
126/*
127 * YCbCr data dynamic range for RGB-YUV color conversion.
128 * Y/Cb/Cr: (0 ~ 255) */
5fd8f738
SN
129#define FIMC_COLOR_RANGE_WIDE (0 << 3)
130/* Y (16 ~ 235), Cb/Cr (16 ~ 240) */
131#define FIMC_COLOR_RANGE_NARROW (1 << 3)
132
5fd8f738
SN
133/**
134 * struct fimc_fmt - the driver's internal color format data
5f3cc447 135 * @mbus_code: Media Bus pixel code, -1 if not applicable
5fd8f738 136 * @name: format description
5f3cc447 137 * @fourcc: the fourcc code for this format, 0 if not applicable
5fd8f738 138 * @color: the corresponding fimc_color_fmt
ef7af59b
SN
139 * @memplanes: number of physically non-contiguous data planes
140 * @colplanes: number of physically contiguous data planes
3495dcef
SN
141 * @depth: per plane driver's private 'number of bits per pixel'
142 * @flags: flags indicating which operation mode format applies to
5fd8f738
SN
143 */
144struct fimc_fmt {
5f3cc447 145 enum v4l2_mbus_pixelcode mbus_code;
5fd8f738
SN
146 char *name;
147 u32 fourcc;
148 u32 color;
ef7af59b
SN
149 u16 memplanes;
150 u16 colplanes;
151 u8 depth[VIDEO_MAX_PLANES];
5f3cc447
SN
152 u16 flags;
153#define FMT_FLAGS_CAM (1 << 0)
154#define FMT_FLAGS_M2M (1 << 1)
5fd8f738
SN
155};
156
157/**
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
165 */
166struct 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;
173};
174
175/**
3495dcef 176 * struct fimc_effect - color effect information
5fd8f738
SN
177 * @type: effect type
178 * @pat_cb: cr value when type is "arbitrary"
179 * @pat_cr: cr value when type is "arbitrary"
180 */
181struct fimc_effect {
182 u32 type;
183 u8 pat_cb;
184 u8 pat_cr;
185};
186
187/**
188 * struct fimc_scaler - the configuration data for FIMC inetrnal scaler
548aafcd
SN
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
5fd8f738
SN
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
5fd8f738
SN
200 * @main_hratio: the main scaler's horizontal ratio
201 * @main_vratio: the main scaler's vertical ratio
548aafcd
SN
202 * @real_width: source pixel (width - offset)
203 * @real_height: source pixel (height - offset)
5fd8f738
SN
204 */
205struct fimc_scaler {
dda7ae78
SN
206 unsigned int scaleup_h:1;
207 unsigned int scaleup_v:1;
208 unsigned int copy_mode:1;
209 unsigned int enabled:1;
5fd8f738
SN
210 u32 hfactor;
211 u32 vfactor;
212 u32 pre_hratio;
213 u32 pre_vratio;
214 u32 pre_dst_width;
215 u32 pre_dst_height;
5fd8f738
SN
216 u32 main_hratio;
217 u32 main_vratio;
218 u32 real_width;
219 u32 real_height;
5fd8f738
SN
220};
221
222/**
223 * struct fimc_addr - the FIMC physical address set for DMA
5fd8f738
SN
224 * @y: luminance plane physical address
225 * @cb: Cb plane physical address
226 * @cr: Cr plane physical address
227 */
228struct fimc_addr {
229 u32 y;
230 u32 cb;
231 u32 cr;
232};
233
234/**
235 * struct fimc_vid_buffer - the driver's video buffer
5f3cc447 236 * @vb: v4l videobuf buffer
3495dcef 237 * @list: linked list structure for buffer queue
5f3cc447
SN
238 * @paddr: precalculated physical address set
239 * @index: buffer index for the output DMA engine
5fd8f738
SN
240 */
241struct fimc_vid_buffer {
2dab38e2
SN
242 struct vb2_buffer vb;
243 struct list_head list;
5f3cc447
SN
244 struct fimc_addr paddr;
245 int index;
5fd8f738
SN
246};
247
248/**
548aafcd 249 * struct fimc_frame - source/target frame properties
5fd8f738
SN
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
ef7af59b 258 * @payload: image size in bytes (w x h x bpp)
3495dcef 259 * @paddr: image frame buffer physical addresses
5fd8f738 260 * @dma_offset: DMA offset in bytes
3495dcef 261 * @fmt: fimc color format pointer
5fd8f738
SN
262 */
263struct 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;
ef7af59b 272 unsigned long payload[VIDEO_MAX_PLANES];
5fd8f738
SN
273 struct fimc_addr paddr;
274 struct fimc_dma_offset dma_offset;
275 struct fimc_fmt *fmt;
276};
277
278/**
279 * struct fimc_m2m_device - v4l2 memory-to-memory device data
280 * @vfd: the video device node for v4l2 m2m mode
5fd8f738
SN
281 * @m2m_dev: v4l2 memory-to-memory device data
282 * @ctx: hardware context data
283 * @refcnt: the reference counter
284 */
285struct fimc_m2m_device {
286 struct video_device *vfd;
5fd8f738
SN
287 struct v4l2_m2m_dev *m2m_dev;
288 struct fimc_ctx *ctx;
289 int refcnt;
290};
291
5f3cc447
SN
292/**
293 * struct fimc_vid_cap - camera capture device information
294 * @ctx: hardware context data
295 * @vfd: video device node for camera capture mode
5f3cc447 296 * @sd: pointer to camera sensor subdevice currently in use
574e1717 297 * @vd_pad: fimc video capture node pad
5f3cc447
SN
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
d3953223 308 * @user_subdev_api: true if subdevs are not configured by the host driver
5f3cc447
SN
309 */
310struct fimc_vid_cap {
311 struct fimc_ctx *ctx;
2dab38e2 312 struct vb2_alloc_ctx *alloc_ctx;
5f3cc447 313 struct video_device *vfd;
2dab38e2 314 struct v4l2_subdev *sd;;
574e1717 315 struct media_pad vd_pad;
5f3cc447
SN
316 struct v4l2_mbus_framefmt fmt;
317 struct list_head pending_buf_q;
318 struct list_head active_buf_q;
2dab38e2 319 struct vb2_queue vbq;
5f3cc447
SN
320 int active_buf_cnt;
321 int buf_index;
322 unsigned int frame_count;
323 unsigned int reqbufs_count;
324 int input_index;
325 int refcnt;
d3953223 326 bool user_subdev_api;
5f3cc447
SN
327};
328
a7d5bbcf
SN
329/**
330 * struct fimc_pix_limit - image pixel size limits in various IP configurations
331 *
332 * @scaler_en_w: max input pixel width when the scaler is enabled
333 * @scaler_dis_w: max input pixel width when the scaler is disabled
334 * @in_rot_en_h: max input width with the input rotator is on
335 * @in_rot_dis_w: max input width with the input rotator is off
336 * @out_rot_en_w: max output width with the output rotator on
337 * @out_rot_dis_w: max output width with the output rotator off
338 */
339struct fimc_pix_limit {
340 u16 scaler_en_w;
341 u16 scaler_dis_w;
342 u16 in_rot_en_h;
343 u16 in_rot_dis_w;
344 u16 out_rot_en_w;
345 u16 out_rot_dis_w;
346};
347
5fd8f738
SN
348/**
349 * struct samsung_fimc_variant - camera interface variant information
350 *
351 * @pix_hoff: indicate whether horizontal offset is in pixels or in bytes
352 * @has_inp_rot: set if has input rotator
353 * @has_out_rot: set if has output rotator
798174ab 354 * @has_cistatus2: 1 if CISTATUS2 register is present in this IP revision
b241c6d6
HK
355 * @has_mainscaler_ext: 1 if extended mainscaler ratios in CIEXTEN register
356 * are present in this IP revision
d3953223 357 * @has_cam_if: set if this instance has a camera input interface
a7d5bbcf 358 * @pix_limit: pixel size constraints for the scaler
5fd8f738
SN
359 * @min_inp_pixsize: minimum input pixel size
360 * @min_out_pixsize: minimum output pixel size
a7d5bbcf
SN
361 * @hor_offs_align: horizontal pixel offset aligment
362 * @out_buf_count: the number of buffers in output DMA sequence
5fd8f738
SN
363 */
364struct samsung_fimc_variant {
365 unsigned int pix_hoff:1;
366 unsigned int has_inp_rot:1;
367 unsigned int has_out_rot:1;
798174ab 368 unsigned int has_cistatus2:1;
b241c6d6 369 unsigned int has_mainscaler_ext:1;
d3953223 370 unsigned int has_cam_if:1;
a7d5bbcf 371 struct fimc_pix_limit *pix_limit;
5fd8f738
SN
372 u16 min_inp_pixsize;
373 u16 min_out_pixsize;
a7d5bbcf
SN
374 u16 hor_offs_align;
375 u16 out_buf_count;
5fd8f738
SN
376};
377
378/**
548aafcd 379 * struct samsung_fimc_driverdata - per device type driver data for init time.
5fd8f738
SN
380 *
381 * @variant: the variant information for this driver.
382 * @dev_cnt: number of fimc sub-devices available in SoC
5f3cc447 383 * @lclk_frequency: fimc bus clock frequency
5fd8f738
SN
384 */
385struct samsung_fimc_driverdata {
386 struct samsung_fimc_variant *variant[FIMC_MAX_DEVS];
5f3cc447 387 unsigned long lclk_frequency;
a7d5bbcf 388 int num_entities;
5fd8f738
SN
389};
390
d3953223
SN
391struct fimc_pipeline {
392 struct media_pipeline *pipe;
393 struct v4l2_subdev *sensor;
394 struct v4l2_subdev *csis;
395};
396
5fd8f738
SN
397struct fimc_ctx;
398
399/**
548aafcd 400 * struct fimc_dev - abstraction for FIMC entity
5fd8f738
SN
401 * @slock: the spinlock protecting this data structure
402 * @lock: the mutex protecting this data structure
403 * @pdev: pointer to the FIMC platform device
5f3cc447 404 * @pdata: pointer to the device platform data
3495dcef 405 * @variant: the IP variant information
a25be18d
SN
406 * @id: FIMC device index (0..FIMC_MAX_DEVS)
407 * @num_clocks: the number of clocks managed by this device instance
3495dcef 408 * @clock: clocks required for FIMC operation
5fd8f738
SN
409 * @regs: the mapped hardware registers
410 * @regs_res: the resource claimed for IO registers
3495dcef
SN
411 * @irq: FIMC interrupt number
412 * @irq_queue: interrupt handler waitqueue
30c9939d 413 * @v4l2_dev: root v4l2_device
5fd8f738 414 * @m2m: memory-to-memory V4L2 device information
5f3cc447
SN
415 * @vid_cap: camera capture device information
416 * @state: flags used to synchronize m2m and capture mode operation
3495dcef 417 * @alloc_ctx: videobuf2 memory allocator context
d3953223 418 * @pipeline: fimc video capture pipeline data structure
5fd8f738
SN
419 */
420struct fimc_dev {
421 spinlock_t slock;
422 struct mutex lock;
423 struct platform_device *pdev;
df7e09a3 424 struct s5p_platform_fimc *pdata;
5fd8f738 425 struct samsung_fimc_variant *variant;
a25be18d
SN
426 u16 id;
427 u16 num_clocks;
428 struct clk *clock[MAX_FIMC_CLOCKS];
5fd8f738
SN
429 void __iomem *regs;
430 struct resource *regs_res;
431 int irq;
5f3cc447 432 wait_queue_head_t irq_queue;
30c9939d 433 struct v4l2_device *v4l2_dev;
5fd8f738 434 struct fimc_m2m_device m2m;
5f3cc447 435 struct fimc_vid_cap vid_cap;
5fd8f738 436 unsigned long state;
2dab38e2 437 struct vb2_alloc_ctx *alloc_ctx;
d3953223 438 struct fimc_pipeline pipeline;
5fd8f738
SN
439};
440
441/**
442 * fimc_ctx - the device context data
3495dcef 443 * @slock: spinlock protecting this data structure
5fd8f738
SN
444 * @s_frame: source frame properties
445 * @d_frame: destination frame properties
446 * @out_order_1p: output 1-plane YCBCR order
447 * @out_order_2p: output 2-plane YCBCR order
448 * @in_order_1p input 1-plane YCBCR order
449 * @in_order_2p: input 2-plane YCBCR order
450 * @in_path: input mode (DMA or camera)
451 * @out_path: output mode (DMA or FIFO)
452 * @scaler: image scaler properties
453 * @effect: image effect
454 * @rotation: image clockwise rotation in degrees
131b6c61
SN
455 * @hflip: indicates image horizontal flip if set
456 * @vflip: indicates image vertical flip if set
548aafcd 457 * @flags: additional flags for image conversion
5fd8f738
SN
458 * @state: flags to keep track of user configuration
459 * @fimc_dev: the FIMC device this context applies to
460 * @m2m_ctx: memory-to-memory device context
e578588e 461 * @fh: v4l2 file handle
131b6c61
SN
462 * @ctrl_handler: v4l2 controls handler
463 * @ctrl_rotate image rotation control
464 * @ctrl_hflip horizontal flip control
465 * @ctrl_vflip vartical flip control
466 * @ctrls_rdy: true if the control handler is initialized
5fd8f738
SN
467 */
468struct fimc_ctx {
469 spinlock_t slock;
470 struct fimc_frame s_frame;
471 struct fimc_frame d_frame;
472 u32 out_order_1p;
473 u32 out_order_2p;
474 u32 in_order_1p;
475 u32 in_order_2p;
476 enum fimc_datapath in_path;
477 enum fimc_datapath out_path;
478 struct fimc_scaler scaler;
479 struct fimc_effect effect;
480 int rotation;
131b6c61
SN
481 unsigned int hflip:1;
482 unsigned int vflip:1;
5fd8f738
SN
483 u32 flags;
484 u32 state;
485 struct fimc_dev *fimc_dev;
486 struct v4l2_m2m_ctx *m2m_ctx;
e578588e 487 struct v4l2_fh fh;
131b6c61
SN
488 struct v4l2_ctrl_handler ctrl_handler;
489 struct v4l2_ctrl *ctrl_rotate;
490 struct v4l2_ctrl *ctrl_hflip;
491 struct v4l2_ctrl *ctrl_vflip;
492 bool ctrls_rdy;
5fd8f738
SN
493};
494
e578588e
SN
495#define fh_to_ctx(__fh) container_of(__fh, struct fimc_ctx, fh)
496
4ecbf5d1
SN
497static inline bool fimc_capture_active(struct fimc_dev *fimc)
498{
499 unsigned long flags;
500 bool ret;
501
502 spin_lock_irqsave(&fimc->slock, flags);
503 ret = !!(fimc->state & (1 << ST_CAPT_RUN) ||
504 fimc->state & (1 << ST_CAPT_PEND));
505 spin_unlock_irqrestore(&fimc->slock, flags);
506 return ret;
507}
508
509static inline void fimc_ctx_state_lock_set(u32 state, struct fimc_ctx *ctx)
510{
511 unsigned long flags;
512
513 spin_lock_irqsave(&ctx->slock, flags);
514 ctx->state |= state;
515 spin_unlock_irqrestore(&ctx->slock, flags);
516}
517
518static inline bool fimc_ctx_state_is_set(u32 mask, struct fimc_ctx *ctx)
519{
520 unsigned long flags;
521 bool ret;
522
523 spin_lock_irqsave(&ctx->slock, flags);
524 ret = (ctx->state & mask) == mask;
525 spin_unlock_irqrestore(&ctx->slock, flags);
526 return ret;
527}
528
5fd8f738
SN
529static inline int tiled_fmt(struct fimc_fmt *fmt)
530{
ef7af59b 531 return fmt->fourcc == V4L2_PIX_FMT_NV12MT;
5fd8f738
SN
532}
533
534static inline void fimc_hw_clear_irq(struct fimc_dev *dev)
535{
536 u32 cfg = readl(dev->regs + S5P_CIGCTRL);
537 cfg |= S5P_CIGCTRL_IRQ_CLR;
538 writel(cfg, dev->regs + S5P_CIGCTRL);
539}
540
548aafcd 541static inline void fimc_hw_enable_scaler(struct fimc_dev *dev, bool on)
5fd8f738
SN
542{
543 u32 cfg = readl(dev->regs + S5P_CISCCTRL);
548aafcd
SN
544 if (on)
545 cfg |= S5P_CISCCTRL_SCALERSTART;
546 else
547 cfg &= ~S5P_CISCCTRL_SCALERSTART;
5fd8f738
SN
548 writel(cfg, dev->regs + S5P_CISCCTRL);
549}
550
548aafcd 551static inline void fimc_hw_activate_input_dma(struct fimc_dev *dev, bool on)
5fd8f738 552{
548aafcd
SN
553 u32 cfg = readl(dev->regs + S5P_MSCTRL);
554 if (on)
555 cfg |= S5P_MSCTRL_ENVID;
556 else
557 cfg &= ~S5P_MSCTRL_ENVID;
558 writel(cfg, dev->regs + S5P_MSCTRL);
5fd8f738
SN
559}
560
561static inline void fimc_hw_dis_capture(struct fimc_dev *dev)
562{
563 u32 cfg = readl(dev->regs + S5P_CIIMGCPT);
564 cfg &= ~(S5P_CIIMGCPT_IMGCPTEN | S5P_CIIMGCPT_IMGCPTEN_SC);
565 writel(cfg, dev->regs + S5P_CIIMGCPT);
566}
567
a7d5bbcf
SN
568/**
569 * fimc_hw_set_dma_seq - configure output DMA buffer sequence
570 * @mask: each bit corresponds to one of 32 output buffer registers set
571 * 1 to include buffer in the sequence, 0 to disable
572 *
573 * This function mask output DMA ring buffers, i.e. it allows to configure
574 * which of the output buffer address registers will be used by the DMA
575 * engine.
576 */
577static inline void fimc_hw_set_dma_seq(struct fimc_dev *dev, u32 mask)
578{
579 writel(mask, dev->regs + S5P_CIFCNTSEQ);
580}
581
548aafcd
SN
582static inline struct fimc_frame *ctx_get_frame(struct fimc_ctx *ctx,
583 enum v4l2_buf_type type)
03e30ca5
PO
584{
585 struct fimc_frame *frame;
586
ef7af59b 587 if (V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE == type) {
4ecbf5d1 588 if (fimc_ctx_state_is_set(FIMC_CTX_M2M, ctx))
5f3cc447
SN
589 frame = &ctx->s_frame;
590 else
591 return ERR_PTR(-EINVAL);
ef7af59b 592 } else if (V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE == type) {
03e30ca5
PO
593 frame = &ctx->d_frame;
594 } else {
30c9939d 595 v4l2_err(ctx->fimc_dev->v4l2_dev,
03e30ca5
PO
596 "Wrong buffer/video queue type (%d)\n", type);
597 return ERR_PTR(-EINVAL);
598 }
599
600 return frame;
601}
602
798174ab 603/* Return an index to the buffer actually being written. */
5f3cc447
SN
604static inline u32 fimc_hw_get_frame_index(struct fimc_dev *dev)
605{
798174ab
SN
606 u32 reg;
607
608 if (dev->variant->has_cistatus2) {
609 reg = readl(dev->regs + S5P_CISTATUS2) & 0x3F;
610 return reg > 0 ? --reg : reg;
611 } else {
612 reg = readl(dev->regs + S5P_CISTATUS);
613 return (reg & S5P_CISTATUS_FRAMECNT_MASK) >>
614 S5P_CISTATUS_FRAMECNT_SHIFT;
615 }
5f3cc447
SN
616}
617
5fd8f738
SN
618/* -----------------------------------------------------*/
619/* fimc-reg.c */
548aafcd 620void fimc_hw_reset(struct fimc_dev *fimc);
5fd8f738
SN
621void fimc_hw_set_rotation(struct fimc_ctx *ctx);
622void fimc_hw_set_target_format(struct fimc_ctx *ctx);
623void fimc_hw_set_out_dma(struct fimc_ctx *ctx);
548aafcd
SN
624void fimc_hw_en_lastirq(struct fimc_dev *fimc, int enable);
625void fimc_hw_en_irq(struct fimc_dev *fimc, int enable);
b241c6d6
HK
626void fimc_hw_set_prescaler(struct fimc_ctx *ctx);
627void fimc_hw_set_mainscaler(struct fimc_ctx *ctx);
5fd8f738
SN
628void fimc_hw_en_capture(struct fimc_ctx *ctx);
629void fimc_hw_set_effect(struct fimc_ctx *ctx);
630void fimc_hw_set_in_dma(struct fimc_ctx *ctx);
631void fimc_hw_set_input_path(struct fimc_ctx *ctx);
632void fimc_hw_set_output_path(struct fimc_ctx *ctx);
548aafcd
SN
633void fimc_hw_set_input_addr(struct fimc_dev *fimc, struct fimc_addr *paddr);
634void fimc_hw_set_output_addr(struct fimc_dev *fimc, struct fimc_addr *paddr,
ef7af59b 635 int index);
5f3cc447 636int fimc_hw_set_camera_source(struct fimc_dev *fimc,
df7e09a3 637 struct s5p_fimc_isp_info *cam);
5f3cc447
SN
638int fimc_hw_set_camera_offset(struct fimc_dev *fimc, struct fimc_frame *f);
639int fimc_hw_set_camera_polarity(struct fimc_dev *fimc,
df7e09a3 640 struct s5p_fimc_isp_info *cam);
5f3cc447 641int fimc_hw_set_camera_type(struct fimc_dev *fimc,
df7e09a3 642 struct s5p_fimc_isp_info *cam);
5f3cc447
SN
643
644/* -----------------------------------------------------*/
645/* fimc-core.c */
ef7af59b
SN
646int fimc_vidioc_enum_fmt_mplane(struct file *file, void *priv,
647 struct v4l2_fmtdesc *f);
e578588e 648int fimc_try_fmt_mplane(struct fimc_ctx *ctx, struct v4l2_format *f);
5f3cc447 649int fimc_try_crop(struct fimc_ctx *ctx, struct v4l2_crop *cr);
131b6c61
SN
650int fimc_ctrls_create(struct fimc_ctx *ctx);
651void fimc_ctrls_delete(struct fimc_ctx *ctx);
652void fimc_ctrls_activate(struct fimc_ctx *ctx, bool active);
e578588e 653int fimc_fill_format(struct fimc_frame *frame, struct v4l2_format *f);
5f3cc447
SN
654
655struct fimc_fmt *find_format(struct v4l2_format *f, unsigned int mask);
656struct fimc_fmt *find_mbus_format(struct v4l2_mbus_framefmt *f,
657 unsigned int mask);
658
1b09f292 659int fimc_check_scaler_ratio(int sw, int sh, int dw, int dh, int rot);
5f3cc447
SN
660int fimc_set_scaler_info(struct fimc_ctx *ctx);
661int fimc_prepare_config(struct fimc_ctx *ctx, u32 flags);
2dab38e2 662int fimc_prepare_addr(struct fimc_ctx *ctx, struct vb2_buffer *vb,
5f3cc447 663 struct fimc_frame *frame, struct fimc_addr *paddr);
30c9939d
SN
664int fimc_register_m2m_device(struct fimc_dev *fimc,
665 struct v4l2_device *v4l2_dev);
666void fimc_unregister_m2m_device(struct fimc_dev *fimc);
d3953223
SN
667int fimc_register_driver(void);
668void fimc_unregister_driver(void);
5f3cc447
SN
669
670/* -----------------------------------------------------*/
671/* fimc-capture.c */
30c9939d
SN
672int fimc_register_capture_device(struct fimc_dev *fimc,
673 struct v4l2_device *v4l2_dev);
5f3cc447 674void fimc_unregister_capture_device(struct fimc_dev *fimc);
131b6c61 675int fimc_capture_ctrls_create(struct fimc_dev *fimc);
5f3cc447
SN
676int fimc_vid_cap_buf_queue(struct fimc_dev *fimc,
677 struct fimc_vid_buffer *fimc_vb);
e9e21083
SN
678int fimc_capture_suspend(struct fimc_dev *fimc);
679int fimc_capture_resume(struct fimc_dev *fimc);
548aafcd
SN
680
681/* Locking: the caller holds fimc->slock */
682static inline void fimc_activate_capture(struct fimc_ctx *ctx)
683{
684 fimc_hw_enable_scaler(ctx->fimc_dev, ctx->scaler.enabled);
685 fimc_hw_en_capture(ctx);
686}
687
688static inline void fimc_deactivate_capture(struct fimc_dev *fimc)
689{
690 fimc_hw_en_lastirq(fimc, true);
691 fimc_hw_dis_capture(fimc);
692 fimc_hw_enable_scaler(fimc, false);
693 fimc_hw_en_lastirq(fimc, false);
694}
5fd8f738 695
5f3cc447 696/*
2dab38e2
SN
697 * Add buf to the capture active buffers queue.
698 * Locking: Need to be called with fimc_dev::slock held.
5f3cc447
SN
699 */
700static inline void active_queue_add(struct fimc_vid_cap *vid_cap,
2dab38e2 701 struct fimc_vid_buffer *buf)
5f3cc447 702{
2dab38e2 703 list_add_tail(&buf->list, &vid_cap->active_buf_q);
5f3cc447
SN
704 vid_cap->active_buf_cnt++;
705}
706
707/*
708 * Pop a video buffer from the capture active buffers queue
2dab38e2 709 * Locking: Need to be called with fimc_dev::slock held.
5f3cc447
SN
710 */
711static inline struct fimc_vid_buffer *
712active_queue_pop(struct fimc_vid_cap *vid_cap)
713{
714 struct fimc_vid_buffer *buf;
715 buf = list_entry(vid_cap->active_buf_q.next,
2dab38e2
SN
716 struct fimc_vid_buffer, list);
717 list_del(&buf->list);
5f3cc447
SN
718 vid_cap->active_buf_cnt--;
719 return buf;
720}
721
722/* Add video buffer to the capture pending buffers queue */
723static inline void fimc_pending_queue_add(struct fimc_vid_cap *vid_cap,
724 struct fimc_vid_buffer *buf)
725{
2dab38e2 726 list_add_tail(&buf->list, &vid_cap->pending_buf_q);
5f3cc447
SN
727}
728
729/* Add video buffer to the capture pending buffers queue */
730static inline struct fimc_vid_buffer *
731pending_queue_pop(struct fimc_vid_cap *vid_cap)
732{
733 struct fimc_vid_buffer *buf;
734 buf = list_entry(vid_cap->pending_buf_q.next,
2dab38e2
SN
735 struct fimc_vid_buffer, list);
736 list_del(&buf->list);
5f3cc447
SN
737 return buf;
738}
739
5fd8f738 740#endif /* FIMC_CORE_H_ */
This page took 0.148474 seconds and 5 git commands to generate.