Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
ab6f8e32
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看板
提交
ab6f8e32
编写于
9月 19, 2010
作者:
C
Chris Wilson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/i915/ringbuffer: whitespace cleanup
Signed-off-by:
N
Chris Wilson
<
chris@chris-wilson.co.uk
>
上级
a9db5c8f
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
68 addition
and
65 deletion
+68
-65
drivers/gpu/drm/i915/intel_ringbuffer.c
drivers/gpu/drm/i915/intel_ringbuffer.c
+64
-59
drivers/gpu/drm/i915/intel_ringbuffer.h
drivers/gpu/drm/i915/intel_ringbuffer.h
+4
-6
未找到文件。
drivers/gpu/drm/i915/intel_ringbuffer.c
浏览文件 @
ab6f8e32
...
...
@@ -362,7 +362,7 @@ static void render_setup_status_page(struct drm_device *dev,
}
void
static
void
bsd_ring_flush
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
,
u32
invalidate_domains
,
...
...
@@ -374,7 +374,7 @@ bsd_ring_flush(struct drm_device *dev,
intel_ring_advance
(
dev
,
ring
);
}
static
inline
unsigned
int
bsd_ring_get_active_head
(
struct
drm_device
*
dev
,
static
unsigned
int
bsd_ring_get_active_head
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
)
{
drm_i915_private_t
*
dev_priv
=
dev
->
dev_private
;
...
...
@@ -584,7 +584,6 @@ static int init_status_page(struct drm_device *dev,
return
ret
;
}
int
intel_init_ring_buffer
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
)
{
...
...
@@ -672,7 +671,7 @@ void intel_cleanup_ring_buffer(struct drm_device *dev,
cleanup_status_page
(
dev
,
ring
);
}
int
intel_wrap_ring_buffer
(
struct
drm_device
*
dev
,
static
int
intel_wrap_ring_buffer
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
)
{
unsigned
int
*
virt
;
...
...
@@ -729,7 +728,8 @@ int intel_wait_ring_buffer(struct drm_device *dev,
}
void
intel_ring_begin
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
,
int
num_dwords
)
struct
intel_ring_buffer
*
ring
,
int
num_dwords
)
{
int
n
=
4
*
num_dwords
;
if
(
unlikely
(
ring
->
tail
+
n
>
ring
->
size
))
...
...
@@ -807,7 +807,7 @@ static void gen6_bsd_setup_status_page(struct drm_device *dev,
I915_READ
(
GEN6_BSD_HWS_PGA
);
}
static
inline
void
gen6_bsd_ring_set_tail
(
struct
drm_device
*
dev
,
static
void
gen6_bsd_ring_set_tail
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
,
u32
value
)
{
...
...
@@ -830,7 +830,7 @@ static inline void gen6_bsd_ring_set_tail(struct drm_device *dev,
GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE
);
}
static
inline
unsigned
int
gen6_bsd_ring_get_active_head
(
struct
drm_device
*
dev
,
static
unsigned
int
gen6_bsd_ring_get_active_head
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
)
{
drm_i915_private_t
*
dev_priv
=
dev
->
dev_private
;
...
...
@@ -858,11 +858,16 @@ gen6_bsd_ring_dispatch_gem_execbuffer(struct drm_device *dev,
uint64_t
exec_offset
)
{
uint32_t
exec_start
;
exec_start
=
(
uint32_t
)
exec_offset
+
exec
->
batch_start_offset
;
intel_ring_begin
(
dev
,
ring
,
2
);
intel_ring_emit
(
dev
,
ring
,
MI_BATCH_BUFFER_START
|
MI_BATCH_NON_SECURE_I965
);
/* bit0-7 is the length on GEN6+ */
intel_ring_emit
(
dev
,
ring
,
MI_BATCH_BUFFER_START
|
MI_BATCH_NON_SECURE_I965
);
/* bit0-7 is the length on GEN6+ */
intel_ring_emit
(
dev
,
ring
,
exec_start
);
intel_ring_advance
(
dev
,
ring
);
return
0
;
}
...
...
drivers/gpu/drm/i915/intel_ringbuffer.h
浏览文件 @
ab6f8e32
...
...
@@ -109,8 +109,6 @@ void intel_cleanup_ring_buffer(struct drm_device *dev,
struct
intel_ring_buffer
*
ring
);
int
intel_wait_ring_buffer
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
,
int
n
);
int
intel_wrap_ring_buffer
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
);
void
intel_ring_begin
(
struct
drm_device
*
dev
,
struct
intel_ring_buffer
*
ring
,
int
n
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录