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