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
c9af47bc
Commit
c9af47bc
authored
Jan 15, 2020
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/sec2: move interrupt handler to hw-specific module
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
555a0002
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
21 deletions
+31
-21
drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.c
drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.c
+7
-21
drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp102.c
drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp102.c
+20
-0
drivers/gpu/drm/nouveau/nvkm/engine/sec2/priv.h
drivers/gpu/drm/nouveau/nvkm/engine/sec2/priv.h
+3
-0
drivers/gpu/drm/nouveau/nvkm/engine/sec2/tu102.c
drivers/gpu/drm/nouveau/nvkm/engine/sec2/tu102.c
+1
-0
No files found.
drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.c
View file @
c9af47bc
...
...
@@ -25,27 +25,6 @@
#include <core/msgqueue.h>
#include <subdev/top.h>
static
void
nvkm_sec2_intr
(
struct
nvkm_engine
*
engine
)
{
struct
nvkm_sec2
*
sec2
=
nvkm_sec2
(
engine
);
struct
nvkm_subdev
*
subdev
=
&
sec2
->
engine
.
subdev
;
struct
nvkm_falcon
*
falcon
=
&
sec2
->
falcon
;
u32
disp
=
nvkm_falcon_rd32
(
falcon
,
0x01c
);
u32
intr
=
nvkm_falcon_rd32
(
falcon
,
0x008
)
&
disp
&
~
(
disp
>>
16
);
if
(
intr
&
0x00000040
)
{
schedule_work
(
&
sec2
->
work
);
nvkm_falcon_wr32
(
falcon
,
0x004
,
0x00000040
);
intr
&=
~
0x00000040
;
}
if
(
intr
)
{
nvkm_error
(
subdev
,
"unhandled intr %08x
\n
"
,
intr
);
nvkm_falcon_wr32
(
falcon
,
0x004
,
intr
);
}
}
static
void
nvkm_sec2_recv
(
struct
work_struct
*
work
)
{
...
...
@@ -60,6 +39,13 @@ nvkm_sec2_recv(struct work_struct *work)
nvkm_msgqueue_recv
(
sec2
->
queue
);
}
static
void
nvkm_sec2_intr
(
struct
nvkm_engine
*
engine
)
{
struct
nvkm_sec2
*
sec2
=
nvkm_sec2
(
engine
);
sec2
->
func
->
intr
(
sec2
);
}
static
int
nvkm_sec2_fini
(
struct
nvkm_engine
*
engine
,
bool
suspend
)
{
...
...
drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp102.c
View file @
c9af47bc
...
...
@@ -26,6 +26,25 @@ static const struct nvkm_acr_lsf_func
gp102_sec2_acr_0
=
{
};
void
gp102_sec2_intr
(
struct
nvkm_sec2
*
sec2
)
{
struct
nvkm_subdev
*
subdev
=
&
sec2
->
engine
.
subdev
;
struct
nvkm_falcon
*
falcon
=
&
sec2
->
falcon
;
u32
disp
=
nvkm_falcon_rd32
(
falcon
,
0x01c
);
u32
intr
=
nvkm_falcon_rd32
(
falcon
,
0x008
)
&
disp
&
~
(
disp
>>
16
);
if
(
intr
&
0x00000040
)
{
schedule_work
(
&
sec2
->
work
);
nvkm_falcon_wr32
(
falcon
,
0x004
,
0x00000040
);
intr
&=
~
0x00000040
;
}
if
(
intr
)
{
nvkm_error
(
subdev
,
"unhandled intr %08x
\n
"
,
intr
);
nvkm_falcon_wr32
(
falcon
,
0x004
,
intr
);
}
}
static
const
struct
nvkm_falcon_func
gp102_sec2_flcn
=
{
...
...
@@ -44,6 +63,7 @@ gp102_sec2_flcn = {
const
struct
nvkm_sec2_func
gp102_sec2
=
{
.
flcn
=
&
gp102_sec2_flcn
,
.
intr
=
gp102_sec2_intr
,
};
MODULE_FIRMWARE
(
"nvidia/gp102/sec2/desc.bin"
);
...
...
drivers/gpu/drm/nouveau/nvkm/engine/sec2/priv.h
View file @
c9af47bc
...
...
@@ -5,8 +5,11 @@
struct
nvkm_sec2_func
{
const
struct
nvkm_falcon_func
*
flcn
;
void
(
*
intr
)(
struct
nvkm_sec2
*
);
};
void
gp102_sec2_intr
(
struct
nvkm_sec2
*
);
struct
nvkm_sec2_fwif
{
int
version
;
int
(
*
load
)(
struct
nvkm_sec2
*
,
int
ver
,
const
struct
nvkm_sec2_fwif
*
);
...
...
drivers/gpu/drm/nouveau/nvkm/engine/sec2/tu102.c
View file @
c9af47bc
...
...
@@ -38,6 +38,7 @@ tu102_sec2_flcn = {
static
const
struct
nvkm_sec2_func
tu102_sec2
=
{
.
flcn
=
&
tu102_sec2_flcn
,
.
intr
=
gp102_sec2_intr
,
};
static
int
...
...
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