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
a4309657
Commit
a4309657
authored
Nov 17, 2016
by
Tvrtko Ursulin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/i915: Dump FDI config only where applicable
Signed-off-by:
Tvrtko Ursulin
<
tvrtko.ursulin@intel.com
>
parent
f6982332
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_display.c
+13
-13
No files found.
drivers/gpu/drm/i915/intel_display.c
View file @
a4309657
...
...
@@ -12717,10 +12717,10 @@ static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
static
inline
void
intel_dump_m_n_config
(
struct
intel_crtc_state
*
pipe_config
,
char
*
id
,
struct
intel_link_m_n
*
m_n
)
unsigned
int
lane_count
,
struct
intel_link_m_n
*
m_n
)
{
DRM_DEBUG_KMS
(
"
dp: lanes: %i; %s:
gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u
\n
"
,
pipe_config
->
lane_count
,
id
,
DRM_DEBUG_KMS
(
"
%s: lanes: %i;
gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u
\n
"
,
id
,
lane_count
,
m_n
->
gmch_m
,
m_n
->
gmch_n
,
m_n
->
link_m
,
m_n
->
link_n
,
m_n
->
tu
);
}
...
...
@@ -12743,17 +12743,17 @@ static void intel_dump_pipe_config(struct intel_crtc *crtc,
DRM_DEBUG_KMS
(
"cpu_transcoder: %s
\n
"
,
transcoder_name
(
pipe_config
->
cpu_transcoder
));
DRM_DEBUG_KMS
(
"pipe bpp: %i, dithering: %i
\n
"
,
pipe_config
->
pipe_bpp
,
pipe_config
->
dither
);
DRM_DEBUG_KMS
(
"fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u
\n
"
,
pipe_config
->
has_pch_encoder
,
if
(
pipe_config
->
has_pch_encoder
)
intel_dump_m_n_config
(
pipe_config
,
"fdi"
,
pipe_config
->
fdi_lanes
,
pipe_config
->
fdi_m_n
.
gmch_m
,
pipe_config
->
fdi_m_n
.
gmch_n
,
pipe_config
->
fdi_m_n
.
link_m
,
pipe_config
->
fdi_m_n
.
link_n
,
pipe_config
->
fdi_m_n
.
tu
);
&
pipe_config
->
fdi_m_n
);
if
(
intel_crtc_has_dp_encoder
(
pipe_config
))
{
intel_dump_m_n_config
(
pipe_config
,
"m_n"
,
&
pipe_config
->
dp_m_n
);
intel_dump_m_n_config
(
pipe_config
,
"m2_n2"
,
intel_dump_m_n_config
(
pipe_config
,
"dp m_n"
,
pipe_config
->
lane_count
,
&
pipe_config
->
dp_m_n
);
intel_dump_m_n_config
(
pipe_config
,
"dp m2_n2"
,
pipe_config
->
lane_count
,
&
pipe_config
->
dp_m2_n2
);
}
...
...
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