環境:
主機:Fedora 12
目標板:MINI6410
目標板LINUX內核版本:2.6.38
實現功能:
開辟一個256字節的循環緩沖,可以同時讀寫,如果數據量不足,則讀進程會被阻塞,直到有數據寫入
驅動源代碼:
test_driver.c:
[cpp]
- #include <linux/miscdevice.h>
- #include <linux/delay.h>
- #include <asm/irq.h>
- //#include <mach/regs-gpio.h>
- #include <mach/hardware.h>
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/mm.h>
- #include <linux/fs.h>
- #include <linux/types.h>
- #include <linux/delay.h>
- #include <linux/moduleparam.h>
- #include <linux/slab.h>
- #include <linux/errno.h>
- #include <linux/ioctl.h>
- #include <linux/cdev.h>
- #include <linux/string.h>
- #include <linux/list.h>
- #include <linux/pci.h>
- #include <asm/uaccess.h>
- #include <asm/atomic.h>
- #include <asm/unistd.h>
- #include <linux/major.h>
-
- #include <mach/map.h>
- #include <mach/regs-clock.h>
- #include <mach/regs-gpio.h>
-
- #include <plat/gpio-cfg.h>
- #include <mach/gpio-bank-e.h>
- #include <mach/gpio-bank-k.h>
- #include <mach/gpio-bank-h.h>
- #include <mach/gpio-bank-n.h>
- #include <mach/gpio-bank-l.h>
- #include <mach/gpio-bank-p.h>
-
- #include <linux/device.h>
-
- #include <linux/jiffies.h>
- #include <linux/string.h>
-
- #include <linux/semaphore.h>
- #include <linux/sched.h>
- #include <linux/wait.h>
-
- #define DEVICE_NAME "test_driver"
- #define T_MAJORS 800
-
- //設備結構
- static struct _Test_Driver_Device
- {
- struct cdev fun_cdev;
- //定義緩沖
- unsigned char *buffer,*end;
- //讀寫指針
- unsigned char *rp,*wp;
- //讀信號量
- struct semaphore sem_r;
- //寫信號量
- struct semaphore sem_w;
- //等待隊列頭
- struct wait_queue_head_t *wq;
- };
- struct _Test_Driver_Device *Test_Driver_Device;
-
- static dev_t dev;
- static struct class *test_class;
-
- //開辟緩存,用來讀寫
- #define LEN_BUF 256
- static unsigned char Buffer[LEN_BUF];
-
- //功能:初始化緩存
- static void init_buf(void)
- {
- memset(Buffer,0,LEN_BUF);
- }
-
- //功能:讀取緩存
- //返回:讀取的字節數
- ssize_t test_driver_read(struct file *filp,char __user *buf,size_t count,loff_t *f_pos)
- {
- int temp1 = 0,temp2 = 0,temp3 = 0;
-
- //獲取信號量
- if (down_interruptible(&Test_Driver_Device->sem_r))
- {
- return -ERESTARTSYS;
- }
-
- //循環防止解除阻塞時的競爭
- while (Test_Driver_Device->wp == Test_Driver_Device->rp)
- {
- //讀不到數據
- //釋放信號量
- up(&Test_Driver_Device->sem_r);
-
- //判斷是否是非阻塞讀
- if (filp->f_flags & O_NONBLOCK)
- {
- return -EAGAIN;
- }
-
- //如果是阻塞式讀,則阻塞
- if (wait_event_interruptible(Test_Driver_Device->wq,Test_Driver_Device->wp != Test_Driver_Device->rp))
- {
- return -ERESTARTSYS;
- }
-
- //獲取信號量
- if (down_interruptible(&Test_Driver_Device->sem_r))
- {
- return -ERESTARTSYS;
- }
- }
-
- if (Test_Driver_Device->wp > Test_Driver_Device->rp)
- {
- count = min(count,(size_t)(Test_Driver_Device->wp - Test_Driver_Device->rp));
- //拷貝數據到用戶空間
- if (copy_to_user(buf,Test_Driver_Device->rp,count))
- {
- return -EFAULT;
- }
- Test_Driver_Device->rp += count;
- }
- else
- {
- temp1 = Test_Driver_Device->end - Test_Driver_Device->rp + 1;
- temp2 = Test_Driver_Device->wp - Test_Driver_Device->buffer;
- if (count <= temp1)
- {
- //拷貝數據到用戶空間
- if (copy_to_user(buf,Test_Driver_Device->rp,count))
- {
- return -EFAULT;
- }
- Test_Driver_Device->rp += count;
- }
- else
- {
- //拷貝數據到用戶空間
- if (copy_to_user(buf,Test_Driver_Device->rp,temp1))
- {
- return -EFAULT;
- }
- Test_Driver_Device->rp = Test_Driver_Device->buffer;
- temp3 = min(count - temp1,temp2);
- count = temp1 + temp3;
- if (copy_to_user(buf + temp1,Test_Driver_Device->rp,temp3))
- {
- return -EFAULT;
- }
- Test_Driver_Device->rp += temp3;
- }
- }
-
- if (Test_Driver_Device->rp == Test_Driver_Device->end + 1)
- {
- Test_Driver_Device->rp = Test_Driver_Device->buffer;
- }
- //釋放信號量
- up(&Test_Driver_Device->sem_r);
- printk (DEVICE_NAME"\tjdh:rp zhi zhen = %d\n",Test_Driver_Device->rp - Test_Driver_Device->buffer);
-
- return count;
- }
-
- //功能:寫入緩存
- //返回:寫入的字節數
- ssize_t test_driver_write(struct file *filp,const char __user *buf,size_t count,loff_t *f_pos)
- {
- int temp1 = 0,temp2 = 0;;
-
- //判斷需要寫入的字節數是否大於緩存
- if (count > LEN_BUF)
- {
- return -ENOMEM;
- }
-
- //獲取信號量
- if (down_interruptible(&Test_Driver_Device->sem_w))
- {
- return -ERESTARTSYS;
- }
-
- //寫入緩存
- if (count <= (Test_Driver_Device->end - Test_Driver_Device->wp + 1))
- {
- //從用戶空間拷貝數據
- if (copy_from_user(Test_Driver_Device->wp,buf,count))
- {
- return -EFAULT;
- }
- Test_Driver_Device->wp += count;
- }
- else
- {
- temp1 = Test_Driver_Device->end - Test_Driver_Device->wp + 1;
- temp2 = count - temp1;
- //從用戶空間拷貝數據
- if (copy_from_user(Test_Driver_Device->wp,buf,temp1))
- {
- return -EFAULT;
- }
- Test_Driver_Device->wp = Test_Driver_Device->buffer;
- //從用戶空間拷貝數據
- if (copy_from_user(Test_Driver_Device->wp,buf + temp1,temp2))
- {
- return -EFAULT;
- }
- Test_Driver_Device->wp += temp2;
- }
-
- if (Test_Driver_Device->wp == Test_Driver_Device->end + 1)
- {
- Test_Driver_Device->wp = Test_Driver_Device->buffer;
- }
- //喚醒阻塞進程
- wake_up_interruptible(&Test_Driver_Device->wq);
- //釋放信號量
- up(&Test_Driver_Device->sem_w);
- printk (DEVICE_NAME"\tjdh:wp zhi zhen = %d\n",Test_Driver_Device->wp - Test_Driver_Device->buffer);
-
- return count;
- }
-
- static struct file_operations io_dev_fops = {
- .owner = THIS_MODULE,
- .write = test_driver_write,
- .read = test_driver_read,
- };
-
- static int __init dev_init(void)
- {
- int ret;
- unsigned temp;
-
- init_buf();
-
- //分配結構體
- Test_Driver_Device = kmalloc(sizeof(struct _Test_Driver_Device),GFP_KERNEL);
- if (!Test_Driver_Device)
- {
- unregister_chrdev_region(dev,1);
- device_destroy(test_class, dev);
- class_destroy(test_class);
-
- return -ENOMEM;
- }
-
- //定義緩沖的開始和結束的指針
- Test_Driver_Device->buffer = Buffer;
- Test_Driver_Device->end = Buffer + LEN_BUF - 1;
- Test_Driver_Device->rp = Test_Driver_Device->buffer;
- Test_Driver_Device->wp = Test_Driver_Device->buffer;
- //初始化讀信號量
- sema_init(&Test_Driver_Device->sem_r,1);
- //初始化寫信號量
- sema_init(&Test_Driver_Device->sem_w,1);
- //初始化等待隊列頭
- init_waitqueue_head(&Test_Driver_Device->wq);
-
- dev = MKDEV(T_MAJORS,0);
- cdev_init(&Test_Driver_Device->fun_cdev,&io_dev_fops);
- ret = register_chrdev_region(dev,1,DEVICE_NAME);
- if (ret < 0) return 0;
- ret = cdev_add(&Test_Driver_Device->fun_cdev,dev,1);
- if (ret < 0) return 0;
-
- printk (DEVICE_NAME"\tjdh:test_driver initialized!!\n");
-
- test_class = class_create(THIS_MODULE, "test_class1");
- if (IS_ERR(test_class))
- {
- printk(KERN_INFO "create class error\n");
- return -1;
- }
- device_create(test_class, NULL, dev, NULL, "test_driver");
-
- return ret;
- }
-
- static void __exit dev_exit(void)
- {
- unregister_chrdev_region(dev,1);
-
- device_destroy(test_class, dev);
- class_destroy(test_class);
- }
-
- module_init(dev_init);
- module_exit(dev_exit);
- MODULE_LICENSE("GPL");
- MODULE_AUTHOR("JDH");