2 * Samsung LSI S5C73M3 8M pixel camera driver
4 * Copyright (C) 2012, Samsung Electronics, Co., Ltd.
5 * Sylwester Nawrocki <s.nawrocki@samsung.com>
6 * Andrzej Hajda <a.hajda@samsung.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/clk.h>
19 #include <linux/delay.h>
20 #include <linux/firmware.h>
21 #include <linux/gpio.h>
22 #include <linux/i2c.h>
23 #include <linux/init.h>
24 #include <linux/media.h>
25 #include <linux/module.h>
26 #include <linux/of_gpio.h>
27 #include <linux/regulator/consumer.h>
28 #include <linux/sizes.h>
29 #include <linux/slab.h>
30 #include <linux/spi/spi.h>
31 #include <linux/videodev2.h>
32 #include <media/media-entity.h>
33 #include <media/v4l2-ctrls.h>
34 #include <media/v4l2-device.h>
35 #include <media/v4l2-subdev.h>
36 #include <media/v4l2-mediabus.h>
37 #include <media/i2c/s5c73m3.h>
38 #include <media/v4l2-of.h>
43 module_param_named(debug
, s5c73m3_dbg
, int, 0644);
45 static int boot_from_rom
= 1;
46 module_param(boot_from_rom
, int, 0644);
49 module_param(update_fw
, int, 0644);
51 #define S5C73M3_EMBEDDED_DATA_MAXLEN SZ_4K
52 #define S5C73M3_MIPI_DATA_LANES 4
53 #define S5C73M3_CLK_NAME "cis_extclk"
55 static const char * const s5c73m3_supply_names
[S5C73M3_MAX_SUPPLIES
] = {
56 "vdd-int", /* Digital Core supply (1.2V), CAM_ISP_CORE_1.2V */
57 "vdda", /* Analog Core supply (1.2V), CAM_SENSOR_CORE_1.2V */
58 "vdd-reg", /* Regulator input supply (2.8V), CAM_SENSOR_A2.8V */
59 "vddio-host", /* Digital Host I/O power supply (1.8V...2.8V),
60 CAM_ISP_SENSOR_1.8V */
61 "vddio-cis", /* Digital CIS I/O power (1.2V...1.8V),
63 "vdd-af", /* Lens, CAM_AF_2.8V */
66 static const struct s5c73m3_frame_size s5c73m3_isp_resolutions
[] = {
67 { 320, 240, COMM_CHG_MODE_YUV_320_240
},
68 { 352, 288, COMM_CHG_MODE_YUV_352_288
},
69 { 640, 480, COMM_CHG_MODE_YUV_640_480
},
70 { 880, 720, COMM_CHG_MODE_YUV_880_720
},
71 { 960, 720, COMM_CHG_MODE_YUV_960_720
},
72 { 1008, 672, COMM_CHG_MODE_YUV_1008_672
},
73 { 1184, 666, COMM_CHG_MODE_YUV_1184_666
},
74 { 1280, 720, COMM_CHG_MODE_YUV_1280_720
},
75 { 1536, 864, COMM_CHG_MODE_YUV_1536_864
},
76 { 1600, 1200, COMM_CHG_MODE_YUV_1600_1200
},
77 { 1632, 1224, COMM_CHG_MODE_YUV_1632_1224
},
78 { 1920, 1080, COMM_CHG_MODE_YUV_1920_1080
},
79 { 1920, 1440, COMM_CHG_MODE_YUV_1920_1440
},
80 { 2304, 1296, COMM_CHG_MODE_YUV_2304_1296
},
81 { 3264, 2448, COMM_CHG_MODE_YUV_3264_2448
},
84 static const struct s5c73m3_frame_size s5c73m3_jpeg_resolutions
[] = {
85 { 640, 480, COMM_CHG_MODE_JPEG_640_480
},
86 { 800, 450, COMM_CHG_MODE_JPEG_800_450
},
87 { 800, 600, COMM_CHG_MODE_JPEG_800_600
},
88 { 1024, 768, COMM_CHG_MODE_JPEG_1024_768
},
89 { 1280, 720, COMM_CHG_MODE_JPEG_1280_720
},
90 { 1280, 960, COMM_CHG_MODE_JPEG_1280_960
},
91 { 1600, 900, COMM_CHG_MODE_JPEG_1600_900
},
92 { 1600, 1200, COMM_CHG_MODE_JPEG_1600_1200
},
93 { 2048, 1152, COMM_CHG_MODE_JPEG_2048_1152
},
94 { 2048, 1536, COMM_CHG_MODE_JPEG_2048_1536
},
95 { 2560, 1440, COMM_CHG_MODE_JPEG_2560_1440
},
96 { 2560, 1920, COMM_CHG_MODE_JPEG_2560_1920
},
97 { 3264, 1836, COMM_CHG_MODE_JPEG_3264_1836
},
98 { 3264, 2176, COMM_CHG_MODE_JPEG_3264_2176
},
99 { 3264, 2448, COMM_CHG_MODE_JPEG_3264_2448
},
102 static const struct s5c73m3_frame_size
* const s5c73m3_resolutions
[] = {
103 [RES_ISP
] = s5c73m3_isp_resolutions
,
104 [RES_JPEG
] = s5c73m3_jpeg_resolutions
107 static const int s5c73m3_resolutions_len
[] = {
108 [RES_ISP
] = ARRAY_SIZE(s5c73m3_isp_resolutions
),
109 [RES_JPEG
] = ARRAY_SIZE(s5c73m3_jpeg_resolutions
)
112 static const struct s5c73m3_interval s5c73m3_intervals
[] = {
113 { COMM_FRAME_RATE_FIXED_7FPS
, {142857, 1000000}, {3264, 2448} },
114 { COMM_FRAME_RATE_FIXED_15FPS
, {66667, 1000000}, {3264, 2448} },
115 { COMM_FRAME_RATE_FIXED_20FPS
, {50000, 1000000}, {2304, 1296} },
116 { COMM_FRAME_RATE_FIXED_30FPS
, {33333, 1000000}, {2304, 1296} },
119 #define S5C73M3_DEFAULT_FRAME_INTERVAL 3 /* 30 fps */
121 static void s5c73m3_fill_mbus_fmt(struct v4l2_mbus_framefmt
*mf
,
122 const struct s5c73m3_frame_size
*fs
,
125 mf
->width
= fs
->width
;
126 mf
->height
= fs
->height
;
128 mf
->colorspace
= V4L2_COLORSPACE_JPEG
;
129 mf
->field
= V4L2_FIELD_NONE
;
132 static int s5c73m3_i2c_write(struct i2c_client
*client
, u16 addr
, u16 data
)
134 u8 buf
[4] = { addr
>> 8, addr
& 0xff, data
>> 8, data
& 0xff };
136 int ret
= i2c_master_send(client
, buf
, sizeof(buf
));
138 v4l_dbg(4, s5c73m3_dbg
, client
, "%s: addr 0x%04x, data 0x%04x\n",
139 __func__
, addr
, data
);
144 return ret
< 0 ? ret
: -EREMOTEIO
;
147 static int s5c73m3_i2c_read(struct i2c_client
*client
, u16 addr
, u16
*data
)
150 u8 rbuf
[2], wbuf
[2] = { addr
>> 8, addr
& 0xff };
151 struct i2c_msg msg
[2] = {
153 .addr
= client
->addr
,
158 .addr
= client
->addr
,
165 * Issue repeated START after writing 2 address bytes and
166 * just one STOP only after reading the data bytes.
168 ret
= i2c_transfer(client
->adapter
, msg
, 2);
170 *data
= be16_to_cpup((__be16
*)rbuf
);
171 v4l2_dbg(4, s5c73m3_dbg
, client
,
172 "%s: addr: 0x%04x, data: 0x%04x\n",
173 __func__
, addr
, *data
);
177 v4l2_err(client
, "I2C read failed: addr: %04x, (%d)\n", addr
, ret
);
179 return ret
>= 0 ? -EREMOTEIO
: ret
;
182 int s5c73m3_write(struct s5c73m3
*state
, u32 addr
, u16 data
)
184 struct i2c_client
*client
= state
->i2c_client
;
187 if ((addr
^ state
->i2c_write_address
) & 0xffff0000) {
188 ret
= s5c73m3_i2c_write(client
, REG_CMDWR_ADDRH
, addr
>> 16);
190 state
->i2c_write_address
= 0;
195 if ((addr
^ state
->i2c_write_address
) & 0xffff) {
196 ret
= s5c73m3_i2c_write(client
, REG_CMDWR_ADDRL
, addr
& 0xffff);
198 state
->i2c_write_address
= 0;
203 state
->i2c_write_address
= addr
;
205 ret
= s5c73m3_i2c_write(client
, REG_CMDBUF_ADDR
, data
);
209 state
->i2c_write_address
+= 2;
214 int s5c73m3_read(struct s5c73m3
*state
, u32 addr
, u16
*data
)
216 struct i2c_client
*client
= state
->i2c_client
;
219 if ((addr
^ state
->i2c_read_address
) & 0xffff0000) {
220 ret
= s5c73m3_i2c_write(client
, REG_CMDRD_ADDRH
, addr
>> 16);
222 state
->i2c_read_address
= 0;
227 if ((addr
^ state
->i2c_read_address
) & 0xffff) {
228 ret
= s5c73m3_i2c_write(client
, REG_CMDRD_ADDRL
, addr
& 0xffff);
230 state
->i2c_read_address
= 0;
235 state
->i2c_read_address
= addr
;
237 ret
= s5c73m3_i2c_read(client
, REG_CMDBUF_ADDR
, data
);
241 state
->i2c_read_address
+= 2;
246 static int s5c73m3_check_status(struct s5c73m3
*state
, unsigned int value
)
248 unsigned long start
= jiffies
;
249 unsigned long end
= start
+ msecs_to_jiffies(2000);
254 while (time_is_after_jiffies(end
)) {
255 ret
= s5c73m3_read(state
, REG_STATUS
, &status
);
256 if (ret
< 0 || status
== value
)
258 usleep_range(500, 1000);
263 v4l2_dbg(1, s5c73m3_dbg
, &state
->sensor_sd
,
264 "status check took %dms\n",
265 jiffies_to_msecs(jiffies
- start
));
267 if (ret
== 0 && status
!= value
) {
269 u16 i2c_seq_status
= 0;
271 s5c73m3_read(state
, REG_I2C_STATUS
, &i2c_status
);
272 s5c73m3_read(state
, REG_I2C_SEQ_STATUS
, &i2c_seq_status
);
274 v4l2_err(&state
->sensor_sd
,
275 "wrong status %#x, expected: %#x, i2c_status: %#x/%#x\n",
276 status
, value
, i2c_status
, i2c_seq_status
);
284 int s5c73m3_isp_command(struct s5c73m3
*state
, u16 command
, u16 data
)
288 ret
= s5c73m3_check_status(state
, REG_STATUS_ISP_COMMAND_COMPLETED
);
292 ret
= s5c73m3_write(state
, 0x00095000, command
);
296 ret
= s5c73m3_write(state
, 0x00095002, data
);
300 return s5c73m3_write(state
, REG_STATUS
, 0x0001);
303 static int s5c73m3_isp_comm_result(struct s5c73m3
*state
, u16 command
,
306 return s5c73m3_read(state
, COMM_RESULT_OFFSET
+ command
, data
);
309 static int s5c73m3_set_af_softlanding(struct s5c73m3
*state
)
311 unsigned long start
= jiffies
;
317 ret
= s5c73m3_isp_command(state
, COMM_AF_SOFTLANDING
,
318 COMM_AF_SOFTLANDING_ON
);
320 v4l2_info(&state
->sensor_sd
, "AF soft-landing failed\n");
325 ret
= s5c73m3_isp_comm_result(state
, COMM_AF_SOFTLANDING
,
331 if (af_softlanding
== COMM_AF_SOFTLANDING_RES_COMPLETE
) {
343 v4l2_info(&state
->sensor_sd
, "AF soft-landing %s after %dms\n",
344 msg
, jiffies_to_msecs(jiffies
- start
));
349 static int s5c73m3_load_fw(struct v4l2_subdev
*sd
)
351 struct s5c73m3
*state
= sensor_sd_to_s5c73m3(sd
);
352 struct i2c_client
*client
= state
->i2c_client
;
353 const struct firmware
*fw
;
357 snprintf(fw_name
, sizeof(fw_name
), "SlimISP_%.2s.bin",
358 state
->fw_file_version
);
359 ret
= request_firmware(&fw
, fw_name
, &client
->dev
);
361 v4l2_err(sd
, "Firmware request failed (%s)\n", fw_name
);
365 v4l2_info(sd
, "Loading firmware (%s, %zu B)\n", fw_name
, fw
->size
);
367 ret
= s5c73m3_spi_write(state
, fw
->data
, fw
->size
, 64);
370 state
->isp_ready
= 1;
372 v4l2_err(sd
, "SPI write failed\n");
374 release_firmware(fw
);
379 static int s5c73m3_set_frame_size(struct s5c73m3
*state
)
381 const struct s5c73m3_frame_size
*prev_size
=
382 state
->sensor_pix_size
[RES_ISP
];
383 const struct s5c73m3_frame_size
*cap_size
=
384 state
->sensor_pix_size
[RES_JPEG
];
385 unsigned int chg_mode
;
387 v4l2_dbg(1, s5c73m3_dbg
, &state
->sensor_sd
,
388 "Preview size: %dx%d, reg_val: 0x%x\n",
389 prev_size
->width
, prev_size
->height
, prev_size
->reg_val
);
391 chg_mode
= prev_size
->reg_val
| COMM_CHG_MODE_NEW
;
393 if (state
->mbus_code
== S5C73M3_JPEG_FMT
) {
394 v4l2_dbg(1, s5c73m3_dbg
, &state
->sensor_sd
,
395 "Capture size: %dx%d, reg_val: 0x%x\n",
396 cap_size
->width
, cap_size
->height
, cap_size
->reg_val
);
397 chg_mode
|= cap_size
->reg_val
;
400 return s5c73m3_isp_command(state
, COMM_CHG_MODE
, chg_mode
);
403 static int s5c73m3_set_frame_rate(struct s5c73m3
*state
)
407 if (state
->ctrls
.stabilization
->val
)
410 if (WARN_ON(state
->fiv
== NULL
))
413 ret
= s5c73m3_isp_command(state
, COMM_FRAME_RATE
, state
->fiv
->fps_reg
);
415 state
->apply_fiv
= 0;
420 static int __s5c73m3_s_stream(struct s5c73m3
*state
, struct v4l2_subdev
*sd
,
426 if (on
&& state
->apply_fmt
) {
427 if (state
->mbus_code
== S5C73M3_JPEG_FMT
)
428 mode
= COMM_IMG_OUTPUT_INTERLEAVED
;
430 mode
= COMM_IMG_OUTPUT_YUV
;
432 ret
= s5c73m3_isp_command(state
, COMM_IMG_OUTPUT
, mode
);
434 ret
= s5c73m3_set_frame_size(state
);
437 state
->apply_fmt
= 0;
440 ret
= s5c73m3_isp_command(state
, COMM_SENSOR_STREAMING
, !!on
);
444 state
->streaming
= !!on
;
449 if (state
->apply_fiv
) {
450 ret
= s5c73m3_set_frame_rate(state
);
452 v4l2_err(sd
, "Error setting frame rate(%d)\n", ret
);
455 return s5c73m3_check_status(state
, REG_STATUS_ISP_COMMAND_COMPLETED
);
458 static int s5c73m3_oif_s_stream(struct v4l2_subdev
*sd
, int on
)
460 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
463 mutex_lock(&state
->lock
);
464 ret
= __s5c73m3_s_stream(state
, sd
, on
);
465 mutex_unlock(&state
->lock
);
470 static int s5c73m3_system_status_wait(struct s5c73m3
*state
, u32 value
,
471 unsigned int delay
, unsigned int steps
)
475 while (steps
-- > 0) {
476 int ret
= s5c73m3_read(state
, 0x30100010, ®
);
481 usleep_range(delay
, delay
+ 25);
486 static int s5c73m3_read_fw_version(struct s5c73m3
*state
)
488 struct v4l2_subdev
*sd
= &state
->sensor_sd
;
493 offset
= state
->isp_ready
? 0x60 : 0;
495 for (i
= 0; i
< S5C73M3_SENSOR_FW_LEN
/ 2; i
++) {
496 ret
= s5c73m3_read(state
, offset
+ i
* 2, data
);
499 state
->sensor_fw
[i
* 2] = (char)(*data
& 0xff);
500 state
->sensor_fw
[i
* 2 + 1] = (char)(*data
>> 8);
502 state
->sensor_fw
[S5C73M3_SENSOR_FW_LEN
] = '\0';
505 for (i
= 0; i
< S5C73M3_SENSOR_TYPE_LEN
/ 2; i
++) {
506 ret
= s5c73m3_read(state
, offset
+ 6 + i
* 2, data
);
509 state
->sensor_type
[i
* 2] = (char)(*data
& 0xff);
510 state
->sensor_type
[i
* 2 + 1] = (char)(*data
>> 8);
512 state
->sensor_type
[S5C73M3_SENSOR_TYPE_LEN
] = '\0';
514 ret
= s5c73m3_read(state
, offset
+ 0x14, data
);
516 ret
= s5c73m3_read(state
, offset
+ 0x16, data
+ 1);
518 state
->fw_size
= data
[0] + (data
[1] << 16);
521 v4l2_info(sd
, "Sensor type: %s, FW version: %s\n",
522 state
->sensor_type
, state
->sensor_fw
);
526 static int s5c73m3_fw_update_from(struct s5c73m3
*state
)
528 struct v4l2_subdev
*sd
= &state
->sensor_sd
;
529 u16 status
= COMM_FW_UPDATE_NOT_READY
;
533 v4l2_warn(sd
, "Updating F-ROM firmware.\n");
535 if (status
== COMM_FW_UPDATE_NOT_READY
) {
536 ret
= s5c73m3_isp_command(state
, COMM_FW_UPDATE
, 0);
541 ret
= s5c73m3_read(state
, 0x00095906, &status
);
545 case COMM_FW_UPDATE_FAIL
:
546 v4l2_warn(sd
, "Updating F-ROM firmware failed.\n");
548 case COMM_FW_UPDATE_SUCCESS
:
549 v4l2_warn(sd
, "Updating F-ROM firmware finished.\n");
554 } while (count
< 500);
556 v4l2_warn(sd
, "Updating F-ROM firmware timed-out.\n");
560 static int s5c73m3_spi_boot(struct s5c73m3
*state
, bool load_fw
)
562 struct v4l2_subdev
*sd
= &state
->sensor_sd
;
566 ret
= s5c73m3_write(state
, 0x30000004, 0xffff);
570 usleep_range(400, 500);
572 /* Check booting status */
573 ret
= s5c73m3_system_status_wait(state
, 0x0c, 100, 3);
575 v4l2_err(sd
, "booting failed: %d\n", ret
);
579 /* P,M,S and Boot Mode */
580 ret
= s5c73m3_write(state
, 0x30100014, 0x2146);
584 ret
= s5c73m3_write(state
, 0x30100010, 0x210c);
588 usleep_range(200, 250);
590 /* Check SPI status */
591 ret
= s5c73m3_system_status_wait(state
, 0x210d, 100, 300);
593 v4l2_err(sd
, "SPI not ready: %d\n", ret
);
595 /* Firmware download over SPI */
600 ret
= s5c73m3_write(state
, 0x30000004, 0xfffd);
605 ret
= s5c73m3_write(state
, 0x301000a4, 0x0183);
610 ret
= s5c73m3_write(state
, 0x30000004, 0xffff);
611 if (ret
< 0 || !load_fw
)
614 ret
= s5c73m3_read_fw_version(state
);
618 if (load_fw
&& update_fw
) {
619 ret
= s5c73m3_fw_update_from(state
);
626 static int s5c73m3_set_timing_register_for_vdd(struct s5c73m3
*state
)
628 static const u32 regs
[][2] = {
629 { 0x30100018, 0x0618 },
630 { 0x3010001c, 0x10c1 },
631 { 0x30100020, 0x249e }
636 for (i
= 0; i
< ARRAY_SIZE(regs
); i
++) {
637 ret
= s5c73m3_write(state
, regs
[i
][0], regs
[i
][1]);
645 static void s5c73m3_set_fw_file_version(struct s5c73m3
*state
)
647 switch (state
->sensor_fw
[0]) {
650 state
->fw_file_version
[0] = 'G';
654 state
->fw_file_version
[0] = 'Z';
658 switch (state
->sensor_fw
[1]) {
660 state
->fw_file_version
[1] = state
->sensor_fw
[1];
665 static int s5c73m3_get_fw_version(struct s5c73m3
*state
)
667 struct v4l2_subdev
*sd
= &state
->sensor_sd
;
671 ret
= s5c73m3_write(state
, 0x30000004, 0xffff);
674 usleep_range(400, 500);
676 /* Check booting status */
677 ret
= s5c73m3_system_status_wait(state
, 0x0c, 100, 3);
680 v4l2_err(sd
, "%s: booting failed: %d\n", __func__
, ret
);
684 /* Change I/O Driver Current in order to read from F-ROM */
685 ret
= s5c73m3_write(state
, 0x30100120, 0x0820);
686 ret
= s5c73m3_write(state
, 0x30100124, 0x0820);
689 ret
= s5c73m3_write(state
, 0x00010418, 0x0008);
691 /* P,M,S and Boot Mode */
692 ret
= s5c73m3_write(state
, 0x30100014, 0x2146);
695 ret
= s5c73m3_write(state
, 0x30100010, 0x230c);
699 usleep_range(200, 250);
701 /* Check SPI status */
702 ret
= s5c73m3_system_status_wait(state
, 0x230e, 100, 300);
704 v4l2_err(sd
, "SPI not ready: %d\n", ret
);
707 ret
= s5c73m3_write(state
, 0x30000004, 0xfffd);
712 ret
= s5c73m3_write(state
, 0x301000a4, 0x0183);
716 s5c73m3_set_timing_register_for_vdd(state
);
718 ret
= s5c73m3_read_fw_version(state
);
720 s5c73m3_set_fw_file_version(state
);
725 static int s5c73m3_rom_boot(struct s5c73m3
*state
, bool load_fw
)
727 static const u32 boot_regs
[][2] = {
728 { 0x3100010c, 0x0044 },
729 { 0x31000108, 0x000d },
730 { 0x31000304, 0x0001 },
731 { 0x00010000, 0x5800 },
732 { 0x00010002, 0x0002 },
733 { 0x31000000, 0x0001 },
734 { 0x30100014, 0x1b85 },
735 { 0x30100010, 0x230c }
737 struct v4l2_subdev
*sd
= &state
->sensor_sd
;
741 ret
= s5c73m3_write(state
, 0x30000004, 0xffff);
744 usleep_range(400, 450);
746 /* Check booting status */
747 ret
= s5c73m3_system_status_wait(state
, 0x0c, 100, 4);
749 v4l2_err(sd
, "Booting failed: %d\n", ret
);
753 for (i
= 0; i
< ARRAY_SIZE(boot_regs
); i
++) {
754 ret
= s5c73m3_write(state
, boot_regs
[i
][0], boot_regs
[i
][1]);
760 /* Check the binary read status */
761 ret
= s5c73m3_system_status_wait(state
, 0x230e, 1000, 150);
763 v4l2_err(sd
, "Binary read failed: %d\n", ret
);
768 ret
= s5c73m3_write(state
, 0x30000004, 0xfffd);
772 ret
= s5c73m3_write(state
, 0x301000a4, 0x0183);
776 ret
= s5c73m3_write(state
, 0x30000004, 0xffff);
780 state
->isp_ready
= 1;
782 return s5c73m3_read_fw_version(state
);
785 static int s5c73m3_isp_init(struct s5c73m3
*state
)
789 state
->i2c_read_address
= 0;
790 state
->i2c_write_address
= 0;
792 ret
= s5c73m3_i2c_write(state
->i2c_client
, AHB_MSB_ADDR_PTR
, 0x3310);
797 return s5c73m3_rom_boot(state
, true);
799 return s5c73m3_spi_boot(state
, true);
802 static const struct s5c73m3_frame_size
*s5c73m3_find_frame_size(
803 struct v4l2_mbus_framefmt
*fmt
,
804 enum s5c73m3_resolution_types idx
)
806 const struct s5c73m3_frame_size
*fs
;
807 const struct s5c73m3_frame_size
*best_fs
;
808 int best_dist
= INT_MAX
;
811 fs
= s5c73m3_resolutions
[idx
];
813 for (i
= 0; i
< s5c73m3_resolutions_len
[idx
]; ++i
) {
814 int dist
= abs(fs
->width
- fmt
->width
) +
815 abs(fs
->height
- fmt
->height
);
816 if (dist
< best_dist
) {
826 static void s5c73m3_oif_try_format(struct s5c73m3
*state
,
827 struct v4l2_subdev_pad_config
*cfg
,
828 struct v4l2_subdev_format
*fmt
,
829 const struct s5c73m3_frame_size
**fs
)
831 struct v4l2_subdev
*sd
= &state
->sensor_sd
;
836 *fs
= s5c73m3_find_frame_size(&fmt
->format
, RES_ISP
);
837 code
= S5C73M3_ISP_FMT
;
840 *fs
= s5c73m3_find_frame_size(&fmt
->format
, RES_JPEG
);
841 code
= S5C73M3_JPEG_FMT
;
845 if (fmt
->format
.code
== S5C73M3_JPEG_FMT
)
846 code
= S5C73M3_JPEG_FMT
;
848 code
= S5C73M3_ISP_FMT
;
850 if (fmt
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
)
851 *fs
= state
->oif_pix_size
[RES_ISP
];
853 *fs
= s5c73m3_find_frame_size(
854 v4l2_subdev_get_try_format(sd
, cfg
,
860 s5c73m3_fill_mbus_fmt(&fmt
->format
, *fs
, code
);
863 static void s5c73m3_try_format(struct s5c73m3
*state
,
864 struct v4l2_subdev_pad_config
*cfg
,
865 struct v4l2_subdev_format
*fmt
,
866 const struct s5c73m3_frame_size
**fs
)
870 if (fmt
->pad
== S5C73M3_ISP_PAD
) {
871 *fs
= s5c73m3_find_frame_size(&fmt
->format
, RES_ISP
);
872 code
= S5C73M3_ISP_FMT
;
874 *fs
= s5c73m3_find_frame_size(&fmt
->format
, RES_JPEG
);
875 code
= S5C73M3_JPEG_FMT
;
878 s5c73m3_fill_mbus_fmt(&fmt
->format
, *fs
, code
);
881 static int s5c73m3_oif_g_frame_interval(struct v4l2_subdev
*sd
,
882 struct v4l2_subdev_frame_interval
*fi
)
884 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
886 if (fi
->pad
!= OIF_SOURCE_PAD
)
889 mutex_lock(&state
->lock
);
890 fi
->interval
= state
->fiv
->interval
;
891 mutex_unlock(&state
->lock
);
896 static int __s5c73m3_set_frame_interval(struct s5c73m3
*state
,
897 struct v4l2_subdev_frame_interval
*fi
)
899 const struct s5c73m3_frame_size
*prev_size
=
900 state
->sensor_pix_size
[RES_ISP
];
901 const struct s5c73m3_interval
*fiv
= &s5c73m3_intervals
[0];
902 unsigned int ret
, min_err
= UINT_MAX
;
903 unsigned int i
, fr_time
;
905 if (fi
->interval
.denominator
== 0)
908 fr_time
= fi
->interval
.numerator
* 1000 / fi
->interval
.denominator
;
910 for (i
= 0; i
< ARRAY_SIZE(s5c73m3_intervals
); i
++) {
911 const struct s5c73m3_interval
*iv
= &s5c73m3_intervals
[i
];
913 if (prev_size
->width
> iv
->size
.width
||
914 prev_size
->height
> iv
->size
.height
)
917 ret
= abs(iv
->interval
.numerator
/ 1000 - fr_time
);
925 v4l2_dbg(1, s5c73m3_dbg
, &state
->sensor_sd
,
926 "Changed frame interval to %u us\n", fiv
->interval
.numerator
);
930 static int s5c73m3_oif_s_frame_interval(struct v4l2_subdev
*sd
,
931 struct v4l2_subdev_frame_interval
*fi
)
933 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
936 if (fi
->pad
!= OIF_SOURCE_PAD
)
939 v4l2_dbg(1, s5c73m3_dbg
, sd
, "Setting %d/%d frame interval\n",
940 fi
->interval
.numerator
, fi
->interval
.denominator
);
942 mutex_lock(&state
->lock
);
944 ret
= __s5c73m3_set_frame_interval(state
, fi
);
946 if (state
->streaming
)
947 ret
= s5c73m3_set_frame_rate(state
);
949 state
->apply_fiv
= 1;
951 mutex_unlock(&state
->lock
);
955 static int s5c73m3_oif_enum_frame_interval(struct v4l2_subdev
*sd
,
956 struct v4l2_subdev_pad_config
*cfg
,
957 struct v4l2_subdev_frame_interval_enum
*fie
)
959 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
960 const struct s5c73m3_interval
*fi
;
963 if (fie
->pad
!= OIF_SOURCE_PAD
)
965 if (fie
->index
>= ARRAY_SIZE(s5c73m3_intervals
))
968 mutex_lock(&state
->lock
);
969 fi
= &s5c73m3_intervals
[fie
->index
];
970 if (fie
->width
> fi
->size
.width
|| fie
->height
> fi
->size
.height
)
973 fie
->interval
= fi
->interval
;
974 mutex_unlock(&state
->lock
);
979 static int s5c73m3_oif_get_pad_code(int pad
, int index
)
981 if (pad
== OIF_SOURCE_PAD
) {
984 return (index
== 0) ? S5C73M3_ISP_FMT
: S5C73M3_JPEG_FMT
;
990 return (pad
== OIF_ISP_PAD
) ? S5C73M3_ISP_FMT
: S5C73M3_JPEG_FMT
;
993 static int s5c73m3_get_fmt(struct v4l2_subdev
*sd
,
994 struct v4l2_subdev_pad_config
*cfg
,
995 struct v4l2_subdev_format
*fmt
)
997 struct s5c73m3
*state
= sensor_sd_to_s5c73m3(sd
);
998 const struct s5c73m3_frame_size
*fs
;
1001 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1002 fmt
->format
= *v4l2_subdev_get_try_format(sd
, cfg
, fmt
->pad
);
1006 mutex_lock(&state
->lock
);
1009 case S5C73M3_ISP_PAD
:
1010 code
= S5C73M3_ISP_FMT
;
1011 fs
= state
->sensor_pix_size
[RES_ISP
];
1013 case S5C73M3_JPEG_PAD
:
1014 code
= S5C73M3_JPEG_FMT
;
1015 fs
= state
->sensor_pix_size
[RES_JPEG
];
1018 mutex_unlock(&state
->lock
);
1021 s5c73m3_fill_mbus_fmt(&fmt
->format
, fs
, code
);
1023 mutex_unlock(&state
->lock
);
1027 static int s5c73m3_oif_get_fmt(struct v4l2_subdev
*sd
,
1028 struct v4l2_subdev_pad_config
*cfg
,
1029 struct v4l2_subdev_format
*fmt
)
1031 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1032 const struct s5c73m3_frame_size
*fs
;
1035 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1036 fmt
->format
= *v4l2_subdev_get_try_format(sd
, cfg
, fmt
->pad
);
1040 mutex_lock(&state
->lock
);
1044 code
= S5C73M3_ISP_FMT
;
1045 fs
= state
->oif_pix_size
[RES_ISP
];
1048 code
= S5C73M3_JPEG_FMT
;
1049 fs
= state
->oif_pix_size
[RES_JPEG
];
1051 case OIF_SOURCE_PAD
:
1052 code
= state
->mbus_code
;
1053 fs
= state
->oif_pix_size
[RES_ISP
];
1056 mutex_unlock(&state
->lock
);
1059 s5c73m3_fill_mbus_fmt(&fmt
->format
, fs
, code
);
1061 mutex_unlock(&state
->lock
);
1065 static int s5c73m3_set_fmt(struct v4l2_subdev
*sd
,
1066 struct v4l2_subdev_pad_config
*cfg
,
1067 struct v4l2_subdev_format
*fmt
)
1069 const struct s5c73m3_frame_size
*frame_size
= NULL
;
1070 struct s5c73m3
*state
= sensor_sd_to_s5c73m3(sd
);
1071 struct v4l2_mbus_framefmt
*mf
;
1074 mutex_lock(&state
->lock
);
1076 s5c73m3_try_format(state
, cfg
, fmt
, &frame_size
);
1078 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1079 mf
= v4l2_subdev_get_try_format(sd
, cfg
, fmt
->pad
);
1083 case S5C73M3_ISP_PAD
:
1084 state
->sensor_pix_size
[RES_ISP
] = frame_size
;
1086 case S5C73M3_JPEG_PAD
:
1087 state
->sensor_pix_size
[RES_JPEG
] = frame_size
;
1093 if (state
->streaming
)
1096 state
->apply_fmt
= 1;
1099 mutex_unlock(&state
->lock
);
1104 static int s5c73m3_oif_set_fmt(struct v4l2_subdev
*sd
,
1105 struct v4l2_subdev_pad_config
*cfg
,
1106 struct v4l2_subdev_format
*fmt
)
1108 const struct s5c73m3_frame_size
*frame_size
= NULL
;
1109 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1110 struct v4l2_mbus_framefmt
*mf
;
1113 mutex_lock(&state
->lock
);
1115 s5c73m3_oif_try_format(state
, cfg
, fmt
, &frame_size
);
1117 if (fmt
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1118 mf
= v4l2_subdev_get_try_format(sd
, cfg
, fmt
->pad
);
1120 if (fmt
->pad
== OIF_ISP_PAD
) {
1121 mf
= v4l2_subdev_get_try_format(sd
, cfg
, OIF_SOURCE_PAD
);
1122 mf
->width
= fmt
->format
.width
;
1123 mf
->height
= fmt
->format
.height
;
1128 state
->oif_pix_size
[RES_ISP
] = frame_size
;
1131 state
->oif_pix_size
[RES_JPEG
] = frame_size
;
1133 case OIF_SOURCE_PAD
:
1134 state
->mbus_code
= fmt
->format
.code
;
1140 if (state
->streaming
)
1143 state
->apply_fmt
= 1;
1146 mutex_unlock(&state
->lock
);
1151 static int s5c73m3_oif_get_frame_desc(struct v4l2_subdev
*sd
, unsigned int pad
,
1152 struct v4l2_mbus_frame_desc
*fd
)
1154 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1157 if (pad
!= OIF_SOURCE_PAD
|| fd
== NULL
)
1160 mutex_lock(&state
->lock
);
1161 fd
->num_entries
= 2;
1162 for (i
= 0; i
< fd
->num_entries
; i
++)
1163 fd
->entry
[i
] = state
->frame_desc
.entry
[i
];
1164 mutex_unlock(&state
->lock
);
1169 static int s5c73m3_oif_set_frame_desc(struct v4l2_subdev
*sd
, unsigned int pad
,
1170 struct v4l2_mbus_frame_desc
*fd
)
1172 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1173 struct v4l2_mbus_frame_desc
*frame_desc
= &state
->frame_desc
;
1176 if (pad
!= OIF_SOURCE_PAD
|| fd
== NULL
)
1179 fd
->entry
[0].length
= 10 * SZ_1M
;
1180 fd
->entry
[1].length
= max_t(u32
, fd
->entry
[1].length
,
1181 S5C73M3_EMBEDDED_DATA_MAXLEN
);
1182 fd
->num_entries
= 2;
1184 mutex_lock(&state
->lock
);
1185 for (i
= 0; i
< fd
->num_entries
; i
++)
1186 frame_desc
->entry
[i
] = fd
->entry
[i
];
1187 mutex_unlock(&state
->lock
);
1192 static int s5c73m3_enum_mbus_code(struct v4l2_subdev
*sd
,
1193 struct v4l2_subdev_pad_config
*cfg
,
1194 struct v4l2_subdev_mbus_code_enum
*code
)
1196 static const int codes
[] = {
1197 [S5C73M3_ISP_PAD
] = S5C73M3_ISP_FMT
,
1198 [S5C73M3_JPEG_PAD
] = S5C73M3_JPEG_FMT
};
1200 if (code
->index
> 0 || code
->pad
>= S5C73M3_NUM_PADS
)
1203 code
->code
= codes
[code
->pad
];
1208 static int s5c73m3_oif_enum_mbus_code(struct v4l2_subdev
*sd
,
1209 struct v4l2_subdev_pad_config
*cfg
,
1210 struct v4l2_subdev_mbus_code_enum
*code
)
1214 ret
= s5c73m3_oif_get_pad_code(code
->pad
, code
->index
);
1223 static int s5c73m3_enum_frame_size(struct v4l2_subdev
*sd
,
1224 struct v4l2_subdev_pad_config
*cfg
,
1225 struct v4l2_subdev_frame_size_enum
*fse
)
1229 if (fse
->pad
== S5C73M3_ISP_PAD
) {
1230 if (fse
->code
!= S5C73M3_ISP_FMT
)
1234 if (fse
->code
!= S5C73M3_JPEG_FMT
)
1239 if (fse
->index
>= s5c73m3_resolutions_len
[idx
])
1242 fse
->min_width
= s5c73m3_resolutions
[idx
][fse
->index
].width
;
1243 fse
->max_width
= fse
->min_width
;
1244 fse
->max_height
= s5c73m3_resolutions
[idx
][fse
->index
].height
;
1245 fse
->min_height
= fse
->max_height
;
1250 static int s5c73m3_oif_enum_frame_size(struct v4l2_subdev
*sd
,
1251 struct v4l2_subdev_pad_config
*cfg
,
1252 struct v4l2_subdev_frame_size_enum
*fse
)
1254 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1257 if (fse
->pad
== OIF_SOURCE_PAD
) {
1261 switch (fse
->code
) {
1262 case S5C73M3_JPEG_FMT
:
1263 case S5C73M3_ISP_FMT
: {
1266 if (fse
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
1267 struct v4l2_mbus_framefmt
*mf
;
1269 mf
= v4l2_subdev_get_try_format(sd
, cfg
,
1275 const struct s5c73m3_frame_size
*fs
;
1277 fs
= state
->oif_pix_size
[RES_ISP
];
1281 fse
->max_width
= fse
->min_width
= w
;
1282 fse
->max_height
= fse
->min_height
= h
;
1290 if (fse
->code
!= s5c73m3_oif_get_pad_code(fse
->pad
, 0))
1293 if (fse
->pad
== OIF_JPEG_PAD
)
1298 if (fse
->index
>= s5c73m3_resolutions_len
[idx
])
1301 fse
->min_width
= s5c73m3_resolutions
[idx
][fse
->index
].width
;
1302 fse
->max_width
= fse
->min_width
;
1303 fse
->max_height
= s5c73m3_resolutions
[idx
][fse
->index
].height
;
1304 fse
->min_height
= fse
->max_height
;
1309 static int s5c73m3_oif_log_status(struct v4l2_subdev
*sd
)
1311 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1313 v4l2_ctrl_handler_log_status(sd
->ctrl_handler
, sd
->name
);
1315 v4l2_info(sd
, "power: %d, apply_fmt: %d\n", state
->power
,
1321 static int s5c73m3_open(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
1323 struct v4l2_mbus_framefmt
*mf
;
1325 mf
= v4l2_subdev_get_try_format(sd
, fh
->pad
, S5C73M3_ISP_PAD
);
1326 s5c73m3_fill_mbus_fmt(mf
, &s5c73m3_isp_resolutions
[1],
1329 mf
= v4l2_subdev_get_try_format(sd
, fh
->pad
, S5C73M3_JPEG_PAD
);
1330 s5c73m3_fill_mbus_fmt(mf
, &s5c73m3_jpeg_resolutions
[1],
1336 static int s5c73m3_oif_open(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
1338 struct v4l2_mbus_framefmt
*mf
;
1340 mf
= v4l2_subdev_get_try_format(sd
, fh
->pad
, OIF_ISP_PAD
);
1341 s5c73m3_fill_mbus_fmt(mf
, &s5c73m3_isp_resolutions
[1],
1344 mf
= v4l2_subdev_get_try_format(sd
, fh
->pad
, OIF_JPEG_PAD
);
1345 s5c73m3_fill_mbus_fmt(mf
, &s5c73m3_jpeg_resolutions
[1],
1348 mf
= v4l2_subdev_get_try_format(sd
, fh
->pad
, OIF_SOURCE_PAD
);
1349 s5c73m3_fill_mbus_fmt(mf
, &s5c73m3_isp_resolutions
[1],
1354 static int s5c73m3_gpio_set_value(struct s5c73m3
*priv
, int id
, u32 val
)
1356 if (!gpio_is_valid(priv
->gpio
[id
].gpio
))
1358 gpio_set_value(priv
->gpio
[id
].gpio
, !!val
);
1362 static int s5c73m3_gpio_assert(struct s5c73m3
*priv
, int id
)
1364 return s5c73m3_gpio_set_value(priv
, id
, priv
->gpio
[id
].level
);
1367 static int s5c73m3_gpio_deassert(struct s5c73m3
*priv
, int id
)
1369 return s5c73m3_gpio_set_value(priv
, id
, !priv
->gpio
[id
].level
);
1372 static int __s5c73m3_power_on(struct s5c73m3
*state
)
1376 for (i
= 0; i
< S5C73M3_MAX_SUPPLIES
; i
++) {
1377 ret
= regulator_enable(state
->supplies
[i
].consumer
);
1382 ret
= clk_set_rate(state
->clock
, state
->mclk_frequency
);
1386 ret
= clk_prepare_enable(state
->clock
);
1390 v4l2_dbg(1, s5c73m3_dbg
, &state
->oif_sd
, "clock frequency: %ld\n",
1391 clk_get_rate(state
->clock
));
1393 s5c73m3_gpio_deassert(state
, STBY
);
1394 usleep_range(100, 200);
1396 s5c73m3_gpio_deassert(state
, RST
);
1397 usleep_range(50, 100);
1402 for (--i
; i
>= 0; i
--)
1403 regulator_disable(state
->supplies
[i
].consumer
);
1407 static int __s5c73m3_power_off(struct s5c73m3
*state
)
1411 if (s5c73m3_gpio_assert(state
, RST
))
1412 usleep_range(10, 50);
1414 if (s5c73m3_gpio_assert(state
, STBY
))
1415 usleep_range(100, 200);
1417 clk_disable_unprepare(state
->clock
);
1419 state
->streaming
= 0;
1420 state
->isp_ready
= 0;
1422 for (i
= S5C73M3_MAX_SUPPLIES
- 1; i
>= 0; i
--) {
1423 ret
= regulator_disable(state
->supplies
[i
].consumer
);
1430 for (++i
; i
< S5C73M3_MAX_SUPPLIES
; i
++) {
1431 int r
= regulator_enable(state
->supplies
[i
].consumer
);
1433 v4l2_err(&state
->oif_sd
, "Failed to reenable %s: %d\n",
1434 state
->supplies
[i
].supply
, r
);
1437 clk_prepare_enable(state
->clock
);
1441 static int s5c73m3_oif_set_power(struct v4l2_subdev
*sd
, int on
)
1443 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1446 mutex_lock(&state
->lock
);
1448 if (on
&& !state
->power
) {
1449 ret
= __s5c73m3_power_on(state
);
1451 ret
= s5c73m3_isp_init(state
);
1453 state
->apply_fiv
= 1;
1454 state
->apply_fmt
= 1;
1456 } else if (state
->power
== !on
) {
1457 ret
= s5c73m3_set_af_softlanding(state
);
1459 ret
= __s5c73m3_power_off(state
);
1461 v4l2_err(sd
, "Soft landing lens failed\n");
1464 state
->power
+= on
? 1 : -1;
1466 v4l2_dbg(1, s5c73m3_dbg
, sd
, "%s: power: %d\n",
1467 __func__
, state
->power
);
1469 mutex_unlock(&state
->lock
);
1473 static int s5c73m3_oif_registered(struct v4l2_subdev
*sd
)
1475 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1478 ret
= v4l2_device_register_subdev(sd
->v4l2_dev
, &state
->sensor_sd
);
1480 v4l2_err(sd
->v4l2_dev
, "Failed to register %s\n",
1481 state
->oif_sd
.name
);
1485 ret
= media_create_pad_link(&state
->sensor_sd
.entity
,
1486 S5C73M3_ISP_PAD
, &state
->oif_sd
.entity
, OIF_ISP_PAD
,
1487 MEDIA_LNK_FL_IMMUTABLE
| MEDIA_LNK_FL_ENABLED
);
1489 ret
= media_create_pad_link(&state
->sensor_sd
.entity
,
1490 S5C73M3_JPEG_PAD
, &state
->oif_sd
.entity
, OIF_JPEG_PAD
,
1491 MEDIA_LNK_FL_IMMUTABLE
| MEDIA_LNK_FL_ENABLED
);
1496 static void s5c73m3_oif_unregistered(struct v4l2_subdev
*sd
)
1498 struct s5c73m3
*state
= oif_sd_to_s5c73m3(sd
);
1499 v4l2_device_unregister_subdev(&state
->sensor_sd
);
1502 static const struct v4l2_subdev_internal_ops s5c73m3_internal_ops
= {
1503 .open
= s5c73m3_open
,
1506 static const struct v4l2_subdev_pad_ops s5c73m3_pad_ops
= {
1507 .enum_mbus_code
= s5c73m3_enum_mbus_code
,
1508 .enum_frame_size
= s5c73m3_enum_frame_size
,
1509 .get_fmt
= s5c73m3_get_fmt
,
1510 .set_fmt
= s5c73m3_set_fmt
,
1513 static const struct v4l2_subdev_ops s5c73m3_subdev_ops
= {
1514 .pad
= &s5c73m3_pad_ops
,
1517 static const struct v4l2_subdev_internal_ops oif_internal_ops
= {
1518 .registered
= s5c73m3_oif_registered
,
1519 .unregistered
= s5c73m3_oif_unregistered
,
1520 .open
= s5c73m3_oif_open
,
1523 static const struct v4l2_subdev_pad_ops s5c73m3_oif_pad_ops
= {
1524 .enum_mbus_code
= s5c73m3_oif_enum_mbus_code
,
1525 .enum_frame_size
= s5c73m3_oif_enum_frame_size
,
1526 .enum_frame_interval
= s5c73m3_oif_enum_frame_interval
,
1527 .get_fmt
= s5c73m3_oif_get_fmt
,
1528 .set_fmt
= s5c73m3_oif_set_fmt
,
1529 .get_frame_desc
= s5c73m3_oif_get_frame_desc
,
1530 .set_frame_desc
= s5c73m3_oif_set_frame_desc
,
1533 static const struct v4l2_subdev_core_ops s5c73m3_oif_core_ops
= {
1534 .s_power
= s5c73m3_oif_set_power
,
1535 .log_status
= s5c73m3_oif_log_status
,
1538 static const struct v4l2_subdev_video_ops s5c73m3_oif_video_ops
= {
1539 .s_stream
= s5c73m3_oif_s_stream
,
1540 .g_frame_interval
= s5c73m3_oif_g_frame_interval
,
1541 .s_frame_interval
= s5c73m3_oif_s_frame_interval
,
1544 static const struct v4l2_subdev_ops oif_subdev_ops
= {
1545 .core
= &s5c73m3_oif_core_ops
,
1546 .pad
= &s5c73m3_oif_pad_ops
,
1547 .video
= &s5c73m3_oif_video_ops
,
1550 static int s5c73m3_configure_gpios(struct s5c73m3
*state
)
1552 static const char * const gpio_names
[] = {
1553 "S5C73M3_STBY", "S5C73M3_RST"
1555 struct i2c_client
*c
= state
->i2c_client
;
1556 struct s5c73m3_gpio
*g
= state
->gpio
;
1559 for (i
= 0; i
< GPIO_NUM
; ++i
) {
1560 unsigned int flags
= GPIOF_DIR_OUT
;
1562 flags
|= GPIOF_INIT_HIGH
;
1563 ret
= devm_gpio_request_one(&c
->dev
, g
[i
].gpio
, flags
,
1566 v4l2_err(c
, "failed to request gpio %s\n",
1574 static int s5c73m3_parse_gpios(struct s5c73m3
*state
)
1576 static const char * const prop_names
[] = {
1577 "standby-gpios", "xshutdown-gpios",
1579 struct device
*dev
= &state
->i2c_client
->dev
;
1580 struct device_node
*node
= dev
->of_node
;
1583 for (i
= 0; i
< GPIO_NUM
; ++i
) {
1584 enum of_gpio_flags of_flags
;
1586 ret
= of_get_named_gpio_flags(node
, prop_names
[i
],
1589 dev_err(dev
, "failed to parse %s DT property\n",
1593 state
->gpio
[i
].gpio
= ret
;
1594 state
->gpio
[i
].level
= !(of_flags
& OF_GPIO_ACTIVE_LOW
);
1599 static int s5c73m3_get_platform_data(struct s5c73m3
*state
)
1601 struct device
*dev
= &state
->i2c_client
->dev
;
1602 const struct s5c73m3_platform_data
*pdata
= dev
->platform_data
;
1603 struct device_node
*node
= dev
->of_node
;
1604 struct device_node
*node_ep
;
1605 struct v4l2_of_endpoint ep
;
1610 dev_err(dev
, "Platform data not specified\n");
1614 state
->mclk_frequency
= pdata
->mclk_frequency
;
1615 state
->gpio
[STBY
] = pdata
->gpio_stby
;
1616 state
->gpio
[RST
] = pdata
->gpio_reset
;
1620 state
->clock
= devm_clk_get(dev
, S5C73M3_CLK_NAME
);
1621 if (IS_ERR(state
->clock
))
1622 return PTR_ERR(state
->clock
);
1624 if (of_property_read_u32(node
, "clock-frequency",
1625 &state
->mclk_frequency
)) {
1626 state
->mclk_frequency
= S5C73M3_DEFAULT_MCLK_FREQ
;
1627 dev_info(dev
, "using default %u Hz clock frequency\n",
1628 state
->mclk_frequency
);
1631 ret
= s5c73m3_parse_gpios(state
);
1635 node_ep
= of_graph_get_next_endpoint(node
, NULL
);
1637 dev_warn(dev
, "no endpoint defined for node: %s\n",
1642 ret
= v4l2_of_parse_endpoint(node_ep
, &ep
);
1643 of_node_put(node_ep
);
1647 if (ep
.bus_type
!= V4L2_MBUS_CSI2
) {
1648 dev_err(dev
, "unsupported bus type\n");
1652 * Number of MIPI CSI-2 data lanes is currently not configurable,
1653 * always a default value of 4 lanes is used.
1655 if (ep
.bus
.mipi_csi2
.num_data_lanes
!= S5C73M3_MIPI_DATA_LANES
)
1656 dev_info(dev
, "falling back to 4 MIPI CSI-2 data lanes\n");
1661 static int s5c73m3_probe(struct i2c_client
*client
,
1662 const struct i2c_device_id
*id
)
1664 struct device
*dev
= &client
->dev
;
1665 struct v4l2_subdev
*sd
;
1666 struct v4l2_subdev
*oif_sd
;
1667 struct s5c73m3
*state
;
1670 state
= devm_kzalloc(dev
, sizeof(*state
), GFP_KERNEL
);
1674 state
->i2c_client
= client
;
1675 ret
= s5c73m3_get_platform_data(state
);
1679 mutex_init(&state
->lock
);
1680 sd
= &state
->sensor_sd
;
1681 oif_sd
= &state
->oif_sd
;
1683 v4l2_subdev_init(sd
, &s5c73m3_subdev_ops
);
1684 sd
->owner
= client
->dev
.driver
->owner
;
1685 v4l2_set_subdevdata(sd
, state
);
1686 strlcpy(sd
->name
, "S5C73M3", sizeof(sd
->name
));
1688 sd
->internal_ops
= &s5c73m3_internal_ops
;
1689 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1691 state
->sensor_pads
[S5C73M3_JPEG_PAD
].flags
= MEDIA_PAD_FL_SOURCE
;
1692 state
->sensor_pads
[S5C73M3_ISP_PAD
].flags
= MEDIA_PAD_FL_SOURCE
;
1693 sd
->entity
.function
= MEDIA_ENT_F_CAM_SENSOR
;
1695 ret
= media_entity_pads_init(&sd
->entity
, S5C73M3_NUM_PADS
,
1696 state
->sensor_pads
);
1700 v4l2_i2c_subdev_init(oif_sd
, client
, &oif_subdev_ops
);
1701 strcpy(oif_sd
->name
, "S5C73M3-OIF");
1703 oif_sd
->internal_ops
= &oif_internal_ops
;
1704 oif_sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1706 state
->oif_pads
[OIF_ISP_PAD
].flags
= MEDIA_PAD_FL_SINK
;
1707 state
->oif_pads
[OIF_JPEG_PAD
].flags
= MEDIA_PAD_FL_SINK
;
1708 state
->oif_pads
[OIF_SOURCE_PAD
].flags
= MEDIA_PAD_FL_SOURCE
;
1709 oif_sd
->entity
.function
= MEDIA_ENT_F_PROC_VIDEO_SCALER
;
1711 ret
= media_entity_pads_init(&oif_sd
->entity
, OIF_NUM_PADS
,
1716 ret
= s5c73m3_configure_gpios(state
);
1720 for (i
= 0; i
< S5C73M3_MAX_SUPPLIES
; i
++)
1721 state
->supplies
[i
].supply
= s5c73m3_supply_names
[i
];
1723 ret
= devm_regulator_bulk_get(dev
, S5C73M3_MAX_SUPPLIES
,
1726 dev_err(dev
, "failed to get regulators\n");
1730 ret
= s5c73m3_init_controls(state
);
1734 state
->sensor_pix_size
[RES_ISP
] = &s5c73m3_isp_resolutions
[1];
1735 state
->sensor_pix_size
[RES_JPEG
] = &s5c73m3_jpeg_resolutions
[1];
1736 state
->oif_pix_size
[RES_ISP
] = state
->sensor_pix_size
[RES_ISP
];
1737 state
->oif_pix_size
[RES_JPEG
] = state
->sensor_pix_size
[RES_JPEG
];
1739 state
->mbus_code
= S5C73M3_ISP_FMT
;
1741 state
->fiv
= &s5c73m3_intervals
[S5C73M3_DEFAULT_FRAME_INTERVAL
];
1743 state
->fw_file_version
[0] = 'G';
1744 state
->fw_file_version
[1] = 'C';
1746 ret
= s5c73m3_register_spi_driver(state
);
1752 ret
= __s5c73m3_power_on(state
);
1756 ret
= s5c73m3_get_fw_version(state
);
1757 __s5c73m3_power_off(state
);
1760 dev_err(dev
, "Device detection failed: %d\n", ret
);
1764 ret
= v4l2_async_register_subdev(oif_sd
);
1768 v4l2_info(sd
, "%s: completed successfully\n", __func__
);
1772 s5c73m3_unregister_spi_driver(state
);
1774 media_entity_cleanup(&sd
->entity
);
1778 static int s5c73m3_remove(struct i2c_client
*client
)
1780 struct v4l2_subdev
*oif_sd
= i2c_get_clientdata(client
);
1781 struct s5c73m3
*state
= oif_sd_to_s5c73m3(oif_sd
);
1782 struct v4l2_subdev
*sensor_sd
= &state
->sensor_sd
;
1784 v4l2_async_unregister_subdev(oif_sd
);
1786 v4l2_ctrl_handler_free(oif_sd
->ctrl_handler
);
1787 media_entity_cleanup(&oif_sd
->entity
);
1789 v4l2_device_unregister_subdev(sensor_sd
);
1790 media_entity_cleanup(&sensor_sd
->entity
);
1792 s5c73m3_unregister_spi_driver(state
);
1797 static const struct i2c_device_id s5c73m3_id
[] = {
1801 MODULE_DEVICE_TABLE(i2c
, s5c73m3_id
);
1804 static const struct of_device_id s5c73m3_of_match
[] = {
1805 { .compatible
= "samsung,s5c73m3" },
1808 MODULE_DEVICE_TABLE(of
, s5c73m3_of_match
);
1811 static struct i2c_driver s5c73m3_i2c_driver
= {
1813 .of_match_table
= of_match_ptr(s5c73m3_of_match
),
1814 .name
= DRIVER_NAME
,
1816 .probe
= s5c73m3_probe
,
1817 .remove
= s5c73m3_remove
,
1818 .id_table
= s5c73m3_id
,
1821 module_i2c_driver(s5c73m3_i2c_driver
);
1823 MODULE_DESCRIPTION("Samsung S5C73M3 camera driver");
1824 MODULE_AUTHOR("Sylwester Nawrocki <s.nawrocki@samsung.com>");
1825 MODULE_LICENSE("GPL");