以阻塞方式对IO文件进行读取

news/2024/11/25 13:31:55/

以阻塞方式对IO文件进行读取(test.c读取,test2.c发送数据)

实验结果

执行test.c生成的pro1可执行文件,光标显示处于阻塞状态
执行test2.c生成的pro2可执行文件,test.c处打印 hello dhl
pro1

三级标题test.c

#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>int main(int argc, char const *argv[])
{char buf[128] = {0};int fd = open("/dev/myled0", O_RDWR);if (fd < 0){printf("打开设备文件失败\n");exit(-1);}while (1){memset(buf,0,sizeof(buf));//清空read(fd,buf,sizeof(buf)); 	//读取数据printf("buf:%s\n",buf);}close(fd);return 0;
}

三级标题test2.c

#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>int main(int argc, char const *argv[])
{char buf[128] = "hello dhl";int fd = open("/dev/myled0", O_RDWR);if (fd < 0){printf("打开设备文件失败\n");exit(-1);}write(fd,buf,sizeof(buf)); 	//写数据.模拟传感器获取到数据close(fd);return 0;
}

三级标题myled0.c

#include <linux/init.h>
#include <linux/module.h>
#include<linux/fs.h>
#include<linux/device.h>
#include<linux/cdev.h>
#include<linux/slab.h>
#include<linux/io.h>
#include<linux/uaccess.h>struct cdev *cdev; 		//字符设备空间首地址
unsigned int major=500; //静态申请设备号
unsigned int minor=0;//次设备号的起始值
dev_t devno; 		//动态申请设备号
struct class *cls;  //接收注册结构体的地址
struct device *dev; //设备号
char kbuf[128] = {0};  //硬件数据
//定义等待队头
wait_queue_head_t wq_head; 	//等待队列
unsigned int condition = 0; //硬件准备信号int mycdev_open(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}ssize_t mycdev_read(struct file *file, char *ubuf, size_t size, loff_t *lof)
{int ret;if(sizeof(kbuf) < size)size = sizeof(kbuf);wait_event_interruptible(wq_head, condition); //进程切换为休眠状态ret = copy_to_user(ubuf, kbuf, size);if(ret){printk("copy_to_user failed\n");return -EIO;}printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);condition = 0; //下次事件还没准备好return 0;
}
ssize_t mycdev_write(struct file *file, const char *ubuf, size_t size, loff_t *lof)
{int ret;if(sizeof(kbuf) < size)//判断用户空间的需求是否能被驱动满足,满足不了就给能给的最好的size = sizeof(kbuf);ret = copy_from_user(kbuf, ubuf, size);if(ret){printk("copy_from_user filed\n");return -EIO;}condition = 1; //表示硬件数据准备就绪wake_up_interruptible(&wq_head);    //唤醒休眠的进程return 0;
}int mycdev_close(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}// 定义操作方法结构体变量并赋值
struct file_operations fops = {.open = mycdev_open,.read = mycdev_read,.write = mycdev_write,.release = mycdev_close,
};static int __init mycdev_init(void)   //寄存器地址映射和初始化
{int ret; 				//ret返回错误码 //初始化等待队列头init_waitqueue_head(&wq_head);
/*// 映射物理地址vir_gpioe = ioremap(GPIOE, sizeof(gpio_t));if (vir_gpioe == NULL){printk("MODER寄存器映射失败\n");return -EFAULT;}vir_rcc = ioremap(RCC, 4);if (vir_rcc == NULL){printk("RCC寄存器映射失败\n");return -EFAULT;}vir_gpiof = ioremap(GPIOF, sizeof(gpio_t));if (vir_gpiof == NULL){printk("MODER寄存器映射失败\n");return -EFAULT;}printk("寄存器映射成功\n");
*///1.分配字符设备驱动对象空间  cdev_alloccdev=cdev_alloc(); 		//字符设备空间首地址if(cdev==NULL){printk("申请字符设备驱动对象空间失败\n");ret=-EFAULT;goto out1;}printk("字符设备驱动对象申请成功\n");//2.字符设备驱动对象部分初始化  cdev_initcdev_init(cdev,&fops);//3.申请设备号  register_chrdev_region/alloc_chrdev_regionif(major>0)//静态申请设备号{ret=register_chrdev_region(MKDEV(major,minor),1,"myled0"); //设备号需要是组合出来的,次设备数量,设备文件名if(ret){printk("静态指定设备号失败\n");goto out2;}}else//动态申请设备号{ret=alloc_chrdev_region(&devno,minor,1,"myled0");   //动态申请设备号,次设备号,设备数量,文件名if(ret){printk("动态申请设备号失败\n");goto out2;}major=MAJOR(devno); 	//根据设备号得到主设备号minor=MINOR(devno); 	//根据设备号得到次设备号}printk("申请设备号成功\n");//4.注册字符设备驱动对象  cdev_add()ret=cdev_add(cdev,MKDEV(major,minor),1); //字符设备,设备号,设备数量if(ret){printk("注册字符设备驱动对象失败\n");goto out3;}printk("注册字符设备驱动对象成功\n");//5.向上提交目录cls=class_create(THIS_MODULE,"myled0"); //指向自身的指针,文件名if(IS_ERR(cls)){printk("向上提交目录失败\n");ret=-PTR_ERR(cls);goto out4;}printk("向上提交目录成功\n");//6.向上提交设备节点dev=device_create(cls,NULL,MKDEV(major,0),NULL,"myled0"); //创建设备节点if(IS_ERR(dev)){printk("向上提交节点信息失败\n");ret=-PTR_ERR(dev);goto out5;}printk("向上提交设备节点信息成功\n");
/*(*vir_rcc) |= (0x3 << 4);// 寄存器初始化led1vir_gpioe->moder &= (~(0x3 << 20));vir_gpioe->moder |= (0x1 << 20);vir_gpioe->odr &= (~(0x1 << 10));printk("LED1硬件寄存器初始化成功\n");*/return 0;out5://销毁上面提交的设备信息device_destroy(cls,MKDEV(major,0));class_destroy(cls);
out4:cdev_del(cdev);
out3:unregister_chrdev_region(MKDEV(major,minor),1);
out2:kfree(cdev);
out1:return ret;
}
static void __exit mycdev_exit(void)
{//1.销毁设备信息  device_destroydevice_destroy(cls,MKDEV(major,0));//2.销毁目录  class_destroyclass_destroy(cls);//3.注销对象  cdev_del()cdev_del(cdev);//4.释放设备号   unregister_chrdev_region()unregister_chrdev_region(MKDEV(major,minor),1);//5.释放对象空间  kfree()kfree(cdev);
/*// 取消寄存器地址映射iounmap(vir_gpioe);iounmap(vir_rcc);iounmap(vir_gpiof);// 销毁设备节点信息device_destroy(cls, MKDEV(major, 0));// 销毁字符设备驱动class_destroy(cls);// 字符设备驱动的注销unregister_chrdev(major, "led0");
*/
}
module_init(mycdev_init);
module_exit(mycdev_exit);
MODULE_LICENSE("GPL");

http://www.ppmy.cn/news/790775.html

相关文章

十三亿人都能看懂的导航栏吸顶+tab

设计思路 要想出现滚动效果,就需要让里面的内容高度大于外面内容的高度\ <body> <div class"box"> <div class"top"> <img src"../img/ad.jpg" alt""> </div> <…

不破不立~EDG夺冠,用Python分析词云图展示粉丝弹幕数据,来感受粉丝的热情吧

大家好~我是恰恰&#xff0c;好久不见啦~Python的乐趣就在于在互联网时代&#xff0c;能实现很多人工做不到的事~ 虽然我不是经常玩游戏&#xff0c;但是我这该死的爱国情怀&#xff0c;在EDG夺冠的时候&#xff0c;我也是十分激动的&#xff01; 北京时间11月6日&#xff0…

iMeta | 南昌大学丁霞等-水产养殖系统对中华鳖微生物组和肠道代谢组的影响

点击蓝字 关注我们 水产养殖模式对水产动物皮肤、口腔和肠道微生物群落组装及宿主适应性的影响 https://doi.org/10.1002/imt2.17 4.5 iMeta RESEARCH ARTICLE ● 2022年4月5日&#xff0c;南昌大学丁霞等在iMeta在线发表题为“The impact of aquaculture system on the microb…

lol服务器位置地图,LOL老玩家一定能看懂的地图 每一个地点都充满回忆

英雄联盟赛事发展至今&#xff0c;已经从最初的小打小闹&#xff0c;发展到现如今的全球性的大型盛会。而每年的比赛上都会留下令人津津乐道的招牌操作&#xff0c;这些操作或搞笑或惊艳。 而近日&#xff0c;就有一位能人就将这些最经典的操作用梗的形融合在了召唤师峡谷地图上…

AndroidStudio一键国际化方案

预研 国际化对于只做国内市场的小伙伴来说基本没有太多感觉&#xff0c;但是对于做国外市场特别是谷歌市场的朋友来说却是需要重视的一个知识点。因为海外市场面对的全球的客户&#xff0c;而如果人工翻译势必很费时费力而且低效&#xff0c;这时候我们需要程序化来实现这个体…

世界各国浏览器语言代码本地化对照表

阿尔巴尼亚语 [sq] 阿尔巴尼亚语(阿尔巴尼亚) [sq-AL] 阿尔萨斯语 [gsw] 阿尔萨斯语(法国) [gsw-FR] 阿拉伯语 [ar] 阿拉伯语(阿尔及利亚) [ar-DZ] 阿拉伯语(阿联酋) [ar-AE] 阿拉伯语(阿曼) [ar-OM] 阿拉伯语(埃及) [ar-EG] 阿拉伯语(巴林) [ar-BH] 阿拉伯语(卡塔尔) [ar-QA…

元宇宙新形态 NFT赋能万物

7月12日,第三界世界文化产业论坛上&#xff0c;代表韩国流行风尚前沿的SM公司董事长李秀满&#xff0c;就元宇宙与文化内容产业新远景发表演说。他说到&#xff1a;“作为未来娱乐世界的核心价值和蓝图所创造的SM元宇宙“SMCU”&#xff0c;是公司长久的企划&#xff0c;SMCU将…

基于sklearn随机森林算法探究肥胖的成因

目录 项目背景 数据介绍 数据来源 属性介绍 算法介绍 随机森林算法 决策树 随机森林定义 随机森林构建过程 随机森林算法评价 随机森林算法的发展现状及趋势 实验步骤 1.导入模块与数据 2.查看数据 3.数据预处理 4.可视化分析 5.特征工程 6.构建模型 实验总…