我是靠谱客的博主 痴情火,最近开发中收集的这篇文章主要介绍linux编写gpio驱动程序,linux driver ------ GPIO的驱动编写和调用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

判断哪些文件被编译进内核:

1、通过 make menuconfig 查看

2、比如查看gpio类型的文件,输入 ls drivers/gpio/*.o,有生成.o文件表示被编译进内核

在编写驱动程序之前要保证该GPIO口没有被其他程序占用,若被占用则需要取消编译那个驱动程序。

/arch/arm/mach-exynos/include/mach/gpio-exynos4.h

/drivers/gpio/gpio-exynos4.c

#include

#include

/*驱动注册的头文件,包含驱动的结构体和注册和卸载的函数*/

#include

/*注册杂项设备头文件*/

#include

/*注册设备节点的文件结构体*/

#include

/*Linux中申请GPIO的头文件*/

#include

/*三星平台的GPIO配置函数头文件*/

/*三星平台EXYNOS系列平台,GPIO配置参数宏定义头文件*/

#include

#include

/*三星平台4412平台,GPIO宏定义头文件*/

#include

#define DRIVER_NAME "hello_ctl"

#define DEVICE_NAME "hello_ctl"

MODULE_LICENSE("Dual BSD/GPL");

MODULE_AUTHOR("TOPEET");

static long hello_ioctl( struct file *files, unsigned int cmd, unsigned long arg){

printk("cmd is %d,arg is %dn",cmd,arg);

if(cmd > ){

printk(KERN_EMERG "cmd is 0 or 1n");

}

if(arg > ){

printk(KERN_EMERG "arg is only 1n");

}

gpio_set_value(EXYNOS4_GPL2(),cmd);

return ;

}

static int hello_release(struct inode *inode, struct file *file){

printk(KERN_EMERG "hello releasen");

return ;

}

static int hello_open(struct inode *inode, struct file *file){

printk(KERN_EMERG "hello openn");

return ;

}

static struct file_operations hello_ops = {

.owner = THIS_MODULE,

.open = hello_open,

.release = hello_release,

.unlocked_ioctl = hello_ioctl,

};

static struct miscdevice hello_dev = {

.minor = MISC_DYNAMIC_MINOR,

.name = DEVICE_NAME,

.fops = &hello_ops,

};

static int hello_probe(struct platform_device *pdv){

int ret;

printk(KERN_EMERG "tinitializedn");

ret = gpio_request(EXYNOS4_GPL2(),"LEDS");

if(ret < ){

printk(KERN_EMERG "gpio_request EXYNOS4_GPL2(0) failed!n");

return ret;

}

s3c_gpio_cfgpin(EXYNOS4_GPL2(),S3C_GPIO_OUTPUT);

gpio_set_value(EXYNOS4_GPL2(),);

misc_register(&hello_dev);

return ;

}

static int hello_remove(struct platform_device *pdv){

printk(KERN_EMERG "tremoven");

misc_deregister(&hello_dev);

return ;

}

static void hello_shutdown(struct platform_device *pdv){

;

}

static int hello_suspend(struct platform_device *pdv,pm_message_t pmt){

return ;

}

static int hello_resume(struct platform_device *pdv){

return ;

}

struct platform_driver hello_driver = {

.probe = hello_probe,

.remove = hello_remove,

.shutdown = hello_shutdown,

.suspend = hello_suspend,

.resume = hello_resume,

.driver = {

.name = DRIVER_NAME,

.owner = THIS_MODULE,

}

};

static int hello_init(void)

{

int DriverState;

printk(KERN_EMERG "HELLO WORLD enter!n");

DriverState = platform_driver_register(&hello_driver);

printk(KERN_EMERG "tDriverState is %dn",DriverState);

return ;

}

static void hello_exit(void)

{

printk(KERN_EMERG "HELLO WORLD exit!n");

platform_driver_unregister(&hello_driver);

}

module_init(hello_init);

module_exit(hello_exit);

linux driver ------ 字符设备驱动 之 &OpenCurlyDoubleQuote; 创建设备节点流程 ”

在字符设备驱动开发的入门教程中,最常见的就是用device_create()函数来创建设备节点了,但是在之后阅读内核源码的过程中却很少见device_create()的踪影了,取而代之的是device ...

linux driver error ------ 编译驱动出现 ERROR&colon; Kernel configuration is invalid

ERROR: Kernel configuration is invalid.         include/generated/autoconf.h or include/config/au ...

树莓派GPIO口驱动编写

一.wiringpi写法 #include #include int main(int argc,char *argv[]) { ...

如何编写linux下nand flash驱动-4

2.       软件方面 如果想要在Linux下编写Nand Flash驱动,那么就先要搞清楚Linux下,关于此部分的整个框架.弄明白,系统是如何管理你的nand flash的,以及,系统都帮你做 ...

nand flash详解及驱动编写

https://www.crifan.com/files/doc/docbook/linux_nand_driver/release/html/linux_nand_driver.html#nand_ ...

Linux驱动:I2C驱动编写要点

继续上一篇博文没讲完的内容“针对 RepStart 型i2c设备的驱动模型”,其中涉及的内容有:i2c_client 的注册.i2c_driver 的注册.驱动程序的编写. 一.i2c 设备的注册分析 ...

ARM Linux驱动篇 学习温度传感器ds18b20的驱动编写过程

最后

以上就是痴情火为你收集整理的linux编写gpio驱动程序,linux driver ------ GPIO的驱动编写和调用的全部内容,希望文章能够帮你解决linux编写gpio驱动程序,linux driver ------ GPIO的驱动编写和调用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部