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
28c62976
Commit
28c62976
authored
May 19, 2017
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/devinit: use new devinit script interpreter entry-point
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
74bcb2e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
30 deletions
+11
-30
drivers/gpu/drm/nouveau/nvkm/subdev/bios/init.c
drivers/gpu/drm/nouveau/nvkm/subdev/bios/init.c
+6
-20
drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv50.c
drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv50.c
+5
-10
No files found.
drivers/gpu/drm/nouveau/nvkm/subdev/bios/init.c
View file @
28c62976
...
...
@@ -2308,32 +2308,18 @@ nvbios_post(struct nvkm_subdev *subdev, bool execute)
if
(
execute
)
nvkm_debug
(
subdev
,
"running init tables
\n
"
);
while
(
!
ret
&&
(
data
=
(
init_script
(
bios
,
++
i
))))
{
struct
nvbios_init
init
=
{
.
subdev
=
subdev
,
.
bios
=
bios
,
.
offset
=
data
,
.
outp
=
NULL
,
.
head
=
-
1
,
.
execute
=
execute
?
1
:
0
,
};
ret
=
nvbios_exec
(
&
init
);
ret
=
nvbios_init
(
subdev
,
data
,
init
.
execute
=
execute
?
1
:
0
;
);
}
/* the vbios parser will run this right after the normal init
* tables, whereas the binary driver appears to run it later.
*/
if
(
!
ret
&&
(
data
=
init_unknown_script
(
bios
)))
{
struct
nvbios_init
init
=
{
.
subdev
=
subdev
,
.
bios
=
bios
,
.
offset
=
data
,
.
outp
=
NULL
,
.
head
=
-
1
,
.
execute
=
execute
?
1
:
0
,
};
ret
=
nvbios_exec
(
&
init
);
ret
=
nvbios_init
(
subdev
,
data
,
init
.
execute
=
execute
?
1
:
0
;
);
}
return
ret
;
...
...
drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv50.c
View file @
28c62976
...
...
@@ -137,16 +137,11 @@ nv50_devinit_init(struct nvkm_devinit *base)
while
(
init
->
base
.
post
&&
dcb_outp_parse
(
bios
,
i
,
&
ver
,
&
hdr
,
&
outp
))
{
if
(
nvbios_outp_match
(
bios
,
outp
.
hasht
,
outp
.
hashm
,
&
ver
,
&
hdr
,
&
cnt
,
&
len
,
&
info
))
{
struct
nvbios_init
exec
=
{
.
subdev
=
subdev
,
.
bios
=
bios
,
.
offset
=
info
.
script
[
0
],
.
outp
=
&
outp
,
.
crtc
=
-
1
,
.
execute
=
1
,
};
nvbios_exec
(
&
exec
);
nvbios_init
(
subdev
,
info
.
script
[
0
],
init
.
outp
=
&
outp
;
init
.
or
=
ffs
(
outp
.
or
)
-
1
;
init
.
link
=
outp
.
sorconf
.
link
==
2
;
);
}
i
++
;
}
...
...
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