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
cee59f15
Commit
cee59f15
authored
Oct 29, 2012
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau: silence modesetting spam on pre-gf8 chipsets
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
8f0d8163
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
20 deletions
+19
-20
drivers/gpu/drm/nouveau/nv04_dac.c
drivers/gpu/drm/nouveau/nv04_dac.c
+8
-8
drivers/gpu/drm/nouveau/nv04_dfp.c
drivers/gpu/drm/nouveau/nv04_dfp.c
+7
-7
drivers/gpu/drm/nouveau/nv04_tv.c
drivers/gpu/drm/nouveau/nv04_tv.c
+4
-5
No files found.
drivers/gpu/drm/nouveau/nv04_dac.c
View file @
cee59f15
...
...
@@ -220,7 +220,7 @@ static enum drm_connector_status nv04_dac_detect(struct drm_encoder *encoder,
NVWriteVgaCrtc
(
dev
,
0
,
NV_CIO_CR_MODE_INDEX
,
saved_cr_mode
);
if
(
blue
==
0x18
)
{
NV_
INFO
(
drm
,
"Load detected on head A
\n
"
);
NV_
DEBUG
(
drm
,
"Load detected on head A
\n
"
);
return
connector_status_connected
;
}
...
...
@@ -338,7 +338,7 @@ nv17_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
if
(
nv17_dac_sample_load
(
encoder
)
&
NV_PRAMDAC_TEST_CONTROL_SENSEB_ALLHI
)
{
NV_
INFO
(
drm
,
"Load detected on output %c
\n
"
,
NV_
DEBUG
(
drm
,
"Load detected on output %c
\n
"
,
'@'
+
ffs
(
dcb
->
or
));
return
connector_status_connected
;
}
else
{
...
...
@@ -413,7 +413,7 @@ static void nv04_dac_commit(struct drm_encoder *encoder)
helper
->
dpms
(
encoder
,
DRM_MODE_DPMS_ON
);
NV_
INFO
(
drm
,
"Output %s is running on CRTC %d using output %c
\n
"
,
NV_
DEBUG
(
drm
,
"Output %s is running on CRTC %d using output %c
\n
"
,
drm_get_connector_name
(
&
nouveau_encoder_connector_get
(
nv_encoder
)
->
base
),
nv_crtc
->
index
,
'@'
+
ffs
(
nv_encoder
->
dcb
->
or
));
}
...
...
@@ -461,7 +461,7 @@ static void nv04_dac_dpms(struct drm_encoder *encoder, int mode)
return
;
nv_encoder
->
last_dpms
=
mode
;
NV_
INFO
(
drm
,
"Setting dpms mode %d on vga encoder (output %d)
\n
"
,
NV_
DEBUG
(
drm
,
"Setting dpms mode %d on vga encoder (output %d)
\n
"
,
mode
,
nv_encoder
->
dcb
->
index
);
nv04_dac_update_dacclk
(
encoder
,
mode
==
DRM_MODE_DPMS_ON
);
...
...
drivers/gpu/drm/nouveau/nv04_dfp.c
View file @
cee59f15
...
...
@@ -476,7 +476,7 @@ static void nv04_dfp_commit(struct drm_encoder *encoder)
helper
->
dpms
(
encoder
,
DRM_MODE_DPMS_ON
);
NV_
INFO
(
drm
,
"Output %s is running on CRTC %d using output %c
\n
"
,
NV_
DEBUG
(
drm
,
"Output %s is running on CRTC %d using output %c
\n
"
,
drm_get_connector_name
(
&
nouveau_encoder_connector_get
(
nv_encoder
)
->
base
),
nv_crtc
->
index
,
'@'
+
ffs
(
nv_encoder
->
dcb
->
or
));
}
...
...
@@ -520,7 +520,7 @@ static void nv04_lvds_dpms(struct drm_encoder *encoder, int mode)
return
;
nv_encoder
->
last_dpms
=
mode
;
NV_
INFO
(
drm
,
"Setting dpms mode %d on lvds encoder (output %d)
\n
"
,
NV_
DEBUG
(
drm
,
"Setting dpms mode %d on lvds encoder (output %d)
\n
"
,
mode
,
nv_encoder
->
dcb
->
index
);
if
(
was_powersaving
&&
is_powersaving_dpms
(
mode
))
...
...
@@ -565,7 +565,7 @@ static void nv04_tmds_dpms(struct drm_encoder *encoder, int mode)
return
;
nv_encoder
->
last_dpms
=
mode
;
NV_
INFO
(
drm
,
"Setting dpms mode %d on tmds encoder (output %d)
\n
"
,
NV_
DEBUG
(
drm
,
"Setting dpms mode %d on tmds encoder (output %d)
\n
"
,
mode
,
nv_encoder
->
dcb
->
index
);
nv04_dfp_update_backlight
(
encoder
,
mode
);
...
...
drivers/gpu/drm/nouveau/nv04_tv.c
View file @
cee59f15
...
...
@@ -75,7 +75,7 @@ static void nv04_tv_dpms(struct drm_encoder *encoder, int mode)
struct
nv04_mode_state
*
state
=
&
nv04_display
(
dev
)
->
mode_reg
;
uint8_t
crtc1A
;
NV_
INFO
(
drm
,
"Setting dpms mode %d on TV encoder (output %d)
\n
"
,
NV_
DEBUG
(
drm
,
"Setting dpms mode %d on TV encoder (output %d)
\n
"
,
mode
,
nv_encoder
->
dcb
->
index
);
state
->
pllsel
&=
~
(
PLLSEL_TV_CRTC1_MASK
|
PLLSEL_TV_CRTC2_MASK
);
...
...
@@ -167,9 +167,8 @@ static void nv04_tv_commit(struct drm_encoder *encoder)
helper
->
dpms
(
encoder
,
DRM_MODE_DPMS_ON
);
NV_INFO
(
drm
,
"Output %s is running on CRTC %d using output %c
\n
"
,
drm_get_connector_name
(
&
nouveau_encoder_connector_get
(
nv_encoder
)
->
base
),
nv_crtc
->
index
,
'@'
+
ffs
(
nv_encoder
->
dcb
->
or
));
NV_DEBUG
(
drm
,
"Output %s is running on CRTC %d using output %c
\n
"
,
drm_get_connector_name
(
&
nouveau_encoder_connector_get
(
nv_encoder
)
->
base
),
nv_crtc
->
index
,
'@'
+
ffs
(
nv_encoder
->
dcb
->
or
));
}
static
void
nv04_tv_destroy
(
struct
drm_encoder
*
encoder
)
...
...
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