Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
957e18a7
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看板
提交
957e18a7
编写于
11月 01, 2017
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/mmu/nv04-nv4x: type-based vram allocation and bar mapping
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
eaf1a691
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
93 addition
and
0 deletion
+93
-0
drivers/gpu/drm/nouveau/include/nvif/class.h
drivers/gpu/drm/nouveau/include/nvif/class.h
+1
-0
drivers/gpu/drm/nouveau/include/nvif/if000b.h
drivers/gpu/drm/nouveau/include/nvif/if000b.h
+11
-0
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/Kbuild
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/Kbuild
+1
-0
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mem.h
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mem.h
+5
-0
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv04.c
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv04.c
+69
-0
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv04.c
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv04.c
+2
-0
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv41.c
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv41.c
+2
-0
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv44.c
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv44.c
+2
-0
未找到文件。
drivers/gpu/drm/nouveau/include/nvif/class.h
浏览文件 @
957e18a7
...
...
@@ -15,6 +15,7 @@
#define NVIF_CLASS_SW_GF100
/* if0005.h */
-0x00000007
#define NVIF_CLASS_MEM
/* if000a.h */
0x8000000a
#define NVIF_CLASS_MEM_NV04
/* if000b.h */
0x8000000b
#define NVIF_CLASS_VMM
/* if000c.h */
0x8000000c
#define NVIF_CLASS_VMM_NV04
/* if000d.h */
0x8000000d
...
...
drivers/gpu/drm/nouveau/include/nvif/if000b.h
0 → 100644
浏览文件 @
957e18a7
#ifndef __NVIF_IF000B_H__
#define __NVIF_IF000B_H__
#include "if000a.h"
struct
nv04_mem_vn
{
/* nvkm_mem_vX ... */
};
struct
nv04_mem_map_vn
{
};
#endif
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/Kbuild
浏览文件 @
957e18a7
...
...
@@ -13,6 +13,7 @@ nvkm-y += nvkm/subdev/mmu/gp100.o
nvkm-y += nvkm/subdev/mmu/gp10b.o
nvkm-y += nvkm/subdev/mmu/mem.o
nvkm-y += nvkm/subdev/mmu/memnv04.o
nvkm-y += nvkm/subdev/mmu/vmm.o
nvkm-y += nvkm/subdev/mmu/vmmnv04.o
...
...
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mem.h
浏览文件 @
957e18a7
...
...
@@ -5,4 +5,9 @@
int
nvkm_mem_new_type
(
struct
nvkm_mmu
*
,
int
type
,
u8
page
,
u64
size
,
void
*
argv
,
u32
argc
,
struct
nvkm_memory
**
);
int
nvkm_mem_map_host
(
struct
nvkm_memory
*
,
void
**
pmap
);
int
nv04_mem_new
(
struct
nvkm_mmu
*
,
int
,
u8
,
u64
,
void
*
,
u32
,
struct
nvkm_memory
**
);
int
nv04_mem_map
(
struct
nvkm_mmu
*
,
struct
nvkm_memory
*
,
void
*
,
u32
,
u64
*
,
u64
*
,
struct
nvkm_vma
**
);
#endif
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv04.c
0 → 100644
浏览文件 @
957e18a7
/*
* Copyright 2017 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "mem.h"
#include <core/memory.h>
#include <subdev/fb.h>
#include <nvif/if000b.h>
#include <nvif/unpack.h>
int
nv04_mem_map
(
struct
nvkm_mmu
*
mmu
,
struct
nvkm_memory
*
memory
,
void
*
argv
,
u32
argc
,
u64
*
paddr
,
u64
*
psize
,
struct
nvkm_vma
**
pvma
)
{
union
{
struct
nv04_mem_map_vn
vn
;
}
*
args
=
argv
;
struct
nvkm_device
*
device
=
mmu
->
subdev
.
device
;
const
u64
addr
=
nvkm_memory_addr
(
memory
);
int
ret
=
-
ENOSYS
;
if
((
ret
=
nvif_unvers
(
ret
,
&
argv
,
&
argc
,
args
->
vn
)))
return
ret
;
*
paddr
=
device
->
func
->
resource_addr
(
device
,
1
)
+
addr
;
*
psize
=
nvkm_memory_size
(
memory
);
*
pvma
=
ERR_PTR
(
-
ENODEV
);
return
0
;
}
int
nv04_mem_new
(
struct
nvkm_mmu
*
mmu
,
int
type
,
u8
page
,
u64
size
,
void
*
argv
,
u32
argc
,
struct
nvkm_memory
**
pmemory
)
{
union
{
struct
nv04_mem_vn
vn
;
}
*
args
=
argv
;
int
ret
=
-
ENOSYS
;
if
((
ret
=
nvif_unvers
(
ret
,
&
argv
,
&
argc
,
args
->
vn
)))
return
ret
;
if
(
mmu
->
type
[
type
].
type
&
NVKM_MEM_MAPPABLE
)
type
=
NVKM_RAM_MM_NORMAL
;
else
type
=
NVKM_RAM_MM_NOMAP
;
return
nvkm_ram_get
(
mmu
->
subdev
.
device
,
type
,
0x01
,
page
,
size
,
true
,
false
,
pmemory
);
}
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv04.c
浏览文件 @
957e18a7
...
...
@@ -21,6 +21,7 @@
*
* Authors: Ben Skeggs
*/
#include "mem.h"
#include "vmm.h"
#include <nvif/class.h>
...
...
@@ -32,6 +33,7 @@ nv04_mmu = {
.
limit
=
NV04_PDMA_SIZE
,
.
dma_bits
=
32
,
.
lpg_shift
=
12
,
.
mem
=
{{
-
1
,
-
1
,
NVIF_CLASS_MEM_NV04
},
nv04_mem_new
,
nv04_mem_map
},
.
vmm
=
{{
-
1
,
-
1
,
NVIF_CLASS_VMM_NV04
},
nv04_vmm_new
,
true
},
};
...
...
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv41.c
浏览文件 @
957e18a7
...
...
@@ -21,6 +21,7 @@
*
* Authors: Ben Skeggs
*/
#include "mem.h"
#include "vmm.h"
#include <core/option.h>
...
...
@@ -44,6 +45,7 @@ nv41_mmu = {
.
limit
=
NV41_GART_SIZE
,
.
dma_bits
=
39
,
.
lpg_shift
=
12
,
.
mem
=
{{
-
1
,
-
1
,
NVIF_CLASS_MEM_NV04
},
nv04_mem_new
,
nv04_mem_map
},
.
vmm
=
{{
-
1
,
-
1
,
NVIF_CLASS_VMM_NV04
},
nv41_vmm_new
,
true
},
};
...
...
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv44.c
浏览文件 @
957e18a7
...
...
@@ -21,6 +21,7 @@
*
* Authors: Ben Skeggs
*/
#include "mem.h"
#include "vmm.h"
#include <core/option.h>
...
...
@@ -59,6 +60,7 @@ nv44_mmu = {
.
limit
=
NV44_GART_SIZE
,
.
dma_bits
=
39
,
.
lpg_shift
=
12
,
.
mem
=
{{
-
1
,
-
1
,
NVIF_CLASS_MEM_NV04
},
nv04_mem_new
,
nv04_mem_map
},
.
vmm
=
{{
-
1
,
-
1
,
NVIF_CLASS_VMM_NV04
},
nv44_vmm_new
,
true
},
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录