Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
20a80074
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
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看板
提交
20a80074
编写于
5月 13, 2014
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/gpio: send separate event types for high/low transitions
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
bc3b0c41
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
17 addition
and
14 deletion
+17
-14
drivers/gpu/drm/nouveau/core/include/subdev/gpio.h
drivers/gpu/drm/nouveau/core/include/subdev/gpio.h
+6
-0
drivers/gpu/drm/nouveau/core/subdev/gpio/base.c
drivers/gpu/drm/nouveau/core/subdev/gpio/base.c
+10
-7
drivers/gpu/drm/nouveau/core/subdev/gpio/priv.h
drivers/gpu/drm/nouveau/core/subdev/gpio/priv.h
+0
-6
drivers/gpu/drm/nouveau/nouveau_connector.c
drivers/gpu/drm/nouveau/nouveau_connector.c
+1
-1
未找到文件。
drivers/gpu/drm/nouveau/core/include/subdev/gpio.h
浏览文件 @
20a80074
...
...
@@ -8,6 +8,12 @@
#include <subdev/bios.h>
#include <subdev/bios/gpio.h>
enum
nvkm_gpio_event
{
NVKM_GPIO_HI
=
1
,
NVKM_GPIO_LO
=
2
,
NVKM_GPIO_TOGGLED
=
(
NVKM_GPIO_HI
|
NVKM_GPIO_LO
),
};
struct
nouveau_gpio
{
struct
nouveau_subdev
base
;
...
...
drivers/gpu/drm/nouveau/core/subdev/gpio/base.c
浏览文件 @
20a80074
...
...
@@ -110,7 +110,7 @@ nouveau_gpio_intr_disable(struct nouveau_event *event, int type, int index)
{
struct
nouveau_gpio
*
gpio
=
nouveau_gpio
(
event
->
priv
);
const
struct
nouveau_gpio_impl
*
impl
=
(
void
*
)
nv_object
(
gpio
)
->
oclass
;
impl
->
intr_mask
(
gpio
,
NVKM_GPIO_TOGGLED
,
1
<<
index
,
0
);
impl
->
intr_mask
(
gpio
,
type
,
1
<<
index
,
0
);
}
static
void
...
...
@@ -118,7 +118,7 @@ nouveau_gpio_intr_enable(struct nouveau_event *event, int type, int index)
{
struct
nouveau_gpio
*
gpio
=
nouveau_gpio
(
event
->
priv
);
const
struct
nouveau_gpio_impl
*
impl
=
(
void
*
)
nv_object
(
gpio
)
->
oclass
;
impl
->
intr_mask
(
gpio
,
NVKM_GPIO_TOGGLED
,
1
<<
index
,
1
<<
index
);
impl
->
intr_mask
(
gpio
,
type
,
1
<<
index
,
1
<<
index
);
}
static
void
...
...
@@ -126,13 +126,16 @@ nouveau_gpio_intr(struct nouveau_subdev *subdev)
{
struct
nouveau_gpio
*
gpio
=
nouveau_gpio
(
subdev
);
const
struct
nouveau_gpio_impl
*
impl
=
(
void
*
)
nv_object
(
gpio
)
->
oclass
;
u32
hi
,
lo
,
i
;
u32
hi
,
lo
,
e
,
i
;
impl
->
intr_stat
(
gpio
,
&
hi
,
&
lo
);
for
(
i
=
0
;
(
hi
|
lo
)
&&
i
<
impl
->
lines
;
i
++
)
{
if
((
hi
|
lo
)
&
(
1
<<
i
))
nouveau_event_trigger
(
gpio
->
events
,
1
,
i
);
for
(
i
=
0
;
e
=
0
,
(
hi
|
lo
)
&&
i
<
impl
->
lines
;
i
++
)
{
if
(
hi
&
(
1
<<
i
))
e
|=
NVKM_GPIO_HI
;
if
(
lo
&
(
1
<<
i
))
e
|=
NVKM_GPIO_LO
;
nouveau_event_trigger
(
gpio
->
events
,
e
,
i
);
}
}
...
...
@@ -205,7 +208,7 @@ nouveau_gpio_create_(struct nouveau_object *parent,
gpio
->
get
=
nouveau_gpio_get
;
gpio
->
reset
=
impl
->
reset
;
ret
=
nouveau_event_create
(
1
,
impl
->
lines
,
&
gpio
->
events
);
ret
=
nouveau_event_create
(
2
,
impl
->
lines
,
&
gpio
->
events
);
if
(
ret
)
return
ret
;
...
...
drivers/gpu/drm/nouveau/core/subdev/gpio/priv.h
浏览文件 @
20a80074
...
...
@@ -27,12 +27,6 @@ void _nouveau_gpio_dtor(struct nouveau_object *);
int
_nouveau_gpio_init
(
struct
nouveau_object
*
);
int
_nouveau_gpio_fini
(
struct
nouveau_object
*
,
bool
);
enum
nvkm_gpio_event
{
NVKM_GPIO_HI
=
1
,
NVKM_GPIO_LO
=
2
,
NVKM_GPIO_TOGGLED
=
(
NVKM_GPIO_HI
|
NVKM_GPIO_LO
),
};
struct
nouveau_gpio_impl
{
struct
nouveau_oclass
base
;
int
lines
;
...
...
drivers/gpu/drm/nouveau/nouveau_connector.c
浏览文件 @
20a80074
...
...
@@ -1013,7 +1013,7 @@ nouveau_connector_create(struct drm_device *dev, int index)
nv_connector
->
hpd
.
func
=
DCB_GPIO_UNUSED
;
if
(
nv_connector
->
hpd
.
func
!=
DCB_GPIO_UNUSED
)
{
nouveau_event_new
(
gpio
->
events
,
1
,
nouveau_event_new
(
gpio
->
events
,
NVKM_GPIO_TOGGLED
,
nv_connector
->
hpd
.
line
,
nouveau_connector_hotplug
,
nv_connector
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录