當(dāng)前位置:首頁 > 單片機(jī) > 單片機(jī)
[導(dǎo)讀]#include #include #include #include #include #include #include #include #include #include #include #include ccess.h>#include #include #include #include static struct timer_list buttons_timer;static st

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include ccess.h>
#include
#include
#include
#include


static struct timer_list buttons_timer;


static struct class *sixthdrv_class;
static DECLARE_WAIT_QUEUE_HEAD(button_waitq);
static struct fasync_struct *button_async;
//static atomic_t canopen = ATOMIC_INIT(1); //定義原子變量并初始化為1
static DECLARE_MUTEX(button_lock); //定義互斥鎖


/* 中斷事件標(biāo)志, 中斷服務(wù)程序?qū)⑺?,buttons_timer_read將它清0 */
static volatile int ev_press = 0;//等于0的話就會一直等待
static unsigned char key_val;


struct pin_desc {
unsigned int pin;
unsigned int val;
};
struct pin_desc pins [] = {
{S3C2410_GPG(0),1},
{S3C2410_GPG(3),2},
{S3C2410_GPG(5),3},
{S3C2410_GPG(6),4}
};

static struct pin_desc *irq_pd;

static irqreturn_t buttons_irq(int irq, void *dev_id)
{
/* 10ms后啟動定時器 */
/*
原理當(dāng)觸發(fā)中斷的時候,進(jìn)入此函數(shù),然后修改定時器的值10ms后
去執(zhí)行定時器指定的函數(shù),讀取鍵值
*/
irq_pd = (struct pin_desc *)dev_id;//這里為參數(shù)傳遞,因為
//buttons_timer_function里沒法得到傳入引腳值
mod_timer(&buttons_timer, jiffies+HZ/100);
return IRQ_RETVAL(IRQ_HANDLED);
}

static void buttons_timer_function(unsigned long data)
{
//printk("irqno = %dn" , irqno);
struct pin_desc *pings = irq_pd;

if (pings==NULL)
return -EFAULT;

if(s3c2410_gpio_getpin(pings->pin))//傳入pin值
{
/* 松開 */
key_val = 0x80 | pings->val;
}
else
{
/* 按下 */
key_val = pings->val;
}
ev_press = 1; /* 表示中斷發(fā)生了 */
wake_up_interruptible(&button_waitq); /* 喚醒休眠的進(jìn)程 */
/*
通過系統(tǒng)函數(shù)kill_fasync向進(jìn)程發(fā)送異步IO信號
POLL_IN表示數(shù)據(jù)可讀
*/
kill_fasync (&button_async, SIGIO, POLL_IN);
//return IRQ_RETVAL(IRQ_HANDLED);//這里是一個宏,里面是一個條件判斷,最終返回1
}

static int buttons_timer_open(struct inode *inode, struct file *file)
{//S3C2410_GPG(0)

/*
* K1,K2,K3,K4對應(yīng)GPG0,GPG3,GPG5,GPG6
*/
#if 0
if (!atomic_dec_and_test(&canopen))//自減并判斷是否為0,為0返回true,不然返回false
{
atomic_inc(&canopen);//自增
return -EBUSY;
}
#endif

if (file->f_flags & O_NONBLOCK)//以非阻塞方式打開,不成功還是返回
{

//printk(KERN_EMERG "open failedn");
//down_trylock獲取信號量不成功不會睡眠而是正常退出
if (down_trylock(&button_lock))//申請信號量,如果成功申請則返回0,不然返回非0
return -EBUSY;//不會導(dǎo)致睡眠
//return 100;
}
else
{
/* 獲取信號量 */
down(&button_lock);//如果獲取不到信號量,將進(jìn)入不可中斷的睡眠
// down_killable(&button_lock)//如果獲取不到信號量,可以殺
// down_interruptible(&button_lock)//如果獲取不到信號量,可以中斷方式喚醒
}

request_irq(IRQ_EINT8, buttons_irq, IRQ_TYPE_EDGE_BOTH, "K1", &pins[0]);
request_irq(IRQ_EINT11, buttons_irq, IRQ_TYPE_EDGE_BOTH, "K2", &pins[1]);
request_irq(IRQ_EINT13, buttons_irq, IRQ_TYPE_EDGE_BOTH, "K3", &pins[2]);
request_irq(IRQ_EINT14, buttons_irq, IRQ_TYPE_EDGE_BOTH, "K4", &pins[3]);

return 0;
}

ssize_t buttons_timer_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
{

if (size != 8)//格式控制,如果用戶程序傳過來的不是1長度,則直接返回
return -EINVAL;
if (file->f_flags & O_NONBLOCK)//非阻塞方式讀,沒有鍵值,返回,不會等待
{
if (!ev_press)
return -EAGAIN;
}
else
{
/* 如果沒有按鍵動作, 休眠 */
wait_event_interruptible(button_waitq, ev_press);
}

/* 如果沒有按鍵動作, 休眠 在此就使應(yīng)用程序休眠,直到有中斷來喚醒*/
//wait_event_interruptible(button_waitq, ev_press);//ev_press = 0時休眠
//執(zhí)行到這,說明已被喚醒,ev_press = 1,所以要清零
ev_press = 0;
copy_to_user(buf, &key_val, 1);

return 1;
}
int buttons_timer_close(struct inode *inode, struct file *file)
{
free_irq(IRQ_EINT8, &pins[0]);
free_irq(IRQ_EINT11, &pins[1]);
free_irq(IRQ_EINT13, &pins[2]);
free_irq(IRQ_EINT14, &pins[3]);
//atomic_inc(&canopen);
up(&button_lock);
return 0;
}
static unsigned buttons_timer_poll(struct file *file, poll_table *wait)
{
unsigned int mask = 0; //為0則poll_wait加入隊列后進(jìn)入休眠
poll_wait(file, &button_waitq, wait); // 先加入隊列,不會立即休眠

if (ev_press)
mask |= POLLIN | POLLRDNORM;

return mask;//返回非零直接喚醒進(jìn)程
}
static int buttons_timer_fasync (int fd, struct file *filp, int on)
{
printk("driver: buttons_timer_fasyncn");
return fasync_helper (fd, filp, on, &button_async);//此函數(shù)會初始化button_async結(jié)構(gòu)體
}


static struct file_operations buttons_timer_fops = {
.owner = THIS_MODULE, /* 這是一個宏,推向編譯模塊時自動創(chuàng)建的__this_module變量 */
.open = buttons_timer_open,
.read=buttons_timer_read,
.release = buttons_timer_close,
.poll = buttons_timer_poll,
.fasync = buttons_timer_fasync,//注冊異步處理函數(shù)
};//當(dāng)應(yīng)用程序一打開異步模式,就會調(diào)用此函數(shù)


int major;
static int buttons_timer_init(void)
{

init_timer(&buttons_timer);
buttons_timer.function = buttons_timer_function;
//buttons_timer.expires = 0;
add_timer(&buttons_timer);

major = register_chrdev(0, "buttons_timer", &buttons_timer_fops);

sixthdrv_class = class_create(THIS_MODULE, "buttons_timer");

device_create(sixthdrv_class, NULL, MKDEV(major, 0), NULL, "buttons_timer"); /* /dev/buttons */

return 0;
}

static void buttons_timer_exit(void)
{
unregister_chrdev(major, "buttons_timer");
device_destroy(sixthdrv_class,MKDEV(major, 0));
class_destroy(sixthdrv_class);

}


module_init(buttons_timer_init);

module_exit(buttons_timer_exit);

MODULE_LICENSE("GPL");

這里有一點(diǎn)需要注意,就是關(guān)于空指針的問題如:

這里定義static struct pin_desc *irq_pd;指針,但是沒給它賦值的話,雖然定時器函數(shù)中irq_pd = (struct pin_desc *)dev_id;好像賦了值,但是在struct pin_desc *pings = irq_pd;中再次使用的時候,也會有空指針問題熱報錯 所以要加入

if (pings==NULL)
return -EFAULT;


本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術(shù)解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關(guān)鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時企業(yè)卻面臨越來越多業(yè)務(wù)中斷的風(fēng)險,如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競爭力 堅持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競爭優(yōu)勢...

關(guān)鍵字: 通信 BSP 電信運(yùn)營商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術(shù)學(xué)會聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(shù)(集團(tuán))股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉