91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux驅動poll機制簡要介紹是什么

發布時間:2021-10-22 10:35:23 來源:億速云 閱讀:169 作者:柒染 欄目:互聯網科技

本篇文章給大家分享的是有關linux驅動poll機制簡要介紹是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/irq.h>
#include <asm/uaccess.h>
#include <asm/irq.h>
#include <asm/io.h>
#include <asm/arch/regs-gpio.h>
#include <asm/hardware.h>
#include <linux/poll.h>


static struct class *forthdrv_class;
static struct class_device	*forthdrv_class_dev;

volatile unsigned long *gpfcon;
volatile unsigned long *gpfdat;

volatile unsigned long *gpgcon;
volatile unsigned long *gpgdat;


static DECLARE_WAIT_QUEUE_HEAD(button_waitq);

/* 中斷事件標志, 中斷服務程序將它置1,forth_drv_read將它清0 */
static volatile int ev_press = 0;


struct pin_desc{
	unsigned int pin;
	unsigned int key_val;
};


/* 鍵值: 按下時, 0x01, 0x02, 0x03, 0x04 */
/* 鍵值: 松開時, 0x81, 0x82, 0x83, 0x84 */
static unsigned char key_val;

struct pin_desc pins_desc[4] = {
	{S3C2410_GPF0, 0x01},
	{S3C2410_GPF2, 0x02},
	{S3C2410_GPG3, 0x03},
	{S3C2410_GPG11, 0x04},
};


/*
  * 確定按鍵值
  */
static irqreturn_t buttons_irq(int irq, void *dev_id)
{
	struct pin_desc * pindesc = (struct pin_desc *)dev_id;
	unsigned int pinval;
	//這里怎么知道是哪個引腳觸發的中斷? 這里并不判斷是哪個按鍵產生的中斷, 如果要獲取當前的中斷號可以打印 irq 參數來查看
	pinval = s3c2410_gpio_getpin(pindesc->pin);//該函數返回GPxDAT的值, 如GPF9則返回 0X100(剩余位被mask), 而不是 1

	if (pinval)
	{
		/* 松開 */
		key_val = 0x80 | pindesc->key_val;
	}
	else
	{
		/* 按下 */
		key_val = pindesc->key_val;
	}

    ev_press = 1;                  			/* 表示中斷發生了 */
    wake_up_interruptible(&button_waitq);   /* 喚醒休眠的進程 */
	
	return IRQ_RETVAL(IRQ_HANDLED);
}

static int forth_drv_open(struct inode *inode, struct file *file)
{
	/* 配置GPF0,2為輸入引腳 */
	/* 配置GPG3,11為輸入引腳 */
	request_irq(IRQ_EINT0,  buttons_irq, IRQT_BOTHEDGE, "S2", &pins_desc[0]);
	request_irq(IRQ_EINT2,  buttons_irq, IRQT_BOTHEDGE, "S3", &pins_desc[1]);
	request_irq(IRQ_EINT11, buttons_irq, IRQT_BOTHEDGE, "S4", &pins_desc[2]);
	request_irq(IRQ_EINT19, buttons_irq, IRQT_BOTHEDGE, "S5", &pins_desc[3]);	

	return 0;
}

ssize_t forth_drv_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
{
	if (size != 1)
		return -EINVAL;

	/* 如果沒有按鍵動作, 休眠 */
	wait_event_interruptible(button_waitq, ev_press);

	/* 如果有按鍵動作, 返回鍵值 */
	copy_to_user(buf, &key_val, 1);
	ev_press = 0;
	
	return 1;
}


int forth_drv_close(struct inode *inode, struct file *file)
{
	free_irq(IRQ_EINT0, &pins_desc[0]);
	free_irq(IRQ_EINT2, &pins_desc[1]);
	free_irq(IRQ_EINT11, &pins_desc[2]);
	free_irq(IRQ_EINT19, &pins_desc[3]);
	return 0;
}

static unsigned forth_drv_poll(struct file *file, poll_table *wait)
{
	unsigned int mask = 0;
	poll_wait(file, &button_waitq, wait); // 不會立即休眠

	if (ev_press)
		mask |= POLLIN | POLLRDNORM;

	return mask;
}



static struct file_operations sencod_drv_fops = {
    .owner   =  THIS_MODULE,    /* 這是一個宏,推向編譯模塊時自動創建的__this_module變量 */
    .open    =  forth_drv_open,     
	.read	 =	forth_drv_read,	   
	.release =  forth_drv_close,
	.poll    =  forth_drv_poll,
};


int major;
static int forth_drv_init(void)
{
	major = register_chrdev(0, "forth_drv", &sencod_drv_fops);

	forthdrv_class = class_create(THIS_MODULE, "forth_drv");

	forthdrv_class_dev = class_device_create(forthdrv_class, NULL, MKDEV(major, 0), NULL, "buttons"); /* /dev/buttons */

	gpfcon = (volatile unsigned long *)ioremap(0x56000050, 16);
	gpfdat = gpfcon + 1;

	gpgcon = (volatile unsigned long *)ioremap(0x56000060, 16);
	gpgdat = gpgcon + 1;

	return 0;
}

static void forth_drv_exit(void)
{
	unregister_chrdev(major, "forth_drv");
	class_device_unregister(forthdrv_class_dev);
	class_destroy(forthdrv_class);
	iounmap(gpfcon);
	iounmap(gpgcon);
	return 0;
}


module_init(forth_drv_init);

module_exit(forth_drv_exit);

MODULE_LICENSE("GPL");

/*
poll 執行的步驟 : 
poll 分析:
應用程序:
poll 
	sys_poll
		do_sys_poll
			poll_initwait(&table)
				init_poll_funcptr(&pwq->pt, __pollwait) >> table->pt->qproc = __pollwait;    
				據說 xxx_fops->xxx_drv_poll 調中的 poll_wait 最后調用的就是 __pollwait 函數, 怎么看出來的?
			do_poll(nfds, head, &table, timeout)
				//遍歷傳入的所有描述符
				for (;;)
				{
					//mask = file->f_op->poll(file, pwait);  這里的poll就是驅動里的 xxx_drv_poll(struct file *file, poll_table *wait), mask就是驅動中的返回值
					if (do_pollfd(pfd, pt)) {
						count++;
						pt = NULL;
					}
					//如果驅動就緒返回非0值, 則跳出循環
					if (count || !*timeout || signal_pending(current)) 
	                       break; 	
	                //如果未就緒或者且時間未到則休眠
					schedule_timeout(__timeout);
				}
例程執行過程:
調用poll 1. 先注冊 __pollwait 就是xxx_drv_poll 中 poll_wait 函數最終調用的內容 2. 然后調用  do_poll, 遍歷傳入的描述符, do_pollfd就是調用
xxx_drv_poll, 它將本進程添加到驅動設置的等待隊列中, 根據返回值來判斷是否可以跳出do_poll循環, 如果沒有就緒且沒有超時則該進程睡眠. 
如果發生中斷,在中斷中要設置中斷標志并喚醒睡眠的進程. 喚醒之后仍舊從do_poll的死循環開始執行, 再次執行了驅動中的 xxx_drv_poll, 
而這時已經可讀則順利返回非0 mask值.  如果是超時則執行xxx_drv_poll仍舊無有效mask值, 可以但可以直接跳出do_poll循環, 應用程序根據不同的mask值做處理

*/

以上就是linux驅動poll機制簡要介紹是什么,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家界市| 永仁县| 周宁县| 建瓯市| 含山县| 阳曲县| 山西省| 安塞县| 齐齐哈尔市| 陆丰市| 大同县| 平昌县| 涿鹿县| 莆田市| 商洛市| 中卫市| 蚌埠市| 蒙阴县| 大方县| 天柱县| 德江县| 永州市| 阳朔县| 鹤峰县| 开封县| 当阳市| 曲水县| 平乐县| 阜宁县| 任丘市| 清新县| 灵璧县| 子洲县| 石门县| 翼城县| 苍溪县| 固镇县| 嵩明县| 扬中市| 宁南县| 高碑店市|