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
nexedi
linux
Commits
694931d2
Commit
694931d2
authored
May 01, 2012
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nv50/fifo: construct playlist from hw context table state
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
67b342ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
14 deletions
+7
-14
drivers/gpu/drm/nouveau/nv50_fifo.c
drivers/gpu/drm/nouveau/nv50_fifo.c
+7
-14
No files found.
drivers/gpu/drm/nouveau/nv50_fifo.c
View file @
694931d2
...
...
@@ -36,25 +36,22 @@ nv50_fifo_playlist_update(struct drm_device *dev)
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_fifo_engine
*
pfifo
=
&
dev_priv
->
engine
.
fifo
;
struct
nouveau_gpuobj
*
cur
;
int
i
,
nr
;
int
i
,
p
;
NV_DEBUG
(
dev
,
"
\n
"
);
cur
=
pfifo
->
playlist
[
pfifo
->
cur_playlist
];
pfifo
->
cur_playlist
=
!
pfifo
->
cur_playlist
;
/* We never schedule channel 0 or 127 */
for
(
i
=
1
,
nr
=
0
;
i
<
127
;
i
++
)
{
if
(
dev_priv
->
channels
.
ptr
[
i
]
&&
dev_priv
->
channels
.
ptr
[
i
]
->
ramfc
)
{
nv_wo32
(
cur
,
(
nr
*
4
),
i
);
nr
++
;
}
for
(
i
=
0
,
p
=
0
;
i
<
pfifo
->
channels
;
i
++
)
{
if
(
nv_rd32
(
dev
,
0x002600
+
(
i
*
4
))
&
0x80000000
)
nv_wo32
(
cur
,
p
++
*
4
,
i
);
}
dev_priv
->
engine
.
instmem
.
flush
(
dev
);
nv_wr32
(
dev
,
0x32f4
,
cur
->
vinst
>>
12
);
nv_wr32
(
dev
,
0x32ec
,
nr
);
nv_wr32
(
dev
,
0x32ec
,
p
);
nv_wr32
(
dev
,
0x2500
,
0x101
);
}
...
...
@@ -301,7 +298,6 @@ nv50_fifo_destroy_context(struct nouveau_channel *chan)
struct
drm_device
*
dev
=
chan
->
dev
;
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_fifo_engine
*
pfifo
=
&
dev_priv
->
engine
.
fifo
;
struct
nouveau_gpuobj
*
ramfc
=
NULL
;
unsigned
long
flags
;
NV_DEBUG
(
dev
,
"ch%d
\n
"
,
chan
->
id
);
...
...
@@ -319,9 +315,6 @@ nv50_fifo_destroy_context(struct nouveau_channel *chan)
nv_wr32
(
dev
,
NV04_PFIFO_CACHE1_PULL0
,
1
);
}
/* This will ensure the channel is seen as disabled. */
nouveau_gpuobj_ref
(
chan
->
ramfc
,
&
ramfc
);
nouveau_gpuobj_ref
(
NULL
,
&
chan
->
ramfc
);
nv50_fifo_channel_disable
(
dev
,
chan
->
id
);
/* Dummy channel, also used on ch 127 */
...
...
@@ -337,7 +330,7 @@ nv50_fifo_destroy_context(struct nouveau_channel *chan)
iounmap
(
chan
->
user
);
chan
->
user
=
NULL
;
}
nouveau_gpuobj_ref
(
NULL
,
&
ramfc
);
nouveau_gpuobj_ref
(
NULL
,
&
chan
->
ramfc
);
nouveau_gpuobj_ref
(
NULL
,
&
chan
->
cache
);
}
...
...
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