#include
#include
#include
//#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define DEVICE_NAME "test_driver"
#define T_MAJORS 800
//裝置結構
staticstruct_Test_Driver_Device
{
structcdev fun_cdev;
//定義緩沖
unsignedchar*buffer,*end;
//讀寫指針
unsignedchar*rp,*wp;
//讀信号量
structsemaphore sem_r;
//寫信号量
structsemaphore sem_w;
//等待隊列頭
structwait_queue_head_t *wq;
};
struct_Test_Driver_Device *Test_Driver_Device;
staticdev_t dev;
staticstructclass*test_class;
//開辟緩存,用來讀寫
#define LEN_BUF 256
staticunsignedcharBuffer[LEN_BUF];
//功能:初始化緩存
staticvoidinit_buf(void)
{
memset(Buffer,0,LEN_BUF);
}
//功能:讀取緩存
//傳回:讀取的位元組數
ssize_t test_driver_read(structfile *filp,char__user *buf,size_tcount,loff_t *f_pos)
{
inttemp1 = 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);
returncount;
}
//功能:寫入緩存
//傳回:寫入的位元組數
ssize_t test_driver_write(structfile *filp,constchar__user *buf,size_tcount,loff_t *f_pos)
{
inttemp1 = 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);
returncount;
}
staticstructfile_operations io_dev_fops = {
.owner = THIS_MODULE,
.write = test_driver_write,
.read = test_driver_read,
};
staticint__init dev_init(void)
{
intret;
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
ret = cdev_add(&Test_Driver_Device->fun_cdev,dev,1);
if(ret
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");
returnret;
}
staticvoid__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");