blob: fa1f2c1458529d41718ed9f3c4be4ca1aa003058 [file] [log] [blame]
HeungJun, Kimbc125102011-05-20 02:27:28 -03001/*
2 * Header for M-5MOLS 8M Pixel camera sensor with ISP
3 *
4 * Copyright (C) 2011 Samsung Electronics Co., Ltd.
HeungJun, Kimc3070112011-06-07 02:00:58 -03005 * Author: HeungJun Kim <riverful.kim@samsung.com>
HeungJun, Kimbc125102011-05-20 02:27:28 -03006 *
7 * Copyright (C) 2009 Samsung Electronics Co., Ltd.
HeungJun, Kimc3070112011-06-07 02:00:58 -03008 * Author: Dongsoo Nathaniel Kim <dongsoo45.kim@samsung.com>
HeungJun, Kimbc125102011-05-20 02:27:28 -03009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 */
15
16#ifndef M5MOLS_H
17#define M5MOLS_H
18
19#include <media/v4l2-subdev.h>
20#include "m5mols_reg.h"
21
22extern int m5mols_debug;
23
HeungJun, Kimbc125102011-05-20 02:27:28 -030024enum m5mols_restype {
25 M5MOLS_RESTYPE_MONITOR,
26 M5MOLS_RESTYPE_CAPTURE,
27 M5MOLS_RESTYPE_MAX,
28};
29
30/**
31 * struct m5mols_resolution - structure for the resolution
32 * @type: resolution type according to the pixel code
33 * @width: width of the resolution
34 * @height: height of the resolution
35 * @reg: resolution preset register value
36 */
37struct m5mols_resolution {
38 u8 reg;
39 enum m5mols_restype type;
40 u16 width;
41 u16 height;
42};
43
44/**
45 * struct m5mols_exif - structure for the EXIF information of M-5MOLS
46 * @exposure_time: exposure time register value
47 * @shutter_speed: speed of the shutter register value
48 * @aperture: aperture register value
49 * @exposure_bias: it calls also EV bias
50 * @iso_speed: ISO register value
51 * @flash: status register value of the flash
52 * @sdr: status register value of the Subject Distance Range
53 * @qval: not written exact meaning in document
54 */
55struct m5mols_exif {
56 u32 exposure_time;
57 u32 shutter_speed;
58 u32 aperture;
59 u32 brightness;
60 u32 exposure_bias;
61 u16 iso_speed;
62 u16 flash;
63 u16 sdr;
64 u16 qval;
65};
66
67/**
68 * struct m5mols_capture - Structure for the capture capability
69 * @exif: EXIF information
70 * @main: size in bytes of the main image
71 * @thumb: size in bytes of the thumb image, if it was accompanied
72 * @total: total size in bytes of the produced image
73 */
74struct m5mols_capture {
75 struct m5mols_exif exif;
76 u32 main;
77 u32 thumb;
78 u32 total;
79};
80
81/**
82 * struct m5mols_scenemode - structure for the scenemode capability
83 * @metering: metering light register value
84 * @ev_bias: EV bias register value
85 * @wb_mode: mode which means the WhiteBalance is Auto or Manual
86 * @wb_preset: whitebalance preset register value in the Manual mode
87 * @chroma_en: register value whether the Chroma capability is enabled or not
88 * @chroma_lvl: chroma's level register value
89 * @edge_en: register value Whether the Edge capability is enabled or not
90 * @edge_lvl: edge's level register value
91 * @af_range: Auto Focus's range
92 * @fd_mode: Face Detection mode
93 * @mcc: Multi-axis Color Conversion which means emotion color
94 * @light: status of the Light
95 * @flash: status of the Flash
96 * @tone: Tone color which means Contrast
97 * @iso: ISO register value
98 * @capt_mode: Mode of the Image Stabilization while the camera capturing
99 * @wdr: Wide Dynamic Range register value
100 *
101 * The each value according to each scenemode is recommended in the documents.
102 */
103struct m5mols_scenemode {
HeungJun, Kim57644f52011-05-31 03:44:19 -0300104 u8 metering;
105 u8 ev_bias;
106 u8 wb_mode;
107 u8 wb_preset;
108 u8 chroma_en;
109 u8 chroma_lvl;
110 u8 edge_en;
111 u8 edge_lvl;
112 u8 af_range;
113 u8 fd_mode;
114 u8 mcc;
115 u8 light;
116 u8 flash;
117 u8 tone;
118 u8 iso;
119 u8 capt_mode;
120 u8 wdr;
HeungJun, Kimbc125102011-05-20 02:27:28 -0300121};
122
123/**
124 * struct m5mols_version - firmware version information
125 * @customer: customer information
126 * @project: version of project information according to customer
127 * @fw: firmware revision
128 * @hw: hardware revision
129 * @param: version of the parameter
130 * @awb: Auto WhiteBalance algorithm version
131 * @str: information about manufacturer and packaging vendor
132 * @af: Auto Focus version
133 *
134 * The register offset starts the customer version at 0x0, and it ends
135 * the awb version at 0x09. The customer, project information occupies 1 bytes
136 * each. And also the fw, hw, param, awb each requires 2 bytes. The str is
137 * unique string associated with firmware's version. It includes information
138 * about manufacturer and the vendor of the sensor's packaging. The least
139 * significant 2 bytes of the string indicate packaging manufacturer.
140 */
141#define VERSION_STRING_SIZE 22
142struct m5mols_version {
143 u8 customer;
144 u8 project;
145 u16 fw;
146 u16 hw;
147 u16 param;
148 u16 awb;
149 u8 str[VERSION_STRING_SIZE];
150 u8 af;
151};
HeungJun, Kimbc125102011-05-20 02:27:28 -0300152
153/**
154 * struct m5mols_info - M-5MOLS driver data structure
155 * @pdata: platform data
156 * @sd: v4l-subdev instance
157 * @pad: media pad
158 * @ffmt: current fmt according to resolution type
159 * @res_type: current resolution type
HeungJun, Kimbc125102011-05-20 02:27:28 -0300160 * @irq_waitq: waitqueue for the capture
HeungJun, Kimbc125102011-05-20 02:27:28 -0300161 * @flags: state variable for the interrupt handler
162 * @handle: control handler
Sylwester Nawrocki3c5da0b2012-04-09 13:51:56 -0300163 * @auto_exposure: auto/manual exposure control
164 * @exposure: manual exposure control
Sylwester Nawrocki44b153c2012-04-09 13:19:25 -0300165 * @auto_iso: auto/manual ISO sensitivity control
166 * @iso: manual ISO sensitivity control
Sylwester Nawrockid7a87e42012-05-08 06:56:35 -0300167 * @auto_wb: auto white balance control
Sylwester Nawrocki3c5da0b2012-04-09 13:51:56 -0300168 * @colorfx: color effect control
169 * @saturation: saturation control
170 * @zoom: zoom control
HeungJun, Kimbc125102011-05-20 02:27:28 -0300171 * @ver: information of the version
172 * @cap: the capture mode attributes
173 * @power: current sensor's power status
HeungJun Kim0f2ee1d2011-12-03 11:47:40 -0300174 * @isp_ready: 1 when the ISP controller has completed booting
175 * @ctrl_sync: 1 when the control handler state is restored in H/W
HeungJun, Kimbc125102011-05-20 02:27:28 -0300176 * @lock_ae: true means the Auto Exposure is locked
177 * @lock_awb: true means the Aut WhiteBalance is locked
178 * @resolution: register value for current resolution
HeungJun, Kimbc125102011-05-20 02:27:28 -0300179 * @mode: register value for current operation mode
HeungJun, Kimbc125102011-05-20 02:27:28 -0300180 * @set_power: optional power callback to the board code
181 */
182struct m5mols_info {
183 const struct m5mols_platform_data *pdata;
184 struct v4l2_subdev sd;
185 struct media_pad pad;
186 struct v4l2_mbus_framefmt ffmt[M5MOLS_RESTYPE_MAX];
187 int res_type;
Sylwester Nawrocki5d4294b2011-12-12 15:45:56 -0300188
HeungJun, Kimbc125102011-05-20 02:27:28 -0300189 wait_queue_head_t irq_waitq;
HeungJun Kimce808a42011-12-02 21:53:20 -0300190 atomic_t irq_done;
HeungJun, Kimbc125102011-05-20 02:27:28 -0300191
192 struct v4l2_ctrl_handler handle;
Sylwester Nawrocki3c5da0b2012-04-09 13:51:56 -0300193 struct {
194 /* exposure/auto-exposure cluster */
195 struct v4l2_ctrl *auto_exposure;
196 struct v4l2_ctrl *exposure;
197 };
Sylwester Nawrocki44b153c2012-04-09 13:19:25 -0300198 struct {
199 /* iso/auto iso cluster */
200 struct v4l2_ctrl *auto_iso;
201 struct v4l2_ctrl *iso;
202 };
Sylwester Nawrocki3c5da0b2012-04-09 13:51:56 -0300203 struct v4l2_ctrl *auto_wb;
Sylwester Nawrockid7a87e42012-05-08 06:56:35 -0300204
HeungJun, Kimbc125102011-05-20 02:27:28 -0300205 struct v4l2_ctrl *colorfx;
206 struct v4l2_ctrl *saturation;
207 struct v4l2_ctrl *zoom;
208
209 struct m5mols_version ver;
210 struct m5mols_capture cap;
HeungJun Kim0f2ee1d2011-12-03 11:47:40 -0300211
212 unsigned int isp_ready:1;
213 unsigned int power:1;
214 unsigned int ctrl_sync:1;
215
HeungJun, Kimbc125102011-05-20 02:27:28 -0300216 bool lock_ae;
217 bool lock_awb;
218 u8 resolution;
HeungJun, Kim57644f52011-05-31 03:44:19 -0300219 u8 mode;
Sylwester Nawrocki5d4294b2011-12-12 15:45:56 -0300220
HeungJun, Kimbc125102011-05-20 02:27:28 -0300221 int (*set_power)(struct device *dev, int on);
222};
223
HeungJun, Kimbc125102011-05-20 02:27:28 -0300224#define is_available_af(__info) (__info->ver.af)
225#define is_code(__code, __type) (__code == m5mols_default_ffmt[__type].code)
226#define is_manufacturer(__info, __manufacturer) \
227 (__info->ver.str[0] == __manufacturer[0] && \
228 __info->ver.str[1] == __manufacturer[1])
229/*
230 * I2C operation of the M-5MOLS
231 *
232 * The I2C read operation of the M-5MOLS requires 2 messages. The first
233 * message sends the information about the command, command category, and total
234 * message size. The second message is used to retrieve the data specifed in
235 * the first message
236 *
237 * 1st message 2nd message
238 * +-------+---+----------+-----+-------+ +------+------+------+------+
239 * | size1 | R | category | cmd | size2 | | d[0] | d[1] | d[2] | d[3] |
240 * +-------+---+----------+-----+-------+ +------+------+------+------+
241 * - size1: message data size(5 in this case)
242 * - size2: desired buffer size of the 2nd message
243 * - d[0..3]: according to size2
244 *
245 * The I2C write operation needs just one message. The message includes
246 * category, command, total size, and desired data.
247 *
248 * 1st message
249 * +-------+---+----------+-----+------+------+------+------+
250 * | size1 | W | category | cmd | d[0] | d[1] | d[2] | d[3] |
251 * +-------+---+----------+-----+------+------+------+------+
252 * - d[0..3]: according to size1
253 */
HeungJun, Kim57644f52011-05-31 03:44:19 -0300254int m5mols_read_u8(struct v4l2_subdev *sd, u32 reg_comb, u8 *val);
255int m5mols_read_u16(struct v4l2_subdev *sd, u32 reg_comb, u16 *val);
256int m5mols_read_u32(struct v4l2_subdev *sd, u32 reg_comb, u32 *val);
HeungJun, Kimbc125102011-05-20 02:27:28 -0300257int m5mols_write(struct v4l2_subdev *sd, u32 reg_comb, u32 val);
HeungJun Kim575d6252011-12-12 08:04:03 -0300258
259int m5mols_busy_wait(struct v4l2_subdev *sd, u32 reg, u32 value, u32 mask,
260 int timeout);
261
262/* Mask value for busy waiting until M-5MOLS I2C interface is initialized */
263#define M5MOLS_I2C_RDY_WAIT_FL (1 << 16)
264/* ISP state transition timeout, in ms */
265#define M5MOLS_MODE_CHANGE_TIMEOUT 200
266#define M5MOLS_BUSY_WAIT_DEF_TIMEOUT 250
HeungJun, Kimbc125102011-05-20 02:27:28 -0300267
268/*
269 * Mode operation of the M-5MOLS
270 *
271 * Changing the mode of the M-5MOLS is needed right executing order.
272 * There are three modes(PARAMETER, MONITOR, CAPTURE) which can be changed
273 * by user. There are various categories associated with each mode.
274 *
275 * +============================================================+
276 * | mode | category |
277 * +============================================================+
278 * | FLASH | FLASH(only after Stand-by or Power-on) |
279 * | SYSTEM | SYSTEM(only after sensor arm-booting) |
280 * | PARAMETER | PARAMETER |
281 * | MONITOR | MONITOR(preview), Auto Focus, Face Detection |
282 * | CAPTURE | Single CAPTURE, Preview(recording) |
283 * +============================================================+
284 *
285 * The available executing order between each modes are as follows:
286 * PARAMETER <---> MONITOR <---> CAPTURE
287 */
Sylwester Nawrocki3c5da0b2012-04-09 13:51:56 -0300288int m5mols_set_mode(struct m5mols_info *info, u8 mode);
HeungJun, Kimbc125102011-05-20 02:27:28 -0300289
HeungJun, Kim57644f52011-05-31 03:44:19 -0300290int m5mols_enable_interrupt(struct v4l2_subdev *sd, u8 reg);
HeungJun Kimce808a42011-12-02 21:53:20 -0300291int m5mols_wait_interrupt(struct v4l2_subdev *sd, u8 condition, u32 timeout);
Sylwester Nawrocki5d4294b2011-12-12 15:45:56 -0300292int m5mols_restore_controls(struct m5mols_info *info);
HeungJun, Kimbc125102011-05-20 02:27:28 -0300293int m5mols_start_capture(struct m5mols_info *info);
HeungJun, Kim57644f52011-05-31 03:44:19 -0300294int m5mols_do_scenemode(struct m5mols_info *info, u8 mode);
HeungJun, Kimbc125102011-05-20 02:27:28 -0300295int m5mols_lock_3a(struct m5mols_info *info, bool lock);
296int m5mols_set_ctrl(struct v4l2_ctrl *ctrl);
Sylwester Nawrocki3c5da0b2012-04-09 13:51:56 -0300297int m5mols_init_controls(struct v4l2_subdev *sd);
HeungJun, Kimbc125102011-05-20 02:27:28 -0300298
299/* The firmware function */
300int m5mols_update_fw(struct v4l2_subdev *sd,
301 int (*set_power)(struct m5mols_info *, bool));
302
Sylwester Nawrocki91f4eb02012-03-06 07:08:56 -0300303static inline struct m5mols_info *to_m5mols(struct v4l2_subdev *subdev)
304{
305 return container_of(subdev, struct m5mols_info, sd);
306}
307
308static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
309{
310 struct m5mols_info *info = container_of(ctrl->handler,
311 struct m5mols_info, handle);
312 return &info->sd;
313}
314
Sylwester Nawrocki0373e972012-04-09 13:52:06 -0300315static inline void m5mols_set_ctrl_mode(struct v4l2_ctrl *ctrl,
316 unsigned int mode)
317{
318 ctrl->priv = (void *)mode;
319}
320
321static inline unsigned int m5mols_get_ctrl_mode(struct v4l2_ctrl *ctrl)
322{
323 return (unsigned int)ctrl->priv;
324}
325
HeungJun, Kimbc125102011-05-20 02:27:28 -0300326#endif /* M5MOLS_H */