summaryrefslogtreecommitdiff
path: root/drivers/media/video/mxc/capture/mt9v111.c
blob: dfdd455db3dd2b1c18775c8d22998a444adc3c7e (plain)
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
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
/*
 * Copyright 2004-2008 Freescale Semiconductor, Inc. All Rights Reserved.
 */

/*
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

/*!
 * @file mt9v111.c
 *
 * @brief mt9v111 camera driver functions
 *
 * @ingroup Camera
 */

//#define MT9V111_DEBUG

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/ctype.h>
#include <linux/types.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/i2c.h>
#include <linux/clk.h>
#include <media/v4l2-int-device.h>
#include "mxc_v4l2_capture.h"
#include "mt9v111.h"

#ifdef MT9V111_DEBUG
static u16 testpattern = 0;
#endif

static mt9v111_conf mt9v111_device;

/*!
 * Holds the current frame rate.
 */

struct sensor {
	const struct mt9v111_platform_data *platform_data;
	struct v4l2_int_device *v4l2_int_device;
	struct i2c_client *i2c_client;
	struct v4l2_pix_format pix;
	struct v4l2_captureparm streamcap;
	bool on;
	bool used;

	/* control settings */
	int brightness;
	int saturation;
	int sharpness;
	int gain;
	int ae_mode;

};

static int mt9v111_probe(struct i2c_client *client,
			 const struct i2c_device_id *id);
static int mt9v111_remove(struct i2c_client *client);

static const struct i2c_device_id mt9v111_id[] = {
	{"mt9v111_1", 2},
	{"mt9v111_2", 3},
	{},
};

struct sensor mt9v111_data[ARRAY_SIZE(mt9v111_id)-1];

MODULE_DEVICE_TABLE(i2c, mt9v111_id);

static int mt9v111_suspend(struct i2c_client *client, pm_message_t mesg)
{
	pr_debug("In mt9v111_suspend\n");

	return 0;
}

static int mt9v111_resume(struct i2c_client *client)
{
	pr_debug("In mt9v111_resume\n");

	return 0;
}

static struct i2c_driver mt9v111_i2c_driver = {
	.driver = {
		   .owner = THIS_MODULE,
		   .name = "mt9v111",
		   },
	.probe = mt9v111_probe,
	.remove = mt9v111_remove,
	.id_table = mt9v111_id,
	.suspend = mt9v111_suspend,
	.resume = mt9v111_resume,
};

/*
 * Function definitions
 */

static int mt9v111_id_from_name ( const char * name )
{
	int id = -1;

	if( name == NULL || ( strlen(name) < strlen("mt9v111_n") ) )
		return -1;

	id = (int)simple_strtol(name+strlen("mt9v111_"),NULL,0) - 1;
	if( id >= ARRAY_SIZE(mt9v111_id) ) {
		printk("Invalid sensor index %d for %s\n",id,name);
		return -1;
	}

	return id;
}

static inline int mt9v111_read_reg(int sensorid , u8 reg)
{
	int val = i2c_smbus_read_word_data(mt9v111_data[sensorid].i2c_client, reg);
	if (val != -1)
		val = cpu_to_be16(val);
	return val;
}

/*!
 * Writes to the register via I2C.
 */
static inline int mt9v111_write_reg(int sensorid , u8 reg, u16 val)
{
	pr_debug("[%d] In mt9v111_write_reg (0x%x, 0x%x)\n", sensorid , reg, val);
	pr_debug("   write reg %x val %x.\n", reg, val);

	return i2c_smbus_write_word_data(mt9v111_data[sensorid].i2c_client,
					 reg, cpu_to_be16(val));
}

/*!
 * Initialize mt9v111_sensor_lib_datasheet
 * Libarary for Sensor configuration through I2C
 *
 * @param       coreReg       Core Registers
 * @param       ifpReg        IFP Register
 *
 * @return status
 */
static u8 mt9v111_sensor_lib_datasheet(int sensorid , mt9v111_coreReg * coreReg, mt9v111_IFPReg * ifpReg)
{
	u8 reg;
	u16 data;
	u8 error = 0;

	pr_debug("In mt9v111_sensor_lib\n");

	/* IFP R51(0x33)=5137,R57(0x39)=290,R59(0x3B)=1068,R62(0x3E)=4095,R89(0x59)=504,R90(0x5A)=605,R92(0x5C)=8222,R93(0x5D)=10021,R100(0x64)=4477 */

	/*
	 * setup to IFP registers
	 */
	reg = MT9V111I_ADDR_SPACE_SEL;
	data = ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_LIMIT_SHARP_SATU_CTRL;
	data = ifpReg->limitSharpSatuCtrl;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_UPPER_SHUTTER_DELAY_LIM;
	data = ifpReg->upperShutterDelayLi;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_IPF_BLACK_LEVEL_SUB;
	data = ifpReg->ipfBlackLevelSub;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_GAIN_THRE_CCAM_ADJ;
	data = ifpReg->agimnThreCamAdj;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_SHUTTER_60;
	data = ifpReg->shutter_width_60;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_AUTO_EXPOSURE_17;
	data = ifpReg->auto_exposure_17;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_SEARCH_FLICK_60;
	data = ifpReg->search_flicker_60;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_RESERVED93;
	data = ifpReg->reserved93;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_RESERVED100;
	data = ifpReg->reserved100;
	mt9v111_write_reg(sensorid,reg, data);

	/*
	 * setup to sensor core registers
	 */
	reg = MT9V111I_ADDR_SPACE_SEL;
	data = coreReg->addressSelect;
	mt9v111_write_reg(sensorid,reg, data);

	/* Core R5=46, R7[4]=0 (DEFAULT) ,R33=58369*/

	reg = MT9V111S_HOR_BLANKING;
	data = coreReg->horizontalBlanking;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111S_RESERVED33;
	data = coreReg->reserved33;
	mt9v111_write_reg(sensorid,reg, data);

	return error;
}

void mt9v111_config_datasheet(void)
{
	pr_debug("In mt9v111_config_datasheet\n");

	mt9v111_device.coreReg->addressSelect = MT9V111I_SEL_SCA;

	/* MT9V111I_ADDR_SPACE_SEL */
	mt9v111_device.ifpReg->addrSpaceSel = MT9V111I_SEL_IFP;

	/* Recommended values for 30fps @ 27MHz from datasheet*/

	/* Core R5=132, R6=10 , R7[4]=0 (DEFAULT) ,R33=58369*/

	mt9v111_device.coreReg->horizontalBlanking = 132;
	mt9v111_device.coreReg->verticalBlanking = 10;
	mt9v111_device.coreReg->reserved33 = 58369;

	/* IFP R51(0x33)=5137,R57(0x39)=290,R59(0x3B)=1068,R62(0x3E)=4095,R89(0x59)=504,R90(0x5A)=605,R92(0x5C)=8222,R93(0x5D)=10021,R100(0x64)=4477 */

	mt9v111_device.ifpReg->limitSharpSatuCtrl = 5137;
	mt9v111_device.ifpReg->upperShutterDelayLi = 290;
	mt9v111_device.ifpReg->ipfBlackLevelSub = 1068;
	mt9v111_device.ifpReg->agimnThreCamAdj = 4095;

	mt9v111_device.ifpReg->shutter_width_60 = 504;
	mt9v111_device.ifpReg->auto_exposure_17 = 605;
	mt9v111_device.ifpReg->search_flicker_60 = 8222;
	mt9v111_device.ifpReg->reserved93 = 10021;
	mt9v111_device.ifpReg->reserved100 = 4477;
}


/*!
 * mt9v111 sensor set saturtionn
 *
 * @param saturation   int

 * @return  Error code of 0.
 */
static int mt9v111_set_saturation(int sensorid , int saturation)
{
	u8 reg;
	u16 data;
	pr_debug("In mt9v111_set_saturation(%d)\n",
		saturation);

	switch (saturation) {
	case 150:
		mt9v111_device.ifpReg->awbSpeed = 0x6D14;
		break;
	case 100:
		mt9v111_device.ifpReg->awbSpeed = 0x4514;
		break;
	case 75:
		mt9v111_device.ifpReg->awbSpeed = 0x4D14;
		break;
	case 50:
		mt9v111_device.ifpReg->awbSpeed = 0x5514;
		break;
	case 37:
		mt9v111_device.ifpReg->awbSpeed = 0x5D14;
		break;
	case 25:
		mt9v111_device.ifpReg->awbSpeed = 0x6514;
		break;
	case 0:
		mt9v111_device.ifpReg->awbSpeed = 0x7514;
		break;
	default:
		mt9v111_device.ifpReg->awbSpeed = 0x4514;
		break;
	}

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	/* Operation Mode Control */
	reg = MT9V111I_AWB_SPEED;
	data = mt9v111_device.ifpReg->awbSpeed;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

#if 0
/*!
 * mt9v111 sensor set digital zoom
 *
 * @param on/off   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitalzoom(int sensorid , unsigned int on)
{
	u8 reg;
	u16 data;
	pr_debug("In mt9v111_set_digitalzoom(%d)\n",on);

	if( on > 1 )
	    return -1;

	mt9v111_device.coreReg->digitalZoom = on;

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.coreReg->addressSelect;
	mt9v111_write_reg(sensorid,reg, data);

	/* Operation Mode Control */
	reg = MT9V111S_DIGITAL_ZOOM;
	data = mt9v111_device.coreReg->digitalZoom;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

/*!
 * mt9v111 sensor set digital pan
 *
 * @param pan_level   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitalpan (int sensorid , int pan_level)
{
	u8 reg;
	u16 data;
	pr_debug("In mt9v111_set_digitalpan(%d)\n",
		pan_level);

	mt9v111_device.ifpReg->HPan = 8;
	if (pan_level & 0xFFFF0000) {
		pan_level = (0xFFFFFFFF - pan_level);
		pan_level = pan_level / 0x14;
		mt9v111_device.ifpReg->HPan =
			mt9v111_device.ifpReg->HPan - (pan_level & 0x3FF);
	} else {
		pan_level = pan_level / 0x14;
		mt9v111_device.ifpReg->HPan =
			mt9v111_device.ifpReg->HPan + (pan_level - 1);
	}

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	/* Operation Mode Control */
	reg = MT9V111i_H_PAN;
	data = mt9v111_device.ifpReg->HPan;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

/*!
 * mt9v111 sensor set digital tilt
 *
 * @param tilt_level   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitaltilt (int sensorid , int tilt_level)
{
	u8 reg;
	u16 data;
	pr_debug("In mt9v111_set_digitaltilt(%d)\n",
		tilt_level);

	mt9v111_device.ifpReg->VPan = 8;
        if( tilt_level & 0xFFFF0000 ) {
				tilt_level = (0xFFFFFFFF - tilt_level);
				tilt_level = tilt_level / 0x14;
                mt9v111_device.ifpReg->VPan = mt9v111_device.ifpReg->VPan - (tilt_level & 0x3FF);
        }
        else {
				tilt_level = tilt_level / 0x14;
                mt9v111_device.ifpReg->VPan = mt9v111_device.ifpReg->VPan + (tilt_level - 1);
        }

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	/* Operation Mode Control */
	reg = MT9V111i_V_PAN;
	data = mt9v111_device.ifpReg->VPan;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

/*!
 * mt9v111 sensor set output resolution
 *
 * @param resolution   res

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_outputresolution(int sensorid , MT9V111_OutputResolution res)
{
	u8 reg;
	u16 data;
	int zoom = 0;

	pr_debug("In mt9v111_set_outputresolution(%d)\n",res);

	switch (res) {
	    case MT9V111_OutputResolution_VGA:
			/* 640x480 */
			mt9v111_device.ifpReg->HSize = 0x0280;
			mt9v111_device.ifpReg->VSize = 0x01E0;
			break;

	    case MT9V111_OutputResolution_QVGA:
			/* 320x240 */
			mt9v111_device.ifpReg->HSize = 0x0140;
			mt9v111_device.ifpReg->VSize = 0x00F0;
			break;

	    case MT9V111_OutputResolution_CIF:
			/* 352x288 */
			mt9v111_device.ifpReg->HSize = 0x0160;
			mt9v111_device.ifpReg->VSize = 0x0120;
			mt9v111_device.ifpReg->HZoom = 0x0160;
			mt9v111_device.ifpReg->VZoom = 0x0120;
			zoom = 1;
			break;

	    case MT9V111_OutputResolution_QCIF:
			/* 176X220 */
			mt9v111_device.ifpReg->HSize = 0x00B0;
			mt9v111_device.ifpReg->VSize = 0x0090;
			mt9v111_device.ifpReg->HZoom = 0x00B0;
			mt9v111_device.ifpReg->VZoom = 0x0090;
			zoom = 1;
			break;

	    case MT9V111_OutputResolution_QQVGA:
			/* 2048*1536 */
			mt9v111_device.ifpReg->HSize = 0x00A0;
			mt9v111_device.ifpReg->VSize = 0x0078;
			mt9v111_device.ifpReg->HZoom = 0x00A0;
			mt9v111_device.ifpReg->VZoom = 0x0078;
			zoom = 1;
			break;

	    case MT9V111_OutputResolution_SXGA:
		/* 1280x1024 */
			break;

		default:
			break;
	}

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111i_V_SIZE;
	data = mt9v111_device.ifpReg->VSize;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111i_H_SIZE;
	data = mt9v111_device.ifpReg->HSize;
	mt9v111_write_reg(sensorid,reg, data);

	if ( zoom ) {
	    reg = MT9V111i_V_ZOOM;
	    data = mt9v111_device.ifpReg->VZoom;
	    mt9v111_write_reg(sensorid,reg, data);

	    reg = MT9V111i_H_ZOOM;
	    data = mt9v111_device.ifpReg->HZoom;
	    mt9v111_write_reg(sensorid,reg, data);
	}

	return 0;
}

/*!
 * mt9v111 sensor set digital flash
 *
 * @param flash_level   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitalflash (int sensorid , int flash_level)
{
	u8 reg;
	u16 data = mt9v111_read_reg(sensorid,MT9V111i_FLASH_CTRL);
	pr_debug("In mt9v111_set_digitalflash(%d)\n",
			flash_level);

	if(flash_level) {
	    data &= (0xFF00);
	    data |= ((flash_level & 0x00FF) | (1<<13));
	}
	else {
	    data &= ~(1<<13);
	}

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	/* Operation Mode Control */
	reg = MT9V111i_FLASH_CTRL;
	mt9v111_device.ifpReg->flashCtrl = data;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

/*!
 * mt9v111 sensor set digital monochrome
 *
 * @param on   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitalmonochrome (int sensorid , int on)
{
	u8 reg;
	u16 data = mt9v111_read_reg(sensorid,MT9V111I_FORMAT_CONTROL);
	pr_debug("In mt9v111_set_digitalmonochrome(%d)\n",
			on);

        /* clear the monochrome bit field */
        data &= ~(1<<5);

         /* enable or disable monochrome mode */
         if( on )
                 data |= (0<<5);
         else
                 data |= (1<<5);

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	/* Operation Mode Control */
	reg = MT9V111I_FORMAT_CONTROL;
	mt9v111_device.ifpReg->formatControl = data;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}
#endif

/*!
 * mt9v111 sensor set digital sharpness
 *
 * @param value   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitalsharpness (int sensorid , int value)
{
	u8 reg;
	u16 data ;

	pr_debug("In mt9v111_set_digitalsharpness(%d)\n",value);

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	data = mt9v111_read_reg(sensorid,MT9V111I_APERTURE_GAIN);

	/* erase current and remove auto reduce sharpness in low light */
	 data &= ~(0x000F);
	 data |= (value & (0x000F));
	 if( data > (0x000F) )
			 return -1;

	/* Operation Mode Control */
	reg = MT9V111I_APERTURE_GAIN;
	mt9v111_device.ifpReg->apertureGain = data;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

/*!
 * mt9v111 sensor set digital brightness
 *
 * @param value   int

 * @return  0 on success, -1 on error.
 */
static int mt9v111_set_digitalbrightness (int sensorid , int value)
{
	u8 reg;
	u16 data;
	u32 max_brightness, min_brightness;

	data = mt9v111_read_reg(sensorid,MT9V111I_CLIP_LIMIT_OUTPUT_LUMI);
	max_brightness = data >> 8;
	min_brightness = (u8)data;

	if( value > max_brightness )
		value = max_brightness;
	else if( value < min_brightness )
		value = min_brightness;

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	data = mt9v111_read_reg(sensorid,MT9V111I_AE_PRECISION_TARGET);
	data &= 0xFF00; /* Clear target luminance */
	data |= ((u8)value );

	/* Operation Mode Control */
	reg = MT9V111I_AE_PRECISION_TARGET;
	mt9v111_device.ifpReg->AEPrecisionTarget = data;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

/*!
 * mt9v111 sensor set Auto Exposure measurement window mode configuration
 *
 * @param ae_mode      int
 * @return  Error code of 0 (no Error)
 */
static int mt9v111_set_ae_mode(int sensorid , int ae_mode)
{
	u8 reg;
	u16 data;

	pr_debug("In mt9v111_set_ae_mode(%d)\n",
		ae_mode);

	/* Currently this driver only supports auto and manual exposure
	 * modes. */
	if ((ae_mode > 1) || (ae_mode << 0))
		return -EPERM;

	/*
	 * The auto exposure is set in bit 14.
	 * Other values are set for:
	 *  -on the fly defect correction is on (bit 13).
	 *  -aperature correction knee enabled (bit 12).
	 *  -ITU_R BT656 synchronization codes are embedded in the image (bit 7)
	 *  -AE measurement window is weighted sum of large and center windows
	 *     (bits 2-3).
	 *  -auto white balance is on (bit 1).
	 *  -normal color processing (bit 4 = 0).
	 */
	/* V4L2_EXPOSURE_AUTO = 0; needs register setting of 0x708E */
	/* V4L2_EXPOSURE_MANUAL = 1 needs register setting of 0x308E */
	mt9v111_device.ifpReg->modeControl &= 0x3fff;
	mt9v111_device.ifpReg->modeControl |= (ae_mode & 0x03) << 14;
	mt9v111_data[sensorid].ae_mode = ae_mode;

	reg = MT9V111I_ADDR_SPACE_SEL;
	data = mt9v111_device.ifpReg->addrSpaceSel;
	mt9v111_write_reg(sensorid,reg, data);

	reg = MT9V111I_MODE_CONTROL;
	data = mt9v111_device.ifpReg->modeControl;
	mt9v111_write_reg(sensorid,reg, data);

	return 0;
}

#if 0
/*!
 * mt9v111 sensor get AE measurement window mode configuration
 *
 * @param ae_mode      int *
 * @return  None
 */
static void mt9v111_get_ae_mode(int *ae_mode)
{
	pr_debug("In mt9v111_get_ae_mode(%d)\n", *ae_mode);

	if (ae_mode != NULL) {
		*ae_mode = (mt9v111_device.ifpReg->modeControl & 0xc) >> 2;
	}
}
#endif

#ifdef MT9V111_DEBUG
/*!
 * Set sensor to test mode, which will generate test pattern.
 *
 * @return none
 */
static void mt9v111_test_pattern(int sensorid , bool flag)
{
	u16 data;

	/* switch to sensor registers */
	mt9v111_write_reg(sensorid,MT9V111I_ADDR_SPACE_SEL, MT9V111I_SEL_SCA);

	if (flag == true) {
		testpattern = MT9V111S_OUTCTRL_TEST_MODE;

		data = mt9v111_read_reg(sensorid,MT9V111S_ROW_NOISE_CTRL) & 0xBF;
		mt9v111_write_reg(sensorid,MT9V111S_ROW_NOISE_CTRL, data);

		mt9v111_write_reg(sensorid,MT9V111S_TEST_DATA, 0);

		/* changes take effect */
		data = MT9V111S_OUTCTRL_CHIP_ENABLE | testpattern | 0x3000;
		mt9v111_write_reg(sensorid,MT9V111S_OUTPUT_CTRL, data);
	} else {
		testpattern = 0;

		data = mt9v111_read_reg(sensorid,MT9V111S_ROW_NOISE_CTRL) | 0x40;
		mt9v111_write_reg(MT9V111S_ROW_NOISE_CTRL, data);

		/* changes take effect */
		data = MT9V111S_OUTCTRL_CHIP_ENABLE | testpattern | 0x3000;
		mt9v111_write_reg(sensorid,MT9V111S_OUTPUT_CTRL, data);
	}
}
#endif


/* --------------- IOCTL functions from v4l2_int_ioctl_desc --------------- */

/*!
 * ioctl_g_ifparm - V4L2 sensor interface handler for vidioc_int_g_ifparm_num
 * s: pointer to standard V4L2 device structure
 * p: pointer to standard V4L2 vidioc_int_g_ifparm_num ioctl structure
 *
 * Gets slave interface parameters.
 * Calculates the required xclk value to support the requested
 * clock parameters in p.  This value is returned in the p
 * parameter.
 *
 * vidioc_int_g_ifparm returns platform-specific information about the
 * interface settings used by the sensor.
 *
 * Given the image capture format in pix, the nominal frame period in
 * timeperframe, calculate the required xclk frequency.
 *
 * Called on open.
 */
static int ioctl_g_ifparm(struct v4l2_int_device *s, struct v4l2_ifparm *p)
{
	pr_debug("In mt9v111:ioctl_g_ifparm\n");

	if (s == NULL) {
		pr_err("   ERROR!! no slave device set!\n");
		return -1;
	}

	memset(p, 0, sizeof(*p));
	p->u.bt656.clock_curr = MT9V111_MCLK;
	p->if_type = V4L2_IF_TYPE_BT656;
	p->u.bt656.mode = V4L2_IF_TYPE_BT656_MODE_NOBT_8BIT;
	p->u.bt656.bt_sync_correct = 1;	// translates to CSI ext vsync
	p->u.bt656.clock_min = MT9V111_CLK_MIN;
	p->u.bt656.clock_max = MT9V111_CLK_MAX;

	return 0;
}

/*!
 * Sets the camera power.
 *
 * s  pointer to the camera device
 * on if 1, power is to be turned on.  0 means power is to be turned off
 *
 * ioctl_s_power - V4L2 sensor interface handler for vidioc_int_s_power_num
 * @s: pointer to standard V4L2 device structure
 * @on: power state to which device is to be set
 *
 * Sets devices power state to requrested state, if possible.
 * This is called on suspend and resume.
 */
static int ioctl_s_power(struct v4l2_int_device *s, int on)
{
	struct sensor *sensor = s->priv;

	pr_debug("In mt9v111:ioctl_s_power\n");

	sensor->on = on;

	if(on) {
		ipu_csi_enable_mclk_if(CSI_MCLK_I2C, 0 /* cam->csi */, true, true);
	}
	else {
		ipu_csi_enable_mclk_if(CSI_MCLK_I2C, 0 /* cam->csi */, false, false);
	}

	return 0;
}

/*!
 * ioctl_g_parm - V4L2 sensor interface handler for VIDIOC_G_PARM ioctl
 * @s: pointer to standard V4L2 device structure
 * @a: pointer to standard V4L2 VIDIOC_G_PARM ioctl structure
 *
 * Returns the sensor's video CAPTURE parameters.
 */
static int ioctl_g_parm(struct v4l2_int_device *s, struct v4l2_streamparm *a)
{
	int ret = 0;
	struct v4l2_captureparm *cparm = &a->parm.capture;
	/* s->priv points to mt9v111_data */
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);

	pr_debug("In mt9v111:ioctl_g_parm\n");

	if( sensorid < 0 )
		return ret;

	switch (a->type) {
	/* This is the only case currently handled. */
	case V4L2_BUF_TYPE_VIDEO_CAPTURE:
		pr_debug("   type is V4L2_BUF_TYPE_VIDEO_CAPTURE\n");
		memset(a, 0, sizeof(*a));
		a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
		cparm->capability = mt9v111_data[sensorid].streamcap.capability;
		cparm->timeperframe =
				mt9v111_data[sensorid].streamcap.timeperframe;
		cparm->capturemode = mt9v111_data[sensorid].streamcap.capturemode;
		ret = 0;
		break;

	/* These are all the possible cases. */
	case V4L2_BUF_TYPE_VIDEO_OUTPUT:
	case V4L2_BUF_TYPE_VIDEO_OVERLAY:
	case V4L2_BUF_TYPE_VBI_CAPTURE:
	case V4L2_BUF_TYPE_VBI_OUTPUT:
	case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
	case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
		pr_err("   type is not V4L2_BUF_TYPE_VIDEO_CAPTURE " \
			"but %d\n", a->type);
		ret = -EINVAL;
		break;

	default:
		pr_err("   type is unknown - %d\n", a->type);
		ret = -EINVAL;
		break;
	}

	return ret;
}

/*!
 * ioctl_s_parm - V4L2 sensor interface handler for VIDIOC_S_PARM ioctl
 * @s: pointer to standard V4L2 device structure
 * @a: pointer to standard V4L2 VIDIOC_S_PARM ioctl structure
 *
 * Configures the sensor to use the input parameters, if possible.  If
 * not possible, reverts to the old parameters and returns the
 * appropriate error code.
 */
static int ioctl_s_parm(struct v4l2_int_device *s, struct v4l2_streamparm *a)
{
	int ret = 0;
	struct v4l2_captureparm *cparm = &a->parm.capture;
	/* s->priv points to mt9v111_data */
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);

	pr_debug("In mt9v111:ioctl_s_parm\n");

	if( sensorid < 0 )
		return ret;

	switch (a->type) {
	/* This is the only case currently handled. */
	case V4L2_BUF_TYPE_VIDEO_CAPTURE:
		pr_debug("   type is V4L2_BUF_TYPE_VIDEO_CAPTURE\n");

		/* Check that the new frame rate is allowed.
		 * Changing the frame rate is not allowed on this
		 *camera. */
		if (cparm->timeperframe.denominator !=
		    mt9v111_data[sensorid].streamcap.timeperframe.denominator) {
			pr_err("ERROR: mt9v111: ioctl_s_parm: " \
			       "This camera does not allow frame rate "
			       "changes.\n");
			ret = -EINVAL;
		} else {
			mt9v111_data[sensorid].streamcap.timeperframe =
						cparm->timeperframe;
		      /* Call any camera functions to match settings. */
		}

		/* Check that new capture mode is supported. */
		if ((cparm->capturemode != 0) &&
		    !(cparm->capturemode & V4L2_MODE_HIGHQUALITY)) {
			pr_err("ERROR: mt9v111: ioctl_s_parm: " \
				"unsupported capture mode\n");
			ret  = -EINVAL;
		} else {
			mt9v111_data[sensorid].streamcap.capturemode =
						cparm->capturemode;
		      /* Call any camera functions to match settings. */
		      /* Right now this camera only supports 1 mode. */
		}
		break;

	/* These are all the possible cases. */
	case V4L2_BUF_TYPE_VIDEO_OUTPUT:
	case V4L2_BUF_TYPE_VIDEO_OVERLAY:
	case V4L2_BUF_TYPE_VBI_CAPTURE:
	case V4L2_BUF_TYPE_VBI_OUTPUT:
	case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
	case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
		pr_err("   type is not V4L2_BUF_TYPE_VIDEO_CAPTURE " \
			"but %d\n", a->type);
		ret = -EINVAL;
		break;

	default:
		pr_err("   type is unknown - %d\n", a->type);
		ret = -EINVAL;
		break;
	}

	return 0;
}

/*!
 * ioctl_g_fmt_cap - V4L2 sensor interface handler for ioctl_g_fmt_cap
 * @s: pointer to standard V4L2 device structure
 * @f: pointer to standard V4L2 v4l2_format structure
 *
 * Returns the sensor's current pixel format in the v4l2_format
 * parameter.
 */
static int ioctl_g_fmt_cap(struct v4l2_int_device *s, struct v4l2_format *f)
{
	struct sensor *sensor = s->priv;
	/* s->priv points to mt9v111_data */

	pr_debug("In mt9v111:ioctl_g_fmt_cap.\n");
	pr_debug("   Returning size of %dx%d\n",
		sensor->pix.width, sensor->pix.height);

	f->fmt.pix = sensor->pix;

	return 0;
}

#if 0
/*!
 * ioctl_queryctrl - V4L2 sensor interface handler for VIDIOC_QUERYCTRL ioctl
 * @s: pointer to standard V4L2 device structure
 * @qc: standard V4L2 VIDIOC_QUERYCTRL ioctl structure
 *
 * If the requested control is supported, returns the control information
 * from the video_control[] array.  Otherwise, returns -EINVAL if the
 * control is not supported.
 */
static int ioctl_queryctrl(struct v4l2_int_device *s, struct v4l2_queryctrl *qc)
{
	pr_debug("In mt9v111:ioctl_queryctrl\n");

	return 0;
}
#endif

/*!
 * ioctl_g_ctrl - V4L2 sensor interface handler for VIDIOC_G_CTRL ioctl
 * @s: pointer to standard V4L2 device structure
 * @vc: standard V4L2 VIDIOC_G_CTRL ioctl structure
 *
 * If the requested control is supported, returns the control's current
 * value from the video_control[] array.  Otherwise, returns -EINVAL
 * if the control is not supported.
 */
static int ioctl_g_ctrl(struct v4l2_int_device *s, struct v4l2_control *vc)
{
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);

	pr_debug("In mt9v111:ioctl_g_ctrl\n");

	if( sensorid < 0 )
		return 0;

	switch (vc->id) {
	case V4L2_CID_BRIGHTNESS:
		pr_debug("   V4L2_CID_BRIGHTNESS\n");
		vc->value = mt9v111_data[sensorid].brightness;
		break;
	case V4L2_CID_SATURATION:
		pr_debug("   V4L2_CID_SATURATION\n");
		vc->value = mt9v111_data[sensorid].saturation;
		break;
	case V4L2_CID_EXPOSURE:
		pr_debug("   V4L2_CID_EXPOSURE\n");
		vc->value = mt9v111_data[sensorid].ae_mode;
		break;
	case V4L2_CID_GAIN:
		pr_debug("   V4L2_CID_GAIN\n");
		vc->value = mt9v111_data[sensorid].gain;
		break;
	default:
		pr_debug("   Default case\n");
		return -EPERM;
		break;
	}

	return 0;
}

/*!
 * ioctl_s_ctrl - V4L2 sensor interface handler for VIDIOC_S_CTRL ioctl
 * @s: pointer to standard V4L2 device structure
 * @vc: standard V4L2 VIDIOC_S_CTRL ioctl structure
 *
 * If the requested control is supported, sets the control's current
 * value in HW (and updates the video_control[] array).  Otherwise,
 * returns -EINVAL if the control is not supported.
 */
static int ioctl_s_ctrl(struct v4l2_int_device *s, struct v4l2_control *vc)
{
	int retval = 0;
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);

	pr_debug("In mt9v111:ioctl_s_ctrl %d\n",
		vc->id);

	if( sensorid < 0 )
		return retval;

	switch (vc->id) {
	case V4L2_CID_BRIGHTNESS:
		pr_debug("   V4L2_CID_BRIGHTNESS\n");
		mt9v111_set_digitalbrightness(sensorid,vc->value);
		mt9v111_data[sensorid].brightness = vc->value;
		break;
	case V4L2_CID_SATURATION:
		pr_debug("   V4L2_CID_SATURATION\n");
		retval = mt9v111_set_saturation(sensorid,vc->value);
		mt9v111_data[sensorid].saturation = vc->value;
		break;
	case V4L2_CID_EXPOSURE:
		pr_debug("   V4L2_CID_EXPOSURE\n");
		retval = mt9v111_set_ae_mode(sensorid,vc->value);
		mt9v111_data[sensorid].ae_mode = vc->value;
		break;
	case V4L2_CID_GAIN:
		pr_debug("   V4L2_CID_GAIN\n");
		mt9v111_set_digitalsharpness(sensorid,vc->value);
		mt9v111_data[sensorid].gain = vc->value;
		break;
	default:
		pr_debug("   Default case\n");
		retval = -EPERM;
		break;
	}

	return retval;
}

static void mt9v111_ifp_reset ( int sensorid )
{
	mt9v111_write_reg(sensorid,MT9V111S_ADDR_SPACE_SEL, 0x0001);
	mt9v111_write_reg(sensorid,MT9V111I_SOFT_RESET, 0x0001);
	msleep(100);
	mt9v111_write_reg(sensorid,MT9V111I_SOFT_RESET, 0x0000);
	msleep(100);
}

static void mt9v111_sensor_reset ( int sensorid )
{
	mt9v111_write_reg(sensorid,MT9V111S_ADDR_SPACE_SEL, 0x0004);
	mt9v111_write_reg(sensorid,MT9V111S_RESET, 0x0001);
	msleep(100);
	mt9v111_write_reg(sensorid,MT9V111S_RESET, 0x0000);
	msleep(100);
}

/*!
 * ioctl_init - V4L2 sensor interface handler for VIDIOC_INT_INIT
 * @s: pointer to standard V4L2 device structure
 */
static int ioctl_init(struct v4l2_int_device *s)
{
	int sensorid = 0;

	sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);
	if( sensorid < 0 )
		return 0;

	pr_debug("In mt9v111:ioctl_init for sensor %d\n",sensorid);

	mt9v111_sensor_reset(sensorid);
	mt9v111_ifp_reset(sensorid);
	mt9v111_sensor_lib_datasheet(sensorid,mt9v111_device.coreReg, mt9v111_device.ifpReg);

	return 0;
}

/*!
 * ioctl_dev_init - V4L2 sensor interface handler for vidioc_int_dev_init_num
 * @s: pointer to standard V4L2 device structure
 *
 * Initialise the device when slave attaches to the master.
 */
static int ioctl_dev_init(struct v4l2_int_device *s)
{
	int sensorid = 0;
	uint32_t clock_rate = MT9V111_MCLK;

	sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);
	if( sensorid < 0 )
		return 0;

	pr_debug("In mt9v111:ioctl_dev_init\n");

	set_mclk_rate(&clock_rate, 0);	// Both sensors use mclk0 on Digi ccwmx51

	mt9v111_sensor_reset(sensorid);
	mt9v111_ifp_reset(sensorid);
	mt9v111_sensor_lib_datasheet(sensorid,mt9v111_device.coreReg, mt9v111_device.ifpReg);

	return 0;
}

/* list of image formats supported by sensor */
static const struct v4l2_fmtdesc mt9v111_formats[] = {
	{
		.description = "RGB565",
		.pixelformat = V4L2_PIX_FMT_RGB565,
	},
	{
		.description = "YUV422 UYVY",
		.pixelformat = V4L2_PIX_FMT_UYVY,
	},
};

#define MT9V111_NUM_CAPTURE_FORMATS	ARRAY_SIZE(mt9v111_formats)

static int ioctl_enum_fmt_cap(struct v4l2_int_device *s,
				   struct v4l2_fmtdesc *fmt)
{
	int index = fmt->index;

	switch (fmt->type) {
	case V4L2_BUF_TYPE_VIDEO_CAPTURE:
		if (index >= MT9V111_NUM_CAPTURE_FORMATS)
			return -EINVAL;
		break;

	default:
		return -EINVAL;
	}

	fmt->flags = mt9v111_formats[index].flags;
	strlcpy(fmt->description, mt9v111_formats[index].description,
		sizeof(fmt->description));
	fmt->pixelformat = mt9v111_formats[index].pixelformat;

	return 0;
}

static int ioctl_s_fmt_cap(struct v4l2_int_device *s,
			struct v4l2_format *f)
{
	unsigned short reg;
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);
	struct sensor *sensor = s->priv;
	/* s->priv points to mt9v111_data */

	if( sensorid < 0 )
		return -ENODEV;

	/* Select IFP registers */
	mt9v111_write_reg (sensorid,MT9V111S_ADDR_SPACE_SEL, 0x0001);

	switch (f->fmt.pix.pixelformat) {
		case V4L2_PIX_FMT_RGB565:
			/*MT9V111I_OUTPUT_FORMAT_CTRL2*/
			reg = mt9v111_read_reg (sensorid,MT9V111I_OUTPUT_FORMAT_CTRL2);
			reg &= ~(0x3 << 6);
			mt9v111_write_reg (sensorid,MT9V111I_OUTPUT_FORMAT_CTRL2, reg);

			/* MT9V111I_FORMAT_CONTROL */
			reg = mt9v111_read_reg(sensorid,MT9V111I_FORMAT_CONTROL);
			reg |= 1 << 12;
			mt9v111_write_reg(sensorid,MT9V111I_FORMAT_CONTROL, reg);
			break;

		case V4L2_PIX_FMT_YUV444:
		case V4L2_PIX_FMT_UYVY:
		case V4L2_PIX_FMT_YVU420:
		case V4L2_PIX_FMT_YUYV:
			/* MT9V111I_FORMAT_CONTROL */
			reg = mt9v111_read_reg(sensorid,MT9V111I_FORMAT_CONTROL);
			reg &= ~(1 << 12);
			mt9v111_write_reg(sensorid,MT9V111I_FORMAT_CONTROL, reg);
			break;

		default:
			return -EINVAL;
	}

	sensor->pix.width = f->fmt.pix.width;
	sensor->pix.height = f->fmt.pix.height;
	sensor->pix.sizeimage = f->fmt.pix.sizeimage;
	sensor->pix.pixelformat = f->fmt.pix.pixelformat;
	return 0;
}

static int ioctl_try_fmt_cap(struct v4l2_int_device *s, struct v4l2_format *f)
{
	int i;

	if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

	for( i=0 ; i < MT9V111_NUM_CAPTURE_FORMATS ; i++) {
		if( f->fmt.pix.pixelformat == mt9v111_formats[i].pixelformat )
			return 0;
	}

	return -EINVAL;
}

#ifdef CONFIG_VIDEO_ADV_DEBUG
static int ioctl_get_register(struct v4l2_int_device *s,struct v4l2_dbg_register * dreg)
{
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);

	ipu_csi_enable_mclk_if(CSI_MCLK_I2C, 0 /* cam->csi */ , true, true);
	dreg->val = mt9v111_read_reg (sensorid,dreg->reg);
	ipu_csi_enable_mclk_if(CSI_MCLK_I2C, 0 /* cam->csi */ , false, false);
	return 0;
}

static int ioctl_set_register(struct v4l2_int_device *s,struct v4l2_dbg_register * dreg)
{
	int sensorid = mt9v111_id_from_name(((struct sensor *)s->priv)->v4l2_int_device->name);

	ipu_csi_enable_mclk_if(CSI_MCLK_I2C, 0 /* cam->csi */ , true, true);
	mt9v111_write_reg (sensorid,dreg->reg, dreg->val);
	ipu_csi_enable_mclk_if(CSI_MCLK_I2C, 0 /* cam->csi */ , false, false);
	return 0;
}
#endif

/*!
 * This structure defines all the ioctls for this module and links them to the
 * enumeration.
 */
static struct v4l2_int_ioctl_desc mt9v111_ioctl_desc[] = {

	{vidioc_int_dev_init_num, (v4l2_int_ioctl_func *)ioctl_dev_init},

	/*!
	 * Delinitialise the dev. at slave detach.
	 * The complement of ioctl_dev_init.
	 */
/*	{vidioc_int_dev_exit_num, (v4l2_int_ioctl_func *) ioctl_dev_exit}, */

	{vidioc_int_s_power_num, (v4l2_int_ioctl_func *) ioctl_s_power},
	{vidioc_int_g_ifparm_num, (v4l2_int_ioctl_func *) ioctl_g_ifparm},
/*	{vidioc_int_g_needs_reset_num,
				(v4l2_int_ioctl_func *) ioctl_g_needs_reset}, */
/*	{vidioc_int_reset_num, (v4l2_int_ioctl_func *) ioctl_reset}, */
	{vidioc_int_init_num, (v4l2_int_ioctl_func *) ioctl_init},

	/*!
	 * VIDIOC_ENUM_FMT ioctl for the CAPTURE buffer type.
	 */
	{vidioc_int_enum_fmt_cap_num,
				(v4l2_int_ioctl_func *) ioctl_enum_fmt_cap},


#ifdef CONFIG_VIDEO_ADV_DEBUG
	{vidioc_int_g_register_num,
				(v4l2_int_ioctl_func *) ioctl_get_register},
	{vidioc_int_s_register_num,
				(v4l2_int_ioctl_func *) ioctl_set_register},
#endif
	/*!
	 * VIDIOC_TRY_FMT ioctl for the CAPTURE buffer type.
	 * This ioctl is used to negotiate the image capture size and
	 * pixel format without actually making it take effect.
	 */
	{vidioc_int_try_fmt_cap_num,
				(v4l2_int_ioctl_func *) ioctl_try_fmt_cap},

	{vidioc_int_g_fmt_cap_num, (v4l2_int_ioctl_func *) ioctl_g_fmt_cap},

	/*!
	 * If the requested format is supported, configures the HW to use that
	 * format, returns error code if format not supported or HW can't be
	 * correctly configured.
	 */
	{vidioc_int_s_fmt_cap_num, (v4l2_int_ioctl_func *)ioctl_s_fmt_cap},

	{vidioc_int_g_parm_num, (v4l2_int_ioctl_func *) ioctl_g_parm},
	{vidioc_int_s_parm_num, (v4l2_int_ioctl_func *) ioctl_s_parm},
/*	{vidioc_int_queryctrl_num, (v4l2_int_ioctl_func *) ioctl_queryctrl}, */
	{vidioc_int_g_ctrl_num, (v4l2_int_ioctl_func *) ioctl_g_ctrl},
	{vidioc_int_s_ctrl_num, (v4l2_int_ioctl_func *) ioctl_s_ctrl},
};

static struct v4l2_int_slave mt9v111_slave[] = {
	{
		.ioctls = mt9v111_ioctl_desc,
		.num_ioctls = ARRAY_SIZE(mt9v111_ioctl_desc),
		.attach_to = "mxc_v4l2_cap_1",
	},
	{
		.ioctls = mt9v111_ioctl_desc,
		.num_ioctls = ARRAY_SIZE(mt9v111_ioctl_desc),
		.attach_to = "mxc_v4l2_cap_2",
	},
};

static struct v4l2_int_device mt9v111_int_device [] = {
		{
			.module = THIS_MODULE,
			.type = v4l2_int_type_slave,
			.u = {
				.slave = &mt9v111_slave[0],
				},
		},
		{
			.module = THIS_MODULE,
			.type = v4l2_int_type_slave,
			.u = {
				.slave = &mt9v111_slave[1],
				},
		},
};

static int mt9v111_read_id( int sensoridx )
{
	int sensorid = 0;
	int ret = 0;

	mt9v111_write_reg (sensoridx,MT9V111S_ADDR_SPACE_SEL, 0x0004);

	sensorid = mt9v111_read_reg (sensoridx,MT9V111S_CHIP_VERSION);
	if( sensorid == 0x823a )
	{
		printk(KERN_INFO" MT9V111 ID %x\n",sensorid);
	}
	else
	{
		printk(KERN_ERR" MT9V111 Could not detect sensor (read %x)\n",sensorid);
		ret = -ENODEV;
	}
	return ret;
}

/*!
 * mt9v111 I2C probe function
 * Function set in i2c_driver struct.
 * Called by insmod mt9v111_camera.ko.
 *
 * @return  Error code indicating success or failure
 */
static int mt9v111_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
{
	int retval;
	int sensorid;

	pr_debug("In mt9v111_probe  device id is %s\n", id->name);

	sensorid = mt9v111_id_from_name(id->name);

	if( sensorid < 0 )
		return -ENODEV;

	/* Set initial values for the sensor struct. */
	memset(&mt9v111_data[sensorid], 0, sizeof(struct sensor));
	mt9v111_data[sensorid].i2c_client = client;
	pr_debug("   client name is %s\n", client->name);
	mt9v111_data[sensorid].pix.pixelformat = V4L2_PIX_FMT_UYVY;
	mt9v111_data[sensorid].pix.width = MT9V111_MAX_WIDTH;
	mt9v111_data[sensorid].pix.height = MT9V111_MAX_HEIGHT;
	mt9v111_data[sensorid].streamcap.capability = 0; /* No higher resolution or frame
						* frame rate changes supported.*/
	mt9v111_data[sensorid].streamcap.timeperframe.denominator = MT9V111_FRAME_RATE;
	mt9v111_data[sensorid].streamcap.timeperframe.numerator = 1;

	strcpy(mt9v111_int_device[sensorid].name,id->name);
	pr_debug("   video device name is %s\n", mt9v111_data[sensorid].v4l2_int_device->name);
	mt9v111_data[sensorid].v4l2_int_device = &mt9v111_int_device[sensorid];
	mt9v111_int_device[sensorid].priv = &mt9v111_data[sensorid];

	ipu_csi_enable_mclk_if(CSI_MCLK_I2C, sensorid , true, true);

	if( mt9v111_read_id(sensorid) != 0) {
		printk(KERN_ERR"mt9v111_probe: No sensor found\n");
		ipu_csi_enable_mclk_if(CSI_MCLK_I2C, sensorid , false, false);
		return -ENXIO;
	}

#ifdef MT9V111_DEBUG
	mt9v111_test_pattern(1);
#endif

	ipu_csi_enable_mclk_if(CSI_MCLK_I2C, sensorid , false, false);

	pr_debug("   type is %d (expect %d)\n",
		mt9v111_int_device[sensorid].type, v4l2_int_type_slave);
	pr_debug("   num ioctls is %d\n",
		mt9v111_int_device[sensorid].u.slave->num_ioctls);

	/* This function attaches this structure to the /dev/video0 device.
	 * The pointer in priv points to the mt9v111_data structure here.*/
	retval = v4l2_int_device_register(&mt9v111_int_device[sensorid]);
	if( retval == 0 )
		mt9v111_data[sensorid].used = 1;

	return retval;
}

/*!
 * Function set in i2c_driver struct.
 * Called on rmmod mt9v111_camera.ko
 */
static int mt9v111_remove(struct i2c_client *client)
{
	int i;

	pr_debug("In mt9v111_remove\n");

	for ( i=0 ; i < ARRAY_SIZE(mt9v111_int_device) ; i++ ) {
		if( mt9v111_data[i].used )
			v4l2_int_device_unregister(&mt9v111_int_device[i]);
	}
	return 0;
}

/*!
 * MT9V111 init function.
 * Called by insmod mt9v111_camera.ko.
 *
 * @return  Error code indicating success or failure
 */
static __init int mt9v111_init(void)
{
	u8 err;

	pr_debug("In mt9v111_init\n");

	/* Allocate memory for state structures. */
	mt9v111_device.coreReg = (mt9v111_coreReg *)
				kmalloc(sizeof(mt9v111_coreReg), GFP_KERNEL);
	if (!mt9v111_device.coreReg)
		return -1;
	memset(mt9v111_device.coreReg, 0, sizeof(mt9v111_coreReg));

	mt9v111_device.ifpReg = (mt9v111_IFPReg *)
				kmalloc(sizeof(mt9v111_IFPReg), GFP_KERNEL);
	if (!mt9v111_device.ifpReg) {
		kfree(mt9v111_device.coreReg);
		mt9v111_device.coreReg = NULL;
		return -1;
	}
	memset(mt9v111_device.ifpReg, 0, sizeof(mt9v111_IFPReg));

	/* Set contents of the just created structures. */
	mt9v111_config_datasheet();

	/* Tells the i2c driver what functions to call for this driver. */
	err = i2c_add_driver(&mt9v111_i2c_driver);
	if (err != 0)
		pr_err("%s:driver registration failed, error=%d \n",
			   __func__, err);

	return err;
}

/*!
 * MT9V111 cleanup function.
 * Called on rmmod mt9v111_camera.ko
 *
 * @return  Error code indicating success or failure
 */
static void __exit mt9v111_clean(void)
{
	pr_debug("In mt9v111_clean()\n");

	i2c_del_driver(&mt9v111_i2c_driver);

	if (mt9v111_device.coreReg) {
		kfree(mt9v111_device.coreReg);
		mt9v111_device.coreReg = NULL;
	}

	if (mt9v111_device.ifpReg) {
		kfree(mt9v111_device.ifpReg);
		mt9v111_device.ifpReg = NULL;
	}
}

module_init(mt9v111_init);
module_exit(mt9v111_clean);

MODULE_AUTHOR("Freescale Semiconductor, Inc.");
MODULE_DESCRIPTION("Mt9v111 Camera Driver");
MODULE_LICENSE("GPL");