aboutsummaryrefslogtreecommitdiff
path: root/fmb_driver/fmb_hw.c
blob: 7ab15ba44708b8d5cb76c06b25734c2dc0ae9a0d (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
/**
*	@brief 		Hardware dependence part class for fmb Linux driver 
*	@since		2009/01/08 
*	@note		None
*	@attention	None
*	<B><I>COPYRIGHT FUJITSU LIMITED 2009</I></B>
*/

/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

/****************************************************************************/
#include "fmb.h"
#include "fmb_core.h"
#include "fmb_api.h"

#ifndef VERSION
#define VERSION	"?.?.?.?"
#endif

/********************************************************/
/*					FUNCTION PROTOTYPE					*/
/********************************************************/

PREPARE_DEBUG();

MODULE_LICENSE( "GPL" );
MODULE_DESCRIPTION( "MB86_Driver" );
struct semaphore sm;

/********************************************************/
/*		GROBAL VALUES				*/
/********************************************************/
static struct fmb_hard_private 	s_Fmb_hard_private_list[FMB_MAX_CARDS];
static int						s_Fmb_cards_active = 0;
static int						s_Fmb_driver_version_major;
static spinlock_t				s_Fmb_hw_lock;
static dev_t s_dev;
/********************************************************/
/*							*/
/*	 register processing function		*/
/*							*/
/********************************************************/
/**
*	@brief		Register Read to DMA
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			DMA register address
*	@return		val				register read value
*	@note		None
*	@attention	None
*/  

unsigned long Fmb_hw_reg_read_dma(struct fmb_hard_private* priv_p, unsigned long addr)
{
	int				minor;
	unsigned long	val;
	
	minor = priv_p->minor;
	val = 0;
	
	MSG(DEBUG_LVL, minor, "START");
	
	if (!priv_p->dma_base) {
		MSG(INTERNAL_ERR_LVL, minor, "Address is not dma");
		return 0;
	}
	val = inl(priv_p->dma_base + addr);
	
	MSG(CODEC_LVL, minor, "read  BAR0 offset(0x%.2lx) = 0x%lx", addr, val);
	MSG(DEBUG_LVL, minor, "dma offset = 0x%lx", addr);
	MSG(DEBUG_LVL, minor, "END");
	return val;
}


/**
*	@brief		Register Write to DMA
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			DMA register address
*	@param[in]	data			register write value
*	@return		None
*	@note		None
*	@attention	None
*/  

void Fmb_hw_reg_write_dma(struct fmb_hard_private* priv_p, unsigned long addr, unsigned long data)
{
	int 			minor;
	minor = priv_p->minor;
	
	MSG(INTERNAL_FUNC, minor, "START");
	
	if (!priv_p->dma_base) {
		MSG(INTERNAL_ERR_LVL, minor, "Address is not dma");
		return;
	}
	outl(data, (priv_p->dma_base + addr));
	MSG(CODEC_LVL, minor, "write BAR0 offset(0x%.2lx) = 0x%lx", addr, data);
	MSG(DEBUG_LVL, minor, "dma offset = 0x%lx", addr);
	MSG(INTERNAL_FUNC, minor, "END");
}

/**
*	@brief		Register Read to LSI
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			LSI register address
*	@return		val				register read value
*	@note		None
*	@attention	None
*/  

unsigned short Fmb_hw_reg_read_lsi(struct fmb_hard_private* priv_p, unsigned long addr)
{
	int 			minor;
	int				retry;
	unsigned long	val;
	unsigned long	flags;
	unsigned long	intcsr;
	unsigned long	fRetryError;

	minor = priv_p->minor;
	retry = 5;
	val = 0;
	fRetryError = 0;
	
	MSG(INTERNAL_FUNC, minor, "START");
	
	spin_lock_irqsave(&priv_p->core_reg_lock, flags);
	if (!priv_p->core_base) {
		spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
		MSG(INTERNAL_ERR_LVL, minor, "Address is not core");
		return 0;
	}
	while (retry) {
		val = ioread32( (void*)(priv_p->core_base + (addr*2)) );
		MSG(CODEC_LVL, minor, "read  BAR1 offset(0x%.6lx) = 0x%lx", (addr*2), val);
		MSG(DEBUG_LVL, minor, "lsi offset = 0x%lx", addr);
		intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);
											
		if (intcsr & 0x00000040) {
			Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x00000040);
			fRetryError = 1;
			retry--;
			MSG(DEBUG_LVL, minor, "Target 256 Retry Error being checked");
			continue;
		}
	break;
	}
	spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
	MSG(INTERNAL_FUNC, minor, "END");
	return (unsigned short)val;
}



/**
*	@brief		Register Write to LSI
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			LSI register address
*	@param[in]	data			register write value
*	@return		None
*	@note		None
*	@attention	None
*/  

void Fmb_hw_reg_write_lsi(struct fmb_hard_private* priv_p, unsigned long addr, unsigned short data)
{
	int 			minor;
	int				retry;
	unsigned long	val;
	unsigned long	flags;
	unsigned long	intcsr;
	unsigned long	fRetryError;

	minor = priv_p->minor;
	retry = 5;
	val = 0;
	fRetryError = 0;
	
	MSG(DEBUG_LVL, minor, "START");
	
	spin_lock_irqsave(&priv_p->core_reg_lock, flags);
	val = (unsigned long)data;	
	if (!priv_p->core_base) {
		spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
		MSG(INTERNAL_ERR_LVL, minor, "Address is not core");
		return;
	}
	while (retry) {
		iowrite32((u32)data, (void*)(priv_p->core_base + (addr*2)) );
		MSG(CODEC_LVL, minor, "write BAR1 offset(0x%.6lx) = 0x%x", (addr*2), data);
		MSG(DEBUG_LVL, minor, "lsi offset = 0x%lx", addr);
		intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);

		if (intcsr & 0x00000040) {
			Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x00000040);
			fRetryError = 1;
			retry--;
			MSG(DEBUG_LVL, minor, "Target 256 Retry Error being checked");
			continue;
		}
		break;
	}
	spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
	MSG(DEBUG_LVL, minor, "END");
}


/**
*	@brief		Register Read to LSI Enhancing master
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			LSI Enhancing master register address
*	@return		val				register read value
*	@note		None
*	@attention	None
*/  

unsigned long Fmb_hw_reg_read_lsi_master(struct fmb_hard_private* priv_p, unsigned long addr)
{
	int				minor;
	int				retry;
	unsigned long	val;
	unsigned long	flags;
	unsigned long	intcsr;
	unsigned long	fRetryError;

	minor = priv_p->minor;
	retry = 5;
	val = 0;
	fRetryError = 0;
	
	MSG(INTERNAL_LOG, minor, "START");
	
	spin_lock_irqsave(&priv_p->core_reg_lock, flags);
	if (!priv_p->core_base) {
		spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
		MSG(INTERNAL_ERR_LVL, minor, "Address is not core");
		return 0;
	}
	while (retry) {
		val = ioread32( (void*)(priv_p->core_base + addr) );
		MSG(CODEC_LVL, minor, "read  BAR1 offset(0x%.6lx) = 0x%lx", addr, val);
		MSG(DEBUG_LVL, minor, "lsi offset = 0x%lx", addr);
		intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);	

		if (intcsr & 0x00000040) {
			Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x00000040);
			fRetryError = 1;
			retry--;
			MSG(DEBUG_LVL, minor, "Target 256 Retry Error being checked");
			continue;
		}
	break;
	}
	spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
	MSG(INTERNAL_LOG, minor, "END");
	return val;
}


/**
*	@brief		Register Write to LSI Enhancing master
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			LSI Enhancing master register address
*	@param[in]	data			register write value
*	@return		None
*	@note		None
*	@attention	None
*/  

void Fmb_hw_reg_write_lsi_master(struct fmb_hard_private* priv_p, unsigned long addr, unsigned long data)
{
	int 			minor;
	int				retry;
	unsigned long	flags;
	unsigned long	intcsr;
	unsigned long	fRetryError;

	minor = priv_p->minor;
	retry = 5;
	fRetryError = 0;
	
	MSG(INTERNAL_LOG, minor, "START");
	
	spin_lock_irqsave(&priv_p->core_reg_lock, flags);
	if (!priv_p->core_base) {
		spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
		MSG(INTERNAL_ERR_LVL, minor, "Address is not core");
		return;
	}
	while (retry) {
		iowrite32((u32)data, (void*)(priv_p->core_base + addr) );
		MSG(CODEC_LVL, minor, "write BAR1 offset(0x%.6lx) = 0x%lx", addr, data);
		MSG(DEBUG_LVL, minor, "lsi offset = 0x%lx", addr);
		intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);
		
		if (intcsr & 0x00000040) {
			Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x00000040);
			fRetryError = 1;
			retry--;
			MSG(DEBUG_LVL, minor, "Target 256 Retry Error being checked");
			continue;
		}
		break;
	}
	spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
	MSG(INTERNAL_LOG, minor, "END");
}

/**
*	@brief		Register Read Modfi Write to LSI
*	@param[in]	priv_p			private data pointer
*	@param[in]	addr			LSI register address
*	@param[in]	shift			shift value at the time of writing
*	@param[in]	mask			mask value at the time of writing
*	@param[in]	data			register write value
*	@return		val				register read value
*	@note		None
*	@attention	None
*/

unsigned short Fmb_hw_reg_rmw_lsi(struct fmb_hard_private* priv_p, unsigned long addr, unsigned short shift,
					      unsigned short mask, unsigned short data)
{
	int				minor;
	int				retry;
	unsigned long	val;
	unsigned long	intcsr;
	unsigned long	flags;
	unsigned long	shift_tmp;
	unsigned long	mask_tmp;
	unsigned long	data_tmp;
	unsigned long	fRetryError;

	minor = priv_p->minor;
	retry = 5;
	shift_tmp = 0;
	mask_tmp = 0;
	data_tmp = 0;
	fRetryError = 0;
	
	MSG(INTERNAL_FUNC, minor, "START");

	spin_lock_irqsave(&priv_p->core_reg_lock, flags);
	shift_tmp = (unsigned long)shift;
	mask_tmp = (unsigned long)mask;
	data_tmp = (unsigned long)data;
	
	if (!priv_p->core_base) {
		spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
		MSG(INTERNAL_ERR_LVL, minor, "Address is not core");
		return 0;
	}
	while (retry) {
		val = ioread32( (void*)(priv_p->core_base + (addr*2)) );
		MSG(CODEC_LVL, minor, "read  BAR1 offset(0x%.6lx) = 0x%lx", (addr*2), val);
		val &= ~(mask_tmp << shift_tmp);					/* clear pertinent bit */
		val |= ((data_tmp & mask_tmp) << shift_tmp);			/* set pertinent bit */
		iowrite32((u32)val, (void*)(priv_p->core_base + (addr*2)) );
		MSG(CODEC_LVL, minor, "write BAR1 offset(0x%.6lx) = 0x%lx", (addr*2), val);
		MSG(DEBUG_LVL, minor, "lsi offset = 0x%lx", addr);
		intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);
		
		if (intcsr & 0x00000040) {
			Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x00000040);
			fRetryError = 1;
			retry--;
			MSG(DEBUG_LVL, minor, "Target 256 Retry Error being checked");
			continue;
		}
	break;
	}
	spin_unlock_irqrestore(&priv_p->core_reg_lock, flags);
	MSG(INTERNAL_FUNC, minor, "END");
	return (unsigned short)val;
}

/**
*	@brief	Check access area for lsi
*	@param[in]	priv_p			private data pointer
*	@param[in]	offset_addr		offset address to specified PCI
*	@param[in]	access_size		Size of access area
*	@return		0				Normal end
*	@return		-EINVAL			The content of the parameter is illegal.
*	@note		None
*	@attention	None
*/

int Fmb_hw_check_addr_lsi(struct fmb_hard_private* priv_p, unsigned long offset_addr, unsigned long access_size)
{
	int				minor;
	unsigned long	tail_addr;

	minor = priv_p->minor;

	MSG(INTERNAL_FUNC, minor, "START");

	tail_addr = (offset_addr + access_size)*2;
	if ((offset_addr*2) > FMB_CORE_LSI_SIZE) {
		MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
		return -EINVAL;
	}
	if (tail_addr > FMB_CORE_LSI_SIZE) {
		MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
		return -EINVAL;
	}
	MSG(INTERNAL_FUNC, minor, "END");
	return 0;
}


/**
*   @brief	Check access area for PCI 
*	@param[in]	priv_p			private data pointer
*   @param[in]	pci_type		Type of specified PCI (Not used)
*   @param[in]	offset_addr		offset address to specified PCI
*   @param[in]	access_size		Size of access area
*   @return		0				Normal end
*   @return		-EINVAL			The content of the parameter is illegal.
*   @note		None
*   @attention	None
*/

int Fmb_hw_check_addr_pci(struct fmb_hard_private* priv_p, unsigned long pci_type, unsigned long offset_addr, 
				unsigned long access_size)
{
	int 			minor;
	unsigned long	tail_addr;

	minor = priv_p->minor;

	MSG(INTERNAL_LOG, minor, "START");

	tail_addr = offset_addr + access_size;
	switch (pci_type){
		case FMB_TYPE_DMA:
			if (offset_addr >= FMB_DMA_SIZE) {
				MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
				return -EINVAL;
			}
			if (tail_addr >= FMB_DMA_SIZE) {
				MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
				return -EINVAL;
			}
			break;
		case FMB_TYPE_LSI:
			if (offset_addr < 0x1E0000){
				MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
				return -EINVAL;
			}
			if (offset_addr >= FMB_CORE_SIZE) {
				MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
				return -EINVAL;
			}
			if (tail_addr >= FMB_CORE_SIZE) {
				MSG(INTERNAL_ERR_LVL, minor, "Specified address is abnormal.");
				return -EINVAL;
			}
			break;
		default:
			MSG(INTERNAL_ERR_LVL, minor, "invalid type");
			return -EINVAL;
	}
	MSG(INTERNAL_LOG, minor, "END");
	return 0;
}

/********************************************************/
/*							*/
/*	PCI(Interrupt) processing function			*/
/*							*/
/********************************************************/
/**
*	@brief		DMA/LSI Clear Interrupt 
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

void Fmb_hw_clear_irq(struct fmb_hard_private* priv_p )
{
	int 			minor;
	unsigned long	imask;
	unsigned long	intcsr;
	unsigned long	dmacsr;
	unsigned long	fpciintst;
	unsigned short	irqst; 

	minor = priv_p->minor;

	MSG(CODEC_FUNC, minor, "START");
	MSG(INTERNAL_FUNC, minor, "START");

	local_irq_save(imask);
	local_irq_disable();

	intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);

	if (intcsr & 0x00000010) {
		/* DMA ch0 */
		dmacsr = Fmb_hw_reg_read_dma(priv_p, DMA0CMDSTS);
		dmacsr |= 0x8;
		Fmb_hw_reg_write_dma(priv_p, DMA0CMDSTS, dmacsr);
		MSG(DEBUG_LVL, minor, "DMA ch0 clear");
	}

	if (intcsr & 0x00000020) {
		/* DMA ch1 */
		dmacsr = Fmb_hw_reg_read_dma(priv_p, DMA1CMDSTS);
		dmacsr |= 0x8;
		Fmb_hw_reg_write_dma(priv_p, DMA1CMDSTS, dmacsr);
		MSG(DEBUG_LVL, minor, "DMA ch1 clear");
	}

	if (intcsr & 0x00000001) {
		/* LXINT */
		fpciintst = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTST);

		if (fpciintst & FPCI_INTMASK_INT) {
			irqst = Fmb_hw_reg_read_lsi(priv_p, FMB_API_IRQST_ALL);

			irqst &= (API_IRQST_TCPU_CMD | API_IRQST_TACK_CMD | API_IRQST_VSYNC_CMD);
			Fmb_hw_reg_write_lsi(priv_p, FMB_API_IRQST_ALL, irqst);
			MSG(DEBUG_LVL, minor, "INT clear");
		}
		Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTST, fpciintst);
		MSG(DEBUG_LVL, minor, "LXINT clear");
	}
	local_irq_restore(imask);
	local_irq_enable();
	MSG(INTERNAL_FUNC, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
}


/**
*	@brief		DMA/LSI Enable Interrupt 
*	@param[in]	priv_p			private data pointer
*	@param[in]	irq_type		irq type
*	@return		None
*	@note		None
*	@attention	None
*/

void Fmb_hw_enable_irq(struct fmb_hard_private* priv_p, int irq_type )
{
	int				minor;
	unsigned long	val;
	unsigned long	flags;

	minor = priv_p->minor;
	val = 0;

	MSG(CODEC_FUNC, minor, "START");
	MSG(INTERNAL_FUNC, minor, "START");

	switch (irq_type) {
		/* DMA */
		case IRQ_FMB_DMA:
			spin_lock_irqsave(&priv_p->dma_reg_lock, flags);
			val = Fmb_hw_reg_read_dma(priv_p, INTENABLE);
			val |= 0x00000031;
			Fmb_hw_reg_write_dma(priv_p, INTENABLE, val);
			spin_unlock_irqrestore(&priv_p->dma_reg_lock, flags);
			MSG(DEBUG_LVL, minor, "DMA enable");
			break;
		
		/* LSI */		
		/* INT */
		case IRQ_FMB_INT:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val |= FPCI_INTMASK_INT;
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			Fmb_hw_reg_write_lsi(priv_p, FMB_API_HCPU_IRQEN_TCPU, API_IRQST_TCPU_CMD | API_IRQST_TACK_CMD | API_IRQST_VSYNC_CMD);
			MSG(DEBUG_LVL, minor, "INT enable");
			break;
		
		/* XERROR */
		case IRQ_FMB_XERROR:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val |= 0x80000000;
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			MSG(DEBUG_LVL, minor, "XERROR enable");
			break;

		/* EDERR */
		case IRQ_FMB_EDERR:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val |= 0x00400000;
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			MSG(DEBUG_LVL, minor, "EDERR enable");
			break;

		/* DDERR */
		case IRQ_FMB_DDERR:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val |= 0x00040000;
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			MSG(DEBUG_LVL, minor, "DDERR enable");
			break;

		default:
			break;
	}
	MSG(INTERNAL_FUNC, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
}

/**
*	@brief		DMA/LSI Disable Interrupt Vector
*	@param[in]	priv_p			private data pointer
*	@param[in]	irq_type		irq type
*	@return		None
*	@note		None
*	@attention	None
*/

void Fmb_hw_disable_irq(struct fmb_hard_private* priv_p, int irq_type)
{
	int 			minor;
	unsigned long	val;
	unsigned long	flags;
	
	minor = priv_p->minor;
	val = 0;

	MSG(CODEC_FUNC, minor, "START");
	MSG(INTERNAL_FUNC, minor, "START");

	switch (irq_type) {
		/* DMA */
		case IRQ_FMB_DMA:
			spin_lock_irqsave(&priv_p->dma_reg_lock, flags);
			val = Fmb_hw_reg_read_dma(priv_p, INTENABLE);
			val &= ~(0x00000030);
			Fmb_hw_reg_write_dma(priv_p, INTENABLE, val);
			spin_unlock_irqrestore(&priv_p->dma_reg_lock, flags);
			MSG(DEBUG_LVL, minor, "DMA disable");
			break;
		
		/* LSI */
		/* INT */
		case IRQ_FMB_INT:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val &= ~(FPCI_INTMASK_INT);
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			Fmb_hw_reg_write_lsi(priv_p, FMB_API_HCPU_IRQEN_TCPU, 0x0000);
			MSG(DEBUG_LVL, minor, "INT disable");
			break;
		
		/* XERROR */
		case IRQ_FMB_XERROR:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val &= ~(0x80000000);		
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			MSG(DEBUG_LVL, minor, "XERROR disable");
			break;

		/* EDERR */
		case IRQ_FMB_EDERR:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val &= ~(0x00400000);		
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			MSG(DEBUG_LVL, minor, "EDERR disable");
			break;

		/* DDERR */
		case IRQ_FMB_DDERR:
			val = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTEN);
			val &= ~(0x00040000);		
			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTEN, val);
			MSG(DEBUG_LVL, minor, "DDERR disable");
			break;

		default:
			break;
	}
	MSG(INTERNAL_FUNC, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
}

/**
*	@brief		FMB Hardware interrupt initialize
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

static void fmb_hw_irq_init(struct fmb_hard_private*	priv_p)
{
	int			minor;
	
	minor = priv_p->minor;
	
	MSG(INTERNAL_LOG, minor, "START");
	
	Fmb_hw_disable_irq(priv_p, IRQ_FMB_DMA);
	Fmb_hw_disable_irq(priv_p, IRQ_FMB_INT);
	Fmb_hw_disable_irq(priv_p, IRQ_FMB_XERROR);
	Fmb_hw_disable_irq(priv_p, IRQ_FMB_EDERR);
	Fmb_hw_disable_irq(priv_p, IRQ_FMB_DDERR);

	MSG(INTERNAL_LOG, minor, "END");
}

/********************************************************/
/*							*/
/*	Hardware dependence initialization function	*/
/*							*/
/********************************************************/

/**
*	@brief		FMB Hardware PCI Memory mapping
*	@param[in]	priv_p			private data pointer
*	@return		0				normal end
*	@note		None
*	@attention	None
*/

static int fmb_hw_memmap(struct fmb_hard_private*	priv_p)
{
	int 			minor;
	unsigned long	phyaddr;

	minor = priv_p->minor;

	MSG(INTERNAL_LOG, minor, "START");
		
	/* BAR0 */
	if (!request_region(pci_resource_start(priv_p->pci_dev_p, 0),	
		pci_resource_len(priv_p->pci_dev_p, 0), FMB_DRIVER_NAME))
	{
		MSG(KERN_ERR_LVL, minor, "Cannot reserve I/O ports(BAR0)");
		goto err_out_disable;
	}
	priv_p->dma_base = pci_resource_start(priv_p->pci_dev_p, 0);
	MSG(DEBUG_LVL, minor, "Reservation success I/O ports(BAR0)");
	
	/* BAR1 */
	if (!request_mem_region(pci_resource_start(priv_p->pci_dev_p, 1),
							pci_resource_len(priv_p->pci_dev_p, 1), FMB_DRIVER_NAME))
	{
		MSG(KERN_ERR_LVL, minor, "Cannot reserve MMIO region(BAR1)");
		goto err_out_free_pio_region;
	}
	phyaddr                = pci_resource_start(priv_p->pci_dev_p, 1);
	priv_p->core_base     = (unsigned long)ioremap(phyaddr,FMB_CORE_SIZE);
	MSG(DEBUG_LVL, minor, "Reservation success MMIO region(BAR1)");

	MSG(RESOURCE_LVL, minor, "# address map");
	MSG(RESOURCE_LVL, minor, "# FMB DMA : L:0x%lx",
		priv_p->dma_base);

	MSG(RESOURCE_LVL, minor, "# FMB LSI : L:0x%lx S:0x%08x",
		priv_p->core_base,
		FMB_CORE_SIZE);

	MSG(INTERNAL_LOG, minor, "END");	
	return 0;

err_out_disable:
	pci_disable_device(priv_p->pci_dev_p);
	return -1;
err_out_free_pio_region:
	release_region(pci_resource_start(priv_p->pci_dev_p, 0), pci_resource_len(priv_p->pci_dev_p, 0));
	return -1;
}

/**
*	@brief		FMB Hardware PCI UnMemory mapping
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

static void fmb_hw_unmemmap(struct fmb_hard_private* priv_p)
{
	int				minor;

	minor = priv_p->minor;

	MSG(INTERNAL_LOG, minor, "START");

	/* BAR1 */
	iounmap((void*)priv_p->core_base);
	release_mem_region(pci_resource_start(priv_p->pci_dev_p, 1), pci_resource_len(priv_p->pci_dev_p, 1));
	/* BAR0 */
	release_region(pci_resource_start(priv_p->pci_dev_p, 0), pci_resource_len(priv_p->pci_dev_p, 0));
	
	MSG(INTERNAL_LOG, minor, "END");
}

/**
*	@brief		FMB Codec Lsi Initialize
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

void Fmb_hw_codec_lsi_init(struct fmb_hard_private* priv_p)
{
	int				minor;
	
	minor = priv_p->minor;

	MSG(CODEC_FUNC, minor, "START");
	MSG(INTERNAL_FUNC, minor, "START");

    Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CNT, 0x00000003);

    mdelay(FMB_CARD_RESET_DELAY_TIME1);                         /* wait 1ms */

    Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CNT, 0x00000002);

    mdelay(FMB_CARD_RESET_DELAY_TIME1);                         /* wait 1ms */

    Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CODEC_CNT, 0x00000000);

    mdelay(FMB_CARD_RESET_DELAY_TIME1);                         /* wait 1ms */

    Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CODEC_CNT, 0x00000002);

    mdelay(FMB_CARD_RESET_DELAY_TIME1);                         /* wait 1ms */

    Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CODEC_CNT, 0x00000003);

    mdelay(FMB_CARD_RESET_DELAY_TIME2);             /* wait 500ms */


	MSG(INTERNAL_FUNC, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
}

/**
*	@brief  PCI Card Reset
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

static void fmb_card_reset(struct fmb_hard_private* priv_p)
{
	int				minor;
	
	minor = priv_p->minor;

	MSG(CODEC_FUNC, minor, "START");
	MSG(INTERNAL_LOG, minor, "START");
	
	Fmb_hw_reg_write_dma(priv_p, INTENABLE, 0x00000000);
	Fmb_hw_reg_write_dma(priv_p, TCSTATUS,  0x80000000);
	Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x000000C0);
	Fmb_hw_reg_write_dma(priv_p, TCSTATUS,  0x80000000);
	Fmb_hw_reg_write_dma(priv_p, INTSOURCE, 0x000000C0);

	Fmb_hw_reg_write_dma(priv_p, DMA0CMDSTS, 0x00000704);
	Fmb_hw_reg_write_dma(priv_p, DMA0CMDSTS, 0x00000708);
	Fmb_hw_reg_write_dma(priv_p, DMA0CMDSTS, 0x00000700);
	Fmb_hw_reg_write_dma(priv_p, DMA1CMDSTS, 0x00000604);
	Fmb_hw_reg_write_dma(priv_p, DMA1CMDSTS, 0x00000608);
	Fmb_hw_reg_write_dma(priv_p, DMA1CMDSTS, 0x00000600);

	MSG(INTERNAL_LOG, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
}


/**
*	@brief  PCI Card Powerdown
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

static void fmb_card_powerdown( struct fmb_hard_private* priv_p)
{
	int				minor;
	
	minor = priv_p->minor;

	MSG(CODEC_FUNC, minor, "START");
	MSG(INTERNAL_LOG, minor, "START");
	
	Fmb_hw_reg_write_dma(priv_p, INTENABLE, 0x00000000);
	Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CODEC_CNT, 0x00000000);
	Fmb_hw_reg_write_lsi_master(priv_p, FPCI_CNT,0x00000000);

	MSG(INTERNAL_LOG, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
}


/**
*	@brief		FMB Hardware Private Data initialize
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

static void fmb_hw_private_data_init(struct fmb_hard_private* priv_p)
{
	int 			minor;
	unsigned char	pci_latency;

	minor = priv_p->minor;

	MSG(INTERNAL_LOG, minor, "START");

	spin_lock_init(&priv_p->lock_hw_priv);
	spin_lock_init(&priv_p->dma_reg_lock);
	spin_lock_init(&priv_p->core_reg_lock);

	pci_read_config_byte(priv_p->pci_dev_p, PCI_CLASS_REVISION, &priv_p->card_rev);
	pci_read_config_byte(priv_p->pci_dev_p, PCI_LATENCY_TIMER, &pci_latency);

	/* init poll waitqueue */
	init_waitqueue_head(&priv_p->poll_waitq);

	MSG(INTERNAL_LOG, minor, "END");
}

/**
*	@brief		FMB  Hardware Private Data release
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*/

static void fmb_hw_private_data_release(struct fmb_hard_private* priv_p)
{
	int 			minor;
	
	minor = priv_p->minor;

	MSG(INTERNAL_LOG, minor, "START");
	
	/* initialize the core private data */
	memset( &s_Fmb_hard_private_list[minor], 0, sizeof(struct fmb_hard_private));
	s_Fmb_hard_private_list[minor].minor = -1;

	MSG(INTERNAL_LOG, minor, "END");
}

/********************************************************/
/*	systemcall basic API Function			*/
/********************************************************/

/**
*	@brief		FMB system call open()
*	@param[in]	*ip			Information in filesystem
*	@param[in]	*fp			File pointer
*	@return		0
*	@note		None
*	@attention	None
*/

static int fmb_hw_open(struct inode* ip_p, struct file* fp_p)
{
	int 			minor;
	
	minor = MINOR(ip_p->i_rdev);		

	MSG(DRIVER_FUNC_LVL, minor, "START");
	
	
	fp_p->private_data = &s_Fmb_hard_private_list[minor];	
	
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return 0;
}


/**
*	@brief		FMB system call close()
*	@param[in]	*ip			Information in filesystem
*	@param[in]	*fp			File pointer
*	@return		0
*	@note		None
*	@attention	None
*/

static int fmb_hw_release(struct inode* ip_p, struct file* fp_p)
{
	int 			minor;
	struct fmb_hard_private*	priv_p = (struct fmb_hard_private*)fp_p->private_data;

	minor = priv_p->minor;

	MSG(DRIVER_FUNC_LVL, minor, "START");
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return 0;
}

/**
*	@brief		FMB system call read()
*	@param[in]		*fp				File pointer
*	@param[in,out]	*buffp			Data pointer
*	@param[in]		len				Data length
*	@param[in]		*offset			Object pointer
*	@return			0
*	@note			None
*	@attention		None
*/

static ssize_t fmb_hw_read(struct file* fp, char __user* buffp_p, size_t len, loff_t* offset_p)
{
	int 			minor;
	int				rc;
	struct fmb_hard_private*	priv_p = (struct fmb_hard_private*)fp->private_data;

	minor = priv_p->minor;
	
	MSG(DRIVER_FUNC_LVL, minor, "START");

	rc = Fmb_api_read(priv_p, fp, buffp_p, len, offset_p);		
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return rc;
}

/**
*	@brief		FMB system call write()
*	@param[in]		*fp				File pointer
*	@param[in,out]	*buffp			Data pointer
*	@param[in]		len				Data length
*	@param[in]		*offset			Object pointer
*	@return			0
*	@note			None
*	@attention		None
*/

static ssize_t fmb_hw_write(struct file* fp, const char __user* buffp_p, size_t len, loff_t* offset_p)
{
	int 			minor;
	int				rc;	
	struct fmb_hard_private*	priv_p = (struct fmb_hard_private*)fp->private_data;
	
	minor = priv_p->minor;
	
	MSG(DRIVER_FUNC_LVL, minor, "START");

	rc = Fmb_api_write(priv_p, fp, buffp_p, len, offset_p);
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return rc;
}

/**
*	@brief		FMB system call poll()
*	@param[in]		*fp		File pointer
*	@param[in,out]	*pt		File poll table
*	@return			0
*	@note			None
*	@attention		None
*/

static unsigned int fmb_hw_poll(struct file* fp_p, poll_table* pt_p)
{
	int 			minor;
	int				rc;
	struct fmb_hard_private*	priv_p = (struct fmb_hard_private*)fp_p->private_data;

	minor = priv_p->minor;
	rc = 0;
	
	MSG(DRIVER_FUNC_LVL, minor, "START");

	poll_wait(fp_p, &priv_p->poll_waitq, pt_p);

	if (Fmb_core_get_factor_num(priv_p->core_priv_p)) {
		/** factor info get active */ 
		MSG(DEBUG_LVL, minor, "factor info get active");
		rc = POLLPRI;
	}
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return rc;
}

/**
*	@brief		FMB system call ioctl()
*	@param[in]	*ip		Information in filesystem
*	@param[in]	*fp		File pointer
*	@param[in]	cmd		Command number from application
*	@param[in]	arg		Argument from application 
*	@return		0
*	@note		None
*	@attention	None
*/

static long fmb_hw_ioctl(struct file* fp_p,
			 unsigned int cmd, unsigned long arg)
{
	int 			minor;
	int				rc;	
	struct fmb_hard_private*	priv_p = (struct fmb_hard_private*)fp_p->private_data;

	minor = priv_p->minor;
	rc = 0;
	
	MSG(DRIVER_FUNC_LVL, minor, "cmd:0x%x,START", cmd);

	/* ioctl() to FMB Codec */ 
	rc = Fmb_api_ioctl(priv_p, cmd, arg);

	MSG(DRIVER_FUNC_LVL, minor, "cmd:0x%x,END", cmd);
	return rc;
}

/********************************************************/
/*							*/
/*	Hardware dependence Interrupt process function	*/
/*							*/
/********************************************************/

/**
*	@brief		FMB Hardware interrupt
*	@param[in]	irq			Interruption number
*	@param[in]	*dev_id		device id
*	@param[in]	*regs		Pointer of register information
*	@return		IRQ_HANDLED	Normal end
*	@note		None
*	@attention	None
*/

static irqreturn_t fmb_hw_interrupt(int irq, void *dev_id)
{
	int				minor;
	int				dma0Int;
	int				dma1Int;	
	unsigned long	intcsr;
	unsigned long	dmacsr;
	unsigned long	fpciintst;
	struct fmb_hard_private* priv_p = (struct fmb_hard_private*)dev_id;
	
	dma0Int      = 0;
	dma1Int      = 0;

	minor = priv_p->minor;
	
	MSG(CODEC_FUNC, minor, "START");
	MSG(DRIVER_FUNC_LVL, minor, "START");

	intcsr = Fmb_hw_reg_read_dma(priv_p, INTSOURCE);

	if (intcsr & 0x00000010) {
		/* DMA ch0 interrrupt */
		MSG(DMA0MSG_LVL, minor, "DMA ch0 interrrupt message");

		dmacsr = Fmb_hw_reg_read_dma(priv_p, DMA0CMDSTS);
		dmacsr |= 0x8;
		Fmb_hw_reg_write_dma(priv_p, DMA0CMDSTS, dmacsr);
		dma0Int = 1;

		MSG(DRIVER_FUNC_LVL, minor, "DMA ch0 interrrupt Registration");
	}

	if (intcsr & 0x00000020) {
		/* DMA ch1 interrrupt */
		MSG(DMA1MSG_LVL, minor, "DMA ch1 interrrupt message");

		dmacsr = Fmb_hw_reg_read_dma(priv_p, DMA1CMDSTS);
		dmacsr |= 0x8;
		Fmb_hw_reg_write_dma(priv_p, DMA1CMDSTS, dmacsr);
		dma1Int = 1;

		MSG(DRIVER_FUNC_LVL, minor, "DMA ch1 interrrupt Registration");
	}

	if (intcsr & 0x00000001) {
		/* LXINT */
		fpciintst = Fmb_hw_reg_read_lsi_master(priv_p, FPCI_INTST);	
			if (fpciintst & FPCI_INTMASK_XERROR ){
				Fmb_core_xerror_irq(priv_p->core_priv_p);

				MSG(DRIVER_FUNC_LVL, minor, "XERROR interrrupt Registration");
			}
		
			if(fpciintst & FPCI_INTMASK_INT ){

				Fmb_core_int_irq(priv_p->core_priv_p);
				MSG(DRIVER_FUNC_LVL, minor, "INT interrrupt Registration");
			}

			if(fpciintst & FPCI_INTMASK_EDERR ){

				Fmb_core_ederr_irq(priv_p->core_priv_p);
				MSG(DRIVER_FUNC_LVL, minor, "EDERR interrrupt Registration");
			}

			if(fpciintst & FPCI_INTMASK_DDERR ){

				Fmb_core_dderr_irq(priv_p->core_priv_p);
				MSG(DRIVER_FUNC_LVL, minor, "DDERR interrrupt Registration");
			}

			Fmb_hw_reg_write_lsi_master(priv_p, FPCI_INTST, fpciintst);
			MSG(DRIVER_FUNC_LVL, minor, "LXINT interrrupt Registration");
		}
	
	if (dma0Int) {
		Fmb_core_dma_rcv_irq(priv_p->core_priv_p);
		MSG(DRIVER_FUNC_LVL, minor, "DMA forwarding interrupt for reception");
	}

	if (dma1Int) {
		Fmb_core_dma_snd_irq(priv_p->core_priv_p);
		MSG(DRIVER_FUNC_LVL, minor, "DMA forwarding interrupt for transmission");
	}

	MSG(DRIVER_FUNC_LVL, minor, "END");
	MSG(CODEC_FUNC, minor, "END");
	return IRQ_HANDLED;
}


/**
*	@brief		FMB Hardware interrupt set
*	@param[in]	priv_p			private data pointer
*	@return		None
*	@note		None
*	@attention	None
*
*/

void Fmb_hw_interrupt_set(struct fmb_hard_private* priv_p)
{
	int 			minor;
	int				result;
	
	minor = priv_p->minor;

	MSG(INTERNAL_FUNC, minor, "START");

	result = request_irq(priv_p->pci_dev_p->irq, fmb_hw_interrupt,
			   IRQF_DISABLED | IRQF_SHARED, FMB_DRIVER_NAME, (void *)priv_p);
	if(result < 0) {
		Fmb_core_remove(priv_p->core_priv_p);	
		fmb_hw_unmemmap(priv_p);			
		pci_disable_device(priv_p->pci_dev_p);			
		cdev_del(&priv_p->cdev_info);				
		MSG(KERN_ERR_LVL, minor, "Can not fmb_hw_interrupt reuest");
	}else if(result == 0){
		MSG(DEBUG_LVL, minor, "interrupt Handler Registration");
	}

	MSG(INTERNAL_FUNC, minor, "END");
}


/********************************************************/
/*							*/
/*	Driver module initialization function		*/
/*							*/
/********************************************************/
/*------------------------------------------------------*/
/* Data for driver registration                 */
/*------------------------------------------------------*/
static struct file_operations fmb_fops =
{
	.owner		=	THIS_MODULE,
	.read		=	fmb_hw_read,
	.write		=	fmb_hw_write,
	.poll		=	fmb_hw_poll,
	.unlocked_ioctl	=	fmb_hw_ioctl,
	.open		=	fmb_hw_open,
	.release	=	fmb_hw_release,
};


/**
*	@brief		FMB system call probe()
*	@param[in]	dev			pci device Structure pointer
*	@param[in]	pci_id		pci device id pointer
*	@return		0
*	@note		None
*	@attention	None
*/

static int __devinit fmb_hw_probe(struct pci_dev* pci_p, const struct pci_device_id* pci_id_p)
{
	
	int 			minor;
	int				result;
	struct fmb_hard_private*	priv_p;
	unsigned long	flags;
	dev_t dev;
	
	minor = -1;
	
	MSG(DRIVER_FUNC_LVL, minor, "START");
	
	result = pci_enable_device(pci_p);
	if(result != 0){
		MSG(KERN_ERR_LVL, minor, "pci device enable error");
		return -ENODEV;
	}

	spin_lock_irqsave(&s_Fmb_hw_lock, flags);	
	if (s_Fmb_cards_active == FMB_MAX_CARDS) {
		spin_unlock_irq(&s_Fmb_hw_lock);					
		pci_disable_device(pci_p);							
		MSG(INTERNAL_ERR_LVL, minor, "No remainder of private data.");
		return -ENOMEM;
	}

	priv_p = &s_Fmb_hard_private_list[s_Fmb_cards_active];

	priv_p->pci_dev_p = pci_p;
	priv_p->minor = FMB_MINOR_NUM_START + s_Fmb_cards_active;
	s_Fmb_cards_active++;
	
	minor = priv_p->minor;
	
	spin_unlock_irqrestore(&s_Fmb_hw_lock, flags);		

	fmb_hw_private_data_init(priv_p);		
	result = fmb_hw_memmap(priv_p);					
	if(result < 0){
		MSG(INTERNAL_ERR_LVL, minor, "memmap error");
		return -ENOMEM;
	}
	
	pci_set_master(priv_p->pci_dev_p);					
	pci_set_drvdata(priv_p->pci_dev_p,priv_p);

	fmb_card_powerdown(priv_p);			
	fmb_card_reset(priv_p);				

	result = Fmb_core_probe(priv_p);
	if(result < 0){
		fmb_hw_unmemmap(priv_p);			
		pci_disable_device(priv_p->pci_dev_p);
		MSG(INTERNAL_ERR_LVL, minor, "core_probe error");
		return -ENOMEM;
	}		

	Fmb_hw_codec_lsi_init(priv_p);		
	fmb_hw_irq_init(priv_p);			

	dev = MKDEV(s_Fmb_driver_version_major, minor);
	cdev_init(&priv_p->cdev_info, &fmb_fops);		
	priv_p->cdev_info.owner	= THIS_MODULE;
	priv_p->cdev_info.ops	= &fmb_fops;
	result = cdev_add(&priv_p->cdev_info, dev, 1);		
	if(result < 0) {
		Fmb_core_remove(priv_p->core_priv_p);	
		fmb_hw_unmemmap(priv_p);				
		pci_disable_device(priv_p->pci_dev_p);
		MSG(KERN_ERR_LVL, minor, "Can not module:fmb_driver registe");
		return -EBUSY;
	}
		
	result = request_irq(priv_p->pci_dev_p->irq, fmb_hw_interrupt,
			   IRQF_DISABLED | IRQF_SHARED, FMB_DRIVER_NAME, (void *)priv_p);
	if(result < 0) {
		Fmb_core_remove(priv_p->core_priv_p);	
		fmb_hw_unmemmap(priv_p);			
		pci_disable_device(pci_p);			
		cdev_del(&priv_p->cdev_info);				
		MSG(KERN_ERR_LVL, minor, "Can not fmb_hw_interrupt reuest");
		return -EBUSY;
	}else if(result == 0){
		MSG(DEBUG_LVL, minor, "interrupt Handler Registration");
	}	
	
	MSG(RESOURCE_LVL, minor, "Driver Version:(%s)\n", VERSION);
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return 0;
}

/**
*	@brief		FMB system call remove()
*	@param[in]	dev		pci device Structure pointer
*	@return		0
*	@note		None
*	@attention	None
*/
static void __devexit fmb_hw_remove(struct pci_dev* pci_p)
{
	int 			minor;
	struct fmb_hard_private* priv_p;

	priv_p = (struct fmb_hard_private*)pci_get_drvdata(pci_p);
	
	minor = priv_p->minor;

	MSG(DRIVER_FUNC_LVL, minor, "START");

	free_irq(priv_p->pci_dev_p->irq, priv_p);			

	Fmb_hw_reg_write_dma(priv_p, INTENABLE, 0x00000000);

	Fmb_core_remove(priv_p->core_priv_p);	

	fmb_card_powerdown(priv_p);			

	Fmb_hw_clear_irq(priv_p);			
	fmb_hw_unmemmap(priv_p);			

	pci_disable_device(pci_p);			
	
	cdev_del(&priv_p->cdev_info);				

	fmb_hw_private_data_release(priv_p);	

	s_Fmb_cards_active--;                  
	
	MSG(DRIVER_FUNC_LVL, minor, "END");
}	

/*----------------------------------------------------------------------------*/
/* Registration processing to PCI bus driver  */
/*----------------------------------------------------------------------------*/
static struct pci_device_id s_Fmb_hw_pci_tbl[] __devinitdata = {
        { FMB_PCI_VENDOR_ID, FMB_PCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
        { 0 }
};
MODULE_DEVICE_TABLE(pci, s_Fmb_hw_pci_tbl);

static struct pci_driver s_Fmb_hw_driver = {
	.name		=	FMB_DRIVER_NAME,
	.id_table	=	s_Fmb_hw_pci_tbl,
	.probe		=	fmb_hw_probe,
	.remove		=	fmb_hw_remove,
};

/**
*	@brief		FMB Hardware initialize module
*	@param[in]	None
*	@return		0			Normal end
*	@return		-EBUSY		Can not module registe
							Can not interrupt reuest
*	@note		None
*	@attention	None
*/  

static int __init fmb_hw_init_module(void)
{
	int 		minor;
	int 		cnt;
	int 		result;
	int			rc;

	minor = -1;
	sema_init(&sm, 1);
	spin_lock_init(&s_Fmb_hw_lock);
	MSG(DRIVER_FUNC_LVL, minor, "START");

	memset( s_Fmb_hard_private_list, 0x00, sizeof( s_Fmb_hard_private_list ) );
	for (cnt = 0; cnt < FMB_MAX_CARDS; cnt++){
		s_Fmb_hard_private_list[cnt].minor     = -1;
	}
	
	Fmb_core_init_module();

	result = alloc_chrdev_region(&s_dev, FMB_MINOR_NUM_START, FMB_MAX_CARDS, FMB_DRIVER_NAME);	
	if(result < 0){
		MSG(KERN_ERR_LVL, minor, "Majors number allocation error");
		return -EBUSY;
	}
	s_Fmb_driver_version_major = MAJOR(s_dev);
	MSG(DEBUG_LVL, minor, "Majors number = %d", s_Fmb_driver_version_major);
	
	rc = pci_register_driver (&s_Fmb_hw_driver);		
	if(rc < 0){
		MSG(KERN_ERR_LVL, minor, "PCI driver registration error");
		unregister_chrdev_region(s_dev, FMB_MAX_CARDS);		
		return -EBUSY;		
	}
	MSG(DRIVER_FUNC_LVL, minor, "END");
	return rc;
}

/**
*	@brief		FMB Hardware cleanup module
*	@param[in]	None
*	@return		None
*	@note		None
*	@attention	None
*/  

static void __exit fmb_hw_cleanup_module(void)
{
	int 		minor;
	
	minor = -1;

	MSG(DRIVER_FUNC_LVL, minor, "START");
	
	unregister_chrdev_region(s_dev, FMB_MAX_CARDS);	
	
	pci_unregister_driver (&s_Fmb_hw_driver);	

	MSG(DRIVER_FUNC_LVL, minor, "END");
}

module_init(fmb_hw_init_module);
module_exit(fmb_hw_cleanup_module);