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
Kirill Smelkov
linux
Commits
c814a60d
Commit
c814a60d
authored
Dec 03, 2013
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nvc0-/fb: hook up skeleton interrupt handler
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
7f39e597
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
drivers/gpu/drm/nouveau/core/subdev/fb/nvc0.c
drivers/gpu/drm/nouveau/core/subdev/fb/nvc0.c
+16
-0
drivers/gpu/drm/nouveau/core/subdev/mc/nvc0.c
drivers/gpu/drm/nouveau/core/subdev/mc/nvc0.c
+2
-0
No files found.
drivers/gpu/drm/nouveau/core/subdev/fb/nvc0.c
View file @
c814a60d
...
...
@@ -33,6 +33,21 @@ nvc0_fb_memtype_valid(struct nouveau_fb *pfb, u32 tile_flags)
return
likely
((
nvc0_pte_storage_type_map
[
memtype
]
!=
0xff
));
}
static
void
nvc0_fb_intr
(
struct
nouveau_subdev
*
subdev
)
{
struct
nvc0_fb_priv
*
priv
=
(
void
*
)
subdev
;
u32
intr
=
nv_rd32
(
priv
,
0x000100
);
if
(
intr
&
0x08000000
)
{
nv_debug
(
priv
,
"PFFB intr
\n
"
);
intr
&=
~
0x08000000
;
}
if
(
intr
&
0x00002000
)
{
nv_debug
(
priv
,
"PBFB intr
\n
"
);
intr
&=
~
0x00002000
;
}
}
int
nvc0_fb_init
(
struct
nouveau_object
*
object
)
{
...
...
@@ -86,6 +101,7 @@ nvc0_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
return
-
EFAULT
;
}
nv_subdev
(
priv
)
->
intr
=
nvc0_fb_intr
;
return
0
;
}
...
...
drivers/gpu/drm/nouveau/core/subdev/mc/nvc0.c
View file @
c814a60d
...
...
@@ -32,6 +32,7 @@ nvc0_mc_intr[] = {
{
0x00000080
,
NVDEV_ENGINE_COPY2
},
{
0x00000100
,
NVDEV_ENGINE_FIFO
},
{
0x00001000
,
NVDEV_ENGINE_GR
},
{
0x00002000
,
NVDEV_SUBDEV_FB
},
{
0x00008000
,
NVDEV_ENGINE_BSP
},
{
0x00040000
,
NVDEV_SUBDEV_THERM
},
{
0x00020000
,
NVDEV_ENGINE_VP
},
...
...
@@ -40,6 +41,7 @@ nvc0_mc_intr[] = {
{
0x01000000
,
NVDEV_SUBDEV_PWR
},
{
0x02000000
,
NVDEV_SUBDEV_LTCG
},
{
0x04000000
,
NVDEV_ENGINE_DISP
},
{
0x08000000
,
NVDEV_SUBDEV_FB
},
{
0x10000000
,
NVDEV_SUBDEV_BUS
},
{
0x40000000
,
NVDEV_SUBDEV_IBUS
},
{
0x80000000
,
NVDEV_ENGINE_SW
},
...
...
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