Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
468792eb
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
468792eb
编写于
11月 30, 2011
作者:
D
Dmitry Torokhov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Input: migor-ts - convert to a threaded IRQ
Signed-off-by:
N
Dmitry Torokhov
<
dtor@mail.ru
>
上级
e23ed600
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
41 deletion
+24
-41
drivers/input/touchscreen/migor_ts.c
drivers/input/touchscreen/migor_ts.c
+24
-41
未找到文件。
drivers/input/touchscreen/migor_ts.c
浏览文件 @
468792eb
...
...
@@ -36,7 +36,6 @@
struct
migor_ts_priv
{
struct
i2c_client
*
client
;
struct
input_dev
*
input
;
struct
delayed_work
work
;
int
irq
;
};
...
...
@@ -44,15 +43,24 @@ static const u_int8_t migor_ts_ena_seq[17] = { 0x33, 0x22, 0x11,
0x01
,
0x06
,
0x07
,
};
static
const
u_int8_t
migor_ts_dis_seq
[
17
]
=
{
};
static
void
migor_ts_poscheck
(
struct
work_struct
*
work
)
static
irqreturn_t
migor_ts_isr
(
int
irq
,
void
*
dev_id
)
{
struct
migor_ts_priv
*
priv
=
container_of
(
work
,
struct
migor_ts_priv
,
work
.
work
);
struct
migor_ts_priv
*
priv
=
dev_id
;
unsigned
short
xpos
,
ypos
;
unsigned
char
event
;
u_int8_t
buf
[
16
];
/*
* The touch screen controller chip is hooked up to the CPU
* using I2C and a single interrupt line. The interrupt line
* is pulled low whenever someone taps the screen. To deassert
* the interrupt line we need to acknowledge the interrupt by
* communicating with the controller over the slow i2c bus.
*
* Since I2C bus controller may sleep we are using threaded
* IRQ here.
*/
memset
(
buf
,
0
,
sizeof
(
buf
));
/* Set Index 0 */
...
...
@@ -72,41 +80,25 @@ static void migor_ts_poscheck(struct work_struct *work)
xpos
=
((
buf
[
11
]
&
0x03
)
<<
8
|
buf
[
10
]);
event
=
buf
[
12
];
if
(
event
==
EVENT_PENDOWN
||
event
==
EVENT_REPEAT
)
{
switch
(
event
)
{
case
EVENT_PENDOWN
:
case
EVENT_REPEAT
:
input_report_key
(
priv
->
input
,
BTN_TOUCH
,
1
);
input_report_abs
(
priv
->
input
,
ABS_X
,
ypos
);
/*X-Y swap*/
input_report_abs
(
priv
->
input
,
ABS_Y
,
xpos
);
input_sync
(
priv
->
input
);
}
else
if
(
event
==
EVENT_PENUP
)
{
break
;
case
EVENT_PENUP
:
input_report_key
(
priv
->
input
,
BTN_TOUCH
,
0
);
input_sync
(
priv
->
input
);
break
;
}
out:
enable_irq
(
priv
->
irq
);
}
static
irqreturn_t
migor_ts_isr
(
int
irq
,
void
*
dev_id
)
{
struct
migor_ts_priv
*
priv
=
dev_id
;
/* the touch screen controller chip is hooked up to the cpu
* using i2c and a single interrupt line. the interrupt line
* is pulled low whenever someone taps the screen. to deassert
* the interrupt line we need to acknowledge the interrupt by
* communicating with the controller over the slow i2c bus.
*
* we can't acknowledge from interrupt context since the i2c
* bus controller may sleep, so we just disable the interrupt
* here and handle the acknowledge using delayed work.
*/
disable_irq_nosync
(
irq
);
schedule_delayed_work
(
&
priv
->
work
,
HZ
/
20
);
out:
return
IRQ_HANDLED
;
}
static
int
migor_ts_open
(
struct
input_dev
*
dev
)
{
struct
migor_ts_priv
*
priv
=
input_get_drvdata
(
dev
);
...
...
@@ -131,15 +123,6 @@ static void migor_ts_close(struct input_dev *dev)
disable_irq
(
priv
->
irq
);
/* cancel pending work and wait for migor_ts_poscheck() to finish */
if
(
cancel_delayed_work_sync
(
&
priv
->
work
))
{
/*
* if migor_ts_poscheck was canceled we need to enable IRQ
* here to balance disable done in migor_ts_isr.
*/
enable_irq
(
priv
->
irq
);
}
/* disable controller */
i2c_master_send
(
client
,
migor_ts_dis_seq
,
sizeof
(
migor_ts_dis_seq
));
...
...
@@ -186,15 +169,15 @@ static int migor_ts_probe(struct i2c_client *client,
priv
->
client
=
client
;
priv
->
input
=
input
;
INIT_DELAYED_WORK
(
&
priv
->
work
,
migor_ts_poscheck
);
priv
->
irq
=
client
->
irq
;
error
=
input_register_device
(
input
);
if
(
error
)
goto
err1
;
error
=
request_irq
(
priv
->
irq
,
migor_ts_isr
,
IRQF_TRIGGER_LOW
,
client
->
name
,
priv
);
error
=
request_threaded_irq
(
priv
->
irq
,
NULL
,
migor_ts_isr
,
IRQF_TRIGGER_LOW
|
IRQF_ONESHOT
,
client
->
name
,
priv
);
if
(
error
)
{
dev_err
(
&
client
->
dev
,
"Unable to request touchscreen IRQ.
\n
"
);
goto
err2
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录