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

相关文章

Spring Boot 实现 IP 限流的原理、实践与利弊解析

《SpringBoot实现IP限流的原理、实践与利弊解析》在SpringBoot中实现IP限流是一种简单而有效的方式来保障系统的稳定性和可用性,本文给大家介绍SpringBoot实现IP限... 目录一、引言二、IP 限流原理2.1 令牌桶算法2.2 漏桶算法三、使用场景3.1 防止恶意攻击3.2 控制资源

springboot下载接口限速功能实现

《springboot下载接口限速功能实现》通过Redis统计并发数动态调整每个用户带宽,核心逻辑为每秒读取并发送限定数据量,防止单用户占用过多资源,确保整体下载均衡且高效,本文给大家介绍spring... 目录 一、整体目标 二、涉及的主要类/方法✅ 三、核心流程图解(简化) 四、关键代码详解1️⃣ 设置

Nginx 配置跨域的实现及常见问题解决

《Nginx配置跨域的实现及常见问题解决》本文主要介绍了Nginx配置跨域的实现及常见问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来... 目录1. 跨域1.1 同源策略1.2 跨域资源共享(CORS)2. Nginx 配置跨域的场景2.1

Python中提取文件名扩展名的多种方法实现

《Python中提取文件名扩展名的多种方法实现》在Python编程中,经常会遇到需要从文件名中提取扩展名的场景,Python提供了多种方法来实现这一功能,不同方法适用于不同的场景和需求,包括os.pa... 目录技术背景实现步骤方法一:使用os.path.splitext方法二:使用pathlib模块方法三

CSS实现元素撑满剩余空间的五种方法

《CSS实现元素撑满剩余空间的五种方法》在日常开发中,我们经常需要让某个元素占据容器的剩余空间,本文将介绍5种不同的方法来实现这个需求,并分析各种方法的优缺点,感兴趣的朋友一起看看吧... css实现元素撑满剩余空间的5种方法 在日常开发中,我们经常需要让某个元素占据容器的剩余空间。这是一个常见的布局需求

HTML5 getUserMedia API网页录音实现指南示例小结

《HTML5getUserMediaAPI网页录音实现指南示例小结》本教程将指导你如何利用这一API,结合WebAudioAPI,实现网页录音功能,从获取音频流到处理和保存录音,整个过程将逐步... 目录1. html5 getUserMedia API简介1.1 API概念与历史1.2 功能与优势1.3

Java实现删除文件中的指定内容

《Java实现删除文件中的指定内容》在日常开发中,经常需要对文本文件进行批量处理,其中,删除文件中指定内容是最常见的需求之一,下面我们就来看看如何使用java实现删除文件中的指定内容吧... 目录1. 项目背景详细介绍2. 项目需求详细介绍2.1 功能需求2.2 非功能需求3. 相关技术详细介绍3.1 Ja

使用Python和OpenCV库实现实时颜色识别系统

《使用Python和OpenCV库实现实时颜色识别系统》:本文主要介绍使用Python和OpenCV库实现的实时颜色识别系统,这个系统能够通过摄像头捕捉视频流,并在视频中指定区域内识别主要颜色(红... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间详解

PostgreSQL中MVCC 机制的实现

《PostgreSQL中MVCC机制的实现》本文主要介绍了PostgreSQL中MVCC机制的实现,通过多版本数据存储、快照隔离和事务ID管理实现高并发读写,具有一定的参考价值,感兴趣的可以了解一下... 目录一 MVCC 基本原理python1.1 MVCC 核心概念1.2 与传统锁机制对比二 Postg

SpringBoot整合Flowable实现工作流的详细流程

《SpringBoot整合Flowable实现工作流的详细流程》Flowable是一个使用Java编写的轻量级业务流程引擎,Flowable流程引擎可用于部署BPMN2.0流程定义,创建这些流程定义的... 目录1、流程引擎介绍2、创建项目3、画流程图4、开发接口4.1 Java 类梳理4.2 查看流程图4