Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
R128
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ermine
R128
Commits
9fea1bcb
Commit
9fea1bcb
authored
14 years ago
by
Ben Skeggs
Browse files
Options
Downloads
Patches
Plain Diff
drm/nv50: fix 0x100c90 init for NVAF
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
20f63afe
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/gpu/drm/nouveau/nv50_fb.c
+6
-3
6 additions, 3 deletions
drivers/gpu/drm/nouveau/nv50_fb.c
with
6 additions
and
3 deletions
drivers/gpu/drm/nouveau/nv50_fb.c
+
6
−
3
View file @
9fea1bcb
...
...
@@ -60,15 +60,18 @@ nv50_fb_init(struct drm_device *dev)
* on traps. No idea what these values mean exactly. */
switch
(
dev_priv
->
chipset
)
{
case
0x50
:
nv_wr32
(
dev
,
0x100c90
,
0x0707ff
);
nv_wr32
(
dev
,
0x100c90
,
0x0
00
707ff
);
break
;
case
0xa3
:
case
0xa5
:
case
0xa8
:
nv_wr32
(
dev
,
0x100c90
,
0x0d0fff
);
nv_wr32
(
dev
,
0x100c90
,
0x000d0fff
);
break
;
case
0xaf
:
nv_wr32
(
dev
,
0x100c90
,
0x089d1fff
);
break
;
default:
nv_wr32
(
dev
,
0x100c90
,
0x1d07ff
);
nv_wr32
(
dev
,
0x100c90
,
0x
00
1d07ff
);
break
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment