Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
fc1b0a02
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看板
提交
fc1b0a02
编写于
5月 24, 2016
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau: pass nvif_client to nouveau_gem_new() instead of drm_device
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
bab7cc18
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
12 addition
and
10 deletion
+12
-10
drivers/gpu/drm/nouveau/nouveau_abi16.c
drivers/gpu/drm/nouveau/nouveau_abi16.c
+1
-1
drivers/gpu/drm/nouveau/nouveau_display.c
drivers/gpu/drm/nouveau/nouveau_display.c
+2
-1
drivers/gpu/drm/nouveau/nouveau_fbcon.c
drivers/gpu/drm/nouveau/nouveau_fbcon.c
+3
-2
drivers/gpu/drm/nouveau/nouveau_gem.c
drivers/gpu/drm/nouveau/nouveau_gem.c
+5
-5
drivers/gpu/drm/nouveau/nouveau_gem.h
drivers/gpu/drm/nouveau/nouveau_gem.h
+1
-1
未找到文件。
drivers/gpu/drm/nouveau/nouveau_abi16.c
浏览文件 @
fc1b0a02
...
...
@@ -321,7 +321,7 @@ nouveau_abi16_ioctl_channel_alloc(ABI16_IOCTL_ARGS)
}
/* Named memory object area */
ret
=
nouveau_gem_new
(
dev
,
PAGE_SIZE
,
0
,
NOUVEAU_GEM_DOMAIN_GART
,
ret
=
nouveau_gem_new
(
cli
,
PAGE_SIZE
,
0
,
NOUVEAU_GEM_DOMAIN_GART
,
0
,
0
,
&
chan
->
ntfy
);
if
(
ret
==
0
)
ret
=
nouveau_bo_pin
(
chan
->
ntfy
,
TTM_PL_FLAG_TT
,
false
);
...
...
drivers/gpu/drm/nouveau/nouveau_display.c
浏览文件 @
fc1b0a02
...
...
@@ -1057,6 +1057,7 @@ int
nouveau_display_dumb_create
(
struct
drm_file
*
file_priv
,
struct
drm_device
*
dev
,
struct
drm_mode_create_dumb
*
args
)
{
struct
nouveau_cli
*
cli
=
nouveau_cli
(
file_priv
);
struct
nouveau_bo
*
bo
;
uint32_t
domain
;
int
ret
;
...
...
@@ -1071,7 +1072,7 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
else
domain
=
NOUVEAU_GEM_DOMAIN_GART
;
ret
=
nouveau_gem_new
(
dev
,
args
->
size
,
0
,
domain
,
0
,
0
,
&
bo
);
ret
=
nouveau_gem_new
(
cli
,
args
->
size
,
0
,
domain
,
0
,
0
,
&
bo
);
if
(
ret
)
return
ret
;
...
...
drivers/gpu/drm/nouveau/nouveau_fbcon.c
浏览文件 @
fc1b0a02
...
...
@@ -341,8 +341,9 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
mode_cmd
.
pixel_format
=
drm_mode_legacy_fb_format
(
sizes
->
surface_bpp
,
sizes
->
surface_depth
);
ret
=
nouveau_gem_new
(
dev
,
mode_cmd
.
pitches
[
0
]
*
mode_cmd
.
height
,
0
,
NOUVEAU_GEM_DOMAIN_VRAM
,
0
,
0x0000
,
&
nvbo
);
ret
=
nouveau_gem_new
(
&
drm
->
client
,
mode_cmd
.
pitches
[
0
]
*
mode_cmd
.
height
,
0
,
NOUVEAU_GEM_DOMAIN_VRAM
,
0
,
0x0000
,
&
nvbo
);
if
(
ret
)
{
NV_ERROR
(
drm
,
"failed to allocate framebuffer
\n
"
);
goto
out
;
...
...
drivers/gpu/drm/nouveau/nouveau_gem.c
浏览文件 @
fc1b0a02
...
...
@@ -175,11 +175,11 @@ nouveau_gem_object_close(struct drm_gem_object *gem, struct drm_file *file_priv)
}
int
nouveau_gem_new
(
struct
drm_device
*
dev
,
int
size
,
int
align
,
uint32_t
domain
,
nouveau_gem_new
(
struct
nouveau_cli
*
cli
,
int
size
,
int
align
,
uint32_t
domain
,
uint32_t
tile_mode
,
uint32_t
tile_flags
,
struct
nouveau_bo
**
pnvbo
)
{
struct
nouveau_drm
*
drm
=
nouveau_drm
(
dev
);
struct
nouveau_drm
*
drm
=
nouveau_drm
(
cli
->
dev
);
struct
nouveau_bo
*
nvbo
;
u32
flags
=
0
;
int
ret
;
...
...
@@ -194,7 +194,7 @@ nouveau_gem_new(struct drm_device *dev, int size, int align, uint32_t domain,
if
(
domain
&
NOUVEAU_GEM_DOMAIN_COHERENT
)
flags
|=
TTM_PL_FLAG_UNCACHED
;
ret
=
nouveau_bo_new
(
&
drm
->
client
,
size
,
align
,
flags
,
tile_mode
,
ret
=
nouveau_bo_new
(
cli
,
size
,
align
,
flags
,
tile_mode
,
tile_flags
,
NULL
,
NULL
,
pnvbo
);
if
(
ret
)
return
ret
;
...
...
@@ -211,7 +211,7 @@ nouveau_gem_new(struct drm_device *dev, int size, int align, uint32_t domain,
/* Initialize the embedded gem-object. We return a single gem-reference
* to the caller, instead of a normal nouveau_bo ttm reference. */
ret
=
drm_gem_object_init
(
dev
,
&
nvbo
->
gem
,
nvbo
->
bo
.
mem
.
size
);
ret
=
drm_gem_object_init
(
d
rm
->
d
ev
,
&
nvbo
->
gem
,
nvbo
->
bo
.
mem
.
size
);
if
(
ret
)
{
nouveau_bo_ref
(
NULL
,
pnvbo
);
return
-
ENOMEM
;
...
...
@@ -267,7 +267,7 @@ nouveau_gem_ioctl_new(struct drm_device *dev, void *data,
return
-
EINVAL
;
}
ret
=
nouveau_gem_new
(
dev
,
req
->
info
.
size
,
req
->
align
,
ret
=
nouveau_gem_new
(
cli
,
req
->
info
.
size
,
req
->
align
,
req
->
info
.
domain
,
req
->
info
.
tile_mode
,
req
->
info
.
tile_flags
,
&
nvbo
);
if
(
ret
)
...
...
drivers/gpu/drm/nouveau/nouveau_gem.h
浏览文件 @
fc1b0a02
...
...
@@ -16,7 +16,7 @@ nouveau_gem_object(struct drm_gem_object *gem)
}
/* nouveau_gem.c */
extern
int
nouveau_gem_new
(
struct
drm_device
*
,
int
size
,
int
align
,
extern
int
nouveau_gem_new
(
struct
nouveau_cli
*
,
int
size
,
int
align
,
uint32_t
domain
,
uint32_t
tile_mode
,
uint32_t
tile_flags
,
struct
nouveau_bo
**
);
extern
void
nouveau_gem_object_del
(
struct
drm_gem_object
*
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录