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
1eed206f
Commit
1eed206f
authored
Aug 20, 2015
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/ce: switch to subdev printk macros
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
7108bfe4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.c
+1
-2
drivers/gpu/drm/nouveau/nvkm/engine/ce/gm204.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gm204.c
+1
-2
drivers/gpu/drm/nouveau/nvkm/engine/ce/gt215.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gt215.c
+8
-6
No files found.
drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.c
View file @
1eed206f
...
@@ -64,11 +64,10 @@ gk104_ce_intr(struct nvkm_subdev *subdev)
...
@@ -64,11 +64,10 @@ gk104_ce_intr(struct nvkm_subdev *subdev)
{
{
struct
nvkm_device
*
device
=
subdev
->
device
;
struct
nvkm_device
*
device
=
subdev
->
device
;
const
int
idx
=
nv_subidx
(
subdev
)
-
NVDEV_ENGINE_CE0
;
const
int
idx
=
nv_subidx
(
subdev
)
-
NVDEV_ENGINE_CE0
;
struct
nvkm_engine
*
ce
=
(
void
*
)
subdev
;
u32
stat
=
nvkm_rd32
(
device
,
0x104908
+
(
idx
*
0x1000
));
u32
stat
=
nvkm_rd32
(
device
,
0x104908
+
(
idx
*
0x1000
));
if
(
stat
)
{
if
(
stat
)
{
nv
_warn
(
ce
,
"unhandled intr 0x
%08x
\n
"
,
stat
);
nv
km_warn
(
subdev
,
"intr
%08x
\n
"
,
stat
);
nvkm_wr32
(
device
,
0x104908
+
(
idx
*
0x1000
),
stat
);
nvkm_wr32
(
device
,
0x104908
+
(
idx
*
0x1000
),
stat
);
}
}
}
}
...
...
drivers/gpu/drm/nouveau/nvkm/engine/ce/gm204.c
View file @
1eed206f
...
@@ -64,11 +64,10 @@ gm204_ce_intr(struct nvkm_subdev *subdev)
...
@@ -64,11 +64,10 @@ gm204_ce_intr(struct nvkm_subdev *subdev)
{
{
struct
nvkm_device
*
device
=
subdev
->
device
;
struct
nvkm_device
*
device
=
subdev
->
device
;
const
int
idx
=
nv_subidx
(
subdev
)
-
NVDEV_ENGINE_CE0
;
const
int
idx
=
nv_subidx
(
subdev
)
-
NVDEV_ENGINE_CE0
;
struct
nvkm_engine
*
ce
=
(
void
*
)
subdev
;
u32
stat
=
nvkm_rd32
(
device
,
0x104908
+
(
idx
*
0x1000
));
u32
stat
=
nvkm_rd32
(
device
,
0x104908
+
(
idx
*
0x1000
));
if
(
stat
)
{
if
(
stat
)
{
nv
_warn
(
ce
,
"unhandled intr 0x
%08x
\n
"
,
stat
);
nv
km_warn
(
subdev
,
"intr
%08x
\n
"
,
stat
);
nvkm_wr32
(
device
,
0x104908
+
(
idx
*
0x1000
),
stat
);
nvkm_wr32
(
device
,
0x104908
+
(
idx
*
0x1000
),
stat
);
}
}
}
}
...
...
drivers/gpu/drm/nouveau/nvkm/engine/ce/gt215.c
View file @
1eed206f
...
@@ -76,6 +76,7 @@ gt215_ce_intr(struct nvkm_subdev *subdev)
...
@@ -76,6 +76,7 @@ gt215_ce_intr(struct nvkm_subdev *subdev)
struct
nvkm_engine
*
engine
=
nv_engine
(
subdev
);
struct
nvkm_engine
*
engine
=
nv_engine
(
subdev
);
struct
nvkm_falcon
*
falcon
=
(
void
*
)
subdev
;
struct
nvkm_falcon
*
falcon
=
(
void
*
)
subdev
;
struct
nvkm_object
*
engctx
;
struct
nvkm_object
*
engctx
;
const
struct
nvkm_enum
*
en
;
u32
dispatch
=
nv_ro32
(
falcon
,
0x01c
);
u32
dispatch
=
nv_ro32
(
falcon
,
0x01c
);
u32
stat
=
nv_ro32
(
falcon
,
0x008
)
&
dispatch
&
~
(
dispatch
>>
16
);
u32
stat
=
nv_ro32
(
falcon
,
0x008
)
&
dispatch
&
~
(
dispatch
>>
16
);
u64
inst
=
nv_ro32
(
falcon
,
0x050
)
&
0x3fffffff
;
u64
inst
=
nv_ro32
(
falcon
,
0x050
)
&
0x3fffffff
;
...
@@ -90,17 +91,18 @@ gt215_ce_intr(struct nvkm_subdev *subdev)
...
@@ -90,17 +91,18 @@ gt215_ce_intr(struct nvkm_subdev *subdev)
chid
=
fifo
->
chid
(
fifo
,
engctx
);
chid
=
fifo
->
chid
(
fifo
,
engctx
);
if
(
stat
&
0x00000040
)
{
if
(
stat
&
0x00000040
)
{
nv_error
(
falcon
,
"DISPATCH_ERROR ["
);
en
=
nvkm_enum_find
(
gt215_ce_isr_error_name
,
ssta
);
nvkm_enum_print
(
gt215_ce_isr_error_name
,
ssta
);
nvkm_error
(
subdev
,
"DISPATCH_ERROR %04x [%s] "
pr_cont
(
"] ch %d [0x%010llx %s] subc %d mthd 0x%04x data 0x%08x
\n
"
,
"ch %d [%010llx %s] subc %d "
chid
,
inst
<<
12
,
nvkm_client_name
(
engctx
),
subc
,
"mthd %04x data %08x
\n
"
,
mthd
,
data
);
ssta
,
en
?
en
->
name
:
""
,
chid
,
inst
<<
12
,
nvkm_client_name
(
engctx
),
subc
,
mthd
,
data
);
nv_wo32
(
falcon
,
0x004
,
0x00000040
);
nv_wo32
(
falcon
,
0x004
,
0x00000040
);
stat
&=
~
0x00000040
;
stat
&=
~
0x00000040
;
}
}
if
(
stat
)
{
if
(
stat
)
{
nv
_error
(
falcon
,
"unhandled intr 0x
%08x
\n
"
,
stat
);
nv
km_error
(
subdev
,
"intr
%08x
\n
"
,
stat
);
nv_wo32
(
falcon
,
0x004
,
stat
);
nv_wo32
(
falcon
,
0x004
,
stat
);
}
}
...
...
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