1 /*
2 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
3 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without modification,
6 * are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice, this list of
9 * conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 * of conditions and the following disclaimer in the documentation and/or other materials
13 * provided with the distribution.
14 *
15 * 3. Neither the name of the copyright holder nor the names of its contributors may be used
16 * to endorse or promote products derived from this software without specific prior written
17 * permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #include "osTest.h"
33 #include "securec.h"
34 #ifdef LOSCFG_KERNEL_CPPSUPPORT
35 #include "los_cppsupport.h"
36 #endif
37 #if defined(TEST3518E) || defined(TEST3516A) || defined(TEST3516EV200)
38 #include "eth_drv.h"
39 #endif
40 #if !defined(LOSCFG_AARCH64) && !defined(TESTISP)
41 #include "console.h"
42 #else
43 #include "los_config.h"
44 #endif
45 #include "los_sem_pri.h"
46 #include "los_mux_pri.h"
47 #include "los_queue_pri.h"
48 #include "los_swtmr_pri.h"
49 #include "los_init.h"
50
51 #ifdef __cplusplus
52 #if __cplusplus
53 extern "C" {
54 #endif /* __cpluscplus */
55 #endif /* __cpluscplus */
56 UINT32 g_shellTestQueueID;
57
58 UINT32 g_testTskHandle;
59 UINT32 volatile g_testCount;
60 UINT32 g_flowcheck = 0;
61 UINT32 g_failResult = 0;
62 UINT32 g_passResult = 0;
63
64 #ifdef TESTPBXA9
snprintf(char * str,unsigned int len,const char * fmt,...)65 int snprintf(char *str, unsigned int len, const char *fmt, ...) {}
66 #endif
67
68 #ifdef TEST1980
69 UINT32 g_testhwiFlag;
70 UINT32 g_testCpuMask;
71 #endif
72
73 SPIN_LOCK_S g_testSpin;
74 UINT32 g_testCount1;
75 UINT32 g_testCount2;
76 UINT32 g_testCount3;
77 UINT32 g_testTaskID01;
78 UINT32 g_testTaskID02;
79 UINT32 g_testTaskID03;
80 UINT32 g_testTaskID04;
81 UINT32 g_hwiNum1;
82 UINT32 g_hwiNum2;
83 UINT32 g_semID;
84 UINT32 g_semID2;
85 LosMux g_mutexkernelTest;
86 UINT32 g_cpupTestCount;
87 UINT32 g_waitTestCount;
88 UINT32 g_testPeriod;
89
90 UINT16 g_swTmrID;
91 UINT32 g_testQueueID01;
92 UINT32 g_testQueueID02;
93 UINT32 g_testQueueID03;
94 UINT32 g_leavingTaskNum;
95 UINT32 g_getTickConsume = 0;
96 EVENT_CB_S g_eventCB;
97 EVENT_CB_S g_event;
98 UINT32 g_testCircleCount = 0;
99 INT32 g_performanceStart = -1;
100
101 #define MOUNT_PATH NFS_MOUNT_DIR
102 UINT32 g_fatFilesystem;
103 UINT8 g_mIndex;
104 UINT32 g_semID3[LOSCFG_BASE_IPC_SEM_CONFIG + 1];
105 LOS_MEM_POOL_STATUS g_sysMemStatus = { 0 };
106
107 #if TEST_MODULE_CHECK == 1
108
109 extern UINT32 g_failModelResult[];
110 extern UINT32 g_passModelResult[];
111 extern UINT32 g_executModelNum[];
112 extern ICUNIT_CASE_S g_errorCase[];
113 #endif
114 extern char *g_strLayer[];
115 extern char *g_strLevel[];
116 extern char *g_strType[];
117
118 extern char *g_strModule[];
119 extern UINT32 g_modelNum;
120
121 #ifdef LOSCFG_TEST_FS_FAT
122 #define TEST_FAT32 0x02
123 #define TEST_EXFAT 0x04
124 #endif
125
126 BOOL g_isSpinorInit = FALSE;
127 BOOL g_isSdInit = FALSE;
128 BOOL g_isUartDevInit = FALSE;
129 BOOL g_isTcpipInit = FALSE;
130 BOOL g_isInitSerial = FALSE;
131 UINT32 g_vfsCyclesCount = 0;
132 INT32 g_serialInitFlag = -1;
133 BOOL g_isAddArray = TRUE;
134 BOOL g_isUsbInit = FALSE;
135 BOOL g_isIpcGmacInit = FALSE;
136
137 BOOL g_isDriversRandomInit = FALSE;
138
139 BOOL g_isHisiEthSetPhyModeInit = FALSE;
140
141 BOOL g_isVfsInit = FALSE;
142
TRandom(VOID)143 u_long TRandom(VOID)
144 {
145 u_long t;
146 long x, hi, lo;
147 UINT64 cpuCycle;
148 UINT32 high, low;
149 extern VOID LOS_GetCpuCycle(UINT32 * puwCntHi, UINT32 * puwCntLo);
150 LOS_GetCpuCycle(&high, &low);
151 cpuCycle = (((UINT64)high << 30) + low); // 30, generate a seed.
152 x = cpuCycle;
153 hi = x / 127773; // 127773, generate a seed.
154 lo = x % 127773; // 127773, generate a seed.
155 t = 16807 * lo - 2836 * hi; // 16807, 2836, generate a seed.
156 if (t <= 0)
157 t += 0x7fffffff;
158 return (u_long)(t);
159 }
160
LosMuxCreate(LosMux * mutex)161 UINT32 LosMuxCreate(LosMux *mutex)
162 {
163 return LOS_MuxInit(mutex, NULL);
164 }
165
TaskCountGetTest(VOID)166 UINT32 TaskCountGetTest(VOID)
167 {
168 UINT32 loop;
169 UINT32 taskCnt = 0;
170 UINT32 intSave;
171 LosTaskCB *taskCB = (LosTaskCB *)NULL;
172
173 intSave = LOS_IntLock();
174 for (loop = 0; loop < g_taskMaxNum; loop++) {
175 taskCB = (((LosTaskCB *)g_taskCBArray) + loop);
176 if (taskCB->taskStatus & OS_TASK_STATUS_UNUSED) {
177 continue;
178 }
179 taskCnt++;
180 }
181 (VOID)LOS_IntRestore(intSave);
182 return taskCnt;
183 }
184
SemCountGetTest(VOID)185 UINT32 SemCountGetTest(VOID)
186 {
187 UINT32 loop;
188 UINT32 semCnt = 0;
189 UINT32 intSave;
190 LosSemCB *semNode = (LosSemCB *)NULL;
191
192 intSave = LOS_IntLock();
193 for (loop = 0; loop < LOSCFG_BASE_IPC_SEM_CONFIG; loop++) {
194 semNode = GET_SEM(loop);
195 if (semNode->semStat == OS_SEM_USED) {
196 semCnt++;
197 }
198 }
199 (VOID)LOS_IntRestore(intSave);
200 return semCnt;
201 }
202
QueueCountGetTest(VOID)203 UINT32 QueueCountGetTest(VOID)
204 {
205 UINT32 loop;
206 UINT32 queueCnt = 0;
207 UINT32 intSave;
208 LosQueueCB *queueCB = (LosQueueCB *)NULL;
209
210 intSave = LOS_IntLock();
211 queueCB = g_allQueue;
212 for (loop = 0; loop < LOSCFG_BASE_IPC_QUEUE_CONFIG; loop++, queueCB++) {
213 if (queueCB->queueState == OS_QUEUE_INUSED) {
214 queueCnt++;
215 }
216 }
217 (VOID)LOS_IntRestore(intSave);
218 return queueCnt;
219 }
220
SwtmrCountGetTest(VOID)221 UINT32 SwtmrCountGetTest(VOID)
222 {
223 UINT32 loop;
224 UINT32 swTmrCnt = 0;
225 UINT32 intSave;
226 SWTMR_CTRL_S *swTmrCB = (SWTMR_CTRL_S *)NULL;
227
228 intSave = LOS_IntLock();
229 swTmrCB = g_swtmrCBArray;
230 for (loop = 0; loop < LOSCFG_BASE_CORE_SWTMR_CONFIG; loop++, swTmrCB++) {
231 if (swTmrCB->ucState != OS_SWTMR_STATUS_UNUSED) {
232 swTmrCnt++;
233 }
234 }
235 (VOID)LOS_IntRestore(intSave);
236 return swTmrCnt;
237 }
238
239 #ifdef TEST1980
TestHwiTrigger(unsigned int irq)240 VOID TestHwiTrigger(unsigned int irq)
241 {
242 int i;
243 HalIrqSendIpi(g_testCpuMask, irq);
244 for (i = 0; i < 0xff; i++) {
245 }
246 }
247 #else
TestHwiTrigger(unsigned int irq)248 void TestHwiTrigger(unsigned int irq)
249 {
250 extern void Dsb(void);
251 extern void HalIrqPending(unsigned int vector);
252 extern VOID HalIrqUnmask(unsigned int vector);
253
254 HalIrqUnmask(irq);
255 HalIrqPending(irq);
256 Dsb();
257 Dsb();
258 Dsb();
259 }
260 #endif
261
TestExtraTaskDelay(UINT32 tick)262 VOID TestExtraTaskDelay(UINT32 tick)
263 {
264 #ifdef LOSCFG_KERNEL_SMP
265 // trigger task schedule may occor on another core
266 // needs adding delay and checking status later
267 LOS_TaskDelay(tick);
268 #else
269 // do nothing
270 #endif
271 }
272
TestTickCountGet(VOID)273 UINT64 TestTickCountGet(VOID)
274 {
275 /* not use LOS_TickCountGet for now,
276 cause every timer is not match with others.
277 use cpu0 timer instead. */
278 return LOS_TickCountGet();
279 }
280
TestTickCountByCurrCpuid(VOID)281 UINT64 TestTickCountByCurrCpuid(VOID)
282 {
283 return LOS_TickCountGet();
284 }
285
286 /*
287 * different from calling LOS_TaskDelay,
288 * this func will not yield this task to another one.
289 */
TestBusyTaskDelay(UINT32 tick)290 VOID TestBusyTaskDelay(UINT32 tick)
291 {
292 UINT64 runtime;
293
294 runtime = TestTickCountByCurrCpuid() + tick;
295 while (1) {
296 if (runtime <= TestTickCountByCurrCpuid()) {
297 break;
298 }
299 }
300 }
301
TestAssertBusyTaskDelay(UINT32 timeout,UINT32 flag)302 VOID TestAssertBusyTaskDelay(UINT32 timeout, UINT32 flag)
303 {
304 UINT64 runtime;
305
306 runtime = TestTickCountGet() + timeout;
307 while (1) {
308 if ((runtime <= TestTickCountGet()) || (g_testCount == flag)) {
309 break;
310 }
311 }
312 }
313
TestTestHwiDelete(unsigned int irq,VOID * devId)314 VOID TestTestHwiDelete(unsigned int irq, VOID *devId)
315 {
316 HwiIrqParam stuwIrqPara;
317
318 if (OS_INT_ACTIVE) {
319 return;
320 }
321
322 stuwIrqPara.swIrq = irq;
323 stuwIrqPara.pDevId = devId;
324
325 (VOID)LOS_HwiDelete(irq, &stuwIrqPara);
326 return;
327 }
328
TestDumpCpuid(VOID)329 VOID TestDumpCpuid(VOID)
330 {
331 #ifdef LOSCFG_KERNEL_SMP
332 PRINT_DEBUG("%d,cpuid = %d\n", LOS_CurTaskIDGet(), ArchCurrCpuid());
333 #endif
334 return;
335 }
336
337 #if defined(LOSCFG_COMPAT_POSIX)
PosixPthreadInit(pthread_attr_t * attr,int pri)338 UINT32 PosixPthreadInit(pthread_attr_t *attr, int pri)
339 {
340 UINT32 ret;
341 struct sched_param sp;
342
343 ret = pthread_attr_init(attr);
344 ICUNIT_GOTO_EQUAL(ret, 0, ret, NOK);
345
346 attr->inheritsched = PTHREAD_EXPLICIT_SCHED;
347
348 sp.sched_priority = pri;
349 ret = pthread_attr_setschedparam(attr, &sp);
350 ICUNIT_GOTO_EQUAL(ret, 0, ret, NOK);
351
352 ret = pthread_attr_setschedpolicy(attr, SCHED_RR);
353 ICUNIT_GOTO_EQUAL(ret, 0, ret, NOK);
354
355 return LOS_OK;
356 NOK:
357 return LOS_NOK;
358 }
359
PosixPthreadDestroy(pthread_attr_t * attr,pthread_t thread)360 UINT32 PosixPthreadDestroy(pthread_attr_t *attr, pthread_t thread)
361 {
362 UINT32 ret;
363
364 ret = pthread_join(thread, NULL);
365 ICUNIT_GOTO_EQUAL(ret, 0, ret, NOK);
366
367 ret = pthread_attr_destroy(attr);
368 ICUNIT_GOTO_EQUAL(ret, 0, ret, NOK);
369
370 return LOS_OK;
371 NOK:
372 return LOS_NOK;
373 }
374 #endif
375
TestKernelBase(VOID)376 VOID TestKernelBase(VOID)
377 {
378 #if defined(LOSCFG_TEST_KERNEL_BASE)
379 ItSuiteLosTask();
380 ItSuiteLosSwtmr();
381 ItSuiteLosMux();
382 #endif
383 }
384
TestPosixMutex(VOID)385 VOID TestPosixMutex(VOID)
386 {
387 #if defined(LOSCFG_TEST_POSIX_MUTEX)
388 ItSuitePosixMutex();
389 #endif
390 }
391
TestPosixPthread(VOID)392 VOID TestPosixPthread(VOID)
393 {
394 #if defined(LOSCFG_TEST_POSIX_PTHREAD)
395 ItSuitePosixPthread();
396 #endif
397 }
398
TestPosix(VOID)399 VOID TestPosix(VOID)
400 {
401 #if defined(LOSCFG_TEST_POSIX)
402 TestPosixMutex();
403 TestPosixPthread();
404 #endif
405 }
406
TestKernelExtendCpup(VOID)407 VOID TestKernelExtendCpup(VOID)
408 {
409 #if defined(LOSCFG_TEST_KERNEL_EXTEND_CPUP)
410 ItSuiteExtendCpup();
411 #endif
412 }
413
TestKernelExtend(VOID)414 VOID TestKernelExtend(VOID)
415 {
416 #if defined(LOSCFG_TEST_KERNEL_EXTEND)
417 TestKernelExtendCpup();
418 #endif
419 }
420
TestReset(VOID)421 VOID TestReset(VOID)
422 {
423 #if defined(TEST3559A) || defined(TEST3559A_M7) || defined(TEST3516EV200) || defined(LOSCFG_LLTREPORT) || \
424 defined(LITEOS_3RDPARTY_THTTPD_TEST) || defined(TESTISP)
425 #else
426 #ifdef LOSCFG_SHELL
427 extern VOID cmd_reset(VOID);
428 cmd_reset();
429 #endif
430 #endif
431 }
432
TestTaskEntry(VOID)433 VOID TestTaskEntry(VOID)
434 {
435 UINT32 i;
436
437 g_testCircleCount = 0;
438 dprintf("\t\n --- Test start--- \n");
439
440 #if (TEST_LESSER_MEM == 1)
441 UINT32 memusedfirst = 0x600000; // 6M for fs or 3M for kernel
442 LOS_MEM_POOL_STATUS status = { 0 };
443 LOS_MemInfoGet(OS_SYS_MEM_ADDR, &status);
444 LOS_MemAlloc(OS_SYS_MEM_ADDR, status.uwTotalFreeSize - memusedfirst);
445 #endif
446
447 for (i = 0; i < 1; i++) {
448 g_testCircleCount++;
449 ICunitInit();
450
451 TestKernelExtend();
452 TestKernelBase();
453 TestPosix();
454
455 #if (TEST_MODULE_CHECK == 1)
456 for (int i = 0; i < g_modelNum - 1; i++) {
457 if (g_executModelNum[i] != 0) {
458 dprintf("\nExecuted Model: %s, Executed Model_Num: %d ,failed_count: %d , success_count :%d",
459 g_strModule[i], g_executModelNum[i], g_failModelResult[i], g_passModelResult[i]);
460 }
461 for (int j = 0; j < g_failResult && j < 50; j++) { // 50
462 if (i == g_errorCase[j].testcase_module) {
463 LOS_Msleep(200); // 200, delay.
464 dprintf(" \n [Failed]-%s-%s-%s-%s-%s-[Errline: %d RetCode:0x%04X%04X]", g_errorCase[j].pcCaseID,
465 g_strLayer[g_errorCase[j].testcase_layer], g_strModule[g_errorCase[j].testcase_module],
466 g_strLevel[g_errorCase[j].testcase_level], g_strType[g_errorCase[j].testcase_type],
467 g_errorCase[j].errLine, (iUINT16)((g_errorCase[j].retCode) >> 16), // 16
468 (iUINT16)(g_errorCase[j].retCode));
469 }
470 }
471 }
472 dprintf("\nNot Executed Model: ");
473 for (int i = 0; i < g_modelNum - 1; i++) {
474 if (g_executModelNum[i] == 0) {
475 LOS_Msleep(40); // 40, delay.
476 dprintf("%s ", g_strModule[i]);
477 }
478 }
479 #endif
480 dprintf("\n\ntest_count: %d,failed count: %d, success count: %d\n", g_testCircleCount, g_failResult,
481 g_passResult);
482 }
483 LOS_Msleep(200); // 200, delay.
484 dprintf("\t\n --- Test End--- \n");
485 }
486
TestSystemInit(void)487 static void TestSystemInit(void)
488 {
489 TSK_INIT_PARAM_S sysTask;
490
491 (VOID)memset_s(&sysTask, sizeof(TSK_INIT_PARAM_S), 0, sizeof(TSK_INIT_PARAM_S));
492 sysTask.pfnTaskEntry = (TSK_ENTRY_FUNC)TestTaskEntry;
493 sysTask.uwStackSize = 0x3000; /* 0x3000: stack size */
494 sysTask.pcName = "TestTask";
495 sysTask.usTaskPrio = TASK_PRIO_TEST_TASK;
496 sysTask.uwResved = LOS_TASK_ATTR_JOINABLE;
497 #ifdef LOSCFG_KERNEL_SMP
498 sysTask.usCpuAffiMask = CPUID_TO_AFFI_MASK(ArchCurrCpuid());
499 #endif
500 LOS_TaskCreate(&g_testTskHandle, &sysTask);
501 }
502
503 LOS_MODULE_INIT(TestSystemInit, LOS_INIT_LEVEL_KMOD_TASK);
504
505 #ifdef __cplusplus
506 #if __cplusplus
507 }
508 #endif /* __cpluscplus */
509 #endif /* __cpluscplus */
510