您的位置:首页 > 其它

GPIO驱动实例:操作LED开关

2012-09-15 20:14 711 查看
应用程序调用ioctl():
#include
#include
#include
#include

int main(int argc, char **argv)
{
int on;
int led_no;
int fd;
if (argc != 3 || sscanf(argv[1], "%d", led_no) != 1 || sscanf(argv[2],"%d", on) != 1 ||
on < 0 || on > 1 || led_no < 0 || led_no > 3) {
fprintf(stderr, "Usage: leds led_no 0|1\n");
exit(1);
}
fd = open("/dev/led", 0);
if (fd < 0) {
perror("can not open device led");
exit(1);
}
ioctl(fd, on, led_no);
close(fd);
return 0;
}


GPIO驱动部分:
[code]
#include
#include
#include
#include

#include
#include
#include
#include
#include
#include

#include
#include
#include
#include
#include
#include
#include
#include

#define DEVICE_NAME"led"
#define LED_MAJOR 233

MODULE_AUTHOR("Luofuchong");
MODULE_LICENSE("Dual BSD/GPL");
MODULE_ALIAS("led");

static unsigned long led_table [] = {
S3C2410_GPB7,
S3C2410_GPB8,
S3C2410_GPB9,
S3C2410_GPB10,
S3C2410_GPB7_OUTP,
S3C2410_GPB8_OUTP,
S3C2410_GPB9_OUTP,
S3C2410_GPB10_OUTP,
};

static int leds_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
{
switch(cmd) {
case 0:
case 1:
if (arg > 3) {
return -EINVAL;
}
s3c2410_gpio_setpin(led_table[arg],!cmd);
break;
default:
return -EINVAL;
}
return 0;
}

static struct file_operations leds_fops = {
.owner = THIS_MODULE,
.ioctl = leds_ioctl,
};

static struct class *led_class;

static int __init leds_init(void)
{
int err = 0;
int i;

if(register_chrdev(LED_MAJOR,"led",leds_fops)){
printk("led driver:Unable to register driver\n");
return -ENODEV;
}

led_class = class_create(THIS_MODULE, "led");
if(IS_ERR(led_class)){
err = PTR_ERR(led_class);
goto out_chrdev;
}
class_device_create(led_class,MKDEV(LED_MAJOR, 0),NULL,"led");

err = devfs_mk_cdev(MKDEV(LED_MAJOR,0),
S_IFCHR | S_IRUGO | S_IWUSR,"led");
if(err)
goto out_class;

for(i=0;i
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  实例 驱动 开关