petalinux中加入驱动模块

使用定制完成Linux系统后,在单板中插入sd卡,系统正常启动 。接下来要进行应用程序开发了,使用添加驱动是必须要经历的一个步骤 。本文将介绍在添加驱动的步骤,展示应用程序调用后的效果 。
准备工作
在中添加驱动前,需要完成如下工作:
中添加驱动
设置环境变量:
source /tools/Xilinx/PetaLinux/2021.1/settings.sh
进入工程目录:
cd ~/eg3c/LC
添加驱动命令
petalinux-create -t modules --name hello
运行后,生成-文件夹

petalinux中加入驱动模块

文章插图
进入-文件夹,hello.c文件就是要添加的驱动,可以根据需要修改该文件 。
重新进入工程目录,运行
petalinux-config -c rootfs
进入模块,选中hello 。
重新编译
petalinux-build
petalinux中加入驱动模块

文章插图
在工程目录中搜索hello.ko,保存该文件 。
运行应用程序
vitis下创建应用程序
【petalinux中加入驱动模块】具体工程参考博文Vitis下Linux应用程序开发流程 。
将Debug文件夹xia的.elf与之前生成的hello.ko文件通过tftp传输到单板 。
tftp设置参考vitis下调试Linux应用程序 。在编辑菜单设置虚拟机网络:
运行指令:
加载驱动,运行应用程序:
insmod hello.ko./hellow.elf