1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for Samsung S5K5BAF UXGA 1/5" 2M CMOS Image Sensor
4 * with embedded SoC ISP.
6 * Copyright (C) 2013, Samsung Electronics Co., Ltd.
7 * Andrzej Hajda <a.hajda@samsung.com>
9 * Based on S5K6AA driver authored by Sylwester Nawrocki
10 * Copyright (C) 2013, Samsung Electronics Co., Ltd.
13 #include <linux/clk.h>
14 #include <linux/delay.h>
15 #include <linux/firmware.h>
16 #include <linux/gpio/consumer.h>
17 #include <linux/i2c.h>
18 #include <linux/media.h>
19 #include <linux/module.h>
20 #include <linux/of_graph.h>
21 #include <linux/regulator/consumer.h>
22 #include <linux/slab.h>
24 #include <media/media-entity.h>
25 #include <media/v4l2-ctrls.h>
26 #include <media/v4l2-device.h>
27 #include <media/v4l2-subdev.h>
28 #include <media/v4l2-mediabus.h>
29 #include <media/v4l2-fwnode.h>
32 module_param(debug
, int, 0644);
34 #define S5K5BAF_DRIVER_NAME "s5k5baf"
35 #define S5K5BAF_DEFAULT_MCLK_FREQ 24000000U
36 #define S5K5BAF_CLK_NAME "mclk"
38 #define S5K5BAF_FW_FILENAME "s5k5baf-cfg.bin"
39 #define S5K5BAF_FW_TAG "SF00"
40 #define S5K5BAG_FW_TAG_LEN 2
41 #define S5K5BAG_FW_MAX_COUNT 16
43 #define S5K5BAF_CIS_WIDTH 1600
44 #define S5K5BAF_CIS_HEIGHT 1200
45 #define S5K5BAF_WIN_WIDTH_MIN 8
46 #define S5K5BAF_WIN_HEIGHT_MIN 8
47 #define S5K5BAF_GAIN_RED_DEF 127
48 #define S5K5BAF_GAIN_GREEN_DEF 95
49 #define S5K5BAF_GAIN_BLUE_DEF 180
50 /* Default number of MIPI CSI-2 data lanes used */
51 #define S5K5BAF_DEF_NUM_LANES 1
53 #define AHB_MSB_ADDR_PTR 0xfcfc
56 * Register interface pages (the most significant word of the address)
58 #define PAGE_IF_HW 0xd000
59 #define PAGE_IF_SW 0x7000
62 * H/W register Interface (PAGE_IF_HW)
64 #define REG_SW_LOAD_COMPLETE 0x0014
65 #define REG_CMDWR_PAGE 0x0028
66 #define REG_CMDWR_ADDR 0x002a
67 #define REG_CMDRD_PAGE 0x002c
68 #define REG_CMDRD_ADDR 0x002e
69 #define REG_CMD_BUF 0x0f12
70 #define REG_SET_HOST_INT 0x1000
71 #define REG_CLEAR_HOST_INT 0x1030
72 #define REG_PATTERN_SET 0x3100
73 #define REG_PATTERN_WIDTH 0x3118
74 #define REG_PATTERN_HEIGHT 0x311a
75 #define REG_PATTERN_PARAM 0x311c
78 * S/W register interface (PAGE_IF_SW)
81 /* Firmware revision information */
82 #define REG_FW_APIVER 0x012e
83 #define S5K5BAF_FW_APIVER 0x0001
84 #define REG_FW_REVISION 0x0130
85 #define REG_FW_SENSOR_ID 0x0152
87 /* Initialization parameters */
88 /* Master clock frequency in KHz */
89 #define REG_I_INCLK_FREQ_L 0x01b8
90 #define REG_I_INCLK_FREQ_H 0x01ba
91 #define MIN_MCLK_FREQ_KHZ 6000U
92 #define MAX_MCLK_FREQ_KHZ 48000U
93 #define REG_I_USE_NPVI_CLOCKS 0x01c6
95 #define REG_I_USE_NMIPI_CLOCKS 0x01c8
96 #define NMIPI_CLOCKS 1
97 #define REG_I_BLOCK_INTERNAL_PLL_CALC 0x01ca
99 /* Clock configurations, n = 0..2. REG_I_* frequency unit is 4 kHz. */
100 #define REG_I_OPCLK_4KHZ(n) ((n) * 6 + 0x01cc)
101 #define REG_I_MIN_OUTRATE_4KHZ(n) ((n) * 6 + 0x01ce)
102 #define REG_I_MAX_OUTRATE_4KHZ(n) ((n) * 6 + 0x01d0)
103 #define SCLK_PVI_FREQ 24000
104 #define SCLK_MIPI_FREQ 48000
105 #define PCLK_MIN_FREQ 6000
106 #define PCLK_MAX_FREQ 48000
107 #define REG_I_USE_REGS_API 0x01de
108 #define REG_I_INIT_PARAMS_UPDATED 0x01e0
109 #define REG_I_ERROR_INFO 0x01e2
111 /* General purpose parameters */
112 #define REG_USER_BRIGHTNESS 0x01e4
113 #define REG_USER_CONTRAST 0x01e6
114 #define REG_USER_SATURATION 0x01e8
115 #define REG_USER_SHARPBLUR 0x01ea
117 #define REG_G_SPEC_EFFECTS 0x01ee
118 #define REG_G_ENABLE_PREV 0x01f0
119 #define REG_G_ENABLE_PREV_CHG 0x01f2
120 #define REG_G_NEW_CFG_SYNC 0x01f8
121 #define REG_G_PREVREQ_IN_WIDTH 0x01fa
122 #define REG_G_PREVREQ_IN_HEIGHT 0x01fc
123 #define REG_G_PREVREQ_IN_XOFFS 0x01fe
124 #define REG_G_PREVREQ_IN_YOFFS 0x0200
125 #define REG_G_PREVZOOM_IN_WIDTH 0x020a
126 #define REG_G_PREVZOOM_IN_HEIGHT 0x020c
127 #define REG_G_PREVZOOM_IN_XOFFS 0x020e
128 #define REG_G_PREVZOOM_IN_YOFFS 0x0210
129 #define REG_G_INPUTS_CHANGE_REQ 0x021a
130 #define REG_G_ACTIVE_PREV_CFG 0x021c
131 #define REG_G_PREV_CFG_CHG 0x021e
132 #define REG_G_PREV_OPEN_AFTER_CH 0x0220
133 #define REG_G_PREV_CFG_ERROR 0x0222
134 #define CFG_ERROR_RANGE 0x0b
135 #define REG_G_PREV_CFG_BYPASS_CHANGED 0x022a
136 #define REG_G_ACTUAL_P_FR_TIME 0x023a
137 #define REG_G_ACTUAL_P_OUT_RATE 0x023c
138 #define REG_G_ACTUAL_C_FR_TIME 0x023e
139 #define REG_G_ACTUAL_C_OUT_RATE 0x0240
141 /* Preview control section. n = 0...4. */
142 #define PREG(n, x) ((n) * 0x26 + x)
143 #define REG_P_OUT_WIDTH(n) PREG(n, 0x0242)
144 #define REG_P_OUT_HEIGHT(n) PREG(n, 0x0244)
145 #define REG_P_FMT(n) PREG(n, 0x0246)
146 #define REG_P_MAX_OUT_RATE(n) PREG(n, 0x0248)
147 #define REG_P_MIN_OUT_RATE(n) PREG(n, 0x024a)
148 #define REG_P_PVI_MASK(n) PREG(n, 0x024c)
149 #define PVI_MASK_MIPI 0x52
150 #define REG_P_CLK_INDEX(n) PREG(n, 0x024e)
151 #define CLK_PVI_INDEX 0
152 #define CLK_MIPI_INDEX NPVI_CLOCKS
153 #define REG_P_FR_RATE_TYPE(n) PREG(n, 0x0250)
154 #define FR_RATE_DYNAMIC 0
155 #define FR_RATE_FIXED 1
156 #define FR_RATE_FIXED_ACCURATE 2
157 #define REG_P_FR_RATE_Q_TYPE(n) PREG(n, 0x0252)
158 #define FR_RATE_Q_DYNAMIC 0
159 #define FR_RATE_Q_BEST_FRRATE 1 /* Binning enabled */
160 #define FR_RATE_Q_BEST_QUALITY 2 /* Binning disabled */
161 /* Frame period in 0.1 ms units */
162 #define REG_P_MAX_FR_TIME(n) PREG(n, 0x0254)
163 #define REG_P_MIN_FR_TIME(n) PREG(n, 0x0256)
164 #define S5K5BAF_MIN_FR_TIME 333 /* x100 us */
165 #define S5K5BAF_MAX_FR_TIME 6500 /* x100 us */
166 /* The below 5 registers are for "device correction" values */
167 #define REG_P_SATURATION(n) PREG(n, 0x0258)
168 #define REG_P_SHARP_BLUR(n) PREG(n, 0x025a)
169 #define REG_P_GLAMOUR(n) PREG(n, 0x025c)
170 #define REG_P_COLORTEMP(n) PREG(n, 0x025e)
171 #define REG_P_GAMMA_INDEX(n) PREG(n, 0x0260)
172 #define REG_P_PREV_MIRROR(n) PREG(n, 0x0262)
173 #define REG_P_CAP_MIRROR(n) PREG(n, 0x0264)
174 #define REG_P_CAP_ROTATION(n) PREG(n, 0x0266)
176 /* Extended image property controls */
177 /* Exposure time in 10 us units */
178 #define REG_SF_USR_EXPOSURE_L 0x03bc
179 #define REG_SF_USR_EXPOSURE_H 0x03be
180 #define REG_SF_USR_EXPOSURE_CHG 0x03c0
181 #define REG_SF_USR_TOT_GAIN 0x03c2
182 #define REG_SF_USR_TOT_GAIN_CHG 0x03c4
183 #define REG_SF_RGAIN 0x03c6
184 #define REG_SF_RGAIN_CHG 0x03c8
185 #define REG_SF_GGAIN 0x03ca
186 #define REG_SF_GGAIN_CHG 0x03cc
187 #define REG_SF_BGAIN 0x03ce
188 #define REG_SF_BGAIN_CHG 0x03d0
189 #define REG_SF_WBGAIN_CHG 0x03d2
190 #define REG_SF_FLICKER_QUANT 0x03d4
191 #define REG_SF_FLICKER_QUANT_CHG 0x03d6
193 /* Output interface (parallel/MIPI) setup */
194 #define REG_OIF_EN_MIPI_LANES 0x03f2
195 #define REG_OIF_EN_PACKETS 0x03f4
196 #define EN_PACKETS_CSI2 0xc3
197 #define REG_OIF_CFG_CHG 0x03f6
199 /* Auto-algorithms enable mask */
200 #define REG_DBG_AUTOALG_EN 0x03f8
201 #define AALG_ALL_EN BIT(0)
202 #define AALG_AE_EN BIT(1)
203 #define AALG_DIVLEI_EN BIT(2)
204 #define AALG_WB_EN BIT(3)
205 #define AALG_USE_WB_FOR_ISP BIT(4)
206 #define AALG_FLICKER_EN BIT(5)
207 #define AALG_FIT_EN BIT(6)
208 #define AALG_WRHW_EN BIT(7)
210 /* Pointers to color correction matrices */
211 #define REG_PTR_CCM_HORIZON 0x06d0
212 #define REG_PTR_CCM_INCANDESCENT 0x06d4
213 #define REG_PTR_CCM_WARM_WHITE 0x06d8
214 #define REG_PTR_CCM_COOL_WHITE 0x06dc
215 #define REG_PTR_CCM_DL50 0x06e0
216 #define REG_PTR_CCM_DL65 0x06e4
217 #define REG_PTR_CCM_OUTDOOR 0x06ec
219 #define REG_ARR_CCM(n) (0x2800 + 36 * (n))
221 static const char * const s5k5baf_supply_names
[] = {
222 "vdda", /* Analog power supply 2.8V (2.6V to 3.0V) */
223 "vddreg", /* Regulator input power supply 1.8V (1.7V to 1.9V)
224 or 2.8V (2.6V to 3.0) */
225 "vddio", /* I/O power supply 1.8V (1.65V to 1.95V)
226 or 2.8V (2.5V to 3.1V) */
228 #define S5K5BAF_NUM_SUPPLIES ARRAY_SIZE(s5k5baf_supply_names)
230 enum s5k5baf_gpio_id
{
238 #define NUM_CIS_PADS 1
239 #define NUM_ISP_PADS 2
241 struct s5k5baf_pixfmt
{
244 /* REG_P_FMT(x) register value */
248 struct s5k5baf_ctrls
{
249 struct v4l2_ctrl_handler handler
;
250 struct { /* Auto / manual white balance cluster */
251 struct v4l2_ctrl
*awb
;
252 struct v4l2_ctrl
*gain_red
;
253 struct v4l2_ctrl
*gain_blue
;
255 struct { /* Mirror cluster */
256 struct v4l2_ctrl
*hflip
;
257 struct v4l2_ctrl
*vflip
;
259 struct { /* Auto exposure / manual exposure and gain cluster */
260 struct v4l2_ctrl
*auto_exp
;
261 struct v4l2_ctrl
*exposure
;
262 struct v4l2_ctrl
*gain
;
281 struct gpio_desc
*gpios
[NUM_GPIOS
];
282 enum v4l2_mbus_type bus_type
;
284 struct regulator_bulk_data supplies
[S5K5BAF_NUM_SUPPLIES
];
289 struct s5k5baf_fw
*fw
;
291 struct v4l2_subdev cis_sd
;
292 struct media_pad cis_pad
;
294 struct v4l2_subdev sd
;
295 struct media_pad pads
[NUM_ISP_PADS
];
297 /* protects the struct members below */
302 struct v4l2_rect crop_sink
;
303 struct v4l2_rect compose
;
304 struct v4l2_rect crop_source
;
305 /* index to s5k5baf_formats array */
307 /* actual frame interval in 100us */
309 /* requested frame interval in 100us */
311 /* cache for REG_DBG_AUTOALG_EN register */
314 struct s5k5baf_ctrls ctrls
;
316 unsigned int streaming
:1;
317 unsigned int apply_cfg
:1;
318 unsigned int apply_crop
:1;
319 unsigned int valid_auto_alg
:1;
323 static const struct s5k5baf_pixfmt s5k5baf_formats
[] = {
324 { MEDIA_BUS_FMT_VYUY8_2X8
, V4L2_COLORSPACE_JPEG
, 5 },
326 { MEDIA_BUS_FMT_VYUY8_2X8
, V4L2_COLORSPACE_REC709
, 6 },
327 { MEDIA_BUS_FMT_RGB565_2X8_BE
, V4L2_COLORSPACE_JPEG
, 0 },
330 static struct v4l2_rect s5k5baf_cis_rect
= {
331 0, 0, S5K5BAF_CIS_WIDTH
, S5K5BAF_CIS_HEIGHT
334 /* Setfile contains set of I2C command sequences. Each sequence has its ID.
337 * u16 count; number of sequences
339 * u16 id; sequence id
340 * u16 offset; sequence offset in data array
342 * u16 data[*]; array containing sequences
345 static int s5k5baf_fw_parse(struct device
*dev
, struct s5k5baf_fw
**fw
,
346 size_t count
, const __le16
*data
)
348 struct s5k5baf_fw
*f
;
352 if (count
< S5K5BAG_FW_TAG_LEN
+ 1) {
353 dev_err(dev
, "firmware file too short (%zu)\n", count
);
357 ret
= memcmp(data
, S5K5BAF_FW_TAG
, S5K5BAG_FW_TAG_LEN
* sizeof(u16
));
359 dev_err(dev
, "invalid firmware magic number\n");
363 data
+= S5K5BAG_FW_TAG_LEN
;
364 count
-= S5K5BAG_FW_TAG_LEN
;
366 d
= devm_kcalloc(dev
, count
, sizeof(u16
), GFP_KERNEL
);
370 for (i
= 0; i
< count
; ++i
)
371 d
[i
] = le16_to_cpu(data
[i
]);
373 f
= (struct s5k5baf_fw
*)d
;
374 if (count
< 1 + 2 * f
->count
) {
375 dev_err(dev
, "invalid firmware header (count=%d size=%zu)\n",
376 f
->count
, 2 * (count
+ S5K5BAG_FW_TAG_LEN
));
380 d
+= 1 + 2 * f
->count
;
382 for (i
= 0; i
< f
->count
; ++i
) {
383 if (f
->seq
[i
].offset
+ d
<= end
)
385 dev_err(dev
, "invalid firmware header (seq=%d)\n", i
);
394 static inline struct v4l2_subdev
*ctrl_to_sd(struct v4l2_ctrl
*ctrl
)
396 return &container_of(ctrl
->handler
, struct s5k5baf
, ctrls
.handler
)->sd
;
399 static inline bool s5k5baf_is_cis_subdev(struct v4l2_subdev
*sd
)
401 return sd
->entity
.function
== MEDIA_ENT_F_CAM_SENSOR
;
404 static inline struct s5k5baf
*to_s5k5baf(struct v4l2_subdev
*sd
)
406 if (s5k5baf_is_cis_subdev(sd
))
407 return container_of(sd
, struct s5k5baf
, cis_sd
);
409 return container_of(sd
, struct s5k5baf
, sd
);
412 static u16
s5k5baf_i2c_read(struct s5k5baf
*state
, u16 addr
)
414 struct i2c_client
*c
= v4l2_get_subdevdata(&state
->sd
);
417 struct i2c_msg msg
[] = {
418 { .addr
= c
->addr
, .flags
= 0,
419 .len
= 2, .buf
= (u8
*)&w
},
420 { .addr
= c
->addr
, .flags
= I2C_M_RD
,
421 .len
= 2, .buf
= (u8
*)&r
},
428 w
= cpu_to_be16(addr
);
429 ret
= i2c_transfer(c
->adapter
, msg
, 2);
430 res
= be16_to_cpu(r
);
432 v4l2_dbg(3, debug
, c
, "i2c_read: 0x%04x : 0x%04x\n", addr
, res
);
435 v4l2_err(c
, "i2c_read: error during transfer (%d)\n", ret
);
441 static void s5k5baf_i2c_write(struct s5k5baf
*state
, u16 addr
, u16 val
)
443 u8 buf
[4] = { addr
>> 8, addr
& 0xFF, val
>> 8, val
& 0xFF };
444 struct i2c_client
*c
= v4l2_get_subdevdata(&state
->sd
);
450 ret
= i2c_master_send(c
, buf
, 4);
451 v4l2_dbg(3, debug
, c
, "i2c_write: 0x%04x : 0x%04x\n", addr
, val
);
454 v4l2_err(c
, "i2c_write: error during transfer (%d)\n", ret
);
459 static u16
s5k5baf_read(struct s5k5baf
*state
, u16 addr
)
461 s5k5baf_i2c_write(state
, REG_CMDRD_ADDR
, addr
);
462 return s5k5baf_i2c_read(state
, REG_CMD_BUF
);
465 static void s5k5baf_write(struct s5k5baf
*state
, u16 addr
, u16 val
)
467 s5k5baf_i2c_write(state
, REG_CMDWR_ADDR
, addr
);
468 s5k5baf_i2c_write(state
, REG_CMD_BUF
, val
);
471 static void s5k5baf_write_arr_seq(struct s5k5baf
*state
, u16 addr
,
472 u16 count
, const u16
*seq
)
474 struct i2c_client
*c
= v4l2_get_subdevdata(&state
->sd
);
477 s5k5baf_i2c_write(state
, REG_CMDWR_ADDR
, addr
);
481 v4l2_dbg(3, debug
, c
, "i2c_write_seq(count=%d): %*ph\n", count
,
482 min(2 * count
, 64), seq
);
484 buf
[0] = cpu_to_be16(REG_CMD_BUF
);
487 int n
= min_t(int, count
, ARRAY_SIZE(buf
) - 1);
490 for (i
= 1; i
<= n
; ++i
)
491 buf
[i
] = cpu_to_be16(*seq
++);
494 ret
= i2c_master_send(c
, (char *)buf
, i
);
496 v4l2_err(c
, "i2c_write_seq: error during transfer (%d)\n", ret
);
505 #define s5k5baf_write_seq(state, addr, seq...) \
506 s5k5baf_write_arr_seq(state, addr, sizeof((char[]){ seq }), \
507 (const u16 []){ seq })
509 /* add items count at the beginning of the list */
510 #define NSEQ(seq...) sizeof((char[]){ seq }), seq
513 * s5k5baf_write_nseq() - Writes sequences of values to sensor memory via i2c
514 * @nseq: sequence of u16 words in format:
515 * (N, address, value[1]...value[N-1])*,0
517 * u16 seq[] = { NSEQ(0x4000, 1, 1), NSEQ(0x4010, 640, 480), 0 };
518 * ret = s5k5baf_write_nseq(c, seq);
520 static void s5k5baf_write_nseq(struct s5k5baf
*state
, const u16
*nseq
)
524 while ((count
= *nseq
++)) {
528 s5k5baf_write_arr_seq(state
, addr
, count
, nseq
);
533 static void s5k5baf_synchronize(struct s5k5baf
*state
, int timeout
, u16 addr
)
535 unsigned long end
= jiffies
+ msecs_to_jiffies(timeout
);
538 s5k5baf_write(state
, addr
, 1);
540 reg
= s5k5baf_read(state
, addr
);
541 if (state
->error
|| !reg
)
543 usleep_range(5000, 10000);
544 } while (time_is_after_jiffies(end
));
546 v4l2_err(&state
->sd
, "timeout on register synchronize (%#x)\n", addr
);
547 state
->error
= -ETIMEDOUT
;
550 static u16
*s5k5baf_fw_get_seq(struct s5k5baf
*state
, u16 seq_id
)
552 struct s5k5baf_fw
*fw
= state
->fw
;
559 data
= &fw
->seq
[0].id
+ 2 * fw
->count
;
561 for (i
= 0; i
< fw
->count
; ++i
) {
562 if (fw
->seq
[i
].id
== seq_id
)
563 return data
+ fw
->seq
[i
].offset
;
569 static void s5k5baf_hw_patch(struct s5k5baf
*state
)
571 u16
*seq
= s5k5baf_fw_get_seq(state
, S5K5BAF_FW_ID_PATCH
);
574 s5k5baf_write_nseq(state
, seq
);
577 static void s5k5baf_hw_set_clocks(struct s5k5baf
*state
)
579 unsigned long mclk
= state
->mclk_frequency
/ 1000;
581 static const u16 nseq_clk_cfg
[] = {
582 NSEQ(REG_I_USE_NPVI_CLOCKS
,
583 NPVI_CLOCKS
, NMIPI_CLOCKS
, 0,
584 SCLK_PVI_FREQ
/ 4, PCLK_MIN_FREQ
/ 4, PCLK_MAX_FREQ
/ 4,
585 SCLK_MIPI_FREQ
/ 4, PCLK_MIN_FREQ
/ 4, PCLK_MAX_FREQ
/ 4),
586 NSEQ(REG_I_USE_REGS_API
, 1),
590 s5k5baf_write_seq(state
, REG_I_INCLK_FREQ_L
, mclk
& 0xffff, mclk
>> 16);
591 s5k5baf_write_nseq(state
, nseq_clk_cfg
);
593 s5k5baf_synchronize(state
, 250, REG_I_INIT_PARAMS_UPDATED
);
594 status
= s5k5baf_read(state
, REG_I_ERROR_INFO
);
595 if (!state
->error
&& status
) {
596 v4l2_err(&state
->sd
, "error configuring PLL (%d)\n", status
);
597 state
->error
= -EINVAL
;
601 /* set custom color correction matrices for various illuminations */
602 static void s5k5baf_hw_set_ccm(struct s5k5baf
*state
)
604 u16
*seq
= s5k5baf_fw_get_seq(state
, S5K5BAF_FW_ID_CCM
);
607 s5k5baf_write_nseq(state
, seq
);
610 /* CIS sensor tuning, based on undocumented android driver code */
611 static void s5k5baf_hw_set_cis(struct s5k5baf
*state
)
613 u16
*seq
= s5k5baf_fw_get_seq(state
, S5K5BAF_FW_ID_CIS
);
618 s5k5baf_i2c_write(state
, REG_CMDWR_PAGE
, PAGE_IF_HW
);
619 s5k5baf_write_nseq(state
, seq
);
620 s5k5baf_i2c_write(state
, REG_CMDWR_PAGE
, PAGE_IF_SW
);
623 static void s5k5baf_hw_sync_cfg(struct s5k5baf
*state
)
625 s5k5baf_write(state
, REG_G_PREV_CFG_CHG
, 1);
626 if (state
->apply_crop
) {
627 s5k5baf_write(state
, REG_G_INPUTS_CHANGE_REQ
, 1);
628 s5k5baf_write(state
, REG_G_PREV_CFG_BYPASS_CHANGED
, 1);
630 s5k5baf_synchronize(state
, 500, REG_G_NEW_CFG_SYNC
);
632 /* Set horizontal and vertical image flipping */
633 static void s5k5baf_hw_set_mirror(struct s5k5baf
*state
)
635 u16 flip
= state
->ctrls
.vflip
->val
| (state
->ctrls
.vflip
->val
<< 1);
637 s5k5baf_write(state
, REG_P_PREV_MIRROR(0), flip
);
638 if (state
->streaming
)
639 s5k5baf_hw_sync_cfg(state
);
642 static void s5k5baf_hw_set_alg(struct s5k5baf
*state
, u16 alg
, bool enable
)
644 u16 cur_alg
, new_alg
;
646 if (!state
->valid_auto_alg
)
647 cur_alg
= s5k5baf_read(state
, REG_DBG_AUTOALG_EN
);
649 cur_alg
= state
->auto_alg
;
651 new_alg
= enable
? (cur_alg
| alg
) : (cur_alg
& ~alg
);
653 if (new_alg
!= cur_alg
)
654 s5k5baf_write(state
, REG_DBG_AUTOALG_EN
, new_alg
);
659 state
->valid_auto_alg
= 1;
660 state
->auto_alg
= new_alg
;
663 /* Configure auto/manual white balance and R/G/B gains */
664 static void s5k5baf_hw_set_awb(struct s5k5baf
*state
, int awb
)
666 struct s5k5baf_ctrls
*ctrls
= &state
->ctrls
;
669 s5k5baf_write_seq(state
, REG_SF_RGAIN
,
670 ctrls
->gain_red
->val
, 1,
671 S5K5BAF_GAIN_GREEN_DEF
, 1,
672 ctrls
->gain_blue
->val
, 1,
675 s5k5baf_hw_set_alg(state
, AALG_WB_EN
, awb
);
678 /* Program FW with exposure time, 'exposure' in us units */
679 static void s5k5baf_hw_set_user_exposure(struct s5k5baf
*state
, int exposure
)
681 unsigned int time
= exposure
/ 10;
683 s5k5baf_write_seq(state
, REG_SF_USR_EXPOSURE_L
,
684 time
& 0xffff, time
>> 16, 1);
687 static void s5k5baf_hw_set_user_gain(struct s5k5baf
*state
, int gain
)
689 s5k5baf_write_seq(state
, REG_SF_USR_TOT_GAIN
, gain
, 1);
692 /* Set auto/manual exposure and total gain */
693 static void s5k5baf_hw_set_auto_exposure(struct s5k5baf
*state
, int value
)
695 if (value
== V4L2_EXPOSURE_AUTO
) {
696 s5k5baf_hw_set_alg(state
, AALG_AE_EN
| AALG_DIVLEI_EN
, true);
698 unsigned int exp_time
= state
->ctrls
.exposure
->val
;
700 s5k5baf_hw_set_user_exposure(state
, exp_time
);
701 s5k5baf_hw_set_user_gain(state
, state
->ctrls
.gain
->val
);
702 s5k5baf_hw_set_alg(state
, AALG_AE_EN
| AALG_DIVLEI_EN
, false);
706 static void s5k5baf_hw_set_anti_flicker(struct s5k5baf
*state
, int v
)
708 if (v
== V4L2_CID_POWER_LINE_FREQUENCY_AUTO
) {
709 s5k5baf_hw_set_alg(state
, AALG_FLICKER_EN
, true);
711 /* The V4L2_CID_LINE_FREQUENCY control values match
712 * the register values */
713 s5k5baf_write_seq(state
, REG_SF_FLICKER_QUANT
, v
, 1);
714 s5k5baf_hw_set_alg(state
, AALG_FLICKER_EN
, false);
718 static void s5k5baf_hw_set_colorfx(struct s5k5baf
*state
, int val
)
720 static const u16 colorfx
[] = {
721 [V4L2_COLORFX_NONE
] = 0,
722 [V4L2_COLORFX_BW
] = 1,
723 [V4L2_COLORFX_NEGATIVE
] = 2,
724 [V4L2_COLORFX_SEPIA
] = 3,
725 [V4L2_COLORFX_SKY_BLUE
] = 4,
726 [V4L2_COLORFX_SKETCH
] = 5,
729 s5k5baf_write(state
, REG_G_SPEC_EFFECTS
, colorfx
[val
]);
732 static int s5k5baf_find_pixfmt(struct v4l2_mbus_framefmt
*mf
)
736 for (i
= 0; i
< ARRAY_SIZE(s5k5baf_formats
); i
++) {
737 if (mf
->colorspace
!= s5k5baf_formats
[i
].colorspace
)
739 if (mf
->code
== s5k5baf_formats
[i
].code
)
744 return (c
< 0) ? 0 : c
;
747 static int s5k5baf_clear_error(struct s5k5baf
*state
)
749 int ret
= state
->error
;
755 static int s5k5baf_hw_set_video_bus(struct s5k5baf
*state
)
759 if (state
->bus_type
== V4L2_MBUS_CSI2_DPHY
)
760 en_pkts
= EN_PACKETS_CSI2
;
764 s5k5baf_write_seq(state
, REG_OIF_EN_MIPI_LANES
,
765 state
->nlanes
, en_pkts
, 1);
767 return s5k5baf_clear_error(state
);
770 static u16
s5k5baf_get_cfg_error(struct s5k5baf
*state
)
772 u16 err
= s5k5baf_read(state
, REG_G_PREV_CFG_ERROR
);
774 s5k5baf_write(state
, REG_G_PREV_CFG_ERROR
, 0);
778 static void s5k5baf_hw_set_fiv(struct s5k5baf
*state
, u16 fiv
)
780 s5k5baf_write(state
, REG_P_MAX_FR_TIME(0), fiv
);
781 s5k5baf_hw_sync_cfg(state
);
784 static void s5k5baf_hw_find_min_fiv(struct s5k5baf
*state
)
789 fiv
= s5k5baf_read(state
, REG_G_ACTUAL_P_FR_TIME
);
793 for (n
= 5; n
> 0; --n
) {
794 s5k5baf_hw_set_fiv(state
, fiv
);
795 err
= s5k5baf_get_cfg_error(state
);
799 case CFG_ERROR_RANGE
:
804 v4l2_info(&state
->sd
,
805 "found valid frame interval: %d00us\n", fiv
);
809 "error setting frame interval: %d\n", err
);
810 state
->error
= -EINVAL
;
813 v4l2_err(&state
->sd
, "cannot find correct frame interval\n");
814 state
->error
= -ERANGE
;
817 static void s5k5baf_hw_validate_cfg(struct s5k5baf
*state
)
821 err
= s5k5baf_get_cfg_error(state
);
827 state
->apply_cfg
= 1;
829 case CFG_ERROR_RANGE
:
830 s5k5baf_hw_find_min_fiv(state
);
832 state
->apply_cfg
= 1;
836 "error setting format: %d\n", err
);
837 state
->error
= -EINVAL
;
841 static void s5k5baf_rescale(struct v4l2_rect
*r
, const struct v4l2_rect
*v
,
842 const struct v4l2_rect
*n
,
843 const struct v4l2_rect
*d
)
845 r
->left
= v
->left
* n
->width
/ d
->width
;
846 r
->top
= v
->top
* n
->height
/ d
->height
;
847 r
->width
= v
->width
* n
->width
/ d
->width
;
848 r
->height
= v
->height
* n
->height
/ d
->height
;
851 static int s5k5baf_hw_set_crop_rects(struct s5k5baf
*state
)
853 struct v4l2_rect
*p
, r
;
857 p
= &state
->crop_sink
;
858 s5k5baf_write_seq(state
, REG_G_PREVREQ_IN_WIDTH
, p
->width
, p
->height
,
861 s5k5baf_rescale(&r
, &state
->crop_source
, &state
->crop_sink
,
863 s5k5baf_write_seq(state
, REG_G_PREVZOOM_IN_WIDTH
, r
.width
, r
.height
,
866 s5k5baf_synchronize(state
, 500, REG_G_INPUTS_CHANGE_REQ
);
867 s5k5baf_synchronize(state
, 500, REG_G_PREV_CFG_BYPASS_CHANGED
);
868 err
= s5k5baf_get_cfg_error(state
);
869 ret
= s5k5baf_clear_error(state
);
876 case CFG_ERROR_RANGE
:
877 /* retry crop with frame interval set to max */
878 s5k5baf_hw_set_fiv(state
, S5K5BAF_MAX_FR_TIME
);
879 err
= s5k5baf_get_cfg_error(state
);
880 ret
= s5k5baf_clear_error(state
);
885 "crop error on max frame interval: %d\n", err
);
886 state
->error
= -EINVAL
;
888 s5k5baf_hw_set_fiv(state
, state
->req_fiv
);
889 s5k5baf_hw_validate_cfg(state
);
892 v4l2_err(&state
->sd
, "crop error: %d\n", err
);
896 if (!state
->apply_cfg
)
899 p
= &state
->crop_source
;
900 s5k5baf_write_seq(state
, REG_P_OUT_WIDTH(0), p
->width
, p
->height
);
901 s5k5baf_hw_set_fiv(state
, state
->req_fiv
);
902 s5k5baf_hw_validate_cfg(state
);
904 return s5k5baf_clear_error(state
);
907 static void s5k5baf_hw_set_config(struct s5k5baf
*state
)
909 u16 reg_fmt
= s5k5baf_formats
[state
->pixfmt
].reg_p_fmt
;
910 struct v4l2_rect
*r
= &state
->crop_source
;
912 s5k5baf_write_seq(state
, REG_P_OUT_WIDTH(0),
913 r
->width
, r
->height
, reg_fmt
,
914 PCLK_MAX_FREQ
>> 2, PCLK_MIN_FREQ
>> 2,
915 PVI_MASK_MIPI
, CLK_MIPI_INDEX
,
916 FR_RATE_FIXED
, FR_RATE_Q_DYNAMIC
,
917 state
->req_fiv
, S5K5BAF_MIN_FR_TIME
);
918 s5k5baf_hw_sync_cfg(state
);
919 s5k5baf_hw_validate_cfg(state
);
923 static void s5k5baf_hw_set_test_pattern(struct s5k5baf
*state
, int id
)
925 s5k5baf_i2c_write(state
, REG_PATTERN_WIDTH
, 800);
926 s5k5baf_i2c_write(state
, REG_PATTERN_HEIGHT
, 511);
927 s5k5baf_i2c_write(state
, REG_PATTERN_PARAM
, 0);
928 s5k5baf_i2c_write(state
, REG_PATTERN_SET
, id
);
931 static void s5k5baf_gpio_assert(struct s5k5baf
*state
, int id
)
933 gpiod_set_value_cansleep(state
->gpios
[id
], 1);
936 static void s5k5baf_gpio_deassert(struct s5k5baf
*state
, int id
)
938 gpiod_set_value_cansleep(state
->gpios
[id
], 0);
941 static int s5k5baf_power_on(struct s5k5baf
*state
)
945 ret
= regulator_bulk_enable(S5K5BAF_NUM_SUPPLIES
, state
->supplies
);
949 ret
= clk_set_rate(state
->clock
, state
->mclk_frequency
);
953 ret
= clk_prepare_enable(state
->clock
);
957 v4l2_dbg(1, debug
, &state
->sd
, "clock frequency: %ld\n",
958 clk_get_rate(state
->clock
));
960 s5k5baf_gpio_deassert(state
, STBY
);
961 usleep_range(50, 100);
962 s5k5baf_gpio_deassert(state
, RSET
);
966 regulator_bulk_disable(S5K5BAF_NUM_SUPPLIES
, state
->supplies
);
968 v4l2_err(&state
->sd
, "%s() failed (%d)\n", __func__
, ret
);
972 static int s5k5baf_power_off(struct s5k5baf
*state
)
976 state
->streaming
= 0;
977 state
->apply_cfg
= 0;
978 state
->apply_crop
= 0;
980 s5k5baf_gpio_assert(state
, RSET
);
981 s5k5baf_gpio_assert(state
, STBY
);
983 if (!IS_ERR(state
->clock
))
984 clk_disable_unprepare(state
->clock
);
986 ret
= regulator_bulk_disable(S5K5BAF_NUM_SUPPLIES
,
989 v4l2_err(&state
->sd
, "failed to disable regulators\n");
994 static void s5k5baf_hw_init(struct s5k5baf
*state
)
996 s5k5baf_i2c_write(state
, AHB_MSB_ADDR_PTR
, PAGE_IF_HW
);
997 s5k5baf_i2c_write(state
, REG_CLEAR_HOST_INT
, 0);
998 s5k5baf_i2c_write(state
, REG_SW_LOAD_COMPLETE
, 1);
999 s5k5baf_i2c_write(state
, REG_CMDRD_PAGE
, PAGE_IF_SW
);
1000 s5k5baf_i2c_write(state
, REG_CMDWR_PAGE
, PAGE_IF_SW
);
1004 * V4L2 subdev core and video operations
1007 static void s5k5baf_initialize_data(struct s5k5baf
*state
)
1010 state
->req_fiv
= 10000 / 15;
1011 state
->fiv
= state
->req_fiv
;
1012 state
->valid_auto_alg
= 0;
1015 static int s5k5baf_load_setfile(struct s5k5baf
*state
)
1017 struct i2c_client
*c
= v4l2_get_subdevdata(&state
->sd
);
1018 const struct firmware
*fw
;
1021 ret
= request_firmware(&fw
, S5K5BAF_FW_FILENAME
, &c
->dev
);
1023 dev_warn(&c
->dev
, "firmware file (%s) not loaded\n",
1024 S5K5BAF_FW_FILENAME
);
1028 ret
= s5k5baf_fw_parse(&c
->dev
, &state
->fw
, fw
->size
/ 2,
1029 (__le16
*)fw
->data
);
1031 release_firmware(fw
);
1036 static int s5k5baf_set_power(struct v4l2_subdev
*sd
, int on
)
1038 struct s5k5baf
*state
= to_s5k5baf(sd
);
1041 mutex_lock(&state
->lock
);
1043 if (state
->power
!= !on
)
1047 if (state
->fw
== NULL
)
1048 s5k5baf_load_setfile(state
);
1050 s5k5baf_initialize_data(state
);
1051 ret
= s5k5baf_power_on(state
);
1055 s5k5baf_hw_init(state
);
1056 s5k5baf_hw_patch(state
);
1057 s5k5baf_i2c_write(state
, REG_SET_HOST_INT
, 1);
1058 s5k5baf_hw_set_clocks(state
);
1060 ret
= s5k5baf_hw_set_video_bus(state
);
1064 s5k5baf_hw_set_cis(state
);
1065 s5k5baf_hw_set_ccm(state
);
1067 ret
= s5k5baf_clear_error(state
);
1071 s5k5baf_power_off(state
);
1076 mutex_unlock(&state
->lock
);
1079 ret
= v4l2_ctrl_handler_setup(&state
->ctrls
.handler
);
1084 static void s5k5baf_hw_set_stream(struct s5k5baf
*state
, int enable
)
1086 s5k5baf_write_seq(state
, REG_G_ENABLE_PREV
, enable
, 1);
1089 static int s5k5baf_s_stream(struct v4l2_subdev
*sd
, int on
)
1091 struct s5k5baf
*state
= to_s5k5baf(sd
);
1094 mutex_lock(&state
->lock
);
1096 if (state
->streaming
== !!on
) {
1102 s5k5baf_hw_set_config(state
);
1103 ret
= s5k5baf_hw_set_crop_rects(state
);
1106 s5k5baf_hw_set_stream(state
, 1);
1107 s5k5baf_i2c_write(state
, 0xb0cc, 0x000b);
1109 s5k5baf_hw_set_stream(state
, 0);
1111 ret
= s5k5baf_clear_error(state
);
1113 state
->streaming
= !state
->streaming
;
1116 mutex_unlock(&state
->lock
);
1121 static int s5k5baf_get_frame_interval(struct v4l2_subdev
*sd
,
1122 struct v4l2_subdev_state
*sd_state
,
1123 struct v4l2_subdev_frame_interval
*fi
)
1125 struct s5k5baf
*state
= to_s5k5baf(sd
);
1128 * FIXME: Implement support for V4L2_SUBDEV_FORMAT_TRY, using the V4L2
1129 * subdev active state API.
1131 if (fi
->which
!= V4L2_SUBDEV_FORMAT_ACTIVE
)
1134 mutex_lock(&state
->lock
);
1135 fi
->interval
.numerator
= state
->fiv
;
1136 fi
->interval
.denominator
= 10000;
1137 mutex_unlock(&state
->lock
);
1142 static void __s5k5baf_set_frame_interval(struct s5k5baf
*state
,
1143 struct v4l2_subdev_frame_interval
*fi
)
1145 struct v4l2_fract
*i
= &fi
->interval
;
1147 if (fi
->interval
.denominator
== 0)
1148 state
->req_fiv
= S5K5BAF_MAX_FR_TIME
;
1150 state
->req_fiv
= clamp_t(u32
,
1151 i
->numerator
* 10000 / i
->denominator
,
1152 S5K5BAF_MIN_FR_TIME
,
1153 S5K5BAF_MAX_FR_TIME
);
1155 state
->fiv
= state
->req_fiv
;
1156 if (state
->apply_cfg
) {
1157 s5k5baf_hw_set_fiv(state
, state
->req_fiv
);
1158 s5k5baf_hw_validate_cfg(state
);
1160 *i
= (struct v4l2_fract
){ state
->fiv
, 10000 };
1161 if (state
->fiv
== state
->req_fiv
)
1162 v4l2_info(&state
->sd
, "frame interval changed to %d00us\n",
1166 static int s5k5baf_set_frame_interval(struct v4l2_subdev
*sd
,
1167 struct v4l2_subdev_state
*sd_state
,
1168 struct v4l2_subdev_frame_interval
*fi
)
1170 struct s5k5baf
*state
= to_s5k5baf(sd
);
1173 * FIXME: Implement support for V4L2_SUBDEV_FORMAT_TRY, using the V4L2
1174 * subdev active state API.
1176 if (fi
->which
!= V4L2_SUBDEV_FORMAT_ACTIVE
)
1179 mutex_lock(&state
->lock
);
1180 __s5k5baf_set_frame_interval(state
, fi
);
1181 mutex_unlock(&state
->lock
);
1186 * V4L2 subdev pad level and video operations
1188 static int s5k5baf_enum_frame_interval(struct v4l2_subdev
*sd
,
1189 struct v4l2_subdev_state
*sd_state
,
1190 struct v4l2_subdev_frame_interval_enum
*fie
)
1192 if (fie
->index
> S5K5BAF_MAX_FR_TIME
- S5K5BAF_MIN_FR_TIME
||
1193 fie
->pad
!= PAD_CIS
)
1196 v4l_bound_align_image(&fie
->width
, S5K5BAF_WIN_WIDTH_MIN
,
1197 S5K5BAF_CIS_WIDTH
, 1,
1198 &fie
->height
, S5K5BAF_WIN_HEIGHT_MIN
,
1199 S5K5BAF_CIS_HEIGHT
, 1, 0);
1201 fie
->interval
.numerator
= S5K5BAF_MIN_FR_TIME
+ fie
->index
;
1202 fie
->interval
.denominator
= 10000;
1207 static int s5k5baf_enum_mbus_code(struct v4l2_subdev
*sd
,
1208 struct v4l2_subdev_state
*sd_state
,
1209 struct v4l2_subdev_mbus_code_enum
*code
)
1211 if (code
->pad
== PAD_CIS
) {
1212 if (code
->index
> 0)
1214 code
->code
= MEDIA_BUS_FMT_FIXED
;
1218 if (code
->index
>= ARRAY_SIZE(s5k5baf_formats
))
1221 code
->code
= s5k5baf_formats
[code
->index
].code
;
1225 static int s5k5baf_enum_frame_size(struct v4l2_subdev
*sd
,
1226 struct v4l2_subdev_state
*sd_state
,
1227 struct v4l2_subdev_frame_size_enum
*fse
)
1234 if (fse
->pad
== PAD_CIS
) {
1235 fse
->code
= MEDIA_BUS_FMT_FIXED
;
1236 fse
->min_width
= S5K5BAF_CIS_WIDTH
;
1237 fse
->max_width
= S5K5BAF_CIS_WIDTH
;
1238 fse
->min_height
= S5K5BAF_CIS_HEIGHT
;
1239 fse
->max_height
= S5K5BAF_CIS_HEIGHT
;
1243 i
= ARRAY_SIZE(s5k5baf_formats
);
1245 if (fse
->code
== s5k5baf_formats
[i
].code
)
1247 fse
->code
= s5k5baf_formats
[i
].code
;
1248 fse
->min_width
= S5K5BAF_WIN_WIDTH_MIN
;
1249 fse
->max_width
= S5K5BAF_CIS_WIDTH
;
1250 fse
->max_height
= S5K5BAF_WIN_HEIGHT_MIN
;
1251 fse
->min_height
= S5K5BAF_CIS_HEIGHT
;
1256 static void s5k5baf_try_cis_format(struct v4l2_mbus_framefmt
*mf
)
1258 mf
->width
= S5K5BAF_CIS_WIDTH
;
1259 mf
->height
= S5K5BAF_CIS_HEIGHT
;
1260 mf
->code
= MEDIA_BUS_FMT_FIXED
;
1261 mf
->colorspace
= V4L2_COLORSPACE_JPEG
;
1262 mf
->field
= V4L2_FIELD_NONE
;
1265 static int s5k5baf_try_isp_format(struct v4l2_mbus_framefmt
*mf
)
1269 v4l_bound_align_image(&mf
->width
, S5K5BAF_WIN_WIDTH_MIN
,
1270 S5K5BAF_CIS_WIDTH
, 1,
1271 &mf
->height
, S5K5BAF_WIN_HEIGHT_MIN
,
1272 S5K5BAF_CIS_HEIGHT
, 1, 0);
1274 pixfmt
= s5k5baf_find_pixfmt(mf
);
1276 mf
->colorspace
= s5k5baf_formats
[pixfmt
].colorspace
;
1277 mf
->code
= s5k5baf_formats
[pixfmt
].code
;
1278 mf
->field
= V4L2_FIELD_NONE
;
1283 static int s5k5baf_get_fmt(struct v4l2_subdev
*sd
,
1284 struct v4l2_subdev_state
*sd_state
,
1285 struct v4l2_subdev_format
*fmt
)
1287 struct s5k5baf
*state
= to_s5k5baf(sd
);
1288 const struct s5k5baf_pixfmt
*pixfmt
;
1289 struct v4l2_mbus_framefmt
*mf
;
1291 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1292 mf
= v4l2_subdev_state_get_format(sd_state
, fmt
->pad
);
1298 if (fmt
->pad
== PAD_CIS
) {
1299 s5k5baf_try_cis_format(mf
);
1302 mf
->field
= V4L2_FIELD_NONE
;
1303 mutex_lock(&state
->lock
);
1304 pixfmt
= &s5k5baf_formats
[state
->pixfmt
];
1305 mf
->width
= state
->crop_source
.width
;
1306 mf
->height
= state
->crop_source
.height
;
1307 mf
->code
= pixfmt
->code
;
1308 mf
->colorspace
= pixfmt
->colorspace
;
1309 mutex_unlock(&state
->lock
);
1314 static int s5k5baf_set_fmt(struct v4l2_subdev
*sd
,
1315 struct v4l2_subdev_state
*sd_state
,
1316 struct v4l2_subdev_format
*fmt
)
1318 struct v4l2_mbus_framefmt
*mf
= &fmt
->format
;
1319 struct s5k5baf
*state
= to_s5k5baf(sd
);
1320 const struct s5k5baf_pixfmt
*pixfmt
;
1323 mf
->field
= V4L2_FIELD_NONE
;
1325 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1326 *v4l2_subdev_state_get_format(sd_state
, fmt
->pad
) = *mf
;
1330 if (fmt
->pad
== PAD_CIS
) {
1331 s5k5baf_try_cis_format(mf
);
1335 mutex_lock(&state
->lock
);
1337 if (state
->streaming
) {
1338 mutex_unlock(&state
->lock
);
1342 state
->pixfmt
= s5k5baf_try_isp_format(mf
);
1343 pixfmt
= &s5k5baf_formats
[state
->pixfmt
];
1344 mf
->code
= pixfmt
->code
;
1345 mf
->colorspace
= pixfmt
->colorspace
;
1346 mf
->width
= state
->crop_source
.width
;
1347 mf
->height
= state
->crop_source
.height
;
1349 mutex_unlock(&state
->lock
);
1353 enum selection_rect
{ R_CIS
, R_CROP_SINK
, R_COMPOSE
, R_CROP_SOURCE
, R_INVALID
};
1355 static enum selection_rect
s5k5baf_get_sel_rect(u32 pad
, u32 target
)
1358 case V4L2_SEL_TGT_CROP_BOUNDS
:
1359 return pad
? R_COMPOSE
: R_CIS
;
1360 case V4L2_SEL_TGT_CROP
:
1361 return pad
? R_CROP_SOURCE
: R_CROP_SINK
;
1362 case V4L2_SEL_TGT_COMPOSE_BOUNDS
:
1363 return pad
? R_INVALID
: R_CROP_SINK
;
1364 case V4L2_SEL_TGT_COMPOSE
:
1365 return pad
? R_INVALID
: R_COMPOSE
;
1371 static int s5k5baf_is_bound_target(u32 target
)
1373 return target
== V4L2_SEL_TGT_CROP_BOUNDS
||
1374 target
== V4L2_SEL_TGT_COMPOSE_BOUNDS
;
1377 static int s5k5baf_get_selection(struct v4l2_subdev
*sd
,
1378 struct v4l2_subdev_state
*sd_state
,
1379 struct v4l2_subdev_selection
*sel
)
1381 enum selection_rect rtype
;
1382 struct s5k5baf
*state
= to_s5k5baf(sd
);
1384 rtype
= s5k5baf_get_sel_rect(sel
->pad
, sel
->target
);
1390 sel
->r
= s5k5baf_cis_rect
;
1396 if (sel
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1397 if (rtype
== R_COMPOSE
)
1398 sel
->r
= *v4l2_subdev_state_get_compose(sd_state
,
1401 sel
->r
= *v4l2_subdev_state_get_crop(sd_state
,
1406 mutex_lock(&state
->lock
);
1409 sel
->r
= state
->crop_sink
;
1412 sel
->r
= state
->compose
;
1415 sel
->r
= state
->crop_source
;
1420 if (s5k5baf_is_bound_target(sel
->target
)) {
1424 mutex_unlock(&state
->lock
);
1429 /* bounds range [start, start+len) to [0, max) and aligns to 2 */
1430 static void s5k5baf_bound_range(u32
*start
, u32
*len
, u32 max
)
1434 if (*start
+ *len
> max
)
1435 *start
= max
- *len
;
1438 if (*len
< S5K5BAF_WIN_WIDTH_MIN
)
1439 *len
= S5K5BAF_WIN_WIDTH_MIN
;
1442 static void s5k5baf_bound_rect(struct v4l2_rect
*r
, u32 width
, u32 height
)
1444 s5k5baf_bound_range(&r
->left
, &r
->width
, width
);
1445 s5k5baf_bound_range(&r
->top
, &r
->height
, height
);
1448 static void s5k5baf_set_rect_and_adjust(struct v4l2_rect
**rects
,
1449 enum selection_rect first
,
1450 struct v4l2_rect
*v
)
1452 struct v4l2_rect
*r
, *br
;
1453 enum selection_rect i
= first
;
1459 s5k5baf_bound_rect(r
, br
->width
, br
->height
);
1460 } while (++i
!= R_INVALID
);
1464 static bool s5k5baf_cmp_rect(const struct v4l2_rect
*r1
,
1465 const struct v4l2_rect
*r2
)
1467 return !memcmp(r1
, r2
, sizeof(*r1
));
1470 static int s5k5baf_set_selection(struct v4l2_subdev
*sd
,
1471 struct v4l2_subdev_state
*sd_state
,
1472 struct v4l2_subdev_selection
*sel
)
1474 static enum selection_rect rtype
;
1475 struct s5k5baf
*state
= to_s5k5baf(sd
);
1476 struct v4l2_rect
**rects
;
1479 rtype
= s5k5baf_get_sel_rect(sel
->pad
, sel
->target
);
1480 if (rtype
== R_INVALID
|| s5k5baf_is_bound_target(sel
->target
))
1483 /* allow only scaling on compose */
1484 if (rtype
== R_COMPOSE
) {
1489 if (sel
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1490 rects
= (struct v4l2_rect
* []) {
1492 v4l2_subdev_state_get_crop(sd_state
, PAD_CIS
),
1493 v4l2_subdev_state_get_compose(sd_state
, PAD_CIS
),
1494 v4l2_subdev_state_get_crop(sd_state
, PAD_OUT
)
1496 s5k5baf_set_rect_and_adjust(rects
, rtype
, &sel
->r
);
1500 rects
= (struct v4l2_rect
* []) {
1506 mutex_lock(&state
->lock
);
1507 if (state
->streaming
) {
1508 /* adjust sel->r to avoid output resolution change */
1509 if (rtype
< R_CROP_SOURCE
) {
1510 if (sel
->r
.width
< state
->crop_source
.width
)
1511 sel
->r
.width
= state
->crop_source
.width
;
1512 if (sel
->r
.height
< state
->crop_source
.height
)
1513 sel
->r
.height
= state
->crop_source
.height
;
1515 sel
->r
.width
= state
->crop_source
.width
;
1516 sel
->r
.height
= state
->crop_source
.height
;
1519 s5k5baf_set_rect_and_adjust(rects
, rtype
, &sel
->r
);
1520 if (!s5k5baf_cmp_rect(&state
->crop_sink
, &s5k5baf_cis_rect
) ||
1521 !s5k5baf_cmp_rect(&state
->compose
, &s5k5baf_cis_rect
))
1522 state
->apply_crop
= 1;
1523 if (state
->streaming
)
1524 ret
= s5k5baf_hw_set_crop_rects(state
);
1525 mutex_unlock(&state
->lock
);
1530 static const struct v4l2_subdev_pad_ops s5k5baf_cis_pad_ops
= {
1531 .enum_mbus_code
= s5k5baf_enum_mbus_code
,
1532 .enum_frame_size
= s5k5baf_enum_frame_size
,
1533 .get_fmt
= s5k5baf_get_fmt
,
1534 .set_fmt
= s5k5baf_set_fmt
,
1537 static const struct v4l2_subdev_pad_ops s5k5baf_pad_ops
= {
1538 .enum_mbus_code
= s5k5baf_enum_mbus_code
,
1539 .enum_frame_size
= s5k5baf_enum_frame_size
,
1540 .enum_frame_interval
= s5k5baf_enum_frame_interval
,
1541 .get_fmt
= s5k5baf_get_fmt
,
1542 .set_fmt
= s5k5baf_set_fmt
,
1543 .get_selection
= s5k5baf_get_selection
,
1544 .set_selection
= s5k5baf_set_selection
,
1545 .get_frame_interval
= s5k5baf_get_frame_interval
,
1546 .set_frame_interval
= s5k5baf_set_frame_interval
,
1549 static const struct v4l2_subdev_video_ops s5k5baf_video_ops
= {
1550 .s_stream
= s5k5baf_s_stream
,
1554 * V4L2 subdev controls
1557 static int s5k5baf_s_ctrl(struct v4l2_ctrl
*ctrl
)
1559 struct v4l2_subdev
*sd
= ctrl_to_sd(ctrl
);
1560 struct s5k5baf
*state
= to_s5k5baf(sd
);
1563 v4l2_dbg(1, debug
, sd
, "ctrl: %s, value: %d\n", ctrl
->name
, ctrl
->val
);
1565 mutex_lock(&state
->lock
);
1567 if (state
->power
== 0)
1571 case V4L2_CID_AUTO_WHITE_BALANCE
:
1572 s5k5baf_hw_set_awb(state
, ctrl
->val
);
1575 case V4L2_CID_BRIGHTNESS
:
1576 s5k5baf_write(state
, REG_USER_BRIGHTNESS
, ctrl
->val
);
1579 case V4L2_CID_COLORFX
:
1580 s5k5baf_hw_set_colorfx(state
, ctrl
->val
);
1583 case V4L2_CID_CONTRAST
:
1584 s5k5baf_write(state
, REG_USER_CONTRAST
, ctrl
->val
);
1587 case V4L2_CID_EXPOSURE_AUTO
:
1588 s5k5baf_hw_set_auto_exposure(state
, ctrl
->val
);
1591 case V4L2_CID_HFLIP
:
1592 s5k5baf_hw_set_mirror(state
);
1595 case V4L2_CID_POWER_LINE_FREQUENCY
:
1596 s5k5baf_hw_set_anti_flicker(state
, ctrl
->val
);
1599 case V4L2_CID_SATURATION
:
1600 s5k5baf_write(state
, REG_USER_SATURATION
, ctrl
->val
);
1603 case V4L2_CID_SHARPNESS
:
1604 s5k5baf_write(state
, REG_USER_SHARPBLUR
, ctrl
->val
);
1607 case V4L2_CID_WHITE_BALANCE_TEMPERATURE
:
1608 s5k5baf_write(state
, REG_P_COLORTEMP(0), ctrl
->val
);
1609 if (state
->apply_cfg
)
1610 s5k5baf_hw_sync_cfg(state
);
1613 case V4L2_CID_TEST_PATTERN
:
1614 s5k5baf_hw_set_test_pattern(state
, ctrl
->val
);
1618 ret
= s5k5baf_clear_error(state
);
1619 mutex_unlock(&state
->lock
);
1623 static const struct v4l2_ctrl_ops s5k5baf_ctrl_ops
= {
1624 .s_ctrl
= s5k5baf_s_ctrl
,
1627 static const char * const s5k5baf_test_pattern_menu
[] = {
1637 static int s5k5baf_initialize_ctrls(struct s5k5baf
*state
)
1639 const struct v4l2_ctrl_ops
*ops
= &s5k5baf_ctrl_ops
;
1640 struct s5k5baf_ctrls
*ctrls
= &state
->ctrls
;
1641 struct v4l2_ctrl_handler
*hdl
= &ctrls
->handler
;
1644 ret
= v4l2_ctrl_handler_init(hdl
, 16);
1646 v4l2_err(&state
->sd
, "cannot init ctrl handler (%d)\n", ret
);
1650 /* Auto white balance cluster */
1651 ctrls
->awb
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_AUTO_WHITE_BALANCE
,
1653 ctrls
->gain_red
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_RED_BALANCE
,
1654 0, 255, 1, S5K5BAF_GAIN_RED_DEF
);
1655 ctrls
->gain_blue
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_BLUE_BALANCE
,
1656 0, 255, 1, S5K5BAF_GAIN_BLUE_DEF
);
1657 v4l2_ctrl_auto_cluster(3, &ctrls
->awb
, 0, false);
1659 ctrls
->hflip
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_HFLIP
, 0, 1, 1, 0);
1660 ctrls
->vflip
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_VFLIP
, 0, 1, 1, 0);
1661 v4l2_ctrl_cluster(2, &ctrls
->hflip
);
1663 ctrls
->auto_exp
= v4l2_ctrl_new_std_menu(hdl
, ops
,
1664 V4L2_CID_EXPOSURE_AUTO
,
1665 V4L2_EXPOSURE_MANUAL
, 0, V4L2_EXPOSURE_AUTO
);
1666 /* Exposure time: x 1 us */
1667 ctrls
->exposure
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_EXPOSURE
,
1668 0, 6000000U, 1, 100000U);
1669 /* Total gain: 256 <=> 1x */
1670 ctrls
->gain
= v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_GAIN
,
1672 v4l2_ctrl_auto_cluster(3, &ctrls
->auto_exp
, 0, false);
1674 v4l2_ctrl_new_std_menu(hdl
, ops
, V4L2_CID_POWER_LINE_FREQUENCY
,
1675 V4L2_CID_POWER_LINE_FREQUENCY_AUTO
, 0,
1676 V4L2_CID_POWER_LINE_FREQUENCY_AUTO
);
1678 v4l2_ctrl_new_std_menu(hdl
, ops
, V4L2_CID_COLORFX
,
1679 V4L2_COLORFX_SKY_BLUE
, ~0x6f, V4L2_COLORFX_NONE
);
1681 v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_WHITE_BALANCE_TEMPERATURE
,
1684 v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_SATURATION
, -127, 127, 1, 0);
1685 v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_BRIGHTNESS
, -127, 127, 1, 0);
1686 v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_CONTRAST
, -127, 127, 1, 0);
1687 v4l2_ctrl_new_std(hdl
, ops
, V4L2_CID_SHARPNESS
, -127, 127, 1, 0);
1689 v4l2_ctrl_new_std_menu_items(hdl
, ops
, V4L2_CID_TEST_PATTERN
,
1690 ARRAY_SIZE(s5k5baf_test_pattern_menu
) - 1,
1691 0, 0, s5k5baf_test_pattern_menu
);
1694 v4l2_err(&state
->sd
, "error creating controls (%d)\n",
1697 v4l2_ctrl_handler_free(hdl
);
1701 state
->sd
.ctrl_handler
= hdl
;
1706 * V4L2 subdev internal operations
1708 static int s5k5baf_open(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
1710 struct v4l2_mbus_framefmt
*mf
;
1712 mf
= v4l2_subdev_state_get_format(fh
->state
, PAD_CIS
);
1713 s5k5baf_try_cis_format(mf
);
1715 if (s5k5baf_is_cis_subdev(sd
))
1718 mf
= v4l2_subdev_state_get_format(fh
->state
, PAD_OUT
);
1719 mf
->colorspace
= s5k5baf_formats
[0].colorspace
;
1720 mf
->code
= s5k5baf_formats
[0].code
;
1721 mf
->width
= s5k5baf_cis_rect
.width
;
1722 mf
->height
= s5k5baf_cis_rect
.height
;
1723 mf
->field
= V4L2_FIELD_NONE
;
1725 *v4l2_subdev_state_get_crop(fh
->state
, PAD_CIS
) = s5k5baf_cis_rect
;
1726 *v4l2_subdev_state_get_compose(fh
->state
, PAD_CIS
) = s5k5baf_cis_rect
;
1727 *v4l2_subdev_state_get_crop(fh
->state
, PAD_OUT
) = s5k5baf_cis_rect
;
1732 static int s5k5baf_check_fw_revision(struct s5k5baf
*state
)
1734 u16 api_ver
= 0, fw_rev
= 0, s_id
= 0;
1737 api_ver
= s5k5baf_read(state
, REG_FW_APIVER
);
1738 fw_rev
= s5k5baf_read(state
, REG_FW_REVISION
) & 0xff;
1739 s_id
= s5k5baf_read(state
, REG_FW_SENSOR_ID
);
1740 ret
= s5k5baf_clear_error(state
);
1744 v4l2_info(&state
->sd
, "FW API=%#x, revision=%#x sensor_id=%#x\n",
1745 api_ver
, fw_rev
, s_id
);
1747 if (api_ver
!= S5K5BAF_FW_APIVER
) {
1748 v4l2_err(&state
->sd
, "FW API version not supported\n");
1755 static int s5k5baf_registered(struct v4l2_subdev
*sd
)
1757 struct s5k5baf
*state
= to_s5k5baf(sd
);
1760 ret
= v4l2_device_register_subdev(sd
->v4l2_dev
, &state
->cis_sd
);
1762 v4l2_err(sd
, "failed to register subdev %s\n",
1763 state
->cis_sd
.name
);
1765 ret
= media_create_pad_link(&state
->cis_sd
.entity
, PAD_CIS
,
1766 &state
->sd
.entity
, PAD_CIS
,
1767 MEDIA_LNK_FL_IMMUTABLE
|
1768 MEDIA_LNK_FL_ENABLED
);
1772 static void s5k5baf_unregistered(struct v4l2_subdev
*sd
)
1774 struct s5k5baf
*state
= to_s5k5baf(sd
);
1775 v4l2_device_unregister_subdev(&state
->cis_sd
);
1778 static const struct v4l2_subdev_ops s5k5baf_cis_subdev_ops
= {
1779 .pad
= &s5k5baf_cis_pad_ops
,
1782 static const struct v4l2_subdev_internal_ops s5k5baf_cis_subdev_internal_ops
= {
1783 .open
= s5k5baf_open
,
1786 static const struct v4l2_subdev_internal_ops s5k5baf_subdev_internal_ops
= {
1787 .registered
= s5k5baf_registered
,
1788 .unregistered
= s5k5baf_unregistered
,
1789 .open
= s5k5baf_open
,
1792 static const struct v4l2_subdev_core_ops s5k5baf_core_ops
= {
1793 .s_power
= s5k5baf_set_power
,
1794 .log_status
= v4l2_ctrl_subdev_log_status
,
1797 static const struct v4l2_subdev_ops s5k5baf_subdev_ops
= {
1798 .core
= &s5k5baf_core_ops
,
1799 .pad
= &s5k5baf_pad_ops
,
1800 .video
= &s5k5baf_video_ops
,
1803 static int s5k5baf_configure_gpios(struct s5k5baf
*state
)
1805 static const char * const name
[] = { "stbyn", "rstn" };
1806 static const char * const label
[] = { "S5K5BAF_STBY", "S5K5BAF_RST" };
1807 struct i2c_client
*c
= v4l2_get_subdevdata(&state
->sd
);
1808 struct gpio_desc
*gpio
;
1811 for (i
= 0; i
< NUM_GPIOS
; ++i
) {
1812 gpio
= devm_gpiod_get(&c
->dev
, name
[i
], GPIOD_OUT_HIGH
);
1813 ret
= PTR_ERR_OR_ZERO(gpio
);
1815 v4l2_err(c
, "failed to request gpio %s: %d\n",
1820 ret
= gpiod_set_consumer_name(gpio
, label
[i
]);
1822 v4l2_err(c
, "failed to set up name for gpio %s: %d\n",
1827 state
->gpios
[i
] = gpio
;
1832 static int s5k5baf_parse_device_node(struct s5k5baf
*state
, struct device
*dev
)
1834 struct device_node
*node
= dev
->of_node
;
1835 struct device_node
*node_ep
;
1836 struct v4l2_fwnode_endpoint ep
= { .bus_type
= 0 };
1840 dev_err(dev
, "no device-tree node provided\n");
1844 ret
= of_property_read_u32(node
, "clock-frequency",
1845 &state
->mclk_frequency
);
1847 state
->mclk_frequency
= S5K5BAF_DEFAULT_MCLK_FREQ
;
1848 dev_info(dev
, "using default %u Hz clock frequency\n",
1849 state
->mclk_frequency
);
1852 node_ep
= of_graph_get_endpoint_by_regs(node
, 0, -1);
1854 dev_err(dev
, "no endpoint defined at node %pOF\n", node
);
1858 ret
= v4l2_fwnode_endpoint_parse(of_fwnode_handle(node_ep
), &ep
);
1859 of_node_put(node_ep
);
1863 state
->bus_type
= ep
.bus_type
;
1865 switch (state
->bus_type
) {
1866 case V4L2_MBUS_CSI2_DPHY
:
1867 state
->nlanes
= ep
.bus
.mipi_csi2
.num_data_lanes
;
1869 case V4L2_MBUS_PARALLEL
:
1872 dev_err(dev
, "unsupported bus in endpoint defined at node %pOF\n",
1880 static int s5k5baf_configure_subdevs(struct s5k5baf
*state
,
1881 struct i2c_client
*c
)
1883 struct v4l2_subdev
*sd
;
1886 sd
= &state
->cis_sd
;
1887 v4l2_subdev_init(sd
, &s5k5baf_cis_subdev_ops
);
1888 sd
->owner
= THIS_MODULE
;
1889 v4l2_set_subdevdata(sd
, state
);
1890 snprintf(sd
->name
, sizeof(sd
->name
), "S5K5BAF-CIS %d-%04x",
1891 i2c_adapter_id(c
->adapter
), c
->addr
);
1893 sd
->internal_ops
= &s5k5baf_cis_subdev_internal_ops
;
1894 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1896 state
->cis_pad
.flags
= MEDIA_PAD_FL_SOURCE
;
1897 sd
->entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
1898 ret
= media_entity_pads_init(&sd
->entity
, NUM_CIS_PADS
, &state
->cis_pad
);
1903 v4l2_i2c_subdev_init(sd
, c
, &s5k5baf_subdev_ops
);
1904 snprintf(sd
->name
, sizeof(sd
->name
), "S5K5BAF-ISP %d-%04x",
1905 i2c_adapter_id(c
->adapter
), c
->addr
);
1907 sd
->internal_ops
= &s5k5baf_subdev_internal_ops
;
1908 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1910 state
->pads
[PAD_CIS
].flags
= MEDIA_PAD_FL_SINK
;
1911 state
->pads
[PAD_OUT
].flags
= MEDIA_PAD_FL_SOURCE
;
1912 sd
->entity
.function
= MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN
;
1913 ret
= media_entity_pads_init(&sd
->entity
, NUM_ISP_PADS
, state
->pads
);
1918 media_entity_cleanup(&state
->cis_sd
.entity
);
1920 dev_err(&c
->dev
, "cannot init media entity %s\n", sd
->name
);
1924 static int s5k5baf_configure_regulators(struct s5k5baf
*state
)
1926 struct i2c_client
*c
= v4l2_get_subdevdata(&state
->sd
);
1930 for (i
= 0; i
< S5K5BAF_NUM_SUPPLIES
; i
++)
1931 state
->supplies
[i
].supply
= s5k5baf_supply_names
[i
];
1933 ret
= devm_regulator_bulk_get(&c
->dev
, S5K5BAF_NUM_SUPPLIES
,
1936 v4l2_err(c
, "failed to get regulators\n");
1940 static int s5k5baf_probe(struct i2c_client
*c
)
1942 struct s5k5baf
*state
;
1945 state
= devm_kzalloc(&c
->dev
, sizeof(*state
), GFP_KERNEL
);
1949 mutex_init(&state
->lock
);
1950 state
->crop_sink
= s5k5baf_cis_rect
;
1951 state
->compose
= s5k5baf_cis_rect
;
1952 state
->crop_source
= s5k5baf_cis_rect
;
1954 ret
= s5k5baf_parse_device_node(state
, &c
->dev
);
1958 ret
= s5k5baf_configure_subdevs(state
, c
);
1962 ret
= s5k5baf_configure_gpios(state
);
1966 ret
= s5k5baf_configure_regulators(state
);
1970 state
->clock
= devm_clk_get(state
->sd
.dev
, S5K5BAF_CLK_NAME
);
1971 if (IS_ERR(state
->clock
)) {
1972 ret
= -EPROBE_DEFER
;
1976 ret
= s5k5baf_power_on(state
);
1978 ret
= -EPROBE_DEFER
;
1981 s5k5baf_hw_init(state
);
1982 ret
= s5k5baf_check_fw_revision(state
);
1984 s5k5baf_power_off(state
);
1988 ret
= s5k5baf_initialize_ctrls(state
);
1992 ret
= v4l2_async_register_subdev(&state
->sd
);
1999 v4l2_ctrl_handler_free(state
->sd
.ctrl_handler
);
2001 media_entity_cleanup(&state
->sd
.entity
);
2002 media_entity_cleanup(&state
->cis_sd
.entity
);
2006 static void s5k5baf_remove(struct i2c_client
*c
)
2008 struct v4l2_subdev
*sd
= i2c_get_clientdata(c
);
2009 struct s5k5baf
*state
= to_s5k5baf(sd
);
2011 v4l2_async_unregister_subdev(sd
);
2012 v4l2_ctrl_handler_free(sd
->ctrl_handler
);
2013 media_entity_cleanup(&sd
->entity
);
2015 sd
= &state
->cis_sd
;
2016 v4l2_device_unregister_subdev(sd
);
2017 media_entity_cleanup(&sd
->entity
);
2020 static const struct i2c_device_id s5k5baf_id
[] = {
2021 { S5K5BAF_DRIVER_NAME
},
2024 MODULE_DEVICE_TABLE(i2c
, s5k5baf_id
);
2026 static const struct of_device_id s5k5baf_of_match
[] = {
2027 { .compatible
= "samsung,s5k5baf" },
2030 MODULE_DEVICE_TABLE(of
, s5k5baf_of_match
);
2032 static struct i2c_driver s5k5baf_i2c_driver
= {
2034 .of_match_table
= s5k5baf_of_match
,
2035 .name
= S5K5BAF_DRIVER_NAME
2037 .probe
= s5k5baf_probe
,
2038 .remove
= s5k5baf_remove
,
2039 .id_table
= s5k5baf_id
,
2042 module_i2c_driver(s5k5baf_i2c_driver
);
2044 MODULE_DESCRIPTION("Samsung S5K5BAF(X) UXGA camera driver");
2045 MODULE_AUTHOR("Andrzej Hajda <a.hajda@samsung.com>");
2046 MODULE_LICENSE("GPL v2");