-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
一个小bug及解决办法,应用层程序多次调用问题 #141
Comments
方便提供一下完整的系统的设备树嘛,我加载完驱动之后没有相应设备节点 |
设备树节点和首页介绍给的例子是一样的,ko模块需要自己加载 |
可以具体说一下在哪里置为0吗? |
你发给我的邮件已收到! ——王振华
|
在应用层初始化函数里
…---原始邮件---
发件人: ***@***.***>
发送时间: 2022年11月1日(周二) 下午5:21
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [bperez77/xilinx_axidma] 一个小bug及解决办法,应用层程序多次调用问题 (Issue #141)
libaxidma.c中初始化时需要把设备的各个通道长度置为0,不然会影响下一次初始化
可以具体说一下在哪里置为0吗?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
probe_channels里rc = ioctl(dev->fd, AXIDMA_GET_NUM_DMA_CHANNELS, &num_chan); |
你好! 可以贴一下代码吗?我实在不知道该怎么设置哪个变量,谢谢! |
/* Initializes the AXI DMA device, returning a new handle to the
* axidma_device. */
struct axidma_dev *axidma_init()
{
assert(!axidma_dev.initialized);
// Open the AXI DMA device
axidma_dev.fd = open(AXIDMA_DEV_PATH, O_RDWR|O_EXCL);
if (axidma_dev.fd < 0) {
perror("Error opening AXI DMA device");
fprintf(stderr, "Expected the AXI DMA device at the path `%s`\n",
AXIDMA_DEV_PATH);
return NULL;
大概在这个地方加,在同一个程序里重复运行的话,这个全局变量会影响下次的结果,需要把它memset为0,或者把结构体里面的通道数目置0。话说回来,你遇到的是这个问题吗?
…---原始邮件---
发件人: ***@***.***>
发送时间: 2022年11月11日(周五) 下午4:12
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [bperez77/xilinx_axidma] 一个小bug及解决办法,应用层程序多次调用问题 (Issue #141)
你好! 可以贴一下代码吗?我实在不知道该怎么设置哪个变量,谢谢!
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
应该是这个问题。我的情况是,ctrl-c打断程序,再次运行程序,此时程序无法接收到外部传输给dma的数据,再打断程序,将xilinx-axidma.ko rmmod +insmod后,运行程序,就可以接收了。应该就是多次初始化的原因。 |
我遇到相同的問題 麻煩問下具體怎麽解決的 |
你发给我的邮件已收到! ——王振华
|
|
感谢答复 我其实遇到另外一个问题,我start_transfer timeout 改成interrupt 这样read就可以变成阻塞的 每次read过后我也是通过devmem的方式去读s2mm_length 去获取实际数据长度 但在这个过程中我发现了一个问题 只要我程序在ctrl +c 结束 映射到驱动中的表现也就read被中断 ,然后我再次运行程序 我的 devmem的方式去读s2mm_length 的值就会不正确 我觉得不正确的原因可能是 s2mm_length 寄存器更新的次序为 想要读的长度+实际数据长度+想要读的长度+实际数据长度。。。依次循环 但是由于我两次read 使寄存器更新次序变成了 想要读的长度+想要读的长度+实际数据长度+想要读的长度+实际数据长度。。依次循环,所以导致在程序在程序再次运行后他把我想要度的长度,当成实际的长度,而实际的长度当成了想要读的长度,不知到我分析的对不对 麻烦问下有遇到过类似的问题吗 有好的解决办法吗 |
libaxidma.c中初始化时需要把设备的各个通道长度置为0,不然会影响下一次初始化
The text was updated successfully, but these errors were encountered: