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
59054392
Commit
59054392
authored
Nov 26, 2013
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nve0/fb/gddr5: fix an assumption of sane memory controller layout
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
2daaf5b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c
drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c
+10
-7
No files found.
drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c
View file @
59054392
...
...
@@ -134,17 +134,20 @@ struct nve0_ram {
* GDDR5
******************************************************************************/
static
void
train
(
struct
nve0_ramfuc
*
fuc
,
u32
magic
)
nve0_ram_
train
(
struct
nve0_ramfuc
*
fuc
,
u32
magic
)
{
struct
nve0_ram
*
ram
=
container_of
(
fuc
,
typeof
(
*
ram
),
fuc
);
struct
nouveau_fb
*
pfb
=
nouveau_fb
(
ram
);
const
int
mc
=
nv_rd32
(
pfb
,
0x02243c
);
int
i
;
u32
part
=
nv_rd32
(
pfb
,
0x022438
),
i
;
u32
mask
=
nv_rd32
(
pfb
,
0x022554
);
u32
addr
=
0x110974
;
ram_mask
(
fuc
,
0x10f910
,
0xbc0e0000
,
magic
);
ram_mask
(
fuc
,
0x10f914
,
0xbc0e0000
,
magic
);
for
(
i
=
0
;
i
<
mc
;
i
++
)
{
const
u32
addr
=
0x110974
+
(
i
*
0x1000
);
for
(
i
=
0
;
(
magic
&
0x80000000
)
&&
i
<
part
;
addr
+=
0x1000
,
i
++
)
{
if
(
mask
&
(
1
<<
i
))
continue
;
ram_wait
(
fuc
,
addr
,
0x0000000f
,
0x00000000
,
500000
);
}
}
...
...
@@ -518,7 +521,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq)
if
((
nv_ro08
(
bios
,
ramcfg
+
0x08
)
&
0x10
)
&&
(
ram
->
mode
==
2
)
/*XXX*/
)
{
u32
temp
=
ram_mask
(
fuc
,
0x10f294
,
0xff000000
,
0x24000000
);
train
(
fuc
,
0xa4010000
);
/*XXX*/
nve0_ram_
train
(
fuc
,
0xa4010000
);
/*XXX*/
ram_nsec
(
fuc
,
1000
);
ram_wr32
(
fuc
,
0x10f294
,
temp
);
}
...
...
@@ -572,7 +575,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq)
}
else
{
data
=
0xa40e0000
;
}
train
(
fuc
,
data
);
nve0_ram_
train
(
fuc
,
data
);
ram_nsec
(
fuc
,
1000
);
if
(
ram
->
mode
==
2
)
{
/*XXX*/
...
...
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