Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
cf41d53b
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cf41d53b
编写于
11月 09, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau: re-jig fbcon suspend/resume process a little
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
2a44e499
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
16 deletion
+13
-16
drivers/gpu/drm/nouveau/nouveau_drv.c
drivers/gpu/drm/nouveau/nouveau_drv.c
+6
-16
drivers/gpu/drm/nouveau/nouveau_fbcon.c
drivers/gpu/drm/nouveau/nouveau_fbcon.c
+7
-0
未找到文件。
drivers/gpu/drm/nouveau/nouveau_drv.c
浏览文件 @
cf41d53b
...
...
@@ -180,8 +180,8 @@ nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
drm_kms_helper_poll_disable
(
dev
);
NV_INFO
(
dev
,
"Disabling fbcon
acceleration
...
\n
"
);
nouveau_fbcon_s
ave_disable_accel
(
dev
);
NV_INFO
(
dev
,
"Disabling fbcon...
\n
"
);
nouveau_fbcon_s
et_suspend
(
dev
,
1
);
NV_INFO
(
dev
,
"Unpinning framebuffer(s)...
\n
"
);
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
...
...
@@ -248,10 +248,6 @@ nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
pci_set_power_state
(
pdev
,
PCI_D3hot
);
}
console_lock
();
nouveau_fbcon_set_suspend
(
dev
,
1
);
console_unlock
();
nouveau_fbcon_restore_accel
(
dev
);
return
0
;
out_abort:
...
...
@@ -277,8 +273,6 @@ nouveau_pci_resume(struct pci_dev *pdev)
if
(
dev
->
switch_power_state
==
DRM_SWITCH_POWER_OFF
)
return
0
;
nouveau_fbcon_save_disable_accel
(
dev
);
NV_INFO
(
dev
,
"We're back, enabling device...
\n
"
);
pci_set_power_state
(
pdev
,
PCI_D0
);
pci_restore_state
(
pdev
);
...
...
@@ -360,7 +354,11 @@ nouveau_pci_resume(struct pci_dev *pdev)
NV_ERROR
(
dev
,
"Could not pin/map cursor.
\n
"
);
}
nouveau_fbcon_set_suspend
(
dev
,
0
);
nouveau_fbcon_zfill_all
(
dev
);
engine
->
display
.
init
(
dev
);
drm_kms_helper_poll_enable
(
dev
);
/* Force CLUT to get re-loaded during modeset */
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
...
...
@@ -369,12 +367,6 @@ nouveau_pci_resume(struct pci_dev *pdev)
nv_crtc
->
lut
.
depth
=
0
;
}
console_lock
();
nouveau_fbcon_set_suspend
(
dev
,
0
);
console_unlock
();
nouveau_fbcon_zfill_all
(
dev
);
drm_helper_resume_force_mode
(
dev
);
list_for_each_entry
(
crtc
,
&
dev
->
mode_config
.
crtc_list
,
head
)
{
...
...
@@ -386,8 +378,6 @@ nouveau_pci_resume(struct pci_dev *pdev)
nv_crtc
->
cursor_saved_y
);
}
nouveau_fbcon_restore_accel
(
dev
);
drm_kms_helper_poll_enable
(
dev
);
return
0
;
}
...
...
drivers/gpu/drm/nouveau/nouveau_fbcon.c
浏览文件 @
cf41d53b
...
...
@@ -36,6 +36,7 @@
#include <linux/init.h>
#include <linux/screen_info.h>
#include <linux/vga_switcheroo.h>
#include <linux/console.h>
#include "drmP.h"
#include "drm.h"
...
...
@@ -548,7 +549,13 @@ void nouveau_fbcon_restore_accel(struct drm_device *dev)
void
nouveau_fbcon_set_suspend
(
struct
drm_device
*
dev
,
int
state
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
console_lock
();
if
(
state
==
0
)
nouveau_fbcon_save_disable_accel
(
dev
);
fb_set_suspend
(
dev_priv
->
nfbdev
->
helper
.
fbdev
,
state
);
if
(
state
==
1
)
nouveau_fbcon_restore_accel
(
dev
);
console_unlock
();
}
void
nouveau_fbcon_zfill_all
(
struct
drm_device
*
dev
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录