s32 edma_test(enum edma_req_id req_id, u32 size, u32 bst_width,u32 bst_len, s32 vec_flag) { s32 chan_id = -1; u32 index_size = 0; u32 addr_use1 = 0; u32 addr_use2 = 0; u32 * temp = 0; //bsp_edma_init(); if(0 == (addr1 = (u32*)cacheDmaMalloc(size+32))) { hiedmac_trace(BSP_LOG_LEVEL_DEBUG," malloc1 size=0x%x failed \n",size); return -1; } if(0 == (addr2 = (u32*)cacheDmaMalloc(size+32))) { free(addr1); hiedmac_trace(BSP_LOG_LEVEL_DEBUG," malloc2 size=0x%x failed \n",size); return -1; } printf("addr1=0x%x, addr2=0x%x \n",(u32)addr1,(u32)addr2); edma_build_data((u8*)addr1, size+32, 0x20); edma_build_data((u8*)addr2, size+32, 0x40); /*test: 让addr 1k 对齐 */ addr_use1 = (u32)addr1+4; addr_use2 = (u32)addr2+4; printf("addr_use1=0x%x, addr_use2=0x%x \n",addr_use1,addr_use2); temp = (u32*)addr_use1; for(index_size=0; index_size<(size/4);index_size++ ) { *temp++ = (u32)index_size; } chan_id = bsp_edma_channel_init(req_id,0,0,0); bsp_edma_channel_set_config(chan_id,3,bst_width,bst_len); if(1==vec_flag) { bsp_edma_channel_start(chan_id, addr_use1, addr_use2 , size ); } else { bsp_edma_channel_2vec_start(chan_id, addr_use1, addr_use2 , size,edma_align_size); } while( EDMA_CHN_BUSY == bsp_edma_channel_is_idle(chan_id) ) { printf("a"); chan_stop++; if (20==chan_stop) { bsp_edma_channel_stop( chan_id); printf("A"); } } printf("a\n"); bsp_edma_channel_free(chan_id); hiedmac_trace(BSP_LOG_LEVEL_DEBUG, "CMP after edma tranfer:%d \n",memcmp((void*)addr_use1,(void*)addr_use2,size)); hiedmac_trace(BSP_LOG_LEVEL_DEBUG, "CMP size+4 after edma :%d \n",memcmp((void*)addr_use1,(void*)addr_use2,size+4)); cacheDmaFree(addr1); cacheDmaFree(addr2); return 0; }
/* M2M sync_trans. do not need isr_func. wait for semaphore of the edma completion ---in acore or async_trans. wait untill the channel is not busy --- in c core */ s32 edmac_test_channel(enum edma_req_id req, u32 direction) { s32 ret_id = 0; u32 bur_width = 2; u32 bur_len = 3; u32 byte_len = EDMA_M2M_TEST_LENGHT; char *temp = NULL; s32 count = 0; if((NULL == src_buf) || (NULL == des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------edma test not inited \n\n"); return EDMA_FAIL; } temp = src_buf; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'a' + count%20; ++count; } src_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; temp = des_buf; count = 0; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'b' + count%20; ++count; } des_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---src_buf =%c%c%c%c%c%c%c\n", *((char*)src_buf + 0), *((char*)src_buf + 1), *((char*)src_buf + 2), *((char*)src_buf + 3), *((char*)src_buf + 4), *((char*)src_buf + 5), *((char*)src_buf + 6)); hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---des_buf =%c%c%c%c%c%c%c\n", *((char*)des_buf + 0), *((char*)des_buf + 1), *((char*)des_buf + 2), *((char*)des_buf + 3), *((char*)des_buf + 4), *((char*)des_buf + 5), *((char*)des_buf + 6)); ret_id = bsp_edma_channel_init(req, NULL, 0, 0); if (ret_id < 0) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------error ret_id = 0x%X\n\n",ret_id); return EDMA_CHANNEL_INVALID; } /* set config reg */ if (bsp_edma_channel_set_config((u32)ret_id, direction, bur_width, bur_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------bsp_edma_channel_set_config failed!\n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CONFIG_ERROR; } if (bsp_edma_channel_start((u32)ret_id, (u32)edma_src_addr, (u32)edma_des_addr , byte_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------bsp_edma_channel_start FAILED!\n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_TRXFER_ERROR; } while(0==bsp_edma_channel_is_idle((u32) ret_id)) {printf("a");} printf("\n"); bsp_edma_channel_free((u32)ret_id); if(edmac_verify_data_blk(src_buf,des_buf)) { return EDMA_TRXFER_ERROR; } hiedmac_trace(BSP_LOG_LEVEL_CRIT,"=============== EDMA_CHANNEL_START_SUCCESS !\n"); return EDMA_SUCCESS; }
/*M2M sync LLI EDMA trans . wait for the completion sem, do not need int handler */ s32 edmac_test_lli(enum edma_req_id req, u32 direction) { edma_addr_t edma_addr = 0; s32 ret_id = 0; s32 ret = 0; u32 i = 0; struct edma_cb *pstNode = NULL; struct edma_cb *psttemp = NULL; struct edma_cb *FirstNode = NULL; edma_buff_init(); /*build lli */ pstNode = (struct edma_cb *)dma_alloc_coherent(NULL,(EDMA_TEST_LLI_NUM * sizeof(struct edma_cb)), &edma_addr, GFP_DMA|__GFP_WAIT); hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---------------edma_addr = 0x%X\n",edma_addr); s_edma_alloc_address.s_alloc_virt_address = (u32)pstNode; s_edma_alloc_address.s_alloc_phys_address = (u32)edma_addr; if (NULL == pstNode) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"LLI list init is failed!\n"); edma_buff_exit(); return EDMA_MEMORY_ALLOCATE_ERROR; } FirstNode = pstNode; psttemp = pstNode; for (i = 0; i < EDMA_TEST_LLI_NUM; i++) { psttemp->lli = EDMA_SET_LLI(edma_addr + (i+1) * sizeof(struct edma_cb), ((i < EDMA_TEST_LLI_NUM - 1)?0:1)); psttemp->config = stDmaLLI[i].ulConfig; psttemp->src_addr = stDmaLLI[i].ulSourAddr;/*physical address*/ psttemp->des_addr = stDmaLLI[i].ulDestAddr;/*physical address*/ psttemp->cnt0 = stDmaLLI[i].ulLength; psttemp->bindx = 0; psttemp->cindx = 0; psttemp->cnt1 = 0; psttemp++; } hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"LII list init is success!\n"); /*request the chan_id, and init the sem*/ ret_id = bsp_edma_channel_init(req, NULL, 0, 0); if (ret_id < 0) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------error ret_id = 0x%X\n\n",ret_id); return EDMA_CHANNEL_INVALID; } /*获取首节点寄存器地址*/ psttemp = bsp_edma_channel_get_lli_addr((u32)ret_id); if (NULL == psttemp) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---bsp_edma_channel_get_lli_addr failed!\n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CHANNEL_INVALID; } hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"----------- edma_cb LLI = 0x%X!\n\n",(u32)psttemp); /*配置首节点寄存器*/ psttemp->lli = FirstNode->lli; psttemp->config = FirstNode->config & 0xFFFFFFFE; psttemp->src_addr = FirstNode->src_addr; psttemp->des_addr = FirstNode->des_addr; psttemp->cnt0 = FirstNode->cnt0; psttemp->bindx = 0; psttemp->cindx = 0; psttemp->cnt1 = 0; /* * */ cacheClear( DATA_CACHE, (void*)edma_buf_phys, (EDMA_TEST_LLI_NUM + 2) * EDMA_TEST_LLI_BLOCK_SIZE ); /*启动EDMA传输,等待传输完成信号量释放后返回*/ if (bsp_edma_channel_lli_start((u32)ret_id)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"bsp_edma_channel_lli_start FAILED!\n\n"); dma_free_coherent(NULL,(EDMA_TEST_LLI_NUM * sizeof(struct edma_cb)), (void*)s_edma_alloc_address.s_alloc_virt_address, edma_addr); edma_buff_exit(); bsp_edma_channel_free((u32)ret_id); return EDMA_TRXFER_ERROR; } taskDelay(10); while(0==bsp_edma_channel_is_idle((u32) ret_id)) {printf("a");} printf("a\n"); /* Verify the transfer data */ for( i = 0; i < EDMA_TEST_LLI_NUM; i++ ) { u8* temp_dest = pucDest + i * EDMA_TEST_LLI_BLOCK_SIZE; ret = edma_verify_data( temp_dest, EDMA_TEST_LLI_BLOCK_SIZE, (i & 0x1) ? 0x3a : 0x6 ); if( !ret ) { break; } hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"\rFirst Verify, d[0]=0x%X, d[1]=0x%X, d[2]=0x%X, d[3]=0x%X, d[4]=0x%X, d[5]=0x%X\r\n ", *((u8 *)temp_dest + 0 ), *((u8 *)temp_dest + 1 ), *((u8 *)temp_dest + 2 ), *((u8 *)temp_dest + 3 ), *((u8 *)temp_dest + 4 ), *((u8 *)temp_dest + 5 )); } /*保证传完数据以后再释放内存*/ dma_free_coherent(NULL,(EDMA_TEST_LLI_NUM * sizeof(struct edma_cb)), (void*)s_edma_alloc_address.s_alloc_virt_address, edma_addr); edma_buff_exit(); bsp_edma_channel_free((u32)ret_id); if (ret) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"bsp_edma_channel_lli_start FAILED!\n\n"); return EDMA_TRXFER_ERROR; } hiedmac_trace(BSP_LOG_LEVEL_CRIT,"=============== EDMA_LLI_START_SUCCESS!\n"); return EDMA_SUCCESS; }
/*异步链式EDMA传输,上层模块注册中断处理程序,处理EDMA传输完成事件*/ s32 edmac_test_async_lli(enum edma_req_id req, u32 direction) { edma_addr_t edma_addr = 0; s32 ret_id = 0; s32 ret = 0; u32 i = 0; struct edma_cb *pstNode = NULL; struct edma_cb *psttemp = NULL; struct edma_cb *FirstNode = NULL; edma_buff_init(); /*创建链表*/ pstNode = (struct edma_cb *)dma_alloc_coherent(NULL,(EDMA_TEST_LLI_NUM * sizeof(struct edma_cb)), &edma_addr, GFP_DMA|__GFP_WAIT); s_edma_alloc_address.s_alloc_virt_address = (u32)pstNode; s_edma_alloc_address.s_alloc_phys_address = (u32)edma_addr; if (NULL == pstNode) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"LII list init is failed!"); edma_buff_exit(); return EDMA_MEMORY_ALLOCATE_ERROR; } FirstNode = pstNode; psttemp = pstNode; for (i = 0; i < EDMA_TEST_LLI_NUM; i++) { psttemp->lli = EDMA_SET_LLI(edma_addr + (i+1) * sizeof(struct edma_cb), ((i < EDMA_TEST_LLI_NUM - 1)?0:1)); psttemp->config = stDmaLLI[i].ulConfig; psttemp->src_addr = stDmaLLI[i].ulSourAddr; psttemp->des_addr = stDmaLLI[i].ulDestAddr; psttemp->cnt0 = stDmaLLI[i].ulLength; psttemp->bindx = 0; psttemp->cindx = 0; psttemp->cnt1 = 0; psttemp++; } hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"LII list init is success!"); /*申请通道,注册通道中断回调函数*/ ret_id = bsp_edma_channel_init(req, (channel_isr)edma_isr_sema_give, 0, EDMA_INT_DONE); if (ret_id < 0) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---------ERROR ret_id = 0x%X\n\n",ret_id); return EDMA_CHANNEL_INVALID; } /*获取首节点寄存器地址*/ psttemp = bsp_edma_channel_get_lli_addr((u32)ret_id); if (NULL == psttemp) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---bsp_edma_channel_get_lli_addr FAILED !\n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CHANNEL_INVALID; } /*配置首节点寄存器*/ psttemp->lli = FirstNode->lli; psttemp->config = FirstNode->config & 0xFFFFFFFE; psttemp->src_addr = FirstNode->src_addr; /*物理地址*/ psttemp->des_addr = FirstNode->des_addr; /*物理地址*/ psttemp->cnt0 = FirstNode->cnt0; psttemp->bindx = 0; psttemp->cindx = 0; psttemp->cnt1 = 0; /* * */ cacheClear( DATA_CACHE, (void*)edma_buf_phys, (EDMA_TEST_LLI_NUM + 2) * EDMA_TEST_LLI_BLOCK_SIZE ); /*启动EDMA传输后即返回,可通过查询通道是否busy来确定传输是否完成*/ if (bsp_edma_channel_lli_async_start((u32)ret_id)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"bsp_edma_channel_lli_async_start FAILED!\n\n"); dma_free_coherent(NULL,(EDMA_TEST_LLI_NUM * sizeof(struct edma_cb)), (void*)s_edma_alloc_address.s_alloc_virt_address, edma_addr); edma_buff_exit(); bsp_edma_channel_free((u32)ret_id); return EDMA_TRXFER_ERROR; } while(0==bsp_edma_channel_is_idle((u32) ret_id)) {printf("a");} printf("\n"); /*mdelay(200);*/ bsp_edma_channel_free((u32)ret_id); /* Verify the transfer data */ for( i = 0; i < EDMA_TEST_LLI_NUM; i++ ) { u8* temp_dest = pucDest + i * EDMA_TEST_LLI_BLOCK_SIZE; ret = edma_verify_data( temp_dest, EDMA_TEST_LLI_BLOCK_SIZE, (i & 0x1) ? 0x3a : 0x6 ); if( !ret ) { break; } hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"\rFirst Verify, d[0]=0x%X, d[1]=0x%X, d[2]=0x%X, d[3]=0x%X, d[4]=0x%X, d[5]=0x%X\r\n ", *((u8 *)temp_dest + 0 ), *((u8 *)temp_dest + 1 ), *((u8 *)temp_dest + 2 ), *((u8 *)temp_dest + 3 ), *((u8 *)temp_dest + 4 ), *((u8 *)temp_dest + 5 ) ); } dma_free_coherent(NULL,(EDMA_TEST_LLI_NUM * sizeof(struct edma_cb)), (void*)s_edma_alloc_address.s_alloc_virt_address, edma_addr); edma_buff_exit(); if (ret) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"bsp_edma_channel_lli_start FAILED!\n"); return EDMA_TRXFER_ERROR; } hiedmac_trace(BSP_LOG_LEVEL_CRIT,"===============EDMA_LLI_ASYNC_START_SUCCESS!\n"); return EDMA_SUCCESS; }
/*异步EDMA传输,上层模块注册中断处理程序,处理EDMA传输完成事件*/ s32 edmac_test_channel_async_int(enum edma_req_id req, u32 direction) { s32 ret_id = 0; u32 bur_width = 2; u32 bur_len = 3; u32 byte_len = EDMA_M2M_TEST_LENGHT; char *temp = NULL; s32 count = 0; s32 isr_task_id = 0; g_edma_test_sema= semBCreate(SEM_Q_FIFO, (SEM_B_STATE)SEM_EMPTY); if(NULL==g_edma_test_sema) { hiedmac_trace(BSP_LOG_LEVEL_ERROR, "semBCreate FAILED!"); } isr_task_id=taskSpawn ("print_trans_complete", 50, 0, 20000, (FUNCPTR)data_trans_complete, 0, 0, 0, 0,0, 0, 0, 0, 0, 0); if (0==isr_task_id) { hiedmac_trace(BSP_LOG_LEVEL_ERROR, "taskSpawn FAILED! "); return EDMA_FAIL; } if ((NULL == src_buf) || (NULL == des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------edma test not inited \n\n"); return EDMA_FAIL; } temp = src_buf; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'a' + count%20; ++count; } src_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; temp = des_buf; count = 0; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'd' + count%20; ++count; } des_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---src_buf =%c%c%c%c%c%c%c\n", *((char*)src_buf + 0), *((char*)src_buf + 1), *((char*)src_buf + 2), *((char*)src_buf + 3), *((char*)src_buf + 4), *((char*)src_buf + 5), *((char*)src_buf + 6)); hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---des_buf =%c%c%c%c%c%c%c\n", *((char*)des_buf + 0), *((char*)des_buf + 1), *((char*)des_buf + 2), *((char*)des_buf + 3), *((char*)des_buf + 4), *((char*)des_buf + 5), *((char*)des_buf + 6)); ret_id= bsp_edma_channel_init(req, (channel_isr)edma_isr_sema_give, 0, EDMA_INT_DONE); /*是否要初始化中断回调函数 */ if (ret_id < 0) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------ERROR ret_id = 0x%X\n\n",ret_id); return EDMA_CHANNEL_INVALID; } /* set config reg */ if (bsp_edma_channel_set_config((u32)ret_id, direction, bur_width, bur_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---------EDMA_CHANNEL_ASYNC_TEST_FAILED! config \n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CONFIG_ERROR; } if (bsp_edma_channel_async_start((u32)ret_id, (u32)edma_src_addr, (u32)edma_des_addr, byte_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---------EDMA_CHANNEL_ASYNC_TEST_FAILED! start \n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_TRXFER_ERROR; } taskDelay(sysClkRateGet()*200/1000+1); bsp_edma_channel_free((u32)ret_id); if (edmac_verify_data_blk(src_buf,des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------EDMA_CHANNEL_ASYNC_TEST_FAILED! verify \n\n"); return EDMA_TRXFER_ERROR; } hiedmac_trace(BSP_LOG_LEVEL_CRIT,"===============EDMA_CHANNEL_ASYNC_INIT_TEST_SUCCESS!\n"); return EDMA_SUCCESS; }
/*异步EDMA传输,上层模块查询EDMA传输是否结束*/ s32 edmac_test_channel_async(enum edma_req_id req, u32 direction) { s32 ret_id = 0; u32 bur_width = 2; u32 bur_len = 3; u32 ask_is_idle_loop = 0; u32 byte_len = EDMA_M2M_TEST_LENGHT; char *temp = NULL; s32 count = 0; if ((NULL == src_buf) || (NULL == des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------edma test not inited \n\n"); return EDMA_FAIL; } temp = src_buf; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'a' + count%20; ++count; } src_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; temp = des_buf; count = 0; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'c' + count%20; ++count; } des_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---src_buf =%c%c%c%c%c%c%c\n", *((char*)src_buf + 0), *((char*)src_buf + 1), *((char*)src_buf + 2), *((char*)src_buf + 3), *((char*)src_buf + 4), *((char*)src_buf + 5), *((char*)src_buf + 6)); hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---des_buf =%c%c%c%c%c%c%c\n", *((char*)des_buf + 0), *((char*)des_buf + 1), *((char*)des_buf + 2), *((char*)des_buf + 3), *((char*)des_buf + 4), *((char*)des_buf + 5), *((char*)des_buf + 6)); ret_id = bsp_edma_channel_init(req, NULL, 0, 0); if (ret_id < 0) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------ERROE ret_id = 0x%X\n\n",ret_id); return EDMA_CHANNEL_INVALID; } /* set config reg */ if (bsp_edma_channel_set_config((u32)ret_id, direction, bur_width, bur_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------bsp_edma_channel_set_config FAILED!\n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CONFIG_ERROR; } /* ** */ cacheClear( DATA_CACHE, (void*)edma_src_addr, EDMA_M2M_TEST_LENGHT * sizeof(char*)); cacheClear( DATA_CACHE, (void*)edma_des_addr, EDMA_M2M_TEST_LENGHT * sizeof(char*)); if (bsp_edma_channel_async_start((u32)ret_id, (u32)edma_src_addr, (u32)edma_des_addr, byte_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------bsp_edma_channel_async_start FAILED!\n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CONFIG_ERROR; } while(0==bsp_edma_channel_is_idle((u32) ret_id)) {printf("a");} printf("\n"); bsp_edma_channel_free((u32)ret_id); for (;;) { hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---------------pool channel async start!"); if (!bsp_edma_channel_is_idle((u32)ret_id)) { ask_is_idle_loop++; /*ssleep(2);*/ if (ask_is_idle_loop < 0x100000) { continue; } else { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------edma_trans_complete is TIMEOUT!"); return EDMA_TRXFER_ERROR; } } else { hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"edma_trans_complete-----ask_is_idle_loop=0x%X!\n\n",ask_is_idle_loop); if (edmac_verify_data_blk(src_buf,des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------EDMA_CHANNEL_ASYNC_TEST_FAILED! verify \n\n"); return EDMA_TRXFER_ERROR; } hiedmac_trace(BSP_LOG_LEVEL_CRIT,"===============EDMA_CHANNEL_ASYNC_TEST_SUCCESS!\n"); return EDMA_SUCCESS; } } }
s32 edma_test(enum edma_req_id req_id, u32 size, u32 bst_width,u32 bst_len, s32 vec_flag, u32 edma_align_size ) { s32 chan_id = -1; s32 index = 0; u8* src_virt = 0; u8* des_virt = 0; edma_addr_t src_phy; edma_addr_t des_phy; u32 src_phy_used = 0; u32 des_phy_used = 0; u8 *temp = NULL; u32 count = 0; u32 size_plus = 32; //bsp_edma_init(); src_virt = dma_alloc_coherent(NULL, (size+size_plus), &src_phy, GFP_DMA|__GFP_WAIT); if(0==src_virt) { printk("dma_alloc_coherent ERROR, src_virt \n"); return EDMA_FAIL; } des_virt = dma_alloc_coherent(NULL, (size+size_plus), &des_phy, GFP_DMA|__GFP_WAIT); if(0==des_virt) { dma_free_coherent(NULL, (size+size_plus) , src_virt, src_phy); printk("dma_alloc_coherent ERROR, des_virt \n"); return EDMA_FAIL; } printk("src_virt=0x%x, des_virt=0x%x \n",(u32)src_virt,(u32)des_virt); printk("src_phy=0x%x, des_phy=0x%x \n",src_phy,des_phy); temp = src_virt; while (count < (size+size_plus)) { *temp++ = 'a' + count%20; ++count; } src_virt[size - 1]='\0'; temp = des_virt; count = 0; while (count < (size+size_plus)) { *temp++ = 'b' + count%20; ++count; } des_virt[size - 1]='\0'; printk("\n src_virt:"); for(index=0;index<32;index++) { printk("%c",*((char*)src_virt + index)); } printk("\n des_virt:"); for(index=0;index<32;index++) { printk("%c",*((char*)des_virt + index)); } printk("\n"); src_phy_used = (u32)src_phy+4; des_phy_used = (u32)des_phy+4; printk("addr_use1=0x%x, addr_use2=0x%x \n",src_phy_used,des_phy_used); chan_id = bsp_edma_channel_init(req_id,0,0,0); bsp_edma_channel_set_config(chan_id,3,bst_width,bst_len); if(1==vec_flag) { bsp_edma_channel_start(chan_id, src_phy_used, des_phy_used , size ); } else { bsp_edma_channel_2vec_start(chan_id, src_phy_used, des_phy_used , size, edma_align_size); } while( EDMA_CHN_BUSY == bsp_edma_channel_is_idle(chan_id) ) { printk("a"); /*bsp_edma_channel_stop(chan_id);*/ //bsp_edma_current_cnt( chan_id); } printk("a\n"); bsp_edma_channel_free(chan_id); hiedmac_trace(BSP_LOG_LEVEL_DEBUG, "CMP after edma tranfer:%d \n",memcmp((void*)(src_virt+4),(void*)(des_virt+4),size)); hiedmac_trace(BSP_LOG_LEVEL_DEBUG, "CMP size+4 after edma :%d \n",memcmp((void*)(src_virt+4),(void*)(des_virt+4),size+4)); printk("\n src_virt:"); for(index=0;index<20;index++) { printk("%c",*((char*)src_virt + index)); } printk("\n des_virt:"); for(index=0;index<20;index++) { printk("%c",*((char*)des_virt + index)); } hiedmac_trace(BSP_LOG_LEVEL_DEBUG," ---des_buf =%c%c%c%c%c%c%c\n", *((char*)des_virt + 0), *((char*)des_virt + 1), *((char*)des_virt + 2), *((char*)des_virt + 3), *((char*)des_virt + 4), *((char*)des_virt + 5), *((char*)des_virt + 6)); printk("\n"); dma_free_coherent(NULL, (size+size_plus) , src_virt, src_phy); dma_free_coherent(NULL, (size+size_plus) , des_virt, des_phy); return 0; }
/* async trans , users regist the int_handler */ s32 edmac_test_channel_async_int(enum edma_req_id req, u32 direction) { s32 ret_id = 0; u32 bur_width = 2; u32 bur_len = 3; u32 byte_len = EDMA_M2M_TEST_LENGHT; char *temp = NULL; s32 count = 0; if ((NULL == src_buf) || (NULL == des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------edma test not inited \n\n"); return EDMA_FAIL; } temp = src_buf; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'a' + count%20; ++count; } src_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; temp = des_buf; count = 0; while (count < EDMA_M2M_TEST_LENGHT) { *temp++ = 'd' + count%20; ++count; } des_buf[EDMA_M2M_TEST_LENGHT - 1]='\0'; hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---src_buf =%c%c%c%c%c%c%c\n", *((char*)src_buf + 0), *((char*)src_buf + 1), *((char*)src_buf + 2), *((char*)src_buf + 3), *((char*)src_buf + 4), *((char*)src_buf + 5), *((char*)src_buf + 6)); hiedmac_trace(BSP_LOG_LEVEL_DEBUG,"---des_buf =%c%c%c%c%c%c%c\n", *((char*)des_buf + 0), *((char*)des_buf + 1), *((char*)des_buf + 2), *((char*)des_buf + 3), *((char*)des_buf + 4), *((char*)des_buf + 5), *((char*)des_buf + 6)); ret_id= bsp_edma_channel_init(req, (channel_isr)data_trans_complete, 0, EDMA_INT_DONE); if (ret_id < 0) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"-----------ERROR ret_id = 0x%X\n\n",ret_id); return EDMA_CHANNEL_INVALID; } /* set config reg */ if (bsp_edma_channel_set_config((u32)ret_id, direction, bur_width, bur_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---------EDMA_CHANNEL_ASYNC_TEST_FAILED! config \n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_CONFIG_ERROR; } if (bsp_edma_channel_async_start((u32)ret_id, (u32)edma_src_addr, (u32)edma_des_addr, byte_len)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"---------EDMA_CHANNEL_ASYNC_TEST_FAILED! start \n\n"); bsp_edma_channel_free((u32)ret_id); return EDMA_TRXFER_ERROR; } mdelay(200); bsp_edma_channel_free((u32)ret_id); if (edmac_verify_data_blk(src_buf,des_buf)) { hiedmac_trace(BSP_LOG_LEVEL_ERROR,"----------EDMA_CHANNEL_ASYNC_TEST_FAILED! verify \n\n"); return EDMA_TRXFER_ERROR; } hiedmac_trace(BSP_LOG_LEVEL_CRIT,"===============EDMA_CHANNEL_ASYNC_INIT_TEST_SUCCESS!\n"); return EDMA_SUCCESS; }
s32 edma_stress_test_start(s32 task_priority,s32 test_rate) { s32 ret = 0; u32 index = 0; s32 chann_id = bsp_edma_channel_init(EDMA_MEMORY, 0, 0, 0); for (index=0;index<EDMA_HANDLE_NUM;index++) { g_edma_busstress_info.stDMATaskHandle[index].ulChIdx = chann_id; } logMsg("edma_stress: use axi 0x%x \n", MEM_FOR_EDMAC_BUSSTRESS,0,0,0,0,0); /* g_edma_busstress_info.stDMATaskHandle[0] = {0, 0, EDMA_TEST_LEN, chann_id}; g_edma_busstress_info.stDMATaskHandle[1] = {0, EDMA_HANDLE_1_AXI_MEM_64_DST, EDMA_TEST_LEN, chann_id}; g_edma_busstress_info.stDMATaskHandle[2] = {EDMA_HANDLE_2_AXI_MEM_64_SRC, EDMA_HANDLE_2_AXI_MEM_64_DST, EDMA_TEST_LEN, chann_id}; g_edma_busstress_info.stDMATaskHandle[3] = {EDMA_HANDLE_3_AXI_MEM_64_SRC, 0, EDMA_TEST_LEN, chann_id}; */ set_test_switch_stat(EDMAC, TEST_RUN); /*创建控制发送速率的信号量*/ /*sema_init(&(g_edma_busstress_info.edma_send_sem) , SEM_EMPTY);*/ g_edma_busstress_info.edma_send_sem = semBCreate(SEM_Q_FIFO, SEM_EMPTY); if (g_edma_busstress_info.edma_send_sem == NULL) { printf("semBCreate gmac_send_sem fail.\n"); return ERROR; } g_edma_busstress_info.edma_softtimer_list.func = ( softtimer_func )edma_timer_event; g_edma_busstress_info.edma_softtimer_list.para = 0; g_edma_busstress_info.edma_softtimer_list.timeout = test_rate; g_edma_busstress_info.edma_softtimer_list.wake_type = SOFTTIMER_NOWAKE; /*创建控制发送速率 的软timer*/ if(bsp_softtimer_create(&g_edma_busstress_info.edma_softtimer_list)) { printf("SOFTTIMER_CREATE_TIMER fail.\n"); /*sema_delete(g_edma_busstress_info.edma_send_sem);*/ semDelete(g_edma_busstress_info.edma_send_sem); return ERROR; } g_edma_busstress_info.stDMATaskHandle[0].u32SrcAddr = (u32)cacheDmaMalloc(EDMA_TEST_LEN); g_edma_busstress_info.stDMATaskHandle[0].u32DstAddr = (u32)cacheDmaMalloc(EDMA_TEST_LEN); g_edma_busstress_info.stDMATaskHandle[1].u32SrcAddr = (u32)cacheDmaMalloc(EDMA_TEST_LEN); g_edma_busstress_info.stDMATaskHandle[3].u32DstAddr = (u32)cacheDmaMalloc(EDMA_TEST_LEN); /*创建发包测试任务,收包驱动会自行做处理*/ g_edma_busstress_info.edma_stress_test_task_id \ = taskSpawn ("edmaBusTask", task_priority, 0, 20000, (FUNCPTR)edma_stress_test_routine, 0, 0, 0, 0,0, 0, 0, 0, 0, 0); if(g_edma_busstress_info.edma_stress_test_task_id == ERROR) { printf("taskSpawn edmaBusTask fail.\n"); /*sema_delete(g_edma_busstress_info.edma_send_sem);*/ semDelete(g_edma_busstress_info.edma_send_sem); ret = bsp_softtimer_free(&g_edma_busstress_info.edma_softtimer_list); } else { bsp_softtimer_add( &g_edma_busstress_info.edma_softtimer_list ); } return g_edma_busstress_info.edma_stress_test_task_id; }