platform总线实现led灯亮灭

2023-11-01 04:12

本文主要是介绍platform总线实现led灯亮灭,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

头文件

#ifndef __HEAD_H__
#define __HEAD_H__#define LED_ON _IO('l', 1)
#define LED_OFF _IO('l', 0)
#endif

应用程序代码

#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include "head.h"int main(int argc, char const *argv[])
{int fd = open("/dev/myled0", O_RDWR);if(fd < 0){printf("打开设备文件失败\n");return -1;}int a;while(1){printf("请选择开灯or关灯(0 关灯) (1 开灯)");scanf("%d", &a);switch (a){case 0:ioctl(fd, LED_OFF);break;case 1:ioctl(fd, LED_ON);break;default:break;}}return 0;
}

驱动代码

#include <linux/init.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/gpio.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/mod_devicetable.h>
#include <linux/cdev.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include "head.h"//定义变量,设备驱动对象
struct cdev *cdev;
//定义变量,主设备号,次设备号,设备号
unsigned int major = 0;
unsigned int minor = 0;
//定义变量,保存向上提交目录信息的对象指针
struct class *cls;
//定义变量,向上提交设备节点信息的对象指针
struct device *dev;
dev_t devno;
//定义变量,GOIO对象
struct gpio_desc *gpiono[3];//封装open方法
int mycdev_open(struct inode *inode, struct file *file)
{return 0;
}
//封装close方法
int mycdev_close(struct inode *inode, struct file *file)
{return 0;
}
//封装ioctl方法
long mycdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{switch(cmd){int i;case LED_ON:    for(i=0; i<3; i++){gpiod_set_value(gpiono[i], 1);}break;case LED_OFF:for(i=0; i<3; i++){gpiod_set_value(gpiono[i], 0);}break;}return 0;
}
//封装操作方法结构体
struct file_operations fop={.open = mycdev_open,.release = mycdev_close,.unlocked_ioctl = mycdev_ioctl,
};//分布注册设备驱动和创建设备文件函数声明int __register_file(void);
//封装probe函数,设备信息与驱动信息匹配成功执行
int platform_probe(struct platform_device *pdev)
{//分布注册设备驱动和创建设备文件__register_file();//解析GPIO节点解析GPIO对象int i;for(i=0; i<3; i++){gpiono[i] = gpiod_get_from_of_node(pdev->dev.of_node, "led-gpios", i, GPIOD_OUT_LOW, NULL);if(IS_ERR(gpiono[i])){printk("解析GPIO对象失败\n");return -PTR_ERR(gpiono[i]);}}return 0;
}
//分装remove函数,设备信息与驱动信息分离时执行
int platform_remove(struct platform_device *pdev)
{//释放GPIO对象int i;//销毁设备节点for(i=0; i<3; i++){gpiod_put(gpiono[i]);device_destroy(cls, MKDEV(major, i));}//销毁设备目录class_destroy(cls);//注销字符设备驱动cdev_del(cdev);//释放设备号unregister_chrdev_region(MKDEV(major, minor), 3);//释放设备驱动对象空间kfree(cdev);return 0;
}
// struct platform_driver {
// 	int (*probe)(struct platform_device *);
// 	int (*remove)(struct platform_device *);
// 	void (*shutdown)(struct platform_device *);
// 	int (*suspend)(struct platform_device *, pm_message_t state);
// 	int (*resume)(struct platform_device *);
// 	struct device_driver driver;
// 	const struct platform_device_id *id_table;
// 	bool prevent_deferred_probe;
// };
// struct of_device_id {
// 	char	name[32];
// 	char	type[32];
// 	char	compatible[128];
// 	const void *data;
// };
//构建设备树匹配表
struct of_device_id oftable[]={{.compatible = "hqyj,myplatform"},{.compatible = "hqyj,myplatform1"},
};
//分配驱动信息对象并初始化
struct platform_driver pdrv={.probe = platform_probe,.remove = platform_remove,.driver={.name = "myplatform",.of_match_table = oftable,},
};// static int __init mycdev_init(void)
// {
//     //注册驱动信息对象
//     platform_register_drivers(&pdrv);
//     return 0;
// }
// static void __exit mycdev_exit(void)
// {
//     //注销驱动信息对象
//     platform_unregister_drivers(&pdrv);// }
//一键注册宏
module_platform_driver(pdrv);
//分布注册设备驱动和创建设备文件函数声明int __register_file(void){//1.申请设备驱动对象cdev = cdev_alloc();if(NULL == cdev){printk("申请设备驱动对象失败\n");goto out1;}printk("申请设备驱动对象成功\n");//2.初始化设备驱动对象cdev_init(cdev, &fop);//3.申请设备号if(0 == major){int ret = alloc_chrdev_region(&devno, 0, 3, "mychrdev");if(ret){printk("动态申请设备号失败");goto out2;}major = MAJOR(devno);minor = MINOR(devno);printk("动态申请设备号成功\n");}else{int ret = register_chrdev_region(MKDEV(major, minor), 3, "mychrdev");if(ret){printk("静态指定设备号失败\n");goto out2;}printk("静态指定设备号成功\n");}//4.注册字符设备驱动int ret =cdev_add(cdev, MKDEV(major, minor), 3);if(ret){printk("注册字符设备驱动失败\n");goto out3;}printk("注册字符设备驱动成功\n");//5.向上提交目录cls = class_create(THIS_MODULE, "mychrdev");if(IS_ERR(cls)){printk("向上提交目录失败\n");goto out4;}printk("向上提交目录成功\n");//6.向上提交设备节点int i;for(i=0; i<3; i++){dev = device_create(cls, NULL, MKDEV(major, i), NULL, "myled%d", i);if(IS_ERR(dev)){printk("向上提交设备节点失败");goto out5;}}printk("向上提交设备节点成功\n");return 0;out5://销毁设备节点for(--i; i>=0; i++){device_destroy(cls, MKDEV(major, i));}//销毁设备目录class_destroy(cls);out4://注销字符设备驱动cdev_del(cdev);out3://释放设备号unregister_chrdev_region(MKDEV(major, minor), 3);out2://释放设备驱动对象空间kfree(cdev);out1:return -1;}
//
//module_init(mycdev_init);
//module_exit(mycdev_exit);
MODULE_LICENSE("GPL");

这篇关于platform总线实现led灯亮灭的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/320407

相关文章

Flutter实现文字镂空效果的详细步骤

《Flutter实现文字镂空效果的详细步骤》:本文主要介绍如何使用Flutter实现文字镂空效果,包括创建基础应用结构、实现自定义绘制器、构建UI界面以及实现颜色选择按钮等步骤,并详细解析了混合模... 目录引言实现原理开始实现步骤1:创建基础应用结构步骤2:创建主屏幕步骤3:实现自定义绘制器步骤4:构建U

SpringBoot中四种AOP实战应用场景及代码实现

《SpringBoot中四种AOP实战应用场景及代码实现》面向切面编程(AOP)是Spring框架的核心功能之一,它通过预编译和运行期动态代理实现程序功能的统一维护,在SpringBoot应用中,AO... 目录引言场景一:日志记录与性能监控业务需求实现方案使用示例扩展:MDC实现请求跟踪场景二:权限控制与

Android实现定时任务的几种方式汇总(附源码)

《Android实现定时任务的几种方式汇总(附源码)》在Android应用中,定时任务(ScheduledTask)的需求几乎无处不在:从定时刷新数据、定时备份、定时推送通知,到夜间静默下载、循环执行... 目录一、项目介绍1. 背景与意义二、相关基础知识与系统约束三、方案一:Handler.postDel

使用Python实现IP地址和端口状态检测与监控

《使用Python实现IP地址和端口状态检测与监控》在网络运维和服务器管理中,IP地址和端口的可用性监控是保障业务连续性的基础需求,本文将带你用Python从零打造一个高可用IP监控系统,感兴趣的小伙... 目录概述:为什么需要IP监控系统使用步骤说明1. 环境准备2. 系统部署3. 核心功能配置系统效果展

Python实现微信自动锁定工具

《Python实现微信自动锁定工具》在数字化办公时代,微信已成为职场沟通的重要工具,但临时离开时忘记锁屏可能导致敏感信息泄露,下面我们就来看看如何使用Python打造一个微信自动锁定工具吧... 目录引言:当微信隐私遇到自动化守护效果展示核心功能全景图技术亮点深度解析1. 无操作检测引擎2. 微信路径智能获

Python中pywin32 常用窗口操作的实现

《Python中pywin32常用窗口操作的实现》本文主要介绍了Python中pywin32常用窗口操作的实现,pywin32主要的作用是供Python开发者快速调用WindowsAPI的一个... 目录获取窗口句柄获取最前端窗口句柄获取指定坐标处的窗口根据窗口的完整标题匹配获取句柄根据窗口的类别匹配获取句

在 Spring Boot 中实现异常处理最佳实践

《在SpringBoot中实现异常处理最佳实践》本文介绍如何在SpringBoot中实现异常处理,涵盖核心概念、实现方法、与先前查询的集成、性能分析、常见问题和最佳实践,感兴趣的朋友一起看看吧... 目录一、Spring Boot 异常处理的背景与核心概念1.1 为什么需要异常处理?1.2 Spring B

Python位移操作和位运算的实现示例

《Python位移操作和位运算的实现示例》本文主要介绍了Python位移操作和位运算的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 位移操作1.1 左移操作 (<<)1.2 右移操作 (>>)注意事项:2. 位运算2.1

如何在 Spring Boot 中实现 FreeMarker 模板

《如何在SpringBoot中实现FreeMarker模板》FreeMarker是一种功能强大、轻量级的模板引擎,用于在Java应用中生成动态文本输出(如HTML、XML、邮件内容等),本文... 目录什么是 FreeMarker 模板?在 Spring Boot 中实现 FreeMarker 模板1. 环

Qt实现网络数据解析的方法总结

《Qt实现网络数据解析的方法总结》在Qt中解析网络数据通常涉及接收原始字节流,并将其转换为有意义的应用层数据,这篇文章为大家介绍了详细步骤和示例,感兴趣的小伙伴可以了解下... 目录1. 网络数据接收2. 缓冲区管理(处理粘包/拆包)3. 常见数据格式解析3.1 jsON解析3.2 XML解析3.3 自定义