Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
27d5030a
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看板
提交
27d5030a
编写于
10月 06, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau: move master modesetting init to nouveau_display
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
549cd872
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
51 addition
and
27 deletion
+51
-27
drivers/gpu/drm/nouveau/nouveau_display.c
drivers/gpu/drm/nouveau/nouveau_display.c
+46
-1
drivers/gpu/drm/nouveau/nouveau_drv.h
drivers/gpu/drm/nouveau/nouveau_drv.h
+2
-0
drivers/gpu/drm/nouveau/nouveau_fb.h
drivers/gpu/drm/nouveau/nouveau_fb.h
+0
-2
drivers/gpu/drm/nouveau/nouveau_state.c
drivers/gpu/drm/nouveau/nouveau_state.c
+3
-24
未找到文件。
drivers/gpu/drm/nouveau/nouveau_display.c
浏览文件 @
27d5030a
...
...
@@ -147,11 +147,56 @@ nouveau_user_framebuffer_create(struct drm_device *dev,
return
&
nouveau_fb
->
base
;
}
const
struct
drm_mode_config_funcs
nouveau_mode_config_funcs
=
{
static
const
struct
drm_mode_config_funcs
nouveau_mode_config_funcs
=
{
.
fb_create
=
nouveau_user_framebuffer_create
,
.
output_poll_changed
=
nouveau_fbcon_output_poll_changed
,
};
int
nouveau_display_create
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_display_engine
*
disp
=
&
dev_priv
->
engine
.
display
;
int
ret
;
drm_mode_config_init
(
dev
);
drm_mode_create_scaling_mode_property
(
dev
);
drm_mode_create_dithering_property
(
dev
);
dev
->
mode_config
.
funcs
=
(
void
*
)
&
nouveau_mode_config_funcs
;
dev
->
mode_config
.
fb_base
=
pci_resource_start
(
dev
->
pdev
,
1
);
dev
->
mode_config
.
min_width
=
0
;
dev
->
mode_config
.
min_height
=
0
;
if
(
dev_priv
->
card_type
<
NV_10
)
{
dev
->
mode_config
.
max_width
=
2048
;
dev
->
mode_config
.
max_height
=
2048
;
}
else
if
(
dev_priv
->
card_type
<
NV_50
)
{
dev
->
mode_config
.
max_width
=
4096
;
dev
->
mode_config
.
max_height
=
4096
;
}
else
{
dev
->
mode_config
.
max_width
=
8192
;
dev
->
mode_config
.
max_height
=
8192
;
}
ret
=
disp
->
create
(
dev
);
if
(
ret
)
return
ret
;
return
0
;
}
void
nouveau_display_destroy
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_display_engine
*
disp
=
&
dev_priv
->
engine
.
display
;
disp
->
destroy
(
dev
);
drm_mode_config_cleanup
(
dev
);
}
int
nouveau_vblank_enable
(
struct
drm_device
*
dev
,
int
crtc
)
{
...
...
drivers/gpu/drm/nouveau/nouveau_drv.h
浏览文件 @
27d5030a
...
...
@@ -1442,6 +1442,8 @@ extern int nouveau_gem_ioctl_info(struct drm_device *, void *,
struct
drm_file
*
);
/* nouveau_display.c */
int
nouveau_display_create
(
struct
drm_device
*
dev
);
void
nouveau_display_destroy
(
struct
drm_device
*
dev
);
int
nouveau_vblank_enable
(
struct
drm_device
*
dev
,
int
crtc
);
void
nouveau_vblank_disable
(
struct
drm_device
*
dev
,
int
crtc
);
int
nouveau_crtc_page_flip
(
struct
drm_crtc
*
crtc
,
struct
drm_framebuffer
*
fb
,
...
...
drivers/gpu/drm/nouveau/nouveau_fb.h
浏览文件 @
27d5030a
...
...
@@ -42,8 +42,6 @@ nouveau_framebuffer(struct drm_framebuffer *fb)
return
container_of
(
fb
,
struct
nouveau_framebuffer
,
base
);
}
extern
const
struct
drm_mode_config_funcs
nouveau_mode_config_funcs
;
int
nouveau_framebuffer_init
(
struct
drm_device
*
dev
,
struct
nouveau_framebuffer
*
nouveau_fb
,
struct
drm_mode_fb_cmd2
*
mode_cmd
,
struct
nouveau_bo
*
nvbo
);
#endif
/* __NOUVEAU_FB_H__ */
drivers/gpu/drm/nouveau/nouveau_state.c
浏览文件 @
27d5030a
...
...
@@ -733,27 +733,7 @@ nouveau_card_init(struct drm_device *dev)
if
(
ret
)
goto
out_fifo
;
/* initialise general modesetting */
drm_mode_config_init
(
dev
);
drm_mode_create_scaling_mode_property
(
dev
);
drm_mode_create_dithering_property
(
dev
);
dev
->
mode_config
.
funcs
=
(
void
*
)
&
nouveau_mode_config_funcs
;
dev
->
mode_config
.
fb_base
=
pci_resource_start
(
dev
->
pdev
,
1
);
dev
->
mode_config
.
min_width
=
0
;
dev
->
mode_config
.
min_height
=
0
;
if
(
dev_priv
->
card_type
<
NV_10
)
{
dev
->
mode_config
.
max_width
=
2048
;
dev
->
mode_config
.
max_height
=
2048
;
}
else
if
(
dev_priv
->
card_type
<
NV_50
)
{
dev
->
mode_config
.
max_width
=
4096
;
dev
->
mode_config
.
max_height
=
4096
;
}
else
{
dev
->
mode_config
.
max_width
=
8192
;
dev
->
mode_config
.
max_height
=
8192
;
}
ret
=
engine
->
display
.
create
(
dev
);
ret
=
nouveau_display_create
(
dev
);
if
(
ret
)
goto
out_irq
;
...
...
@@ -789,7 +769,7 @@ nouveau_card_init(struct drm_device *dev)
nouveau_fence_fini
(
dev
);
out_disp:
nouveau_backlight_exit
(
dev
);
engine
->
display
.
destroy
(
dev
);
nouveau_display_
destroy
(
dev
);
out_irq:
nouveau_irq_fini
(
dev
);
out_fifo:
...
...
@@ -850,8 +830,7 @@ static void nouveau_card_takedown(struct drm_device *dev)
}
nouveau_backlight_exit
(
dev
);
engine
->
display
.
destroy
(
dev
);
drm_mode_config_cleanup
(
dev
);
nouveau_display_destroy
(
dev
);
if
(
!
dev_priv
->
noaccel
)
{
engine
->
fifo
.
takedown
(
dev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录