Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
b12f0ae9
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看板
提交
b12f0ae9
编写于
8月 10, 2014
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau: store vblank event handler data in nv_crtc
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
8a423647
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
29 addition
and
29 deletion
+29
-29
drivers/gpu/drm/nouveau/nouveau_crtc.h
drivers/gpu/drm/nouveau/nouveau_crtc.h
+1
-0
drivers/gpu/drm/nouveau/nouveau_display.c
drivers/gpu/drm/nouveau/nouveau_display.c
+28
-27
drivers/gpu/drm/nouveau/nouveau_display.h
drivers/gpu/drm/nouveau/nouveau_display.h
+0
-2
未找到文件。
drivers/gpu/drm/nouveau/nouveau_crtc.h
浏览文件 @
b12f0ae9
...
...
@@ -31,6 +31,7 @@ struct nouveau_crtc {
struct
drm_crtc
base
;
int
index
;
struct
nouveau_eventh
*
vblank
;
uint32_t
dpms_saved_fp_control
;
uint32_t
fp_users
;
...
...
drivers/gpu/drm/nouveau/nouveau_display.c
浏览文件 @
b12f0ae9
...
...
@@ -44,28 +44,36 @@
static
int
nouveau_display_vblank_handler
(
void
*
data
,
u32
type
,
int
head
)
{
struct
nouveau_
drm
*
drm
=
data
;
drm_handle_vblank
(
drm
->
dev
,
head
);
struct
nouveau_
crtc
*
nv_crtc
=
data
;
drm_handle_vblank
(
nv_crtc
->
base
.
dev
,
nv_crtc
->
index
);
return
NVKM_EVENT_KEEP
;
}
int
nouveau_display_vblank_enable
(
struct
drm_device
*
dev
,
int
head
)
{
struct
nouveau_display
*
disp
=
nouveau_display
(
dev
);
if
(
disp
)
{
nouveau_event_get
(
disp
->
vblank
[
head
]);
return
0
;
struct
drm_crtc
*
crtc
;
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
struct
nouveau_crtc
*
nv_crtc
=
nouveau_crtc
(
crtc
);
if
(
nv_crtc
->
index
==
head
)
{
nouveau_event_get
(
nv_crtc
->
vblank
);
return
0
;
}
}
return
-
EI
O
;
return
-
EI
NVAL
;
}
void
nouveau_display_vblank_disable
(
struct
drm_device
*
dev
,
int
head
)
{
struct
nouveau_display
*
disp
=
nouveau_display
(
dev
);
if
(
disp
)
nouveau_event_put
(
disp
->
vblank
[
head
]);
struct
drm_crtc
*
crtc
;
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
struct
nouveau_crtc
*
nv_crtc
=
nouveau_crtc
(
crtc
);
if
(
nv_crtc
->
index
==
head
)
{
nouveau_event_put
(
nv_crtc
->
vblank
);
return
;
}
}
}
static
inline
int
...
...
@@ -151,36 +159,29 @@ nouveau_display_vblstamp(struct drm_device *dev, int head, int *max_error,
static
void
nouveau_display_vblank_fini
(
struct
drm_device
*
dev
)
{
struct
nouveau_display
*
disp
=
nouveau_display
(
dev
);
int
i
;
struct
drm_crtc
*
crtc
;
drm_vblank_cleanup
(
dev
);
if
(
disp
->
vblank
)
{
for
(
i
=
0
;
i
<
dev
->
mode_config
.
num_crtc
;
i
++
)
nouveau_event_ref
(
NULL
,
&
disp
->
vblank
[
i
]);
kfree
(
disp
->
vblank
);
disp
->
vblank
=
NULL
;
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
struct
nouveau_crtc
*
nv_crtc
=
nouveau_crtc
(
crtc
);
nouveau_event_ref
(
NULL
,
&
nv_crtc
->
vblank
);
}
}
static
int
nouveau_display_vblank_init
(
struct
drm_device
*
dev
)
{
struct
nouveau_display
*
disp
=
nouveau_display
(
dev
);
struct
nouveau_drm
*
drm
=
nouveau_drm
(
dev
);
struct
nouveau_disp
*
pdisp
=
nouveau_disp
(
drm
->
device
);
int
ret
,
i
;
disp
->
vblank
=
kzalloc
(
dev
->
mode_config
.
num_crtc
*
sizeof
(
*
disp
->
vblank
),
GFP_KERNEL
);
if
(
!
disp
->
vblank
)
return
-
ENOMEM
;
struct
drm_crtc
*
crtc
;
int
ret
;
for
(
i
=
0
;
i
<
dev
->
mode_config
.
num_crtc
;
i
++
)
{
ret
=
nouveau_event_new
(
pdisp
->
vblank
,
1
,
i
,
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
struct
nouveau_crtc
*
nv_crtc
=
nouveau_crtc
(
crtc
);
ret
=
nouveau_event_new
(
pdisp
->
vblank
,
1
,
nv_crtc
->
index
,
nouveau_display_vblank_handler
,
drm
,
&
disp
->
vblank
[
i
]
);
nv_crtc
,
&
nv_crtc
->
vblank
);
if
(
ret
)
{
nouveau_display_vblank_fini
(
dev
);
return
ret
;
...
...
drivers/gpu/drm/nouveau/nouveau_display.h
浏览文件 @
b12f0ae9
...
...
@@ -40,8 +40,6 @@ struct nouveau_display {
void
(
*
fb_dtor
)(
struct
drm_framebuffer
*
);
struct
nouveau_object
*
core
;
struct
nouveau_eventh
**
vblank
;
struct
drm_property
*
dithering_mode
;
struct
drm_property
*
dithering_depth
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录