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
Open sidebar
OpenBMC Firmware
talos-obmc-linux
Commits
7a2e4e03
Commit
7a2e4e03
authored
14 years ago
by
Ben Skeggs
Browse files
Options
Download
Email Patches
Plain Diff
drm/nv50: fix memory detection for cards with >=4GiB VRAM
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
fb4f5621
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
drivers/gpu/drm/nouveau/nouveau_mem.c
drivers/gpu/drm/nouveau/nouveau_mem.c
+6
-1
No files found.
drivers/gpu/drm/nouveau/nouveau_mem.c
View file @
7a2e4e03
...
...
@@ -364,9 +364,14 @@ nouveau_mem_detect(struct drm_device *dev)
}
else
if
(
dev_priv
->
flags
&
(
NV_NFORCE
|
NV_NFORCE2
))
{
dev_priv
->
vram_size
=
nouveau_mem_detect_nforce
(
dev
);
}
else
{
}
else
if
(
dev_priv
->
card_type
<
NV_50
)
{
dev_priv
->
vram_size
=
nv_rd32
(
dev
,
NV04_FIFO_DATA
);
dev_priv
->
vram_size
&=
NV10_FIFO_DATA_RAM_AMOUNT_MB_MASK
;
}
else
{
dev_priv
->
vram_size
=
nv_rd32
(
dev
,
NV04_FIFO_DATA
);
dev_priv
->
vram_size
|=
(
dev_priv
->
vram_size
&
0xff
)
<<
32
;
dev_priv
->
vram_size
&=
0xffffffff00
;
if
(
dev_priv
->
chipset
==
0xaa
||
dev_priv
->
chipset
==
0xac
)
{
dev_priv
->
vram_sys_base
=
nv_rd32
(
dev
,
0x100e10
);
dev_priv
->
vram_sys_base
<<=
12
;
...
...
This diff is collapsed.
Click to expand it.
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