6月20日作业

news/2024/11/29 18:41:14/

我实现的功能,执行一次应用程序led灯 亮,再次执行应用程序led灯灭。

内核模块:

#include <linux/init.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#include <linux/io.h>
#include <linux/wait.h>
#include <linux/device.h>
#include <linux/poll.h>
#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/gpio.h>
unsigned int major;
char kbuf[128] = {0};
struct class *cls;
struct device *dev;// 设备树
int gpiono;
struct device_node *dnode;
// 新版设备树
struct gpio_desc *gpionn;
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 *iof)
{int ret;// 向用户拷贝if (size > sizeof(kbuf))size = sizeof(kbuf);ret = copy_to_user(ubuf, kbuf, size);if (ret){printk("copy to user filed\n");return -EIO;}printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}
ssize_t mycdev_write(struct file *file, const char *ubuf, size_t size, loff_t *iof)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);int ret;// 从用户拷贝if (size > sizeof(kbuf))size = sizeof(kbuf);ret = copy_from_user(kbuf, ubuf, size);if (ret){printk("copy from user filed\n");return -EIO;}// 开灯// 新版设备树// gpiod_set_value(gpionn,1);// 取反led灯状态gpio_set_value(gpiono, !gpio_get_value(gpiono));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)
{// 字符设备驱动的注册major = register_chrdev(0, "mycdev", &fops);if (major < 0){printk("字符设备驱动注册失败\n");return major;}printk("字符设备驱动注册成功major=%d\n", major);// 向上提交目录cls = class_create(THIS_MODULE, "mycdev");if (IS_ERR(cls)){printk("向上提交目录失败\n");return -PTR_ERR(cls);}printk("向上提交目录成功\n");// 向上提交设备节点信息dev = device_create(cls, NULL, MKDEV(major, 0), NULL, "mycdev");if (IS_ERR(dev)){printk("向上提交设备节点失败\n");return -PTR_ERR(dev);}printk("向上提交设备节点成功\n");// 解析设备树节点dnode = of_find_node_by_name(NULL, "myleds");if (dnode == NULL){printk("解析设备树节点失败\n");return -1;}printk("解析设备树节点成功\n");// 根据设备树节点解析出gpio编号gpiono = of_get_named_gpio(dnode, "led1", 0);if (gpiono < 0){printk("解析设备号失败\n");return -1;}printk("解析设备号%d成功\n", gpiono);// 设置管脚为输出gpio_direction_output(gpiono, 0);// 新版设备树// 根据设备树节点解析出gpio编号并申请/*gpionn=gpiod_get_from_of_node(dnode,"led1",0,GPIOD_OUT_LOW,NULL);if(IS_ERR(gpionn)){printk("申请设备号失败\n");return -1;}*/return 0;
}
static void __exit mycdev_exit(void)
{// 灭灯gpio_set_value(gpiono, 0);// 新版设备树// gpiod_set_value(gpiono, 0);// 释放gpio编号gpio_free(gpiono);// 新版设备树// gpiod_put(gpionn);//  销毁设备节点信息device_destroy(cls, MKDEV(major, 0));// 销毁目录空间class_destroy(cls);// 字符设备驱动的注销unregister_chrdev(major, "mycdev");
}
module_init(mycdev_init);
module_exit(mycdev_exit);
MODULE_LICENSE("GPL");

应用层程序:

#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>int main(int argc, char const *argv[])
{char buf[128] = "hello  world";int fd = open("/dev/mycdev", O_RDWR);if (fd < 0){printf("设备文件打开失败\n");exit(-1);}write(fd, buf, sizeof(buf));return 0;
}

效果图:

 

 

 


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

相关文章

2012年一个屌丝程序员的学习总结:读书、户外、泡妞、习惯、母猪产后护理...

书看了不等于看懂了,无法和 @yankay 颜开大牛 http://www.yankay.com/2012年学习小结/ 或是 @吴多益-nwind 神牛http://qing.weibo.com/1644288935/6201dba733002q2u.html 比 回望2012,一无所成,才财色三空,气氛很是凝重,来来来,大家聊聊母猪的产后护理。。。 但又仔细回…

瑞幸才是真正的牛逼民族企业

【这是仙人JUMP的第5篇原创】 0 最近很多朋友让我谈谈瑞幸咖啡&#xff0c;而且字里行间都是对瑞幸咖啡的不认同和不屑&#xff0c;说什么资本游戏云云。 我觉得这种态度很有问题&#xff0c;大家都是成年人了&#xff0c;看破不说破是基础美德&#xff0c;你们的语言表达还是不…

让图像随机缩放进行数据增强_缩放和增强终于来了

让图像随机缩放进行数据增强 We all know the scene. Two detectives on a cop show stand in a dimly lit room filled with monitors, reviewing surveillance images. A tech guy (yes, it’s almost always a guy) queues up image after image as the detectives look on,…

编程语言大比拼:我眼中最佳编程语言

目录 一、Python优势的评估标准 &#xff08;一&#xff09;易用性。 &#xff08;二&#xff09;执行效率。 &#xff08;三&#xff09;语言功能特性。 &#xff08;四&#xff09;工具生态环境。 &#xff08;五&#xff09;开发者社区。 二、Python的优点 (一)易用性…

C++ web server服务器 开发

本文是牛客网Linux 高并发服务器开发视频教程的笔记 1、预备知识 1.1 Linux与远程 使用ssh在widows中控制Linux系统&#xff0c;使用vscode控制代码 使用g编译 1.1 静态库与动态库 静态库与动态库的制作、区别 1.2 makefile makefile文件操作就是指定所有源文件的编译顺序…

opencv检测二维码和条形码

文章目录 1 excel制作简单二维码2 识别二维码和条形码2.1 相关库2.2 decode解码2.3 圈出二维码的位置2.4 判断二维码是否授权 3 完整代码3.1 使用图片进行识别3.2 使用摄像头实时识别 4 总结 1 excel制作简单二维码 使用excel可以实现制作二维码&#xff0c;但只能实现做英文和…

如何使用@umijs/plugin-qiankun搭建微前端项目

umijs/plugin-qiankun是一个基于UmiJS框架的插件&#xff0c;用于实现乾坤微前端架构。乾坤微前端是一种前端架构模式&#xff0c;可以将一个大型的前端应用拆分成多个小型的子应用&#xff0c;每个子应用可以独立开发、独立部署、独立运行&#xff0c;同时可以通过乾坤框架进行…

有关Intel SGX的资料汇总

1.github上有关sgx的文章总结 GitHub - vschiavoni/sgx-papers: A list of system papers using/about Intel SGX 2.有关SGX的开源项目的总结 GitHub - Maxul/Awesome-SGX-Open-Source: Open Source Projects that helps exploit Intel SGX technology 3.Intel收集的有关SG…