Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
f212ad5e
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f212ad5e
编写于
5月 31, 2012
作者:
S
Samuel Ortiz
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFC: Set the NFC device RF mode appropriately
Signed-off-by:
N
Samuel Ortiz
<
sameo@linux.intel.com
>
上级
fc40a8c1
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
12 addition
and
5 deletion
+12
-5
include/linux/nfc.h
include/linux/nfc.h
+1
-0
include/net/nfc/nfc.h
include/net/nfc/nfc.h
+1
-1
net/nfc/core.c
net/nfc/core.c
+10
-4
未找到文件。
include/linux/nfc.h
浏览文件 @
f212ad5e
...
@@ -146,6 +146,7 @@ enum nfc_attrs {
...
@@ -146,6 +146,7 @@ enum nfc_attrs {
/* NFC RF modes */
/* NFC RF modes */
#define NFC_RF_INITIATOR 0
#define NFC_RF_INITIATOR 0
#define NFC_RF_TARGET 1
#define NFC_RF_TARGET 1
#define NFC_RF_NONE 2
/* NFC protocols masks used in bitsets */
/* NFC protocols masks used in bitsets */
#define NFC_PROTO_JEWEL_MASK (1 << NFC_PROTO_JEWEL)
#define NFC_PROTO_JEWEL_MASK (1 << NFC_PROTO_JEWEL)
...
...
include/net/nfc/nfc.h
浏览文件 @
f212ad5e
...
@@ -100,10 +100,10 @@ struct nfc_dev {
...
@@ -100,10 +100,10 @@ struct nfc_dev {
int
targets_generation
;
int
targets_generation
;
struct
device
dev
;
struct
device
dev
;
bool
dev_up
;
bool
dev_up
;
u8
rf_mode
;
bool
polling
;
bool
polling
;
struct
nfc_target
*
active_target
;
struct
nfc_target
*
active_target
;
bool
dep_link_up
;
bool
dep_link_up
;
u32
dep_rf_mode
;
struct
nfc_genl_data
genl_data
;
struct
nfc_genl_data
genl_data
;
u32
supported_protocols
;
u32
supported_protocols
;
...
...
net/nfc/core.c
浏览文件 @
f212ad5e
...
@@ -144,8 +144,10 @@ int nfc_start_poll(struct nfc_dev *dev, u32 im_protocols, u32 tm_protocols)
...
@@ -144,8 +144,10 @@ int nfc_start_poll(struct nfc_dev *dev, u32 im_protocols, u32 tm_protocols)
}
}
rc
=
dev
->
ops
->
start_poll
(
dev
,
im_protocols
,
tm_protocols
);
rc
=
dev
->
ops
->
start_poll
(
dev
,
im_protocols
,
tm_protocols
);
if
(
!
rc
)
if
(
!
rc
)
{
dev
->
polling
=
true
;
dev
->
polling
=
true
;
dev
->
rf_mode
=
NFC_RF_NONE
;
}
error:
error:
device_unlock
(
&
dev
->
dev
);
device_unlock
(
&
dev
->
dev
);
...
@@ -235,8 +237,10 @@ int nfc_dep_link_up(struct nfc_dev *dev, int target_index, u8 comm_mode)
...
@@ -235,8 +237,10 @@ int nfc_dep_link_up(struct nfc_dev *dev, int target_index, u8 comm_mode)
}
}
rc
=
dev
->
ops
->
dep_link_up
(
dev
,
target
,
comm_mode
,
gb
,
gb_len
);
rc
=
dev
->
ops
->
dep_link_up
(
dev
,
target
,
comm_mode
,
gb
,
gb_len
);
if
(
!
rc
)
if
(
!
rc
)
{
dev
->
active_target
=
target
;
dev
->
active_target
=
target
;
dev
->
rf_mode
=
NFC_RF_INITIATOR
;
}
error:
error:
device_unlock
(
&
dev
->
dev
);
device_unlock
(
&
dev
->
dev
);
...
@@ -264,7 +268,7 @@ int nfc_dep_link_down(struct nfc_dev *dev)
...
@@ -264,7 +268,7 @@ int nfc_dep_link_down(struct nfc_dev *dev)
goto
error
;
goto
error
;
}
}
if
(
dev
->
dep_
rf_mode
==
NFC_RF_TARGET
)
{
if
(
dev
->
rf_mode
==
NFC_RF_TARGET
)
{
rc
=
-
EOPNOTSUPP
;
rc
=
-
EOPNOTSUPP
;
goto
error
;
goto
error
;
}
}
...
@@ -286,7 +290,6 @@ int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
...
@@ -286,7 +290,6 @@ int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
u8
comm_mode
,
u8
rf_mode
)
u8
comm_mode
,
u8
rf_mode
)
{
{
dev
->
dep_link_up
=
true
;
dev
->
dep_link_up
=
true
;
dev
->
dep_rf_mode
=
rf_mode
;
nfc_llcp_mac_is_up
(
dev
,
target_idx
,
comm_mode
,
rf_mode
);
nfc_llcp_mac_is_up
(
dev
,
target_idx
,
comm_mode
,
rf_mode
);
...
@@ -330,6 +333,7 @@ int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
...
@@ -330,6 +333,7 @@ int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
rc
=
dev
->
ops
->
activate_target
(
dev
,
target
,
protocol
);
rc
=
dev
->
ops
->
activate_target
(
dev
,
target
,
protocol
);
if
(
!
rc
)
{
if
(
!
rc
)
{
dev
->
active_target
=
target
;
dev
->
active_target
=
target
;
dev
->
rf_mode
=
NFC_RF_INITIATOR
;
if
(
dev
->
ops
->
check_presence
)
if
(
dev
->
ops
->
check_presence
)
mod_timer
(
&
dev
->
check_pres_timer
,
jiffies
+
mod_timer
(
&
dev
->
check_pres_timer
,
jiffies
+
...
@@ -470,6 +474,8 @@ int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode,
...
@@ -470,6 +474,8 @@ int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode,
goto
out
;
goto
out
;
}
}
dev
->
rf_mode
=
NFC_RF_TARGET
;
if
(
protocol
==
NFC_PROTO_NFC_DEP_MASK
)
if
(
protocol
==
NFC_PROTO_NFC_DEP_MASK
)
nfc_dep_link_is_up
(
dev
,
0
,
comm_mode
,
NFC_RF_TARGET
);
nfc_dep_link_is_up
(
dev
,
0
,
comm_mode
,
NFC_RF_TARGET
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录