summaryrefslogtreecommitdiff
path: root/drivers/media/dvb-frontends/drx39xyj/drx_driver.c
blob: af894b9f5b0d1f9b24e4c0cd76682fa1e331fee6 (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
/*
  Copyright (c), 2004-2005,2007-2010 Trident Microsystems, Inc.
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

  * Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
	and/or other materials provided with the distribution.
  * Neither the name of Trident Microsystems nor Hauppauge Computer Works
    nor the names of its contributors may be used to endorse or promote
	products derived from this software without specific prior written
	permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGE.
*/

/**
* \file $Id: drx_driver.c,v 1.40 2010/01/12 01:24:56 lfeng Exp $
*
* \brief Generic DRX functionality, DRX driver core.
*
*/

/*------------------------------------------------------------------------------
INCLUDE FILES
------------------------------------------------------------------------------*/
#include "drx_driver.h"

#define VERSION_FIXED 0
#if     VERSION_FIXED
#define VERSION_MAJOR 0
#define VERSION_MINOR 0
#define VERSION_PATCH 0
#else
#include "drx_driver_version.h"
#endif

/*------------------------------------------------------------------------------
DEFINES
------------------------------------------------------------------------------*/

/*============================================================================*/
/*=== MICROCODE RELATED DEFINES ==============================================*/
/*============================================================================*/

/** \brief Magic word for checking correct Endianess of microcode data. */
#ifndef DRX_UCODE_MAGIC_WORD
#define DRX_UCODE_MAGIC_WORD         ((((u16)'H')<<8)+((u16)'L'))
#endif

/** \brief CRC flag in ucode header, flags field. */
#ifndef DRX_UCODE_CRC_FLAG
#define DRX_UCODE_CRC_FLAG           (0x0001)
#endif

/** \brief Compression flag in ucode header, flags field. */
#ifndef DRX_UCODE_COMPRESSION_FLAG
#define DRX_UCODE_COMPRESSION_FLAG   (0x0002)
#endif

/** \brief Maximum size of buffer used to verify the microcode.
   Must be an even number. */
#ifndef DRX_UCODE_MAX_BUF_SIZE
#define DRX_UCODE_MAX_BUF_SIZE       (DRXDAP_MAX_RCHUNKSIZE)
#endif
#if DRX_UCODE_MAX_BUF_SIZE & 1
#error DRX_UCODE_MAX_BUF_SIZE must be an even number
#endif

/*============================================================================*/
/*=== CHANNEL SCAN RELATED DEFINES ===========================================*/
/*============================================================================*/

/**
* \brief Maximum progress indication.
*
* Progress indication will run from 0 upto DRX_SCAN_MAX_PROGRESS during scan.
*
*/
#ifndef DRX_SCAN_MAX_PROGRESS
#define DRX_SCAN_MAX_PROGRESS 1000
#endif

/*============================================================================*/
/*=== MACROS =================================================================*/
/*============================================================================*/

#define DRX_ISPOWERDOWNMODE(mode) (( mode == DRX_POWER_MODE_9) || \
				       (mode == DRX_POWER_MODE_10) || \
				       (mode == DRX_POWER_MODE_11) || \
				       (mode == DRX_POWER_MODE_12) || \
				       (mode == DRX_POWER_MODE_13) || \
				       (mode == DRX_POWER_MODE_14) || \
				       (mode == DRX_POWER_MODE_15) || \
				       (mode == DRX_POWER_MODE_16) || \
				       (mode == DRX_POWER_DOWN))

/*------------------------------------------------------------------------------
GLOBAL VARIABLES
------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------
STRUCTURES
------------------------------------------------------------------------------*/
/** \brief  Structure of the microcode block headers */
typedef struct {
	u32 addr;
		  /**<  Destination address of the data in this block */
	u16 size;
		  /**<  Size of the block data following this header counted in
			16 bits words */
	u16 flags;
		  /**<  Flags for this data block:
			- bit[0]= CRC on/off
			- bit[1]= compression on/off
			- bit[15..2]=reserved */
	u16 CRC;/**<  CRC value of the data block, only valid if CRC flag is
			set. */
} drxu_code_block_hdr_t, *pdrxu_code_block_hdr_t;

/*------------------------------------------------------------------------------
FUNCTIONS
------------------------------------------------------------------------------*/

/*============================================================================*/
/*============================================================================*/
/*== Channel Scan Functions ==================================================*/
/*============================================================================*/
/*============================================================================*/

#ifndef DRX_EXCLUDE_SCAN

/* Prototype of default scanning function */
static int
scan_function_default(void *scan_context,
		      enum drx_scan_command scan_command,
		    struct drx_channel *scan_channel, bool *get_next_channel);

/**
* \brief Get pointer to scanning function.
* \param demod:    Pointer to demodulator instance.
* \return drx_scan_func_t.
*/
static drx_scan_func_t get_scan_function(struct drx_demod_instance *demod)
{
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);
	drx_scan_func_t scan_func = (drx_scan_func_t) (NULL);

	/* get scan function from common attributes */
	common_attr = (struct drx_common_attr *) demod->my_common_attr;
	scan_func = common_attr->scan_function;

	if (scan_func != NULL) {
		/* return device-specific scan function if it's not NULL */
		return scan_func;
	}
	/* otherwise return default scan function in core driver */
	return &scan_function_default;
}

/**
* \brief Get Context pointer.
* \param demod:    Pointer to demodulator instance.
* \param scan_context: Context Pointer.
* \return drx_scan_func_t.
*/
static void *get_scan_context(struct drx_demod_instance *demod, void *scan_context)
{
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);

	/* get scan function from common attributes */
	common_attr = (struct drx_common_attr *) demod->my_common_attr;
	scan_context = common_attr->scan_context;

	if (scan_context == NULL) {
		scan_context = (void *)demod;
	}

	return scan_context;
}

/**
* \brief Wait for lock while scanning.
* \param demod:    Pointer to demodulator instance.
* \param lock_stat: Pointer to bool indicating if end result is lock or not.
* \return int.
* \retval DRX_STS_OK:    Success
* \retval DRX_STS_ERROR: I2C failure or bsp function failure.
*
* Wait until timeout, desired lock or NEVER_LOCK.
* Assume:
* - lock function returns : at least DRX_NOT_LOCKED and a lock state
*   higher than DRX_NOT_LOCKED.
* - BSP has a clock function to retrieve a millisecond ticker value.
* - BSP has a sleep function to enable sleep of n millisecond.
*
* In case DRX_NEVER_LOCK is returned the poll-wait will be aborted.
*
*/
static int scan_wait_for_lock(struct drx_demod_instance *demod, bool *is_locked)
{
	bool done_waiting = false;
	enum drx_lock_status lock_state = DRX_NOT_LOCKED;
	enum drx_lock_status desired_lock_state = DRX_NOT_LOCKED;
	u32 timeout_value = 0;
	u32 start_time_lock_stage = 0;
	u32 current_time = 0;
	u32 timer_value = 0;

	*is_locked = false;
	timeout_value = (u32) demod->my_common_attr->scan_demod_lock_timeout;
	desired_lock_state = demod->my_common_attr->scan_desired_lock;
	start_time_lock_stage = drxbsp_hst_clock();

	/* Start polling loop, checking for lock & timeout */
	while (done_waiting == false) {

		if (drx_ctrl(demod, DRX_CTRL_LOCK_STATUS, &lock_state) !=
		    DRX_STS_OK) {
			return DRX_STS_ERROR;
		}
		current_time = drxbsp_hst_clock();

		timer_value = current_time - start_time_lock_stage;
		if (lock_state >= desired_lock_state) {
			*is_locked = true;
			done_waiting = true;
		} /* if ( lock_state >= desired_lock_state ) .. */
		else if (lock_state == DRX_NEVER_LOCK) {
			done_waiting = true;
		} /* if ( lock_state == DRX_NEVER_LOCK ) .. */
		else if (timer_value > timeout_value) {
			/* lock_state == DRX_NOT_LOCKED  and timeout */
			done_waiting = true;
		} else {
			if (drxbsp_hst_sleep(10) != DRX_STS_OK) {
				return DRX_STS_ERROR;
			}
		}		/* if ( timer_value > timeout_value ) .. */

	}			/* while */

	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief Determine next frequency to scan.
* \param demod: Pointer to demodulator instance.
* \param skip : Minimum frequency step to take.
* \return int.
* \retval DRX_STS_OK:          Succes.
* \retval DRX_STS_INVALID_ARG: Invalid frequency plan.
*
* Helper function for ctrl_scan_next() function.
* Compute next frequency & index in frequency plan.
* Check if scan is ready.
*
*/
static int
scan_prepare_next_scan(struct drx_demod_instance *demod, s32 skip)
{
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);
	u16 table_index = 0;
	u16 frequency_plan_size = 0;
	struct drx_frequency_plan *frequency_plan = (struct drx_frequency_plan *) (NULL);
	s32 next_frequency = 0;
	s32 tuner_min_frequency = 0;
	s32 tuner_max_frequency = 0;

	common_attr = (struct drx_common_attr *) demod->my_common_attr;
	table_index = common_attr->scan_freq_plan_index;
	frequency_plan = common_attr->scan_param->frequency_plan;
	next_frequency = common_attr->scan_next_frequency;
	tuner_min_frequency = common_attr->tuner_min_freq_rf;
	tuner_max_frequency = common_attr->tuner_max_freq_rf;

	do {
		/* Search next frequency to scan */

		/* always take at least one step */
		(common_attr->scan_channelsScanned)++;
		next_frequency += frequency_plan[table_index].step;
		skip -= frequency_plan[table_index].step;

		/* and then as many steps necessary to exceed 'skip'
		   without exceeding end of the band */
		while ((skip > 0) &&
		       (next_frequency <= frequency_plan[table_index].last)) {
			(common_attr->scan_channelsScanned)++;
			next_frequency += frequency_plan[table_index].step;
			skip -= frequency_plan[table_index].step;
		}
		/* reset skip, in case we move to the next band later */
		skip = 0;

		if (next_frequency > frequency_plan[table_index].last) {
			/* reached end of this band */
			table_index++;
			frequency_plan_size =
			    common_attr->scan_param->frequency_plan_size;
			if (table_index >= frequency_plan_size) {
				/* reached end of frequency plan */
				common_attr->scan_ready = true;
			} else {
				next_frequency = frequency_plan[table_index].first;
			}
		}
		if (next_frequency > (tuner_max_frequency)) {
			/* reached end of tuner range */
			common_attr->scan_ready = true;
		}
	} while ((next_frequency < tuner_min_frequency) &&
		 (common_attr->scan_ready == false));

	/* Store new values */
	common_attr->scan_freq_plan_index = table_index;
	common_attr->scan_next_frequency = next_frequency;

	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief Default DTV scanning function.
*
* \param demod:          Pointer to demodulator instance.
* \param scan_command:    Scanning command: INIT, NEXT or STOP.
* \param scan_channel:    Channel to check: frequency and bandwidth, others AUTO
* \param get_next_channel: Return true if next frequency is desired at next call
*
* \return int.
* \retval DRX_STS_OK:      Channel found, DRX_CTRL_GET_CHANNEL can be used
*                             to retrieve channel parameters.
* \retval DRX_STS_BUSY:    Channel not found (yet).
* \retval DRX_STS_ERROR:   Something went wrong.
*
* scan_channel and get_next_channel will be NULL for INIT and STOP.
*/
static int
scan_function_default(void *scan_context,
		      enum drx_scan_command scan_command,
		    struct drx_channel *scan_channel, bool *get_next_channel)
{
	struct drx_demod_instance *demod = NULL;
	int status = DRX_STS_ERROR;
	bool is_locked = false;

	demod = (struct drx_demod_instance *) scan_context;

	if (scan_command != DRX_SCAN_COMMAND_NEXT) {
		/* just return OK if not doing "scan next" */
		return DRX_STS_OK;
	}

	*get_next_channel = false;

	status = drx_ctrl(demod, DRX_CTRL_SET_CHANNEL, scan_channel);
	if (status != DRX_STS_OK) {
		return (status);
	}

	status = scan_wait_for_lock(demod, &is_locked);
	if (status != DRX_STS_OK) {
		return status;
	}

	/* done with this channel, move to next one */
	*get_next_channel = true;

	if (is_locked == false) {
		/* no channel found */
		return DRX_STS_BUSY;
	}
	/* channel found */
	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief Initialize for channel scan.
* \param demod:     Pointer to demodulator instance.
* \param scan_param: Pointer to scan parameters.
* \return int.
* \retval DRX_STS_OK:          Initialized for scan.
* \retval DRX_STS_ERROR:       No overlap between frequency plan and tuner
*                              range.
* \retval DRX_STS_INVALID_ARG: Wrong parameters.
*
* This function should be called before starting a complete channel scan.
* It will prepare everything for a complete channel scan.
* After calling this function the DRX_CTRL_SCAN_NEXT control function can be
* used to perform the actual scanning. Scanning will start at the first
* center frequency of the frequency plan that is within the tuner range.
*
*/
static int
ctrl_scan_init(struct drx_demod_instance *demod, struct drx_scan_param *scan_param)
{
	int status = DRX_STS_ERROR;
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);
	s32 max_tuner_freq = 0;
	s32 min_tuner_freq = 0;
	u16 nr_channels_in_plan = 0;
	u16 i = 0;
	void *scan_context = NULL;

	common_attr = (struct drx_common_attr *) demod->my_common_attr;
	common_attr->scan_active = true;

	/* invalidate a previous SCAN_INIT */
	common_attr->scan_param = NULL;
	common_attr->scan_next_frequency = 0;

	/* Check parameters */
	if (((demod->my_tuner == NULL) &&
	     (scan_param->num_tries != 1)) ||
	    (scan_param == NULL) ||
	    (scan_param->num_tries == 0) ||
	    (scan_param->frequency_plan == NULL) ||
	    (scan_param->frequency_plan_size == 0)
	    ) {
		common_attr->scan_active = false;
		return DRX_STS_INVALID_ARG;
	}

	/* Check frequency plan contents */
	max_tuner_freq = common_attr->tuner_max_freq_rf;
	min_tuner_freq = common_attr->tuner_min_freq_rf;
	for (i = 0; i < (scan_param->frequency_plan_size); i++) {
		s32 width = 0;
		s32 step = scan_param->frequency_plan[i].step;
		s32 first_freq = scan_param->frequency_plan[i].first;
		s32 last_freq = scan_param->frequency_plan[i].last;
		s32 min_freq = 0;
		s32 max_freq = 0;

		if (step <= 0) {
			/* Step must be positive and non-zero */
			common_attr->scan_active = false;
			return DRX_STS_INVALID_ARG;
		}

		if (first_freq > last_freq) {
			/* First center frequency is higher than last center frequency */
			common_attr->scan_active = false;
			return DRX_STS_INVALID_ARG;
		}

		width = last_freq - first_freq;

		if ((width % step) != 0) {
			/* Difference between last and first center frequency is not
			   an integer number of steps */
			common_attr->scan_active = false;
			return DRX_STS_INVALID_ARG;
		}

		/* Check if frequency plan entry intersects with tuner range */
		if (last_freq >= min_tuner_freq) {
			if (first_freq <= max_tuner_freq) {
				if (first_freq >= min_tuner_freq) {
					min_freq = first_freq;
				} else {
					s32 n = 0;

					n = (min_tuner_freq - first_freq) / step;
					if (((min_tuner_freq -
					      first_freq) % step) != 0) {
						n++;
					}
					min_freq = first_freq + n * step;
				}

				if (last_freq <= max_tuner_freq) {
					max_freq = last_freq;
				} else {
					s32 n = 0;

					n = (last_freq - max_tuner_freq) / step;
					if (((last_freq -
					      max_tuner_freq) % step) != 0) {
						n++;
					}
					max_freq = last_freq - n * step;
				}
			}
		}

		/* Keep track of total number of channels within tuner range
		   in this frequency plan. */
		if ((min_freq != 0) && (max_freq != 0)) {
			nr_channels_in_plan +=
			    (u16) (((max_freq - min_freq) / step) + 1);

			/* Determine first frequency (within tuner range) to scan */
			if (common_attr->scan_next_frequency == 0) {
				common_attr->scan_next_frequency = min_freq;
				common_attr->scan_freq_plan_index = i;
			}
		}

	}			/* for ( ... ) */

	if (nr_channels_in_plan == 0) {
		/* Tuner range and frequency plan ranges do not overlap */
		common_attr->scan_active = false;
		return DRX_STS_ERROR;
	}

	/* Store parameters */
	common_attr->scan_ready = false;
	common_attr->scan_max_channels = nr_channels_in_plan;
	common_attr->scan_channelsScanned = 0;
	common_attr->scan_param = scan_param;	/* SCAN_NEXT is now allowed */

	scan_context = get_scan_context(demod, scan_context);

	status = (*(get_scan_function(demod)))
	    (scan_context, DRX_SCAN_COMMAND_INIT, NULL, NULL);

	common_attr->scan_active = false;

	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief Stop scanning.
* \param demod:         Pointer to demodulator instance.
* \return int.
* \retval DRX_STS_OK:          Scan stopped.
* \retval DRX_STS_ERROR:       Something went wrong.
* \retval DRX_STS_INVALID_ARG: Wrong parameters.
*/
static int ctrl_scan_stop(struct drx_demod_instance *demod)
{
	int status = DRX_STS_ERROR;
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);
	void *scan_context = NULL;

	common_attr = (struct drx_common_attr *) demod->my_common_attr;
	common_attr->scan_active = true;

	if ((common_attr->scan_param == NULL) ||
	    (common_attr->scan_max_channels == 0)) {
		/* Scan was not running, just return OK */
		common_attr->scan_active = false;
		return DRX_STS_OK;
	}

	/* Call default or device-specific scanning stop function */
	scan_context = get_scan_context(demod, scan_context);

	status = (*(get_scan_function(demod)))
	    (scan_context, DRX_SCAN_COMMAND_STOP, NULL, NULL);

	/* All done, invalidate scan-init */
	common_attr->scan_param = NULL;
	common_attr->scan_max_channels = 0;
	common_attr->scan_active = false;

	return status;
}

/*============================================================================*/

/**
* \brief Scan for next channel.
* \param demod:         Pointer to demodulator instance.
* \param scan_progress:  Pointer to scan progress.
* \return int.
* \retval DRX_STS_OK:          Channel found, DRX_CTRL_GET_CHANNEL can be used
*                              to retrieve channel parameters.
* \retval DRX_STS_BUSY:        Tried part of the channels, as specified in
*                              num_tries field of scan parameters. At least one
*                              more call to DRX_CTRL_SCAN_NEXT is needed to
*                              complete scanning.
* \retval DRX_STS_READY:       Reached end of scan range.
* \retval DRX_STS_ERROR:       Something went wrong.
* \retval DRX_STS_INVALID_ARG: Wrong parameters. The scan_progress may be NULL.
*
* Progress indication will run from 0 upto DRX_SCAN_MAX_PROGRESS during scan.
*
*/
static int ctrl_scan_next(struct drx_demod_instance *demod, u16 *scan_progress)
{
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);
	bool *scan_ready = (bool *)(NULL);
	u16 max_progress = DRX_SCAN_MAX_PROGRESS;
	u32 num_tries = 0;
	u32 i = 0;

	common_attr = (struct drx_common_attr *) demod->my_common_attr;

	/* Check scan parameters */
	if (scan_progress == NULL) {
		common_attr->scan_active = false;
		return DRX_STS_INVALID_ARG;
	}

	*scan_progress = 0;
	common_attr->scan_active = true;
	if ((common_attr->scan_param == NULL) ||
	    (common_attr->scan_max_channels == 0)) {
		/* ctrl_scan_init() was not called succesfully before ctrl_scan_next() */
		common_attr->scan_active = false;
		return DRX_STS_ERROR;
	}

	*scan_progress = (u16) (((common_attr->scan_channelsScanned) *
				  ((u32) (max_progress))) /
				 (common_attr->scan_max_channels));

	/* Scan */
	num_tries = common_attr->scan_param->num_tries;
	scan_ready = &(common_attr->scan_ready);

	for (i = 0; ((i < num_tries) && ((*scan_ready) == false)); i++) {
		struct drx_channel scan_channel = { 0 };
		int status = DRX_STS_ERROR;
		struct drx_frequency_plan *freq_plan = (struct drx_frequency_plan *) (NULL);
		bool next_channel = false;
		void *scan_context = NULL;

		/* Next channel to scan */
		freq_plan =
		    &(common_attr->scan_param->
		      frequency_plan[common_attr->scan_freq_plan_index]);
		scan_channel.frequency = common_attr->scan_next_frequency;
		scan_channel.bandwidth = freq_plan->bandwidth;
		scan_channel.mirror = DRX_MIRROR_AUTO;
		scan_channel.constellation = DRX_CONSTELLATION_AUTO;
		scan_channel.hierarchy = DRX_HIERARCHY_AUTO;
		scan_channel.priority = DRX_PRIORITY_HIGH;
		scan_channel.coderate = DRX_CODERATE_AUTO;
		scan_channel.guard = DRX_GUARD_AUTO;
		scan_channel.fftmode = DRX_FFTMODE_AUTO;
		scan_channel.classification = DRX_CLASSIFICATION_AUTO;
		scan_channel.symbolrate = 0;
		scan_channel.interleavemode = DRX_INTERLEAVEMODE_AUTO;
		scan_channel.ldpc = DRX_LDPC_AUTO;
		scan_channel.carrier = DRX_CARRIER_AUTO;
		scan_channel.framemode = DRX_FRAMEMODE_AUTO;
		scan_channel.pilot = DRX_PILOT_AUTO;

		/* Call default or device-specific scanning function */
		scan_context = get_scan_context(demod, scan_context);

		status = (*(get_scan_function(demod)))
		    (scan_context, DRX_SCAN_COMMAND_NEXT, &scan_channel,
		     &next_channel);

		/* Proceed to next channel if requested */
		if (next_channel == true) {
			int next_status = DRX_STS_ERROR;
			s32 skip = 0;

			if (status == DRX_STS_OK) {
				/* a channel was found, so skip some frequency steps */
				skip = common_attr->scan_param->skip;
			}
			next_status = scan_prepare_next_scan(demod, skip);

			/* keep track of progress */
			*scan_progress =
			    (u16) (((common_attr->scan_channelsScanned) *
				      ((u32) (max_progress))) /
				     (common_attr->scan_max_channels));

			if (next_status != DRX_STS_OK) {
				common_attr->scan_active = false;
				return (next_status);
			}
		}
		if (status != DRX_STS_BUSY) {
			/* channel found or error */
			common_attr->scan_active = false;
			return status;
		}
	}			/* for ( i = 0; i < ( ... num_tries); i++) */

	if ((*scan_ready) == true) {
		/* End of scan reached: call stop-scan, ignore any error */
		ctrl_scan_stop(demod);
		common_attr->scan_active = false;
		return (DRX_STS_READY);
	}

	common_attr->scan_active = false;

	return DRX_STS_BUSY;
}

#endif /* #ifndef DRX_EXCLUDE_SCAN */

/*============================================================================*/

/**
* \brief Program tuner.
* \param demod:         Pointer to demodulator instance.
* \param tunerChannel:  Pointer to tuning parameters.
* \return int.
* \retval DRX_STS_OK:          Tuner programmed successfully.
* \retval DRX_STS_ERROR:       Something went wrong.
* \retval DRX_STS_INVALID_ARG: Wrong parameters.
*
* tunerChannel passes parameters to program the tuner,
* but also returns the actual RF and IF frequency from the tuner.
*
*/
static int
ctrl_program_tuner(struct drx_demod_instance *demod, struct drx_channel *channel)
{
	struct drx_common_attr *common_attr = (struct drx_common_attr *) (NULL);
	enum drx_standard standard = DRX_STANDARD_UNKNOWN;
	u32 tuner_mode = 0;
	int status = DRX_STS_ERROR;
	s32 if_frequency = 0;
	bool tuner_slow_mode = false;

	/* can't tune without a tuner */
	if (demod->my_tuner == NULL) {
		return DRX_STS_INVALID_ARG;
	}

	common_attr = (struct drx_common_attr *) demod->my_common_attr;

	/* select analog or digital tuner mode based on current standard */
	if (drx_ctrl(demod, DRX_CTRL_GET_STANDARD, &standard) != DRX_STS_OK) {
		return DRX_STS_ERROR;
	}

	if (DRX_ISATVSTD(standard)) {
		tuner_mode |= TUNER_MODE_ANALOG;
	} else {		/* note: also for unknown standard */

		tuner_mode |= TUNER_MODE_DIGITAL;
	}

	/* select tuner bandwidth */
	switch (channel->bandwidth) {
	case DRX_BANDWIDTH_6MHZ:
		tuner_mode |= TUNER_MODE_6MHZ;
		break;
	case DRX_BANDWIDTH_7MHZ:
		tuner_mode |= TUNER_MODE_7MHZ;
		break;
	case DRX_BANDWIDTH_8MHZ:
		tuner_mode |= TUNER_MODE_8MHZ;
		break;
	default:		/* note: also for unknown bandwidth */
		return DRX_STS_INVALID_ARG;
	}

	DRX_GET_TUNERSLOWMODE(demod, tuner_slow_mode);

	/* select fast (switch) or slow (lock) tuner mode */
	if (tuner_slow_mode) {
		tuner_mode |= TUNER_MODE_LOCK;
	} else {
		tuner_mode |= TUNER_MODE_SWITCH;
	}

	if (common_attr->tuner_port_nr == 1) {
		bool bridge_closed = true;
		int status_bridge = DRX_STS_ERROR;

		status_bridge =
		    drx_ctrl(demod, DRX_CTRL_I2C_BRIDGE, &bridge_closed);
		if (status_bridge != DRX_STS_OK) {
			return status_bridge;
		}
	}

	status = drxbsp_tuner_set_frequency(demod->my_tuner,
					   tuner_mode, channel->frequency);

	/* attempt restoring bridge before checking status of set_frequency */
	if (common_attr->tuner_port_nr == 1) {
		bool bridge_closed = false;
		int status_bridge = DRX_STS_ERROR;

		status_bridge =
		    drx_ctrl(demod, DRX_CTRL_I2C_BRIDGE, &bridge_closed);
		if (status_bridge != DRX_STS_OK) {
			return status_bridge;
		}
	}

	/* now check status of drxbsp_tuner_set_frequency */
	if (status != DRX_STS_OK) {
		return status;
	}

	/* get actual RF and IF frequencies from tuner */
	status = drxbsp_tuner_get_frequency(demod->my_tuner,
					   tuner_mode,
					   &(channel->frequency),
					   &(if_frequency));
	if (status != DRX_STS_OK) {
		return status;
	}

	/* update common attributes with information available from this function;
	   TODO: check if this is required and safe */
	DRX_SET_INTERMEDIATEFREQ(demod, if_frequency);

	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief function to do a register dump.
* \param demod:            Pointer to demodulator instance.
* \param registers:        Registers to dump.
* \return int.
* \retval DRX_STS_OK:          Dump executed successfully.
* \retval DRX_STS_ERROR:       Something went wrong.
* \retval DRX_STS_INVALID_ARG: Wrong parameters.
*
*/
static int ctrl_dump_registers(struct drx_demod_instance *demod,
			      struct drx_reg_dump *registers)
{
	u16 i = 0;

	if (registers == NULL) {
		/* registers not supplied */
		return DRX_STS_INVALID_ARG;
	}

	/* start dumping registers */
	while (registers[i].address != 0) {
		int status = DRX_STS_ERROR;
		u16 value = 0;
		u32 data = 0;

		status =
		    demod->my_access_funct->read_reg16func(demod->my_i2c_dev_addr,
							registers[i].address,
							&value, 0);

		data = (u32) value;

		if (status != DRX_STS_OK) {
			/* no breakouts;
			   depending on device ID, some HW blocks might not be available */
			data |= ((u32) status) << 16;
		}
		registers[i].data = data;
		i++;
	}

	/* all done, all OK (any errors are saved inside data) */
	return DRX_STS_OK;
}

/*============================================================================*/
/*============================================================================*/
/*===Microcode related functions==============================================*/
/*============================================================================*/
/*============================================================================*/

/**
* \brief Read a 16 bits word, expects big endian data.
* \param addr: Pointer to memory from which to read the 16 bits word.
* \return u16 The data read.
*
* This function takes care of the possible difference in endianness between the
* host and the data contained in the microcode image file.
*
*/
static u16 u_code_read16(u8 *addr)
{
	/* Works fo any host processor */

	u16 word = 0;

	word = ((u16) addr[0]);
	word <<= 8;
	word |= ((u16) addr[1]);

	return word;
}

/*============================================================================*/

/**
* \brief Read a 32 bits word, expects big endian data.
* \param addr: Pointer to memory from which to read the 32 bits word.
* \return u32 The data read.
*
* This function takes care of the possible difference in endianness between the
* host and the data contained in the microcode image file.
*
*/
static u32 u_code_read32(u8 *addr)
{
	/* Works fo any host processor */

	u32 word = 0;

	word = ((u16) addr[0]);
	word <<= 8;
	word |= ((u16) addr[1]);
	word <<= 8;
	word |= ((u16) addr[2]);
	word <<= 8;
	word |= ((u16) addr[3]);

	return word;
}

/*============================================================================*/

/**
* \brief Compute CRC of block of microcode data.
* \param block_data: Pointer to microcode data.
* \param nr_words:   Size of microcode block (number of 16 bits words).
* \return u16 The computed CRC residu.
*/
static u16 u_code_compute_crc(u8 *block_data, u16 nr_words)
{
	u16 i = 0;
	u16 j = 0;
	u32 crc_word = 0;
	u32 carry = 0;

	while (i < nr_words) {
		crc_word |= (u32) u_code_read16(block_data);
		for (j = 0; j < 16; j++) {
			crc_word <<= 1;
			if (carry != 0) {
				crc_word ^= 0x80050000UL;
			}
			carry = crc_word & 0x80000000UL;
		}
		i++;
		block_data += (sizeof(u16));
	}
	return ((u16) (crc_word >> 16));
}

/*============================================================================*/

/**
* \brief Handle microcode upload or verify.
* \param dev_addr: Address of device.
* \param mc_info:  Pointer to information about microcode data.
* \param action:  Either UCODE_UPLOAD or UCODE_VERIFY
* \return int.
* \retval DRX_STS_OK:
*                    - In case of UCODE_UPLOAD: code is successfully uploaded.
*                    - In case of UCODE_VERIFY: image on device is equal to
*                      image provided to this control function.
* \retval DRX_STS_ERROR:
*                    - In case of UCODE_UPLOAD: I2C error.
*                    - In case of UCODE_VERIFY: I2C error or image on device
*                      is not equal to image provided to this control function.
* \retval DRX_STS_INVALID_ARG:
*                    - Invalid arguments.
*                    - Provided image is corrupt
*/
static int
ctrl_u_code(struct drx_demod_instance *demod,
	    struct drxu_code_info *mc_info, enum drxu_code_action action)
{
	int rc;
	u16 i = 0;
	u16 mc_nr_of_blks = 0;
	u16 mc_magic_word = 0;
	u8 *mc_data = (u8 *)(NULL);
	struct i2c_device_addr *dev_addr = (struct i2c_device_addr *)(NULL);

	dev_addr = demod->my_i2c_dev_addr;

	/* Check arguments */
	if ((mc_info == NULL) || (mc_info->mc_data == NULL)) {
		return DRX_STS_INVALID_ARG;
	}

	mc_data = mc_info->mc_data;

	/* Check data */
	mc_magic_word = u_code_read16(mc_data);
	mc_data += sizeof(u16);
	mc_nr_of_blks = u_code_read16(mc_data);
	mc_data += sizeof(u16);

	if ((mc_magic_word != DRX_UCODE_MAGIC_WORD) || (mc_nr_of_blks == 0)) {
		/* wrong endianess or wrong data ? */
		return DRX_STS_INVALID_ARG;
	}

	/* Scan microcode blocks first for version info if uploading */
	if (action == UCODE_UPLOAD) {
		/* Clear version block */
		DRX_SET_MCVERTYPE(demod, 0);
		DRX_SET_MCDEV(demod, 0);
		DRX_SET_MCVERSION(demod, 0);
		DRX_SET_MCPATCH(demod, 0);
		for (i = 0; i < mc_nr_of_blks; i++) {
			drxu_code_block_hdr_t block_hdr;

			/* Process block header */
			block_hdr.addr = u_code_read32(mc_data);
			mc_data += sizeof(u32);
			block_hdr.size = u_code_read16(mc_data);
			mc_data += sizeof(u16);
			block_hdr.flags = u_code_read16(mc_data);
			mc_data += sizeof(u16);
			block_hdr.CRC = u_code_read16(mc_data);
			mc_data += sizeof(u16);

			if (block_hdr.flags & 0x8) {
				/* Aux block. Check type */
				u8 *auxblk = mc_info->mc_data + block_hdr.addr;
				u16 auxtype = u_code_read16(auxblk);
				if (DRX_ISMCVERTYPE(auxtype)) {
					DRX_SET_MCVERTYPE(demod,
							  u_code_read16(auxblk));
					auxblk += sizeof(u16);
					DRX_SET_MCDEV(demod,
						      u_code_read32(auxblk));
					auxblk += sizeof(u32);
					DRX_SET_MCVERSION(demod,
							  u_code_read32(auxblk));
					auxblk += sizeof(u32);
					DRX_SET_MCPATCH(demod,
							u_code_read32(auxblk));
				}
			}

			/* Next block */
			mc_data += block_hdr.size * sizeof(u16);
		}

		/* After scanning, validate the microcode.
		   It is also valid if no validation control exists.
		 */
		rc = drx_ctrl(demod, DRX_CTRL_VALIDATE_UCODE, NULL);
		if (rc != DRX_STS_OK && rc != DRX_STS_FUNC_NOT_AVAILABLE) {
			return rc;
		}

		/* Restore data pointer */
		mc_data = mc_info->mc_data + 2 * sizeof(u16);
	}

	/* Process microcode blocks */
	for (i = 0; i < mc_nr_of_blks; i++) {
		drxu_code_block_hdr_t block_hdr;
		u16 mc_block_nr_bytes = 0;

		/* Process block header */
		block_hdr.addr = u_code_read32(mc_data);
		mc_data += sizeof(u32);
		block_hdr.size = u_code_read16(mc_data);
		mc_data += sizeof(u16);
		block_hdr.flags = u_code_read16(mc_data);
		mc_data += sizeof(u16);
		block_hdr.CRC = u_code_read16(mc_data);
		mc_data += sizeof(u16);

		/* Check block header on:
		   - data larger than 64Kb
		   - if CRC enabled check CRC
		 */
		if ((block_hdr.size > 0x7FFF) ||
		    (((block_hdr.flags & DRX_UCODE_CRC_FLAG) != 0) &&
		     (block_hdr.CRC != u_code_compute_crc(mc_data, block_hdr.size)))
		    ) {
			/* Wrong data ! */
			return DRX_STS_INVALID_ARG;
		}

		mc_block_nr_bytes = block_hdr.size * ((u16) sizeof(u16));

		if (block_hdr.size != 0) {
			/* Perform the desired action */
			switch (action) {
	    /*================================================================*/
			case UCODE_UPLOAD:
				{
					/* Upload microcode */
					if (demod->my_access_funct->
					    write_block_func(dev_addr,
							   (dr_xaddr_t) block_hdr.
							   addr, mc_block_nr_bytes,
							   mc_data,
							   0x0000) !=
					    DRX_STS_OK) {
						return (DRX_STS_ERROR);
					}	/* if */
				};
				break;

	    /*================================================================*/
			case UCODE_VERIFY:
				{
					int result = 0;
					u8 mc_dataBuffer
					    [DRX_UCODE_MAX_BUF_SIZE];
					u32 bytes_to_compare = 0;
					u32 bytes_left_to_compare = 0;
					u32 curr_addr = (dr_xaddr_t) 0;
					u8 *curr_ptr = NULL;

					bytes_left_to_compare = mc_block_nr_bytes;
					curr_addr = block_hdr.addr;
					curr_ptr = mc_data;

					while (bytes_left_to_compare != 0) {
						if (bytes_left_to_compare >
						    ((u32)
						     DRX_UCODE_MAX_BUF_SIZE)) {
							bytes_to_compare =
							    ((u32)
							     DRX_UCODE_MAX_BUF_SIZE);
						} else {
							bytes_to_compare =
							    bytes_left_to_compare;
						}

						if (demod->my_access_funct->
						    read_block_func(dev_addr,
								  curr_addr,
								  (u16)
								  bytes_to_compare,
								  (u8 *)
								  mc_dataBuffer,
								  0x0000) !=
						    DRX_STS_OK) {
							return (DRX_STS_ERROR);
						}

						result =
						    drxbsp_hst_memcmp(curr_ptr,
								      mc_dataBuffer,
								      bytes_to_compare);

						if (result != 0) {
							return DRX_STS_ERROR;
						}

						curr_addr +=
						    ((dr_xaddr_t)
						     (bytes_to_compare / 2));
						curr_ptr =
						    &(curr_ptr[bytes_to_compare]);
						bytes_left_to_compare -=
						    ((u32) bytes_to_compare);
					}	/* while( bytes_to_compare > DRX_UCODE_MAX_BUF_SIZE ) */
				};
				break;

	    /*================================================================*/
			default:
				return DRX_STS_INVALID_ARG;
				break;

			}	/* switch ( action ) */
		}

		/* if (block_hdr.size != 0 ) */
		/* Next block */
		mc_data += mc_block_nr_bytes;

	}			/* for( i = 0 ; i<mc_nr_of_blks ; i++ ) */

	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief Build list of version information.
* \param demod: A pointer to a demodulator instance.
* \param version_list: Pointer to linked list of versions.
* \return int.
* \retval DRX_STS_OK:          Version information stored in version_list
* \retval DRX_STS_INVALID_ARG: Invalid arguments.
*/
static int
ctrl_version(struct drx_demod_instance *demod, struct drx_version_list **version_list)
{
	static char drx_driver_core_module_name[] = "Core driver";
	static char drx_driver_core_version_text[] =
	    DRX_VERSIONSTRING(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);

	static struct drx_version drx_driver_core_version;
	static struct drx_version_list drx_driver_core_versionList;

	struct drx_version_list *demod_version_list = (struct drx_version_list *) (NULL);
	int return_status = DRX_STS_ERROR;

	/* Check arguments */
	if (version_list == NULL) {
		return DRX_STS_INVALID_ARG;
	}

	/* Get version info list from demod */
	return_status = (*(demod->my_demod_funct->ctrl_func)) (demod,
							   DRX_CTRL_VERSION,
							   (void *)
							   &demod_version_list);

	/* Always fill in the information of the driver SW . */
	drx_driver_core_version.module_type = DRX_MODULE_DRIVERCORE;
	drx_driver_core_version.module_name = drx_driver_core_module_name;
	drx_driver_core_version.v_major = VERSION_MAJOR;
	drx_driver_core_version.v_minor = VERSION_MINOR;
	drx_driver_core_version.v_patch = VERSION_PATCH;
	drx_driver_core_version.v_string = drx_driver_core_version_text;

	drx_driver_core_versionList.version = &drx_driver_core_version;
	drx_driver_core_versionList.next = (struct drx_version_list *) (NULL);

	if ((return_status == DRX_STS_OK) && (demod_version_list != NULL)) {
		/* Append versioninfo from driver to versioninfo from demod  */
		/* Return version info in "bottom-up" order. This way, multiple
		   devices can be handled without using malloc. */
		struct drx_version_list *current_list_element = demod_version_list;
		while (current_list_element->next != NULL) {
			current_list_element = current_list_element->next;
		}
		current_list_element->next = &drx_driver_core_versionList;

		*version_list = demod_version_list;
	} else {
		/* Just return versioninfo from driver */
		*version_list = &drx_driver_core_versionList;
	}

	return DRX_STS_OK;
}

/*============================================================================*/
/*============================================================================*/
/*== Exported functions ======================================================*/
/*============================================================================*/
/*============================================================================*/

/**
* \brief This function is obsolete.
* \param demods: Don't care, parameter is ignored.
* \return int Return status.
* \retval DRX_STS_OK: Initialization completed.
*
* This function is obsolete, prototype available for backward compatability.
*
*/

int drx_init(struct drx_demod_instance *demods[])
{
	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief This function is obsolete.
* \return int Return status.
* \retval DRX_STS_OK: Terminated driver successful.
*
* This function is obsolete, prototype available for backward compatability.
*
*/

int drx_term(void)
{
	return DRX_STS_OK;
}

/*============================================================================*/

/**
* \brief Open a demodulator instance.
* \param demod: A pointer to a demodulator instance.
* \return int Return status.
* \retval DRX_STS_OK:          Opened demod instance with succes.
* \retval DRX_STS_ERROR:       Driver not initialized or unable to initialize
*                              demod.
* \retval DRX_STS_INVALID_ARG: Demod instance has invalid content.
*
*/

int drx_open(struct drx_demod_instance *demod)
{
	int status = DRX_STS_OK;

	if ((demod == NULL) ||
	    (demod->my_demod_funct == NULL) ||
	    (demod->my_common_attr == NULL) ||
	    (demod->my_ext_attr == NULL) ||
	    (demod->my_i2c_dev_addr == NULL) ||
	    (demod->my_common_attr->is_opened == true)) {
		return (DRX_STS_INVALID_ARG);
	}

	status = (*(demod->my_demod_funct->open_func)) (demod);

	if (status == DRX_STS_OK) {
		demod->my_common_attr->is_opened = true;
	}

	return status;
}

/*============================================================================*/

/**
* \brief Close device.
* \param demod: A pointer to a demodulator instance.
* \return int Return status.
* \retval DRX_STS_OK:          Closed demod instance with succes.
* \retval DRX_STS_ERROR:       Driver not initialized or error during close
*                              demod.
* \retval DRX_STS_INVALID_ARG: Demod instance has invalid content.
*
* Free resources occupied by device instance.
* Put device into sleep mode.
*/

int drx_close(struct drx_demod_instance *demod)
{
	int status = DRX_STS_OK;

	if ((demod == NULL) ||
	    (demod->my_demod_funct == NULL) ||
	    (demod->my_common_attr == NULL) ||
	    (demod->my_ext_attr == NULL) ||
	    (demod->my_i2c_dev_addr == NULL) ||
	    (demod->my_common_attr->is_opened == false)) {
		return DRX_STS_INVALID_ARG;
	}

	status = (*(demod->my_demod_funct->close_func)) (demod);

	DRX_SET_ISOPENED(demod, false);

	return status;
}

/*============================================================================*/

/**
* \brief Control the device.
* \param demod:    A pointer to a demodulator instance.
* \param ctrl:     Reference to desired control function.
* \param ctrl_data: Pointer to data structure for control function.
* \return int Return status.
* \retval DRX_STS_OK:                 Control function completed successfully.
* \retval DRX_STS_ERROR:              Driver not initialized or error during
*                                     control demod.
* \retval DRX_STS_INVALID_ARG:        Demod instance or ctrl_data has invalid
*                                     content.
* \retval DRX_STS_FUNC_NOT_AVAILABLE: Specified control function is not
*                                     available.
*
* Data needed or returned by the control function is stored in ctrl_data.
*
*/

int
drx_ctrl(struct drx_demod_instance *demod, u32 ctrl, void *ctrl_data)
{
	int status = DRX_STS_ERROR;

	if ((demod == NULL) ||
	    (demod->my_demod_funct == NULL) ||
	    (demod->my_common_attr == NULL) ||
	    (demod->my_ext_attr == NULL) || (demod->my_i2c_dev_addr == NULL)
	    ) {
		return (DRX_STS_INVALID_ARG);
	}

	if (((demod->my_common_attr->is_opened == false) &&
	     (ctrl != DRX_CTRL_PROBE_DEVICE) && (ctrl != DRX_CTRL_VERSION))
	    ) {
		return (DRX_STS_INVALID_ARG);
	}

	if ((DRX_ISPOWERDOWNMODE(demod->my_common_attr->current_power_mode) &&
	     (ctrl != DRX_CTRL_POWER_MODE) &&
	     (ctrl != DRX_CTRL_PROBE_DEVICE) &&
	     (ctrl != DRX_CTRL_NOP) && (ctrl != DRX_CTRL_VERSION)
	    )
	    ) {
		return DRX_STS_FUNC_NOT_AVAILABLE;
	}

	/* Fixed control functions */
	switch (ctrl) {
      /*======================================================================*/
	case DRX_CTRL_NOP:
		/* No operation */
		return DRX_STS_OK;
		break;

      /*======================================================================*/
	case DRX_CTRL_VERSION:
		return ctrl_version(demod, (struct drx_version_list **)ctrl_data);
		break;

      /*======================================================================*/
	default:
		/* Do nothing */
		break;
	}

	/* Virtual functions */
	/* First try calling function from derived class */
	status = (*(demod->my_demod_funct->ctrl_func)) (demod, ctrl, ctrl_data);
	if (status == DRX_STS_FUNC_NOT_AVAILABLE) {
		/* Now try calling a the base class function */
		switch (ctrl) {
	 /*===================================================================*/
		case DRX_CTRL_LOAD_UCODE:
			return ctrl_u_code(demod,
					 (struct drxu_code_info *)ctrl_data,
					 UCODE_UPLOAD);
			break;

	 /*===================================================================*/
		case DRX_CTRL_VERIFY_UCODE:
			{
				return ctrl_u_code(demod,
						 (struct drxu_code_info *)ctrl_data,
						 UCODE_VERIFY);
			}
			break;

#ifndef DRX_EXCLUDE_SCAN
	 /*===================================================================*/
		case DRX_CTRL_SCAN_INIT:
			{
				return ctrl_scan_init(demod,
						    (struct drx_scan_param *) ctrl_data);
			}
			break;

	 /*===================================================================*/
		case DRX_CTRL_SCAN_NEXT:
			{
				return ctrl_scan_next(demod, (u16 *)ctrl_data);
			}
			break;

	 /*===================================================================*/
		case DRX_CTRL_SCAN_STOP:
			{
				return ctrl_scan_stop(demod);
			}
			break;
#endif /* #ifndef DRX_EXCLUDE_SCAN */

	 /*===================================================================*/
		case DRX_CTRL_PROGRAM_TUNER:
			{
				return ctrl_program_tuner(demod,
							(struct drx_channel *)
							ctrl_data);
			}
			break;

	 /*===================================================================*/
		case DRX_CTRL_DUMP_REGISTERS:
			{
				return ctrl_dump_registers(demod,
							 (struct drx_reg_dump *)
							 ctrl_data);
			}
			break;

	 /*===================================================================*/
		default:
			return DRX_STS_FUNC_NOT_AVAILABLE;
		}
	} else {
		return (status);
	}

	return DRX_STS_OK;
}

/*============================================================================*/

/* END OF FILE */