本文主要是介绍Tsi721 SRIO退出程序再启动问题解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、背景介绍
项目中使用Tsi721连接加速模块进行RapidIO收发数通信。在调试过程中,用户会手动结束任务,当再次启动任务时会报以下异常信息,
此时就无法再收到加速模块发来的数据。在这种情况下,必须要重启模块才能收到数据。
2、原因分析
用户在收数时使用的是封装的接口函数库,收数流程如下:
在收数过程中会创建门铃接收任务,等待门铃中断,当用户收到退出程序时底层配置的门铃信息并未释放,导致重新启动任务后无法重新配置门铃信息。
代码段如下:
用户手动关闭程序时标记为2处dbrange_disable并没有执行,导致资源未释放,再次启动应用后标记1处再次enable报错。
3、解决办法一
通过代码能看到要执行disable必须要退出while循环,确保rcv_exit为1,可以通过先按ctrl+c释放资源后,再按ctrl+\ 退出程序,如下:
此时再次重启应用无问题。
4、解决办法二
修改驱动,打开/home/kernel-rapidio-1.1.0/rio_mport_cdev.c
修改位置如下:
将ret初始化为0。
然后重新编译驱动,在/home/ kernel-rapidio-1.1.0 下执行
Make clean
Make
Make install
执行完毕后重启模块生效。
使用提供的释放资源应用程序rio_releaseDB(位于压缩包内Debug目录下)进行资源释放。
参数为0或1,表示要释放的port号,如下:
释放资源之后,再次启动应用程序即可正常收数。
附:rio_releaseDB.c 代码
/*============================================================================Name : test_rio.cAuthor : 11Version :Copyright : Your copyright noticeDescription : Hello World in C, Ansi-style============================================================================*/#define _GNU_SOURCE
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <semaphore.h>
#include <error.h>
#include <malloc.h>
#include <netdb.h>
#include <netinet/in.h>
#include <assert.h>
#include <fcntl.h>
#include <getopt.h>
#include <stdint.h>
#include <string.h>
#include <time.h>
#include <unistd.h>#include <sys/stat.h>
#include <sys/types.h>
#include <sys/select.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <arpa/inet.h>#include "riocpplib.h"int main(int argc,char *argv[]) {int portNum=0;if(argc!=2){printf("Invalid Argument,Please Input Number 0 or 1\n");return -1;}if((atoi(argv[1])!=0) &&( atoi(argv[1])!=1) ){printf("Invalid Argument,Please Input Number 0 or 1\n");return -1;}portNum=atoi(argv[1]);int ret=0;ret=bslRioPortInit(portNum);if(ret==0){printf("INIT SRIO PORT %d DONE\n",portNum);}else{printf("INIT SRIO PORT %d FAILED\n",portNum);return -1;}ret=bslRioReleaseDoorbell(portNum);if(ret==0){printf("RELEASE SRIO PORT %d DONE\n",portNum);}else{printf("RELEASE SRIO PORT %d FAILED\n",portNum);}return EXIT_SUCCESS;
}
这篇关于Tsi721 SRIO退出程序再启动问题解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!