Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
a4fa851c
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看板
提交
a4fa851c
编写于
11月 16, 2016
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/ce/gp102: rename from gp104
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
eeea423c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
13 addition
and
13 deletion
+13
-13
drivers/gpu/drm/nouveau/include/nvkm/engine/ce.h
drivers/gpu/drm/nouveau/include/nvkm/engine/ce.h
+1
-1
drivers/gpu/drm/nouveau/nvkm/engine/ce/Kbuild
drivers/gpu/drm/nouveau/nvkm/engine/ce/Kbuild
+1
-1
drivers/gpu/drm/nouveau/nvkm/engine/ce/gp102.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gp102.c
+3
-3
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+8
-8
未找到文件。
drivers/gpu/drm/nouveau/include/nvkm/engine/ce.h
浏览文件 @
a4fa851c
...
@@ -8,5 +8,5 @@ int gk104_ce_new(struct nvkm_device *, int, struct nvkm_engine **);
...
@@ -8,5 +8,5 @@ int gk104_ce_new(struct nvkm_device *, int, struct nvkm_engine **);
int
gm107_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gm107_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gm200_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gm200_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gp100_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gp100_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gp10
4
_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
int
gp10
2
_ce_new
(
struct
nvkm_device
*
,
int
,
struct
nvkm_engine
**
);
#endif
#endif
drivers/gpu/drm/nouveau/nvkm/engine/ce/Kbuild
浏览文件 @
a4fa851c
...
@@ -4,4 +4,4 @@ nvkm-y += nvkm/engine/ce/gk104.o
...
@@ -4,4 +4,4 @@ nvkm-y += nvkm/engine/ce/gk104.o
nvkm-y += nvkm/engine/ce/gm107.o
nvkm-y += nvkm/engine/ce/gm107.o
nvkm-y += nvkm/engine/ce/gm200.o
nvkm-y += nvkm/engine/ce/gm200.o
nvkm-y += nvkm/engine/ce/gp100.o
nvkm-y += nvkm/engine/ce/gp100.o
nvkm-y += nvkm/engine/ce/gp10
4
.o
nvkm-y += nvkm/engine/ce/gp10
2
.o
drivers/gpu/drm/nouveau/nvkm/engine/ce/gp10
4
.c
→
drivers/gpu/drm/nouveau/nvkm/engine/ce/gp10
2
.c
浏览文件 @
a4fa851c
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
#include <nvif/class.h>
#include <nvif/class.h>
static
const
struct
nvkm_engine_func
static
const
struct
nvkm_engine_func
gp10
4
_ce
=
{
gp10
2
_ce
=
{
.
intr
=
gp100_ce_intr
,
.
intr
=
gp100_ce_intr
,
.
sclass
=
{
.
sclass
=
{
{
-
1
,
-
1
,
PASCAL_DMA_COPY_B
},
{
-
1
,
-
1
,
PASCAL_DMA_COPY_B
},
...
@@ -37,8 +37,8 @@ gp104_ce = {
...
@@ -37,8 +37,8 @@ gp104_ce = {
};
};
int
int
gp10
4
_ce_new
(
struct
nvkm_device
*
device
,
int
index
,
gp10
2
_ce_new
(
struct
nvkm_device
*
device
,
int
index
,
struct
nvkm_engine
**
pengine
)
struct
nvkm_engine
**
pengine
)
{
{
return
nvkm_engine_new_
(
&
gp10
4
_ce
,
device
,
index
,
true
,
pengine
);
return
nvkm_engine_new_
(
&
gp10
2
_ce
,
device
,
index
,
true
,
pengine
);
}
}
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
浏览文件 @
a4fa851c
...
@@ -2203,10 +2203,10 @@ nv132_chipset = {
...
@@ -2203,10 +2203,10 @@ nv132_chipset = {
.
pmu
=
gp102_pmu_new
,
.
pmu
=
gp102_pmu_new
,
.
timer
=
gk20a_timer_new
,
.
timer
=
gk20a_timer_new
,
.
top
=
gk104_top_new
,
.
top
=
gk104_top_new
,
.
ce
[
0
]
=
gp10
4
_ce_new
,
.
ce
[
0
]
=
gp10
2
_ce_new
,
.
ce
[
1
]
=
gp10
4
_ce_new
,
.
ce
[
1
]
=
gp10
2
_ce_new
,
.
ce
[
2
]
=
gp10
4
_ce_new
,
.
ce
[
2
]
=
gp10
2
_ce_new
,
.
ce
[
3
]
=
gp10
4
_ce_new
,
.
ce
[
3
]
=
gp10
2
_ce_new
,
.
disp
=
gp104_disp_new
,
.
disp
=
gp104_disp_new
,
.
dma
=
gf119_dma_new
,
.
dma
=
gf119_dma_new
,
.
fifo
=
gp100_fifo_new
,
.
fifo
=
gp100_fifo_new
,
...
@@ -2232,10 +2232,10 @@ nv134_chipset = {
...
@@ -2232,10 +2232,10 @@ nv134_chipset = {
.
pmu
=
gp102_pmu_new
,
.
pmu
=
gp102_pmu_new
,
.
timer
=
gk20a_timer_new
,
.
timer
=
gk20a_timer_new
,
.
top
=
gk104_top_new
,
.
top
=
gk104_top_new
,
.
ce
[
0
]
=
gp10
4
_ce_new
,
.
ce
[
0
]
=
gp10
2
_ce_new
,
.
ce
[
1
]
=
gp10
4
_ce_new
,
.
ce
[
1
]
=
gp10
2
_ce_new
,
.
ce
[
2
]
=
gp10
4
_ce_new
,
.
ce
[
2
]
=
gp10
2
_ce_new
,
.
ce
[
3
]
=
gp10
4
_ce_new
,
.
ce
[
3
]
=
gp10
2
_ce_new
,
.
disp
=
gp104_disp_new
,
.
disp
=
gp104_disp_new
,
.
dma
=
gf119_dma_new
,
.
dma
=
gf119_dma_new
,
.
fifo
=
gp100_fifo_new
,
.
fifo
=
gp100_fifo_new
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录