Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
igt-gpu-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
55
Issues
55
List
Boards
Labels
Service Desk
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
drm
igt-gpu-tools
Commits
db91f220
Commit
db91f220
authored
Aug 25, 2010
by
Chris Wilson
🤔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg dumper: Add panel backlight detailed information
Signed-off-by:
Chris Wilson
<
chris@chris-wilson.co.uk
>
parent
74c8c8d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
tools/intel_reg_dumper.c
tools/intel_reg_dumper.c
+10
-2
No files found.
tools/intel_reg_dumper.c
View file @
db91f220
...
...
@@ -1432,6 +1432,14 @@ DEBUGSTRING(snb_debug_trans_dp_ctl)
enable
,
port
,
bpc
,
vsync
,
hsync
);
}
DEBUGSTRING
(
ilk_debug_pp_control
)
{
asprintf
(
result
,
"blacklight %s, %spower down on reset, panel %s"
,
(
val
&
(
1
<<
2
))
?
"enabled"
:
"disabled"
,
(
val
&
(
1
<<
1
))
?
""
:
"do not "
,
(
val
&
(
1
<<
0
))
?
"on"
:
"off"
);
}
static
struct
reg_debug
ironlake_debug_regs
[]
=
{
DEFINEREG
(
PGETBL_CTL
),
DEFINEREG
(
GEN6_INSTDONE_1
),
...
...
@@ -1624,8 +1632,8 @@ static struct reg_debug ironlake_debug_regs[] = {
DEFINEREG
(
BLC_PWM_PCH_CTL1
),
DEFINEREG
(
BLC_PWM_PCH_CTL2
),
DEFINEREG
(
PCH_PP_STATUS
),
DEFINEREG
(
PCH_PP_CONTROL
),
DEFINEREG
2
(
PCH_PP_STATUS
,
i830_debug_pp_status
),
DEFINEREG
2
(
PCH_PP_CONTROL
,
ilk_debug_pp_control
),
DEFINEREG
(
PCH_PP_ON_DELAYS
),
DEFINEREG
(
PCH_PP_OFF_DELAYS
),
DEFINEREG
(
PCH_PP_DIVISOR
),
...
...
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