Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
377b1f16
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看板
提交
377b1f16
编写于
5月 14, 2014
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/disp: nothing to see here
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
37da5b87
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
42 addition
and
21 deletion
+42
-21
drivers/gpu/drm/nouveau/core/engine/disp/base.c
drivers/gpu/drm/nouveau/core/engine/disp/base.c
+19
-2
drivers/gpu/drm/nouveau/core/engine/disp/priv.h
drivers/gpu/drm/nouveau/core/engine/disp/priv.h
+23
-0
drivers/gpu/drm/nouveau/core/include/engine/disp.h
drivers/gpu/drm/nouveau/core/include/engine/disp.h
+0
-19
未找到文件。
drivers/gpu/drm/nouveau/core/engine/disp/base.c
浏览文件 @
377b1f16
...
...
@@ -22,7 +22,20 @@
* Authors: Ben Skeggs
*/
#include <engine/disp.h>
#include "priv.h"
int
_nouveau_disp_fini
(
struct
nouveau_object
*
object
,
bool
suspend
)
{
struct
nouveau_disp
*
disp
=
(
void
*
)
object
;
return
nouveau_engine_fini
(
&
disp
->
base
,
suspend
);
}
int
_nouveau_disp_init
(
struct
nouveau_object
*
object
)
{
return
0
;
}
void
_nouveau_disp_dtor
(
struct
nouveau_object
*
object
)
...
...
@@ -48,5 +61,9 @@ nouveau_disp_create_(struct nouveau_object *parent,
if
(
ret
)
return
ret
;
return
nouveau_event_create
(
1
,
heads
,
&
disp
->
vblank
);
ret
=
nouveau_event_create
(
1
,
heads
,
&
disp
->
vblank
);
if
(
ret
)
return
ret
;
return
0
;
}
drivers/gpu/drm/nouveau/core/engine/disp/priv.h
浏览文件 @
377b1f16
...
...
@@ -7,4 +7,27 @@ struct nouveau_disp_impl {
struct
nouveau_oclass
base
;
};
#define nouveau_disp_create(p,e,c,h,i,x,d) \
nouveau_disp_create_((p), (e), (c), (h), (i), (x), \
sizeof(**d), (void **)d)
#define nouveau_disp_destroy(d) ({ \
struct nouveau_disp *disp = (d); \
_nouveau_disp_dtor(nv_object(disp)); \
})
#define nouveau_disp_init(d) ({ \
struct nouveau_disp *disp = (d); \
_nouveau_disp_init(nv_object(disp)); \
})
#define nouveau_disp_fini(d,s) ({ \
struct nouveau_disp *disp = (d); \
_nouveau_disp_fini(nv_object(disp), (s)); \
})
int
nouveau_disp_create_
(
struct
nouveau_object
*
,
struct
nouveau_object
*
,
struct
nouveau_oclass
*
,
int
heads
,
const
char
*
,
const
char
*
,
int
,
void
**
);
void
_nouveau_disp_dtor
(
struct
nouveau_object
*
);
int
_nouveau_disp_init
(
struct
nouveau_object
*
);
int
_nouveau_disp_fini
(
struct
nouveau_object
*
,
bool
);
#endif
drivers/gpu/drm/nouveau/core/include/engine/disp.h
浏览文件 @
377b1f16
...
...
@@ -17,25 +17,6 @@ nouveau_disp(void *obj)
return
(
void
*
)
nv_device
(
obj
)
->
subdev
[
NVDEV_ENGINE_DISP
];
}
#define nouveau_disp_create(p,e,c,h,i,x,d) \
nouveau_disp_create_((p), (e), (c), (h), (i), (x), \
sizeof(**d), (void **)d)
#define nouveau_disp_destroy(d) ({ \
struct nouveau_disp *disp = (d); \
_nouveau_disp_dtor(nv_object(disp)); \
})
#define nouveau_disp_init(d) \
nouveau_engine_init(&(d)->base)
#define nouveau_disp_fini(d,s) \
nouveau_engine_fini(&(d)->base, (s))
int
nouveau_disp_create_
(
struct
nouveau_object
*
,
struct
nouveau_object
*
,
struct
nouveau_oclass
*
,
int
heads
,
const
char
*
,
const
char
*
,
int
,
void
**
);
void
_nouveau_disp_dtor
(
struct
nouveau_object
*
);
#define _nouveau_disp_init _nouveau_engine_init
#define _nouveau_disp_fini _nouveau_engine_fini
extern
struct
nouveau_oclass
*
nv04_disp_oclass
;
extern
struct
nouveau_oclass
*
nv50_disp_oclass
;
extern
struct
nouveau_oclass
*
nv84_disp_oclass
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录