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
7c74cbd0
Commit
7c74cbd0
authored
Sep 23, 2010
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau: tidy fifo swmthd handler a little
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
f7eb0c55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
25 deletions
+31
-25
drivers/gpu/drm/nouveau/nouveau_irq.c
drivers/gpu/drm/nouveau/nouveau_irq.c
+31
-25
No files found.
drivers/gpu/drm/nouveau/nouveau_irq.c
View file @
7c74cbd0
...
@@ -108,36 +108,45 @@ nouveau_call_method(struct nouveau_channel *chan, int class, int mthd, int data)
...
@@ -108,36 +108,45 @@ nouveau_call_method(struct nouveau_channel *chan, int class, int mthd, int data)
}
}
static
bool
static
bool
nouveau_fifo_swmthd
(
struct
nouveau_channel
*
chan
,
uint32_t
addr
,
uint32_t
data
)
nouveau_fifo_swmthd
(
struct
drm_device
*
dev
,
u32
chid
,
u32
addr
,
u32
data
)
{
{
struct
drm_device
*
dev
=
chan
->
dev
;
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_channel
*
chan
=
NULL
;
struct
nouveau_gpuobj
*
obj
;
const
int
subc
=
(
addr
>>
13
)
&
0x7
;
const
int
subc
=
(
addr
>>
13
)
&
0x7
;
const
int
mthd
=
addr
&
0x1ffc
;
const
int
mthd
=
addr
&
0x1ffc
;
bool
handled
=
false
;
u32
engine
;
if
(
mthd
==
0x0000
)
{
if
(
likely
(
chid
>=
0
&&
chid
<
dev_priv
->
engine
.
fifo
.
channels
))
struct
nouveau_gpuobj
*
gpuobj
;
chan
=
dev_priv
->
fifos
[
chid
];
if
(
unlikely
(
!
chan
))
gpuobj
=
nouveau_ramht_find
(
chan
,
data
);
return
false
;
if
(
!
gpuobj
)
return
false
;
if
(
gpuobj
->
engine
!=
NVOBJ_ENGINE_SW
)
switch
(
mthd
)
{
return
false
;
case
0x0000
:
/* bind object to subchannel */
obj
=
nouveau_ramht_find
(
chan
,
data
);
if
(
unlikely
(
!
obj
||
obj
->
engine
!=
NVOBJ_ENGINE_SW
))
break
;
chan
->
sw_subchannel
[
subc
]
=
gpuobj
->
class
;
chan
->
sw_subchannel
[
subc
]
=
obj
->
class
;
nv_wr32
(
dev
,
NV04_PFIFO_CACHE1_ENGINE
,
nv_rd32
(
dev
,
engine
=
0x0000000f
<<
(
subc
*
4
);
NV04_PFIFO_CACHE1_ENGINE
)
&
~
(
0xf
<<
subc
*
4
));
return
true
;
}
/* hw object */
nv_mask
(
dev
,
NV04_PFIFO_CACHE1_ENGINE
,
engine
,
0x00000000
);
if
(
nv_rd32
(
dev
,
NV04_PFIFO_CACHE1_ENGINE
)
&
(
1
<<
(
subc
*
4
)))
handled
=
true
;
return
false
;
break
;
default:
engine
=
nv_rd32
(
dev
,
NV04_PFIFO_CACHE1_ENGINE
);
if
(
unlikely
(((
engine
>>
(
subc
*
4
))
&
0xf
)
!=
0
))
break
;
if
(
nouveau_call_method
(
chan
,
chan
->
sw_subchannel
[
subc
],
mthd
,
data
))
if
(
!
nouveau_call_method
(
chan
,
chan
->
sw_subchannel
[
subc
],
return
false
;
mthd
,
data
))
handled
=
true
;
break
;
}
return
true
;
return
handled
;
}
}
static
void
static
void
...
@@ -150,14 +159,11 @@ nouveau_fifo_irq_handler(struct drm_device *dev)
...
@@ -150,14 +159,11 @@ nouveau_fifo_irq_handler(struct drm_device *dev)
reassign
=
nv_rd32
(
dev
,
NV03_PFIFO_CACHES
)
&
1
;
reassign
=
nv_rd32
(
dev
,
NV03_PFIFO_CACHES
)
&
1
;
while
((
status
=
nv_rd32
(
dev
,
NV03_PFIFO_INTR_0
))
&&
(
cnt
++
<
100
))
{
while
((
status
=
nv_rd32
(
dev
,
NV03_PFIFO_INTR_0
))
&&
(
cnt
++
<
100
))
{
struct
nouveau_channel
*
chan
=
NULL
;
uint32_t
chid
,
get
;
uint32_t
chid
,
get
;
nv_wr32
(
dev
,
NV03_PFIFO_CACHES
,
0
);
nv_wr32
(
dev
,
NV03_PFIFO_CACHES
,
0
);
chid
=
engine
->
fifo
.
channel_id
(
dev
);
chid
=
engine
->
fifo
.
channel_id
(
dev
);
if
(
chid
>=
0
&&
chid
<
engine
->
fifo
.
channels
)
chan
=
dev_priv
->
fifos
[
chid
];
get
=
nv_rd32
(
dev
,
NV03_PFIFO_CACHE1_GET
);
get
=
nv_rd32
(
dev
,
NV03_PFIFO_CACHE1_GET
);
if
(
status
&
NV_PFIFO_INTR_CACHE_ERROR
)
{
if
(
status
&
NV_PFIFO_INTR_CACHE_ERROR
)
{
...
@@ -184,7 +190,7 @@ nouveau_fifo_irq_handler(struct drm_device *dev)
...
@@ -184,7 +190,7 @@ nouveau_fifo_irq_handler(struct drm_device *dev)
NV40_PFIFO_CACHE1_DATA
(
ptr
));
NV40_PFIFO_CACHE1_DATA
(
ptr
));
}
}
if
(
!
chan
||
!
nouveau_fifo_swmthd
(
chan
,
mthd
,
data
))
{
if
(
!
nouveau_fifo_swmthd
(
dev
,
chid
,
mthd
,
data
))
{
NV_INFO
(
dev
,
"PFIFO_CACHE_ERROR - Ch %d/%d "
NV_INFO
(
dev
,
"PFIFO_CACHE_ERROR - Ch %d/%d "
"Mthd 0x%04x Data 0x%08x
\n
"
,
"Mthd 0x%04x Data 0x%08x
\n
"
,
chid
,
(
mthd
>>
13
)
&
7
,
mthd
&
0x1ffc
,
chid
,
(
mthd
>>
13
)
&
7
,
mthd
&
0x1ffc
,
...
...
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