Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
9909a795
Commit
9909a795
authored
Sep 26, 2016
by
Alex Deucher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/amdgpu/si/dpm: sync up quirks from radeon
Signed-off-by:
Alex Deucher
<
alexander.deucher@amd.com
>
parent
4cd00d37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
drivers/gpu/drm/amd/amdgpu/si_dpm.c
drivers/gpu/drm/amd/amdgpu/si_dpm.c
+13
-0
No files found.
drivers/gpu/drm/amd/amdgpu/si_dpm.c
View file @
9909a795
...
...
@@ -3023,9 +3023,12 @@ static struct si_dpm_quirk si_dpm_quirk_list[] = {
/* PITCAIRN - https://bugs.freedesktop.org/show_bug.cgi?id=76490 */
{
PCI_VENDOR_ID_ATI
,
0x6810
,
0x1462
,
0x3036
,
0
,
120000
},
{
PCI_VENDOR_ID_ATI
,
0x6811
,
0x174b
,
0xe271
,
0
,
120000
},
{
PCI_VENDOR_ID_ATI
,
0x6811
,
0x174b
,
0x2015
,
0
,
120000
},
{
PCI_VENDOR_ID_ATI
,
0x6810
,
0x174b
,
0xe271
,
85000
,
90000
},
{
PCI_VENDOR_ID_ATI
,
0x6811
,
0x1462
,
0x2015
,
0
,
120000
},
{
PCI_VENDOR_ID_ATI
,
0x6811
,
0x1043
,
0x2015
,
0
,
120000
},
{
PCI_VENDOR_ID_ATI
,
0x6811
,
0x148c
,
0x2015
,
0
,
120000
},
{
PCI_VENDOR_ID_ATI
,
0x6810
,
0x1682
,
0x9275
,
0
,
120000
},
{
0
,
0
,
0
,
0
},
};
...
...
@@ -3486,6 +3489,16 @@ static void si_apply_state_adjust_rules(struct amdgpu_device *adev,
}
++
p
;
}
/* limit mclk on all R7 370 parts for stability */
if
(
adev
->
pdev
->
device
==
0x6811
&&
adev
->
pdev
->
revision
==
0x81
)
max_mclk
=
120000
;
/* limit sclk/mclk on Jet parts for stability */
if
(
adev
->
pdev
->
device
==
0x6665
&&
adev
->
pdev
->
revision
==
0xc3
)
{
max_sclk
=
75000
;
max_mclk
=
80000
;
}
if
(
rps
->
vce_active
)
{
rps
->
evclk
=
adev
->
pm
.
dpm
.
vce_states
[
adev
->
pm
.
dpm
.
vce_level
].
evclk
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment