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
Kirill Smelkov
linux
Commits
a74f8375
Commit
a74f8375
authored
Nov 17, 2016
by
Tvrtko Ursulin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/i915: Only dump possible panel fitter config for the platform
Signed-off-by:
Tvrtko Ursulin
<
tvrtko.ursulin@intel.com
>
parent
dd2f616d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_display.c
+12
-8
No files found.
drivers/gpu/drm/i915/intel_display.c
View file @
a74f8375
...
...
@@ -12773,14 +12773,18 @@ static void intel_dump_pipe_config(struct intel_crtc *crtc,
crtc
->
num_scalers
,
pipe_config
->
scaler_state
.
scaler_users
,
pipe_config
->
scaler_state
.
scaler_id
);
DRM_DEBUG_KMS
(
"gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x
\n
"
,
pipe_config
->
gmch_pfit
.
control
,
pipe_config
->
gmch_pfit
.
pgm_ratios
,
pipe_config
->
gmch_pfit
.
lvds_border_bits
);
DRM_DEBUG_KMS
(
"pch pfit: pos: 0x%08x, size: 0x%08x, %s
\n
"
,
pipe_config
->
pch_pfit
.
pos
,
pipe_config
->
pch_pfit
.
size
,
pipe_config
->
pch_pfit
.
enabled
?
"enabled"
:
"disabled"
);
if
(
HAS_GMCH_DISPLAY
(
dev_priv
))
DRM_DEBUG_KMS
(
"gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x
\n
"
,
pipe_config
->
gmch_pfit
.
control
,
pipe_config
->
gmch_pfit
.
pgm_ratios
,
pipe_config
->
gmch_pfit
.
lvds_border_bits
);
else
DRM_DEBUG_KMS
(
"pch pfit: pos: 0x%08x, size: 0x%08x, %s
\n
"
,
pipe_config
->
pch_pfit
.
pos
,
pipe_config
->
pch_pfit
.
size
,
pipe_config
->
pch_pfit
.
enabled
?
"enabled"
:
"disabled"
);
DRM_DEBUG_KMS
(
"ips: %i, double wide: %i
\n
"
,
pipe_config
->
ips_enabled
,
pipe_config
->
double_wide
);
...
...
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