aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc/mediatek/vdec/verify/vdec_verify_file_common.c
blob: 5a39793dccab38029221fad9c56d2972eaed984f (plain) (blame)
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
#include "vdec_verify_file_common.h"
//#include "vdec_ide.h"
#include "vdec_verify_mpv_prov.h"
#ifdef SATA_HDD_FS_SUPPORT
#include "sata_fs_io.h"
//#include "usb_io.h"
#endif

#include <linux/string.h>
#include <mach/mt_typedefs.h>
#if (!CONFIG_DRV_LINUX)
#include <stdio.h>
#include <string.h>
#include "x_printf.h"
#else

#ifndef SEEK_SET
#define SEEK_SET    0   /* set file offset to offset */
#endif
#ifndef SEEK_CUR
#define SEEK_CUR    1   /* set file offset to current plus offset */
#endif
#ifndef SEEK_END
#define SEEK_END    2   /* set file offset to EOF plus offset */
#endif

#if 0//ndef VDEC_EMUVER_FILEIO

#include "x_os.h"                       //For <string.h>
#include <mach/mt6575_typedefs.h>
#include "x_printf.h"
#include "x_debug.h"

#else //VDEC_EMUVER_FILEIO

FILE   *linux_fopen(const char *name, const char *mode)
{
    return 0;
}

size_t  linux_fread(void *buff, size_t length, size_t cnt, FILE *pfile)
{
    return 0;
}

size_t  linux_fwrite(const void *buff, size_t length, size_t cnt, FILE *pfile)
{
    return 0;
}

UINT32   linux_fclose(FILE *pfile)
{
    return 0;
}


UINT32 linux_ftell(FILE *pfile)
{
    return 0;
}

UINT32  linux_fseek(FILE *pfile, long offset, int cnt)
{
    return 0;
}
#endif //VDEC_EMUVER_FILEIO
#endif


void vVDecOutputDebugString(const CHAR *format, ...)
{
#ifdef IDE_WRITE_SUPPORT
    return;
#else

#if (!CONFIG_DRV_LINUX)
    CHAR szTmpStr[300] = {0};
    va_list argptr;
    va_start(argptr, format);
    vsprintf(szTmpStr, format, argptr);
    szTmpStr[299] = '\0';
    va_end(argptr);
    printk("%s", szTmpStr);
#endif

#endif
}

UINT32 u4fsize(FILE *pFile)
{
    UINT32 u4Result = 0;
    UINT32 u4Offset = 0;

    if (pFile == NULL)
    {
        return u4Result;
    }

    u4Offset = linux_ftell(pFile);
    linux_fseek(pFile, 0, SEEK_END);
    u4Result = linux_ftell(pFile);
    linux_fseek(pFile, u4Offset, SEEK_SET);
    return u4Result;
}

// *********************************************************************
// Function    : void vErrMessage(UINT32 u4InstID, UCHAR *pbDramAddr)
// Description : print error message in record file
// Parameter   : None
// Return      : None
// *********************************************************************
void vErrMessage(UINT32 u4InstID, CHAR *pbDramAddr)
{

}

// *********************************************************************
// Function    : void vDataFromFile(UINT32 u4InstID, UINT32 *pu4W, UINT32 *pu4H)
// Description : print error message in record file
// Parameter   : None
// Return      : None
// *********************************************************************
void vDataFromFile(UINT32 u4InstID, UINT32 *pu4W, UINT32 *pu4H)
{
    FILE *pFile = NULL;
    UINT32 u4Temp;
    UINT32 u4FileSize;

    u4Temp = sprintf(_bTempStr1[u4InstID], "%s", _bFileStr1[u4InstID][0]);
    u4Temp += sprintf(_bTempStr1[u4InstID] + u4Temp, "%s", "width.txt");
    pFile = linux_fopen(_bTempStr1[u4InstID], "rb");
    u4FileSize = u4fsize(pFile);
    if (pFile)
    {
        //fgfileread(u4FILE, (UINT32)pu4W, u4FileSize);
        linux_fread(pu4W, 1, u4FileSize, pFile);
        linux_fclose(pFile);
    }
    else
    {
        sprintf(_bTempStr1[u4InstID], "%s", "No W\\n\\0");
        vErrMessage(u4InstID, (CHAR *)_bTempStr1[u4InstID]);
    }


    u4Temp = sprintf(_bTempStr1[u4InstID], "%s", _bFileStr1[u4InstID][0]);
    u4Temp += sprintf(_bTempStr1[u4InstID] + u4Temp, "%s", "height.txt");
    pFile = linux_fopen(_bTempStr1[u4InstID], "rb");
    u4FileSize = u4fsize(pFile);
    if (pFile)
    {
        //fgfileread(u4FILE, (UINT32)pu4H, u4FileSize);
        linux_fread(pu4H, 1, u4FileSize, pFile);
        linux_fclose(pFile);
    }
    else
    {
        sprintf(_bTempStr1[u4InstID], "%s", "No W\\n\\0");
        vErrMessage(u4InstID, (CHAR *)_bTempStr1[u4InstID]);
    }
}

// *********************************************************************
// Function    : BOOL fgReadPCFile(void* pvAddr, UINT32 u4Size, char *strFileName, UINT32 u4OffSet, UINT32 *pu4RealReadSize)
// Description : read bitstream from pc to memory
// Parameter   : None
// Return      : TRUE/FALSE
// *********************************************************************
BOOL fgReadPCFile(void *pvAddr, UINT32 u4Size, char *strFileName, UINT32 u4OffSet, UINT32 *pu4RealReadSize, UINT32 *pu4FileLength)
{
    FILE *pFile = NULL;
    UINT32 u4FileSize = 0;
    UINT32 u4ReadSize = u4Size;
    if ((NULL == pvAddr) || (0 == u4Size) || (NULL == strFileName) || (NULL == pu4RealReadSize))
    {
        return FALSE;
    }

    *pu4RealReadSize = 0;

    if ((pFile = linux_fopen(strFileName, "rb")) == NULL)
    {
        return FALSE;
    }

    u4FileSize = u4fsize(pFile);
    *pu4FileLength = u4FileSize;

    if (u4OffSet >= u4FileSize)
    {
        linux_fclose(pFile);
        vVDecOutputDebugString("\n read offset(%d) > filesize(%d)", u4OffSet, u4FileSize);
        return FALSE;
    }

    if (linux_fseek(pFile, u4OffSet, SEEK_SET))
    {
        linux_fclose(pFile);
        vVDecOutputDebugString("\n seek fail: %s", strFileName);
        return FALSE;
    }

    if (u4Size > (u4FileSize - u4OffSet))
    {
        u4ReadSize = u4FileSize - u4OffSet;
    }

    *pu4RealReadSize = linux_fread((void *)pvAddr, 1, u4ReadSize, pFile);
    linux_fclose(pFile);

    if (u4ReadSize != *pu4RealReadSize)
    {
        vVDecOutputDebugString("\n read fail: %s", strFileName);
        return FALSE;
    }

    return TRUE;
}



BOOL fgReadHDDFile(UINT32 u4InstID, BOOL fgReadInfo,  void *pvAddr, UINT32 u4Size, char *strFileName, UINT32 u4OffSet, UINT32 *pu4RealReadSize, UINT32 *pu4FileLength, ULONG *pi4FileId)
{
#ifdef  SATA_HDD_READ_SUPPORT
#ifndef  SATA_HDD_FS_SUPPORT

    FILE *pFile = NULL;
    UINT32 u4FILE = 0;
    UINT32 u4FileSize = 0;

    if ((NULL == pvAddr) || (0 == u4Size) || (NULL == strFileName) || (NULL == pu4RealReadSize))
    {
        return FALSE;
    }

    *pu4RealReadSize = 0;

    if (0) // '\0' != _bFileStr1[_u4VDecID][9][0])
    {
        //u4FILE = u4fOpenFile(_bFileStr1[_u4VDecID][9], 1/*"rb"*/, &u4FileSize);
    }
    else
    {
        //u4FILE = u4fOpenFile(strFileName, 1/*"rb"*/, &u4FileSize);
    }


    if (fgReadInfo)
    {
        u4FILE = i4ReadFileFormHDD(
                     u4InstID,
                     strFileName,
                     pvAddr,
                     u4OffSet,
                     u4Size,
                     pu4RealReadSize,
                     pu4FileLength
                 );
    }
    else
    {
        if ((pFile = linux_fopen(strFileName, "rb")) == NULL)
        {
            return FALSE;
        }
        else
        {
            linux_fclose(pFile);
            return TRUE;
        }
    }

    if (0 != u4FILE)
    {
        return FALSE;
    }

    if (!((u4Size == *pu4RealReadSize) || ((*pu4FileLength - u4OffSet) == *pu4RealReadSize)))
    {
        vVDecOutputDebugString("\n read fail: %s", strFileName);
        return FALSE;
    }
#else
    BOOL fgRet;

    if ((NULL == pvAddr) || (0 == u4Size) || (NULL == strFileName) || (NULL == pu4RealReadSize))
    {
        return FALSE;
    }

    *pu4RealReadSize = 0;

    if (fgReadInfo)
    {

        fgRet = fgHDDFsReadFile(
                    u4InstID,
                    strFileName,
                    pvAddr,
                    u4OffSet,
                    u4Size,
                    pu4RealReadSize,
                    pu4FileLength,
                    pi4FileId
                );

        if (!fgRet)
        {
            return FALSE;
        }

        if (!((u4Size == *pu4RealReadSize) || ((*pu4FileLength - u4OffSet) == *pu4RealReadSize)))
        {
            vVDecOutputDebugString("\n read fail: %s", strFileName);
            return FALSE;
        }

    }
    else
    {
        fgRet = fgHDDFsOpenFile(
                    u4InstID,
                    strFileName,
                    pi4FileId
                );

        if (fgRet)
        {
            if (pu4FileLength)
            {
                *pu4FileLength = u4HDDFsGetFileSize(pi4FileId);
            }
            fgHDDFsCloseFile(*pi4FileId);
        }
        else
        {
            return FALSE;
        }

    }

    return TRUE;
#endif

#else
    return FALSE;
#endif
}

BOOL fgOpenHDDFileEx(UINT32 u4InstID, char *strFileName , char *strMode, VDEC_INFO_VERIFY_FILE_INFO_T *ptFileInfo, const char *szFile, INT32 i4Line)
{
    UINT32 u4Offset;

#ifdef RING_VFIFO_SUPPORT
    u4Offset = ptFileInfo->u4FileOffset;
#else
    u4Offset = 0;
#endif

    printk("<vdec> OpenFile: %s @(%s, %d)\n", strFileName, szFile, i4Line);
    strncpy(ptFileInfo->bFileName, strFileName, sizeof(strFileName));
    if (fgReadHDDFile(u4InstID, ptFileInfo->fgGetFileInfo, ptFileInfo->pucTargetAddr, ptFileInfo->u4TargetSz, strFileName, u4Offset, &(ptFileInfo->u4RealGetBytes), &(ptFileInfo->u4FileLength), &(ptFileInfo->i4FileId)))
    {
        //vVDecOutputDebugString("The file's size is 0x%.8x bytes\n", ptFileInfo->u4FileLength);
        return TRUE;
    }
    else
    {
        //vVDecOutputDebugString("\n NULL \n");
        printk("<vdec> %s(%s) return FALSE!!!!! @( %s, %d)\n", __func__, strFileName, szFile, i4Line);
        return FALSE;
    }
}

// *********************************************************************
// Function    : BOOL fgWrMsg2PC(void* pvAddr, UINT32 u4Size, UINT32 u4Mode, VDEC_INFO_VERIFY_FILE_INFO_T *pFILE_INFO)
// Description : Write the decoded data to PC for compare
// Parameter   : None
// Return      : None
// *********************************************************************
BOOL fgWrMsg2PC(void *pvAddr, UINT32 u4Size, UINT32 u4Mode, VDEC_INFO_VERIFY_FILE_INFO_T *pFILE_INFO)
{
#ifdef IDE_WRITE_SUPPORT
#if (!CONFIG_DRV_LINUX)
    printk("%s", pvAddr);
#endif
    return TRUE;
#else

    BOOL fgResult = FALSE;

#ifdef PCFILE_WRITE
    FILE *pFile = NULL;

    if ((NULL == pvAddr) || (0 == u4Size))
    {
        return FALSE;
    }

    if (pFILE_INFO->pFile == NULL)
    {
        if (pFILE_INFO->bFileName == NULL)
        {
            return FALSE;
        }
        else
        {
            pFILE_INFO->pFile = linux_fopen(pFILE_INFO->bFileName, "wb");
        }
    }
    pFile = pFILE_INFO->pFile;

    if (pFile == NULL)
    {
        return FALSE;
    }

    fgResult = (linux_fwrite((char *)pvAddr, 1, u4Size, pFile) == u4Size);
    if (FALSE == fgResult)
    {
        vVDecOutputDebugString("\n write fail: %s", pFILE_INFO->bFileName);
        linux_fclose(pFILE_INFO->pFile);
    }
    //fclose(pFile);

#else
#if (!CONFIG_DRV_LINUX)
    printk("%s", (char *)pvAddr);
#endif
    printk("%s", (char *)pvAddr);
    fgResult = TRUE;

#endif

    return fgResult;
#endif
}

BOOL fgOverWrData2PC(void *pvAddr, UINT32 u4Size, UINT32 u4Mode, char *strFileName)
{
#ifdef IDE_WRITE_SUPPORT
#if (!CONFIG_DRV_LINUX)
    printk("%s", pvAddr);
#endif
    return TRUE;
#else
    //printk("file name:%s\n",strFileName);
    //printk("addr:%s, size:0x%x\n",pvAddr, u4Size);

    fgHDDFsWriteFile(strFileName, pvAddr, u4Size);
    return TRUE;
#endif
}

BOOL fgWrData2PC(void *pvAddr, UINT32 u4Size, UINT32 u4Mode, char *strFileName)
{
#ifdef IDE_WRITE_SUPPORT
    fgIdeWrData2PC(pvAddr, u4Size, u4Mode, strFileName);
#else
    fgOverWrData2PC(pvAddr, u4Size, u4Mode, strFileName);
#endif

    return TRUE;
}

BOOL fgOpenPCFile(UINT32 u4InstID, char *strFileName , char *strMode, VDEC_INFO_VERIFY_FILE_INFO_T *ptFileInfo)
{
    FILE *pFile = NULL;
    UINT32 u4Offset;

#ifdef RING_VFIFO_SUPPORT
    u4Offset = ptFileInfo->u4FileOffset;
#else
    u4Offset = 0;
#endif

    if (ptFileInfo->fgGetFileInfo)
    {
        strcpy(ptFileInfo->bFileName, strFileName);
        if (fgReadPCFile(ptFileInfo->pucTargetAddr, ptFileInfo->u4TargetSz, strFileName, u4Offset, &(ptFileInfo->u4RealGetBytes), &(ptFileInfo->u4FileLength)))
        {
            //vVDecOutputDebugString("The file's size is 0x%.8x bytes\n", ptFileInfo->u4FileLength);
            if (ptFileInfo->u4FileLength > ptFileInfo->u4RealGetBytes)
            {
                vVDecOutputDebugString("\n Over scan\n");
            }
            return TRUE;
        }
        else
        {
            vVDecOutputDebugString("\n NULL \n");
            return FALSE;
        }
    }
    else
    {
        if ((pFile = linux_fopen(strFileName, "rb")) == NULL)
        {
            return FALSE;
        }
        else
        {
            linux_fclose(pFile);
            return TRUE;
        }
    }

}


// *********************************************************************
// Function    : void fgOpenFile(void)
// Description : Set related files pointer
// Parameter   : None
// Return      : None
// *********************************************************************
BOOL fgOpenFileEx(UINT32 u4InstID, char *strFileName , char *strMode, VDEC_INFO_VERIFY_FILE_INFO_T *ptFileInfo, const char *szFunction, INT32 i4Line)
{
    BOOL fgOpen = TRUE;

#ifdef  SATA_HDD_READ_SUPPORT
    fgOpen = fgOpenHDDFileEx(u4InstID, strFileName, strMode, ptFileInfo, szFunction, i4Line);
#ifndef  SATA_HDD_FS_SUPPORT
    if (fgOpen == FALSE)
    {
        fgOpen = fgOpenPCFile(u4InstID, strFileName, strMode, ptFileInfo);
    }
#endif
#elif defined(IDE_READ_SUPPORT)
    fgOpen = fgOpenIdeFile(strFileName, strMode, ptFileInfo);
    if (fgOpen == FALSE)
    {
        fgOpen = fgOpenPCFile(u4InstID, strFileName, strMode, ptFileInfo);
    }

#else
    fgOpen = fgOpenPCFile(u4InstID, strFileName, strMode, ptFileInfo);
#endif

    return fgOpen;
}


#ifdef IDE_WRITE_SUPPORT
BOOL fgIdeWrData2PC(void *pvAddr, UINT32 u4Size, UINT32 u4Mode, char *strFileName)
{
    _DmxIdeSendName(strFileName);
    _DmxIdeSendData((UINT32)pvAddr, u4Mode, u4Size);
    return TRUE;
}
#endif


#ifdef IDE_READ_SUPPORT
BOOL fgReadIdeFile(void *pvAddr, UINT32 u4Size, char *strFileName, UINT32 u4OffSet, UINT32 *pu4RealReadSize, UINT32 *pu4FileLength)
{
    if ((NULL == pvAddr) || (0 == u4Size) || (NULL == strFileName) || (NULL == pu4RealReadSize))
    {
        return FALSE;
    }

    *pu4RealReadSize = 0;

    _DmxIdeSendName(strFileName);

#if !CONFIG_DRV_LINUX
    if (!_DmxIdeGetFile((UINT32)pvAddr, 0, pu4RealReadSize))
    {
        vVDecOutputDebugString("\n read fail: %s", strFileName);
        return FALSE;
    }
#else
    if (!_DmxIdeGetFile(PHYSICAL((UINT32)pvAddr), 0, pu4RealReadSize, u4Size))
    {
        vVDecOutputDebugString("\n read fail: %s", strFileName);
        return FALSE;
    }
#endif

    *pu4FileLength = *pu4RealReadSize;

    return TRUE;
}

BOOL fgPureOpenIdeFile(char *strFileName , char *strMode, VDEC_INFO_VERIFY_FILE_INFO_T *ptFileInfo)
{
    _DmxIdeSendName(strFileName);
    return (_DmxIdeOpenFile());
}

BOOL fgOpenIdeFile(char *strFileName , char *strMode, VDEC_INFO_VERIFY_FILE_INFO_T *ptFileInfo)
{
    FILE *pFile = NULL;
    UINT32 u4Offset;

#ifdef RING_VFIFO_SUPPORT
    u4Offset = ptFileInfo->u4FileOffset;
#else
    u4Offset = 0;
#endif

    if (ptFileInfo->fgGetFileInfo)
    {
        strcpy(ptFileInfo->bFileName, strFileName);
        if (fgReadIdeFile(ptFileInfo->pucTargetAddr, ptFileInfo->u4TargetSz, strFileName, u4Offset, &(ptFileInfo->u4RealGetBytes), &(ptFileInfo->u4FileLength)))
        {
            return TRUE;
        }
        else
        {
            vVDecOutputDebugString("\n NULL \n");
            return FALSE;
        }
    }
    else
    {
        if ((pFile = linux_fopen(strFileName, "rb")) == NULL)
        {
            return FALSE;
        }
        else
        {
            linux_fclose(pFile);
            return TRUE;
        }
    }
}
#endif