Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
7f53abdb
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看板
提交
7f53abdb
编写于
7月 09, 2016
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/core: recognise GP100 chipset
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
cb7b5ea9
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
12 addition
and
0 deletion
+12
-0
drivers/gpu/drm/nouveau/include/nvif/cl0080.h
drivers/gpu/drm/nouveau/include/nvif/cl0080.h
+1
-0
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
+1
-0
drivers/gpu/drm/nouveau/nouveau_abi16.c
drivers/gpu/drm/nouveau/nouveau_abi16.c
+1
-0
drivers/gpu/drm/nouveau/nouveau_ttm.c
drivers/gpu/drm/nouveau/nouveau_ttm.c
+1
-0
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+7
-0
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
+1
-0
未找到文件。
drivers/gpu/drm/nouveau/include/nvif/cl0080.h
浏览文件 @
7f53abdb
...
...
@@ -29,6 +29,7 @@ struct nv_device_info_v0 {
#define NV_DEVICE_INFO_V0_FERMI 0x07
#define NV_DEVICE_INFO_V0_KEPLER 0x08
#define NV_DEVICE_INFO_V0_MAXWELL 0x09
#define NV_DEVICE_INFO_V0_PASCAL 0x0a
__u8
family
;
__u8
pad06
[
2
];
__u64
ram_size
;
...
...
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
浏览文件 @
7f53abdb
...
...
@@ -106,6 +106,7 @@ struct nvkm_device {
NV_C0
=
0xc0
,
NV_E0
=
0xe0
,
GM100
=
0x110
,
GP100
=
0x130
,
}
card_type
;
u32
chipset
;
u8
chiprev
;
...
...
drivers/gpu/drm/nouveau/nouveau_abi16.c
浏览文件 @
7f53abdb
...
...
@@ -100,6 +100,7 @@ nouveau_abi16_swclass(struct nouveau_drm *drm)
case
NV_DEVICE_INFO_V0_FERMI
:
case
NV_DEVICE_INFO_V0_KEPLER
:
case
NV_DEVICE_INFO_V0_MAXWELL
:
case
NV_DEVICE_INFO_V0_PASCAL
:
return
NVIF_CLASS_SW_GF100
;
}
...
...
drivers/gpu/drm/nouveau/nouveau_ttm.c
浏览文件 @
7f53abdb
...
...
@@ -164,6 +164,7 @@ nouveau_gart_manager_new(struct ttm_mem_type_manager *man,
case
NV_DEVICE_INFO_V0_FERMI
:
case
NV_DEVICE_INFO_V0_KEPLER
:
case
NV_DEVICE_INFO_V0_MAXWELL
:
case
NV_DEVICE_INFO_V0_PASCAL
:
node
->
memtype
=
(
nvbo
->
tile_flags
&
0xff00
)
>>
8
;
break
;
default:
...
...
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
浏览文件 @
7f53abdb
...
...
@@ -2148,6 +2148,11 @@ nv12b_chipset = {
.
sw
=
gf100_sw_new
,
};
static
const
struct
nvkm_device_chip
nv130_chipset
=
{
.
name
=
"GP100"
,
};
static
int
nvkm_device_event_ctor
(
struct
nvkm_object
*
object
,
void
*
data
,
u32
size
,
struct
nvkm_notify
*
notify
)
...
...
@@ -2496,6 +2501,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
case
0x100
:
device
->
card_type
=
NV_E0
;
break
;
case
0x110
:
case
0x120
:
device
->
card_type
=
GM100
;
break
;
case
0x130
:
device
->
card_type
=
GP100
;
break
;
default:
break
;
}
...
...
@@ -2580,6 +2586,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
case
0x124
:
device
->
chip
=
&
nv124_chipset
;
break
;
case
0x126
:
device
->
chip
=
&
nv126_chipset
;
break
;
case
0x12b
:
device
->
chip
=
&
nv12b_chipset
;
break
;
case
0x130
:
device
->
chip
=
&
nv130_chipset
;
break
;
default:
nvdev_error
(
device
,
"unknown chipset (%08x)
\n
"
,
boot0
);
goto
done
;
...
...
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
浏览文件 @
7f53abdb
...
...
@@ -102,6 +102,7 @@ nvkm_udevice_info(struct nvkm_udevice *udev, void *data, u32 size)
case
NV_C0
:
args
->
v0
.
family
=
NV_DEVICE_INFO_V0_FERMI
;
break
;
case
NV_E0
:
args
->
v0
.
family
=
NV_DEVICE_INFO_V0_KEPLER
;
break
;
case
GM100
:
args
->
v0
.
family
=
NV_DEVICE_INFO_V0_MAXWELL
;
break
;
case
GP100
:
args
->
v0
.
family
=
NV_DEVICE_INFO_V0_PASCAL
;
break
;
default:
args
->
v0
.
family
=
0
;
break
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录