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
2b287aeb
Commit
2b287aeb
authored
Jan 15, 2020
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/flcn/cmdq: drop nvkm_msgqueue argument to functions
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
baafecbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
22 deletions
+18
-22
drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.c
drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.c
+18
-22
No files found.
drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.c
View file @
2b287aeb
...
@@ -23,12 +23,10 @@
...
@@ -23,12 +23,10 @@
#include "qmgr.h"
#include "qmgr.h"
static
bool
static
bool
cmd_queue_has_room
(
struct
nvkm_msgqueue
*
priv
,
cmd_queue_has_room
(
struct
nvkm_msgqueue_queue
*
queue
,
u32
size
,
bool
*
rewind
)
struct
nvkm_msgqueue_queue
*
queue
,
u32
size
,
bool
*
rewind
)
{
{
struct
nvkm_falcon
*
falcon
=
priv
->
falcon
;
u32
head
=
nvkm_falcon_rd32
(
queue
->
qmgr
->
falcon
,
queue
->
head_reg
);
u32
head
=
nvkm_falcon_rd32
(
falcon
,
queue
->
head_reg
);
u32
tail
=
nvkm_falcon_rd32
(
queue
->
qmgr
->
falcon
,
queue
->
tail_reg
);
u32
tail
=
nvkm_falcon_rd32
(
falcon
,
queue
->
tail_reg
);
u32
free
;
u32
free
;
size
=
ALIGN
(
size
,
QUEUE_ALIGNMENT
);
size
=
ALIGN
(
size
,
QUEUE_ALIGNMENT
);
...
@@ -50,10 +48,10 @@ cmd_queue_has_room(struct nvkm_msgqueue *priv,
...
@@ -50,10 +48,10 @@ cmd_queue_has_room(struct nvkm_msgqueue *priv,
}
}
static
void
static
void
cmd_queue_push
(
struct
nvkm_msgqueue
*
priv
,
struct
nvkm_msgqueue_queue
*
queue
,
cmd_queue_push
(
struct
nvkm_msgqueue_queue
*
queue
,
void
*
data
,
u32
size
)
void
*
data
,
u32
size
)
{
{
nvkm_falcon_load_dmem
(
priv
->
falcon
,
data
,
queue
->
position
,
size
,
0
);
struct
nvkm_falcon
*
falcon
=
queue
->
qmgr
->
falcon
;
nvkm_falcon_load_dmem
(
falcon
,
data
,
queue
->
position
,
size
,
0
);
queue
->
position
+=
ALIGN
(
size
,
QUEUE_ALIGNMENT
);
queue
->
position
+=
ALIGN
(
size
,
QUEUE_ALIGNMENT
);
}
}
...
@@ -61,27 +59,26 @@ cmd_queue_push(struct nvkm_msgqueue *priv, struct nvkm_msgqueue_queue *queue,
...
@@ -61,27 +59,26 @@ cmd_queue_push(struct nvkm_msgqueue *priv, struct nvkm_msgqueue_queue *queue,
#define MSGQUEUE_UNIT_REWIND 0x00
#define MSGQUEUE_UNIT_REWIND 0x00
static
void
static
void
cmd_queue_rewind
(
struct
nvkm_msgqueue
*
priv
,
struct
nvkm_msgqueue
_queue
*
queue
)
cmd_queue_rewind
(
struct
nvkm_msgqueue_queue
*
queue
)
{
{
struct
nvkm_msgqueue_hdr
cmd
;
struct
nvkm_msgqueue_hdr
cmd
;
cmd
.
unit_id
=
MSGQUEUE_UNIT_REWIND
;
cmd
.
unit_id
=
MSGQUEUE_UNIT_REWIND
;
cmd
.
size
=
sizeof
(
cmd
);
cmd
.
size
=
sizeof
(
cmd
);
cmd_queue_push
(
priv
,
queue
,
&
cmd
,
cmd
.
size
);
cmd_queue_push
(
queue
,
&
cmd
,
cmd
.
size
);
queue
->
position
=
queue
->
offset
;
queue
->
position
=
queue
->
offset
;
}
}
static
int
static
int
cmd_queue_open
(
struct
nvkm_msgqueue
*
priv
,
struct
nvkm_msgqueue_queue
*
queue
,
cmd_queue_open
(
struct
nvkm_msgqueue_queue
*
queue
,
u32
size
)
u32
size
)
{
{
struct
nvkm_falcon
*
falcon
=
priv
->
falcon
;
struct
nvkm_falcon
*
falcon
=
queue
->
qmgr
->
falcon
;
bool
rewind
=
false
;
bool
rewind
=
false
;
mutex_lock
(
&
queue
->
mutex
);
mutex_lock
(
&
queue
->
mutex
);
if
(
!
cmd_queue_has_room
(
priv
,
queue
,
size
,
&
rewind
))
{
if
(
!
cmd_queue_has_room
(
queue
,
size
,
&
rewind
))
{
FLCNQ_DBG
(
queue
,
"queue full"
);
FLCNQ_DBG
(
queue
,
"queue full"
);
mutex_unlock
(
&
queue
->
mutex
);
mutex_unlock
(
&
queue
->
mutex
);
return
-
EAGAIN
;
return
-
EAGAIN
;
...
@@ -90,35 +87,34 @@ cmd_queue_open(struct nvkm_msgqueue *priv, struct nvkm_msgqueue_queue *queue,
...
@@ -90,35 +87,34 @@ cmd_queue_open(struct nvkm_msgqueue *priv, struct nvkm_msgqueue_queue *queue,
queue
->
position
=
nvkm_falcon_rd32
(
falcon
,
queue
->
head_reg
);
queue
->
position
=
nvkm_falcon_rd32
(
falcon
,
queue
->
head_reg
);
if
(
rewind
)
if
(
rewind
)
cmd_queue_rewind
(
priv
,
queue
);
cmd_queue_rewind
(
queue
);
return
0
;
return
0
;
}
}
static
void
static
void
cmd_queue_close
(
struct
nvkm_msgqueue
*
priv
,
struct
nvkm_msgqueue
_queue
*
queue
)
cmd_queue_close
(
struct
nvkm_msgqueue_queue
*
queue
)
{
{
nvkm_falcon_wr32
(
queue
->
qmgr
->
falcon
,
queue
->
head_reg
,
queue
->
position
);
nvkm_falcon_wr32
(
queue
->
qmgr
->
falcon
,
queue
->
head_reg
,
queue
->
position
);
mutex_unlock
(
&
queue
->
mutex
);
mutex_unlock
(
&
queue
->
mutex
);
}
}
static
int
static
int
cmd_write
(
struct
nvkm_msgqueue
*
priv
,
struct
nvkm_msgqueue_hdr
*
cmd
,
cmd_write
(
struct
nvkm_msgqueue_queue
*
queue
,
struct
nvkm_msgqueue_hdr
*
cmd
)
struct
nvkm_msgqueue_queue
*
queue
)
{
{
static
unsigned
timeout
=
2000
;
static
unsigned
timeout
=
2000
;
unsigned
long
end_jiffies
=
jiffies
+
msecs_to_jiffies
(
timeout
);
unsigned
long
end_jiffies
=
jiffies
+
msecs_to_jiffies
(
timeout
);
int
ret
=
-
EAGAIN
;
int
ret
=
-
EAGAIN
;
while
(
ret
==
-
EAGAIN
&&
time_before
(
jiffies
,
end_jiffies
))
while
(
ret
==
-
EAGAIN
&&
time_before
(
jiffies
,
end_jiffies
))
ret
=
cmd_queue_open
(
priv
,
queue
,
cmd
->
size
);
ret
=
cmd_queue_open
(
queue
,
cmd
->
size
);
if
(
ret
)
{
if
(
ret
)
{
FLCNQ_ERR
(
queue
,
"timeout waiting for queue space"
);
FLCNQ_ERR
(
queue
,
"timeout waiting for queue space"
);
return
ret
;
return
ret
;
}
}
cmd_queue_push
(
priv
,
queue
,
cmd
,
cmd
->
size
);
cmd_queue_push
(
queue
,
cmd
,
cmd
->
size
);
cmd_queue_close
(
priv
,
queue
);
cmd_queue_close
(
queue
);
return
ret
;
return
ret
;
}
}
...
@@ -158,7 +154,7 @@ nvkm_msgqueue_post(struct nvkm_msgqueue *priv, enum msgqueue_msg_priority prio,
...
@@ -158,7 +154,7 @@ nvkm_msgqueue_post(struct nvkm_msgqueue *priv, enum msgqueue_msg_priority prio,
seq
->
callback
=
cb
;
seq
->
callback
=
cb
;
seq
->
priv
=
priv
;
seq
->
priv
=
priv
;
ret
=
cmd_write
(
priv
,
cmd
,
queue
);
ret
=
cmd_write
(
queue
,
cmd
);
if
(
ret
)
{
if
(
ret
)
{
seq
->
state
=
SEQ_STATE_PENDING
;
seq
->
state
=
SEQ_STATE_PENDING
;
nvkm_falcon_qmgr_seq_release
(
queue
->
qmgr
,
seq
);
nvkm_falcon_qmgr_seq_release
(
queue
->
qmgr
,
seq
);
...
...
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