Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
3cb928ff
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看板
提交
3cb928ff
编写于
5月 09, 2013
作者:
A
Alex Deucher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/radeon: parse the samu clock voltage deps table
Signed-off-by:
N
Alex Deucher
<
alexander.deucher@amd.com
>
上级
becfa698
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
26 addition
and
0 deletion
+26
-0
drivers/gpu/drm/radeon/r600_dpm.c
drivers/gpu/drm/radeon/r600_dpm.c
+26
-0
未找到文件。
drivers/gpu/drm/radeon/r600_dpm.c
浏览文件 @
3cb928ff
...
...
@@ -1051,6 +1051,30 @@ int r600_parse_extended_power_table(struct radeon_device *rdev)
le16_to_cpu
(
limits
->
entries
[
i
].
usVoltage
);
}
}
if
((
le16_to_cpu
(
ext_hdr
->
usSize
)
>=
SIZE_OF_ATOM_PPLIB_EXTENDEDHEADER_V4
)
&&
ext_hdr
->
usSAMUTableOffset
)
{
ATOM_PPLIB_SAMClk_Voltage_Limit_Table
*
limits
=
(
ATOM_PPLIB_SAMClk_Voltage_Limit_Table
*
)
(
mode_info
->
atom_context
->
bios
+
data_offset
+
le16_to_cpu
(
ext_hdr
->
usSAMUTableOffset
)
+
1
);
u32
size
=
limits
->
numEntries
*
sizeof
(
struct
radeon_clock_voltage_dependency_entry
);
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
entries
=
kzalloc
(
size
,
GFP_KERNEL
);
if
(
!
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
entries
)
{
r600_free_extended_power_table
(
rdev
);
return
-
ENOMEM
;
}
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
count
=
limits
->
numEntries
;
for
(
i
=
0
;
i
<
limits
->
numEntries
;
i
++
)
{
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
entries
[
i
].
clk
=
le16_to_cpu
(
limits
->
entries
[
i
].
usSAMClockLow
)
|
(
limits
->
entries
[
i
].
ucSAMClockHigh
<<
16
);
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
entries
[
i
].
v
=
le16_to_cpu
(
limits
->
entries
[
i
].
usVoltage
);
}
}
if
((
le16_to_cpu
(
ext_hdr
->
usSize
)
>=
SIZE_OF_ATOM_PPLIB_EXTENDEDHEADER_V5
)
&&
ext_hdr
->
usPPMTableOffset
)
{
ATOM_PPLIB_PPM_Table
*
ppm
=
(
ATOM_PPLIB_PPM_Table
*
)
...
...
@@ -1147,6 +1171,8 @@ void r600_free_extended_power_table(struct radeon_device *rdev)
kfree
(
rdev
->
pm
.
dpm
.
dyn_state
.
vce_clock_voltage_dependency_table
.
entries
);
if
(
rdev
->
pm
.
dpm
.
dyn_state
.
uvd_clock_voltage_dependency_table
.
entries
)
kfree
(
rdev
->
pm
.
dpm
.
dyn_state
.
uvd_clock_voltage_dependency_table
.
entries
);
if
(
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
entries
)
kfree
(
rdev
->
pm
.
dpm
.
dyn_state
.
samu_clock_voltage_dependency_table
.
entries
);
}
enum
radeon_pcie_gen
r600_get_pcie_gen_support
(
struct
radeon_device
*
rdev
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录