|
楼主 |
发表于 2014-1-6 11:06:59
|
显示全部楼层
本帖最后由 @allen 于 2014-6-6 18:10 编辑
再来看一下驱动代码:
#include <linux/module.h>
#include <linux/version.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/sched.h>
#include <linux/pm.h>
#include <linux/sysctl.h>
#include <linux/proc_fs.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/irq.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#define GPH20_CFG (1 << 20)
#define GPH21_CFG (1 << 16)
volatile unsigned long *gph_cfg2 = NULL;
volatile unsigned long *gph_date = NULL;
static struct class *cls;
static int major;
/*将引脚设置为输出引脚*/
static int led_open(struct inode *inode, struct file *file)
{ /*将引脚设置为输出引脚*/
*gph_cfg2 &= ~(GPH20_CFG);
*gph_cfg2 |= GPH20_CFG;
*gph_cfg2 &= ~(GPH21_CFG);
*gph_cfg2 |= GPH21_CFG;
printk(KERN_ALERT"led openi\n");
return 0;
}
/*根据用户空间里传进来的参数点亮或者熄灭led*/
static int led_write (struct file *file, const char __user *buff, size_t count, loff_t *ppos)
{
int val;
copy_from_user(&val, buff, count);
if (val == 0){
*gpio_dat &= ~(0x3<<20); // 关 绿 蓝灯
}
else{
*gpio_dat |= (0x3<<20); // 亮 绿 蓝灯
}
return 0;
}
static struct file_operations led_fops={
/*主要的工作放在了这个地方*/
.owner = THIS_MODULE, // 这是一个宏,推向编译模块时自动创建的__this_module变量
.open = led_open, // 配置寄存器
.write = led_write, // 对寄存器写数
};
static int led_probe(struct platform_device *pdev) //匹配之后会将设备作为参数传进来的哦
{
struct resource *res;
res=platform_get_resource(pdev, IORESOURCE_MEM, 0); //获取设备里定义的内存资源
gph_cfg2 = (volatile unsigned long*)ioremap(res->start,12); //内存资源需要映射的哦
gph_date = gph_cfg2 + 2; // 0x104+0x8 , int 2 对应 0x 8
printk("led_probe, found led\n");
major=register_chrdev(0, "myled", &led_fops); //注册字符设备,那么下面肯定重点放在了file_operations结构体上了
cls = class_create(THIS_MODULE, "myled"); //创建类
class_device_create(cls, NULL, MKDEV(major, 0), NULL, "led");//类下创建设备,这样保证了udev机制可以自动创建设备文件
return 0;
}
/*与分析相一致,卸载函数放在了这里*/
static int led_remove(struct platform_device *pdev)
{
printk("led_remove, remove led\n");
iounmap(gph_cfg2);
unregister_chrdev(major, "myled"); // 卸载
device_destroy(leddrv_class,MKDEV(major,0));
class_destroy(cls);
return 0;
}
}
/*定义platform_driver 结构体*/
struct platform_driver led_drv = {
.probe = led_probe, //这里是probe函数,当总线发现有设备的名字和驱动的名字相同时会调用这个函数,所以我们的主要工作放在了这里面
.remove = led_remove, //这个函数应该是在platform_driver_unregister是调用用,因此可以将一些卸载函数放在这个地方
.driver = {
.name = "myled", //这名字要和设备相匹配的哦
}
};
static int led_drv_init(void)
{
platform_driver_register(&led_drv); //注册平台总线驱动,里面有比较重要的platform_driver 结构体
return 0;
}
static void led_drv_exit(void)
{
platform_driver_unregister(&led_drv); // 卸载平台总线驱动
}
module_init(led_drv_init);
module_exit(led_drv_exit);
MODULE_LICENSE("GPL");
|
|