1 /* linux/drivers/media/platform/s5p-jpeg/jpeg-core.h
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Author: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
16 #include <linux/interrupt.h>
17 #include <media/v4l2-device.h>
18 #include <media/v4l2-fh.h>
19 #include <media/v4l2-ctrls.h>
21 #define S5P_JPEG_M2M_NAME "s5p-jpeg"
23 /* JPEG compression quality setting */
24 #define S5P_JPEG_COMPR_QUAL_BEST 0
25 #define S5P_JPEG_COMPR_QUAL_WORST 3
27 /* JPEG RGB to YCbCr conversion matrix coefficients */
28 #define S5P_JPEG_COEF11 0x4d
29 #define S5P_JPEG_COEF12 0x97
30 #define S5P_JPEG_COEF13 0x1e
31 #define S5P_JPEG_COEF21 0x2c
32 #define S5P_JPEG_COEF22 0x57
33 #define S5P_JPEG_COEF23 0x83
34 #define S5P_JPEG_COEF31 0x83
35 #define S5P_JPEG_COEF32 0x6e
36 #define S5P_JPEG_COEF33 0x13
38 /* a selection of JPEG markers */
46 /* Flags that indicate a format can be used for capture/output */
47 #define SJPEG_FMT_FLAG_ENC_CAPTURE (1 << 0)
48 #define SJPEG_FMT_FLAG_ENC_OUTPUT (1 << 1)
49 #define SJPEG_FMT_FLAG_DEC_CAPTURE (1 << 2)
50 #define SJPEG_FMT_FLAG_DEC_OUTPUT (1 << 3)
51 #define SJPEG_FMT_FLAG_S5P (1 << 4)
52 #define SJPEG_FMT_FLAG_EXYNOS4 (1 << 5)
53 #define SJPEG_FMT_RGB (1 << 6)
54 #define SJPEG_FMT_NON_RGB (1 << 7)
56 #define S5P_JPEG_ENCODE 0
57 #define S5P_JPEG_DECODE 1
59 #define FMT_TYPE_OUTPUT 0
60 #define FMT_TYPE_CAPTURE 1
62 #define SJPEG_SUBSAMPLING_444 0x11
63 #define SJPEG_SUBSAMPLING_422 0x21
64 #define SJPEG_SUBSAMPLING_420 0x22
69 #define SJPEG_EXYNOS4 2
71 enum exynos4_jpeg_result
{
74 ERR_DEC_INVALID_FORMAT
,
80 enum exynos4_jpeg_img_quality_level
{
81 QUALITY_LEVEL_1
= 0, /* high */
84 QUALITY_LEVEL_4
, /* low */
88 * struct s5p_jpeg - JPEG IP abstraction
89 * @lock: the mutex protecting this structure
90 * @slock: spinlock protecting the device contexts
91 * @v4l2_dev: v4l2 device for mem2mem mode
92 * @vfd_encoder: video device node for encoder mem2mem mode
93 * @vfd_decoder: video device node for decoder mem2mem mode
94 * @m2m_dev: v4l2 mem2mem device data
95 * @regs: JPEG IP registers mapping
98 * @dev: JPEG IP struct device
99 * @alloc_ctx: videobuf2 memory allocator's context
105 struct v4l2_device v4l2_dev
;
106 struct video_device
*vfd_encoder
;
107 struct video_device
*vfd_decoder
;
108 struct v4l2_m2m_dev
*m2m_dev
;
112 enum exynos4_jpeg_result irq_ret
;
116 struct s5p_jpeg_variant
*variant
;
119 struct s5p_jpeg_variant
{
120 unsigned int version
;
121 irqreturn_t (*jpeg_irq
)(int irq
, void *priv
);
125 * struct jpeg_fmt - driver's internal color format data
126 * @name: format descritpion
127 * @fourcc: the fourcc code, 0 if not applicable
128 * @depth: number of bits per pixel
129 * @colplanes: number of color planes (1 for packed formats)
130 * @h_align: horizontal alignment order (align to 2^h_align)
131 * @v_align: vertical alignment order (align to 2^v_align)
132 * @flags: flags describing format applicability
134 struct s5p_jpeg_fmt
{
147 * s5p_jpeg_q_data - parameters of one queue
148 * @fmt: driver-specific format of this queue
151 * @size: image buffer size in bytes
153 struct s5p_jpeg_q_data
{
154 struct s5p_jpeg_fmt
*fmt
;
161 * s5p_jpeg_ctx - the device context data
162 * @jpeg: JPEG IP device for this context
163 * @mode: compression (encode) operation or decompression (decode)
164 * @compr_quality: destination image quality in compression (encode) mode
165 * @out_q: source (output) queue information
166 * @cap_fmt: destination (capture) queue queue information
167 * @hdr_parsed: set if header has been parsed during decompression
168 * @ctrl_handler: controls handler
170 struct s5p_jpeg_ctx
{
171 struct s5p_jpeg
*jpeg
;
173 unsigned short compr_quality
;
174 unsigned short restart_interval
;
175 unsigned short subsampling
;
176 struct s5p_jpeg_q_data out_q
;
177 struct s5p_jpeg_q_data cap_q
;
180 struct v4l2_ctrl_handler ctrl_handler
;
184 * s5p_jpeg_buffer - description of memory containing input JPEG data
186 * @curr: current position in the buffer
187 * @data: pointer to the data
189 struct s5p_jpeg_buffer
{
196 * struct s5p_jpeg_addr - JPEG converter physical address set for DMA
197 * @y: luminance plane physical address
198 * @cb: Cb plane physical address
199 * @cr: Cr plane physical address
201 struct s5p_jpeg_addr
{
207 #endif /* JPEG_CORE_H */