xref: /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/drvUSBVerify.c (revision 53ee8cc121a030b8d368113ac3e966b4705770ef)
1 //<MStar Software>
2 //******************************************************************************
3 // MStar Software
4 // Copyright (c) 2010 - 2012 MStar Semiconductor, Inc. All rights reserved.
5 // All software, firmware and related documentation herein ("MStar Software") are
6 // intellectual property of MStar Semiconductor, Inc. ("MStar") and protected by
7 // law, including, but not limited to, copyright law and international treaties.
8 // Any use, modification, reproduction, retransmission, or republication of all
9 // or part of MStar Software is expressly prohibited, unless prior written
10 // permission has been granted by MStar.
11 //
12 // By accessing, browsing and/or using MStar Software, you acknowledge that you
13 // have read, understood, and agree, to be bound by below terms ("Terms") and to
14 // comply with all applicable laws and regulations:
15 //
16 // 1. MStar shall retain any and all right, ownership and interest to MStar
17 //    Software and any modification/derivatives thereof.
18 //    No right, ownership, or interest to MStar Software and any
19 //    modification/derivatives thereof is transferred to you under Terms.
20 //
21 // 2. You understand that MStar Software might include, incorporate or be
22 //    supplied together with third party`s software and the use of MStar
23 //    Software may require additional licenses from third parties.
24 //    Therefore, you hereby agree it is your sole responsibility to separately
25 //    obtain any and all third party right and license necessary for your use of
26 //    such third party`s software.
27 //
28 // 3. MStar Software and any modification/derivatives thereof shall be deemed as
29 //    MStar`s confidential information and you agree to keep MStar`s
30 //    confidential information in strictest confidence and not disclose to any
31 //    third party.
32 //
33 // 4. MStar Software is provided on an "AS IS" basis without warranties of any
34 //    kind. Any warranties are hereby expressly disclaimed by MStar, including
35 //    without limitation, any warranties of merchantability, non-infringement of
36 //    intellectual property rights, fitness for a particular purpose, error free
37 //    and in conformity with any international standard.  You agree to waive any
38 //    claim against MStar for any loss, damage, cost or expense that you may
39 //    incur related to your use of MStar Software.
40 //    In no event shall MStar be liable for any direct, indirect, incidental or
41 //    consequential damages, including without limitation, lost of profit or
42 //    revenues, lost or damage of data, and unauthorized system use.
43 //    You agree that this Section 4 shall still apply without being affected
44 //    even if MStar Software has been modified by MStar in accordance with your
45 //    request or instruction for your use, except otherwise agreed by both
46 //    parties in writing.
47 //
48 // 5. If requested, MStar may from time to time provide technical supports or
49 //    services in relation with MStar Software to you for your use of
50 //    MStar Software in conjunction with your or your customer`s product
51 //    ("Services").
52 //    You understand and agree that, except otherwise agreed by both parties in
53 //    writing, Services are provided on an "AS IS" basis and the warranty
54 //    disclaimer set forth in Section 4 above shall apply.
55 //
56 // 6. Nothing contained herein shall be construed as by implication, estoppels
57 //    or otherwise:
58 //    (a) conferring any license or right to use MStar name, trademark, service
59 //        mark, symbol or any other identification;
60 //    (b) obligating MStar or any of its affiliates to furnish any person,
61 //        including without limitation, you and your customers, any assistance
62 //        of any kind whatsoever, or any information; or
63 //    (c) conferring any license or right under any intellectual property right.
64 //
65 // 7. These terms shall be governed by and construed in accordance with the laws
66 //    of Taiwan, R.O.C., excluding its conflict of law rules.
67 //    Any and all dispute arising out hereof or related hereto shall be finally
68 //    settled by arbitration referred to the Chinese Arbitration Association,
69 //    Taipei in accordance with the ROC Arbitration Law and the Arbitration
70 //    Rules of the Association by three (3) arbitrators appointed in accordance
71 //    with the said Rules.
72 //    The place of arbitration shall be in Taipei, Taiwan and the language shall
73 //    be English.
74 //    The arbitration award shall be final and binding to both parties.
75 //
76 //******************************************************************************
77 //<MStar Software>
78 #include "MsCommon.h"
79 #include "drvUSB.h"
80 #include "drvUsbcommon.h"
81 
82 #define TEST_PATTERN_NUM  4
83 #define VER_USB_STACK_SIZE  4096
84 
85 extern BOOL ChkUsbReady(void);
86 
verUSB_Task(MS_U32 argc,VOID * argv)87 void verUSB_Task(MS_U32 argc, VOID *argv)
88 {
89     // create AppMain task
90     MS_U32 i,j,k=0;
91     MS_U8  run_times=0;
92     MS_U8 *TXMemory,*RXMemory;
93     MS_U32 persent, persent_cmp;
94     MS_U8 persent_num;
95     MS_BOOL bRet = FALSE;
96 
97     TXMemory=((MS_U8*)Usb_AllocateNonCachedMemory(512*4));
98     RXMemory=((MS_U8*)Usb_AllocateNonCachedMemory(512*4));
99 
100     diag_printf("verUSB_Task\n");
101 
102     //prepare pattern
103     for(i=0;i<4;i++)
104     {
105         for(j=0;j<512;j++)
106         {
107             *(TXMemory+(i*512)+j) = (MS_U8)(i+j);
108         }
109     }
110     //end pattern prepare
111 
112     while(1)    // Wait for device connected
113     {
114         if (ChkUsbReady())
115             break;
116 
117         MsOS_DelayTask(100);
118     }
119 
120     diag_printf("\r\n USB Burn Test Start !!!\n");
121     diag_printf("Total Block Number=0x%lx\n",  MDrv_GetUsbBlockNum(0));
122 
123     //diag_printf("gSpeed: %d\n", sAttachDevice.bSpeed);
124 
125     persent = MDrv_GetUsbBlockNum(0)/100;
126 
127     while(1)
128     {
129         persent_num=0;
130         persent_cmp=persent;
131         //for(i=0x100;i<Mass_stor_us1.Mass_stor_device[0].u32BlockTotalNum-4;/*i++*/)
132         diag_printf("R/W Testing : ");
133         for(i=0;i<MDrv_GetUsbBlockNum(0)-4;/*i++*/)
134         {
135             #if 0
136             for(j=0;j<4;j++)
137             {
138                 MDrv_UsbDiskWrite(i, 1+j, TXMemory);
139                 for(k=0;k<(512*(j+1));k++)
140                     RXMemory[k]=0;
141 
142                 MDrv_UsbDiskRead(i, 1+j, RXMemory);
143 
144                 if(usbUHCICompareData(TXMemory,RXMemory, 512*(j+1)) )
145                 {
146                     while(1)
147                     {
148                         diag_printf("compare fail, LBA=%lx \n", i);
149                         diag_printf("run times=%x\n",run_times);
150                     }
151                 }
152             }
153             #else
154             bRet = MDrv_UsbBlockWriteFromMIU(0, i, TEST_PATTERN_NUM, (MS_U32)TXMemory);
155             ASSERT( (bRet == TRUE) );
156             //diag_printf("....write\n");
157             for(k=0;k<(512*TEST_PATTERN_NUM);k++)
158                 RXMemory[k]=0;
159             MDrv_UsbBlockReadToMIU(0, i, TEST_PATTERN_NUM, (MS_U32)RXMemory);
160             ASSERT( (bRet == TRUE) );
161             //diag_printf("....read\n");
162 
163             for(k=0;k<4;k++)
164             {
165                 //diag_printf("k = %d\n", k);
166                 for(j=0;j<0x200;j++)
167                 {
168                     if (RXMemory[(k*512)+j]!= TXMemory[(k*512)+j])
169                     {
170                         diag_printf("compare fail, [%ld]=%x \n", (k*512)+j,RXMemory[(k*512)+j]);
171                         diag_printf("run times=%x\n",run_times);
172                         while(1);
173                     }
174                 }
175             }
176             if ((i % 100) == 0)
177             {
178                 diag_printf("....(1) persent_cmp = %ld, i = %ld\n", persent_cmp, i);
179             }
180             i+=TEST_PATTERN_NUM;
181             //diag_printf("....(2) persent_cmp = %d, i = %d\n", persent_cmp, i);
182             if (i>persent_cmp)
183             {
184                 persent_num++;
185                 diag_printf("persent_num : %d\n", persent_num);
186                 persent_cmp += persent;
187                 if ((persent_num%2)==0)
188                     diag_printf("_");
189             }
190             #endif
191 
192             MsOS_DelayTask(100);
193         }
194 
195         run_times++;
196         diag_printf("\nTEST LOOP (%x) SUCESS!!\n", run_times);
197     }
198 
199 }
200 
201 #ifndef MS_NOSAPI
VerUSBTask_Create(void)202 void VerUSBTask_Create(void)
203 {
204     void *pointer;
205 
206     diag_printf("VerUSB_Create\n");
207     pointer = Usb_AllocateCachedMemory(VER_USB_STACK_SIZE); // 8k bytes stack size
208     if( pointer == NULL)
209     {
210         GEN_EXCEP;
211     }
212     if( MsOS_CreateTask(verUSB_Task, NULL, E_TASK_PRI_HIGH,true,pointer,VER_USB_STACK_SIZE,"verUSB_TSAK") < 0 )
213     {
214         GEN_EXCEP;
215     }
216 }
217 #endif
218 
219 
220