hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
/*
 * ov2685 driver
 *
 * Copyright (C) 2017 Fuzhou Rockchip Electronics Co., Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * V0.0X01.0X01 add enum_frame_interval function.
 * V0.0X01.0X02 add quick stream on/off
 * V0.0X01.0X03 add function g_mbus_config
 */
 
#include <linux/clk.h>
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/gpio/consumer.h>
#include <linux/i2c.h>
#include <linux/module.h>
#include <linux/pm_runtime.h>
#include <linux/regulator/consumer.h>
#include <linux/sysfs.h>
#include <linux/slab.h>
#include <linux/version.h>
#include <linux/rk-camera-module.h>
#include <media/media-entity.h>
#include <media/v4l2-async.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-subdev.h>
 
#define DRIVER_VERSION            KERNEL_VERSION(0, 0x01, 0x3)
 
#define CHIP_ID                0x2685
#define OV2685_REG_CHIP_ID        0x300a
 
#define REG_SC_CTRL_MODE        0x0100
#define     SC_CTRL_MODE_STANDBY    0x0
#define     SC_CTRL_MODE_STREAMING    BIT(0)
 
#define OV2685_REG_EXPOSURE        0x3500
#define    OV2685_EXPOSURE_MIN        4
#define    OV2685_EXPOSURE_STEP        1
 
#define OV2685_REG_VTS            0x380e
#define OV2685_VTS_MAX            0x7fff
 
#define OV2685_REG_GAIN            0x350a
#define OV2685_GAIN_MIN            0
#define OV2685_GAIN_MAX            0x07ff
#define OV2685_GAIN_STEP        0x1
#define OV2685_GAIN_DEFAULT        0x0036
 
#define OV2685_REG_TEST_PATTERN        0x5080
#define OV2685_TEST_PATTERN_DISABLED        0x00
#define OV2685_TEST_PATTERN_COLOR_BAR        0x80
#define OV2685_TEST_PATTERN_RND            0x81
#define OV2685_TEST_PATTERN_COLOR_BAR_FADE    0x88
#define OV2685_TEST_PATTERN_BW_SQUARE        0x92
#define OV2685_TEST_PATTERN_COLOR_SQUARE    0x82
 
#define REG_NULL            0xFFFF
 
#define OV2685_REG_VALUE_08BIT        1
#define OV2685_REG_VALUE_16BIT        2
#define OV2685_REG_VALUE_24BIT        3
 
#define OV2685_LANES            1
#define OV2685_BITS_PER_SAMPLE        10
 
#define OV2685_NAME            "ov2685"
 
struct regval {
   u16 addr;
   u8 val;
};
 
struct ov2685_mode {
   u32 width;
   u32 height;
   u32 exp_def;
   u32 hts_def;
   u32 vts_def;
   struct v4l2_fract max_fps;
   const struct regval *reg_list;
};
 
struct ov2685 {
   struct i2c_client    *client;
   struct clk        *xvclk;
   struct regulator    *avdd_regulator;    /* Analog power */
   struct regulator    *dovdd_regulator;    /* Digital I/O power */
               /* use internal DVDD power */
   struct gpio_desc    *reset_gpio;
 
   bool            streaming;
   struct mutex        mutex;
   struct v4l2_subdev    subdev;
   struct media_pad    pad;
   struct v4l2_ctrl    *anal_gain;
   struct v4l2_ctrl    *exposure;
   struct v4l2_ctrl    *hblank;
   struct v4l2_ctrl    *vblank;
   struct v4l2_ctrl    *test_pattern;
   struct v4l2_ctrl_handler ctrl_handler;
 
   const struct ov2685_mode *cur_mode;
   u32            module_index;
   const char        *module_facing;
   const char        *module_name;
   const char        *len_name;
};
#define to_ov2685(sd) container_of(sd, struct ov2685, subdev)
 
/* PLL settings bases on 24M xvclk */
static struct regval ov2685_1600x1200_regs[] = {
   {0x0103, 0x01},
   {0x0100, 0x00},
   {0x3002, 0x00},
   {0x3016, 0x1c},
   {0x3018, 0x44},
   {0x301d, 0xf0},
   {0x3020, 0x00},
   {0x3082, 0x37},
   {0x3083, 0x03},
   {0x3084, 0x09},
   {0x3085, 0x04},
   {0x3086, 0x00},
   {0x3087, 0x00},
   {0x3501, 0x4e},
   {0x3502, 0xe0},
   {0x3503, 0x07},
   {0x350b, 0x36},
   {0x3600, 0xb4},
   {0x3603, 0x35},
   {0x3604, 0x24},
   {0x3605, 0x00},
   {0x3620, 0x24},
   {0x3621, 0x34},
   {0x3622, 0x03},
   {0x3628, 0x10},
   {0x3705, 0x3c},
   {0x370a, 0x21},
   {0x370c, 0x50},
   {0x370d, 0xc0},
   {0x3717, 0x58},
   {0x3718, 0x80},
   {0x3720, 0x00},
   {0x3721, 0x09},
   {0x3722, 0x06},
   {0x3723, 0x59},
   {0x3738, 0x99},
   {0x3781, 0x80},
   {0x3784, 0x0c},
   {0x3789, 0x60},
   {0x3800, 0x00},
   {0x3801, 0x00},
   {0x3802, 0x00},
   {0x3803, 0x00},
   {0x3804, 0x06},
   {0x3805, 0x4f},
   {0x3806, 0x04},
   {0x3807, 0xbf},
   {0x3808, 0x06},
   {0x3809, 0x40},
   {0x380a, 0x04},
   {0x380b, 0xb0},
   {0x380c, 0x06},
   {0x380d, 0xa4},
   {0x380e, 0x05},
   {0x380f, 0x0e},
   {0x3810, 0x00},
   {0x3811, 0x08},
   {0x3812, 0x00},
   {0x3813, 0x08},
   {0x3814, 0x11},
   {0x3815, 0x11},
   {0x3819, 0x04},
   {0x3820, 0xc0},
   {0x3821, 0x00},
   {0x3a06, 0x01},
   {0x3a07, 0x84},
   {0x3a08, 0x01},
   {0x3a09, 0x43},
   {0x3a0a, 0x24},
   {0x3a0b, 0x60},
   {0x3a0c, 0x28},
   {0x3a0d, 0x60},
   {0x3a0e, 0x04},
   {0x3a0f, 0x8c},
   {0x3a10, 0x05},
   {0x3a11, 0x0c},
   {0x4000, 0x81},
   {0x4001, 0x40},
   {0x4008, 0x02},
   {0x4009, 0x09},
   {0x4300, 0x00},
   {0x430e, 0x00},
   {0x4602, 0x02},
   {0x481b, 0x40},
   {0x481f, 0x40},
   {0x4837, 0x18},
   {0x5000, 0x1f},
   {0x5001, 0x05},
   {0x5002, 0x30},
   {0x5003, 0x04},
   {0x5004, 0x00},
   {0x5005, 0x0c},
   {0x5280, 0x15},
   {0x5281, 0x06},
   {0x5282, 0x06},
   {0x5283, 0x08},
   {0x5284, 0x1c},
   {0x5285, 0x1c},
   {0x5286, 0x20},
   {0x5287, 0x10},
   {REG_NULL, 0x00}
};
 
#define OV2685_LINK_FREQ_330MHZ        330000000
static const s64 link_freq_menu_items[] = {
   OV2685_LINK_FREQ_330MHZ
};
 
static const char * const ov2685_test_pattern_menu[] = {
   "Disabled",
   "Color Bar",
   "RND PATTERN",
   "Color Bar FADE",
   "BW SQUARE",
   "COLOR SQUARE"
};
 
static const int ov2685_test_pattern_val[] = {
   OV2685_TEST_PATTERN_DISABLED,
   OV2685_TEST_PATTERN_COLOR_BAR,
   OV2685_TEST_PATTERN_RND,
   OV2685_TEST_PATTERN_COLOR_BAR_FADE,
   OV2685_TEST_PATTERN_BW_SQUARE,
   OV2685_TEST_PATTERN_COLOR_SQUARE,
};
 
static const struct ov2685_mode supported_modes[] = {
   {
       .width = 1600,
       .height = 1200,
       .exp_def = 0x04ee,
       .hts_def = 0x06a4,
       .vts_def = 0x050e,
       .max_fps = {
           .numerator = 10000,
           .denominator = 300000,
       },
       .reg_list = ov2685_1600x1200_regs,
   },
};
 
/* Write registers up to 4 at a time */
static int ov2685_write_reg(struct i2c_client *client, u16 reg,
               unsigned int len, u32 val)
{
   int buf_i;
   int val_i;
   u8 buf[6];
   u8 *val_p;
   __be32 val_be;
 
   if (len > 4)
       return -EINVAL;
 
   buf[0] = reg >> 8;
   buf[1] = reg & 0xff;
 
   val_be = cpu_to_be32(val);
   val_p = (u8 *)&val_be;
   buf_i = 2;
   val_i = 4 - len;
 
   while (val_i < 4)
       buf[buf_i++] = val_p[val_i++];
 
   if (i2c_master_send(client, buf, len + 2) != len + 2)
       return -EIO;
 
   return 0;
}
 
static int ov2685_write_array(struct i2c_client *client,
                 const struct regval *regs)
{
   int i, ret = 0;
 
   for (i = 0; ret == 0 && regs[i].addr != REG_NULL; i++)
       ret = ov2685_write_reg(client, regs[i].addr,
                      OV2685_REG_VALUE_08BIT, regs[i].val);
 
   return ret;
}
 
/* Read registers up to 4 at a time */
static int ov2685_read_reg(struct i2c_client *client, u16 reg,
              unsigned int len, u32 *val)
{
   struct i2c_msg msgs[2];
   u8 *data_be_p;
   __be32 data_be = 0;
   __be16 reg_addr_be = cpu_to_be16(reg);
   int ret;
 
   if (len > 4)
       return -EINVAL;
 
   data_be_p = (u8 *)&data_be;
   /* Write register address */
   msgs[0].addr = client->addr;
   msgs[0].flags = 0;
   msgs[0].len = 2;
   msgs[0].buf = (u8 *)&reg_addr_be;
 
   /* Read data from register */
   msgs[1].addr = client->addr;
   msgs[1].flags = I2C_M_RD;
   msgs[1].len = len;
   msgs[1].buf = &data_be_p[4 - len];
 
   ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
   if (ret != ARRAY_SIZE(msgs))
       return -EIO;
 
   *val = be32_to_cpu(data_be);
 
   return 0;
}
 
static void ov2685_fill_fmt(struct ov2685 *ov2685,
               struct v4l2_mbus_framefmt *fmt)
{
   fmt->code = MEDIA_BUS_FMT_SBGGR10_1X10;
   fmt->width = ov2685->cur_mode->width;
   fmt->height = ov2685->cur_mode->height;
   fmt->field = V4L2_FIELD_NONE;
}
 
static int ov2685_set_fmt(struct v4l2_subdev *sd,
             struct v4l2_subdev_pad_config *cfg,
             struct v4l2_subdev_format *fmt)
{
   struct ov2685 *ov2685 = to_ov2685(sd);
   struct v4l2_mbus_framefmt *mbus_fmt = &fmt->format;
 
   ov2685_fill_fmt(ov2685, mbus_fmt);
 
   return 0;
}
 
static int ov2685_get_fmt(struct v4l2_subdev *sd,
             struct v4l2_subdev_pad_config *cfg,
             struct v4l2_subdev_format *fmt)
{
   struct ov2685 *ov2685 = to_ov2685(sd);
   struct v4l2_mbus_framefmt *mbus_fmt = &fmt->format;
 
   ov2685_fill_fmt(ov2685, mbus_fmt);
 
   return 0;
}
 
static int ov2685_enum_mbus_code(struct v4l2_subdev *sd,
                struct v4l2_subdev_pad_config *cfg,
                struct v4l2_subdev_mbus_code_enum *code)
{
   if (code->index >= ARRAY_SIZE(supported_modes))
       return -EINVAL;
 
   code->code = MEDIA_BUS_FMT_SBGGR10_1X10;
   return 0;
}
 
static int ov2685_enum_frame_sizes(struct v4l2_subdev *sd,
                  struct v4l2_subdev_pad_config *cfg,
                  struct v4l2_subdev_frame_size_enum *fse)
{
   int index = fse->index;
 
   if (index >= ARRAY_SIZE(supported_modes))
       return -EINVAL;
 
   fse->code = MEDIA_BUS_FMT_SBGGR10_1X10;
 
   fse->min_width  = supported_modes[index].width;
   fse->max_width  = supported_modes[index].width;
   fse->max_height = supported_modes[index].height;
   fse->min_height = supported_modes[index].height;
 
   return 0;
}
 
static inline void ov2685_set_exposure(struct ov2685 *ov2685, s32 val)
{
   ov2685_write_reg(ov2685->client, OV2685_REG_EXPOSURE,
            OV2685_REG_VALUE_24BIT, val << 4);
}
 
static inline void ov2685_set_gain(struct ov2685 *ov2685, s32 val)
{
   ov2685_write_reg(ov2685->client, OV2685_REG_GAIN,
            OV2685_REG_VALUE_16BIT, val & OV2685_GAIN_MAX);
}
 
static inline void ov2685_set_vts(struct ov2685 *ov2685, s32 val)
{
   val += ov2685->cur_mode->height;
   ov2685_write_reg(ov2685->client, OV2685_REG_VTS,
            OV2685_REG_VALUE_16BIT, val);
}
 
static inline void ov2685_enable_test_pattern(struct ov2685 *ov2685, u32 pat)
{
   ov2685_write_reg(ov2685->client, OV2685_REG_TEST_PATTERN,
            OV2685_REG_VALUE_08BIT, ov2685_test_pattern_val[pat]);
}
 
static int __ov2685_power_on(struct ov2685 *ov2685)
{
   int ret;
   struct device *dev = &ov2685->client->dev;
 
   ret = clk_prepare_enable(ov2685->xvclk);
   if (ret < 0) {
       dev_err(dev, "Failed to enable xvclk\n");
       return ret;
   }
   clk_set_rate(ov2685->xvclk, 24000000);
 
   gpiod_set_value_cansleep(ov2685->reset_gpio, 1);
   /* AVDD and DOVDD may rise in any order */
   ret = regulator_enable(ov2685->avdd_regulator);
   if (ret < 0) {
       dev_err(dev, "Failed to enable AVDD regulator\n");
       goto disable_xvclk;
   }
   ret = regulator_enable(ov2685->dovdd_regulator);
   if (ret < 0) {
       dev_err(dev, "Failed to enable DOVDD regulator\n");
       goto disable_avdd;
   }
   /* The minimum delay between AVDD and reset rising can be 0 */
   gpiod_set_value_cansleep(ov2685->reset_gpio, 0);
   /* 8192 xvclk cycles prior to the first SCCB transaction.
    * NOTE: An additional 1ms must be added to wait for
    *       SCCB to become stable when using internal DVDD.
    */
   usleep_range(1350, 1500);
 
   /* HACK: ov2685 would output messy data after reset(R0103),
    * writing register before .s_stream() as a workaround
    */
   ret = ov2685_write_array(ov2685->client, ov2685->cur_mode->reg_list);
 
   return ret;
disable_avdd:
   regulator_disable(ov2685->avdd_regulator);
disable_xvclk:
   clk_disable_unprepare(ov2685->xvclk);
 
   return ret;
}
 
static void __ov2685_power_off(struct ov2685 *ov2685)
{
   /* 512 xvclk cycles after the last SCCB transaction or MIPI frame end */
   usleep_range(30, 50);
   clk_disable_unprepare(ov2685->xvclk);
   gpiod_set_value_cansleep(ov2685->reset_gpio, 1);
   regulator_disable(ov2685->dovdd_regulator);
   regulator_disable(ov2685->avdd_regulator);
}
 
static int ov2685_s_power(struct v4l2_subdev *sd, int on)
{
   struct ov2685 *ov2685 = to_ov2685(sd);
   int ret = 0;
 
   mutex_lock(&ov2685->mutex);
 
   if (on)
       ret = pm_runtime_get_sync(&ov2685->client->dev);
   else
       ret = pm_runtime_put(&ov2685->client->dev);
 
   mutex_unlock(&ov2685->mutex);
 
   return ret;
}
 
static void ov2685_get_module_inf(struct ov2685 *ov2685,
                 struct rkmodule_inf *inf)
{
   memset(inf, 0, sizeof(*inf));
   strlcpy(inf->base.sensor, OV2685_NAME, sizeof(inf->base.sensor));
   strlcpy(inf->base.module, ov2685->module_name,
       sizeof(inf->base.module));
   strlcpy(inf->base.lens, ov2685->len_name, sizeof(inf->base.lens));
}
 
static long ov2685_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
{
   struct ov2685 *ov2685 = to_ov2685(sd);
   long ret = 0;
   u32 stream = 0;
 
   switch (cmd) {
   case RKMODULE_GET_MODULE_INFO:
       ov2685_get_module_inf(ov2685, (struct rkmodule_inf *)arg);
       break;
   case RKMODULE_SET_QUICK_STREAM:
 
       stream = *((u32 *)arg);
 
       if (stream)
           ret = ov2685_write_reg(ov2685->client, REG_SC_CTRL_MODE,
               OV2685_REG_VALUE_08BIT, SC_CTRL_MODE_STREAMING);
       else
           ret = ov2685_write_reg(ov2685->client, REG_SC_CTRL_MODE,
               OV2685_REG_VALUE_08BIT, SC_CTRL_MODE_STANDBY);
       break;
   default:
       ret = -ENOIOCTLCMD;
       break;
   }
 
   return ret;
}
 
#ifdef CONFIG_COMPAT
static long ov2685_compat_ioctl32(struct v4l2_subdev *sd,
                 unsigned int cmd, unsigned long arg)
{
   void __user *up = compat_ptr(arg);
   struct rkmodule_inf *inf;
   struct rkmodule_awb_cfg *cfg;
   long ret;
   u32 stream = 0;
 
   switch (cmd) {
   case RKMODULE_GET_MODULE_INFO:
       inf = kzalloc(sizeof(*inf), GFP_KERNEL);
       if (!inf) {
           ret = -ENOMEM;
           return ret;
       }
 
       ret = ov2685_ioctl(sd, cmd, inf);
       if (!ret)
           ret = copy_to_user(up, inf, sizeof(*inf));
       kfree(inf);
       break;
   case RKMODULE_AWB_CFG:
       cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
       if (!cfg) {
           ret = -ENOMEM;
           return ret;
       }
 
       ret = copy_from_user(cfg, up, sizeof(*cfg));
       if (!ret)
           ret = ov2685_ioctl(sd, cmd, cfg);
       kfree(cfg);
       break;
   case RKMODULE_SET_QUICK_STREAM:
       ret = copy_from_user(&stream, up, sizeof(u32));
       if (!ret)
           ret = ov2685_ioctl(sd, cmd, &stream);
       break;
   default:
       ret = -ENOIOCTLCMD;
       break;
   }
 
   return ret;
}
#endif
 
static int ov2685_s_stream(struct v4l2_subdev *sd, int on)
{
   struct ov2685 *ov2685 = to_ov2685(sd);
   struct i2c_client *client = ov2685->client;
   int ret = 0;
 
   mutex_lock(&ov2685->mutex);
 
   on = !!on;
   if (on == ov2685->streaming)
       goto unlock_and_return;
 
   if (on) {
       /* In case these controls are set before streaming */
       ov2685_set_exposure(ov2685, ov2685->exposure->val);
       ov2685_set_gain(ov2685, ov2685->anal_gain->val);
       ov2685_set_vts(ov2685, ov2685->vblank->val);
       ov2685_enable_test_pattern(ov2685, ov2685->test_pattern->val);
 
       ret = ov2685_write_reg(client, REG_SC_CTRL_MODE,
               OV2685_REG_VALUE_08BIT, SC_CTRL_MODE_STREAMING);
       if (ret)
           goto unlock_and_return;
   } else {
       ret = ov2685_write_reg(client, REG_SC_CTRL_MODE,
               OV2685_REG_VALUE_08BIT, SC_CTRL_MODE_STANDBY);
       if (ret)
           goto unlock_and_return;
   }
 
   ov2685->streaming = on;
 
unlock_and_return:
   mutex_unlock(&ov2685->mutex);
   return ret;
}
 
#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
static int ov2685_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
{
   struct ov2685 *ov2685 = to_ov2685(sd);
   struct v4l2_mbus_framefmt *try_fmt;
 
   mutex_lock(&ov2685->mutex);
 
   try_fmt = v4l2_subdev_get_try_format(sd, fh->pad, 0);
   /* Initialize try_fmt */
   ov2685_fill_fmt(ov2685, try_fmt);
 
   mutex_unlock(&ov2685->mutex);
 
   return 0;
}
#endif
 
static int ov2685_runtime_resume(struct device *dev)
{
   struct i2c_client *client = to_i2c_client(dev);
   struct v4l2_subdev *sd = i2c_get_clientdata(client);
   struct ov2685 *ov2685 = to_ov2685(sd);
   int ret;
 
   ret = __ov2685_power_on(ov2685);
   if (ret)
       return ret;
 
   if (ov2685->streaming) {
       ret = ov2685_s_stream(sd, 1);
       if (ret)
           __ov2685_power_off(ov2685);
   }
 
   return ret;
}
 
static int ov2685_runtime_suspend(struct device *dev)
{
   struct i2c_client *client = to_i2c_client(dev);
   struct v4l2_subdev *sd = i2c_get_clientdata(client);
   struct ov2685 *ov2685 = to_ov2685(sd);
 
   __ov2685_power_off(ov2685);
 
   return 0;
}
 
static const struct dev_pm_ops ov2685_pm_ops = {
   SET_RUNTIME_PM_OPS(ov2685_runtime_suspend,
              ov2685_runtime_resume, NULL)
};
 
static int ov2685_set_ctrl(struct v4l2_ctrl *ctrl)
{
   struct ov2685 *ov2685 = container_of(ctrl->handler,
                        struct ov2685, ctrl_handler);
   struct i2c_client *client = ov2685->client;
   s64 max;
   int ret = 0;
 
   /* Propagate change of current control to all related controls */
   switch (ctrl->id) {
   case V4L2_CID_VBLANK:
       /* Update max exposure while meeting expected vblanking */
       max = ov2685->cur_mode->height + ctrl->val - 4;
       __v4l2_ctrl_modify_range(ov2685->exposure,
                    ov2685->exposure->minimum, max,
                    ov2685->exposure->step,
                    ov2685->exposure->default_value);
       break;
   }
 
   if (!pm_runtime_get_if_in_use(&client->dev))
       return 0;
   switch (ctrl->id) {
   case V4L2_CID_EXPOSURE:
       ov2685_set_exposure(ov2685, ctrl->val);
       break;
   case V4L2_CID_ANALOGUE_GAIN:
       ov2685_set_gain(ov2685, ctrl->val);
       break;
   case V4L2_CID_VBLANK:
       ov2685_set_vts(ov2685, ctrl->val);
       break;
   case V4L2_CID_TEST_PATTERN:
       ov2685_enable_test_pattern(ov2685, ctrl->val);
       break;
   default:
       dev_warn(&client->dev, "%s Unhandled id:0x%x, val:0x%x\n",
            __func__, ctrl->id, ctrl->val);
       break;
   };
   pm_runtime_put(&client->dev);
 
   return ret;
}
 
static int ov2685_enum_frame_interval(struct v4l2_subdev *sd,
                      struct v4l2_subdev_pad_config *cfg,
                      struct v4l2_subdev_frame_interval_enum *fie)
{
   if (fie->index >= ARRAY_SIZE(supported_modes))
       return -EINVAL;
 
   if (fie->code != MEDIA_BUS_FMT_SBGGR10_1X10)
       return -EINVAL;
 
   fie->width = supported_modes[fie->index].width;
   fie->height = supported_modes[fie->index].height;
   fie->interval = supported_modes[fie->index].max_fps;
   return 0;
}
 
static int ov2685_g_mbus_config(struct v4l2_subdev *sd,
               struct v4l2_mbus_config *config)
{
   u32 val = 0;
 
   val = 1 << (OV2685_LANES - 1) |
         V4L2_MBUS_CSI2_CHANNEL_0 |
         V4L2_MBUS_CSI2_CONTINUOUS_CLOCK;
   config->type = V4L2_MBUS_CSI2;
   config->flags = val;
 
   return 0;
}
 
static struct v4l2_subdev_core_ops ov2685_core_ops = {
   .s_power = ov2685_s_power,
   .ioctl = ov2685_ioctl,
#ifdef CONFIG_COMPAT
   .compat_ioctl32 = ov2685_compat_ioctl32,
#endif
};
 
static struct v4l2_subdev_video_ops ov2685_video_ops = {
   .s_stream = ov2685_s_stream,
   .g_mbus_config = ov2685_g_mbus_config,
};
 
static struct v4l2_subdev_pad_ops ov2685_pad_ops = {
   .enum_mbus_code = ov2685_enum_mbus_code,
   .enum_frame_size = ov2685_enum_frame_sizes,
   .enum_frame_interval = ov2685_enum_frame_interval,
   .get_fmt = ov2685_get_fmt,
   .set_fmt = ov2685_set_fmt,
};
 
static struct v4l2_subdev_ops ov2685_subdev_ops = {
   .core    = &ov2685_core_ops,
   .video    = &ov2685_video_ops,
   .pad    = &ov2685_pad_ops,
};
 
#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
static const struct v4l2_subdev_internal_ops ov2685_internal_ops = {
   .open = ov2685_open,
};
#endif
 
static const struct v4l2_ctrl_ops ov2685_ctrl_ops = {
   .s_ctrl = ov2685_set_ctrl,
};
 
static int ov2685_initialize_controls(struct ov2685 *ov2685)
{
   const struct ov2685_mode *mode;
   struct v4l2_ctrl_handler *handler;
   struct v4l2_ctrl *ctrl;
   u64 exposure_max;
   u32 pixel_rate, h_blank;
   int ret;
 
   handler = &ov2685->ctrl_handler;
   mode = ov2685->cur_mode;
   ret = v4l2_ctrl_handler_init(handler, 1);
   if (ret)
       return ret;
   handler->lock = &ov2685->mutex;
 
   ctrl = v4l2_ctrl_new_int_menu(handler, NULL, V4L2_CID_LINK_FREQ,
                     0, 0, link_freq_menu_items);
   if (ctrl)
       ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
 
   pixel_rate = (link_freq_menu_items[0] * 2 * OV2685_LANES) /
            OV2685_BITS_PER_SAMPLE;
   v4l2_ctrl_new_std(handler, NULL, V4L2_CID_PIXEL_RATE,
             0, pixel_rate, 1, pixel_rate);
 
   h_blank = mode->hts_def - mode->width;
   ov2685->hblank = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_HBLANK,
               h_blank, h_blank, 1, h_blank);
   if (ov2685->hblank)
       ov2685->hblank->flags |= V4L2_CTRL_FLAG_READ_ONLY;
 
   ov2685->vblank = v4l2_ctrl_new_std(handler, &ov2685_ctrl_ops,
               V4L2_CID_VBLANK, mode->vts_def - mode->height,
               OV2685_VTS_MAX - mode->height, 1,
               mode->vts_def - mode->height);
 
   exposure_max = mode->vts_def - 4;
   ov2685->exposure = v4l2_ctrl_new_std(handler, &ov2685_ctrl_ops,
               V4L2_CID_EXPOSURE, OV2685_EXPOSURE_MIN,
               exposure_max, OV2685_EXPOSURE_STEP,
               mode->exp_def);
 
   ov2685->anal_gain = v4l2_ctrl_new_std(handler, &ov2685_ctrl_ops,
               V4L2_CID_ANALOGUE_GAIN, OV2685_GAIN_MIN,
               OV2685_GAIN_MAX, OV2685_GAIN_STEP,
               OV2685_GAIN_DEFAULT);
 
   ov2685->test_pattern = v4l2_ctrl_new_std_menu_items(handler,
               &ov2685_ctrl_ops, V4L2_CID_TEST_PATTERN,
               ARRAY_SIZE(ov2685_test_pattern_menu) - 1,
               0, 0, ov2685_test_pattern_menu);
 
   if (handler->error) {
       v4l2_ctrl_handler_free(handler);
       return handler->error;
   }
 
   ov2685->subdev.ctrl_handler = handler;
 
   return 0;
}
 
static int ov2685_check_sensor_id(struct ov2685 *ov2685,
                 struct i2c_client *client)
{
   struct device *dev = &ov2685->client->dev;
   int id, ret;
 
   ret = __ov2685_power_on(ov2685);
   if (ret)
       return ret;
   ov2685_read_reg(client, OV2685_REG_CHIP_ID,
           OV2685_REG_VALUE_16BIT, &id);
   __ov2685_power_off(ov2685);
 
   if (id != CHIP_ID) {
       dev_err(dev, "Wrong camera sensor id(%04x)\n", id);
       return -EINVAL;
   }
 
   dev_info(dev, "Detected OV%04x sensor\n", CHIP_ID);
 
   return 0;
}
 
static int ov2685_probe(struct i2c_client *client,
           const struct i2c_device_id *id)
{
   struct device *dev = &client->dev;
   struct device_node *node = dev->of_node;
   struct ov2685 *ov2685;
   struct v4l2_subdev *sd;
   char facing[2];
   int ret;
 
   dev_info(dev, "driver version: %02x.%02x.%02x",
       DRIVER_VERSION >> 16,
       (DRIVER_VERSION & 0xff00) >> 8,
       DRIVER_VERSION & 0x00ff);
 
   ov2685 = devm_kzalloc(dev, sizeof(*ov2685), GFP_KERNEL);
   if (!ov2685)
       return -ENOMEM;
 
   ret = of_property_read_u32(node, RKMODULE_CAMERA_MODULE_INDEX,
                  &ov2685->module_index);
   ret |= of_property_read_string(node, RKMODULE_CAMERA_MODULE_FACING,
                      &ov2685->module_facing);
   ret |= of_property_read_string(node, RKMODULE_CAMERA_MODULE_NAME,
                      &ov2685->module_name);
   ret |= of_property_read_string(node, RKMODULE_CAMERA_LENS_NAME,
                      &ov2685->len_name);
   if (ret) {
       dev_err(dev, "could not get module information!\n");
       return -EINVAL;
   }
 
   ov2685->client = client;
   ov2685->cur_mode = &supported_modes[0];
 
   ov2685->xvclk = devm_clk_get(dev, "xvclk");
   if (IS_ERR(ov2685->xvclk)) {
       dev_err(dev, "Failed to get xvclk\n");
       return -EINVAL;
   }
 
   ov2685->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW);
   if (IS_ERR(ov2685->reset_gpio)) {
       dev_err(dev, "Failed to get reset-gpios\n");
       return -EINVAL;
   }
 
   ov2685->avdd_regulator = devm_regulator_get(dev, "avdd");
   if (IS_ERR(ov2685->avdd_regulator)) {
       dev_err(dev, "Failed to get avdd-supply\n");
       return -EINVAL;
   }
   ov2685->dovdd_regulator = devm_regulator_get(dev, "dovdd");
   if (IS_ERR(ov2685->dovdd_regulator)) {
       dev_err(dev, "Failed to get dovdd-supply\n");
       return -EINVAL;
   }
 
   mutex_init(&ov2685->mutex);
   v4l2_i2c_subdev_init(&ov2685->subdev, client, &ov2685_subdev_ops);
   ret = ov2685_initialize_controls(ov2685);
   if (ret)
       goto destroy_mutex;
 
   ret = ov2685_check_sensor_id(ov2685, client);
   if (ret)
       return ret;
 
#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API
   ov2685->subdev.internal_ops = &ov2685_internal_ops;
#endif
#if defined(CONFIG_MEDIA_CONTROLLER)
   ov2685->pad.flags = MEDIA_PAD_FL_SOURCE;
   ov2685->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE |
            V4L2_SUBDEV_FL_HAS_EVENTS;
   ov2685->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
   ret = media_entity_pads_init(&ov2685->subdev.entity, 1, &ov2685->pad);
   if (ret < 0)
       goto free_ctrl_handler;
#endif
 
   sd = &ov2685->subdev;
   memset(facing, 0, sizeof(facing));
   if (strcmp(ov2685->module_facing, "back") == 0)
       facing[0] = 'b';
   else
       facing[0] = 'f';
 
   snprintf(sd->name, sizeof(sd->name), "m%02d_%s_%s %s",
        ov2685->module_index, facing,
        OV2685_NAME, dev_name(sd->dev));
   ret = v4l2_async_register_subdev_sensor_common(sd);
   if (ret) {
       dev_err(dev, "v4l2 async register subdev failed\n");
       goto clean_entity;
   }
 
   pm_runtime_enable(dev);
   return 0;
 
clean_entity:
#if defined(CONFIG_MEDIA_CONTROLLER)
   media_entity_cleanup(&ov2685->subdev.entity);
#endif
free_ctrl_handler:
   v4l2_ctrl_handler_free(&ov2685->ctrl_handler);
destroy_mutex:
   mutex_destroy(&ov2685->mutex);
 
   return ret;
}
 
static int ov2685_remove(struct i2c_client *client)
{
   struct ov2685 *ov2685 = i2c_get_clientdata(client);
 
   __ov2685_power_off(ov2685);
   v4l2_async_unregister_subdev(&ov2685->subdev);
   media_entity_cleanup(&ov2685->subdev.entity);
   v4l2_ctrl_handler_free(&ov2685->ctrl_handler);
   mutex_destroy(&ov2685->mutex);
 
   return 0;
}
 
static const struct of_device_id ov2685_of_match[] = {
   { .compatible = "ovti,ov2685" },
   {},
};
 
static struct i2c_driver ov2685_i2c_driver = {
   .driver = {
       .name = OV2685_NAME,
       .owner = THIS_MODULE,
       .pm = &ov2685_pm_ops,
       .of_match_table = ov2685_of_match
   },
   .probe        = &ov2685_probe,
   .remove        = &ov2685_remove,
};
 
module_i2c_driver(ov2685_i2c_driver);
 
MODULE_DESCRIPTION("OmniVision ov2685 sensor driver");
MODULE_LICENSE("GPL v2");