Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
3f0a68d8
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看板
提交
3f0a68d8
编写于
5月 31, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau: allocate structure to store per-client data
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
1562ffde
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
32 addition
and
1 deletion
+32
-1
drivers/gpu/drm/nouveau/nouveau_drv.c
drivers/gpu/drm/nouveau/nouveau_drv.c
+2
-0
drivers/gpu/drm/nouveau/nouveau_drv.h
drivers/gpu/drm/nouveau/nouveau_drv.h
+9
-1
drivers/gpu/drm/nouveau/nouveau_state.c
drivers/gpu/drm/nouveau/nouveau_state.c
+21
-0
未找到文件。
drivers/gpu/drm/nouveau/nouveau_drv.c
浏览文件 @
3f0a68d8
...
...
@@ -393,7 +393,9 @@ static struct drm_driver driver = {
.
firstopen
=
nouveau_firstopen
,
.
lastclose
=
nouveau_lastclose
,
.
unload
=
nouveau_unload
,
.
open
=
nouveau_open
,
.
preclose
=
nouveau_preclose
,
.
postclose
=
nouveau_postclose
,
#if defined(CONFIG_DRM_NOUVEAU_DEBUG)
.
debugfs_init
=
nouveau_debugfs_init
,
.
debugfs_cleanup
=
nouveau_debugfs_takedown
,
...
...
drivers/gpu/drm/nouveau/nouveau_drv.h
浏览文件 @
3f0a68d8
...
...
@@ -46,9 +46,15 @@
#include "ttm/ttm_module.h"
struct
nouveau_fpriv
{
s
truct
ttm_object_file
*
tfile
;
s
pinlock_t
lock
;
};
static
inline
struct
nouveau_fpriv
*
nouveau_fpriv
(
struct
drm_file
*
file_priv
)
{
return
file_priv
?
file_priv
->
driver_priv
:
NULL
;
}
#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
#include "nouveau_drm.h"
...
...
@@ -792,7 +798,9 @@ extern int nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state);
extern
int
nouveau_pci_resume
(
struct
pci_dev
*
pdev
);
/* nouveau_state.c */
extern
int
nouveau_open
(
struct
drm_device
*
,
struct
drm_file
*
);
extern
void
nouveau_preclose
(
struct
drm_device
*
dev
,
struct
drm_file
*
);
extern
void
nouveau_postclose
(
struct
drm_device
*
,
struct
drm_file
*
);
extern
int
nouveau_load
(
struct
drm_device
*
,
unsigned
long
flags
);
extern
int
nouveau_firstopen
(
struct
drm_device
*
);
extern
void
nouveau_lastclose
(
struct
drm_device
*
);
...
...
drivers/gpu/drm/nouveau/nouveau_state.c
浏览文件 @
3f0a68d8
...
...
@@ -764,6 +764,20 @@ static void nouveau_card_takedown(struct drm_device *dev)
vga_client_register
(
dev
->
pdev
,
NULL
,
NULL
,
NULL
);
}
int
nouveau_open
(
struct
drm_device
*
dev
,
struct
drm_file
*
file_priv
)
{
struct
nouveau_fpriv
*
fpriv
;
fpriv
=
kzalloc
(
sizeof
(
*
fpriv
),
GFP_KERNEL
);
if
(
unlikely
(
!
fpriv
))
return
-
ENOMEM
;
spin_lock_init
(
&
fpriv
->
lock
);
file_priv
->
driver_priv
=
fpriv
;
return
0
;
}
/* here a client dies, release the stuff that was allocated for its
* file_priv */
void
nouveau_preclose
(
struct
drm_device
*
dev
,
struct
drm_file
*
file_priv
)
...
...
@@ -771,6 +785,13 @@ void nouveau_preclose(struct drm_device *dev, struct drm_file *file_priv)
nouveau_channel_cleanup
(
dev
,
file_priv
);
}
void
nouveau_postclose
(
struct
drm_device
*
dev
,
struct
drm_file
*
file_priv
)
{
struct
nouveau_fpriv
*
fpriv
=
nouveau_fpriv
(
file_priv
);
kfree
(
fpriv
);
}
/* first module load, setup the mmio/fb mapping */
/* KMS: we need mmio at load time, not when the first drm client opens. */
int
nouveau_firstopen
(
struct
drm_device
*
dev
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录